@charset "UTF-8";


/* variables ---------------------------------------*/

:root {
	--color-primary: #eb4827;
	--color-text: #000;
	--color-bg: #fff;
	--color-muted: #6b6b6b;
	--color-dark: #2f2f2f;
	--color-accent: #0d79cd;
	--radius-pill: 999px;
	--container: 1240px;
	--gutter: 20px;
}


/* 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,strong,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;}

html,body{height:100%;}

body{
	-webkit-text-size-adjust: 100%;
	padding:0;
	margin: 0;
	font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro","メイリオ","Meiryo","ＭＳ Ｐゴシック",sans-serif;
	font-feature-settings: "palt" 1;
	-webkit-font-feature-settings: "palt" 1;
	color: var(--color-text);
}

a{
	text-decoration: none;
	color:var(--color-text);
	transition: all .25s ease;
}

a:hover{opacity: 0.7;}

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-en{font-family: "Outfit", sans-serif;}
.fc-white{color: #fff!important;}
.fc-red{color: var(--color-primary)!important;}



/* browser adjust ---------------------------------------*/

@media all and (-ms-high-contrast:none){
	.foo { color: green }
}


/* mask icon ---------------------------------------*/

.icon-arrow{
	-webkit-mask-image: url('../img/common/arrow.svg');
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: 0 0;
	-webkit-mask-size: contain;
	mask-image: url('../img/common/arrow.svg');
	mask-repeat: no-repeat;
	mask-position: 0 0;
	mask-size: contain;
	display: inline-block;
	vertical-align: middle;
	height: 24px;
	width: 24px;
	background: #ff0000;
}


/* layout ---------------------------------------*/

.wrapper{
	padding: 0 30px;
}

.inner{
	max-width: var(--container);
	margin:0 auto;
}

.section{
	margin-bottom: 50px;
}

.overlay{display: none;}


/* header ---------------------------------------*/

header{
	position:fixed;
	right:0;
	top:0;
	z-index:200;
	background: transparent;
}

.header-inner{
	/* max-width:1440px; */
	margin:0 auto;
	padding:22px 30px 0 38px;
	display:flex;
	justify-content: flex-end;
	gap:20px;
	position:relative;
}


/* gnav ---------------------------------------*/
.gnav{
	position: static;
	max-width: 954px;
	height:78px;
	background:#fff;
	border-radius:60px;
	box-shadow: 0px 4px 4px rgba(0,0,0,0.25);
	display:flex;
	align-items:center;
	justify-content:center;
	overflow: hidden;
}

.gnav-list{
	font-size:0px;
	display:flex;
	align-items:center;
	justify-content:center;
	width:100%;
	height: 100%;
}

.gnav-list > li{
	font-size:0;
	position:relative;
	height: 100%;
}

.gnav-list > li + li::before{
	content:'';
	display:block;
	position:absolute;
	left:0;
	top:50%;
	width:50px;
	height:1px;
	background:#ddd;
	transform: translate(-50%,-50%) rotate(90deg);
	opacity:0.9;
}

.gnav-list > li a {
	display: block;
	position: relative;
	padding: 20px 20px;
	text-align:center;
	height: 100%;
}

.gnav-list > li:first-of-type a {padding-left: 40px;}
.gnav-list > li:last-of-type a {padding-right: 30px;}

.gnav-en{
	display:block;
	font-weight:700;
	font-size:18px;
	line-height:20px;
	color:#000;
	white-space:nowrap;
	transition: all .25s ease;
}

.gnav-jp{
	display:block;
	font-weight:900;
	font-size:10px;
	line-height:1.2;
	color:#000;
	margin-top:6px;
	white-space:nowrap;
	transition: all .25s ease;
}

.gnav-list > li.is-current a::after {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 5px;
	background: var(--color-primary);
	content: '';
}

.gnav-list > li.is-current a .gnav-en,
.gnav-list > li.is-current a .gnav-jp {
	color: var(--color-primary);
}

.gnav-list > li a:hover,
.gnav-list > li a:hover {
	opacity: 1;
}

.gnav-list > li a:hover .gnav-en,
.gnav-list > li a:hover .gnav-jp {
	color: var(--color-primary);
}


#openmenu{display:none;}


/* kv ---------------------------------------*/
.kv-logo{
	display: flex;
	align-items: flex-end;
	position: absolute;
	top: 22px;
	left: 38px;
	z-index: 1;
}

.kv-logo img {
	width: 193px;
}

.kv-tagline{
	display: block;
	margin: 0 0 16px 7px;
	font-weight: 900;
	font-size: 17px;
	line-height: 1.2;
	color: #fff;
	white-space: nowrap;
}


/* footer ---------------------------------------*/

footer{
	position: relative;
	background: var(--color-primary);
}

footer::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	width: 100%;
	height: 797px;
	background: url("../img/common/bg_footer_join.jpg") no-repeat center top;
	background-size: cover;
	pointer-events: none;
}

.footerjoin{
	position: relative;
	z-index: 1;
	overflow: hidden;
	padding: 66px var(--gutter) 42px;
	color: #fff;
}

