/******************************************************************
Theme Name: SUTEKI NA SEKAI
Theme URI: davinciinc.co.jp
Author: DAVINCI inc.
Author URI: https://davinciinc.co.jp/
Version: 1.0
******************************************************************/

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

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

*,*::before,*::after{box-sizing:border-box}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}ul,ol,li{margin:0;padding:0;list-style:none}html:focus-within{scroll-behavior:smooth}body{min-height:100vh;text-rendering:optimizeSpeed;line-height:1.5}a:not([class]){text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}input,button,select,textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:none;border-radius:0;font:inherit;outline: none}textarea{resize:vertical}input[type='checkbox'],input[type='radio']{display:none}input[type='submit'],input[type='button'],label,button,select{cursor:pointer}select::-ms-expand{display:none}@media(prefers-reduced-motion:reduce){html:focus-within{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}

/* root setting
--------------------------------------------------- */

:root {
    --font-jp: '游ゴシック体', 'YuGothic', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック', 'Yu Gothic', sans-serif;
    --font-en-01: 'Montserrat', sans-serif;
	--font-en-02: 'din-condensed', sans-serif;
    --color-bk: #262626;
    --color-bgy: #333333;
    --color-dgy: #515151;
    --color-gy: #777777;
	--color-lgy: #ccc;
    --color-wgy: #f1f1f1;
    --color-wh: #fff;
    --color-rd: #dd1212;
    --color-bl: #0976b2;
    --color-ye: #ffdc10;
}

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

html {
    height: 100%;
    font-size: 97%;
}
@media screen and (max-width: 374px) {
    html {
        font-size: 92%;
    }
}
@media screen and (min-width: 768px) {
    html {
        font-size: 100%;
    }
}
@media screen and (min-width: 1024px) {
    html {
        font-size: 90%;
    }
}
@media screen and (min-width: 1280px) {
    html {
        font-size: 90%;
    }
}
body {
    height: 100%;
    font-family: var(--font-jp);
    font-weight: 500;
    line-height: 1.8;
    text-align: justify;
    color: var(--color-wh);
    background: var(--color-bk);
    overflow-y: scroll;
}
body::after {
    z-index: 9999;
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: var(--color-nv);
    pointer-events: none;
    animation-name: fadeOut;
    animation-delay: 0;
    animation-duration: .7s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.8,0,.5,1);
}
body.viewtrans::after {
    animation-name: fadeIn;
    animation-delay: 0;
    animation-duration: .7s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.8,0,.5,1);
}
@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
}
a {
    display: block;
    color: var(--color-dgy);
    text-decoration: none;
    cursor: pointer;
}
img,
svg {
    width: 100%;
    height: auto;
}
#wrapper {
    position: relative;
    width: 100%;
    min-width: 320px;
    height: auto !important;
    height: 100%;
    min-height: 100%;
    margin: auto;
    background: var(--color-bk);
}
.mask {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.mask .mask-inner {
    width: inherit;
    height: inherit;
    opacity: 0;
}
.mask .mask-inner.inview {
    position: relative;
    animation-name: maskIn;
    animation-duration: .5s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.8,0,.5,1);
    opacity: 1 !important;
}
.mask .mask-inner.inview:before {
    z-index: 1;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-nv);
    animation-name: maskOut;
    animation-duration: .5s;
    animation-delay: .5s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.8,0,.5,1);
}

@keyframes maskIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}
@keyframes maskOut {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(101%);
    }
}
.fade {
    opacity: 0;
    transform: translate(0, 0);
}
.fade.inview {
    position: relative;
    animation-name: fadeIn;
    animation-duration: .7s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.8,0,.5,1);
    opacity: 0;
    transform: translate(0, 0);
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(0, 0);
    }
    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}
@media screen and (max-width: 767px) {
    br.is-pc {
        display: none;
    }
}
@media screen and (min-width: 768px) {
    br.is-sp {
        display: none;
    }
}

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

.header {
    z-index: 94;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
	height: 60px;
    transition: .3s;
}
.header::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: -64px;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--color-wh);
    transition: .3s;
}
.header.scroll::before {
    top: 0;
}
@media screen and (min-width: 768px) {
    .header {
		height: 80px;
    }
	.header::before {
		top: -80px;
		height: 80px;
	}
}
@media screen and (min-width: 768px) {
    .header {
		height: 90px;
    }
	.header::before {
		top: -90px;
		height: 90px;
	}
}


