@charset "UTF-8";
:root {
	--blue: #146bc5;
	--blue-dark: #033778;
	--text: #000;
	--line: #aec1e2;
	--bg: #fff;
	--content: 1180px;
	--narrow: 980px;
}
html {
	scroll-behavior: smooth;
}
body {
	font-size: 1.0rem !important;
	font-family: "IBM Plex Sans JP", sans-serif;
	color: var(--text);
	line-height: 1.9;
	/*background:#f5f6fc!important;*/
	animation: fadeIn 2s ease 0s 1 normal;
	-webkit-animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
	0% {
		opacity: 0
	}
	100% {
		opacity: 1
	}
}
@-webkit-keyframes fadeIn {
	0% {
		opacity: 0
	}
	100% {
		opacity: 1
	}
}
/*   all parts   */
a {
	transition: 1s;
	color: var(--blue);
	text-decoration: underline;
}
a:hover {
	opacity: 0.75;
}
img {
	width: 100%;
}
.bk {
	background: url("/images/bk.jpg") right top / cover no-repeat, #f5f6fc;
	background-blend-mode: multiply !important;
}
@media(max-width:640px) {
	.bk {
		background: none;
		background-color: #f5f6fc;
		background-blend-mode: initial !important;
	}
}
.l-inner {
	width: min(calc(100% - 40px), var(--content));
	margin-inline: auto
}
.l-inner--narrow {
	max-width: var(--narrow);
}
.l-section {
	margin-bottom: 36px;
}
/*   HEADER   */
.l-header {
	height: 90px;
	background: #fff;
	border-bottom: 1px solid #e8edf2;
}
.l-header__inner {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.c-logo {
	display: block;
	width: 215px;
}
.c-logo a:hover {
	opacity: 1 !important;
}
.c-button {
	display: inline-flex;
	min-width: 210px;
	justify-content: center;
	align-items: center;
	padding: 10px 35px;
	border-radius: 6px;
	background: var(--blue-dark);
	color: #fff;
	text-decoration: none;
	font-weight: 400;
	cursor: pointer;
}
.c-button--small {
	min-width: 170px;
	padding: 7px 30px;
	font-size: 1.0625rem;
}
@media(max-width:640px) {
	.c-logo {
		display: block;
		width: 45%;
	}
}
/*   main   */
.p-hero {
	min-height: 470px;
	position: relative;
}
.p-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("/images/main.webp") right top / cover no-repeat;
	mix-blend-mode: multiply;
	z-index: 0;
}
.p-hero__inner {
	min-height: 470px;
	display: grid;
	grid-template-columns: 1.2fr 0.89fr;
	align-items: center;
}
.p-hero__badge {
	display: inline-block;
	padding: 7px 15px 3px;
	background: var(--blue-dark);
	color: #fff;
	font-size: 1.75rem;
	font-weight: 500;
	line-height: 2.25rem;
}
.p-hero__badge span {
	font-size: 2.5rem;
	padding-top: 3px;
}
.p-hero__title {
	margin-top: 20px;
	color: var(--blue-dark);
	font-size: 4.5rem;
	font-weight: 700;
	line-height: 1.3;
}
.p-hero__title .small {
	display: block;
	font-size: 3.125rem;
}
.p-hero__title .blue {
	color: var(--blue);
}
.p-hero__text {
	margin-top: 15px;
	color: #000;
	font-size: 1.375rem;
	font-weight: 300;
}
.p-hero__visual {
	display: flex;
	min-height: 470px;
	position: relative;
	align-items: center;
}
.p-hero__visual img {
	width: 490px;
}
.p-hero_thanks {
	min-height: 200px;
	position: relative;
}
.p-hero_thanks .p-hero__inner {
	min-height: 200px;
	display: flex;
	align-items: center;
}
.p-hero_thanks .p-hero__badge {
	margin-right: 1.0rem;
}
.p-hero_thanks .p-hero__title {
	margin-top: 20px;
	font-size: 3.5rem;
	display: inline-block;
}

.p-hero_thanks .p-hero__title .small {
	display: inline-block;
	font-size: 2.125rem;
}

