@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;}

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

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

.about,
.message,
.profile,
.menu,
.voices {
	margin-bottom: 200px;
}

.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 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 {
	background: #FFF;
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 9999;
}

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

.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: 100px;
	position: relative;
}

/* kv ---------------------------------------*/
.kv {
	background: var(--bg-color);
	margin-top: 90px;
	position: relative;
	height: 600px;
	margin-bottom: 100px;
	overflow: hidden;
}

.kv-bg {
	background: url(../img/kv-bg-shooting-star.svg) repeat;
	width: 200%;
	height: 200%;
	animation: scroll-anim 70s linear infinite;
}

@keyframes scroll-anim {
	from {
		background-position: 0 0;
	}

	to {
		background-position: -1500px 1500px;
	}
}

.kv-deco img {
	position: absolute;
}

.kv-deco img:first-of-type {
	width: 67px;
	left: 8vw;
	top: 50px;
	transform: rotate(-22deg);
}

.kv-deco img:nth-of-type(2) {
	width: 57px;
	right: 10vw;
	top: 40px;
	transform: rotate(14deg);
}

.kv-deco img:nth-of-type(3) {
	width: 45px;
	right: 4vw;
	top: 100px;
	transform: rotate(30deg);
}

.kv-deco img:nth-of-type(4) {
	width: 130px;
	left: 8vw;
	top: 400px;
	transform: rotate(208deg);
}

.kv-deco img:nth-of-type(5) {
	width: 120px;
	right: 10vw;
	top: 220px;
	transform: rotate(-57deg);
}

.kv-deco img:nth-of-type(6) {
	width: 37px;
	left: calc(50% - 240px);
	bottom: 5px;
	transform: rotate(55deg);
}

.kv-deco img:nth-of-type(7) {
	width: 37px;
	left: calc(50% - 300px);
	bottom: -5px;
	transform: rotate(-62deg);
}

.kv-deco img:nth-of-type(8) {
	width: 37px;
    left: calc(50% - 150px);
    bottom: 37px;
	transform: rotate(276deg);
}

.kv-block-title-01 {
	position: absolute;
	top: 13%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.kv-block-title-02 {
	position: absolute;
	top: calc(13% + 100px);
	left: 50%;
	transform: translate(-50%, -50%);
}

.kv-block-title-01 img,
.kv-block-title-02 img {
	max-width: 900px;
}

.kv-image-tree {
	position: absolute;
	transform: translateX(-50%);
	left: 50%;
	bottom: 30px;
	width: 370px;
	height: auto;
	z-index: 999;
}

.kv-image-island {
	position: absolute;
	transform: translateX(-50%);
	left: 50%;
	bottom: 0;
	width: 500px;
	height: 76px;
}

.kv-cta-block {
	position: absolute;
	width: 240px;
	bottom: 40px;
}

.kv-cta-block:first-of-type {
	right: calc(1vw + 240px);
}

.kv-cta-block:nth-of-type(2) {
	right: 1vw;
}

/* information ---------------------------------------*/

.information {
	position: relative;
}

.information-deco img {
	position: absolute;
}

.information-deco img:first-of-type {
	width: 138px;
	left: 14vw;
	top: 160px;
	transform: rotate(15deg);
}

.information-deco img:nth-of-type(2) {
	width: 234px;
	left: 4vw;
	top: 460px;
	transform: rotate(-2deg);
}

.information-deco img:nth-of-type(3) {
	width: 86px;
	right: 15vw;
	top: 100px;
	transform: rotate(0deg);
}

.information-deco img:nth-of-type(4) {
	width: 274px;
	right: 1vw;
	top: 300px;
	transform: rotate(-22deg);
}

.information-deco img:nth-of-type(5) {
	width: 68px;
	right: 5vw;
	top: 540px;
	transform: rotate(22deg);
}

.information .inner {
	display: block;
	margin: 0 auto;
	text-align: center;
}

.information-logo img {
	width: 234px;
	margin-bottom: 120px;
}

.information-text {
	width: 450px;
	margin: 0 auto 60px;
}

.information-text p {
	border-bottom: 2px solid var(--line-color-gray);
	font-size: 2.0rem;
	line-height: 2.5;
	letter-spacing: 0.3rem;
	padding-top: 4px;
}

.information-text p:first-of-type {
	border-top: 2px solid var(--line-color-gray);
}

.attention {
	font-weight: 700;
	color: var(--ac-color-red);
	position: relative;
}

.attention:before {
	position: absolute;
	content: "";
	background: url(../img/attention-red.svg) no-repeat;
	background-size: contain;
}

.information .attention:before {
	top: -33px;
	left: -25px;
	width: 33px;
	height: 35px;
}


.information-image img {
	width: 95px;
	margin: 0 auto 60px;
}

.information-partition {
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}

.information-partition img {
	width: 100%;
	margin-bottom: 50px;
}

/* about ---------------------------------------*/

.about {
	position: relative;
}

.about-deco img {
	position: absolute;
}

.about-deco img:first-of-type {
	width: 306px;
	left: 2vw;
	top: 350px;
}

.about-deco img:nth-of-type(2) {
	width: 228px;
	left: 13vw;
	top: 740px;
}

.about-deco img:nth-of-type(3) {
	width: 99px;
	right: 3vw;
	top: 240px;
}

.about-deco img:nth-of-type(4) {
	width: 245px;
	right: 8vw;
	top: 510px;
}

.about-deco img:nth-of-type(5) {
	width: 381px;
	right: 5vw;
	top: 900px;
}

.about .inner {
	text-align: center;
	margin: 0 auto;
}

.about .section-subtitle:after {
	position: absolute;
	top: 35px;
	left: 50%;
	width: 48px;
	height: 47px;
	content: "";
	background: url(../img/about-icon.png) no-repeat;
	background-size: contain;
	transform: translateX(-50%);
}

.frame-blur {
	position: relative;
}

.frame-blur::before {
	position: absolute;
	content: '';
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.6);
	box-shadow: 0 0 10px 10px rgba(255, 255, 255, 0.6);
	border-radius: 10px;
}

.about .frame-blur::before {
	max-width: 600px;
}

.about .inner p {
	letter-spacing: 0.3rem;
}

.about .inner p:first-of-type {
	padding-bottom: 162px;
	position: relative;
}