.header__inner {
    z-index: 95;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
	height: 100%;
    align-items: center;
}
.header__inner .logo {
    z-index: 96;
    display: flex;
    position: absolute;
	top: 50%;
	left: 15px;
    width: 156px;
	height: 14px;
	overflow: hidden;
    align-items: center;
    transition: .3s;
	transform: translate(0, -50%);
}
.header__inner .logo .img {
	z-index: 97;
    display: block;
	position: relative;
	width: 100%;
	height: 100%;
    overflow: hidden;
}
.header__inner .logo .img a {
    display: flex;
	position: relative;
	width: 100%;
    height: 100%;
    align-items: center;
}
.header__inner .logo .img a .logo-svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: .2s;
}
.header__inner .logo .img a .logo-wh {
	z-index: 2;
	opacity: 1;
}
.header.scroll .header__inner .logo .img a .logo-wh {
	opacity: 0;
}
.header__inner .logo .img a .logo-bk {
	z-index: 1;
	opacity: 0;
}
.header.scroll .header__inner .logo .img a .logo-bk {
	opacity: 1;
}
@media screen and (min-width: 414px) {
    .header__inner .logo {
        width: 178px;
        height: 16px;
    }
}
@media screen and (min-width: 768px) {
    .header__inner .logo {
		left: 25px;
        width: 222px;
        height: 20px;
    }
}
@media screen and (min-width: 1024px) {
	.header__inner {
		padding: 0 30px;
	}
    .header__inner .logo {
		position: relative;
		top: auto;
		left: auto;
        width: 222px;
        height: 20px;
		transform: translate(0, 0);
    }
}

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

.menu-btn {
    z-index: 9995;
    position: fixed;
    top: 0;
    right: 15px;
    width: 50px;
    height: 60px;
}
.menu-btn span {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 30px;
    height: 1.2px;
    background: var(--color-wh);
    transform: translate(0, -50%);
    transition: .3s;
}
.header.scroll .menu-btn span {
	background: var(--color-bk);
}
.menu-btn span:nth-of-type(1) {
    margin-top: -3px;
}
.menu-btn span:nth-of-type(2) {
    margin-top: 3px;
}
@media screen and (min-width: 768px) {
	.menu-btn {
		right: 30px;
		width: 60px;
		height: 80px;
	}
	.menu-btn span {
		width: 40px;
	}
	.menu-btn span:nth-of-type(1) {
		margin-top: -4px;
	}
	.menu-btn span:nth-of-type(2) {
		margin-top: 4px;
	}
}
@media screen and (min-width: 1024px) {
    .menu-btn {
        display: none;
    }
}

/* g-nav
--------------------------------------------------- */

.g-nav {
    z-index: 9998;
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    background: var(--color-bk);
    transition: .3s;
}
.g-nav.open {
    right: 0;
}
.g-nav .menu-btn__close {
    position: absolute;
    top: 0;
    right: 15px;
    width: 50px;
    height: 60px;
}
.g-nav .menu-btn__close span {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 30px;
    height: 1.2px;
    background: var(--color-wh);
    transform: translate(0, -50%);
    transition: .3s;
}
.g-nav .menu-btn__close span:nth-of-type(1) {
    transform: translate(0,-50%) rotate(38deg);
}
.g-nav .menu-btn__close span:nth-of-type(2) {
    transform: translate(0,-50%) rotate(-38deg);
}
.g-nav__list > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 100px 30px 150px;
}
.g-nav__list > ul > li {
    position: relative;
    width: 100%;
}
.g-nav__list > ul > li > a {
	display: flex;
	align-items: flex-end;
	gap: 12px;
    position: relative;
    padding: 10px 5px;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: .1em;
    color: var(--color-wh);
    cursor: pointer;
}
.g-nav__list > ul > li > a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-wh);
    opacity: .3;
}
.g-nav__list span.en {
	font-family: var(--font-en-02);
    font-size: 2.8rem;
	line-height: 1;
}
.g-nav__list span.jp {
	padding-bottom: 10px;
	font-family: var(--font-jp);
    font-size: 0.95rem;
	line-height: 1;
	color: var(--color-gy);
}
@media screen and (min-width: 768px) {
	.g-nav .menu-btn__close {
		right: 20px;
		width: 60px;
		height: 80px;
	}
	.g-nav .menu-btn__close span {
		width: 40px;
	}
	.g-nav__list > ul {
		padding: 200px 60px 150px;
	}
}
@media screen and (min-width: 1024px) {
	.g-nav .menu-btn__close {
		display: none;
	}
    .g-nav {
        position: relative;
        top: inherit;
        right: inherit;
        width: auto;
        height: 80px;
		margin-left: auto;
		margin-right: 0;
		padding: 0;
        overflow: hidden;
        background: none;
    }
    .g-nav__list > ul {
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        height: 80px;
        gap: 20px;
        padding: 0;
    }
    .g-nav__list > ul > li {
        width: auto;
        height: 100%;
    }
    .g-nav__list > ul > li > a {
        display: flex;
        flex-direction: column;
		align-items: center;
        justify-content: center;
		gap: 5px;
        height: 100%;
		line-height: 1;
        cursor: pointer;
		color: var(--color-bk);
    }
	.g-nav__list > ul > li > a::before {
		display: none;
	}
	.g-nav__list > ul > li span {
        display: block;
        text-align: center;
        line-height: 1.6;
    }
    .g-nav__list span.en {
        font-size: 1.5rem;
		color: var(--color-wh);
		letter-spacing: .1em;
		text-indent: -.1em;
		transition: .2s;
    }
	.g-nav__list span.jp {
		padding-bottom: 0;
        font-size: 0.7rem;
		color: var(--color-wh);
		letter-spacing: .05em;
		text-indent: -.05em;
		transition: .2s;
    }
	.header.scroll .g-nav__list span.en {
		color: var(--color-bk);
	}
	.header.scroll .g-nav__list span.jp {
		color: var(--color-dgy);
	}
}

