@charset "UTF-8";
/* CSS Document */
:root {
	--default: #212121;
	--blue1: #002e73;
	--blue2: #001f5a;
	--blue3: #005ea7;
	--lightblue: #f2f8fb;
	--bglightblue: #EAF2F8;
	--bluegray: #e4e8eb;
	--bluegray2: #f2f4f5;
	--gray: #f1f1f1;
	--gray1: #d2d7db;
	--gray2: #c2c6c9;
	--gradient1: linear-gradient(125deg, #005ea7 0%,#002e73 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	--orange: #ed702d;
	--yellow1: #ffffc9;
	--yellow2: #F7FEA1;
	--yellow3: #fdef32;
	--red1: #fb5357;
	--red2: #D84C51;
}



ul,ol {
	margin-left: 0;
	padding: 0;
}
ul li{
	list-style:none;
}
img {
    outline: none;
    border: none;
    max-width: 100%;
    height: auto;
}
figure img {
	width: auto;
    max-width: 100%;
    height: auto;
}

.grecaptcha-badge { visibility: hidden; }
/* =Typography
-----------------------------------------------------------------------------*/
html {
  	width: 100%;
    height: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    font-size: 10px;
}
body {
	position: relative;
	color: var(--default);
	font-size: 1.7rem;
    font-weight: 500;
    font-style: normal;
    font-family: YakuHanJP,'Noto Sans JP',"Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro",游ゴシック体, YuGothic, 游ゴシック Medium, Yu Gothic Medium, 游ゴシック, Yu Gothic, dnp-shuei-gothic-kin-std, "メイリオ", "Meiryo", "sans-serif";
    line-height: 2;
}
.en {
	font-family: "Poppins", sans-serif;
}
.mincho {
    font-family: "A1MinchoStd-Bold", "A1 Mincho", "リュウミン M-KL", 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;;
}
.kome {
	padding-left: 1em;
	position: relative;
}
.kome::before {
	content: "※";
	position: absolute;
	left: 0;
	top: 0;
}
span.material-icons {
	display: inline-flex;
	vertical-align: middle;
}

h2.sec_title {
	color: var(--blue3);
	font-size: clamp(2rem, calc(1.5vw + 1rem), 4rem);
	font-weight: 400;
	padding-top: .5em;
	margin-bottom: 1em;
	position: relative;
}
h2.sec_title::before {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background: var(--blue3);
	position: absolute;
	left: 0;
	top: 0;
	transform: scale(0, 1);
	transition: all .7s cubic-bezier(1, .05, .05, .75) .5s;
	transform-origin: left top;
}
h2.sec_title.isPlay::before {
	transform: scale(1, 1);
}
h2.sec_title span {
	display: inline-block;
	font-size: 5.4rem;
	font-weight: normal;
	padding-right: .5em;
	color: var(--blue3);
}
h3.dot {
	padding-left: 1em;
	position: relative;
	color: var(--blue1);
	font-size: 1.2em;
	font-weight: 600;
	margin-bottom: 1em;
}
h3.dot:before {
	content: "";
	display: block;
	width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    top: .9em;
    left: 0;
    background: #D84C51;
    font-size: 0.5em;
}
h2.title {
	display: inline-block;
	color: #fff;
	font-size: 3rem;
	position: relative;
	padding: 5rem 5rem 2rem 0;
	margin-bottom: 1.25em;
	z-index: +2;
	min-width: 50%;
}
h2.title span.en {
	display: inline-block;
	position: absolute;
	left: 0;
	top: 10px;
	font-size: 5rem;
	opacity: .4;
}
h2.title span.ja {
	display: inline-block;
	padding-left: 1em;
}
h2.title:before {
	content: "";
	display: block;
	position: absolute;
	left: calc(0px - (100vw - 1270px) / 2);
	top: 0;
	height: 100%;
	background: var(--gradient1);
	z-index: -1;
	width: 0;
    transition: all .5s cubic-bezier(1, .05, .05, .75) .3s;
    box-shadow: 11px 13px 27px 6px rgba(0, 0, 0, .1);
}
h2.title.isPlay:before {
	width: calc(100% + (100vw - 1270px) / 2);
	
}
h2.center_title {
	margin-bottom: 1em;
}
h2.center_title .en {
	display: block;
	font-size: 5.4rem;
}
.font-l {
	font-size: 1.2em;
}
.font-xl {
	font-size: 3.6rem;
    color: var(--blue1);
    line-height: 1.5;
    font-weight: bold;
}
@media (max-width: 1300px) {
	h2.title:before {
		left: -15px;
		top: 0;
	}
	h2.title.isPlay:before {
		width: 100%;
	}


}


/* =Links
-----------------------------------------------------------------------------*/
@keyframes link {
   0% {
    left: -50%;
  }
  100% {
    left: 150%;
  }
}
@keyframes link-r {
   0% {
    width: 0;
  }
  100% {
    width: 6rem;
  }
}

a {
	color: #222;
	text-decoration:none;
	outline: none;
	-webkit-transition: 0.25s;
    -moz-transition: 0.25s;
    -o-transition: 0.25s;
    -ms-transition: 0.25s;
    transition: .25s ease-out;
}
a:visited {
	color: #222;
}
a:hover,
a:focus {
	text-decoration: none;
	color: #222;
}
a:focus-visible {
    outline: 1px solid #fb5357;
    outline: -webkit-focus-ring-color auto 1px;
	outline-offset: 1px;
}
a.text-link-border {
	display: inline-block;
	position: relative;
	color: var(--blue1);
}
a.text-link-border:after {
	content: "";
    position: absolute;
    right: 0;
    bottom: 2px;
    z-index: 0;
    background: var(--blue1);
    width: 100%;
    height: 1px;
    transition: .15s cubic-bezier(.35,.03,.52,1) .1s;
}
a.text-link-border:hover:after {
	width: 0;
}
a.text-link-border.arrow::before {
	font-family: 'Material Icons';
    content: '\e5c8';
    font-size: 1.6rem;
    vertical-align: -3px;
}

a.text-link {
	display: inline-block;
	position: relative;
	color: #212121;
}
a.text-link::before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: 2px;
    z-index: 0;
    background: var(--bluegray);
    width: 100%;
    height: 1px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .25s ease-out;
}
a.text-link:hover::before {
    transform: scale(1, 1);
}