.about .inner p:first-of-type:after {
	position: absolute;
	bottom: 80px;
	left: 50%;
	transform: translateX(-50%);
	width: 75px;
	height: 2px;
	content: "";
	border-radius: 1px;
	background-color: #e2e2e2;
	background-image: linear-gradient(90deg, #e2e2e2 0%, #bfbfbf 100%);
}

/* message ---------------------------------------*/
.message {
	position: relative;
}

.message-deco img {
	position: absolute;
}

.message-deco img:first-of-type {
	width: 151px;
	left: 28vw;
	top: 70px;
	transform: rotate(6deg);
}

.message-deco img:nth-of-type(2) {
	width: 234px;
	left: 17vw;
	top: 240px;
	transform: rotate(-9deg);
}

.message-deco img:nth-of-type(3) {
	width: 186px;
	left: 6vw;
	top: 560px;
	transform: rotate(84deg);
}

.message .inner {
	text-align: right;
	margin: 0 auto;
}

.message .section-subtitle:after {
	position: absolute;
	top: 35px;
	right: 0;
	width: 38px;
	height: 43px;
	content: "";
	background: url(../img/message-icon.png) no-repeat;
	background-size: contain;
}

.message .inner p {
	max-width: 550px;
	margin-left: auto;
	text-align: left;
	letter-spacing: 0.3rem;
}

.message .attention:before {
	top: -15px;
	left: -14px;
	width: 18px;
	height: 19px;
}

/* isuure ---------------------------------------*/

.issue {
	position: relative;
}

.issue-deco span img {
	position: absolute;
}

.issue-deco span:first-of-type img {
	width: 143px;
	left: 3vw;
	bottom: -24px;
}

.issue-deco span:nth-of-type(2) img {
	width: 125px;
	left: calc(3vw + 150px);
	bottom: 3px;
}

.issue-deco span:nth-of-type(3) img {
	width: 107px;
	right: calc(2vw + 125px);
	bottom: 0px;
}

.issue-deco span:nth-of-type(4) img {
	width: 146px;
	right: 2vw;
	bottom: -26px;
}

.issue-title {
	position: relative;
	color: #ffffff;
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1;
	display: inline-block;
	letter-spacing: 0.3rem;
	margin-bottom: 40px;
	padding-top: 16px;
}

.issue-title:before {
	position: absolute;
	top: -140px;
	left: -10vw;
	width: 346px;
	height: 181px;
	content: "";
	background: url(../img/worry-lead.png) no-repeat;
	background-size: contain;
	transform: rotate(-10deg);
	z-index: -1;
}

.issue-list {
	margin-bottom: 50px;
	position: relative;
}

.issue-list:after {
	position: absolute;
	top: 0px;
	right: -10%;
	width: 271px;
	height: 250px;
	content: "";
	background: url(../img/worry-ph.png) no-repeat;
	background-size: contain;
	z-index: -1;
}

.issue-list li {
	position: relative;
	font-size: 1.8rem;
	letter-spacing: 0.15rem;
	padding-left: 38px;
}

.issue-list li:before {
	position: absolute;
	top: -7px;
	left: 0;
	font-size: 2.5rem;
	color: var(--ac-color-green);
	background-size: contain;
	text-align: center;
}

.issue-list li:first-of-type:before {
	content: "01";
}

.issue-list li:nth-of-type(2):before {
	content: "02";
}

.issue-list li:nth-of-type(3):before {
	content: "03";
}

.issue-list li:nth-of-type(4):before {
	content: "04";
}

.issue-list li:nth-of-type(5):before {
	content: "05";
}

.issue-list li:nth-of-type(6):before {
	content: "06";
}

.marker {
	background: linear-gradient(transparent 60%, var(--marker-color-yellow) 60%);
	font-weight: 700;
}

/* .issue-arrow {
	position: relative;
	width: 100px;
	margin: 0 auto 100px;
	transform: rotate(90deg);
}

.line01 {
	height: 2px;
	background-color: var(--line-color-gray);
	border-radius: 1px;
}

.line02 {
	position: absolute;
	top: 0;
	right: 0;
	transform-origin: right bottom;
	width: 20px;
	height: 2px;
	background-color: var(--line-color-gray);
	transform: rotate(25deg);
	border-radius: 1px;
} */

/* scrolldown */
.scrolldown {
	position: relative;
	padding: 50px 0 100px;
}

.scrolldown:after {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 2px;
	height: 30px;
	background: var(--ac-color-green);
	animation: pathmove 1.6s ease-in-out infinite;
	opacity: 0;
}

@keyframes pathmove {
	0% {
		height: 0;
		top: 0;
		opacity: 0;
	}

	30% {
		height: 70px;
		opacity: 1;
	}

	100% {
		height: 0;
		top: 100px;
		opacity: 0;
	}
}


.future-title {
	position: relative;
	font-size: 2.0rem;
	line-height: 1.8;
	letter-spacing: 0.3rem;
	margin-bottom: 40px;
	text-align: center;
}

.future-title:before {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 700px;
	height: 160px;
	content: "";
	background: url(../img/title-white.png) no-repeat;
	background-size: contain;
	z-index: -1;
}

.future-title:after {
	position: absolute;
	top: -110px;
	right: -22vw;
	width: 730px;
	height: 540px;
	content: "";
	background: url(../img/future.png) no-repeat;
	background-size: contain;
	z-index: -3;
}

.future-title-red {
	color: var(--ac-color-red);
	font-size: 4.0rem;
	font-weight: 700;
}

.future-title .attention:before {
	top: -32px;
	left: -27px;
	width: 33px;
	height: 35px;
}

.future-title-white {
	color: #ffffff;
	padding-top: 20px;
}

.future-title-middle {
	font-size: 3.0rem;
	font-weight: 700;
}

.future-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 2%;
	position: relative;
	padding-bottom: 150px;
}

.future-list:before {
	position: absolute;
	top: -125px;
	left: 50%;
	transform: translateX(-50%);
	width: 1000px;
	height: 791px;
	content: "";
	background: url(../img/future-bg.png) no-repeat;
	background-size: contain;
	z-index: -2;
}

.future-list li {
	width: 32%;
	background: #ffffff;
	border: 1px solid var(--line-color-gray);
	border-radius: 5px;
	position: relative;
	margin-bottom: 50px;
}

.future-list li:before {
	position: absolute;
	top: -35px;
	left: -15px;
	width: 90px;
	height: 87px;
	content: "";
	transform: rotate(-6deg);
}

.future-list li:first-of-type:before {
	background: url(../img/future-icon-01.png) no-repeat;
	background-size: contain;
}

.future-list li:nth-of-type(2):before {
	background: url(../img/future-icon-02.png) no-repeat;
	background-size: contain;
}

.future-list li:nth-of-type(3):before {
	background: url(../img/future-icon-03.png) no-repeat;
	background-size: contain;
}

.future-list li:nth-of-type(4):before {
	background: url(../img/future-icon-04.png) no-repeat;
	background-size: contain;
}

.future-list li:nth-of-type(5):before {
	background: url(../img/future-icon-05.png) no-repeat;
	background-size: contain;
}

.future-list li:nth-of-type(6):before {
	background: url(../img/future-icon-06.png) no-repeat;
	background-size: contain;
}