.contents {
    position: relative;
    width: 100%;
    overflow: hidden;
}

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

.footer {
    z-index: 1;
    position: relative;
    width: 100%;
}
.footer__inner {
    z-index: 2;
    position: relative;
    width: 100%;
}
.footer__logo {
    width: 140px;
    margin: auto;
    padding: 20px 0;
}
@media screen and (min-width: 768px) {
	.footer__logo {
		width: 170px;
		padding: 50px 0 40px;
	}
}

.footer__link {
    z-index: 1;
    position: relative;
    width: 100%;
    padding: 30px 20px;
}
.footer__link ul {
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    width: 100%;
}
.footer__link ul li a {
    font-size: 0.7rem;
    color: var(--color-wh);
}
@media screen and (min-width: 768px) {
    .footer__link ul {
        gap: 20px;
    }
    .footer__link ul li a {
        font-size: 0.9rem;
    }
}

.copy {
    width: 100%;
    padding: 25px 0;
    font-family: var(--font-en-02);
    font-weight: 400;
    font-size: 0.7rem;
    text-align: center;
    letter-spacing: .05em;
    text-indent: -.05em;
    line-height: 1;
}
@media screen and (min-width: 768px) {
	.copy {
		padding: 30px 0;
		font-size: 0.8rem;
	}
}


/* --------------------------------------------------
 notfound
--------------------------------------------------- */

.notfound {
    z-index: 1;
    position: relative;
    width: 100%;
    height: 80vh;
    padding: 0;
    background-image: url("assets/images/bg-404.jpg");
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
}
.notfound-inner {
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    color: var(--color-wh);
    text-align: center;
}
.notfound-inner h1 {
    padding-top: 30px;
    font-family: var(--font-en-01);
    font-weight: 400;
    font-size: calc(var(--fs)*4);
    line-height: 1;
}
.notfound-inner h1 span {
    display: block;
    padding: 10px 0 40px;
    font-size: calc(var(--fs)*2.2);
}

/* --------------------------------------------------
 front page
--------------------------------------------------- */

.section-block {
	margin-top: -60px;
	padding-top: 60px;
}

/* mv
--------------------------------------------------- */