/* =Buttons
-----------------------------------------------------------------------------*/
a.btn {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	font-weight: bold;
	color: #fff;
	width: 270px;
	height: 60px;
	text-align: center;
	background: var(--gradient1); /* Old browsers */
	position: relative;
	z-index: 1;
	border-radius: 200px;
	overflow: hidden;
}
a.btn.btn-w100 {
	width: 100%;
}
a.btn:before {
	position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    content: "";
    background: var(--blue2); /* Old browsers */
    -webkit-transform-origin: right top;
    transform-origin: right top;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: -webkit-transform 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: transform 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: transform 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955), -webkit-transform 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
a.btn:hover:before {
	-webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}
a.btn.btn-white {
	color: var(--blue2);
	background: #fff
}
a.btn.btn-white::before {
	background: var(--bluegray);
}
a.btn span.material-icons {
	margin-right: .25em;
}

/* =Layout
-----------------------------------------------------------------------------*/
.container {
	max-width: 1100px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}
.container.container-l {
	max-width: 1300px;
}
.container.container-s {
	max-width: 960px;
}




/* =Misc
-----------------------------------------------------------------------------*/
.w-100 {
	width: 100%;
}
.mb-0 {
	margin-bottom: 0;
}
.mb-5 {
	margin-bottom: 5px;
}
.mb-10 {
	margin-bottom: 10px;
}
.mb-20 {
	margin-bottom: 20px;
}
.mb-30 {
	margin-bottom: 30px;
}
.mb-40,.mb20-40 {
	margin-bottom: 40px;
}
.mb-50 {
	margin-bottom: 50px;
}
.mb-60,.mb30-60 {
	margin-bottom: 60px;
}
.mb30-80 {
	margin-bottom: 80px;
}
.spad {
	padding-top: 100px;
	padding-bottom: 100px;
}
.ptb40,.ptb20-40 {
	padding-top: 40px;
	padding-bottom: 40px;
}
.ptb50,.ptb30-50 {
	padding-top: 50px;
	padding-bottom: 50px;
}
.ptb30-80 {
	padding-top: 80px;
	padding-bottom: 80px;
}
.pt40 {
	padding-top: 40px;
}
.ptb30 {
	padding-top: 30px;
	padding-bottom: 30px;
}
.ptb50 {
	padding-top: 50px;
	padding-bottom: 50px;
}
.ptb20 {
	padding-top: 20px;
	padding-bottom: 20px;
}
.pt30 {
	padding-top: 30px;
}
.f-left{
	float:left;
}
.f-right{
	float:right;
}
.box-link:hover {
	cursor: pointer;
}
.bg-gray {
	background: #f8f8f8;
}
.color {
	color: var(--blue1);
}
.color-red {
	color: #fb5357;
}
.color-blue {
	color: var(--blue1);
}
.color-white {
	color: #fff;
}
.text-right {
	text-align: right;
}
.text-center,.text-left-center {
	text-align: center;
}
.marker {
	display: inline-block;
    position: relative;
}
.marker:before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 30%;
    bottom: 4px;
    background: #f3ef7f;
    z-index: -1;
}
ul.image {
	list-style: none;
	padding: 0;
}
ul.image li {
	padding-left: 1em;
	position: relative;
}
ul.image li:before {
	content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    top: 1.65em;
    left: 0;
    background: #D84C51;
    font-size: 0.5em;
}
.marker {
	display: inline-block;
	position: relative;
}
.marker:before {
    content: "";
    display: block;
    width: 100%;
    height: 20%;
    background-color: #ffff00;
    position: absolute;
    bottom: 10%;
    left: 0;
    opacity: .8;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
    -webkit-transition: -webkit-clip-path .6s cubic-bezier(1, .05, .05, .75) .2s;
    transition: -webkit-clip-path .6s cubic-bezier(1, .05, .05, .75) .2s;
    transition: clip-path .6s cubic-bezier(1, .05, .05, .75) .2s;
    z-index: -1;
}
.marker.isPlay:before {
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
}