.future-list li figure {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.future-list li figure img {
	width: 136px;
	padding: 30px 0 20px;
}

.future-list li figure figcaption {
	padding: 0 20px 20px;
	text-align: center;
	margin-top: auto;
}


.future-list-green {
	color: var(--ac-color-green);
	font-size: 1.8rem;
	font-weight: 700;
}

/* cta ---------------------------------------*/

.cta {
	position: relative;
	background-image: url(../img/cta-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	text-align: center;
}

.cta-mb {
	margin-bottom: 150px;
}

.cta-wrapper {
	padding: 70px 0 60px;
	position: relative;
}

.cta-wrapper:before {
	position: absolute;
	top: 17%;
	left: -19vw;
	width: 18vw;
	height: 18vw;
	content: "";
	background: url(../img/cta-planet-01.svg) no-repeat;
	background-size: contain;
	z-index: -1;
	opacity: 0.2;
}

.cta-wrapper:after {
	position: absolute;
	top: 15%;
	right: -24vw;
	width: 25vw;
	height: 15vw;
	content: "";
	transform: rotate(-10deg);
	background: url(../img/cta-planet-02.svg) no-repeat;
	background-size: contain;
	z-index: -2;
	opacity: 0.15;
}

.cta-title {
	padding-bottom: 65px;
	position: relative;
	z-index: -1;
}

.cta-title:before {
	position: absolute;
	top: -55px;
	left: -10px;
	width: 160px;
	height: 118px;
	content: "";
	background: url(../img/cta-icon.png) no-repeat;
	background-size: contain;
}

.cta-title img {
	max-width: 910px;
	width: 102%;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.cta-container {
	max-width: 900px;
	height: 250px;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid #ffffff;
	border-radius: 5px;
	padding: 30px 35px 30px;
	display: flex;
	justify-content: space-between;
}

.cta-block {
	width: 50%;
	min-width: 345px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.cta-text {
	font-size: 2.0rem;
	text-align: left;
}

.cta-text-brown {
	color: var(--ac-color-brown);
	font-weight: 700;
}

.cta-image {
	max-width: 368px;
	width: 100%;
	position: relative;
}

.cta-image img {
	position: absolute;
	top: -95px;
	right: -10px;
}

/* profile ---------------------------------------*/
.profile {
	position: relative;
}

.profile-deco-child img:first-of-type {
	position: absolute;
	width: 158px;
	right: calc(50% - 31.5vw);
	top: 110px;
	transform: translateX(50%) rotate(103deg);
	z-index: 1;
}

.profile-deco-child img:nth-of-type(2) {
	position: absolute;
	width: 88px;
	right: calc(50% - 39vw);
	top: 600px;
	transform: translateX(50%) rotate(-5deg);
	z-index: 1;
}

.profile-deco>img:first-of-type {
	position: absolute;
	width: 391px;
	left: -8vw;
	top: 1360px;
	transform: rotate(10deg);
}

.profile .section-subtitle:after {
	position: absolute;
	top: 25px;
	left: 0;
	width: 56px;
	height: 46px;
	content: "";
	background: url(../img/profile-icon.png) no-repeat;
	background-size: contain;
}

.profile-wrapeer {
	display: flex;
	justify-content: space-between;
	gap: 4%;
}

.profile-container {
	width: 48%;
}

.profile-block {
	margin-bottom: 60px;
	position: relative;
}

.profile-title {
	position: relative;
	padding-left: 23px;
	font-size: 2.0rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.profile-title:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 10px;
	height: calc(100% - 6px);
	content: "";
	background-color: #d6c9bb;
	background-image: linear-gradient(180deg, #d6c9bb 0%, #b7a38a 100%);
}

.profile-text {
	letter-spacing: 0.15rem;
	padding-left: 20px;
}

.profile-image img {
	position: absolute;
	width: 400px;
	top: 100px;
	left: 59%;
	z-index: -1;
}

.profile-list li {
	list-style: circle;
	margin-left: 40px;
}

.profile-radio {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-left: 20px;
	margin-bottom: 30px;
}

.profile-radio-block {
	width: 100%;
	max-width: 180px;
}
.profile-radio-block-image img {
	border-radius: 10px;
	background: #ffffff;
	box-shadow: 8px 8px 16px #e6e6e6, -8px -8px 16px #ffffff;
	margin-bottom: 20px;
}

.profile-radio-block-title {
	position: relative;
	display: inline;
	transition: 0.5s;
}

.profile-radio-block-title::after {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 1.5px;
	background: var(--text-color);
	/* visibility: visible;
	opacity: 1; */
	transition: 0.5s;
}

.profile-radio-block-text {
	transition: 0.5s;
}

.profile-radio-block a:hover .profile-radio-block-image img {
	opacity: 0.7;
}

.profile-radio-block a:hover .profile-radio-block-title::after {
	transform: translate(0, -3px);
	background: var(--ac-color-green);
}

.profile-radio-block a:hover .profile-radio-block-title,
.profile-radio-block a:hover .profile-radio-block-text {
	color: var(--ac-color-green);
}

.profile-radio-block-image img {
	width: 100%;
	max-width: 180px;
	transition: 0.5s;
}

.profile-radio-note {
	text-align: right;
	display: block;
}

/* faq ---------------------------------------*/
.faq {
	position: relative;
}

.faq-deco img {
	position: absolute;
}

.faq-deco img:first-of-type {
	width: 399px;
	right: -9vw;
	top: 270px;
	opacity: 0.8;
	transform: rotate(-57deg);
}

.faq .inner {
	display: block;
	margin: 0 auto;
	text-align: center;
}

.faq .section-subtitle:after {
	position: absolute;
	top: 30px;
	left: 50%;
	width: 43px;
	height: 44px;
	transform: translateX(-50%);
	content: "";
	background: url(../img/faq-icon.png) no-repeat;
	background-size: contain;
}

.accordion-container {
	margin-bottom: 150px;
	text-align: left;
}

.accordion-list {
	padding-bottom: 50px;
	letter-spacing: 0.15rem;
}

.accordion-list:last-of-type {
	padding-bottom: 0;
}


.accordion-title {
	font-size: 2.0rem;
	font-weight: 700;
	padding: 0 80px 10px 70px;
	position: relative;
	border-bottom: 1px solid var(--line-color-brown);
}

.accordion-title:before {
	position: absolute;
	content: '';
	top: 50%;
	right: 30px;
	height: 2px;
	width: 25px;
	border-radius: 1px;
	background: var(--line-color-brown);
	transform: translateY(-50%) rotate(90deg);
	transition: all 0.5s ease-in-out;
}

.accordion-title:after {
	position: absolute;
	content: '';
	top: 50%;
	right: 30px;
	height: 2px;
	width: 25px;
	border-radius: 1px;
	background: var(--line-color-brown);
	transform: translateY(-50%);
	transition: all 0.5s ease-in-out;
}

.accordion-title.open:before {
	transform: rotate(180deg);
}

.accordion-title.open:after {
	opacity: 0;
}

.accordion-title span:before {
	position: absolute;
	top: 0;
	left: 5px;
	content: "Q.";
	font-size: 4.0rem;
	line-height: 1;
	color: var(--line-color-brown);
	background-size: contain;
}

.accordion-text {
	font-size: 1.8rem;
	padding: 15px 30px 0 70px;
	position: relative;
}

.accordion-text:before {
	position: absolute;
	top: 13px;
	left: 9px;
	content: "A.";
	font-size: 4.0rem;
	font-weight: 700;
	line-height: 1;
	color: var(--ac-color-green);
	background-size: contain;
}

.faq-partition {
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
	position: relative;
}

.faq-partition img:first-of-type {
	width: 100%;
	margin-bottom: 150px;
}

.faq-partition img:nth-of-type(2) {
	position: absolute;
	width: 152px;
	left: 4vw;
	top: -7vw;
}

.faq-partition img:nth-of-type(3) {
	position: absolute;
	width: 111px;
	left: calc(4vw + 145px);
	top: -3.5vw;
}

.faq-partition img:nth-of-type(4) {
	position: absolute;
	width: 141px;
	right: calc(4.5vw + 105px);
	top: -4vw;
}

.faq-partition img:nth-of-type(5) {
	position: absolute;
	width: 147px;
	right: 4.5vw;
	top: -1vw;
}

/* menu---------------------------------------*/
.menu {
	position: relative;
/*	background: var(--bg-color);*/
}

.menu-deco img {
	position: absolute;
}

.menu-deco img:first-of-type {
	width: 58px;
	left: 12vw;
	top: -120px;
	transform: rotate(17deg);
}

.menu-deco img:nth-of-type(2) {
	width: 470px;
	right: -16vw;
	top: 900px;
	transform: rotate(-61deg);
}

.menu-deco img:nth-of-type(3) {
	width: 415px;
	left: -10vw;
	top: 99%;
	transform: rotate(-132deg);
}

.menu .inner {
	display: block;
	margin: 0 auto;
	text-align: center;
}

.menu .section-subtitle:after {
	position: absolute;
	top: 30px;
	left: 50%;
	width: 50px;
	height: 50px;
	transform: translateX(-50%);
	content: "";
	background: url(../img/menu-icon.png) no-repeat;
	background-size: contain;
}

.menu-wrapper {
	text-align: left;
}

.menu-title-gray,
.menu-title-brown {
	position: relative;
	padding-left: 23px;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 30px;
}

.menu-title-brown {
	margin-top: 100px;
}

.menu-title-gray:before,
.menu-title-brown:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 10px;
	height: calc(100% - 6px);
	content: "";
}

.menu-title-gray:before {
	background-color: #e2e2e2;
	background-image: linear-gradient(180deg, #e2e2e2 1%, #bfbfbf 99%);
}

.menu-title-brown:before {
	background-color: #d6c9bb;
	background-image: linear-gradient(180deg, #d6c9bb 0%, #b7a38a 100%);
}

.menu-container-pc > a {
	display: flex;
	border-radius: 20px;
/*	background: #f2f2f2;*/
	background: #fff;
	box-shadow: 7px 7px 13px rgba(194, 194, 194, 1), -7px -7px 13px rgba(255, 255, 255, 1), inset 7px 7px 13px transparent, inset -7px -7px 13px transparent;
	transition: 0.5s;
	margin-bottom: 50px;
}

.menu-block-image {
	max-width: 300px;
	border-radius: 8px;
	overflow: hidden;
	transition: 0.5s;
	margin: 25px;
}

.menu-block-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.menu-block-image-odd {
	order: 2;
}

.menu-block-image-odd img {
}

.menu-block {
	max-width: 600px;
	width: 100%;
	padding: 25px 30px;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: space-between;
	transition: 0.5s;
}

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

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

.menu-block-odd {
	order: 1;
}

.menu-container-pc > a:hover {
	box-shadow: 7px 7px 13px transparent, -7px -7px 13px transparent, inset 7px 7px 13px rgba(194, 194, 194, 1), inset -7px -7px 13px rgba(255, 255, 255, 1);
}

.menu-container-pc > a:hover .menu-block-image {
	transform: translate(0.75%, 0);
}

.menu-container-pc > a:hover .menu-block-image-odd {
	transform: translate(-0.75%, 0);
}

.menu-container-pc > a:hover .menu-block {
	transform: translate(-0.75%, 0);
}

.menu-container-pc > a:hover .menu-block-odd {
	transform: translate(0.75%, 0);
}

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

.menu-container-pc > a:hover .btn:before {
	opacity: 0;
}

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

.menu-block-title {
	font-size: 2.0rem;
	font-weight: 700;
	line-height: 1;
	padding-bottom: 10px;
	margin-bottom: 12px;
}

.menu-block-list li {
	font-size: 1.5rem;
	list-style: circle;
	margin-left: 20px;
	margin-bottom: 13px;
	line-height: 1.8;
}

.menu-block-detail {
	text-decoration: underline;
	color: var(--ac-color-green);
}

.menu-block-detail:hover {
	text-decoration: none;
	opacity: 0.7;
}

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

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

.modal-wrapper {
	display: none;
}

.modal {
	background: #fff;
	/* max-width: 900px; */
	width: 75vw;
	height: 80vh;
}

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

.modalmenu-head {
	position: fixed;
	margin-bottom: 20px;
}

.modalmenu-head-title {
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.75;
	letter-spacing: 0.05em;
	background: #ffffff;
	width: calc(75vw - 60px);
}

.modalmenu-container {
	display: flex;
	height: calc(80vh - 124px);
	gap: 3%;
	margin-top: 59px;
}

.modalmenu-image {
	width: 32%;
	order: 2;
}

.modalmenu-image img {
	border-radius: 5px;
}

.modalmenu-block {
	width: 65%;
	overflow: scroll;
	padding: 0 15px;
}

.modalmenu-block-head {
	margin-bottom: 101px;
	position: relative;
}

.modalmenu-block-head::after {
	position: absolute;
	bottom: -50px;
	left: 50%;
	transform: translateX(-50%);
	width: 150px;
	height: 2px;
	border-radius: 1px;
	content: "";
	background-color: #e2e2e2;
	background-image: linear-gradient(90deg, #e2e2e2 0%, #bfbfbf 100%);
}

.modalmenu-block-head-lead {
	font-size: 2.0rem;
	line-height: 1.5;
	letter-spacing: 0.05em;
	margin-bottom: 40px;
}

.modalmenu-block-head-lead-list li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 15px;
}

.modalmenu-block-head-lead-list li:last-of-type {
	margin-bottom: 0;
}

.modalmenu-block-head-lead-list>li::before {
	position: absolute;
	content: "";
	background: url(../img/icon_point.svg) no-repeat;
	background-size: contain;
	background-position: center;
	width: 21px;
	height: 16px;
	top: 4px;
	left: 0;
}

.modalmenu-block-head-summary {
	margin-bottom: 50px;
}

.modalmenu-block-head-title {
	display: inline-block;
	position: relative;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--ac-color-green);
	padding: 0 5px;
	margin-bottom: 5px;
}

.modalmenu-block-head-title::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 2px;
	background: var(--ac-color-green);
	bottom: 5px;
	left: 0;
}

.modalmenu-block-head-title span {
	font-size: 3.2rem;
	font-weight: 400;
	padding-right: 3px;
	line-height: 1;
}

.modalmenu-block-head-text {
	letter-spacing: 0.05em;
	padding-left: 15px;
}

.modalmenu-block-head-list {
	letter-spacing: 0.05em;
	margin: 15px 0 15px 10px;
}

.modalmenu-block-head-text + .modalmenu-block-head-list {
	margin-left: 25px;
}


.modalmenu-block-head-list li {
	list-style: circle;
	margin-left: 20px;
}

.modalmenu-block-body-title-gray,
.modalmenu-block-body-title-brown {
	position: relative;
	font-size: 2.0rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	padding-left: 20px;
	margin-bottom: 25px;
}

.modalmenu-block-body-title-gray:before,
.modalmenu-block-body-title-brown:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 10px;
	height: calc(100% - 6px);
	content: "";
}

.modalmenu-block-body-title-gray:before {
	background-color: #e2e2e2;
	background-image: linear-gradient(180deg, #e2e2e2 1%, #bfbfbf 99%);
}

.modalmenu-block-body-title-brown:before {
	background-color: #d6c9bb;
	background-image: linear-gradient(180deg, #d6c9bb 0%, #b7a38a 100%);
}

.modalmenu-block-body-listnum {
	margin-bottom: 40px;
}

.modalmenu-block-body-listnum>li {
	position: relative;
	line-height: 1.8;
	margin-bottom: 30px;
}

.modalmenu-block-body-listnum>li:last-of-type {
	margin-bottom: 0;
}

.modalmenu-block-body-listnum>li:before {
	position: absolute;
	font-size: 3rem;
	font-weight: 400;
	line-height: 1;
	width: 25px;
	top: -1px;
	left: 16px;
	color: var(--text-color);
	text-align: center;
}

.modalmenu-block-body-listnum>li:first-of-type::before {
	content: "1.";
}

.modalmenu-block-body-listnum>li:nth-of-type(2)::before {
	content: "2.";
}

.modalmenu-block-body-listnum>li:nth-of-type(3)::before {
	content: "3.";
}

.modalmenu-block-body-listnum>li:nth-of-type(4)::before {
	content: "4.";
}

.modalmenu-block-body-listnum>li:nth-of-type(5)::before {
	content: "5.";
}

.modalmenu-block-body-listnum-title {
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	padding-left: 47px;
}

.modalmenu-block-body-listnum-lead {
	font-size: 1.6rem;
	letter-spacing: 0.05em;
	padding-left: 47px;
	margin: 15px 0 5px;
}

.modalmenu-block-body-listnum-text {
	font-size: 1.6rem;
	letter-spacing: 0.05em;
	padding-left: 49px;
	margin-bottom: 5px;
}

.modalmenu-block-body-listnum-list {
	letter-spacing: 0.05em;
	padding-left: 47px;
	margin-bottom: 30px;
}

.modalmenu-block-body-listnum-list li {
	position: relative;
	list-style: none;
	margin: 0 0 8px 10px;
	padding-left: 26px;
}

.modalmenu-block-body-listnum-list li::before {
	position: absolute;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.5;
	width: 22px;
	height: 22px;
	top: 1px;
	left: 0px;
	color: #ffffff;
	background-color: var(--ac-color-green);
	border-radius: 11px;
	text-align: center;
}

.modalmenu-block-body-listnum-list>li:first-of-type:before {
	content: "1";
}

.modalmenu-block-body-listnum-list>li:nth-of-type(2):before {
	content: "2";
}

.modalmenu-block-body-listnum-list>li:nth-of-type(3):before {
	content: "3";
}

.modalmenu-block-body-listnum-list>li:nth-of-type(4):before {
	content: "4";
}

.modalmenu-block-body-list-check,
.modalmenu-block-body-list-circle {
	margin-bottom: 40px;
}

.modalmenu-block-body-list-check li,
.modalmenu-block-body-list-circle li {
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.05em;
	list-style: none;
	padding-left: 24px;
	margin: 0 0 15px 25px;
}

.modalmenu-block-body-list-check li {
	background: url(../img/icon_checkmark.svg) top 0px left 0px no-repeat;
	background-size: 18px auto;
}

.modalmenu-block-body-list-circle li {
	position: relative;
}

.modalmenu-block-body-list-circle li::before {
	position: absolute;
	width: 8px;
	height: 8px;
	top: 5px;
	left: 5px;
	background-color: var(--ac-color-green);
	border-radius: 5px;
	content: "";
}

.modalmenu-btn {
	text-align: center;
	margin: 0 5% 20px;
}

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

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


/* voices ---------------------------------------*/
.voices {
	position: relative;
}

.voices-deco img {
	position: absolute;
}

.voices-deco img:first-of-type {
	width: 217px;
	right: 6vw;
	top: 60px;
	transform: rotate(-236deg);
}

.voices-deco img:nth-of-type(2) {
	width: 320px;
	left: -2vw;
	top: 740px;
	transform: rotate(-41deg);
}

.voices-deco img:nth-of-type(3) {
	width: 411px;
	right: -3vw;
	top: 1100px;
	transform: rotate(0deg);
}

.voices-deco img:nth-of-type(4) {
	width: 328px;
	left: 2vw;
	top: 1750px;
	transform: rotate(14deg);
}

.voices .inner {
	display: block;
	margin: 0 auto;
	text-align: center;
}

.voices .section-subtitle:after {
	position: absolute;
	top: 30px;
	left: 50%;
	width: 44px;
	height: 47px;
	transform: translateX(-50%);
	content: "";
	background: url(../img/voices-icon.png) no-repeat;
	background-size: contain;
}

.voices-container {
	padding-bottom: 70px;
}

.voices-block {
	position: relative;
	max-width: 680px;
	width: 100%;
	background-color: #d6c9bb;
	background-image: linear-gradient(120deg, #d6c9bb 0%, #b7a38a 100%);
	border-radius: 20px;
	box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
	padding: 4px;
	margin-bottom: 50px;
}

.voices-block.animation.on {
	transform: rotate(-1deg);
}

.voices-block:nth-of-type(even) {
	margin-left: auto;
}

.voices-block:nth-of-type(even).animation.on {
	transform: rotate(1deg);
}

.voices-block:last-of-type {
	margin-bottom: 0;
}

.voices-block:before {
	position: absolute;
	content: "";
}

.voices-block:first-of-type:before {
	width: 80px;
	height: 75px;
	top: 30px;
	left: 50px;
	background: url(../img/voices-05.svg) no-repeat;
	background-size: contain;
	z-index: 1;
}

.voices-block:nth-of-type(2):before {
	width: 80px;
	height: 87px;
	top: 40px;
	left: 50px;
	background: url(../img/voices-01.svg) no-repeat;
	background-size: contain;
	z-index: 1;
}

.voices-block:nth-of-type(3):before {
	width: 80px;
	height: 69px;
	top: 50px;
	left: 55px;
	background: url(../img/voices-02.svg) no-repeat;
	background-size: contain;
	z-index: 1;
}

.voices-block:nth-of-type(4):before {
	width: 103px;
	height: 80px;
	top: 30px;
	left: 35px;
	background: url(../img/voices-03.svg) no-repeat;
	background-size: contain;
	z-index: 1;
}

.voices-block:nth-of-type(5):before {
	width: 64px;
	height: 94px;
	top: 20px;
	left: 60px;
	background: url(../img/voices-04.svg) no-repeat;
	background-size: contain;
	z-index: 1;
}

.voices-block-inner {
	border-radius: 16px;
	background-color: #ffffff;
	background-image: linear-gradient(120deg, #ffffff 0%, #f2f2f2 100%);
	padding: 36px;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: space-between;
}

.cornercutting {
	-webkit-mask-image: radial-gradient(circle 35px at 35px 35px,transparent 34.99px,#000);
	-webkit-mask-size: 100% 100%;
	-webkit-mask-position: -35px -35px;
	mask-image: radial-gradient(circle 35px at 35px 35px,transparent 34.99px,#000);
	mask-size: 100% 100%;
	mask-position: -35px -35px;
}

.cornercutting-inner {
	-webkit-mask-image: radial-gradient(circle 39px at 39px 39px,transparent 38.99px,#000);
	-webkit-mask-size: calc(100% + 8px) calc(100% + 8px);
	-webkit-mask-position: -43px -43px;
	mask-image: radial-gradient(circle 39px at 39px 39px,transparent 38.99px,#000);
	mask-size: calc(100% + 8px) calc(100% + 8px);
	mask-position: -43px -43px;
}

.voices-block-title,
.voices-block-writer {
	font-weight: 700;
	line-height: 1.8;
}

.voices-block-title {
	font-size: 2.0rem;
	padding-left: 22%;
	text-align: left;
}

.voices-block-writer {
	font-size: 1.8rem;
	text-align: right;
	border-bottom: 2px solid var(--line-color-brown);
	padding-bottom: 15px;
	margin-bottom: 25px;
}

.voices-block-text {
	font-size: 1.5rem;
	line-height: 1.8;
	letter-spacing: 0.15rem;
	text-align: left;
}

/* news ---------------------------------------*/
.news {
	position: relative;
}

.news-deco img {
	position: absolute;
}

.news-deco img:first-of-type {
	width: 132px;
	left: 3.5vw;
	bottom: -20px;
}

.news-deco img:nth-of-type(2) {
	width: 145px;
    left: calc(3.5vw + 98px);
    bottom: -20px;
}

.news-deco img:nth-of-type(3) {
	width: 155px;
	right: calc(3.5vw + 90px);
	bottom: -20px;
}

.news-deco img:nth-of-type(4) {
	width: 119px;
	right: 3.5vw;
	bottom: -19px;
}

.news .inner {
	display: block;
	margin: 0 auto;
	text-align: center;
}

.news .section-subtitle:after {
	position: absolute;
	top: 25px;
	left: 50%;
	width: 61px;
	height: 55px;
	transform: translateX(-50%);
	content: "";
	background: url(../img/news-icon.png) no-repeat;
	background-size: contain;
}

.news-block {
	width: 100%;
	margin: 0 auto;
	padding-bottom: 200px;
}

.news-block li {
	border-bottom: 2px solid #ffffff;
	text-align: left;
	display: flex;
	align-items: center;
	padding: 42px 40px 38px;
	/* background: rgba(255, 255, 255, 0.2); */
}

.news-block li:first-of-type {
	border-top: 2px solid #ffffff;
}

.news-lead {
	width: 140px;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--ac-color-green);
}

.news-text {
	font-size: 1.8rem;
	letter-spacing: 0.15rem;
}





/* 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-outline:hover .arrow-right-green {
	border-left: 15px solid #ffffff;
}


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

	.kv-deco img:nth-of-type(4) {
		left: 14vw;
		top: 270px;
	}

	.kv-block-title-01 img,
	.kv-block-title-02 img {
		max-width: 750px;
	}

	.kv-cta-block {
		width: 220px;
	}

	.kv-cta-block:first-of-type {
		right: unset;
		left: 1vw;
	}

	.issue-title:before {
		left: -2vw;
		width: 300px;
		height: 157px;
	}

	.future-title:after {
		right: -16vw;
		width: 550px;
		height: 407px;
	}

	.faq-partition img:nth-of-type(2) {
		top: -8vw;
	}

	.faq-partition img:nth-of-type(3) {
		top: -4vw;
	}

	.faq-partition img:nth-of-type(4) {
		top: -6vw;
	}

	.faq-partition img:nth-of-type(5) {
		top: -3vw;
	}
}

@media screen and (min-width: 768px) and (max-width: 1050px) {
	.message .inner p {
		max-width: 420px;
	}

	.profile-deco>img:first-of-type {
		width: 300px;
	}

	.faq-deco img:first-of-type {
		width: 300px;
	}

	.faq-partition img:nth-of-type(2) {
		top: -10vw;
	}

	.faq-partition img:nth-of-type(3) {
		top: -5vw;
	}

	.faq-partition img:nth-of-type(4) {
		top: -8vw;
	}

	.faq-partition img:nth-of-type(5) {
		top: -5vw;
	}

	.information-deco img:first-of-type {
		left: 5vw;
	}

	.information-deco img:nth-of-type(2) {
		width: 234px;
		left: -8vw;
	}

	.information-deco img:nth-of-type(3) {
		width: 86px;
		right: 5vw;
	}

	.information-deco img:nth-of-type(4) {
		width: 240px;
		right: -9vw;
	}

	.menu-deco img:nth-of-type(2) {
		right: -20vw;
	}

	.menu-deco img:nth-of-type(3) {
		left: -25vw;
	}

	.voices-deco img:first-of-type {
		right: -9vw;
	}

	.voices-deco img:nth-of-type(2) {
		left: -12vw;
	}

	.voices-deco img:nth-of-type(3) {
		width: 311px;
		right: -5vw;
		top: 960px;
	}

	.voices-deco img:nth-of-type(4) {
		left: -13vw;
	}

}

@media screen and (min-width: 768px) and (max-width: 900px) {
	.faq-partition img:nth-of-type(2) {
		top: -12vw;
	}

	.faq-partition img:nth-of-type(3) {
		top: -6vw;
	}

	.faq-partition img:nth-of-type(4) {
		top: -10vw;
	}

	.faq-partition img:nth-of-type(5) {
		top: -7vw;
	}


}


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

	.about,
	.profile,
	.menu,
	.voices {
		margin-bottom: 100px;
	}

	.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;
	}

	/* kv ---------------------------------------*/
	.kv {
		margin-top: 60px;
		height: 550px;
		margin-bottom: 60px;
	}

	.kv-deco img {
		position: absolute;
	}

	.kv-deco img:first-of-type {
		width: 8vw;
		left: 8vw;
		top: 25px;
	}

	.kv-deco img:nth-of-type(2) {
		width: 7vw;
		right: 14vw;
		top: 20px;
	}

	.kv-deco img:nth-of-type(3) {
		width: 6vw;
		right: 6vw;
		top: 50px;
	}

	.kv-deco img:nth-of-type(4) {
		width: 18vw;
		left: 6vw;
		top: 270px;
	}

	.kv-deco img:nth-of-type(5) {
		width: 19vw;
		right: 8vw;
		top: 220px;
	}

	.kv-deco img:nth-of-type(6) {
		width: 35px;
		left: calc(50vw - 240px);
		bottom: 4px;
	}

	.kv-deco img:nth-of-type(7) {
		width: 35px;
		left: calc(50vw - 180px);
		bottom: -5px;
	}

	.kv-deco img:nth-of-type(8) {
		width: 35px;
		bottom: 10px;
		left: calc(50% - 110px);
	}

	.kv-block-title-01 img {
		max-width: 390px;
	}

	.kv-block-title-02 img {
		max-width: 360px;
	}

	.kv-image-tree {
		bottom: 15px;
		width: 300px;
		height: auto;
	}

	.kv-image-island {
		width: 320px;
		height: auto;
	}

	.kv-cta-block {
		position: absolute;
		width: 240px;
		bottom: 40px;
	}

	.kv-cta-block:first-of-type {
		right: calc(1vw + 240px);
	}

	.kv-cta-block:nth-of-type(2) {
		right: 1vw;
	}


	/* information ---------------------------------------*/

	.information-deco img:first-of-type {
		width: 18vw;
		left: -3vw;
		top: 90px;
	}

	.information-deco img:nth-of-type(2) {
		width: 26vw;
		left: 2vw;
		top: 440px;
	}

	.information-deco img:nth-of-type(3) {
		width: 12vw;
		right: 5vw;
		top: 80px;
	}

	.information-deco img:nth-of-type(4) {
		width: 30vw;
		right: -5vw;
		top: 500px;
	}

	.information-deco img:nth-of-type(5) {
		width: 6vw;
		right: 15vw;
		top: 440px;
	}

	.information-logo img {
		width: 146px;
		margin-bottom: 100px;
	}

	.information-text {
		width: 305px;
		margin: 0 auto 50px;
	}

	.information-text p {
		font-size: 1.6rem;
		letter-spacing: 0.15rem;
	}

	.information .attention:before {
		top: -29px;
		left: -22px;
		width: 28px;
		height: 29px;
	}

	.information-image img {
		width: 64px;
		margin: 0 auto 50px;
	}

	.information-partition img {
		margin-bottom: 50px;
	}

	/* about ---------------------------------------*/

	.about-deco img:first-of-type {
		width: 44vw;
		left: -18vw;
		top: 350px;
	}

	.about-deco img:nth-of-type(2) {
		width: 40vw;
		left: -9vw;
		top: 740px;
	}

	.about-deco img:nth-of-type(3) {
		width: 12vw;
		right: 3vw;
		top: 240px;
	}

	.about-deco img:nth-of-type(4) {
		width: 45vw;
		right: -12vw;
		top: 510px;
	}

	.about-deco img:nth-of-type(5) {
		width: 40vw;
		right: -5vw;
		top: 1000px;
	}

	.about .section-subtitle:after {
		top: 30px;
		width: 24px;
		height: 24px;
	}

	.frame-blur::before {
		max-width: 100%;

	}

	.about .inner p {
		letter-spacing: 0.15rem;
		position: relative;
	}

	.about .inner p:first-of-type {
		padding-bottom: 122px;
		position: relative;
	}

	.about .inner p:first-of-type:after {
		bottom: 60px;
		width: 50px;
	}

	/* message ---------------------------------------*/
	.message {
		margin-bottom: 450px;
	}

	.message-deco img:first-of-type {
		width: 18vw;
		max-width: 90px;
		left: 64%;
		top: unset;
		bottom: -10%;
		transform: rotate(6deg) translateX(-50%);
	}

	.message-deco img:nth-of-type(2) {
		width: 45vw;
		max-width: 220px;
		left: 35%;
		top: unset;
		bottom: -30%;
		transform: rotate(-9deg) translateX(-50%);
	}

	.message-deco img:nth-of-type(3) {
		width: 21vw;
		max-width: 110px;
		left: 74%;
		top: unset;
		bottom: -30%;
		transform: rotate(70deg) translateX(-50%);
	}

	.message .inner {
		text-align: center;
	}

	.message .section-subtitle:after {
		top: 30px;
		left: 50%;
		right: unset;
		transform: translateX(-50%);
		width: 19px;
		height: 22px;
	}

	.message .inner p {
		font-size: 15px;
		max-width: 315px;
		margin: 0 auto;
		letter-spacing: 0.15rem;
	}

	.message .attention:before {
		top: -14px;
		left: -11px;
		width: 15px;
		height: 16px;
	}

	/* isuure ---------------------------------------*/

	.issue .inner {
		padding: 0 30px;
	}

	.issue-deco span:first-of-type img {
		width: 80px;
		left: 0.5vw;
		bottom: -10px;
	}

	.issue-deco span:nth-of-type(2) img {
		width: 65px;
		left: calc(0.5vw + 80px);
		bottom: 4px;
	}

	.issue-deco span:nth-of-type(3) img {
		width: 59px;
		right: calc(0vw + 75px);
		bottom: 2px;
	}

	.issue-deco span:nth-of-type(4) img {
		width: 78px;
		right: 0vw;
		bottom: -11px;
	}

	.issue-title {
		font-size: 2.0rem;
		letter-spacing: 0.15rem;
		margin-bottom: 30px;
		padding-top: 9px;
	}

	.issue-title:before {
		top: -95px;
		left: -20px;
		width: 230px;
		height: 32vw;
	}

	.issue-list {
		margin-bottom: 250px;
	}

	.issue-list:after {
		top: unset;
		bottom: -220px;
		left: 50%;
		right: unset;
		transform: translateX(-50%);
		width: 235px;
		height: 217px;
	}

	.issue-list li {
		font-size: 1.5rem;
		padding-left: 38px;
		padding-bottom: 30px;
	}

	.issue-list li:before {
		top: -10px;
		left: 0;
	}

	/* scrolldown */
	.scrolldown {
		padding: 100px 0 130px;
	}

	.future-title {
		font-size: 1.6rem;
		line-height: 1.8;
		letter-spacing: 0.3rem;
		margin-bottom: 35px;
	}

	.future-title:before {
		width: 500px;
		height: 115px;
	}

	.future-title:after {
		top: -165px;
		right: -100px;
		width: 500px;
		height: 371px;
	}

	.future-title-red {
		font-size: 2.5rem;
	}

	.future-title .attention:before {
		top: -22px;
		left: -16px;
		width: 21px;
		height: 22px;
	}

	.future-title-white {
		padding-top: 12px;
	}

	.future-title-middle {
		font-size: 2.0rem;
	}

	.future-list {
		display: block;
		padding-bottom: 150px;
	}

	.future-list:before {
		top: -80px;
	}

	.future-list:after {
		position: absolute;
		top: 915px;
		left: 50%;
		transform: translateX(-50%);
		width: 1000px;
		height: 791px;
		content: "";
		background: url(../img/future-bg.png) no-repeat;
		background-size: contain;
		z-index: -2;
	}

	.future-list li {
		width: 100%;
		margin-bottom: 25px;
	}

	.future-list li:before {
		top: -23px;
		left: -15px;
		width: 101px;
		height: 78px;
	}

	.future-list li:last-of-type {
		margin-bottom: 0;
	}

	.future-list li:nth-of-type(even):before {
		right: -20px;
		left: unset;
		transform: rotate(6deg);
	}

	.future-list li figure img {
		padding: 20px 0;
	}

	/* cta ---------------------------------------*/
	.cta {
		background-image: url(../img/cta-bg-sp.jpg);
	}

	.cta-mb {
		margin-bottom: 90px;
	}

	.cta-wrapper {
		padding: 80px 0 10vw;
	}

	.cta-wrapper:before {
		top: 5%;
		right: -8vw;
		left: unset;
		width: 47vw;
		height: 45vw;
		transform: rotate(15deg);
	}

	.cta-wrapper:after {
		top: unset;
		bottom: -4%;
		right: unset;
		left: -12vw;
		width: 49vw;
		height: 28vw;
	}

	.cta-title {
		padding-bottom: 60px;
	}

	.cta-title:before {
		top: -70px;
		left: calc(50% - 130px);
		width: 90px;
		height: 66px;
		transform: translateX(-50%);
	}

	.cta-title img {
		max-width: 353px;
		width: 106%;
	}

	.cta-container {
		width: 100%;
		height: unset;
		padding: 216px 20px 25px;
		display: block;
	}

	.cta-block {
		width: 100%;
		min-width: unset;
		align-items: center;
	}

	.cta-text {
		font-size: 1.6rem;
		text-align: left;
		margin-bottom: 20px;
	}

	.cta-text-brown {
		font-size: 2.0rem;
	}

	.cta-image {
		max-width: 306px;
		display: block;
		margin: 0 auto;
	}

	.cta-image img {
		position: absolute;
		top: -447px;
		right: 50%;
		transform: translateX(50%);
	}

	/* profile ---------------------------------------*/
	.profile {
		position: relative;
	}

	.profile-deco-child img:first-of-type {
		width: 75px;
		right: calc(50% - 130px);
		top: 180px;
	}

	.profile-deco-child img:nth-of-type(2) {
		width: 34px;
		right: calc(50% + 115px);
		top: 375px;
	}

	.profile-deco>img:first-of-type {
		width: 180px;
		left: 68vw;
		top: 66%;
		transform: rotate(-30deg);
	}

	.profile .inner .section-title,
	.profile .inner .section-subtitle {
		text-align: center;
	}

	.profile .section-subtitle:after {
		top: 30px;
		left: 50%;
		transform: translateX(-50%);
		width: 29px;
		height: 23px;
	}

	.profile-wrapeer {
		display: block;
	}

	.profile-container {
		width: 100%;
	}

	.profile-block {
		margin-bottom: 60px;
		position: relative;
	}

	.profile .inner>.profile-block .profile-title {
		margin-bottom: 275px;
	}

	.profile-title {
		padding-left: 18px;
		font-size: 1.8rem;
		font-weight: 700;
		line-height: 1.5;
		margin-bottom: 20px;
	}

	.profile-title:before {
		width: 8px;
		height: calc(100% - 4px);
	}

	.profile-text {
		letter-spacing: 0.05rem;
		padding-left: 15px;
		padding-right: 5px;
	}

	.profile-image img {
		width: 263px;
		top: 90px;
		left: 50%;
		transform: translateX(-50%);
	}

	.profile-list li {
		list-style: circle;
		margin-left: 27px;
		padding-right: 5px;
	}

	.profile-radio {
		gap: 25px;
		padding-left: 15px;
		padding-right: 5px;
		margin-bottom: 20px;
	}

	.profile-radio-note {
		text-align: right;
		padding-left: 15px;
		padding-right: 5px;
		line-height: 1.5;
	}


	/* faq ---------------------------------------*/


	.faq-deco img:first-of-type {
		width: 170px;
		right: -40px;
		top: 55%;
		opacity: 0.7;
	}

	.faq .section-subtitle:after {
		top: 30px;
		left: 50%;
		width: 21px;
		height: 22px;
	}

	.accordion-container {
		padding-bottom: 0;
		margin-bottom: 90px;
	}

	.accordion-list {
		padding-bottom: 50px;
		letter-spacing: 0.15rem;
	}

	.accordion-list:last-of-type {
		padding-bottom: 0;
	}

	.accordion-title {
		font-size: 1.6rem;
		line-height: 1.5;
		padding: 0 40px 8px 35px;
		letter-spacing: 0.05rem;
	}

	.accordion-title:before {
		top: unset;
		right: 10px;
		height: 1px;
		width: 17px;
		bottom: 25px;
		transform: rotate(90deg);
	}

	.accordion-title:after {
		top: unset;
		right: 10px;
		height: 1px;
		width: 17px;
		bottom: 25px;
		transform: unset;
	}

	.accordion-title span:before {
		left: 1px;
		font-size: 2.5rem;
	}

	.accordion-text {
		font-size: 1.5rem;
		padding: 16px 10px 0 35px;
	}

	.accordion-text:before {
		top: 18px;
		left: 3px;
		font-size: 2.5rem;
	}

	.faq-partition img:first-of-type {
		margin-bottom: 50px;
	}

	.faq-partition img:nth-of-type(2) {
		width: 74px;
		left: 2vw;
		top: -55px;
	}

	.faq-partition img:nth-of-type(3) {
		width: 53px;
		left: calc(2vw + 65px);
		top: -30px;
	}

	.faq-partition img:nth-of-type(4) {
		width: 74px;
		right: calc(3vw + 55px);
		top: -43px;
	}

	.faq-partition img:nth-of-type(5) {
		width: 74px;
		right: 3vw;
		top: -25px;
	}

	/* menu---------------------------------------*/

	.menu .inner {
		max-width: 440px;
	}

	.menu-deco img:first-of-type {
		width: 7vw;
		left: unset;
		right: 3vw;
		top: -40px;
	}

	.menu-deco img:nth-of-type(2) {
		width: 40vw;
		right: -16vw;
		top: 1230px;
	}

	.menu-deco img:nth-of-type(3) {
		width: 40vw;
		left: -15vw;
		top: 2670px;
	}

	.menu .section-subtitle:after {
		width: 23px;
		height: 25px
	}

	.menu-title-gray,
	.menu-title-brown {
		padding-left: 18px;
		font-size: 1.8rem;
		margin-bottom: 20px;
	}

	.menu-title-brown {
		margin-top: 40px;
	}

	.menu-title-gray:before,
	.menu-title-brown:before {
		width: 8px;
		height: calc(100% - 4px);
	}

	.menu-container-sp {
/*		display: block;*/
		border-radius: 20px;
/*		background: #f2f2f2;*/
		background: #fff;
		box-shadow: 7px 7px 13px rgba(194, 194, 194, 1), -7px -7px 13px rgba(255, 255, 255, 1), inset 7px 7px 13px transparent, inset -7px -7px 13px transparent;
		transition: 0.5s;
		padding-top: 15px;
		margin-bottom: 25px;
		pointer-events: none;
	}

	.menu-container-sp:hover {
		box-shadow: 7px 7px 13px transparent, -7px -7px 13px transparent, inset 7px 7px 13px rgba(194, 194, 194, 1), inset -7px -7px 13px rgba(255, 255, 255, 1);
	}

	.menu-block-image {
		max-width: 400px;
		margin: 0 15px;
	}

	.menu-block-image img {
		aspect-ratio: 400/270;
	}

	.menu-block-image-odd {
		order: unset;
	}

	.menu-block {
		max-width: 400px;
		padding: 15px;
	}

	.menu-block-odd {
		order: unset;
	}

	.menu-container-sp a:hover .menu-block-image {
		transform: translate(0, 0.5%);
	}
	
/*	.menu-container-sp a:hover .menu-block-image-odd {
		transform: translate(0, 0.5%);
		pointer-events: none;
	}*/
	
	.menu-container-sp a:hover .menu-block {
		transform: translate(0, -0.5%);
	}
	
/*	.menu-container-sp a:hover .menu-block-odd {
		transform: translate(0, -0.5%);
		pointer-events: none;
	}*/

	.menu-block-title {
		font-size: 1.6rem;
		padding-bottom: 8px;
		margin-bottom: 16px;
	}

	.menu-block-list {
		margin-bottom: 15px;
	}

	.menu-block-list li {
		font-size: 1.4rem;
		list-style: circle;
		margin-left: 15px;
	}

	.menu-block-detail {
		text-decoration: underline;
		font-weight: 700;
		color: var(--ac-color-green);
	}

	.menu-block-detail:hover {
		opacity: 0.7;
	}

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

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

	.modal {
		max-width: 80vw;
		width: 100%;
	}

	.modal-inner {
		padding: 15px 15px;
	}

	.modalmenu-head {
		margin-bottom: 15px;
	}

	.modalmenu-head-title {
		font-size: 1.8rem;
		width: calc(80vw - 40px);
	}

	.modalmenu-container {
		display: block;
		height: calc(80vh - 92px);
		margin-top: 48px;
		overflow: scroll;
	}

	#menu-02 .modalmenu-container,
	#menu-03 .modalmenu-container,
	#menu-04 .modalmenu-container {
		margin-top: 79px;
	}

	.modalmenu-image {
		width: 80%;
		display: block;
		margin: 0 auto 15px;
	}

	.modalmenu-image img {
		border-radius: 5px;
	}

	.modalmenu-block {
		width: 100%;
		padding: 0 5px;
		overflow: unset;
	}

	.modalmenu-block-head {
		margin-bottom: 71px;
		position: relative;
	}

	.modalmenu-block-head::after {
		bottom: -35px;
		width: 75px;
		height: 1px;
	}

	.modalmenu-block-head-lead {
		font-size: 1.8rem;
		margin-bottom: 20px;
	}

	.modalmenu-block-head-lead-list li {
		font-size: 1.6rem;
		padding-left: 20px;
		margin-bottom: 10px;
	}

	.modalmenu-block-head-lead-list>li::before {
		width: 14px;
		height: 11px;
	}

	.modalmenu-block-head-lead-list li:last-of-type {
		margin-bottom: 0;
	}

	.modalmenu-block-head-summary {
		margin-bottom: 25px;
	}

	.modalmenu-block-head-title {
		font-size: 1.6rem;
	}

	.modalmenu-block-head-title span {
		font-size: 2.8rem;
	}

	.modalmenu-block-head-text {
		font-size: 1.4rem;
		padding-left: 10px;
	}

	.modalmenu-block-head-list {
		margin: 10px 0 10px 0;
	}

	.modalmenu-block-head-text + .modalmenu-block-head-list {
		margin-left: 10px;
	}

	.modalmenu-block-head-list li {
		font-size: 1.4rem;
		list-style: circle;
		margin-left: 20px;
	}

	.modalmenu-block-body-title-gray,
	.modalmenu-block-body-title-brown {
		font-size: 1.8rem;
		padding-left: 18px;
		margin-bottom: 20px;
		line-height: 1.5;
	}

	.modalmenu-block-body-title-gray:before,
	.modalmenu-block-body-title-brown:before {
		width: 8px;
		height: calc(100% - 4px);
	}

	.modalmenu-block-body-listnum {
		margin-bottom: 35px;
	}

	.modalmenu-block-body-listnum>li {
		margin-bottom: 20px;
	}

	.modalmenu-block-body-listnum>li:last-of-type {
		margin-bottom: 0;
	}

	.modalmenu-block-body-listnum>li:before {
		font-size: 2.5rem;
		width: 22px;
		top: 0;
		left: 3px;
	}

	.modalmenu-block-body-listnum-title {
		font-size: 1.6rem;
		padding-left: 27px;
	}

	.modalmenu-block-body-listnum-lead {
		font-size: 1.5rem;
		padding-left: 15px;
		margin: 10px 0 5px;
	}

	.modalmenu-block-body-listnum-text {
		font-size: 1.5rem;
		padding-left: 27px;
		margin-bottom: 5px;
	}

	.modalmenu-block-body-listnum-list {
		padding-left: 20px;
		margin-bottom: 25px;
	}

	.modalmenu-block-body-listnum-list li {
		font-size: 1.4rem;
		margin: 0 0 12px 0;
		padding-left: 26px;
	}

	.modalmenu-block-body-listnum-list li::before {
		font-size: 1.4rem;
		line-height: 1.6;
		width: 20px;
		height: 20px;
		top: 1px;
		left: 0;
		border-radius: 10px;
	}

	.modalmenu-block-body-list-check,
	.modalmenu-block-body-list-circle {
		margin-bottom: 35px;
	}

	.modalmenu-block-body-list-check li,
	.modalmenu-block-body-list-circle li {
		font-size: 1.4rem;
		padding-left: 20px;
		margin: 0 0 10px 7px;
	}

	.modalmenu-block-body-list-check li {
		background: url(../img/icon_checkmark.svg) top 2px left 0px no-repeat;
		background-size: 16px auto;
	}

	.modalmenu-block-body-list-circle li::before {
		width: 6px;
		height: 6px;
		top: 7px;
		left: 6px;
		border-radius: 3px;
	}

	.modalmenu-btn {
		margin: 0 0 40px;
	}

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


	/* voices ---------------------------------------*/

	.voices-deco img:first-of-type {
		width: 24vw;
		right: -7vw;
		top: 60px;
	}

	.voices-deco img:nth-of-type(2) {
		width: 37vw;
		left: -9vw;
		top: 25px;
	}

	.voices-deco img:nth-of-type(3) {
		width: 40vw;
		max-width: 200px;
		right: -7vw;
		top: 95.5%;
		transform: rotate(0deg);
	}

	.voices-deco img:nth-of-type(4) {
		width: 50vw;
		left: -16vw;
		top: 47%;
	}

	.voices .section-subtitle:after {
		width: 22px;
		height: 23px;
	}

	.voices-container {
		padding-bottom: 40px;
	}

	.voices-block {
		max-width: 450px;
		padding: 2px;
		margin-bottom: 35px;
	}

	.voices-block.animation.on {
		transform: rotate(0deg);
	}

	.voices-block:nth-of-type(even).animation.on {
		transform: rotate(0deg);
	}

	.voices-block:first-of-type:before {
		width: 40px;
		height: 44px;
		top: 30px;
		left: 26px;
	}

	.voices-block:nth-of-type(2):before {
		width: 40px;
		height: 44px;
		top: 40px;
		left: 26px;
	}

	.voices-block:nth-of-type(3):before {
		width: 40px;
		height: 35px;
		top: 45px;
		left: 27px;
	}

	.voices-block:nth-of-type(4):before {
		width: 52px;
		height: 40px;
		top: 30px;
		left: 20px;
	}

	.voices-block:nth-of-type(5):before {
		width: 32px;
		height: 47px;
		top: 20px;
		left: 34px;
	}

	.voices-block-inner {
		border-radius: 18px;
		padding: 26px;
	}

	.cornercutting {
		-webkit-mask-image: radial-gradient(circle 20px at 20px 20px,transparent 19.99px,#000);
		-webkit-mask-size: 100% 100%;
		-webkit-mask-position: -20px -20px;
		mask-image: radial-gradient(circle 20px at 20px 20px,transparent 19.99px,#000);
		mask-size: 100% 100%;
		mask-position: -20px -20px;
	}

	.cornercutting-inner {
		-webkit-mask-image: radial-gradient(circle 22px at 22px 22px,transparent 21.99px,#000);
		-webkit-mask-size: calc(100% + 4px) calc(100% + 4px);
		-webkit-mask-position: -24px -24px;
		mask-image: radial-gradient(circle 22px at 22px 22px,transparent 21.99px,#000);
		mask-size: calc(100% + 4px) calc(100% + 4px);
		mask-position: -24px -24px;
	}

	.voices-block-title,
	.voices-block-writer {
		font-size: 1.6rem;
		line-height: 1.5;
	}

	.voices-block-title {
		padding-left: 22%;
	}

	.voices-block-writer {
		border-bottom: 1px solid var(--line-color-brown);
		padding-bottom: 8px;
		margin-bottom: 15px;
	}

	.voices-block-text {
		font-size: 1.4rem;
		line-height: 2;
	}

	/* news ---------------------------------------*/

	.news-deco img:first-of-type {
		width: 64px;
		left: 2vw;
		bottom: -10px;
	}

	.news-deco img:nth-of-type(2) {
		width: 69px;
		left: calc(2vw + 50px);
		bottom: -10px;
	}

	.news-deco img:nth-of-type(3) {
		width: 78px;
		right: calc(2vw + 50px);
		bottom: -12px;
	}

	.news-deco img:nth-of-type(4) {
		width: 65px;
		right: 2vw;
		bottom: -12px;
	}

	.news .section-subtitle:after {
		top: 25px;
		width: 30px;
		height: 27px;
	}

	.news-block {
		padding-bottom: 150px;
	}

	.news-block li {
		border-bottom: 1px solid #ffffff;
		text-align: left;
		display: block;
		padding: 25px 10px;
	}

	.news-block li:first-of-type {
		border-top: 1px solid #ffffff;
	}

	.news-lead {
		width: 100%;
		font-size: 1.6rem;
		color: var(--ac-color-green);
	}

	.news-text {
		font-size: 1.4rem;
	}

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

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

	.copyright {
		padding: 27px 0;
	}



}




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