.mv {
    z-index: 6;
    position: relative;
    width: 100%;
    height: 100vh;
}
.mv__inner {
    z-index: 3;
    position: relative;
    width: 100%;
    height: 100%;
}
.mv__contents {
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translate(-50%, 0);
}
.mv__logo {
	z-index: 10;
	position: relative;
	width: 180px;
	height: 180px;
	padding: 25px;
	border: 1px solid var(--color-wh);
	background: rgba(11,11,11,0.8);
}
.mv__catch {
	z-index: 11;
	position: relative;
    padding-top: 100px;
}
.mv__catch h2 {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.mv__catch h2 span {
	font-size: 1.9rem;
	line-height: 1.6;
	letter-spacing: .05em;
	white-space: nowrap;
}
.mv__text {
	z-index: 11;
	position: relative;
    padding-top: 45px;
}
.mv__text p {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	font-size: 0.9rem;
}
.mv__text p::before,
.mv__text p::after {
	content: "";
	position: absolute;
	left: 50%;
	width: 70%;
	height: 1px;
	background: var(--color-wh);
	transform: translate(-50%, 0);
	opacity: 0.7;
}
.mv__text p::before {
	top: 0;
}
.mv__text p::after {
	bottom: 0;
}
.mv__text p span {
	color: var(--color-wh);
    padding: 12px 15px;
	line-height: 1;
	border-radius: 15px;
	letter-spacing: .05em;
	text-indent: -.05em;
}
.mv__bg {
	z-index: 2;
	position: absolute;
	top: 0;
	left: 0;
    width: 100%;
    height: 100%;
}
.mv__bg::before {
    z-index: 4;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bk);
    opacity: 0.1;
}
.mv__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (min-width: 768px) {
	.mv__contents {
		bottom: 60px;
	}
    .mv__logo {
		width: 230px;
		height: 230px;
		padding: 30px;
	}
    .mv__catch {
        padding-top: 220px;
    }
	.mv__catch h2 span {
		font-size: 2.3rem;
	}
	.mv__text p {
        font-size: 1rem;
	}
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
	.mv__inner {
		display: flex;
		justify-content: flex-start;
		align-items: flex-end;
		max-width: 100%;
		margin: auto;
	}
	.mv__contents {
		flex-direction: column;
		gap: 40px;
		position: absolute;
		bottom: auto;
        top: 50%;
		left: 50%;
		align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
		transform: translate(-50%, -50%);
	}
    .mv__logo {
        position: absolute;
        bottom: 80px;
        right: 40px;
		width: 140px;
		height: 140px;
        padding: 30px;
        order: 2;
	}
	/*.mv__logo {
        position: absolute;
        bottom: -50px;
        right: 10px;
		width: 150px;
		height: 150px;
        margin-left: auto;
		padding: 30px;
	}*/
    .mv__catch {
        display: flex;
        flex-direction: column;
        padding-top: 0;
    }
    .mv__catch h2 {
        flex-direction: row;
    }
    .mv__catch h2 span {
		font-size: 2.2rem;
        line-height: 1.3;
        letter-spacing: .3em;
	}
    .mv__catch h2 span:nth-of-type(2)::before {
        content: "、";
    }
    .mv__text {
        order: 3;
        position: absolute;
        bottom: 35px;
        right: 40px;
		width: 140px;
        text-align: center;
    }
	.mv__text p::before,
	.mv__text p::after {
		display: none;
	}
    .mv__text p {
        width: 100%;
        padding: 0;
        white-space: nowrap;
        text-align: center;
        justify-content: center;
		font-size: 0.9rem;
    }
	/*.mv__text {
        position: absolute;
        bottom: -110px;
        right: 0;
        padding: 0;
	}*/
}
@media screen and (min-width: 1280px) {
	.mv__inner {
	}
    .mv__catch h2 span {
		font-size: 2.5rem;
    }
    .mv__logo {
        bottom: 80px;
        right: 40px;
		width: 170px;
		height: 170px;
    }
	.mv__text {
		bottom: 35px;
        right: 40px;
		width: 170px;
	}
}

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

.about {
    z-index: 5;
    position: relative;
    width: 100%;
    background: var(--color-bk);
}
.about::before {
    z-index: 2;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 60%;
    background: var(--color-bgy);
}
.about::after {
    z-index: 2;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--color-wh);
}
.about__inner {
    z-index: 3;
    position: relative;
    width: 100%;
    padding: 50px 20px 70px;
}
.about__inner h2 {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 40px;
    font-family: var(--font-en-02);
    font-weight: 400;
    font-size: 2.3rem;
	line-height: 1;
    letter-spacing: .2em;
    color: var(--color-gy);
}
.about__inner h2 span {
    margin-left: 1em;
    padding-bottom: 5px;
    font-family: var(--font-jp);
    font-size: 0.9rem;
    letter-spacing: .05em;
}
.about__inner .text h3 {
    margin-bottom: 15px;
    font-size: 1.45rem;
    line-height: 1.8;
    letter-spacing: .2em;
    text-align: center;
}
.about__inner .text h3 span {
    display: block;
}
.about__inner .text p {
    padding-top: 25px;
    font-size: 0.95rem;
    line-height: 1.8;
}
.about__inner .btn {
    margin-top: 70px;
}
.about__inner .btn a {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 90%;
    margin: auto;
    padding: 15px 20px;
    font-family: var(--font-en-02);
    font-size: 1.1em;
    font-weight: 700;
    letter-spacing: .1em;
    background: var(--color-dgy);
    color: var(--color-wh);
    border-radius: 60px;
}
.about__inner .btn a img {
    width: 40px;
}
@media screen and (min-width: 414px) {
    .about__inner {
        padding: 50px 30px 70px;
    }
    .about__inner .btn a {
        width: 80%;
    }
}
@media screen and (min-width: 768px) {
	.about::after {
		height: 130px;
	}
	.about__inner {
        padding: 70px 60px 90px;
    }
	.about__inner .btn {
		margin-top: 100px;
	}
	.about__inner .btn a {
        width: 380px;
    }
}
@media screen and (min-width: 1024px) {
    .about::after {
		height: 180px;
	}
    .about__inner {
        max-width: 800px;
        margin: auto;
        padding: 170px 60px 150px;
    }
    .about__inner h2 {
        font-size: 2.5rem;
    }
    .about__inner h2 span {
        font-size: 1rem;
    }
    .about__inner .text h3 {
        margin-bottom: 20px;
        font-size: 1.8rem;
    }
    .about__inner .text p {
        padding-top: 25px;
        font-size: 1.05rem;
    }
    .about__inner .btn {
		margin-top: 140px;
	}
}