/* =Lists
-----------------------------------------------------------------------------*/
ul.sq li {
	position: relative;
	padding-left: 2rem;
}
ul.sq li::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: #005bac;
    position: absolute;
    left: 5px;
    top: calc(50% - 4px);
}
/* =Tables
-----------------------------------------------------------------------------*/
table.table {
	width: 100%;
	border-bottom: 1px solid #e7e7e7;
}
table.table th {
    white-space: nowrap;
    padding: 1.5em;
    border-top: 1px solid #e7e7e7;
    border-right: 1px solid #e7e7e7;
    width: 25%;
}
table.table td {
    vertical-align: top;
    padding: 1.5em;
    border-top: 1px solid #e7e7e7;
}
table.table-dot {
	width: 100%;
	border-bottom: 1px dotted #999;
}
table.table-dot td {
    padding: .75em;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px dotted #999;
}
table.table-simple {
	width: auto;
	line-height: 1.65;
}
table.table-simple th {
	font-weight: normal;
	vertical-align: top;
	white-space: nowrap;
}
table.table-simple td {
	font-weight: normal;
	vertical-align: top;
}

/*--------------------------------------------------------------
# iframe
--------------------------------------------------------------*/
.gmap {
    position: relative;
    padding-bottom: 50%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
.gmap iframe, .map object, .map embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/*--------------------------------------------------------------
# footer_contact
--------------------------------------------------------------*/
#footer_contact {
	position: relative;
	background: url(images/bg_contact.jpg) center center/cover no-repeat;
	text-align: center;
	color: #fff;
}
#footer_contact::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .4);
}
#footer_contact .container {
	position: relative;
	z-index: +1;
}
#footer_contact .btn {
	display: flex;
	width: 100%;
	height: 100px;
	align-items: center;
    padding: 0 2em;
    margin: 1rem 1.5rem;
    font-size: 1.1em;
    border-radius: 12px;
}
#footer_contact .btn span.material-icons {
	font-size: 3rem;
}
#footer_contact .btn img {
	filter: drop-shadow(0 0 .2rem rgba(255,255,255,.3));
	margin-right: 1em;
}


