@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;
	min-height: 0vw;
}

html,
body {
	height: 100%;
}

html {
	/* ベースフォントサイズを10pxに(デフォルトの16pxの代わりに、1emが10pxになるように調整する (16px * 0.625 = 10px)) */
	font-size: 62.5%;
}

body {
	-webkit-text-size-adjust: 100%;
	padding: 0;
	margin: 0;
	font-family: 'Josefin Sans', 'Noto Sans JP', sans-serif;
	font-feature-settings: "palt"1;
	-webkit-font-feature-settings: "palt"1;
	color: var(--text-color);
	/* bodyのフォントサイズを16pxにする (em指定はchromeバグ対応) */
	font-size: 1.6em;
	line-height: 2;
}

.bodywrapper {
	overflow: hidden;
}

a {
	text-decoration: none;
	color: inherit;
	transition: 0.5s;
}

/* a:hover {
	opacity: 0.6;
} */

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

small {
	font-size: 1.2rem;
	color: #999999;
}

.text-link {
	color: var(--ac-color-green);
	text-decoration: underline;
}
.text-link:hover {text-decoration: none;}
.font-zenmaru {font-family: "Zen Maru Gothic", sans-serif;}


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

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

.ov-h {
	overflow: hidden;
} */


/* 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;
} */

.icon-external-link {
	display: inline-block;
	-webkit-mask: url(../img/icon_external_link.svg) no-repeat center center / contain;
	mask: url(../img/icon_external_link.svg) no-repeat center center / contain;
	background: #fff;
	width: 15px;
	height: 15px;
	transition: all 0.5s ease;
}

/* color ---------------------------------------*/
:root {
	--text-color: #444444;
	--bg-color: #F2F2F2;
	--ac-color-red: #BE0E43;
	--ac-color-green: #129FA8;
	--ac-color-brown: #9F8467;
	--line-color-gray: #E5E5E5;
	--line-color-brown: #C4B6A5;
	--marker-color-yellow: #F0E666;
}