/*
@media screen and (min-width: 768px) {
	.about__inner {
		max-width: 680px;
		margin: auto;
		padding: 70px 40px;
	}
	.about__inner .btn {
		margin-top: 80px;
	}
	.about::after {
		height: 110px;
	}
}
@media screen and (min-width: 1024px) {
	.about__inner {
		max-width: 980px;
	}
	.about__inner .btn {
		margin-top: 80px;
	}
	.about::after {
		height: 110px;
	}
}*/

/* artists
--------------------------------------------------- */

.artists {
    z-index: 4;
    position: relative;
    background: var(--color-wh);
    color: var(--color-bk);
}
.artists__inner {
    padding: 20px 0 70px;
}
.artists__inner h2 {
	padding-bottom: 50px;
	font-size: 1.2rem;
	letter-spacing: .1em;
	text-indent: -.1em;
	text-align: center;
}
.card__image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 100%;
}
.card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card__text {
	padding-top: 8px;
    font-size: 0.7rem;
	text-align: center;
}
@media screen and (min-width: 768px) {
	.artists__inner {
		padding: 20px 0 100px;
	}
}
@media screen and (min-width: 1024px) {
	.artists__inner {
		padding: 0 0 180px;
	}
    .artists__inner h2 {
        padding-bottom: 90px;
        font-size: 1.5rem;
    }
    .card__text {
        padding-top: 8px;
        font-size: 1rem;
    }
}

/* function
--------------------------------------------------- */