/*--------------------------------------------------------------
# footer
--------------------------------------------------------------*/
#footer {
	background: var(--blue1);
	color: #fff;
}
#footer table.table_address:first-child {
	margin-bottom: 1.5em;
}
#footer table.table_address th {
	white-space: nowrap;
	padding-right: 2rem;
	border-right: 1px solid rgba(255,255,255,.5);
	width: 140px;
}
#footer table.table_address td {
	padding-left: 2rem;
	font-size: 1.5rem;
}
#footer .sns_links {
	height: 100%;
}
#footer .sns_links a {
	display: inline-block;
	padding: .65rem;
}
#footer .sns_links a:hover {
	opacity: .7;
}
#footer .copyright {
	text-align: center;
	padding: 1.5em 0;
	font-size: 1.3rem;
	opacity: .6;
	background: var(--blue2);
}
/*--------------------------------------------------------------
# トップへ戻るボタン
--------------------------------------------------------------*/
a.topBtn {
	position:fixed; /*固定*/
	bottom:20px; /*場所を右下に移動*/
	right:20px; /*場所を右下に移動*/
	display:block; /*aタグをblock要素に変更*/
	background: var(--blue1) url(images/arrow_white_v.svg) center center/15px no-repeat;
	color:#fff;
	text-decoration:none;
	font-weight:bold;
	width:60px;
	height:60px;
	text-align:center;
	line-height:22px;
	border-radius:30px;
	padding-top:30px;
	box-sizing:border-box;
	transition: step-start;
	z-index: 99;
	transition: 0.25s;
}
a.topBtn:hover {
	background-color: var(--blue2);
}

@media (max-width: 1300px) {
	.scroll-wrap {
		overflow-x: scroll;
	}

}
@media (min-width: 1301px) {
	.g-6, .gx-6 {
	    --bs-gutter-x: 6rem;
	}
	.g-6 {
		 --bs-gutter-y: 6rem;
	}
	.pl-80 {
		padding-left: 80px;
	}

}



@media (max-width: 991px) {
/********************************************** 
#footer_contact
********************************************* */
	#footer_contact .btn {
	    padding: 0 1em;
	    margin: 1rem;
	    font-size: 1em;
	}
	#footer_contact .btn {
		margin: 0 1rem 1rem;
	}
/********************************************** 
#footer
********************************************* */	
	#footer .footer_logo {
		margin-bottom: 2rem;
	}
	#footer .sns_links {
		margin-top: 2rem;
	}


/********************************************** 
	Typography
********************************************* */	

/********************************************** 
	Buttons
********************************************* */	
	a.btn {
		height: 50px;
		font-size: 1.5rem;
	}
}
@media (max-width: 767px) {
	body {
		font-size: 1.5rem;
		line-height: 1.75;
	}
	.mb20-40 {
		margin-bottom: 20px;
	}
	.mb30-60,.mb30-80 {
		margin-bottom: 30px;
	}
	.ptb20-40 {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.ptb30-50,.ptb30-80  {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.spad {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.text-left-center {
		text-align: left;
	}
	/* ボタン */
	a.btn {
		font-size: 1.4rem;
		width: 270px;
		height: 42px;
	}
	a.btn.btn-small {
		width: 180px;
		height: 32px;
		line-height: 32px;
		font-size: 1.3rem;
	}

	a.btn.ja {
	    font-size: 1.3rem;
	}

/********************************************** 
	Typography
********************************************* */	
	h2.sec_title {
		font-size: 2rem;
	}
	h2.sec_title span {
		font-size: 3.6rem;
		display: block;
	}
	h2.title {
	    display: block;
	    font-size: 2rem;
	    padding: 1.5rem 3rem 1.5rem 0;
	    margin-bottom: 1.25em;
	}
	h2.title span.en {
		font-size: 1.8rem;
		position: relative;
		top: 0;
	}
	h2.title span.ja {
		padding-left: 0;
	}
	h2.center_title .en {
		font-size: 3.6rem;
	}
	.font-l {
		font-size: 1.1em;
	}
	.font-xl {
		font-size: 2.4rem;
	}
/********************************************** 
#footer
********************************************* */	
	#footer table.table_address:first-child {
		margin-bottom: 1em;
	}
	#footer table.table_address th {
		display: block;
		width: 100%;
		padding: 0;
		border-right: none;
	}
	#footer table.table_address td {
		display: block;
		width: 100%;
		padding: 0;
	}
	#footer .sns_links {
        margin-top: 1rem;
    }
/********************************************** 
	トップへ戻るボタン
********************************************* */	
	a.topBtn {
		bottom:20px;
		right:10px;
		width:30px;
		height:30px;
		padding-top:0;
		background-size: 10px;
		margin-bottom: -10px;
	}
	a.topBtn.is-fixed {
		margin-bottom: 15px;
	}
	


}





