@charset "UTF-8";


/* reset ---------------------------------------*/

div,dl,dt,dd,ul,ol,
li,h1,h2,h3,h4,h5,
h6,pre,code,form,fieldset,legend,
input,textarea,p,blockquote,
th,td{margin:0;padding:0;}
table{border-collapse:collapse;border-spacing:0;word-break: break-all;font-size:inherit;width:100%;}
fieldset,img{border:0;}
address,caption,cite,code,dfn,em,th,var{font-style:normal;font-weight:normal;}
li{list-style:none;}
caption,th{text-align:left;}
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}
q::before,q::after{content:'';}
abbr{border:0;font-variant:normal;}
sup{vertical-align:text-top;}
sub{vertical-align:text-bottom;}
input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}
input,textarea,select{*font-size:100%;}
legend{color:#000;}
select,input,button,textarea{font-size:inherit;font-family:inherit;box-sizing: border-box;}
pre,code,kbd,samp{font-family:monospace;*font-size:108%;line-height:100%;}
figure{padding:0;margin:0;}
input[type="submit"],
input[type="button"],
button {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
button::-webkit-search-decoration {display: none;}
input[type="submit"]::focus,
input[type="button"]::focus,
button::focus {outline-offset: -2px;}


/* base ---------------------------------------*/

*{
	box-sizing:border-box;
	min-height: 0vw;
}

html,body{height:100%;}

body{
	-webkit-text-size-adjust: 100%;
	padding:0;
	margin: 0;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.04em;
	font-feature-settings: "palt" 1;
	-webkit-font-feature-settings: "palt" 1;
	overflow-x: hidden;
}

a{
	color: inherit;
	text-decoration: none;
	transition: all .25s ease;
}

a:hover{opacity: 0.6;}

img{
	vertical-align: bottom;
	line-height: 1;
	max-width:100%;
	height:auto;
}


/* common item ---------------------------------------*/

.clearfix::after,
.inner::after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

.ov-h{overflow: hidden;}


.font-zenkaku {font-family: "Zen Kaku Gothic New", sans-serif;}
.font-notosans {font-family: "Noto Sans JP", sans-serif;}
.font-lora {font-family: "Lora", serif;}


/* layout ---------------------------------------*/
.wrapper {
	
}

.pagewrapper {
	margin-top: 80px;
}

.inner{
	max-width:1040px;
	margin:0 auto;
}

.section{
	margin-bottom: 50px;
}

.overlay{display: none;}

/* header ---------------------------------------*/

header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	background: #fff;
	z-index: 999;
}

.header-inner {
	position: relative;
	height: 80px;
	margin: 0 auto;
	width: 100%;
	border-bottom: 1px solid #fff;
}

.header-logo {
	display: block;
	position: absolute;
	top: 50%;
	left: 20px;
	transform: translateY(-50%);
	width: 160px;
	z-index: 101;
	transition: all .25s ease;
}

.header-logo img {
	width: 100%;
}

#openmenu {display:none;}

/* gnav ---------------------------------------*/

.gnav {
	display: flex;
	align-items: center;
	gap: 32px;
	position:absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}

.gnav-list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.gnav-list > li,
.gnav-list > li > a {
	font-size: 14px;
	white-space: nowrap;
}

.has-child{
	position: relative;
	padding-right: 15px;
}

.gnav-sub {
	position: absolute;
	width: 100%;
	height: 17px;
	visibility: hidden;
}

.gnav-sublist {
	position: absolute;
	top: 17px;
	left: 0;
	background: #fff;
	border-radius: 4px;
	padding: 20px;
	visibility: hidden;
	opacity: 0;
	transition: 0.4s;
	box-shadow: 2px 2px 20px rgba(51, 51, 51, 0.04);
	transform: translate(0, 10px);
}

.has-child:hover .gnav-sub {
	visibility: visible;
}

.has-child:hover .gnav-sublist {
	visibility: visible;
	opacity: 1;
	transform: translate(0, 0);
}

.gnav-sublist > li + li {
	margin-top: 4px;
}

.gnav-sublist > li > a {
	display: inline-block;
	position: relative;
	font-size: 14px;
	line-height: 1.6;
}


/* icon ---------------------------------------*/
.icon-tel {
	display: inline-block;
	width: 24px;
	height: 24px;
	-webkit-mask-image: url('../img/common/icon_tel.svg');
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: 0 0;
	-webkit-mask-size: contain;
	mask-image: url('../img/common/icon_tel.svg');
	mask-repeat: no-repeat;
	mask-size: contain;
	mask-position: 0 0;
	transition: all .25s ease;
}

.icon-arrow-deco {
	display: inline-block;
	width: 24px;
	height: 24px;
	-webkit-mask-image: url('../img/common/icon_arrow_right.svg');
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: 0 0;
	-webkit-mask-size: contain;
	mask-image: url('../img/common/icon_arrow_right.svg');
	mask-repeat: no-repeat;
	mask-size: contain;
	mask-position: 0 0;
}

.icon-web {
	display: inline-block;
	width: 32px;
	height: 32px;
	-webkit-mask-image: url('../img/common/icon_web.svg');
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: 0 0;
	-webkit-mask-size: contain;
	mask-image: url('../img/common/icon_web.svg');
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: 0 0;
	background: #fff;
	transition: all .25s ease;
}

.icon-line {
	display: inline-block;
	width: 32px;
	height: 32px;
	background-image: url('../img/common/icon-line.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.icon-instagram {
	display: inline-block;
	width: 48px;
	height: 48px;
	background-image: url('../img/common/icon-instagram.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}


/* animation ---------------------------------------*/
.animation{
	transition: all 1.25s ease;
	opacity: 0;
	transform: translate(0,20px);
}

.animation.on{
	opacity: 1;
	transform: translate(0,0) translateZ(0);
}


/* notfound ---------------------------------------*/
.notfound-wrapper {
	min-height: calc(100dvh - 138px);
}

.notfound {
	padding: 230px 20px 100px;
}

.notfound-title {
	font-size: 28px;
	font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.notfound-text {
    font-size: 16px;
	font-weight: 500;
    text-align: center;
}

.notfound-btn {
	text-align: center;
	margin: 60px auto 0;
}


@media screen and (min-width: 768px){

}


/* margin ---------------------------------------*/

.mt-0{margin-top:0px !important;}
.mt-5{margin-top:5px !important;}
.mt-10{margin-top:10px !important;}
.mt-15{margin-top:15px !important;}
.mt-20{margin-top:20px !important;}
.mt-25{margin-top:25px !important;}
.mt-30{margin-top:30px !important;}
.mt-35{margin-top:35px !important;}
.mt-40{margin-top:40px !important;}
.mt-45{margin-top:45px !important;}
.mt-50{margin-top:50px !important;}
.mt-55{margin-top:55px !important;}
.mt-60{margin-top:60px !important;}
.mt-65{margin-top:65px !important;}
.mt-70{margin-top:70px !important;}
.mt-75{margin-top:75px !important;}
.mt-80{margin-top:80px !important;}
.mt-85{margin-top:85px !important;}
.mt-90{margin-top:90px !important;}
.mt-95{margin-top:95px !important;}
.mt-100{margin-top:100px !important;}

.mb-0{margin-bottom:0px !important;}
.mb-5{margin-bottom:5px !important;}
.mb-10{margin-bottom:10px !important;}
.mb-15{margin-bottom:15px !important;}
.mb-20{margin-bottom:20px !important;}
.mb-25{margin-bottom:25px !important;}
.mb-30{margin-bottom:30px !important;}
.mb-35{margin-bottom:35px !important;}
.mb-40{margin-bottom:40px !important;}
.mb-45{margin-bottom:45px !important;}
.mb-50{margin-bottom:50px !important;}
.mb-55{margin-bottom:55px !important;}
.mb-60{margin-bottom:60px !important;}
.mb-65{margin-bottom:65px !important;}
.mb-70{margin-bottom:70px !important;}
.mb-75{margin-bottom:75px !important;}
.mb-80{margin-bottom:80px !important;}
.mb-85{margin-bottom:85px !important;}
.mb-90{margin-bottom:90px !important;}
.mb-95{margin-bottom:95px !important;}
.mb-100{margin-bottom:100px !important;}
.mb-110{margin-bottom:110px !important;}
.mb-120{margin-bottom:120px !important;}
.mb-130{margin-bottom:130px !important;}
.mb-140{margin-bottom:140px !important;}


/* width ---------------------------------------*/

.wid-10per{width:10% !important;}
.wid-15per{width:15% !important;}
.wid-20per{width:20% !important;}
.wid-25per{width:25% !important;}
.wid-30per{width:30% !important;}
.wid-40per{width:40% !important;}
.wid-50per{width:50% !important;}
.wid-60per{width:60% !important;}
.wid-70per{width:70% !important;}
.wid-80per{width:80% !important;}
.wid-100per{width:100% !important;}

.wid-100{width:100px !important;}
.wid-110{width:110px !important;}
.wid-120{width:120px !important;}
.wid-130{width:130px !important;}
.wid-140{width:140px !important;}
.wid-150{width:150px !important;}
.wid-160{width:160px !important;}
.wid-170{width:170px !important;}
.wid-180{width:180px !important;}
.wid-190{width:190px !important;}
.wid-200{width:200px !important;}
.wid-210{width:210px !important;}
.wid-220{width:220px !important;}
.wid-230{width:230px !important;}
.wid-240{width:240px !important;}
.wid-250{width:250px !important;}
.wid-260{width:260px !important;}
.wid-270{width:270px !important;}
.wid-280{width:280px !important;}
.wid-290{width:290px !important;}
.wid-300{width:300px !important;}


/* title ---------------------------------------*/

.title-page{
	font-weight:600;
	font-size: 2.0rem;
	line-height: 1.5;
	color: #222;
}

.title-section{
	font-size: 32px;
	line-height: 1;
	font-weight:700;
	display: block;
}

.title-section-en{
	font-family: 'Montserrat', sans-serif;
	color: #FF7C1E;
	font-size: 16px;
	line-height: 1;
	font-weight:700;
	display: block;
}

.title-block{
	font-weight:600;
	font-size: 1.0rem;
	line-height: 1.5;
	color: #222;
}

.title-paragraph{
}

.title-small{

}


/* text ---------------------------------------*/

.text-center{text-align: center !important;}
.text-right{text-align: right !important;}
.text-left{text-align: left !important;}

.text-s{
	font-size: 1.2rem;
	line-height: 1.5;
}

.text-m{
	font-size: 1.4rem;
	line-height: 1.5;
}

.text-l{
	font-size: 1.8rem;
	color: #484848;
	line-height: 1.94;
}

.text-bold{font-weight:600;}

.text-red{color: #aa0000 !important;}


.text-ellipsis-2{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.text-ellipsis-3{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.text-ellipsis-4{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
}

@media all and (-ms-high-contrast:none){
	.text-ellipsis-2 { height: 3.2em; } /* IE10〜Edge */
	.text-ellipsis-3 { height: 4.7em; } /* IE10〜Edge */
}

.text-ellipsis-count::after{content: '…';}

.text-link{text-decoration: underline;}
.text-link:hover{text-decoration: none;}
.text-underline{text-decoration: underline;}

/* pankuzu ---------------------------------------*/

.pankuzu {
	padding: 38px 20px;
}

.pankuzu-inner { 
	max-width: 1120px;
	margin: 0 auto;
}

.pankuzu-list > li {
	position: relative;
	display: inline-block;
	font-size: 14px;
}

.pankuzu-list > li:not(:last-of-type) {
	margin-right: 24px;
}

.pankuzu-list > li:not(:last-of-type)::after {
	display: block;
	content: '/';
	position: absolute;
	right: -18px;
	top: 0;
}

.pankuzu-list > li a {
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0;
}

.pankuzu-list > li a:hover {opacity: 0.7;}

.pankuzu-list > li span {
	color: #ccc;
}


/* table ---------------------------------------*/

.table-horizontal{font-size:14px}

.table-horizontal thead th,
.table-horizontal thead td{
	background: #767676;
	color: #fff;
	line-height: 1.94;
	padding: 3px 4px;
	border-top:1px solid #dbdbdb;
	border-right:1px solid #dbdbdb;
	border-left:1px solid #dbdbdb;
	text-align:center;
	white-space: nowrap;
}

.table-horizontal tbody th,
.table-horizontal tbody td{
	line-height: 1.75;
	padding: 6px 8px;
	background: #fff;
	border:1px solid #dbdbdb;
}

.table-horizontal tbody th{text-align:center;}

.table-horizontal tbody td.td-grouptitle{
	font-weight:600;
	text-align:center;
	background: #DCE3E8;
	color: #484848;
}

.table-horizontal.is-zebra tbody tr:nth-child(2n) th,
.table-horizontal.is-zebra tbody tr:nth-child(2n) td{background: #F4F4F4;}

.table-vertical{border-top:1px solid #DBDBDB;}

.table-vertical th{
	text-align: left;
	padding: 16px;
	background: #F4F4F4;
	vertical-align: top;
	font-weight:600;
	border-bottom:1px solid #DBDBDB;
	color: #333;
	line-height: 1.6;
	text-align: left;
	min-width: 145px;
	vertical-align: middle;
}

.table-vertical td{
	text-align: left;
	padding: 16px 16px;
	vertical-align: top;
	border-bottom:1px solid #DBDBDB;
	line-height: 1.6;
	color: #484848;
}

.table-horizontal td a,
.table-vertical td a{color: #0078C6;}

.table-horizontal td a:hover,
.table-vertical td a:hover{text-decoration: underline;}

.table-vertical td small{
	line-height: 1.3;
	display: inline-block;
	font-size:12px;
}


/* modal ---------------------------------------*/

.modal-wrapper{display: none;}

.modal{background: #fff;}

.modal-inner{
	width: 100%;
	padding: 60px 40px 40px;
	background: #fff;
}

.modal-inner-manual{
	text-align: center;
}

.modal-inner-manual iframe{
	width: 600px;
	height: 500px
}

.modal-inner-close{
	position:absolute;
	right: 10px;
	top: 10px;
}


/* pager ---------------------------------------*/

.pager { 
	margin-top: 56px;
}

.pager-list {
	display: flex;
	list-style-type: none;
	padding: 0;
	justify-content: center;
	align-items: center;
}

.pager-list > li {
	margin: 0;
}

.pager-list > li a, .pager-list > li span {
	display: inline-block;
	padding: 14px 4px;
	font-size: 20px;
	line-height: 1;
	color: #333;
	text-decoration: none;
	background: #eee;
	border-radius: 99px;
	width: 48px;
	vertical-align: middle;
	text-align: center;
	transition: all .25s ease;
	margin: 0 10px;
}
.pager-list > li a:hover,
.pager-list > li span {
	background-color: #000;
	color: #fff;
	opacity: 1;
}

.pager-list > li.pager-dots {
	font-size: 20px;
	line-height: 1.1;
	text-align: center;
	margin: 0 25px!important;
}


/* form ---------------------------------------*/

.form-text,
.form-date{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	padding: 0 10px;
	border: 1px solid #999;
	width: 100%;
	border-radius: 0;
	line-height: 1;
	height: 38px;
}

::placeholder {color:#ccc;}

.form-select{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	padding: 0 10px;
	border: 1px solid #999;
	width: 100%;
	background: url('../img/common/select.svg') no-repeat right 10px top 50%;
	background-size: 24px 24px;
	border-radius: 0;
	line-height: 1;
	height: 38px;
}

.form-select.is-notselected{
	color: #ccc;
}

select::-ms-expand {
	display: none;
}

.form-textarea{
	-webkit-appearance: none;
	outline: none;
	padding: 13px 10px;
	border: 1px solid #999;
	width: 100%;
	height: 200px;
	box-sizing: border-box;
	border-radius: 0;
}

.form-radio {
	display: inline-block;
	line-height: 1;
	margin-right: 5px;
	font-size: 14px;
	position:relative;
}

.form-radio label {
	box-sizing: border-box;
	cursor: pointer;
	display: inline-block;
	line-height: 1.4;
	min-height: 23px;
	margin: 0px 0;
	padding: 3px 0 0 25px;
	position: relative;
	vertical-align: top;
}

.form-radio input[type="radio"]{position: absolute;left:0px;top:0px;width:1px;height:1px;overflow: hidden;opacity:0;}

.form-radio label::before{
	display:block;
	content:'';
	border:1px solid #aaa;
	border-radius:50%;
	width:20px;
	height:20px;
	position:absolute;
	left: 0;
	top:50%;
	transform: translate(0,-50%);
}

.form-radio input:checked + label::after{
	display:block;
	content:'';
	background: #2A619B;
	border-radius:50%;
	width:14px;
	height:14px;
	position:absolute;
	left: 4px;
	top:50%;
	transform: translate(0,-50%);
}

.form-radio input:disabled + label {opacity: 0.7;}

.form-checkbox {
	display: inline-block;
	line-height: 1;
	margin-right: 5px;
	font-size: 14px;
	position:relative;
}

.form-checkbox label {
	box-sizing: border-box;
	cursor: pointer;
	display: inline-block;
	line-height: 1.4;
	min-height: 23px;
	margin: 0px 0;
	padding: 3px 0 0 30px;
	position: relative;
	vertical-align: top;
}

.form-checkbox input[type="checkbox"]{position: absolute;left:0px;top:0px;width:1px;height:1px;overflow: hidden;opacity:0;}

.form-checkbox label::before{
	display:block;
	content:'';
	border:1px solid #aaa;
	border-radius:2px;
	width:20px;
	height:20px;
	position:absolute;
	left: 0;
	top:50%;
	transform: translate(0,-50%);
}

.form-checkbox input:checked + label::after{
	display:block;
	content:'';
	background: #2A619B;
	border-radius:1px;
	width:14px;
	height:14px;
	position:absolute;
	left: 4px;
	top:50%;
	transform: translate(0,-50%);
}

.form-checkbox input:disabled + label {opacity: 0.7;}

.toggle-switch {
	position: relative;
	width: 60px;
	height: 30px;
	margin: auto;
	display: inline-block;
}

.toggle-input {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
	opacity: 0;
	cursor: pointer;
}

.toggle-switch label{
	width: 60px;
	height: 30px;
	background: #ccc;
	position: relative;
	display: inline-block;
	border-radius: 30px;
	transition: 0.1s;
	box-sizing: border-box;
}

.toggle-switch label::after {
	content: '';
	position: absolute;
	width: 30px;
	height: 30px;
	border-radius: 100%;
	left: 0;
	top: 0;
	z-index: 2;
	background: #fff;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	transition: 0.1s;
}

.toggle-input:checked + label{background-color: #4BD865;}
.toggle-input:checked + label::after{left: 30px;}

.submit{
	text-align: center;
}

.must{color:#aa0000;}


/* accordion ---------------------------------------*/

.accordion{}

.accordion-title{
	position:relative;
	display: inline-block;
	padding-right: 50px;
	cursor: pointer;
}

.accordion-title:hover{
	color:#2A619B;
	text-decoration: underline;
}

.accordion-title::after{
	display:block;
	content:'';
	border-bottom:3px solid #2A619B;
	border-right:3px solid #2A619B;
	width:10px;
	height:10px;
	margin-top:-17px;
	position:absolute;
	right:10px;
	top:50%;
	transform: rotate(45deg);
	transition: all .25s ease;
}

.accordion-title.is-open::after{
	transform: rotate(225deg);
}

.accordion-body{
	display: none;
}


/* tab ---------------------------------------*/

.tab{}

/* disabled-link ---------------------------------------*/
.disabled-link {
	pointer-events: none; /* クリックを無効化 */
}

/* loading animation ---------------------------------------*/
.loading {
	width: 100vw;
	height: 100vh;
	transition: all 1s;
	background-color: #FFF;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	opacity: 1;
	visibility: visible;
}

.loading.is-active {
	opacity: 0;
	visibility: hidden;
}

.loading-animation {
	width: 100vw;
	height: 100vh;
	transition: all 1s;
	background-color: #000;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
}

.loading-animation.is-active {
	opacity: 1;
	visibility: visible;
}

/* ロゴふわっと表示 */
.logo-fadein {
	opacity: 0;
	transform: translateY(40px); /* ← 移動距離UP */
	transition: opacity 1.8s cubic-bezier(0.22, 1, 0.36, 1), transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: 0.2s;
}

.logo-fadein.is-active {
	opacity: 1;
	transform: translateY(0);
}

/* 開院日・内覧会のお知らせ ---------------------------------------*/

.important-announcement { 

}

.important-announcement > li { 
	position: relative;
	width: 400px
}

.important-announcement li {
	height: 64px;
	/* height: 100px; */
	/* background: rgba(255, 255, 255, 0.25); */
	background: #000;
  	/* border-radius: 20px; */
  	/* -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
  	/* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
  	/* -webkit-backdrop-filter: blur(5px); */
  	/* backdrop-filter: blur(5px); */
 	/* border: 1px solid rgba(255, 255, 255, 0.25); */
	border: 1px solid #fff;
}

.important-announcement-text { 
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	width: 100%;
	font-size: 16px;
	/* font-size: 18px; */
	line-height: 2;
	text-align: center;
	padding: 0 16px;
	color: #fff;
}

/* pc only */
@media screen and (min-width: 768px){
	.sp{display: none !important;}
	.spbr{display: none;}
}



/* small pc */
@media screen and (min-width: 768px) and (max-width: 1200px){

}



/* s0 only */
@media screen and (max-width: 767px){

	/* common item ---------------------------------------*/

	.pc{display: none !important;}
	.pcbr{display: none;}


	/* layout ---------------------------------------*/
	.wrapper {
	}
	
	.header-inner,
	.footer-inner,
	.inner,
	.wrapper{
		min-width: 0;
		width: 100%;
	}

	.pagewrapper {
		margin-top: 60px;
	}

		/* header ---------------------------------------*/

		.header-inner{
			height: 60px;
		}
	
		.header-logo{
			left:10px;
		}
	
		#openmenu{
			display:block;
			background: #434655;
			width:60px;
			height:60px;
			overflow: hidden;
			position:absolute;
			right:0;
			top:50%;
			transform: translateY(-50%);
			z-index: 99999;
		}
	
		#openmenu span{
			content:'';
			display: block;
			width: 24px;
			height: 1px;
			background: #FFF;
			position: absolute;
			left: 50%;
			transform: translateX(-50%);
			transition: all .25s ease;
		}
	
		#openmenu span:nth-child(1){top:22px;}
		#openmenu span:nth-child(2){top:30px;}
		#openmenu span:nth-child(3){top:38px;}
	
		#openmenu.is-open span:nth-child(1){
			transform:translateX(-50%) rotate(45deg);
			top:28px;
		}
	
		#openmenu.is-open span:nth-child(2){
			opacity:0;
		}
	
		#openmenu.is-open span:nth-child(3){
			transform:translateX(-50%) rotate(-45deg);
			top:28px;
		}
	
		.bodyfixed{
			position: fixed;
			width: 100%;
			height: 100%;
		}
	
	
		/* gnav ---------------------------------------*/
	
		.gnav {
			display: block;
			height: calc(100dvh - 60px)!important;
			background: #434655;
			padding: 38px 20px 96px;
			overflow:auto;
			z-index:100;
			position: absolute;
			top: 60px;
			right: 0px;
			width: 100%;
			transition: all .25s ease;
			transform:translate3d(100%, 0, 0);
		}
	
		#gnav.is-active{
			transform:translate3d(0,0,0);
			opacity:1;
		}
	
		.gnav-list {
			display: block;
		}
	
		.gnav-list > li,
		.gnav-list > li > a {
			font-size: 16px;
			line-height: 1.44;
			color: #fff;
		}
	
		.gnav-list > li + li {
			margin-top: 32px;
		}
	
		.has-child {
			position: unset;
			padding-right: 0;
		}
	
		.gnav-sub {
			position: unset;
			width: unset;
			height: unset;
		}
	
		.gnav-sub{
			position: unset;
		}
	
		.gnav-sublist {
			position: unset;
			background: none;
			width: unset;
			height: unset;
			margin: 0;
			padding: 20px 0 0 6px;
			visibility: visible;
			opacity: 1;
			display: block;
			box-shadow: none;
			transform: unset;
		}


	/* notfound ---------------------------------------*/
	.notfound-wrapper {
		min-height: calc(100dvh - 170px);
	}

	.notfound {
		padding: 150px 20px 100px;
	}

	.notfound-title {
		font-size: 24px;
	}


	/* margin ---------------------------------------*/

	.mt-sp-0{margin-top:0px !important;}
	.mt-sp-5{margin-top:5px !important;}
	.mt-sp-10{margin-top:10px !important;}
	.mt-sp-15{margin-top:15px !important;}
	.mt-sp-20{margin-top:20px !important;}
	.mt-sp-25{margin-top:25px !important;}
	.mt-sp-30{margin-top:30px !important;}
	.mt-sp-35{margin-top:35px !important;}
	.mt-sp-40{margin-top:40px !important;}
	.mt-sp-45{margin-top:45px !important;}
	.mt-sp-50{margin-top:50px !important;}
	.mt-sp-55{margin-top:55px !important;}
	.mt-sp-60{margin-top:60px !important;}
	.mt-sp-65{margin-top:65px !important;}
	.mt-sp-70{margin-top:70px !important;}
	.mt-sp-75{margin-top:75px !important;}
	.mt-sp-80{margin-top:80px !important;}
	.mt-sp-85{margin-top:85px !important;}
	.mt-sp-90{margin-top:90px !important;}
	.mt-sp-95{margin-top:95px !important;}
	.mt-sp-100{margin-top:100px !important;}

	.mb-sp-0{margin-bottom:0px !important;}
	.mb-sp-5{margin-bottom:5px !important;}
	.mb-sp-10{margin-bottom:10px !important;}
	.mb-sp-15{margin-bottom:15px !important;}
	.mb-sp-20{margin-bottom:20px !important;}
	.mb-sp-25{margin-bottom:25px !important;}
	.mb-sp-30{margin-bottom:30px !important;}
	.mb-sp-35{margin-bottom:35px !important;}
	.mb-sp-40{margin-bottom:40px !important;}
	.mb-sp-45{margin-bottom:45px !important;}
	.mb-sp-50{margin-bottom:50px !important;}
	.mb-sp-55{margin-bottom:55px !important;}
	.mb-sp-60{margin-bottom:60px !important;}
	.mb-sp-65{margin-bottom:65px !important;}
	.mb-sp-70{margin-bottom:70px !important;}
	.mb-sp-75{margin-bottom:75px !important;}
	.mb-sp-80{margin-bottom:80px !important;}
	.mb-sp-85{margin-bottom:85px !important;}
	.mb-sp-90{margin-bottom:90px !important;}
	.mb-sp-95{margin-bottom:95px !important;}
	.mb-sp-100{margin-bottom:100px !important;}


	/* width ---------------------------------------*/

	.wid-sp-100per{width:100% !important;}
	.wid-sp-50per{width:50% !important;}

	.wid-sp-40{width:40px !important;}
	.wid-sp-50{width:50px !important;}
	.wid-sp-60{width:60px !important;}
	.wid-sp-70{width:70px !important;}
	.wid-sp-80{width:80px !important;}
	.wid-sp-90{width:90px !important;}
	.wid-sp-100{width:100px !important;}
	.wid-sp-110{width:110px !important;}
	.wid-sp-120{width:120px !important;}
	.wid-sp-130{width:130px !important;}
	.wid-sp-140{width:140px !important;}
	.wid-sp-150{width:150px !important;}
	.wid-sp-160{width:160px !important;}
	.wid-sp-170{width:170px !important;}
	.wid-sp-180{width:180px !important;}
	.wid-sp-190{width:190px !important;}
	.wid-sp-200{width:190px !important;}


	/* title ---------------------------------------*/

	.title-page{}

	.title-section{
		font-size: 28px;
		text-align: center;
	}

	.title-section-en{
		font-size: 14px;
		text-align: center;
	}

	.title-section::after{width: 100px;}
	.title-block{font-size: 24px;}
	.title-small{font-size: 16px;}


	/* text ---------------------------------------*/

	.text-sp-center{text-align:center;}
	.text-sp-right{text-align:right;}
	.text-sp-left{text-align:left;}


	/* pankuzu ---------------------------------------*/

	.pankuzu {
		padding: 62px 20px 30px;
	}

	.pankuzu-inner { 
		max-width: unset;
	}

	.pankuzu-list-blogdetail.pankuzu-list > li {
		font-size: 12px;
	}


	/* list ---------------------------------------*/

	.list li{
		padding-left: 15px;
	}


	/* btn ---------------------------------------*/


	/* table ---------------------------------------*/

	.table-wrapper{margin-bottom: 55px;}

	.table-horizontal,
	.table-horizontal tbody,
	.table-horizontal tr,
	.table-horizontal th,
	.table-horizontal td{
		display: block;
		width:100%;
	}


	.table-horizontal th,
	.table-horizontal td{
		font-size:16px;
		border:none;
	}

	.table-horizontal th{padding: 18px 20px 18px 20px;}
	.table-horizontal td{padding: 25px 20px 25px 20px;}

	.table-sp-scroll{
		overflow: auto;
		width: calc(100% + 30px);
		margin: 0 -15px;
		padding-left: 15px;
	}

	.table-sp-scroll table{min-width:450px;}


	/* modal ---------------------------------------*/

	.modal-wrapper{display: none;}

	.modal-inner {
		padding: 60px 20px 20px;
	}

	.modal-inner-close{
		width: 320px;
		max-width: 100%;
		margin:  30px auto;
	}


	/* pager ---------------------------------------*/

	.pager { 
		margin-top: 40px;
	}

	.pager-list > li a, .pager-list > li span {
		padding: 12px 4px;
		font-size: 16px;
		width: 40px;
		margin: 0 5px;
	}

	.pager-list > li.pager-dots {
		font-size: 16px;
		margin: 0 17.5px!important;
	}


	/* loading animation ---------------------------------------*/
	.logo-fadein {
		width: 70%; /* スマホでは小さめに */
	}

	.important-announcement { 

	}

	.important-announcement > li { 
		width: 100%;
		height: 80px;
	}

	.important-announcement-text { 
		font-size: 16px;
		line-height: 1.6;
		padding: 0;
	}





}




/* iphone5 iphoneSE用 */
@media screen and (max-width: 370px){

}