.function {
    z-index: 3;
    position: relative;
    width: 100%;
    background: var(--color-wgy);
    color: var(--color-bk);
}
.function__inner {
    z-index: 2;
    position: relative;
    width: 100%;
    padding: 70px 20px;
}
.function__inner h2 {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
	justify-content: center;
    margin-bottom: 40px;
    font-family: var(--font-en-02);
    font-weight: 400;
    font-size: 2.3rem;
	line-height: 1;
    letter-spacing: .1em;
}
.function__inner h2 span {
    margin-left: 1em;
    padding-bottom: 5px;
    font-family: var(--font-jp);
    font-size: 0.9rem;
    letter-spacing: .05em;
    color: var(--color-gy);
}
.function__block {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.function__item {
    width: 100%;
}
.function__item .image {
    z-index: 1;
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 3;
    background: var(--color-bgy);
    border-radius: 8px;
    overflow: hidden;
}
.function__item .image .icon {
    z-index: 4;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40%;
    aspect-ratio: 1 / 1;
    transform: translate(-50%, -50%);
}
.function__item .image .bg {
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.function__item .image .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.function__item .text {
    padding-top: 25px;
}
.function__item .text h3 {
	padding-bottom: 10px;
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: .05em;
	text-indent: -.05em;
	text-align: center;
}
.function__item .text h3 span {
    display: block;
}
.function__item .text p {
    padding-top: 15px;
    font-size: 0.9rem;
    line-height: 1.7;
}
@media screen and (min-width: 414px) {
    .function__inner {
        padding: 50px 30px;
    }
}
@media screen and (min-width: 768px) {
	.function__inner {
		padding: 100px 60px;
	}
}
@media screen and (min-width: 1024px) {
	.function__inner {
		max-width: 980px;
		margin: auto;
	}
	.function__inner h2 {
		font-size: 2.8rem;
	}
	.function__inner h2 span {
		font-size: 1rem;
	}
	.function__block {
		gap: 70px;
		padding-top: 50px;
	}
	.function__item {
		display: flex;
		flex-wrap: nowrap;
		align-items: center;
		gap: 40px;
	}
	.function__block .function__item:nth-child(2n+2) {
		flex-direction: row-reverse;
	}
	.function__item .image {
		width: calc(55% - 60px);
		aspect-ratio: 5 / 4;
	}
	.function__item .text {
		width: 45%;
		padding: 0;
	}
	.function__item .text h3 {
		text-align: left;
		font-size: 1.6rem;
	}
	.function__item .text p {
		padding-top: 25px;
		font-size: 1rem;
	}
}
@media screen and (min-width: 1280px) {
	.function__inner {
		max-width: 1400px;
		padding: 150px 100px;
	}
	.function__block {
		gap: 100px;
		padding-top: 50px;
	}
	.function__item {
		display: flex;
		flex-wrap: nowrap;
		align-items: center;
		gap: 90px;
	}
	.function__item .image {
		width: calc(55% - 90px);
		aspect-ratio: 5 / 3;
	}
}


.join {
    z-index: 2;
    position: relative;
    width: 100%;
}
.join__inner {
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 50px 20px;
}
.join__inner h2 {
    position: relative;
	width: 100%;
    white-space: nowrap;
    text-align: center;
    font-family: var(--font-en-02);
    font-weight: 400;
    font-size: 1.2rem;
    letter-spacing: .2em;
    color: var(--color-gy);
}
.join__inner h2 span {
    display: block;
}
.join__inner p {
    padding-top: 50px;
    margin: auto;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: .2em;
}
.join__inner p span {
    display: block;
}
.join__inner .btn {
    width: 100%;
    margin-top: 50px;
}
.join__inner .btn a {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 90%;
    margin: auto;
    padding: 15px 20px;
    font-family: var(--font-jp);
    font-size: 1.1em;
    font-weight: 700;
    letter-spacing: .1em;
    background: var(--color-dgy);
    color: var(--color-wh);
    border-radius: 60px;
}
.join__inner .btn a img {
    width: 40px;
}
@media screen and (min-width: 414px) {
    .join__inner {
        padding: 50px 30px;
    }
    .join__inner .btn a {
        width: 80%;
    }
}
@media screen and (min-width: 768px) {
    .join__inner {
        padding: 100px 60px 50px;
    }
    .join__inner .btn a {
        width: 380px;
    }
}
@media screen and (min-width: 1024px) {
    .join__inner p {
        font-size: 1.8rem;
    }
}

/*
@media screen and (min-width: 768px) {
	.join__inner {
		max-width: 680px;
		margin: auto;
		padding: 70px 40px;
	}
}*/

.faq {
    z-index: 1;
    position: relative;
    width: 100%;
}
.faq__inner {
    z-index: 2;
    position: relative;
    width: 100%;
    padding: 50px 20px;
}
.faq__inner h2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 25px;
    font-family: var(--font-en-02);
    font-weight: 400;
    font-size: 2.5rem;
    letter-spacing: .2em;
	color: var(--color-gy);
}
.faq__inner .text p {
    font-size: 0.95rem;
    line-height: 1.8;
}
.faq__block {
    display: flex;
    flex-wrap: wrap;
}
.faq__item {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    border-bottom: 1px solid var(--color-gy);
}
.faq__item dl {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
	padding: 20px 10px;
}
.faq__item dl dt {
	display: flex;
	align-items: center;
    width: 100%;
	font-size: 0.9rem;
	line-height: 1.3;
}
.faq__item dl dt::before {
	content: "Q.";
	padding-right: 1rem;
	font-family: var(--font-en-01);
}
.faq__item dl dt::after {
	content: "＋";
	margin-left: auto;
	padding-left: 1rem;
	font-family: var(--font-en-01);
}
.faq__item dl dt.open::after {
	content: "－";
}
.faq__item dl dd {
    display: none;
    width: 100%;
	font-size: 0.9rem;
	color: var(--color-lgy);
	line-height: 1.3;
}
.faq__item dl dd span.faq__answer {
	display: flex;
	width: 100%;
	padding-top: 15px;
}
.faq__item dl dd span.faq__answer::before {
	content: "A.";
	padding-right: 1rem;
	font-family: var(--font-en-01);
}
@media screen and (min-width: 414px) {
    .faq__inner {
        padding: 50px 30px;
    }
}
@media screen and (min-width: 768px) {
	.faq__inner {
		padding: 70px 100px;
	}
	.faq__inner h2 {
		margin-bottom: 40px;
		font-size: 2.8rem;
	}
}
@media screen and (min-width: 1024px) {
    .faq__inner {
        max-width: 800px;
        margin: auto;
		padding: 70px 100px;
	}
	.faq__inner h2 {
		font-size: 3.2rem;
	}
    .faq__item dl {
        padding: 30px 15px;
    }
    .faq__item dl dt {
        font-size: 1.1rem;
    }
    .faq__item dl dd {
        font-size: 1.1rem;
    }
}

/* --------------------------------------------------
 policy and terms page
--------------------------------------------------- */

.policy,
.terms {
    z-index: 1;
    position: relative;
    width: 100%;
}
.policy__inner,
.terms__inner {
    z-index: 2;
    position: relative;
    width: 100%;
    padding: 120px 20px 70px;
}
.policy__inner .section-head,
.terms__inner .section-head {
    width: 100%;
    padding-bottom: 40px;
}
.policy__inner .section-head h2,
.terms__inner .section-head h2 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}
.policy__inner .section-head h2 span.jp,
.terms__inner .section-head h2 span.jp {
    font-size: 1.3rem;
    line-height: 1.3;
    color: var(--color-lgy);
}
.policy__inner .section-head h2 span.en,
.terms__inner .section-head h2 span.en {
    font-family: var(--font-en);
    font-size: 0.95rem;
    line-height: 1;
    letter-spacing: .1em;
    text-indent: .1em;
    color: var(--color-gy);
}