.footerjoin::before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: calc(-953 / 1440 * 100vw);
	z-index: 0;
	width: calc(3347 / 1440 * 100vw);
	aspect-ratio: 3347 / 1145;
	background: var(--color-primary);
	border-radius: 100%;
}

.footerjoin-inner{
	max-width: 1240px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.footerjoin-head{
	display: flex;
	align-items: flex-start;
	gap: 60px;
	margin-bottom: 14px;
}

.footerjoin-title{
	font-weight: 700;
	font-size: 76px;
	line-height: 1;
	color: #fff;
}

.footerjoin-text{
	margin-top: 8px;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.75;
	color: #fff;
	max-width: 620px;
	letter-spacing: 0.05em;
}

.footerjoin-list{
	display: flex;
	/* justify-content: center; */
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 0;
	margin-bottom: 22px;
}

.footerjoin-list > li {
	width: calc(calc(100% - 16px) / 3);
	/* min-width: 350px; */
	height: 80px;
}

.footerjoin-btn{
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 10px;
	padding: 29px 40px;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.1;
	text-align: center;
	box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.footerjoin-btn:hover{
	opacity: 1;
	background: var(--color-dark);
	color: #fff;
}

.footerjoin-btn::after{
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 19px;
	height: 18px;
	background: url("../img/common/icon_blank.svg") no-repeat center center;
	background-size: contain;
}

.footerjoin-btn.is-image{
	display: flex;
	align-items: center;
	justify-content: center;
}

.footerjoin-btn.is-image img{
	max-width: 133px;
	width: 100%;
}

.footerjoin-btn.is-image::before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 10;
	width: 133px;
	height: 20px;
	background: url('../img/common/logo_nahato_ace_white.png') no-repeat;
	background-size: contain;
	content: '';
	opacity: 0;
	transition: all .25s ease;
}

.footerjoin-btn.is-image:hover::before {
	opacity: 1;
}

.footerjoin-banners{
	display: flex;
	gap: 8px;
}

.footerjoin-banner{
	display: block;
	position: relative;
	width: calc(calc(100% - 16px) / 3);
	border-radius: 20px;
	overflow: hidden;
}

.footerjoin-banner::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 2px solid var(--color-primary);
	border-radius: 20px;
	box-sizing: border-box;
}


.footerjoin-banner img{
	width: 100%;
	display: block;
}

.footer-main{
	position: relative;
	z-index: 1;
	padding: 18px var(--gutter) 80px;
	background: var(--color-primary);
	border-top: 1px solid #B30000;
}

.footer-main-inner{
	position: relative;
	max-width: 1240px;
	margin: 0 auto;
}