@media(max-width:640px) {
	.p-hero::before {
		background: url("/images/main.webp") right -320px top / cover no-repeat;
	}
	.p-hero__badge {
		font-size: 1.25rem;
		margin-top: -10px;
	}
	.p-hero__badge span {
		font-size: 1.875rem;
	}
	.p-hero__title {
		font-size: 3.0rem;
	}
	.p-hero__title .small {
		font-size: 2.125rem;
	}
	.p-hero__text {
		font-size: 1.125rem;
		padding-right: 1.875rem;
		margin-top: 10px;
	}
	.p-hero__visual img {
		margin: -20px 0 30px;
	}
	
	.p-hero_thanks .p-hero__badge {
		font-size: 1.25rem;
		margin-top: -10px;
	}
	.p-hero_thanks .p-hero__title {
		font-size: 2.625rem;
		margin-top: 0;
	}
	.p-hero_thanks .p-hero__title .small {
		font-size: 1.75rem;
		display: block;
	}
	.p-hero_thanks .p-hero__text {
		font-size: 1.125rem;
		padding-right: 1.875rem;
		margin-top: 10px;
	}
	
}
/*   BODY   */
.p-page {
	padding: 78px 0 62px;
}
.c-panel {
	padding: 40px 70px;
	background: #fff;
	border: 1px solid #cfd8e2;
	border-radius: 6px;
}
.c-heading {
	text-align: center;
	color: var(--blue-dark);
	font-size: 1.875rem;
	font-weight: 500;
	margin-bottom: 20px;
}
.c-subheading {
	text-align: center;
	color: var(--blue-dark);
	font-size: 1.375rem;
	font-weight: 500;
	border-bottom: 1px solid var(--line);
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.p-about p {
	font-size: 1.125rem;
	color: #000;
}
.about-text::after {
	content: "◆◆◆◆◆◆◆◆◆◆";
	display: block;
	font-size: 0.875rem;
	font-weight: 400;
	text-align: center;
	letter-spacing: 0.5rem;
	color: var(--blue-dark);
	margin: 50px auto;
}
@media(max-width:640px) {
	.c-panel {
		padding: 50px 90px;
	}
	.c-heading {
		text-align: left;
		line-height: 1.5;
		margin-bottom: 10px;
	}
}
.c-bar-heading {
	margin: -25px -50px 30px;
	padding: 10px 18px;
	border-radius: 6px;
	background: var(--blue-dark);
	color: #fff;
	text-align: center;
	font-size: 1.875rem;
	font-weight: 500;
	line-height: 1.5;
}
.p-info > div {
	display: grid;
	grid-template-columns: 150px 1fr;
	gap: 24px;
	padding: 21px 0;
	border-bottom: 1px solid var(--line);
}
.p-info > div:last-child {
	border-bottom: 0;
}
.p-info dt {
	color: var(--blue-dark);
	font-weight: 700;
	font-size: 1.375rem;
	font-weight: 500;
}
.p-info dd {
	font-size: 1.125rem;
	color: #000;
	font-weight: 300;
	padding-top: 3px;
}
.p-info .caution {
	display: block;
	color: var(--blue);
}
.p-form__note {
	text-align: center;
	color: #df7777;
	font-size: 1.125rem;
	font-weight: 500;
	margin-bottom: 18px;
}
.p-form__note small {
	display: block;
	font-size: 1.0rem;
	font-weight: 300;
}
.p-form__work {
	padding: 0;
	border-top: 1px solid var(--line);
}
.p-form__row {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 20px;
	align-items: start;
	padding: 25px 0;
}

.p-form__work .p-form__row + .p-form__row {
	padding-top: 0;
}

.line {
	border-bottom: 1px solid var(--line);
}
.p-form__row label {
	color: var(--blue-dark);
	font-size: 1.375rem;
	font-weight: 500;
	margin-bottom:0;
}
.p-form__row em {
	color: #df6d6d;
	font-style: normal;
}
.p-form input, .p-form textarea, .p-form select {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #d9e0e7;
	border-radius: 3px;
	background: #fff;
	outline: none;
	font-size: 1.125rem;
}
.p-form textarea {
	min-height: 115px;
	resize: vertical;
}
.p-form select {
	max-width: 220px;
}
.p-form input:focus, .p-form textarea:focus, .p-form select:focus {
	border-color: #7aa8d1;
	box-shadow: 0 0 0 3px rgba(5, 80, 149, .08);
}

.p-form__row .abroad_att_txt {
	margin-top:1.5rem;
}

.p-form__row .abroad_att_txt p {
	font-size: 0.875rem;
	margin-bottom:0;
}

.p-form__row label.abroad_label {
	color: var(--blue-dark);
	font-size: 1.125rem;
	font-weight: 500;
	margin-bottom:0;
}


.p-form__agree {
	display: flex;
	justify-content: center;
	gap: 8px;
	padding: 20px 0;
	margin-bottom: 20px;
	font-size: 1.125rem;
}
.p-form__agree input {
	width: auto;
}
.p-form__submit {
	text-align: center;
	font-size: 1.25rem;
}

.p-form__submit .att_txt {
	font-size: 1.125rem;
	font-weight: 300;
	text-align: left;
	color: var(--blue-dark);
	
	margin-top: 5.0rem;
}

.confirm_txt {
	color: var(--text);
	font-size: 1.375rem;
	font-weight: 500;
	margin-bottom:0;
}

.l-footer {
	padding: 40px 0;
	background: var(--blue-dark);
	color: #fff;
	font-size: 1.0;
	font-weight: 400;
}
.l-footer__inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 30px;
}
.u-visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
@media(max-width:900px) {
	.p-hero__inner {
		grid-template-columns: 1fr;
	}
	.p-hero__copy {
		padding: 44px 0 10px
	}
	.p-hero__visual {
		min-height: 250px
	}
	.c-panel {
		padding: 28px
	}
	.c-bar-heading {
		margin: -14px -14px 24px
	}
	.p-info > div, .p-form__row {
		grid-template-columns: 1fr;
		gap: 9px
	}
}
@media(max-width:640px) {
	.l-inner {
		width: min(calc(100% - 28px), var(--content))
	}
	.l-header {
		height: 64px;
	}
	.c-logo {
		font-size: 18px;
	}
	.c-button--small {
		min-width: auto;
		padding: 7px 14px;
	}
	/*.p-hero__title{
	  font-size:35px;
	}
	.p-hero__title span{
		font-size:23px;
	}
	.p-hero__text{
		font-size:12px;
	}
	.p-hero__date{
		right:30px;
		width:160px;
		height:145px;
	}*/
	.p-page {
		padding-top: 38px;
	}
	.c-panel {
		padding: 25px;
	}
	.c-bar-heading {
		font-size: 19px;
	}
	.p-form select {
		max-width: none;
	}
	.l-footer__inner {
		display: block;
	}
	.l-footer small {
		display: block;
		margin-top: 20px;
	}
	.u-pc {
		display: none;
	}
}