.terms__main,
.terms__loop,
.policy__loop {
    font-size: 0.9rem;
    line-height: 1.4;
}
.terms__main {
    padding-bottom: 40px;
}
.terms__loop,
.policy__loop {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.terms__item,
.policy__item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.terms__head,
.policy__head {
    font-size: 1.05rem;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-dgy);
}
.terms__desc,
.policy__desc {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.terms__list ul,
.policy__list ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.terms__list ul li span.num,
.policy__list ul li span.num {
    margin-right: 0.5em;
}
@media screen and (min-width: 768px) {
    .policy__inner,
    .terms__inner {
        max-width: 1000px;
        margin: auto;
        padding: 180px 60px 120px;
    }
    .policy__inner .section-head,
    .terms__inner .section-head {
        padding-bottom: 90px;
    }
    .policy__inner .section-head h2,
    .terms__inner .section-head h2 {
        gap: 10px;
    }
    .policy__inner .section-head h2 span.jp,
    .terms__inner .section-head h2 span.jp {
        font-size: 1.5rem;
    }
    .policy__inner .section-head h2 span.en,
    .terms__inner .section-head h2 span.en {
        font-size: 1rem;
        letter-spacing: .1em;
        text-indent: .1em;
    }
    .terms__main,
    .terms__loop,
    .policy__loop {
        font-size: 1rem;
        line-height: 1.6;
    }
    .terms__main {
        padding-bottom: 50px;
    }
    .terms__loop,
    .policy__loop {
        gap: 50px;
    }
    .terms__item,
    .policy__item {
        gap: 20px;
    }
    .terms__head,
    .policy__head {
        font-size: 1.05rem;
        padding-bottom: 10px;
    }
    .terms__desc,
    .policy__desc {
        gap: 20px;
    }
    .terms__list ul,
    .policy__list ul {
        gap: 15px;
    }
    .terms__list ul li span.num,
    .policy__list ul li span.num {
        margin-right: 0.5em;
    }
}




.registraltion {
    z-index: 1;
    position: relative;
    width: 100%;
}
.registraltion__inner {
    z-index: 2;
    position: relative;
    width: 100%;
    padding: 120px 0 70px;
}
.registraltion__inner .section-head {
    width: 100%;
    padding-bottom: 40px;
}
.registraltion__inner .section-head h2 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}
.registraltion__inner .section-head h2 span.jp {
    font-size: 1.3rem;
    line-height: 1.3;
    color: var(--color-lgy);
}
.registraltion__inner .section-head h2 span.en {
    font-family: var(--font-en);
    font-size: 0.95rem;
    line-height: 1;
    letter-spacing: .1em;
    text-indent: .1em;
    color: var(--color-gy);
}
@media screen and (min-width: 768px) {
    .registraltion__inner {
        max-width: 900px;
        margin: auto;
        padding: 180px 60px 120px;
    }
    .registraltion__inner .section-head {
        padding-bottom: 50px;
    }
    .registraltion__inner .section-head h2 {
        gap: 10px;
    }
    .registraltion__inner .section-head h2 span.jp {
        font-size: 1.5rem;
    }
    .registraltion__inner .section-head h2 span.en {
        font-size: 1rem;
        letter-spacing: .1em;
        text-indent: .1em;
    }
}

