@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,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", sans-serif;
	font-weight: 400;
	font-feature-settings: "palt" 1;
	-webkit-font-feature-settings: "palt" 1;
	line-height: 1.5;
	letter-spacing: 0.05em;
	color: #2a2a2a;
	background: #ffffeb;
}

a{
	text-decoration: none;
	color:inherit;
	transition: all .25s ease;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

a:hover{opacity: 0.5;}

img{
	vertical-align: top;
	line-height: 1;
	max-width:100%;
	height:auto;
}

.font-en {font-family: "EB Garamond", serif;}
.font-mincho {font-family: "Zen Old Mincho", serif;;}
.fc-white {color: #fff;}
.fc-black {color: #2a2a2a;}
.fc-orange {color: #f6b71e;}
.fc-green {color: #034e45;}
.fc-pink {color: #ef4c83;}


/* common item ---------------------------------------*/

.clearfix::after,
.inner::after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

.ov-h{overflow: hidden;}

.text-center {text-align: center;}


/* layout ---------------------------------------*/
.bodywrapper {
	overflow: clip;
	min-height: calc(100vh - 784px);
}
.wrapper {

}

.inner{
	max-width:1200px;
	margin:0 auto;
}

.archive-inner {
	max-width: 1000px;
}

.overlay{display: none;}

.d-block {display: block;}
.d-none {display: none;}

.text-link {
	text-decoration: underline;
	color: #034e45;
}
.text-link:hover {text-decoration: none;}


/* icon ---------------------------------------*/
.icon-x {
	display: inline-block;
	-webkit-mask: url('../img/common/icon_x.svg') no-repeat center center / contain;
	mask: url('../img/common/icon_x.svg') no-repeat center center / contain;
	width: 15px;
	height: 14px;
	background: #fff;
}

.icon-note {
	display: inline-block;
	-webkit-mask: url('../img/common/icon_note.svg') no-repeat center center / contain;
	mask: url('../img/common/icon_note.svg') no-repeat center center / contain;
	width: 13px;
	height: 13px;
	background: #fff;
}

.icon-arrow-circle {
	display: inline-block;
	-webkit-mask: url('../img/common/icon_arrow_circle.svg') no-repeat center center / contain;
	mask: url('../img/common/icon_arrow_circle.svg') no-repeat center center / contain;
	width: 22px;
	height: 22px;
	background: #2a2a2a;
}

.icon-arrow {
	display: inline-block;
	width: 26px;
	height: 18px;
	background: #fff;
	transition: all 0.25s ease;
}

.icon-arrow.icon-arrow-prev {
	-webkit-mask-image: url(../img/common/icon_arrow_left.svg);
	-webkit-mask-size: contain;
	-webkit-mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-image: url(../img/common/icon_arrow_left.svg);
	mask-size: contain;
	mask-position: center;
	mask-repeat: no-repeat;
}

.icon-arrow.icon-arrow-next,
.icon-arrow.icon-arrow-down {
	-webkit-mask-image: url(../img/common/icon_arrow_right.svg);
	-webkit-mask-size: contain;
	-webkit-mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-image: url(../img/common/icon_arrow_right.svg);
	mask-size: contain;
	mask-position: center;
	mask-repeat: no-repeat;
}


/* header ---------------------------------------*/

header {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 102;
	width: 100%;
	transition: top 0.25s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

header.is-active {
	top: 20px;
}

.header-inner {
	position: relative;
	width: calc(100% - 50px);
	height: 63px;
	background: #044e46;
	border-radius: 0 12px 12px 0;
}

.header-logo {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 110;
	width: 200px;
	height: 100%;
	background: #ffffea;
}

.header-logo:hover {
	background: #fff;
	opacity: 1;
}

.header-logo svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
}

#openmenu {display:none;}

/* gnav ---------------------------------------*/

.gnav {
	display: flex;
	align-items: center;
	position:absolute;
	gap: min(calc(44 / 1440 * 100vw), 44px);
	top: 50%;
	right: 50px;
	transform: translateY(-50%);
	width: fit-content;
	height: 100%;
}

.gnav-list {
	display: flex;
	gap: min(calc(60 / 1440 * 100vw), 60px);
	font-size: 0px;
	height: 100%;
}

.gnav-list > li {
	display: flex;
	align-items: center;
	position: relative;
	height: 100%;
}

.gnav-list > li > a,
.gnav-list > li > span {
	display: block;
	font-size: 14px;
	line-height: 1.1;
	letter-spacing: 0.05em;
	color: #fff;
}

.gnav-list > li > a.icon-arrow-gnav,
.gnav-list > li > span.icon-arrow-gnav {
	position: relative;
}

.gnav-list > li > a.icon-arrow-gnav::after,
.gnav-list > li > span.icon-arrow-gnav::after {
	position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  width: 6px;
  height: 6px;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 0;
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff;
  content: '';
}

.gnav-list > li:hover .gnav-list-sub {
	opacity: 1;
	visibility: visible;
}

.gnav-list-sub {
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 10;
	transform: translateX(-50%);
	padding-top: 2px;
	padding-bottom: 10px;
	min-width: 100%;
	width: fit-content;
	background: #044e46;
	border-radius: 0 0 8px 8px;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	transition: all .25s ease;
}

.gnav-list-sub > li + li {
	margin-top: 1px;
}

.gnav-list-sub > li > a {
	display: block;
	padding: 10px 16px;
	font-size: 14px;
	letter-spacing: 0.05em;
	line-height: 1;
	color: #fff;
	white-space: nowrap;
}

.gnav-snslist {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 0px;
}

.gnav-snslist > li > a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 26px;
	height: 26px;
	border-radius: 3px;
	border: 1px solid #fff;
}


/* footer ---------------------------------------*/
.footer-wrapper {
	margin-top: -300px;
	padding-top: 300px;
	overflow: hidden;
}

.footer {
	position: relative;
	z-index: 10;
	padding: 100px 20px 0;
	background: #044e46;
	border-radius: 168px 0 0 0;
}

.footer-nav { 
}

.footer-nav-list { 
	margin-bottom: 20px;
}

.footer-nav-list > li + li { 
	margin-top: 10px;
}

.footer-nav-list > li > a { 
	font-size: 16px;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #fff;
}

.gnav-nav-snslist { 
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 0px;
}

.gnav-nav-snslist > li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 26px;
	height: 26px;
	border-radius: 3px;
	border: 1px solid #fff;
}

.footer-image {
	position: absolute;
	bottom: 80%;
	right: 10px;
	z-index: 1;
	width: min(calc(705 / 1440 * 100vw), 705px);
}

.footer-image img {
	width: 100%;
}

.footer-logo-wrapper { 
	position: relative;
	padding-bottom: 140px;
	overflow: hidden;
}

.footer-logo-wrapper::after {
	content: "";
	position: absolute;
	top: 70%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	width: min(calc(1580 / 1440 * 100vw), 1580px);
	aspect-ratio: 1 / 1;
	border: 6px solid #fff;
	border-radius: 50%;
}

.footer-logo { 
	padding-top: 50px;
	margin: 0 auto;
	max-width: 700px;
	width: 100%;
	text-align: center;
	overflow: hidden;
}

.footer-logo svg {
	width: min(calc(699 / 1000 * 100vw), 699px);
	transform: translateY(110%);
	transition: all 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.animation.footer-logo {opacity: 1;}
.animation.on.footer-logo svg {transform: translateY(0);}

.footer-copyright { 
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	z-index: 1;
	margin: 0 auto;
	font-size: 12px;
	font-weight: 300;
	line-height: 1;
	text-align: center;
	letter-spacing: 0.05em;
	color: #fff;
}


/* common ---------------------------------------*/
.section-title {
	font-size: 70px;
	line-height: 1.1;
	letter-spacing: 0;
	margin-bottom: 12px;
}

.section-lead {
	margin-bottom: 20px;
	font-size: 26px;
	font-weight: 500;
	line-height: calc(40 / 26);
	letter-spacing: 0.2em;
}

.section-text {
	font-size: 18px;
	font-weight: 500;
	line-height: calc(26 / 16);
	letter-spacing: 0.07em;
}

.section-text + .section-text {
	margin-top: 40px;
}

.section-text b {
	font-size: 24px;
	font-weight: 500;
}

.section-text-list {
	display: inline-block;
	margin: 5px 0;
	font-size: 20px;
}

.section-text-checklist {
	margin-top: 32px;
}

.section-text-checklist > li {
	position: relative;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.05em;
	padding-left: 40px;
}

.section-text-checklist > li + li {
	margin-top: 12px;
}

.section-text-checklist > li::before {
	position: absolute;
	top: 1px;
	left: 0;
	z-index: 1;
	width: 26px;
	height: 26px;
	background: url('../img/common/icon_check_circle.svg') no-repeat;
	background-size: contain;
	content: '';
}

.tab-image {
	position: absolute;
	left: 0;
	z-index: 2;
	width: 60px;
	height: 590px;
	background: #044e46;
	border-radius: 0 68px 68px 0;
}

.tab-image svg {
	position: absolute;
	top: 50%;
	left: -50px;
	transform: translateY(-50%) rotate(-90deg);
	width: 134px;
}

.img-marker-01,
.img-marker-02,
.img-marker-03 {
	position: relative;
	width: fit-content;
}

.img-marker-01::after,
.img-marker-02::after {
	position: absolute;
	z-index: -1;
	content: '';
	left: 0;
	right: 0;
	margin: 0 auto;
}

.img-marker-01::after {
	top: 100%;
	width: 160px;
	aspect-ratio: 160 / 25;
	background: url(../img/common/img_line_deco_01.webp) no-repeat center center / contain;
}

.img-marker-02::after {
	top: 100%;
	width: 142px;
	aspect-ratio: 142 / 29;
	background: url(../img/common/img_line_deco_02.webp) no-repeat center center / contain;
}

.img-marker-03::after {
	position: absolute;
	bottom: 135%;
	right: 0;
	z-index: 1;
	content: '';
	width: 120px;
	aspect-ratio: 120 / 47;
	background: url(../img/common/img_line_deco_03.webp) no-repeat center center / contain;
}

.marker-orange {
	background-image: linear-gradient(90deg, #f6b71e, #f6b71e);
	background-position: left bottom;
	background-repeat: no-repeat;
	background-size: 100% 5px;
}


/* component ---------------------------------------*/
.component-block-01 {
	margin: 150px auto 50px calc(280 / 1200 * 100%);
}

.component-block-02 {
	margin: 150px calc(30 / 1200 * 100%) 50px auto;
	width: fit-content;
}

.component-block-03 {
	margin: 150px auto 50px;
	width: fit-content;
}

.component-block-04 {
	margin: 150px 0 50px;
	width: fit-content;
}

.component-wrapper-01 {
	position: relative;
	z-index: 1;
	padding: 150px 150px 150px 0;
	width: 100%;
}

.component-wrapper-01::before {
	position: absolute;
	top: 0;
	left: calc(50% - 50vw);
	z-index: -1;
	width: calc(50% + 50vw);
	height: 100%;
	border-radius: 0 39px 39px 0;
	background-image: url(../img/common/bg_01.webp);
	background-size: cover;
	background-position: top left;
	background-repeat: no-repeat;
	background-color: #191a19;
	box-shadow: -144px -36px 0 #044e46;
	content: '';
}

.component-wrapper-image-01 {
	position: absolute;
	top: 30%;
	right: 0;
	z-index: 3;
	padding: 80px 50px;
	background: #fff;
	border-radius: 40px 0 0 40px;
}

.component-table .company-list {
	margin-top: 80px;
}


/* Not Found ---------------------------------------*/
.notfoundwrapper {

}

.notfound {
	padding: 160px 20px;
}

.notfound-title {
	font-size: 28px;
	line-height: 1.75;
	text-align: center;
	letter-spacing: 0.1em;
	margin-bottom: 40px;
}

.notfound-text {
	font-size: 15px;
	line-height: 1.75;
	text-align: center;
	letter-spacing: 0.18em;
}

.notfound-btn {
	margin-top: 70px;
	text-align: center;
}


/* btn ---------------------------------------*/
.btn-more {
	display: inline-block;
	position: relative;
	max-width: 174px;
	width: 100%;
	height: 49px;
	border-radius: 10px;
	padding: 12px 20px;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	letter-spacing: 0.1em;
	background: #044e46;
	color: #fff;
	overflow: hidden;
	transition: all .5s ease-in-out;
}

.btn-more span {
	position: relative;
}

.btn-more::before {
	position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: translateX(-96%);
  transform: translateX(-96%);
  background: #ea88a4;
}

.btn-more:hover {opacity: 1;}
.btn-more:hover::before {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.btn {
	display: inline-block;
	position: relative;
	z-index: 1;
	max-width: 290px;
	width: 100%;
	height: 65px;
	border-radius: 65px;
	padding: 16px 20px;
	font-size: 16px;
	text-align: center;
	letter-spacing: 0.1em;
	background: #fff;
	overflow: hidden;
	transition: all .5s ease;
}

.btn::before {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	width: 0;
	background: #2a2a2a;
	content: "";
	transition: all .5s ease;
}

.btn.btn-green {
	background: #044e46;
	color: #fff;
}

.btn.btn-green::before {
	background: #fff;
}

.btn .icon-arrow-circle {
	margin: 5px 0 -5px 20px;
	transition: all .5s ease;
}

.btn:hover {
	opacity: 1;
	color: #fff;
}

.btn:hover::before {
	width: 100%;
}

.btn.btn-green:hover {
	color: #044e46;
}

.btn:hover .icon-arrow-circle {
	background: #fff;
}

.contact-btn.btn {
	border: 1px solid #2a2a2a;
}

.contact-btn.btn input[type="submit"],
.contact-btn.btn input[type="button"] {
	background: rgba(255, 255, 255, 0);
	transition: all 0.5s ease;
}

.contact-btn.btn:hover input[type="submit"],
.contact-btn.btn:hover input[type="button"] {
	color: #fff;
}

.btn-text {
	padding-bottom: 4px;
	font-size: 15px;
	letter-spacing: 0.18em;
	border-bottom: 1px solid #2a2a2a;
}
.btn-text .icon-arrow {background: #2a2a2a;}
.btn-text .icon-arrow.icon-arrow-next {margin: 0 0 -3px 10px;}
.btn-text .icon-arrow.icon-arrow-prev {margin: 0 10px -3px 0;}

.btn-text:hover {
	border-bottom: 1px solid #f6b71e;
	color: #f6b71e;
	opacity: 1;
}

.btn-text:hover .icon-arrow {background: #f6b71e;}

.btn-text.is-disabled {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}


/* animation ---------------------------------------*/
.animation {
	transition: all 0.8s ease;
	opacity:0;
}

.animation.on {
	opacity:1;
}

.animation.animation-left {transform:translate(50px,0);}
.animation.animation-right {transform:translate(-50px,0);}
.animation.on.animation-left,
.animation.on.animation-right {transform:translate(0, 0);}


.animation.animation-typing {
	transition: unset;
}

.animation.animation-typing::after {
	content: '';
	border-right: 2px solid;
	animation: flashing 1.25s steps(1) infinite;
	color: inherit;
}

@keyframes flashing {
  0% { opacity: 0; }
  50% { opacity: 1; }
}

.animation-typing-delay {
	transition: all 0.5s 0.2s ease;
	opacity:0;
}
.animation-typing-delay.animation-typing-delay-02 {
	transition: all 0.5s 0.6s ease;
}
.animation-typing-delay.is-active {
	opacity:1;
}

.animation-01 {
	transform-origin: bottom left;
}

.animation-02,
.animation-04,
.animation-05 {
	transform-origin: bottom center;
}

.animation-image-marker::after {
	clip-path: inset(0 100% 0 0);
	transition: all 0.4s 0.6s ease;
}

.animation.on.animation-image-marker::after {
	clip-path: inset(0 0 0 0);
}

.animation.animation-marker {
	opacity: 1;
	transform: translate(0, 0);
	background-size: 0 5px;
}

.animation.on.animation-marker {
	background-size: 100% 5px;
	transition: all 0.6s ease;
}


/* line-animation */
.img-curlyline {
	width: min(calc(661 / 1440 * 100vw), 661px);
}

.img-curlyline svg {
	/* clip-path: inset(0 0 min(calc(14 / 1440 * 100vw), 14px) min(calc(14 / 1440 * 100vw), 14px)); */
}

.img-curlyline.is-flip svg,
.img-focuslines.is-flip svg {
  transform: scaleX(-1);
}

.img-curlyline path {
  animation: dash-flow 2s linear infinite;
}
.img-curlyline.is-reverse path {
  animation: dash-flow-reverse 2s linear infinite;
}

@keyframes dash-flow {
  from {stroke-dashoffset: 100;}
  to {stroke-dashoffset: 0;}
}

@keyframes dash-flow-reverse {
  from {stroke-dashoffset: 0;}
  to {stroke-dashoffset: 100;}
}

.img-curlyline path {
	fill: none;
	stroke: #f6b71e;
	stroke-dasharray: 0 50;
	stroke-linecap: round;
	stroke-miterlimit: 10;
	stroke-width: 10;
}

.img-focuslines {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 200px;
}

.img-focuslines.is-flip {
	left: unset;
	right: 0;
}

.img-focuslines path {
	fill: none;
	stroke: #f6b71e;
	stroke-linecap: round;
	stroke-width: 5;
}


/* recaptcha ---------------------------------------*/
.grecaptcha-badge {
  visibility: hidden;
}

.contact-recaptcha-note {
	margin-top: 32px;
	font-size: 14px;
	line-height: 1.5;
	letter-spacing: 0.05em;
	text-align: center;
}


@media screen and (max-width: 1100px){
	.header-inner {
		width: calc(100% - 30px);
	}

	.header-logo {
		width: 80px;
	}

	.gnav {
		right: 30px;
	}

	.gnav-list {
		gap: 24px;
	}

	.gnav-list > li > a, .gnav-list > li > span {
		font-size: 13px;
	}

	.component-wrapper-image-01 {
		padding: 40px 20px;
	}
}

/* pc only */
@media screen and (min-width: 768px){
	.sp{display: none !important;}
	.spbr{display: none;}
}

/* sp only */
@media screen and (max-width: 767px){
	/* common item ---------------------------------------*/

	.pc{display: none !important;}
	.pcbr{display: none;}

	/* icon ---------------------------------------*/
	.icon-x {
		width: 19px;
		height: 18px;
	}

	.icon-note {
		width: 18px;
		height: 18px;
	}

	.icon-arrow-circle {
		width: 20px;
		height: 20px;
	}

	.icon-arrow {
		width: 16px;
		height: 11px;
	}

	/* layout ---------------------------------------*/
	.inner,
	.wrapper{
		min-width: 0;
		width: 100%;
	}

	.inner {
		max-width: 500px;
	}

	.img-marker-03 { 
		padding-bottom: 5px;
	}
	/* header ---------------------------------------*/
	header {
		position: fixed;
		transition: all .25s ease;
	}

	header.is-active {
		top: 0;
	}

	.header-inner {
		width: 100%;
		height:50px;
		background: 0;
		border-radius: 0;
	}

	.header-logo {
		width: 100px;
	}

	.header-logo svg {
		width: 30px;
}

	#openmenu {
		display:block;
		width:60px;
		height:50px;
		text-indent: -99em;
		overflow: hidden;
		position:absolute;
		right: 0;
		top: 0;
		z-index: 110;
		transition: all .25s ease;
	}

	#openmenu span {
		content:'';
		display: block;
		width:30px;
		height:2px;
		background: #044e46;
		border-radius: 2px;
		position: absolute;
		left:16px;
		transition: all .25s ease;
	}
	#openmenu span:nth-child(1) {top:18px;}
	#openmenu span:nth-child(2) {top:27px;}

	#openmenu.is-open span {
		top: 24px;
		left: 16px;
		background: #fff;
	}
	#openmenu.is-open span:nth-child(1) {transform:rotate(45deg);}
	#openmenu.is-open span:nth-child(2) {transform:rotate(-45deg);}

	.header-inner.is-open .header-logo::after {opacity: 1;}
	.header-inner.is-open .header-logo img {opacity: 0;}


	/* gnav ---------------------------------------*/
	.gnav {
		display: block;
		background: #044e46;
		overflow:auto;
		z-index:100;
		right:0;
		top:0;
		width:100%;
		height: 100dvh;
		transition: all .25s ease;
		transform:translate3d(100%,0,0);
		padding: 90px 32px 40px;
	}

	.gnav.is-active {
		position: fixed;
		transform:translate3d(0,0,0);
		opacity:1;
	}

	.gnav-list {
		display: block;
		height: unset;
	}

	.gnav-list > li {
		display: block;
		height: unset;
	}

	.gnav-list > li + li {
		margin-top: 20px;
	}

	.gnav-list > li > a,
	.gnav-list > li > span {
		display: inline-block;
		font-size: 16px;
	}

	.gnav-list > li > a.icon-arrow-gnav,
	.gnav-list > li > span.icon-arrow-gnav {
    width: 130px;
	}

	.gnav-list > li > a.icon-arrow-gnav::after,
	.gnav-list > li > span.icon-arrow-gnav::after {
		top: 50%;
		left: unset;
		right: 0;
	}

	.gnav-list > li:hover .gnav-list-sub {
		opacity: 1;
		visibility: visible;
	}

	.gnav-list-sub {
		position: unset;
		transform: unset;
		padding-top: unset;
		margin: 16px 0 0 24px;
		min-width: unset;
		width: unset;
		background: unset;
		border-radius: unset;
		opacity: unset;
		visibility: unset;
		overflow: unset;
	}
	
	.gnav-list-sub > li + li {
		margin-top: 12px;
	}
	
	.gnav-list-sub > li > a {
		display: inline-block;
		padding: 0;
		font-size: 13px;
	}
	
	.gnav-snslist {
		gap: 20px;
		margin-top: 36px;
	}
	
	.gnav-snslist > li > a {
		width: 48px;
		height: 48px;
		border-radius: 5px;
	}


	/* footer ---------------------------------------*/
	.footer-wrapper {
		margin-top: -100px;
		padding-top: 100px;
	}

	.footer {
		padding: 100px 0 0;
		border-radius: 70px 0 0 0;
	}

	.footer-nav { 
		padding: 0 30px;
	}

	.footer-nav-list { 
		margin-bottom: 24px;
	}

	.footer-nav-list > li + li { 
		margin-top: 8px;
	}

	.footer-nav-list > li > a { 
		font-size: 16px;
	}

	.gnav-nav-snslist { 
		gap: 14px;
	}

	.gnav-nav-snslist > li a {
		width: 48px;
		height: 48px;
		border-radius: 5px;
	}

	.footer-image {
		bottom: 83%;
		right: 10px;
		width: 270px;
	}

	.footer-logo-wrapper { 
		padding-bottom: 70px;
	}

	.footer-logo-wrapper::after {
		top: 71%;
		width: 520px;
		border: 3px solid #fff;
	}

	.footer-logo { 
		padding-top: 30px;
		max-width: 300px;
	}

	.footer-logo svg {
		width: 300px;
	}

	.footer-copyright { 
		bottom: 12px;
		font-size: 10px;
	}


	/* common ---------------------------------------*/
	.section-title {
		font-size: 44px;
		margin-bottom: 16px;
	}

	.section-lead {
		margin-bottom: 24px;
		font-size: 18px;
	}

	.section-text {
		font-size: 14px;
	}

	.section-text + .section-text {
		margin-top: 30px;
	}

	.section-text b {
		font-size: 20px;
	}

	.section-text-checklist {
		margin-top: 32px;
	}

	.section-text-checklist > li {
		font-size: 15px;
		padding-left: 30px;
	}

	.section-text-checklist > li::before {
		width: 20px;
		height: 20px;
	}

	.tab-image {
		width: 30px;
		height: 260px;
		border-radius: 0 32px 32px 0;
	}

	.tab-image svg {
		left: -34px;
		width: 84px;
	}

	.img-marker-03::after {
		width: 80px;
	}


	/* component ---------------------------------------*/
	.component-block-01,
	.component-block-02,
	.component-block-03,
	.component-block-04 {
		margin: 70px auto 50px 0;
	}

	.component-wrapper-01 {
		padding: 50px 32px 50px 12px;
		width: calc(100% - 12px);
	}

	.component-wrapper-01::before {
		box-shadow: -60px -32px 0 #044e46;
	}

	.component-wrapper-image-01 {
		top: 50%;
		padding: 40px 20px;
		border-radius: 20px 0 0 20px;
	}

	.component-table .company-list {
		margin-top: 40px;
	}


	/* Not Found ---------------------------------------*/
	.notfound {
		padding: 74px 16px 70px;
	}

	.notfound-title {
		font-size: 24px;
		margin-bottom: 40px;
	}

	.notfound-text {
		font-size: 14px;
	}

	.notfound-btn {
		margin-top: 60px;
	}


	/* btn ---------------------------------------*/
	.btn-more {
		max-width: 160px;
		height: 45px;
		padding: 12px 20px;
		font-size: 14px;
	}

	.btn {
		max-width: 220px;
		height: 50px;
		padding: 10px 12px;
		font-size: 14px;
	}

	.btn .icon-arrow-circle {
		margin: 5px 0 -5px 10px;
	}

	.btn-text {
		font-size: 14px;
	}

	.btn .icon-arrow.icon-arrow-next {right: 10px;}
	.btn .icon-arrow.icon-arrow-prev {left: 10px;}

	.btn-text .icon-arrow.icon-arrow-next {margin: 0 0 0 4px;}
	.btn-text .icon-arrow.icon-arrow-prev {margin: 0 4px 0 0;}



	/* pagekv ---------------------------------------*/




	/* animation ---------------------------------------*/
	.img-curlyline {
		width: 350px;
	}

	.img-focuslines {
		width: 120px;
	}


}




/* iphone5 iphoneSE用 */
@media screen and (max-width: 370px){

}