.footer-wrapper {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.footer-logo{
	display: flex;
	align-items: flex-end;
	height: fit-content;
	margin-bottom: 4px;
}

.footer-logo img {
	width: 193px;
}

.footer-tagline {
	display: block;
	margin: 0 0 16px 7px;
	font-weight: 900;
	font-size: 17px;
	line-height: 1.2;
	color: #fff;
	white-space: nowrap;
}

.footer-info {
	max-width: 866px;
}

.footer-nav{
	width: 100%;
	padding-top: 24px;
}

.footer-nav-list{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 36px;
}

.footer-nav-list > li{
	text-align: center;
}

.footer-nav-list > li a{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 6px;
	color: #fff;
	text-align: center;
	transition: all .25s ease;
}

.footer-nav-list > li a:hover {
	color: var(--color-dark);
	opacity: 1;
}

.footer-nav-en{
	display: block;
	font-weight: 700;
	font-size: 18px;
	line-height: 20px;
	white-space: nowrap;
	text-align: center;
}

.footer-nav-jp{
	display: block;
	font-weight: 900;
	font-size: 10px;
	line-height: normal;
	white-space: nowrap;
	text-align: center;
}

.footer-summary{
	margin-top: 36px;
	width: 100%;
	display: flex;
	align-items: center;
	gap: 14px;
}

.footer-corporate-btn{
	width: 320px;
	max-width: 100%;
	padding: 17px 50px;
	border-radius: 100px;
	background: #fff;
	color: var(--color-primary);
	font-weight: 900;
	font-size: 16px;
	line-height: calc(20 / 16);
	letter-spacing: 0.05em;
	position: relative;
	text-align: center;
}

.footer-corporate-btn:hover{
	opacity: 1;
	background: var(--color-dark);
	color: #fff;
}

.footer-corporate-btn i {
	-webkit-mask-image: url('../img/common/icon_blank.svg');
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: 0 0;
	-webkit-mask-size: contain;
	mask-image: url('../img/common/icon_blank.svg');
	mask-repeat: no-repeat;
	mask-position: 0 0;
	mask-size: contain;
	display: inline-block;
	vertical-align: middle;
	height: 14px;
	width: 14px;
	background: var(--color-primary);
	position: absolute;
	right: 26px;
	top: 50%;
	transform: translateY(-50%);
}

.footer-sns{
	display: flex;
	align-items: center;
	gap: 30px;
	color: #fff;
}

.footer-sns-label{
	font-weight: 700;
	font-size: 18px;
	line-height: 20px;
}

.footer-sns-line{
	width: 71px;
	height: 1px;
	background: #fff;
}

.footer-sns-links{
	display: flex;
	align-items: center;
	gap: 30px;
}

.footer-sns-link{
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.footer-sns-link img{
	display: block;
	width: auto;
	height: auto;
	max-height: 26px;
}

.copyright{
	position: absolute;
	bottom: 6px;
	left: 0;
	display: block;
	font-size: 12px;
	line-height: 1.2;
	font-weight: 500;
	color: #fff;
}

.footer-top{
	position: absolute;
	right: 22px;
	bottom: 84px;
	z-index: 5;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.footer-top i {
	-webkit-mask-image: url(../img/common/icon_gotop.svg);
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: 0 0;
	-webkit-mask-size: contain;
	mask-image: url(../img/common/icon_gotop.svg);
	mask-repeat: no-repeat;
	mask-position: 0 0;
	mask-size: contain;
	display: inline-block;
	vertical-align: middle;
	height: 17px;
	width: 17px;
	background: var(--color-primary);
	position: absolute;
	top: 46%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.footer-top:hover {
	opacity: 1;
	background: var(--color-dark);
}


/* fixedentry (floating) ---------------------------------------*/

.fixedentry{
	position: fixed;
	right: 0;
	bottom: 20px;
	width: 300px;
	z-index: 50;
}

.fixedentry-inner{
	background: var(--color-primary);
	border-radius: 20px 0 0 20px;
	box-shadow: 0px 4px 4px rgba(0,0,0,0.25);
	overflow: hidden;
}

.fixedentry-head{
	position: relative;
	margin: 0;
	background: var(--color-dark);
	color: #fff;
	padding: 14px 18px;
	display: flex;
	justify-content: center;
	align-items: baseline;
	gap: 4px;
	cursor: pointer;
}

.fixedentry-head::before,
.fixedentry-head::after{
	position: absolute;
	content: '';
	top: 50%;
	right: 25px;
	z-index: 2;
	height: 2px;
	width: 10px;
	background: var(--color-primary);
	transition: all .25s ease;
}

.fixedentry-head::before{transform: translateY(-50%) rotate(90deg);}
.fixedentry-head::after{transform: translateY(-50%);}
.fixedentry-head.open::before{transform: rotate(180deg);}
.fixedentry-head.open::after{opacity: 0;}

.fixedentry-head-en{
	font-weight: 700;
	font-size: 18px;
	line-height: 1.1;
}

.fixedentry-head-jp{
	font-weight: 900;
	font-size: 10px;
}

.fixedentry-head-en::after{
	position: absolute;
	top: 14px;
	right: 20px;
	z-index: 1;
	width: 18px;
	height: 18px;
	border: 1px solid var(--color-primary);
	content: '';
}

.fixedentry-list{
	padding: 10px 20px 18px;
}

.fixedentry-list li + li {margin-top: 6px;}

.fixedentry-btn{
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	gap: 10px;
	background: #fff;
	border-radius: var(--radius-pill);
	padding: 0 14px;
	width: 100%;
	height: 40px;
	font-size: 14px;
	font-weight: 700;
	line-height: calc(20 / 14);
	box-shadow: 0 4px 2px rgba(0,0,0,0.1);
}

.fixedentry-btn:hover {
	opacity: 1;
	background: var(--color-dark);
	color: #fff;
}

.fixedentry-btn::after{
	position: absolute;
	top: 50%;
	right: 14px;
	transform: translateY(-50%);
	z-index: 1;
	width: 14px;
	height: 14px;
	background: url('../img/common/icon_blank.svg') no-repeat center center / contain;
	content: '';
}

.fixedentry-btn.is-image::before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 10;
	width: 133px;
	height: 20px;
	background: url('../img/common/logo_nahato_ace_white.png') no-repeat;
	background-size: contain;
	content: '';
	opacity: 0;
	transition: all .25s ease;
}

.fixedentry-btn.is-image:hover::before {
	opacity: 1;
}


/* 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 ---------------------------------------*/
.section-title{
	margin-bottom: 60px;
}

.section-title-en{
	font-weight: 700;
	color: var(--color-primary);
	font-size: 66px;
	line-height: 1.1;
	margin-bottom: 2px;
}

.company .section-title-en {
	margin-bottom: 0;
}

.section-title-en.text-sp-center {
	margin-bottom: 6px;
}

.section-title-jp{
	font-weight: 900;
	font-size: 14px;
	/* letter-spacing: 0.08em; */
	color: var(--color-primary);
}

.company .section-title-jp {
	letter-spacing: 0.04em;
}

/* text ---------------------------------------*/
.section-lead {
	font-weight: 900;
	font-size: 36px;
	line-height: 48px;
	color: var(--color-accent);
	margin-bottom: 30px;
	letter-spacing: 0.05em;
}

.section-lead.orange{
	color: var(--color-primary);
}

.section-text{
	font-weight: 500;
	font-size: 16px;
	line-height: 28px;
	letter-spacing: 0.08em;
	margin-bottom: 40px;
}

.membermidcareer .section-text,
.membernewgraduate .section-text,
.memberentrylevel .section-text {
	margin-bottom: 30px;
}

.text-center{text-align: center !important;}
.text-right{text-align: right !important;}
.text-left{text-align: left !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{
	opacity: 1;
	text-decoration: none;
}

.section-lead-strong {
	margin-bottom: 30px;
	font-size: min(calc(90 / 1280 * 100vw), 90px);
	font-weight: 900;
	line-height: calc(103 / 90);
	letter-spacing: 0.03em;
	color: var(--color-primary);
}

.section-text-strong {
	font-size: min(calc(42 / 1280 * 100vw), 42px);
	font-weight: 700;
	line-height: calc(90 / 42);
	letter-spacing: 0.05em;
}

.section-text-strong strong {
	display: block;
	font-size: min(calc(48 / 1280 * 100vw), 48px);
	font-weight: 900;
	line-height: calc(90 / 48);
}

.section-lead-strong-image {
	margin: 0 auto 30px;
	width: calc(712 / 1240 * 100%);
}

.section-lead-strong-image img {
	width: 100%;
}


/* pankuzu ---------------------------------------*/

.pankuzu{
	border-bottom:1px solid #ddd;
}

.pankuzu-list{}
.pankuzu-list > li{
	display: inline-block;
	font-size:13px;
}

.pankuzu-list > li a,
.pankuzu-list > li span{
	display: block;
	padding: 0px 30px 0px 10px;
	line-height: 40px;
	position: relative;
}

.pankuzu-list > li a{text-decoration:none;}

.pankuzu-list > li a::after{
	display:block;
	content:'';
	width:25px;
	height:25px;
	border-top:1px solid #ddd;
	border-right:1px solid #ddd;
	transform: rotate(45deg) translate(0,-50%);
	position:absolute;
	right:10px;
	top:45%;
}

.pankuzu-list > li span{}



/* btn ---------------------------------------*/

.btn-more{
	display: inline-block;
	width: 320px;
	max-width: 100%;
	padding: 14.5px 24px;
	border-radius: var(--radius-pill);
	border: 1px solid transparent;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 0.06em;
	text-align: center;
	text-decoration: none;
	line-height: 1.5;
	transition: all .25s ease;
	box-shadow: 0px 4px 2px rgba(0,0,0,0.1);
	position: relative;
}

.btn-more.is-primary{
	background: var(--color-primary);
	/* border-color: var(--color-primary); */
	color: #fff;
}

.btn-more.is-secondary{
	background: #fff;
	color: var(--color-primary);
	/* border-color: var(--color-primary); */
}

.btn-more:hover{
	opacity: 1;
}
.btn-more.is-primary:hover{
	background: var(--color-dark);
}
.btn-more.is-secondary:hover{
	background: var(--color-dark);
	color: #fff;
	/* border-color: #fff; */
}

.btn-more i {
	width: 117px;
	height: 1px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(50%,-50%);
	transition: all .25s ease;
}

.btn-more.is-primary i {
	background: linear-gradient(to right,#fff 0%, #fff 50%,var(--color-primary) 50%, var(--color-primary) 100%);
}

.btn-more.is-primary:hover i {
	/* background: linear-gradient(to right,var(--color-primary) 0%, var(--color-primary) 100%); */
}

.btn-more.is-secondary i {
	background: linear-gradient(to right,var(--color-primary) 0%, var(--color-primary) 50%,#fff 50%, #fff 100%);
}

.btn-more.is-secondary:hover i {
	/* background: linear-gradient(to right,#fff 0%, #fff 100%); */
}

.btn-more i::after {
  display: block;   
	content: '';
	width: 12px;
	height: 1px;
	position: absolute;
	right: 0;
	bottom: 3px;
	transform:rotate(30deg);
}

.btn-more.is-line-vertical i {
	width: 1px;
	height: 30px;
	position: absolute;
	top: unset;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	transition: all .25s ease;
}
.btn-more.is-secondary.is-line-vertical i {
	background: linear-gradient(to bottom,var(--color-primary) 0%, var(--color-primary) 35%,#fff 35%, #fff 100%);
}
.btn-more.is-secondary.is-line-vertical:hover i {
	background: linear-gradient(to bottom,#fff 0%, #fff 100%);
}
.btn-more.is-line-vertical i::after {
	width: 12px;
	height: 1px;
	right: -10px;
	bottom: 4px;
	transform: rotate(135deg);
}

.btn-more.is-primary i::after {
	background: var(--color-primary); 
}

.btn-more.is-secondary i::after {
	background: #fff;
}

.btn-more.is-line-vertical.is-open i {
	background: linear-gradient(to bottom,#fff 0%, #fff 55%,var(--color-primary) 55%, var(--color-primary) 100%);
	transform: scaleY(-1);
	transform-origin: 50% 46%;
}

.btn-more.is-line-vertical.is-open i::after {
	background: var(--color-primary); 
}

.btn-more.is-line-vertical.is-open:hover i::after {
	background: #fff; 
}



/* btn-navlist ---------------------------------------*/
.btn-navlist{
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	justify-content: center;
	margin-bottom: 40px;
}

.btn-navlist-link{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 7px 12px 8px 22px;
	border-radius: 100px;
	border: 2px solid #fff;
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
	letter-spacing: 0.05em;
	color: var(--color-primary);
	background: #fff;
	white-space: nowrap;
	transition: all .25s ease;
}

.btn-navlist.is-line-red .btn-navlist-link{
	border-color: var(--color-primary);
}

.btn-navlist-link:hover{
	opacity: 1;
	background: var(--color-primary);
	color: #fff;
}

.btn-navlist-label{
	display: inline-block;
}

.btn-navlist-ico {
	flex: none;
	width: 26px;
	height: 26px;
	background: var(--color-primary);
	border-radius: 50%;
	position: relative;
	transition: all .25s ease;
}

.btn-navlist-link:hover .btn-navlist-ico {
	background: #fff;
}

.btn-navlist-ico::after {
	-webkit-mask-image: url('../img/common/icon_nav_arrow.svg');
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: 0 0;
	-webkit-mask-size: contain;
	mask-image: url('../img/common/icon_nav_arrow.svg');
	mask-repeat: no-repeat;
	mask-position: 0 0;
	mask-size: contain;
	display: inline-block;
	vertical-align: middle;
	background: #fff;
	content: '';
	width: 10px;
	height: 9px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	transition: all .25s ease;
}

.btn-navlist-ico.btn-navlist-ico-down::after {
	transform: rotate(90deg);
	transform-origin: top center;
}

.btn-navlist-link:hover .btn-navlist-ico::after {
	background: var(--color-primary);
}


/* btn-official ---------------------------------------*/
.btn-official {
	display: inline-block;
	width: 320px;
	max-width: 100%;
	background: #fff;
	color: var(--color-primary);
	text-align: center;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.25;
	padding: 18px 20px;
	position: relative;
	border-radius: 150px;
}

.btn-official i {
	-webkit-mask-image: url('../img/common/icon_blank.svg');
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: 0 0;
	-webkit-mask-size: contain;
	mask-image: url('../img/common/icon_blank.svg');
	mask-repeat: no-repeat;
	mask-position: 0 0;
	mask-size: contain;
	display: inline-block;
	vertical-align: middle;
	height: 14px;
	width: 14px;
	background: var(--color-primary);
	position: absolute;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
	transition: all .25s ease;
}

.btn-official.is-primary{
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
}

.btn-official.is-primary i {
	background: #fff;
}

.btn-official.is-large {
	width: 400px;
}

.btn-official:hover {
	opacity: 1;
	background: var(--color-dark);
	color: #fff;
}

.btn-official:hover i {
	background: var(--color-primary);
}


/* animation ---------------------------------------*/
.animation {
	transition: all 1.2s ease;
	transform:translate(0, 50px);
	opacity:0;
}

.animation.on {
	transform:translate(0, 0);
	opacity:1;
}


/* 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{
	opacity: 1;
	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: 30px;
	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{}

.pager-list{
	overflow:hidden;
	text-align:center;
	padding:20px 0;
	font-size:0px;
}

.pager-list li{
	display:inline-block;
	margin:0 7px;
	font-size:18px;
}

.pager-list li a,
.pager-list li span{
	display:block;
	border:1px solid #3699E6;
	height:30px;
	width:30px;
	line-height:30px;
	text-align:center;
	color:#3699E6;
	transition: all .25s ease;
}

.pager-list li a:hover,
.pager-list li span{
	opacity: 1;
	background-color:#3699E6;
	color:#fff;
	text-decoration:none;
}

.pager-list li.pagerPrev a,
.pager-list li.pagerNext a{
	width:50px;
	background-color:#3699E6;
	color:#fff;
	font-weight:bold;
}


/* 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{
	opacity: 1;
	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{}


/* large pc */
@media screen and (min-width: 1441px){
	header{
		position:fixed;
		right:calc(50% - 720px);
	}
}

/* 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: 1350px){
	/* kv ---------------------------------------*/
	.kv-logo{
		display: block;
	}

	.kv-tagline{
		margin: 8px 0 0 8px;
	}
}

@media screen and (min-width: 768px) and (max-width: 1250px){
	.header-inner {padding: 22px 16px 0;}
	.kv-logo {
		top: 32px;
		left: 16px;
		width: 120px;
	}
	.kv-tagline {font-size: 14px;}
	.gnav-list > li a {padding: 20px 10px;}
	.gnav-en {font-size: 16px;}
	.gnav-jp {font-size: 9px;}

	.footer-wrapper{gap: 20px;}
	.footer-logo img {max-width: 150px;}
	.footer-nav {padding-top: 14px;}
	.footer-nav-list {gap: 16px;}
	.footer-nav-en {font-size: 16px;}
	.footer-nav-jp { font-size: 9px;}
	.footer-summary {gap: 20px;}
	.footer-sns {gap: 20px;}
	.footer-sns-line {width: 30px;}
	.footer-sns-links {gap: 20px;}
}

@media screen and (min-width: 768px) and (max-width: 1050px){
	.footer-logo {
		display: block;
	}

	.footer-tagline {
    margin: 0 0 8px 8px;
	}
}

@media screen and (min-width: 768px) and (max-width: 999px){
	.footerjoin-list{
		justify-content: center;
	}

	.footerjoin-list > li {
		min-width: 350px;
	}

	.footer-logo img {
		width: 100px;
	}
}

@media screen and (min-width: 768px) and (max-width: 950px){
	.header-inner {padding: 22px 16px 0;}
	.kv-logo {
		top: 32px;
		left: 16px;
		width: 120px;
	}
	.gnav-list > li:first-of-type a {padding-left: 20px;}
	.gnav-list > li:last-of-type a {padding-right: 20px;}
}
@media screen and (min-width: 768px) and (max-width: 900px){
	.header-inner {gap: 10px;}
	.kv-logo {
		top: 36px;
		width: 100px;
	}
	.kv-tagline {font-size: 12px;}
	.gnav-list > li a {padding: 20px 8px;}
	.gnav-en {font-size: 13px;}

	.footer-tagline {font-size: 14px;}
	.footer-wrapper {gap: 16px;}
	.footer-nav {padding-top: 4px;}
	.footer-nav-list {gap: 14px;}
	.footer-nav-en {font-size: 14px;}
	.footer-corporate-btn {width: 290px;}
	.footer-summary {gap: 12px;}
	.footer-sns {gap: 12px;}
	.footer-sns-line {width: 20px;}
	.footer-sns-links {gap: 16px;}
}



/* s0 only */
@media screen and (max-width: 767px){

	html{
		scroll-padding-top: 88px;
	}

	/* common item ---------------------------------------*/

	.pc{display: none !important;}
	.pcbr{display: none;}


	/* layout ---------------------------------------*/

	.header-inner,
	.footer-inner,
	.inner,
	.wrapper{
		min-width: 0;
		width: 100%;
	}

	/* header ---------------------------------------*/
	.header-inner{
		padding: 22px 20px 16px;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
	}

	.overlay{
		content:'';
		display: block;
		position:fixed;
		width:100%;
		height:300px;
		background: rgba(0,0,0,0.5);
		left:0;
		top:0;
		z-index:6;
	}

	#openmenu{
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 5px;
		width: 60px;
		height: 60px;
		flex-shrink: 0;
		overflow: visible;
		position: relative;
		z-index: 100;
		right: auto;
		top: auto;
		border-radius: 50%;
		background: var(--color-primary);
		box-shadow: 0 4px 4px rgba(0,0,0,0.15);
	}

	#openmenu span {
		content:'';
		display: block;
		width: 18px;
		height: 2px;
		border-radius: 2px;
		background: #fff;
		position: absolute;
		left: 21px;
		transition: all .25s ease;
	}

	#openmenu span:nth-child(1) {top:24px;}
	#openmenu span:nth-child(2) {top:30px;}
	#openmenu span:nth-child(3) {top:36px;}

	#openmenu.is-open {background: #fff;}

	#openmenu.is-open span:nth-child(1),
	#openmenu.is-open span:nth-child(3) {
		top: 29px;
		left: 21px;
		background: var(--color-primary);
	}

	#openmenu.is-open span:nth-child(1) {transform:rotate(45deg);}
	#openmenu.is-open span:nth-child(2) {opacity: 0;}
	#openmenu.is-open span:nth-child(3) {transform:rotate(-45deg);}

	.bodyfixed{
		position: fixed;
		width: 100%;
		height: 100%;
	}


	/* gnav ---------------------------------------*/

	.gnav{
		display: block;
		background: rgba(235,72,39,0.95);
		padding: 98px 0 30px;
		overflow:auto;
		z-index:100;
		position: absolute;
		right:0px;
		top:0px;
		width:100vw;
		height: 100vh;
		transition: transform .25s ease, opacity .25s ease;
		transform:translate3d(0,-100%,0);
		box-shadow: unset;
		border-radius: 0;
	}

	.gnav.is-active{
		transform:translate3d(0,0,0);
		opacity:1;
	}

	.gnav-logo {
		position: absolute;
		top: 23px;
		left: 20px;
		display: flex;
		align-items: flex-end;
		flex: 1 1 auto;
		left: 20px;
		min-width: 0;
		max-width: calc(100% - 72px);
		z-index: 110;
	}

	.gnav-logo img{
		height: 49px;
		width: auto;
		flex-shrink: 0;
	}

	.gnav-tagline{
		display: block;
		margin: 0 0 8px 8px;
		font-weight: 900;
		font-size: 17px;
		line-height: 1.2;
		color: #fff;
		white-space: nowrap;
	}

	.gnav-list{
		display: block;
		height: unset;
		border-top: 1px solid #F06E53;
		margin-bottom: 24px;
	}

	.gnav-list > li{
		border-bottom: 1px solid #F06E53;
	}

	.gnav-list > li + li::before{
		display: none;
	}

	.gnav-list > li::after {
		content: '';
		width: 6px;
		height: 6px;
		border: 0;
		border-top: solid 2px #fff;
		border-right: solid 2px #fff;
		transform: translateY(-50%) rotate(45deg);
		position: absolute;
		top: 50%;
		right: 26px;
	}

	.gnav-list > li a{
		padding: 15px 20px;
	}

	.gnav-list > li:first-of-type a {padding-left: 20px;}
	.gnav-list > li:last-of-type a {padding-right: 20px;}

	.gnav-en{
		font-size: 18px;
		line-height: calc(20 / 18);
		color: #fff;
	}

	.gnav-jp{
		margin-top: 2px;
		font-size: 9px;
		color: #fff;
	}

	.gnav-list > li.is-current a::after {
		display: none;
	}

	.gnav-list > li.is-current a .gnav-en,
	.gnav-list > li.is-current a .gnav-jp {
		color: #fff;
	}

	.gnav-list > li a:hover .gnav-en,
	.gnav-list > li a:hover .gnav-jp {
		color: #fff;
	}

	.gnav-entry-list{
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 4px;
	}
	
	.gnav-entry-list > li {
		width: 350px;
		height: 48px;
	}
	
	.gnav-entry-list-btn{
		display: block;
		position: relative;
		width: 100%;
		height: 100%;
		background: #fff;
		border-radius: 10px;
		padding: 18px 30px;
		font-weight: 700;
		font-size: 13px;
		line-height: 1.1;
		text-align: center;
		box-shadow: 0 4px 4px rgba(0,0,0,0.25);
	}

	.gnav-entry-list-btn:hover{
		opacity: 1;
	}
	
	.gnav-entry-list-btn::after{
		content: "";
		position: absolute;
		right: 13px;
		top: 50%;
		transform: translateY(-50%);
		width: 15px;
		height: 14px;
		background: url("../img/common/icon_blank.svg") no-repeat center center;
		background-size: contain;
	}
	
	.gnav-entry-list-btn img{
		max-width: 88px;
		width: 100%;
	}


	/* kv ---------------------------------------*/
	.kv-logo{
		flex: 1 1 auto;
		top: 23px;
		left: 20px;
		min-width: 0;
		max-width: calc(100% - 72px);
		z-index: 110;
	}

	.kv-logo img{
		height: 49px;
		width: auto;
		flex-shrink: 0;
	}

	.kv-tagline{
		display: block;
		margin: 0 0 8px 8px;
		font-weight: 900;
		font-size: 17px;
		line-height: 1.2;
		color: #fff;
		white-space: nowrap;
	}


	/* footer ---------------------------------------*/
	footer::before{
		height: 550px;
		background-position: center center;
	}

	.footerjoin{
		padding: 80px var(--gutter) 28px;
	}

	.footerjoin::before {
		bottom: calc(-334 / 390 * 100vw);
		width: calc(846 / 390 * 100vw);
		aspect-ratio: 846 / 738;
	}

	.footerjoin-head{
		display: block;
		margin-bottom: 0;
	}

	.footerjoin-title{
		font-size: 42px;
		text-align: center;
		margin-bottom: 30px;
	}

	.footerjoin-text{
		margin: 0 auto 30px;
		font-size: 12px;
		line-height: calc(20 / 12);
		text-align: center;
		max-width: unset;
	}

	.footerjoin-lead{
		font-size: 12px;
		line-height: 20px;
		padding-bottom: 30px;
	}

	.footerjoin-list{
		justify-content: center;
		gap: 4px;
		margin-bottom: 40px;
	}

	.footerjoin-list > li{
		width: 350px;
		height: 48px;
	}

	.footerjoin-btn{
		font-size: 13px;
		padding: 18px 30px;
		box-shadow: 0 4px 4px rgba(0,0,0,0.25);
	}

	.footerjoin-btn::after{
		right: 13px;
		width: 15px;
		height: 14px;
	}

	.footerjoin-btn.is-image img{
		max-width: 88px;
	}

	.footerjoin-btn.is-image::before {
		width: 88px;
		height: 14px;
	}

	.footerjoin-banners{
		flex-direction: column;
		gap: 6px;
	}

	.footerjoin-banner{
		width: 100%;
		border-radius: 10px;
	}

	.footerjoin-banner::before {
		display: none;
	}

	.footer-main{
		padding: 110px var(--gutter) 80px;
	}

	.footer-main-inner{
		position: unset;
		max-width: unset;
	}

	.footer-wrapper{
		display: block;
		margin-bottom: 22px;
	}

	.footer-logo{
		display: flex;
		align-items: flex-end;
		max-width: unset;
		width: fit-content;
		margin: 0 auto 48px;
	}
	
	.footer-logo img {
		max-width: 124px;
		width: 100%;
		margin-bottom: 0;
	}

	.footer-tagline {
		margin: 0 0 8px 8px;
	}

	.footer-info{
		width: 100%;
	}

	.footer-nav{
		display: none;
	}

	.footer-summary{
		margin-top: 0;
		width: 100%;
		display: block;
	}

	.footer-corporate-btn{
		position: absolute;
		top: 30px;
		left: 50%;
		transform: translateX(-50%);
		width: 310px;
		padding: 15px 50px;
		font-size: 14px;
		line-height: calc(20 / 14);
	}

	.footer-corporate-btn i {
		justify-content: flex-start;
		gap: 10px;
		right: 20px;
	}

	.footer-sns{
		gap: 12px;
		margin-bottom: 16px;
		padding-right: 160px;
	}

	.footer-sns-line {
		width: 20px;
	}

	.footer-sns-links {
    gap: 12px;
}

	.footer-sns-link:first-of-type{width: 16px;}
	.footer-sns-link:nth-of-type(2){width: 19px;}
	.footer-sns-link:nth-of-type(3){width: 24px;}
	.footer-sns-link:nth-of-type(4){width: 19px;}

	.copyright {
    bottom: 106px;
    left: unset;
    right: 84px;
	}

	.footer-top{
		right: 20px;
		bottom: 84px;
	}


	/* fixedentry (floating) ---------------------------------------*/
	.fixedentry{
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 370px;
		max-width: 100%;
		right: unset;
	}

	.fixedentry-inner{
		border-radius: 10px 10px 0 0;
		overflow: hidden;
	}

	.fixedentry-head{
		padding: 15px 20px;
		gap: 10px;
	}

	.fixedentry-head::before,
	.fixedentry-head::after{
		right: 20px;
	}

	.fixedentry-head-en::after{
		top: 15px;
		right: 15px;
	}

	.fixedentry-list{
		display: flex;
		flex-wrap: wrap;
		gap: 6px 4px;
		padding: 12px 10px;
	}

	.fixedentry-list li{
		margin-bottom: 0;
		width: calc(50% - 2px);
	}

	.fixedentry-list li + li {margin-top: 0;}

	.fixedentry-btn{
		font-size: 12px;
		line-height: 20px;
		padding: 10px 8px;
		text-align: center;
	}

	.fixedentry-btn::after{
		display: none;
	}

	.fixedentry-btn img {
		max-width: 79px;
		width: 100%;
		margin: 0 auto;
	}

	.fixedentry-btn.is-image::before {
		width: 79px;
		height: 12px;
	}


	/* 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 ---------------------------------------*/
	.section-title{
		margin-bottom: 30px;
	}

	.companyprofile .section-title {
		margin-bottom: 10px;
	}

	.section-title-en{
		font-size: 42px;
		line-height: 42px;
		margin-bottom: 0;
	}

	.companyprofile .section-title-en {
		margin-bottom: 7px;
	}

	.section-title-en.text-sp-center {
		margin-bottom: 0;
	}

	.section-title-jp{
		font-size: 10px;
	}


	/* text ---------------------------------------*/
	.section-lead {
		font-size: 24px;
		line-height: calc(32 / 24);
		margin-bottom: 20px;
	}
	
	.section-text{
		font-size: 12px;
		line-height: calc(20 / 12);
		margin-bottom: 30px;
	}
	
	.text-sp-center{text-align:center!important;}
	.text-sp-right{text-align:right!important;}
	.text-sp-left{text-align:left!important;}

	.section-lead-strong {
		margin-bottom: 20px;
		font-size: min(calc(28 / 390 * 100vw), 28px);
		line-height: calc(38 / 28);
	}

	.section-text-strong {
		font-size: min(calc(18 / 390 * 100vw), 18px);
		line-height: calc(40 / 18);
	}

	.section-text-strong strong {
		font-size: min(calc(24 / 390 * 100vw), 24px);
		line-height: calc(34 / 24);
	}

	.section-lead-strong-image {
		width: min(calc(310 / 350 * 100%), 310px);
	}


	/* pankuzu ---------------------------------------*/

	.pankuzu{display: none}


	/* list ---------------------------------------*/

	.list li{
		padding-left: 15px;
	}


	/* btn ---------------------------------------*/
	.btn-more{
		width: 260px;
		font-size: 16px;
		padding: 15px 24px;
		line-height: 1.25;
	}

	.btn-more i {
		width: 45px;
	}

	.btn-more i::after {
		width: 10px;
    right: -2px;
    bottom: 3px;
    transform: rotate(45deg);
	}

	.btn-wrapper{
		text-align: center;
	}


	/* btn-navlist ---------------------------------------*/
	.btn-navlist{
		gap: 4px;
		margin-bottom: 40px;
	}

	.btn-navlist-link{
		font-size: 12px;
		letter-spacing: 0;
		padding: 6px 6px 8px 12px;
		gap: 4px;
		border: 1px solid #fff;
	}

	.btn-navlist-ico {
		width: 14px;
		height: 14px;
	}

	.btn-navlist-ico::after {
		width: 7px;
		height: 6px;
	}

	.btn-navlist-ico.btn-navlist-ico-down::after {transform: rotate(90deg);}

	.btn-navlist-link:hover .btn-navlist-ico::after {
		background: var(--color-primary);
	}


	/* btn-official ---------------------------------------*/
	.btn-official {
		max-width: 310px;
		width: 100%;
		font-size: 14px;
		padding: 15px 32px;
	}

	.btn-official i {
		right: 18px;
	}

	.btn-official.is-large {
		max-width: 310px;
		width: 100%;
	}



	/* 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{padding: 60px 10px 20px;}

	.modal-inner-close{
		width: 320px;
		max-width: 100%;
		margin:  30px auto;
	}


	/* form ---------------------------------------*/







}




/* iphone5 iphoneSE用 */
@media screen and (max-width: 370px){

}