.band-gray {
	background-color: #e2e2e2;
	background-image: linear-gradient(95deg, #e2e2e2 1%, #bfbfbf 99%);
	padding: 8px 15px;
	border-radius: 5px;
}

.band-white {
	background-color: #ffffff;
	padding: 10px 10px 5px;
	border-radius: 5px;
}

.border-bottom-gray {
	border-bottom: 1px solid var(--line-color-gray);
}

.border-bottom-brown {
	border-bottom: 1px solid var(--line-color-brown);
}

/* layout ---------------------------------------*/
.inner {
	max-width: 980px;
	padding: 0 40px;
	margin: 0 auto;
}

.overlay {
	display: none;
}

.bg-gray {
	background-color: #ffffff;
	background-image: linear-gradient(180deg, #ffffff 0%, #f2f2f2 20%, #f2f2f2 100%);
}

.bg-brown {
	background-color: #ffffff;
	background-image: linear-gradient(180deg, #ffffff 0%, #e8e5e1 100%);
}

.font-default {
	font-size: 1.6rem;
	font-weight: 400;
}

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

.header {
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 9999;
	background: rgba(255, 255, 255, 0.5);
	-webkit-backdrop-filter: blur(18px) saturate(1.3);
	backdrop-filter: blur(18px) saturate(1.3);
}

.header-inner {
	margin: 0 50px;
	position: relative;
	height: 80px;
}

.header-logo img {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: auto;
	height: 50px;
	transition: 0.5s;
}

.header-logo:hover {
	opacity: 0.6;
}

.header-wrap {
	position: absolute;
	top: 50%;
	right: 50px;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	padding-top: 4px;
}

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

.gnav-list {
	font-size: 1.4rem;
}

.gnav-list>li {
	display: inline-block;
	font-weight: 400;
}

.gnav-list li:nth-of-type(n+2) {
	margin-left: 70px;
}


.gnav-list>li a {
	display: block;
	transition: 0.5s;
}

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

#openmenu {
	display: none;
}


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

.section-title {
	font-size: 4.5rem;
	font-weight: 700;
	line-height: 1.5;
}

.section-subtitle {
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 120px;
	position: relative;
}



.fs-small {
	font-size: 1.8rem;
}


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

.btn-outline {
	display: inline-block;
	/* justify-content: center; */
	text-align: center;
	color: var(--ac-color-green);
	cursor: pointer;
	border: 1px solid var(--ac-color-green);
	box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
	font-weight: 700;
	transition: 0.5s;
	position: relative;
	z-index: 0;
	width: 100%;
}

.kv-btn {
	line-height: 42px;
	padding-right: 5%;
	width: 200px;
	height: 40px;
	border-radius: 20px;
}

.btn-outline:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	border-radius: inherit;
	z-index: -1;
	left: 0;
	transition: 0.5s;
	background-color: #ffffff;
}

.btn-outline:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	border-radius: inherit;
	z-index: -2;
	left: 0;
	transition: 0.5s;
	background-color: #18adb5;
	background-image: linear-gradient(95deg, #18adb5 0%, #36a0b9 100%);
}

.kv-cta-position {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.arrow-down {
	position: absolute;
	top: 54%;
	right: 22px;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-left: 7.5px solid transparent;
	border-right: 7.5px solid transparent;
	border-top: 8px solid var(--ac-color-green);
	transition: 0.5s;
}

.btn-outline:hover {
	color: #ffffff;
	border: 1px solid #ffffff;
}

.btn-outline:hover:before {
	opacity: 0;
}

.btn-outline:hover .arrow-down {
	border-top: 8px solid #ffffff;
}

.btn {
	display: inline-block;
	/* justify-content: center; */
	text-align: center;
	color: #ffffff;
	cursor: pointer;
	border: 1px solid var(--ac-color-green);
	box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
	font-weight: 700;
	transition: 0.5s;
	position: relative;
	z-index: 0;
	width: 100%;
}

.cta-btn {
	line-height: 72px;
	padding-right: 6%;
	font-size: 1.8rem;
	letter-spacing: 0.05em;
	max-width: 400px;
	height: 70px;
	border-radius: 35px;
}

.menu-btn,
.menu-btn-pc {
	line-height: 52px;
	padding-right: 5%;
	font-size: 1.8rem;
	letter-spacing: 0.05em;
	max-width: 490px;
	height: 50px;
	border-radius: 25px;
	margin-top: auto;
}

.menu-btn-pc {
	box-shadow: unset;
}

.voices-btn {
	line-height: 62px;
	padding-right: 1%;
	font-size: 1.8rem;
	letter-spacing: 0.05em;
	max-width: 350px;
	height: 60px;
	border-radius: 30px;
	margin: 0 auto;
}

.btn:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	border-radius: inherit;
	z-index: -1;
	left: 0;
	transition: 0.5s;
	background-color: #18adb5;
	background-image: linear-gradient(95deg, #18adb5 0%, #36a0b9 100%);
}

.btn:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	border-radius: inherit;
	z-index: -2;
	left: 0;
	transition: 0.5s;
	background-color: #ffffff;
}

.arrow-right,
.arrow-right-green {
	position: absolute;
	top: 50%;
	right: 9%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	transition: 0.5s;
}

.arrow-right {
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 15px solid #ffffff;
}

.arrow-right-green {
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 15px solid var(--ac-color-green);
}

.btn:not(.btn.menu-btn-pc):hover {
	color: var(--ac-color-green);
}

.btn:not(.btn.menu-btn-pc):hover:before {
	opacity: 0;
}

.btn:not(.btn.menu-btn-pc):hover .arrow-right {
	border-left: 15px solid var(--ac-color-green);
}

.btn:not(.btn.menu-btn-pc):hover .icon-external-link {
	background: var(--ac-color-green);
}

.btn-outline:hover .arrow-right-green {
	border-left: 15px solid #ffffff;
}

.btn .icon-external-link {
	margin: 0 0 -1px 10px;
}


/* footer ---------------------------------------*/

.copyright {
	display: block;
	text-align: center;
	padding: 35px 0;
	line-height: 1;
}


/*  ---------------------------------------*/

/* . {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	width: 240px;
	height: 50px;
	border-radius: 25px;
	background-color: var(--ac-color);
	text-align: center;
	color: #ffffff;
	font-weight: 700;
	cursor: pointer;
	border: 4px solid var(--ac-color);
	box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.25);
}

.:hover {
	background-color: #fff;
	color: var(--ac-color);
} */



/* index animation ---------------------------------------*/

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

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

.stone {
	animation: katakata 4s step-start 0s infinite normal;
}

@keyframes katakata {
	0% {
		transform: rotate(0deg);
	}

	20% {
		transform: rotate(15deg);
	}

	40% {
		transform: rotate(-5deg);
	}

	60% {
		transform: rotate(5deg);
	}

	80% {
		transform: rotate(-20deg);
	}

	100% {
		transform: rotate(5deg);
	}
}


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

	.sp {
		display: none !important;
	}
}