.form-wrap {
    position: relative;
    width: 100%;
}
.form-text {
    width: 100%;
    padding: 20px 30px 20px;
}
.form-desc {
    width: 100%;
}
.form-title {
    margin: 25px auto 10px;
    padding: 12px 30px;
    text-align: center;
    background: var(--color-dgy);
}
.form-item {
    padding: 20px 30px;
    border-bottom: 1px solid var(--color-dgy);
}
.form-item.noborder {
    border-bottom: 0;
}
.form-head {
    display: flex;
    align-items: center;
    width: 100%;
    padding-bottom: 10px;
}
.form-head span {
    margin-right: 10px;
    font-family: var(--font-jp);
    font-size: .8rem;
    line-height: 1;
    padding: 4px 8px;
}
.form-head span.req {
    background: var(--color-rd);
    color: var(--color-wh);
}
.form-head span.any {
    background: var(--color-bl);
    color: var(--color-wh);
}
.form-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}
.form-item input[type="text"],
.form-item input[type="tel"],
.form-item input[type="email"],
.form-item select,
.form-item textarea {
    display: block;
    width: 100%;
    padding: 0.5em 0.7em;
    background: var(--color-wgy);
    color: var(--color-bk);
    font-size: 16px;
    line-height: 1;
}
.form-foot span.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}
.form-wrap .wpcf7-form-control.wpcf7-checkbox {
    display: flex;
    flex-wrap: wrap;
}
.form-wrap span.wpcf7-list-item {
    display: inline;
    position: relative;
    width: 100%;
    align-items: center;
    margin: 0 0 0 3px;
}
.form-wrap .wpcf7-list-item-label {
    padding: 0;
    color: var(--color-wh);
    cursor: pointer;
}
.form-wrap input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}
.form-wrap .wpcf7-list-item-label:before {
    content: '';
    display: inline-block;
    position: relative;
    top: -2px;
    width: 16px;
    height: 16px;
    margin-right: 10px;
    border: 1px solid var(--color-wh);
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
}
.form-wrap input[type="checkbox"]:checked + .wpcf7-list-item-label {
    color: var(--color-ye);
}
.form-wrap input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 5px;
    width: 7px;
    height: 14px;
    transform: rotate(40deg);
    border-bottom: 2px solid var(--color-ye);
    border-right: 2px solid var(--color-ye);
}
.form-wrap .form-foot input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
    top: 5px;
}
.form-attention {
    padding: 30px;
}
.form-attention p a {
    display: inline;
    text-decoration: underline;
    color: var(--color-wgy);
}
.form-attention .checkbox {
    padding: 20px 0 0;
    text-align: center;
}
.form-wrap .submit {
    padding: 0 30px 30px;
}
.form-wrap input[type="submit"] {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--color-dgy);
    color: var(--color-bk);
    text-align: center;
    letter-spacing: 0.8em;
    text-indent: 0.8em;
    border: none;
    transition: opacity 0.2s ease-in-out;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.form-wrap input[type="submit"]:hover {
    background: var(--color-ye);
    color: var(--color-bk);
}
.form .sent .form-wrap {
    display: none;
}
.form .form-thanks {
    display: none;
    width: 100%;
    padding: 60px 30px 30px;
}
.form .sent .form-thanks {
    display: block;
}
@media screen and (min-width: 768px) {
    .form .inner {
        padding: 40px 0 80px;
    }
    .form .inner h2 {
        padding: 0 60px 15px;
    }
    .form-text {
        padding: 30px 0 15px;
        text-align: center;
    }
    .form-item {
        display: flex;
        flex-wrap: wrap;
        padding: 20px 0;
    }
    .form-head {
        width: 260px;
        padding-bottom: 0;
    }
    .form-foot {
        width: calc(100% - 260px);
    }
    .form-attention {
        padding: 40px 60px;
    }
    .form-attention .checkbox {
        padding: 30px 0 0;
    }
    .form-wrap .submit {
        padding: 0 90px 30px;
    }
    .form .form-thanks {
        padding: 60px 60px 30px;
    }
}
@media screen and (min-width: 1024px) {
    .form-attention {
        padding: 70px 60px 40px;
        text-align: center;
    }
    .form-wrap .submit {
        max-width: 700px;
        margin: auto;
    }
}
@media screen and (min-width: 1280px) {
    .form-head {
        width: 280px;
    }
    .form-foot {
        width: calc(100% - 280px);
    }
}
@media screen and (min-width: 1600px) {
    .form-item input[type="text"],
    .form-item input[type="tel"],
    .form-item input[type="email"],
    .form-item select,
    .form-item textarea {
        background: var(--color-wh);
    }
}