@charset "UTF-8";
/* --------------------
Foundation
---------------------*/
/* Reset */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
	background: transparent;
	font-weight: inherit;
	font-size: inherit;
	font-style: inherit;
	-webkit-tap-highlight-color: transparent;
}

article,
aside,
details,
figcaption,
figure,
main,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

ul,
ol {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
}

/* Normal style */
sub,
sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

em,
strong {
	font-weight: bold;
}

@font-face {
	font-display: swap;
	font-family: 'NoteSansCJKJpSubset';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/NotoSansCJKjp-Regular-subset.woff2') format('woff2'), url('../fonts/NotoSansCJKjp-Regular-subset.woff') format('woff'), url('../fonts/NotoSansCJKjp-Regular-subset.otf') format('opentype');
}

@font-face {
	font-display: swap;
	font-family: 'NoteSansCJKJpSubset';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/NotoSansCJKjp-Bold-subset.woff2') format('woff2'), url('../fonts/NotoSansCJKjp-Bold-subset.woff') format('woff'), url('../fonts/NotoSansCJKjp-Bold-subset.otf') format('opentype');
}

/* --------------------
Utility
---------------------*/
.txt-caution {
	font-weight: bold;
	line-height: 1.5;
	color: #c3001c;
}

/* --------------------
Form
---------------------*/
body {
    font-family: 'NoteSansCJKJpSubset', '游ゴシック', 'Yu Gothic', '游ゴシック体', 'YuGothic', Hiragino Sans, 'ヒラギノ角ゴシック', 'メイリオ', Meiryo, sans-serif;
}
h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}
form table {
    width: 100%;
    border-collapse: collapse;
}
form th,
form td {
    border: 2px solid #ccc;
    box-sizing: border-box;
}
form th {
    text-align: left;
    width: 25%;
    padding: 0 10px;
    background-color: #f2f2f2;
    vertical-align: middle;
}
form td {
    padding: 10px;
}
form input:not([type="radio"]):not([type="checkbox"]),
textarea {
    border: 1px solid #ccc;
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
}
form input:not([type="radio"]):not([type="checkbox"]) {
    height: 30px;
}
form input.input-short {
    width: 30%!important;
}
form .select-group select {
    border: 1px solid #ccc;
    padding: 5px;
    box-sizing: border-box;
}
form .checkbox-group label,
form .radio div label {
    display: flex;
    align-items: center;
}
form .privacy {
    margin-top: 50px;
	font-size: 1.5rem;
}
form .privacy-text {
    margin-bottom: 20px;
    border: 2px solid #ccc;
    padding: 10px;
}
.btnArea {
    width: 100%;
    display: flex !important;
    flex-direction: column;
    align-items: center;
}
.btnArea > label {
    margin-bottom: 25px;
}
form .btn {
    display: block;
    text-align: center;
    color: #fff;
    text-decoration: none;
    border: 1px solid #002084;
    background: #002084;
    margin-top: 25px;
    padding: 17px 10px;
    width: 300px;
}
form .btn:hover {
    border-color: #002084;
    color: #002084;
    background-color: #eee;
}
form .btnAreaPreview {
    width: 100%;
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
}
form .error-message {
    font-weight: bold;
    line-height: 1.5;
    color: #c3001c;
}
form input.error {
    border: 1px solid red;
}
form .g-recaptcha {
    margin-top: 25px;
}