/* small pc */
@media screen and (min-width: 768px) and (max-width: 1250px) {
	.header-inner {
		margin: 0 20px;
	}

	.header-wrap {
		right: 20px;
	}

	.gnav-list li:nth-of-type(n+2) {
		margin-left: 30px;
	}
}


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

	/* common item ---------------------------------------*/
	.pc {
		display: none !important;
	}

	/* .s-pc {
		display: none !important;
	} */

	.sp {
		display: block !important;
	}

	a,
	p,
	li {
		font-size: 1.5rem;
	}

	small {
		font-size: 1.2rem;
	}

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

	.section-title {
		font-size: 3.0rem;
	}

	.section-subtitle {
		font-size: 1.2rem;
		margin-bottom: 60px;
	}

	/* layout ---------------------------------------*/

	.inner {
		max-width: 600px;
		padding: 0 30px;
	}

	.band-gray {
		padding: 5px 15px;
	}

	.band-white {
		padding: 10px 10px 5px;
	}

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

	.header-inner {
		margin: 0 20px;
		height: 60px;
		width: 100%;
	}

	.header-logo img {
		width: auto;
		height: 30px;
	}

	.header-wrap {
		display: contents;
	}

	#openmenu {
		display: block;
		background-color: #ffffff;
		background-image: linear-gradient(135deg, #ffffff 0%, #f2f2f2 100%);
		width: 52px;
		height: 52px;
		border-radius: 50%;
		overflow: hidden;
		position: absolute;
		right: 35px;
		top: 4px;
		z-index: 99999;
	}

	#openmenu span {
		content: '';
		display: block;
		width: 20px;
		height: 1px;
		background: var(--ac-color-green);
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		transition: all .25s ease;
	}

	#openmenu span:nth-child(1) {
		top: 22px;
	}

	#openmenu span:nth-child(2) {
		top: 28px;
	}

	#openmenu span:nth-child(3) {
		top: 34px;
	}

	#openmenu.is-open span:nth-child(1) {
		transform: translateX(-50%) rotate(45deg);
		top: 24px;
	}

	#openmenu.is-open span:nth-child(2) {
		opacity: 0;
	}

	#openmenu.is-open span:nth-child(3) {
		transform: translateX(-50%) rotate(-45deg);
		top: 24px;
	}

	.bodyfixed {
		position: fixed;
		width: 100%;
		height: 100%;
	}

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

	.gnav {
		height: 100dvh !important;
		border: none;
		background: var(--bg-color);
		padding: 70px 0 0 60px;
		overflow: auto;
		z-index: 100;
		position: absolute;
		left: 0px;
		top: 0px;
		width: 100%;
		transition: all .25s ease;
		transform: translate3d(100%, 0, 0);
	}

	#gnav.is-active {
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}

	.gnav-list li,
	.gnav-list li a {
		font-size: 1.8rem;
		font-weight: 700;
	}

	.gnav-list li a span {
		font-size: 1.0rem;
		font-weight: 400;
		display: inline!important;
	}

	.gnav-list>li {
		display: block;
		margin-bottom: 23px;
		line-height: 1.5;
	}

	.gnav-list li a {
		display: inline-block;
	}

	.gnav-list li:nth-of-type(n+2) {
		margin-left: 0;
	}

	.gnav-cta-block {
		position: absolute;
		width: 51vw;
		top: 410px;
	}

	.gnav-cta-block:first-of-type {
		left: 0;
	}

	.gnav-cta-block:nth-of-type(2) {
		right: 0;
	}

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

	.section-title {
		font-size: 3.0rem;
		line-height: 1.5;
	}

	.section-subtitle {
		font-size: 1.2rem;
		margin-bottom: 60px;
	}


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

	.gnav-btn {
		font-size: 1.4rem;
		line-height: 42px;
		padding-right: 8%;
		width: 160px;
		height: 40px;
		border-radius: 20px;
	}

	.gnav-cta-position {
		position: absolute;
		bottom: -10px;
		left: 50%;
		transform: translateX(-50%);
	}

	.arrow-down {
		top: 53%;
		right: 18px;
		border-left: 6px solid transparent;
		border-right: 6px solid transparent;
		border-top: 6.4px solid var(--ac-color-green);
	}

	.cta-btn {
		line-height: 62px;
		padding-right: 4%;
		font-size: 1.6rem;
		width: 100%;
		height: 60px;
		border-radius: 30px;
	}

	.menu-btn {
		line-height: 47px;
		padding-right: 8%;
		font-size: 1.5rem;
		max-width: 100%;
		height: 45px;
		pointer-events: auto;
		border-radius: 23px;
	}

	.menu-detail-btn {
		font-size: 1.4rem;
		padding-right: 6%;
	}

	.voices-btn {
		line-height: 52px;
		padding-right: 3%;
		font-size: 1.6rem;
		max-width: 240px;
		height: 50px;
		border-radius: 25px;
	}

	.arrow-right {
		border-top: 4px solid transparent;
		border-bottom: 4px solid transparent;
		border-left: 12px solid #ffffff;
	}

	.menu-detail-btn .arrow-right {
		right: 5.5%;
	}

	.arrow-right-green {
		right: 10%;
		border-top: 4px solid transparent;
		border-bottom: 4px solid transparent;
		border-left: 12px solid var(--ac-color-green);
	}

	.btn .icon-external-link {
		position: absolute;
		top: 50%;
    right: 9%;
		transform: translateY(-50%);
		margin: unset;
	}

	/* footer ---------------------------------------*/

	.copyright {
		padding: 27px 0;
	}



}




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