@charset "utf-8";

/* ----------------------------------------------
    reset
---------------------------------------------- */
*, ::before, ::after {
	box-sizing: border-box;
	border-style: solid;
	border-width: 0;
}
html {
	line-height: 1.15;
	/*-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;*/
}
body {
	margin: 0;
}
main {
	display: block;
}
p, table, blockquote, address, pre, iframe, form, figure, dl {
	margin: 0;
} 
h1, h2, h3, h4, h5, h6 {
	font-size: inherit;
	font-weight: inherit;
	margin: 0;
}
ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
}
dd {
	margin-left: 0;
}
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
	border-top-width: 1px;
	margin: 0;
	clear: both;
	color: inherit;
}
pre {
	font-family: monospace, monospace;
	font-size: inherit;
}
address {
	font-style: inherit;
}
a {
	background-color: transparent;
	text-decoration: none;
	color: inherit;
}
abbr[title] {
	text-decoration: underline dotted;
}
b, strong {
	font-weight: bolder;
}
code, kbd, samp {
	font-family: monospace, monospace;
	font-size: inherit;
}
small {
	font-size: 80%;
}
sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}
svg, img, embed, object, iframe, video {
	vertical-align: bottom;
}
button, input, optgroup, select, textarea {
	-webkit-appearance: none;
	appearance: none;
	vertical-align: middle;
	color: inherit;
	font: inherit;
	background: transparent;
	padding: 0;
	margin: 0;
	border-radius: 0;
	text-align: inherit;
	text-transform: inherit;
}
button, [type="button"], [type="reset"], [type="submit"] {
	cursor: pointer;
}
button:disabled, [type="button"]:disabled, [type="reset"]:disabled, [type="submit"]:disabled {
	cursor: default;
}
:-moz-focusring {
	outline: auto;
}
select:disabled {
	opacity: inherit;
}
option {
	padding: 0;
}
fieldset {
	margin: 0;
	padding: 0;
	min-width: 0;
}
legend {
	padding: 0;
}
progress {
	vertical-align: baseline;
}
textarea {
	overflow: auto;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}
[type="search"] {
	outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}
[type="number"] {
	/*-moz-appearance: textfield;*/
}
label[for] {
	cursor: pointer;
}
details {
	display: block;
}
summary {
	display: list-item;
}
[contenteditable]:focus {
	outline: auto;
}
table {
	border-color: inherit;
	border-collapse: collapse;
}
caption {
	text-align: left;
}
td, th {
	vertical-align: top;
	padding: 0;
}
th {
	text-align: left;
	font-weight: normal;
}

/* ----------------------------------------------
    common
---------------------------------------------- */
:root {
	--color-GrayL: #f1f1f1;
	--color-GrayN: #d2d2d3;
	--color-GrayB: #202025;
	--color-Black: #0c0c0d;
	--color-Gold:  #aa976d;
	--gradient-Gold: radial-gradient(at top center, #c5b891, #8e754c);
	--gradient-Silver: radial-gradient(at top center, #cfcfd2, #b5b5b9);
	--font-Sans:    "Noto Sans JP", sans-serif;
	--font-Serif:   "Noto Serif JP", serif;
	--font-English: "Work Sans", sans-serif;
}
html {
	font-size: 62.5%;
    scroll-behavior: smooth;
    touch-action: manipulation;
}
body {
	color: var(--color-GrayB);
	font: 400 1.4rem / 2 var(--font-Sans);
	font-feature-settings: "path";
	letter-spacing: .05em;
}
svg, img, embed, object, iframe {
	max-width: 100%;
	height: auto;
}
i {
    display: grid;
    place-items: center;
}
#wrap {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}
@media screen and (min-width: 769px) {
	body:not(#home) #wrap {
		padding: 90px 0 0;
	}
}
@media screen and (max-width: 768px) {
	#wrap {
		padding: 60px 0 0;
	}
}
/* ----------------------------------------------
    header
---------------------------------------------- */
#header header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: calc(infinity);
}
body:not(#home) #header header{
	background: var(--color-Black);
}
#header header .inner {
    width: 100%;
    padding: 0 0 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#header header .inner .logo {
    filter: invert(100%) brightness(200%);
    z-index: calc(infinity);
}
#header header .inner .gnav nav {
    display: flex;
    align-items: end;
}
#header header .inner .gnav nav .menu {
    display: flex;
}
#header header .inner .gnav nav .menu li a {
    height: 90px;
    padding: 0 1.5em;
    color: #fff;
    line-height: 1;
    display: grid;
    place-items: center;
}
#header header .inner .gnav nav .menu li a .en {
    font-weight: 300;
}
#header header .inner .gnav nav .menu li a .jp {
    display: none;
}
#header header .inner .gnav nav .login {
    position: relative;
}
#header header .inner .gnav nav .login summary {
    height: 90px;
    aspect-ratio: 1;
    list-style: none;
    display: grid;
    place-items: center;
    cursor: pointer;
}
#header header .inner .gnav nav .login[open] summary {
	background: #fff;
}
#header header .inner .gnav nav .login[open] summary i {
    filter: invert(100%);
}
#header header .inner .gnav nav .login ul {
	background: #fff;
    position: absolute;
    top: 100%;
    right: 0;
}
#header header .inner .gnav nav .login ul li a {
    width: 200px;
    height: 70px;
    padding: 0 2em;
    display: grid;
    align-items: center;
}
#header header .inner .hamburger {
    display: none;
}
body:not(#dashboard) #header .logo.dashboard,
body:not(#dashboard) #header li.dashboard {
    display: none;
}
#dashboard #header .logo:not(.dashboard),
#dashboard #header li:not(.dashboard) {
    display: none;
}
@media (hover: hover) {
	#header header .inner .gnav nav .menu li a,
	#header header .inner .gnav nav .login summary {
		transition: background ease .3s;
	}
	#header header .inner .gnav nav .menu li a:hover,
	#header header .inner .gnav nav .login summary:hover {
		background: rgb(255 255 255 / 10%);
	    opacity: 1;
	}
	#header header .inner .gnav nav .login[open] summary:hover {
		background: #fff;
	}
}
@media screen and (max-width: 768px) {
	body.noscroll{
		overflow: hidden;
	}
	#header header {
		background: var(--color-Black);
	}
	#header header .inner {
	    height: 60px;
	    padding: 0 5%;
	}
	#header header .inner .logo a img {
	    width: auto;
	    height: 35px;
	}
	#header header .inner .hamburger {
	    width: 30px;
	    height: 60px;
	    border: none;
	    cursor: pointer;
	    display: flex;
        gap: 8px;
	    flex-shrink: 0;
        align-items: center;
	    flex-direction: column;
        justify-content: center;
	    position: relative;
	    z-index: calc(infinity);
	}
	#header header .inner .hamburger .bar {
	    width: 30px;
	    height: 1px;
	    background: #fff;
	    display: block;
	    transition: transform 0.3s ease, opacity 0.3s ease;
	}
	#header header .inner .hamburger.open .bar:nth-child(1) {
	    transform: rotate(45deg) translate(7px, 7px);
	}
	#header header .inner .hamburger.open .bar:nth-child(2) {
	    opacity: 0;
	}
	#header header .inner .hamburger.open .bar:nth-child(3) {
	    transform: rotate(-45deg) translate(6px, -6px);
	}
	#header header .inner .gnav {
	    width: 100vw;
	    height: 100vh;
	    padding: 4em 0;
	    color: #fff;
	    background: rgb(65 64 66 / 80%);
	    gap: 3em;
	    flex-direction: column;
	    justify-content: center;
	    backdrop-filter: blur(2em);
	    -webkit-backdrop-filter: blur(2em);
	    overflow-y: scroll;
	    position: fixed;
	    top: 0;
	    bottom: 0;
	    left: 0;
	    z-index: 9998;
	    transform: translateX(-100vw);
	    transition: transform 0.4s cubic-bezier(0.5, 1, 0.89, 1);
	}
	#header header .inner .gnav.open {
		z-index: 9998;
		transform: translateX(0);
	}
	#header header .inner .gnav::-webkit-scrollbar,
	#header header .inner .gnav::-webkit-scrollbar-track,
	#header header .inner .gnav::-webkit-scrollbar-thumb {
	    display: none;
	}
    #header header .inner .gnav nav {
        flex-wrap: wrap;
        align-content: flex-start;
        flex-direction: initial;
        justify-content: center;
    }
	#header header .inner .gnav nav .menu {
	    width: 90%;
	    margin: 0 auto;
	    flex-wrap: wrap;
	    justify-content: space-between;
	}
	#header header .inner .gnav nav .menu li {
	    width: 100%;
	    border-bottom: 1px solid;
	}
	#header header .inner .gnav nav .menu li a {
	    width: 100%;
	    height: 60px;
	}
}

/* ----------------------------------------------
    breadcrumb
---------------------------------------------- */
#breadcrumb {
	border-bottom: solid 1px #d2d2d3;
}
#breadcrumb nav ol {
	padding: .5em 0;
	font-family: var(--font-English);
	display: flex;
    gap: 0 1em;
    flex-wrap: wrap;
	align-items: baseline;
}
#breadcrumb nav ol li {
	display: flex;
    gap: 1em;
}
#breadcrumb nav ol li:not(:last-child)::after {
	content: ">";
	display: block;
}
@media screen and (max-width: 768px) {
}

/* ----------------------------------------------
    pager
------------------------------------------------- */
#pager ul {
    margin: 2.5em 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
#pager ul li a {
    padding: .2em 1em;
    border: 1px solid var(--color-GrayNN);
    display: flex;
    align-items: center;
    justify-content: center;
}
#pager ul li.now a {
	background: var(--color-GrayNL);
	font-weight: bold;
    pointer-events: none;
}
#pager ul li.next a img {
    scale: -1 1;
}
@media screen and (max-width: 768px) {
}

/* ----------------------------------------------
    
---------------------------------------------- */
.mw960 {
	width: 90%;
	max-width: 960px;
	margin: 0 auto;
}
.mw1160 {
	width: 90%;
	max-width: 1160px;
	margin: 0 auto;
}
.mw1440 {
	width: 90%;
	max-width: 1440px;
	margin: 0 auto;
}
.pagelink {
	display: block;
	margin: -90px 0 0;
	padding: 90px 0 0;
}
.m0a {
	margin: 0 auto;
}
.mb1 {
	margin-bottom: 1em;
}
.mb2 {
	margin-bottom: 2em;
}
.mb3 {
	margin-bottom: 3em;
}
.mb4 {
    margin-bottom: 4em;
}
.pt9 {
	padding-top: 9em;
}
.pb9 {
	padding-bottom: 9em;
}
.ta_c {
	text-align: center;
}
.c_white {
	color: #fff;
}
.en {
    font-weight: 200;
    font-family: var(--font-English);
}
@media screen and (max-width: 768px) {
	.pagelink {
		margin: -60px 0 0;
		padding: 60px 0 0;
	}
	.pt9 {
	    padding-top: 4em;
	}
	.pb9 {
		padding-bottom: 4em;
	}
}
/* ------------------------------------------- */
.title01 {
    text-align: center;
    display: grid;
    gap: 1.5em;
}
.title01 .en {
    font-size: 4.8rem;
    line-height: 1;
}
.title01 .jp {
    font-size: 2.4rem;
    font-family: var(--font-Serif);
    line-height: 1.6;
}
.title02 {
    margin: 0 0 1.5em;
    font-size: 2.4rem;
    font-family: var(--font-Serif);
    text-align: center;
}
.title03 {
    margin: 0 0 .5em;
    padding: 0 0 .5em;
    font-size: 2.2rem;
    border-bottom: 1px solid;
}
@media screen and (max-width: 768px) {
	.title01 .en {
	    font-size: 3.6rem;
	}
	.title01 .jp {
	    font-size: 2.0rem;
	}
	.title02 {
	    font-size: 2.0rem;
	}
	.title03 {
	    font-size: 1.8rem;
	}
}
/* ------------------------------------------- */
.btn01 a {
    width: 100%;
    max-width: 260px;
    height: 70px;
    color: var(--color-GrayB);
    font-size: 1.6rem;
    font-weight: 700;
    display: grid;
    place-items: center;
}
.btn01.gold a {
	background: var(--gradient-Gold);
}
.btn01.silver a {
	background: var(--gradient-Silver);
}
.btn01.white a {
	background: #fff;
}
.btn01.border a {
    border: 1px solid;
}
@media screen and (max-width: 768px) {
	.btn01 a {
	    height: 60px;
	}
}
/* ------------------------------------------- */
.desk-hidden {
	display: none;
}
@media screen and (max-width: 768px) {
	.desk-hidden {
		display: block;
	}
	.mobile-hidden {
		display: none;
	}
}
/* ------------------------------------------- */
@media (hover: hover) {
	a {
		transition: opacity ease .3s;
	}
	a:hover {
		opacity: .6;
	}
}
/* ------------------------------------------- */
/*.fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity ease-out .6s,
			    transform ease-out .6s;
}
.fade.active {
    opacity: 1;
    transform: translateY(0);
}*/
.full-height {
  height: calc(var(--vh, 1vh) * 100);
}
.anime.fade {
    transition: all 1.2s cubic-bezier(.4, 0, .6, 1);
    -webkit-transition: all 1.2s cubic-bezier(.4, 0, .6, 1);
    opacity: 0;
    transform: translate(0%, 0px);
    -ms-filter: blur(6px);
    filter: blur(6px);
}
.anime.fade.active {
    opacity: 1;
    transform: translate(0%, 0px);
    -ms-filter: blur(0px);
    filter: blur(0px);
}
.anime.fadeup {
    transition: all 1s cubic-bezier(.40, 0, .60, 1);
    -webkit-transition: all 1s cubic-bezier(.40, 0, .60, 1);
    opacity: 0;
    transform: translate(0, 30px);
}
.anime.fadeup.active {
    opacity: 1;
    transform: translate(0, 0);
}
.anime.fill {
	transition: all 1s cubic-bezier(.4, 0, .5, 1);
	-webkit-transition: all 1s cubic-bezier(.4, 0, .5, 1);
	filter: brightness(300%);
}
.anime.fill.active {
    opacity: 1;
    transform: scale(1);
    filter: brightness(100%);
}
.anime.slide {
	position: relative;
}
.anime.slide::before,
.anime.slide::after,
.anime.slide span::before,
.anime.slide span::after {
	content: "";
	width: 100%;
	height: 100%;
	background: #000;
	position: absolute;
	z-index: 10;
	transition: all 1.5s cubic-bezier(.4, 0, .5, 1);
	-webkit-transition: all 1.5s cubic-bezier(.4, 0, .5, 1);
}
.anime.slide::before {
	top: 0;
	left: 0;
}
.anime.slide::after {
	top: 0;
	right: 0;
}
.anime.slide span::before {
	top: 0;
	left: 0;
}
.anime.slide span::after {
	left: 0;
	bottom: 0;
}
.anime.slide.active::before,
.anime.slide.active::after {
	width: 0;
}
.anime.slide.active span::before,
.anime.slide.active span::after {
	height: 0;
}












/* ----------------------------------------------
    footer
---------------------------------------------- */
#footer #cta {
    color: #fff;
    background: var(--color-GrayB);
}
#footer #cta .inner .box {
    display: flex;
}
#footer #cta .inner .box .item {
    width: 50%;
    padding: 1em 0;
    text-align: center;
}
#footer #cta .inner .box .item:nth-child(1) {
    border-right: 1px solid rgb(255 255 255 / 20%);
}
#footer #cta .inner .box .item p {
    margin: 0 0 2.5em;
}
#footer #cta .inner .box .item p a {
    opacity: .5;
}
#footer #cta .inner .box .item .btn01 a {
    margin: 0 auto;
}
body:not(#dashboard) #footer .logo.dashboard,
body:not(#dashboard) #footer li.dashboard {
    display: none;
}
#dashboard #footer .logo:not(.dashboard),
#dashboard #footer li:not(.dashboard) {
    display: none;
}
@media (hover: hover) {
	#footer #cta .inner .box .item p a:hover {
		text-decoration: underline;
		opacity: .5;
	}
}
@media screen and (max-width: 768px) {
	#footer #cta .inner .box {
	    flex-direction: column;
	}
	#footer #cta .inner .box .item {
	    width: 100%;
	}
	#footer #cta .inner .box .item:nth-child(1) {
	    border-right: none;
	}
	#footer #cta .inner .box .item p {
	    margin: 0 0 1.5em;
	}
}
/* ------------------------------------------- */
#footer footer {
    color: #fff;
    background: var(--color-Black);
}
#footer footer .inner {
    display: flex;
    gap: 2em;
    justify-content: space-between;
}
#footer footer .inner .logo {
	flex-shrink: 0;
    filter: invert(100%) brightness(200%);
}
#footer footer .inner .fnav ul {
	margin: 0 0 .3em;
    font-weight: 300;
    font-family: var(--font-English);
    display: flex;
    gap: 0 2em;
    flex-wrap: wrap;
}
#footer footer .inner .fnav .copy {
    font-size: 1.2rem;
    font-weight: 100;
    text-align: right;
}
@media screen and (max-width: 768px) {
	#footer footer .inner {
	    flex-direction: column;
	}
	#footer footer .inner .logo {
	    text-align: center;
	}
	#footer footer .inner .fnav ul {
	    gap: 0em 1em;
        justify-content: center;
	}
	#footer footer .inner .fnav .copy {
	    margin: 2em 0 0;
	    text-align: center;
	}
}

/* ----------------------------------------------
    home
---------------------------------------------- */
@media screen and (min-width: 769px) {
	#home #header header {
	    background: rgb(0 0 0 / 80%) !important;
	}
}
#home #wrap {
    padding: 0 !important;
}
#home .sec01 {
    /*position: sticky;
    top: 0;
    left: 0;
    z-index: -1;*/
}
#home .sec01 .inner {
    width: 100%;
    background: #000;
    position: relative;
}
#home .sec01 .inner .video {
    width: 100%;
    transition: opacity ease 1s 89s;
}
#home .sec01 .inner .mute-button {
    position: absolute;
    bottom: 7em;
    right: 2em;
    background: rgb(0 0 0 / 20%);
    padding: 1em;
    cursor: pointer;
    border: 2px solid #FFF;
    border-radius: 100vmax;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
}
#home .sec01 .inner .mute-button i {
    width: 2em;
    filter: invert(1);
}
@media screen and (max-width: 768px) {
	#home .sec01 {
	    padding: 60px 0 0;
	    background: #000;
	}
	#home .sec01 .inner .mute-button {
		padding: .5em;
	    bottom: 1em;
	    right: 1em;
	}
	#home .sec01 .inner .mute-button i {
	    width: 1.5em;
	}
}
/* ------------------------------------------- */
#home .sec02 {
    background: url(../img/common/back01.jpg) top center;
    text-align: center;
    overflow: hidden;
}
#home .sec02 .inner .title02 {
    margin: 0 0 1em;
}
#home .sec02 .inner .slide {
    width: 100vw;
    margin: 4em calc(50% - 50vw) 0;
    position: relative;
}
#home .sec02 .inner .slide .img img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}
@media screen and (max-width: 768px) {
	#home .sec02 .inner :not(.img).fade {
	    opacity: 1;
	    transform: translateY(0);
	}
	#home .sec02 .inner p {
	    text-align: left;
	}
	#home .sec02 .inner .slide .img img {
	    height: auto;
	}
}
/* ------------------------------------------- */
#home .sec03 {
	background: #fff;
	overflow: hidden;
}
#home .sec03 .inner .swiper.design {
    margin: 3em 0 0;
    overflow: initial;
}
#home .sec03 .inner .swiper.design .swiper-slide {
    transform: scale(.8);
    transition: .5s;
}
#home .sec03 .inner .swiper.design .swiper-slide img {
    aspect-ratio: 2 / 1.3;
    object-fit: cover;
}
#home .sec03 .inner .swiper.design .swiper-slide-active {
    transform: scale(1);
    z-index: 1;
}
#home .sec03 .inner .swiper.design .swiper-pagination {
	margin: 2em 0 0;
    height: auto;
    display: flex;
    gap: 2em;
    align-items: center;
    justify-content: center;
    position: static;
}
#home .sec03 .inner .swiper.design .swiper-pagination-bullet {
    width: 4px;
    height: auto;
    aspect-ratio: 1;
    margin: 0 !important;
    background: var(--color-Black);
    border-radius: 100%;
    opacity: 1;
    position: relative;
}
#home .sec03 .inner .swiper.design .swiper-pagination-bullet-active::after {
	content: "";
	width: 16px;
	aspect-ratio: 1;
	border: 1px solid var(--color-Black);
	border-radius: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#home .sec03 .inner ul {
    display: grid;
    gap: 1em;
    grid-template-columns: repeat(4, 1fr);
}
#home .sec03 .inner ul li .img {
    overflow: hidden;
}
#home .sec03 .inner ul li .img img {
    width: 100%;
    aspect-ratio: 276 / 390;
    object-fit: cover;
    transition: scale ease .6s;
}
#home .sec03 .inner ul li p {
    font-size: 1.6rem;
    font-family: var(--font-Serif);
    padding: .3em 1em 0;
    display: flex;
    gap: .5em;
    align-items: center;
}
#home .sec03 .inner ul li p::before {
    content: "－";
}
#home .sec03 .modal {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
    z-index: 9999999999;
}
#home .sec03 .modal .modal-content {
    max-width: 90%;
    position: relative;
    z-index: 1;
}
#home .sec03 .modal .overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
#home .sec03 .modal .close {
    position: absolute;
    top: .5em;
    right: .5em;
    font-size: 2.8rem;
    line-height: 1;
    color: #fff;
    cursor: pointer;
}
#home .sec03 .modal.fade-in {
    display: flex;
    opacity: 1;
}
#home .sec03 .modal.fade-out {
    opacity: 0;
}
#home .sec03 .modal .modal-content img {
    width: 90vw;
    max-width: 1160px;
    height: 100%;
    max-height: 90vh;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    border: 1px solid #fff;
}
@media (hover: hover) {
	#home .sec03 .inner ul li .open:hover .img img {
	    scale: 1.1;
	}
}
@media screen and (max-width: 768px) {
	#home .sec03 .inner .title02 {
	    font-size: 1.6rem;
	}
	#home .sec03 .inner ul {
	    grid-template-columns: repeat(2, 1fr);
	}
	#home .sec03 .inner ul li p {
	    font-size: 1.4rem;
	}
	#home .sec03 .modal .modal-content img {
	    max-width: 100%;
	}
}
/* ------------------------------------------- */
#home .sec04 {
    background: #fff;
}
#home .sec04 .inner .box {
    display: flex;
}
#home .sec04 .inner .box:nth-of-type(even) {
    flex-direction: row-reverse;
}
#home .sec04 .inner .box .text {
    width: 540px;
    height: 100vh;
    padding: 0 5%;
    color: #fff;
    background: var(--color-GrayB);
    display: grid;
    gap: 1em;
    flex-shrink: 0;
    align-content: center;
    position: sticky;
    top: 0;
}
#home .sec04 .inner .box .text div p:not(:last-of-type) {
    margin: 0 0 1em;
}
#home .sec04 .inner .box .img {
    width: 100%;
}
#home .sec04 .inner .box .img .item {
    width: 100%;
    height: 100vh;
    /*position: sticky;
    top: 0;*/
}
#home .sec04 .inner .box .img .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 768px) {
	#home .sec04 .inner .box,
	#home .sec04 .inner .box:nth-of-type(even) {
	    flex-direction: column;
	}
	#home .sec04 .inner .box .text {
	    width: 100%;
	    height: auto;
	    padding: 3em 5%;
	    position: static;
	}
	#home .sec04 .inner .box .img .item {
	    height: 300px;
	    /*position: sticky;
	    top: 60px;*/
	}
}
/* ------------------------------------------- */
/*#home .sec05 .inner .box {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
#home .sec05 .inner .box .item {
    width: 49%;
    padding: 4em 2em;
    background: url(../img/common/back01.jpg) top center;
    text-align: center;
    display: flex;
    gap: 2em;
    flex-direction: column;
    justify-content: space-between;
}
#home .sec05 .inner .box .item img {
    mix-blend-mode: multiply;
}*/
#home .sec05 .inner .video video {
    width: 100%;
}
#home .sec05 .inner .video {
	width: 100%;
	aspect-ratio: 16 / 9;
}
#home .sec05 .inner .video iframe {
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 768px) {
	#home .sec05 .inner .box {
	    gap: 1em;
	    flex-direction: column;
	}
	#home .sec05 .inner .box .item {
	    width: 100%;
	    padding: 3em 5%;
	}
}
/* ------------------------------------------- */
#home .sec06 {
    width: 100%;
    height: 600px;
    background: url(../img/home/back01.jpg) center / cover no-repeat;
    display: grid;
    place-items: center;
    position: relative;
}
#home .sec06::after {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--color-GrayB);
    opacity: .5;
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
#home .sec06 .inner {
    position: relative;
    z-index: 1;
}
#home .sec06 .inner .logo {
    filter: invert(100%) brightness(200%);
}
@media screen and (max-width: 768px) {
	#home .sec06 {
	    height: 400px;
	}
}
/* ------------------------------------------- */
#home .sec07 {
    color: #fff;
    background: var(--color-GrayB);
    overflow: hidden;
}
#home .sec07 .inner {
	width: fit-content;
	display: flex;
}
#home .sec07 .inner .box01 {
	width: 100vw;
	height: 100vh;
	flex-shrink: 0;
}
#home .sec07 .inner .box01 .text {
    width: 100%;
    padding: 0 5%;
    position: absolute;
    left: 0;
    bottom: 5em;
    z-index: 1;
}
#home .sec07 .inner .box01 .text p {
    color: #fff;
    font-size: 2.4rem;
    font-family: var(--font-Serif);
}
#home .sec07 .inner .box01 .img {
	position: relative;
}
#home .sec07 .inner .box01 .img::after {
    content: "";
    width: 100%;
    height: 50%;
    background: linear-gradient(0deg,rgba(32, 32, 37, 1) 0%, rgba(32, 32, 37, 0) 100%);
    opacity: .5;
    mix-blend-mode: multiply;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
}
#home .sec07 .inner .box01 .img img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
#home .sec07 .inner .box02 {
	width: 100vw;
	height: 100vh;
	padding: 90px 0 0;
    display: grid;
    gap: 4em;
	flex-shrink: 0;
}
#home .sec07 .inner .box02 .item {
    display: flex;
    align-items: center;
}
#home .sec07 .inner .box02 .item:nth-child(even) {
    flex-direction: row-reverse;
}
#home .sec07 .inner .box02 .item .text {
    width: 45%;
    padding: 0 5%;
    display: grid;
    align-content: center;
}
#home .sec07 .inner .box02 .item .text .title01 {
    text-align: left;
}
#home .sec07 .inner .box02 .item .text .title01 .en {
    font-size: 2.2rem;
    font-weight: 600;
}
#home .sec07 .inner .box02 .item .text p {
    font-size: 2.0rem;
    font-family: var(--font-Serif);
}
#home .sec07 .inner .box02 .item .img {
    width: 55%;
    display: grid;
    gap: 1em;
    grid-template-columns: 1fr 1fr;
}
#home .sec07 .inner .box02 .item .img img {
    width: 100%;
    height: calc((100vh - 90px) / 2 - 2em);
    object-fit: cover;
}
#home .sec07 .inner .box03 {
	width: 100vw;
	height: 100vh;
	padding: 90px 10em;
    display: grid;
    gap: 4em;
	flex-shrink: 0;
}
#home .sec07 .inner .box03 .item {
    display: flex;
    align-items: center;
}
#home .sec07 .inner .box03 .item:nth-child(even) {
    flex-direction: row-reverse;
}
#home .sec07 .inner .box03 .item .text {
    width: 45%;
    padding: 0 5%;
    display: grid;
    align-content: center;
}
#home .sec07 .inner .box03 .item .text p {
    font-size: 2.0rem;
    font-family: var(--font-Serif);
}
#home .sec07 .inner .box03 .item .img {
    width: 55%;
    display: grid;
    gap: 1em;
    grid-template-columns: 1fr 1fr;
}
#home .sec07 .inner .box03 .item .img img {
    width: 100%;
    height: calc((100vh - 180px) / 2 - 2em);
    object-fit: cover;
}
#home .sec07 .inner .box03 .item .img.all img {
    grid-column: 1 / -1;
}
#home .sec07 .inner .box04 {
	width: 100vw;
	height: 100vh;
	padding: 90px 0 0;
    display: flex;
	flex-shrink: 0;
}
#home .sec07 .inner .box04 .back {
    width: 100%;
    display: flex;
    flex-direction: column;
}
#home .sec07 .inner .box04 .back img {
    height: 100%;
    object-fit: cover;
}
#home .sec07 .inner .box04 .item {
    width: 80%;
    max-width: 1060px;
    padding: 0 5%;
    flex-shrink: 0;
    display: grid;
    gap: 3em;
    position: relative;
    align-content: center;
}
#home .sec07 .inner .box04 .item .text {
    position: relative;
    z-index: 1;
}
#home .sec07 .inner .box04 .item .text .title01 .en {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: left;
}
#home .sec07 .inner .box04 .item .img.img01 {
    width: 80%;
    margin: 0 0 0 auto;
    position: relative;
    z-index: 1;
}
#home .sec07 .inner .box04 .item .img.img01 img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: 0 25%;
}
#home .sec07 .inner .box04 .item .img.img02 {
    width: 60%;
    opacity: .1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}
#home .sec07 .inner .box05 {
	width: 100vw;
	height: 100vh;
	padding: 90px 0 0;
    display: grid;
    gap: 4em;
	flex-shrink: 0;
}
#home .sec07 .inner .box05 .item {
    display: flex;
    align-items: center;
}
#home .sec07 .inner .box05 .item:nth-child(even) {
    flex-direction: row-reverse;
}
#home .sec07 .inner .box05 .item .text {
    width: 60%;
    padding: 0 5%;
    display: grid;
    align-content: center;
}
#home .sec07 .inner .box05 .item .text .box {
    display: flex;
    gap: 2em;
    align-items: center;
}
#home .sec07 .inner .box05 .item .text .logo {
    display: flex;
    gap: 1em 2em;
    flex-wrap: wrap;
    align-items: center;
}
#home .sec07 .inner .box05 .item .text h3 {
    display: grid;
}
#home .sec07 .inner .box05 .item .text h3 .position {
    font-size: 1.2rem;
}
#home .sec07 .inner .box05 .item .text h3 .name {
    font-size: 2.0rem;
    letter-spacing: .1em;
}
#home .sec07 .inner .box05 .item .text p {
    font-family: var(--font-Serif);
}
#home .sec07 .inner .box05 .item .img {
    width: 40%;
}
#home .sec07 .inner .box05 .item .img img {
    width: 100%;
    height: calc((100vh - 90px) / 2 - 2em);
    object-fit: cover;
}
@media screen and (max-width: 768px) {
	#home .sec07 .inner .box01 .text {
	    bottom: 3em;
	}
	#home .sec07 .inner .box01 .text p {
	    font-size: 2.0rem;
	    text-align: right;
	}
	#home .sec07 .inner .box02 {
		padding: 60px 0 0;
	    gap: 2em;
	    align-content: center;
	}
	#home .sec07 .inner .box02 .item {
	    gap: 2em;
	    flex-direction: column-reverse;
	}
	#home .sec07 .inner .box02 .item:nth-child(even) {
	    flex-direction: column-reverse;
	}
	#home .sec07 .inner .box02 .item .text {
	    width: 100%;
	    place-items: initial;
	}
	#home .sec07 .inner .box02 .item .text .title01 {
	    margin: 0 0 1em;
	}
	#home .sec07 .inner .box02 .item:nth-child(even) .text .title01 {
	    text-align: right;
	}
	#home .sec07 .inner .box02 .item .text .title01 .en {
	    font-size: 1.4rem;
	}
	#home .sec07 .inner .box02 .item .text p {
	    font-size: 1.4rem;
	}
	#home .sec07 .inner .box02 .item:nth-child(even) .text p {
	    text-align: right;
	}
	#home .sec07 .inner .box02 .item .img {
	    width: 100%;
	    margin: 0 auto 0 0;
	    gap: 1px;
	}
	#home .sec07 .inner .box02 .item:nth-child(even) .img {
	    margin: 0 0 0 auto;
	}
	#home .sec07 .inner .box02 .item .img img {
	    height: 100px;
	}
	#home .sec07 .inner .box03 {
		padding: 60px 2em 0;
	    gap: 2em;
	    align-content: center;
	}
	#home .sec07 .inner .box03 .item,
	#home .sec07 .inner .box03 .item:nth-child(even) {
	    gap: 2em;
	    flex-direction: column;
	}
	#home .sec07 .inner .box03 .item .text {
	    width: 100%;
	    padding: 0;
	    place-items: initial;
	}
	#home .sec07 .inner .box03 .item .text p {
	    font-size: 1.4rem;
	}
	#home .sec07 .inner .box03 .item .img {
	    width: 100%;
	    margin: 0 auto 0 0;
	    gap: 1px;
	}
	#home .sec07 .inner .box03 .item:nth-child(even) .img {
	    margin: 0 0 0 auto;
	}
	#home .sec07 .inner .box03 .item .img img {
	    height: 100px;
	}
	#home .sec07 .inner .box04 {
		padding: 60px 0 0;
	}
	#home .sec07 .inner .box04 .item {
		width: 100%;
	    gap: 2em;
	}
	#home .sec07 .inner .box04 .item .img.img01 img {
	    height: 200px;
	}
	#home .sec07 .inner .box05 {
		padding: 60px 0 0;
	    gap: 2em;
	    align-content: center;
	}
	#home .sec07 .inner .box05 .item,
	#home .sec07 .inner .box05 .item:nth-child(even) {
	    gap: 1em;
	    flex-direction: column;
	}
	#home .sec07 .inner .box05 .item .text {
	    width: 100%;
	    place-items: initial;
	}
	#home .sec07 .inner .box05 .item .text .logo {
	    gap: 1em;
	}
	#home .sec07 .inner .box05 .item .text .logo img:has(+ img) {
	    width: 20%;
	}
	#home .sec07 .inner .box05 .item .text .logo img + img {
	    width: calc(100% - 2em - 20%);
	}
	#home .sec07 .inner .box05 .item .text p {
        display: none;
	}
	#home .sec07 .inner .box05 .item .img {
	    width: 100%;
	}
	#home .sec07 .inner .box05 .item .img img {
	    height: 140px;
	}
	#home .sec07 .inner .box05 .item:nth-child(2) .img img {
	    object-position: 0 15%;
	}
}

/* ----------------------------------------------
    gallery
---------------------------------------------- */
#gallery .sec01 .inner .box01 {
    display: flex;
    gap: 2em 4em;
}
#gallery .sec01 .inner .box01 .img p {
    padding: .2em 1em;
    font-family: var(--font-English);
}
#gallery .sec01 .inner .box01 .text .floor {
    width: fit-content;
    margin: 0 0 2em;
    padding: 0 1.5em;
    color: #fff;
    background: var(--color-Gold);
    font-family: var(--font-Serif);
}
#gallery .sec01 .inner .box01 .text .detail {
	padding: 1em 0;
	border-top: solid 1px var(--color-GrayN);
	border-bottom: solid 1px var(--color-GrayN);
}
#gallery .sec01 .inner .box01 .text .detail div {
	font-family: var(--font-Serif);
    display: flex;
    align-items: baseline;
}
#gallery .sec01 .inner .box01 .text .detail div dd span {
    font-size: 2.0rem;
}
#gallery .sec01 .inner .box02 {
    display: grid;
    gap: 0 1px;
    grid-template-columns: repeat(3, 1fr);
}
#gallery .sec01 .inner .box02 .img img {
    width: 100%;
    aspect-ratio: 476 / 288;
    object-fit: cover;
}
#gallery .sec01 .inner .box02 .img p {
    padding: .2em 1em;
    font-family: var(--font-English);
}
@media screen and (min-width: 769px) {
	#gallery .sec01 .inner .box01.reverse {
	    flex-direction: row-reverse;
	}
}
@media screen and (max-width: 768px) {
	#gallery .sec01 .inner .box01 {
	    flex-direction: column;
	}
	#gallery .sec01 .inner .box01 .text {
	    width: 90%;
	    margin: 0 auto;
	}
	#gallery .sec01 .inner .box02 {
	    width: 90%;
	    margin: 0 auto;
	    grid-template-columns: repeat(1, 1fr);
	}
}

/* ----------------------------------------------
    membership
---------------------------------------------- */
#membership .sec01 {
    position: relative;
}
#membership .sec01 .inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
#membership .sec01 .inner .text {
    max-width: 360px;
    position: relative;
    z-index: 1;
}
#membership .sec01 .inner .text .title01,
#membership .sec01 .inner .text .title02 {
    color: var(--color-Gold);
    text-align: left;
}
#membership .sec01 .inner .text p {
    color: #fff;
    text-align: justify;
}
#membership .sec01 .back {
    display: flex;
}
#membership .sec01 .back::before {
    content: "";
    width: 30%;
    max-width: 420px;
    background: var(--color-Black);
    flex-shrink: 0;
}
#membership .sec01 .back img {
    width: 100%;
    height: 630px;
    object-fit: cover;
}
@media screen and (max-width: 768px) {
	#membership .sec01 {
	    background: url(../img/membership/back01.jpg) center / cover no-repeat;
	}
	#membership .sec01::after {
	    content: "";
	    width: 100%;
	    height: 100%;
	    background: rgb(0 0 0 / 40%);
	    mix-blend-mode: multiply;
	    position: absolute;
	    top: 0;
	    left: 0;
	}
	#membership .sec01 .inner {
	    position: relative;
	    top: 0;
        left: 0;
	    z-index: 1;
	    transform: translate(0);
	}
	#membership .sec01 .back {
	    display: none;
	}
}
/* ------------------------------------------- */
#membership .sec02 .inner ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
#membership .sec02 .inner ul li {
    padding: 3em 4em;
    border-right: 1px solid var(--color-GrayN);
    border-bottom: 1px solid var(--color-GrayN);
}
#membership .sec02 .inner ul li:nth-of-type(2n) {
    border-right: none;
}
#membership .sec02 .inner ul li:nth-last-child(-n+2) {
    border-bottom: none;
}
#membership .sec02 .inner ul li h4 {
    margin: 0 0 1em;
    font-size: 2.0rem;
    font-family: var(--font-Serif);
    line-height: 1;
    display: flex;
    gap: .5em;
    align-items: center;
}
#membership .sec02 .inner ul li h4 span {
    font-size: 3.2rem;
    font-weight: 200
}
@media screen and (max-width: 768px) {
	#membership .sec02 .inner ul {
	    grid-template-columns: repeat(1, 1fr);
	}
	#membership .sec02 .inner ul li {
	    padding: 2em 0;
	    border-right: none !important;
	    border-bottom: 1px solid var(--color-GrayN) !important;
	}
	#membership .sec02 .inner ul li:last-child {
	    padding-bottom: 0;
	    border-bottom: none !important;
	}
	#membership .sec02 .inner ul li h4 {
        font-size: 1.8rem;
    }
	#membership .sec02 .inner ul li h4 span {
	    font-size: 2.8rem;
	}
}
/* ------------------------------------------- */
#membership .sec03 {
    background: var(--color-GrayL);
}
#membership .sec03 .inner ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}
#membership .sec03 .inner ul li {
    padding: 6em 0;
    color: #fff;
    display: flex;
    gap: 3em;
    align-items: center;
    flex-direction: column;
    position: relative;
}
#membership .sec03 .inner ul li:nth-child(1){
	background: #1f1f24;
}
#membership .sec03 .inner ul li:nth-child(2){
	background: #343439;
}
#membership .sec03 .inner ul li:nth-child(3){
	background: #48484d;
}
#membership .sec03 .inner ul li:nth-child(4){
	background: #5e5e60;
}
#membership .sec03 .inner ul li:nth-child(5){
	background: #737375;
}
#membership .sec03 .inner ul li:not(:last-child)::after {
    content: "";
    width: 30px;
    height: 8px;
    right: -12px;
    border-bottom: solid 1px #fff;
    border-right: solid 1px #fff;
    position: absolute;
    top: 50%;
    z-index: 1;
    transform: skew(45deg);
}
#membership .sec03 .inner ul li span {
    font-size: 2.8rem;
    line-height: 1;
}
#membership .sec03 .inner ul li p {
	font-size: 2.0rem;
    font-family: var(--font-Serif);
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
	#membership .sec03 .inner ul li {
	    padding: 2em 0;
	    gap: 1em;
	}
	#membership .sec03 .inner ul li:not(:last-child)::after {
        width: 20px;
        height: 6px;
        right: -10px;
    }
	#membership .sec03 .inner ul li span {
	    font-size: 2.0rem;
	}
	#membership .sec03 .inner ul li p {
	    font-size: 1.6rem;
	}
}
/* ------------------------------------------- */
#membership .sec04 {
    background: url(../img/membership/back02.jpg) center / cover no-repeat;
    position: relative;
}
#membership .sec04::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 40%);
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
}
#membership .sec04 .inner {
    position: relative;
    z-index: 1;
}
@media screen and (max-width: 768px) {
}

/* ----------------------------------------------
    faq
---------------------------------------------- */
#faq .sec01 .inner details {
    border: 1px solid #fff;
    transition: border 0.3s;
}
#faq .sec01 .inner details[open] {
    border: 1px solid var(--color-Gold);
}
#faq .sec01 .inner details summary {
    padding: 1em 4em 1em 2em;
    background: var(--color-GrayL);
    list-style: none;
    display: flex;
    gap: .5em;
    align-items: baseline;
    cursor: pointer;
    position: relative;
    transition: background .3s ease;
}
#faq .sec01 .inner details[open] summary {
    background: none;
}
#faq .sec01 .inner details summary::before,
#faq .sec01 .inner details summary::after {
    content: "";
    width: 12px;
    height: 2px;
    margin: auto;
    background: var(--color-Gold);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 2em;
}
#faq .sec01 .inner details summary::after {
    transform: rotate(-90deg);
    transition: transform 0.3s;
}
#faq .sec01 .inner details[open] summary::after {
    transform: rotate(0);
}
#faq .sec01 .inner details summary i {
    color: var(--color-Gold);
    font-size: 2.4rem;
    font-family: var(--font-English);
    line-height: 1;
}
#faq .sec01 .inner details summary span {
    font-size: 2.0rem;
    font-family: var(--font-Serif);
}
#faq .sec01 .inner details .answer {
    margin: 0 auto;
    padding: 1em 4em 2em;
    position: relative;
}
#faq .sec01 .inner details .answer::before {
    content: "";
    width: calc(100% - 4em);
    height: 1px;
    background: var(--color-Gold);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
	#faq .sec01 .inner details summary {
	    padding: 1em 3em 1em 1em;
	}
	#faq .sec01 .inner details summary::before,
	#faq .sec01 .inner details summary::after {
	    right: 1em;
	}
	#faq .sec01 .inner details summary span {
	    font-size: 1.6rem;
	    line-height: 1.6;
	}
	#faq .sec01 .inner details .answer {
	    padding: 1em 2em 2em;
	}
	#faq .sec01 .inner details .answer::before {
	    width: calc(100% - 2em);
	}
}

/* ----------------------------------------------
    terms
---------------------------------------------- */
#terms .sec01 .inner dl {
    border-bottom: 1px solid var(--color-GrayN);
}
#terms .sec01 .inner dl div {
    padding: 2.5em 0;
    border-top: 1px solid var(--color-GrayN);
    display: flex;
}
#terms .sec01 .inner dl div dt {
    width: 200px;
    font-size: 2.0rem;
    font-family: var(--font-Serif);
    line-height: 1.6;
    flex-shrink: 0;
}
#terms .sec01 .inner dl div dt h3 span {
    font-size: 1.4rem;
    text-indent: -1rem;
    display: block;
}
#terms .sec01 .inner dl div dd ol {
    padding: 0 0 0 1.4em;
    list-style: auto;
}
@media screen and (max-width: 768px) {
	#terms .sec01 .inner dl div {
	    padding: 2em 0;
	    gap: .5em;
	    flex-direction: column;
	}
	#terms .sec01 .inner dl div dt {
	    width: 100%;
	    font-size: 1.6rem;
	    font-weight: 600;
	}
	#terms .sec01 .inner dl div dt h3 span {
	    font-size: 1.2rem;
	    text-indent: 0;
	    display: inline;
	}
}

/* ----------------------------------------------
    login
---------------------------------------------- */
#login .sec01 .inner .box01 {
    display: flex;
    gap: 2em;
    align-items: center;
    justify-content: space-between;
}
#login .sec01 .inner .box01 .text {
    width: 100%;
    max-width: 360px;
    flex-shrink: 0;
}
#login .sec01 .inner .box01 .text .title01 {
    text-align: left;
}
#login .sec01 .inner .box01 .text .regist {
    display: flex;
    gap: .5em;
}
#login .sec01 .inner .box01 .text .regist p {
    display: flex;
    gap: .5em;
    letter-spacing: 0;
}
#login .sec01 .inner .box01 .text .regist p::after {
    content: "－";
}
#login .sec01 .inner .box01 .logo {
    width: 100%;
    max-width: 660px;
    padding: 3em;
    aspect-ratio: 1;
    background: var(--color-GrayL);
    display: grid;
    place-items: center;
}
#login #footer #cta {
    display: none;
}
@media screen and (max-width: 768px) {
	#login .sec01 .inner .box01 {
	    flex-direction: column;
	}
	#login .sec01 .inner .box01 .text .regist {
	    gap: 0;
	    text-align: center;
	    flex-direction: column;
	    justify-content: center;
	}
	#login .sec01 .inner .box01 .text .regist p {
	    justify-content: center;
	}
	#login .sec01 .inner .box01 .text .regist p::after {
		display: none;
	}
}

/* ----------------------------------------------
    form
---------------------------------------------- */
form .flow ul {
	width: 100%;
	max-width: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
form .flow ul::after {
    content: "";
    width: 100%;
    height: 1px;
    background: var(--color-GrayN);
    position: absolute;
    top: 20px;
    left: 0;
}
form .flow li {
    text-align: center;
    font-family: var(--font-Serif);
    position: relative;
    z-index: 1;
}
form .flow li span {
	width: 40px;
    aspect-ratio: 1;
    background: #fff;
    border: solid 1px var(--color-GrayN);
    font-size: 2.0rem;
	line-height: 1;
    text-align: center;
    display: grid;
	place-content: center;
}
form .flow li.active span {
    color: #fff;
    background: var(--color-Gold);
}
form .flow li.active p {
    color: var(--color-Gold);
}
@media screen and (max-width: 768px) {
	form .flow ul {
	    max-width: 200px;
	}
	form .flow ul::after {
	    top: 15px;
	}
	form .flow li span {
		width: 30px;
	    font-size: 1.6rem;
	}
}
/* ------------------------------------------- */
form .box01 {
    padding: 4em 0;
    border: 1px solid;
}
form .box01 dl {
    border-bottom: 1px solid var(--color-GrayN);
    gap: 0;
}
form .box01 dl > div {
    border-top: 1px solid var(--color-GrayN);
    display: flex;
    padding: 2em;
}
form .box01 dl > div dt {
    width: 100%;
    max-width: 360px;
    gap: .5em;
    padding: .7em 0 0;
}
form .box01 dl > div:has(.check, .radio) dt {
    padding: 0;
}
@media screen and (max-width: 768px) {
	form .box01 {
	    padding: 3em 0 4em;
	}
	form .box01 .title01 .en {
        font-size: 3.0rem;
    }
	form .box01 .title01 .jp {
        font-size: 1.6rem;
    }
	form .box01 dl > div {
        padding: 1em 1em 1.5em;
        gap: .5em;
        flex-direction: column;
    }
}
/* ------------------------------------------- */
form dl {
    display: grid;
    gap: 1em;
}
form dl div dt {
    width: 200px;
    font-size: 1.6rem;
    font-family: var(--font-Serif);
    display: flex;
    align-items: baseline;
}
form dl div dt .status {
    width: 50px;
    height: 25px;
    font-size: 1.2rem;
    font-family: var(--font-Sans);
    display: flex;
    align-items: center;
    justify-content: center;
}
form dl div dt .status.required {
    color: #fff;
    background: var(--color-Gold);
    border: 1px solid var(--color-Gold);
}
form dl div dt .status.any {
    border: 1px solid;
}
form dl div dd {
    width: 100%;
}
form input,
form select,
form textarea {
    width: 100%;
    padding: .8em 1em;
    background: var(--color-GrayL);
    border: 1px solid var(--color-GrayN);
    border-radius: .2em;
    cursor: pointer;
}
form input:focus-visible,
form select:focus-visible,
form textarea:focus-visible {
    outline: none;
    border: 1px solid #333;
}
form .small {
    max-width: 100px;
}
form .middle {
    max-width: 420px;
}
form .age {
    display: flex;
    gap: .5em;
    align-items: center;
}
form .address {
    display: grid;
    gap: 1.5em;
}
form .address .zip {
    display: flex;
    gap: .5em;
    align-items: flex-end;
}
form .address .small {
    max-width: 140px;
}
form .check,
form .radio {
    display: flex;
    gap: 1.5em 1em;
    flex-wrap: wrap;
    align-items: center;
}
form .check.column01,
form .radio.column01 {
	display: grid;
    grid-template-columns: repeat(1, 1fr);
}
form .check.column02,
form .radio.column02 {
	display: grid;
    grid-template-columns: repeat(2, 1fr);
}
form .check.column03,
form .radio.column03 {
	display: grid;
    grid-template-columns: repeat(3, 1fr);
}
form .check.column04,
form .radio.column04 {
	display: grid;
    grid-template-columns: repeat(4, 1fr);
}
form .check li input[type="checkbox"],
form .radio li input[type="radio"] {
	display: none;
}
form .check li label,
form .radio li label {
	display: flex;
    align-items: center;
	cursor: pointer;
}
form .check li label span,
form .radio li label span {
    width: 30px;
    aspect-ratio: 1;
    margin-right: .5em;
    background: var(--color-GrayL);
    border: 1px solid var(--color-GrayN);
    border-radius: .2em;
    flex-shrink: 0;
    position: relative;
    transition: border 0.2s linear;
    -webkit-transition: border 0.2s linear;
	transition: background 0.2s linear;
	-webkit-transition: background 0.2s linear;
}
form .radio li label span {
    border-radius: 100%;
}
form .check li label span::before {
    content: "";
	width: 9px;
    aspect-ratio: 9 / 13;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    position: absolute;
	top: 50%;
    left: 30%;
    z-index: 1;
    transform: rotate(45deg) translate(-50%, -50%);
    -ms-transform: rotate(45deg) translate(-50%, -50%);
    -webkit-transform: rotate(45deg) translate(-50%, -50%);
    transition: opacity 0.2s linear;
    -webkit-transition: opacity 0.2s linear;
    opacity: 0;
}
form .radio li label span::before {
	content: "";
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transition: opacity 0.2s linear;
    -webkit-transition: opacity 0.2s linear;
    opacity: 0;
}
form .check li input:checked + label span,
form .radio li input:checked + label span {
	background: #333;
    border: 1px solid #333;
}
form .check li input:checked + label span::before,
form .radio li input:checked + label span::before {
	opacity: 1.0;
}
form textarea {
    min-height: 160px;
}
form .select {
    max-width: 300px;
    position: relative;
}
form .select::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--color-GrayB);
    border-bottom: 2px solid var(--color-GrayB);
    position: absolute;
    top: 45%;
    right: 1em;
    transform: rotate(45deg) translateY(-50%);
    pointer-events: none;
}
form .privacy {
	font-size: 1.6rem;
    font-family: var(--font-Serif);
    display: flex;
    align-items: center;
    justify-content: center;
}

form .submit ul {
    display: flex;
    gap: 0 2em;
    align-items: center;
    justify-content: center;
}
form .submit ul li {
    width: 100%;
    max-width: 360px;
}
form .submit ul li input {
    width: 100%;
    height: 70px;
    background: var(--gradient-Silver);
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    display: grid;
    place-items: center;
}
form .submit ul li input.next {
    color: #fff;
    background: var(--color-Black);
}
@media screen and (max-width: 768px) {
	form dl div dt {
	    width: 200px;
	    font-size: 1.4rem;
	}
	form dl div dt .status {
	    width: 40px;
	    height: 20px;
	    font-size: 1.0rem;
	}
	form input,
	form select,
	form textarea {
	    padding: .5em 1em;
	}
	form .address {
	    gap: .8em;
	}
	form .address .zip span {
	    font-size: 1.0rem;
	    line-height: 1.6;
	    letter-spacing: 0;
	}
	form .check,
	form .radio {
	    gap: .5em;
	}
	form .check.column01,
	form .radio.column01,
	form .check.column02,
	form .radio.column02,
	form .check.column03,
	form .radio.column03,
	form .check.column04,
	form .radio.column04 {
	    grid-template-columns: repeat(1, 1fr);
	}
	form .check li label span,
	form .radio li label span {
	    width: 25px;
	}
	form .check li label span::before {
	    top: 45%;
    }
    form .privacy {
	    font-size: 1.4rem;
	}
}

/* ----------------------------------------------
    privacy
---------------------------------------------- */
#privacy .sec01 .inner ol {
    padding: 0 0 0 1.4em;
    list-style: auto;
}
@media screen and (max-width: 768px) {
}


/* ----------------------------------------------
    dashboard
---------------------------------------------- */
@media screen and (min-width: 769px) {
	#dashboard.index #wrap {
	    padding: 0 !important;
	}
	#dashboard.index #header header {
	    background: rgb(0 0 0 / 80%) !important;
	}
}
/* ------------------------------------------- */
#dashboard.index .sec01 {
    background: var(--color-GrayB);
    /*position: sticky;
    top: 0;
    left: 0;
    z-index: -1;*/
}
/*#dashboard .sec01::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 40%);
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
}
#dashboard .sec01 .inner {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;
    transform: translateY(-50%);
}*/
#dashboard.index .sec01 .inner .title01 .en {
    font-size: 6.4rem;
}
#dashboard.index .sec01 .video {
    position: relative;
}
#dashboard.index .sec01 .video video {
    width: 100%;
}
#dashboard.index .sec01 .video .mute-button {
    position: absolute;
    bottom: 7em;
    right: 3em;
    background: rgb(0 0 0 / 20%);
    padding: 1em;
    cursor: pointer;
    border: 2px solid #FFF;
    border-radius: 100vmax;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
}
#dashboard.index .sec01 .video .mute-button i {
    width: 2em;
    filter: invert(1);
}
@media screen and (max-width: 768px) {
	#dashboard.index .sec01 .inner .title01 .en {
	    font-size: 4.4rem;
    }
	#dashboard.index .sec01 .video .mute-button {
		padding: .5em;
	    bottom: 1em;
	    right: 1em;
	}
	#dashboard.index .sec01 .video .mute-button i {
	    width: 1.5em;
	}
}
/* ------------------------------------------- */
#dashboard.index .sec02 {
    background: #fff;
}
#dashboard.index .sec02 .inner .box01 {
    display: flex;
    gap: 2em 3em;
}
#dashboard.index .sec02 .inner .box01 .news {
    width: 60%;
    padding: 3em 5%;
    background: var(--color-GrayL);
}
#dashboard.index .sec02 .inner .box01 .news h3 {
	margin: 0 0 .5em;
	font-size: 2.4rem;
    font-family: var(--font-Serif);
}
#dashboard.index .sec02 .inner .box01 .news ul {
	border-top: solid 1px var(--color-GrayN);
}
#dashboard.index .sec02 .inner .box01 .news ul li {
	border-bottom: solid 1px var(--color-GrayN);
}
#dashboard.index .sec02 .inner .box01 .news ul li a {
    padding: 1.5em 0;
    display: block;
}
#dashboard.index .sec02 .inner .box01 .news ul li a .date {
	margin: 0 0 .3em;
    display: flex;
    gap: .5em;
    align-items: center;
}
#dashboard.index .sec02 .inner .box01 .news ul li a .date .cate {
    width: 80px;
    background: var(--color-Black);
    font-size: 1.2rem;
}
#dashboard.index .sec02 .inner .box01 .menu {
    width: 40%;
    display: grid;
    gap: 2em;
}
#dashboard.index .sec02 .inner .box01 .menu a {
    position: relative;
}
#dashboard.index .sec02 .inner .box01 .menu a::after {
    content: "";
    width: 100%;
    height: 40%;
    background: linear-gradient(0deg, rgb(0 0 0 / 80%) 0%, rgb(0 0 0 / 0%) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
}
#dashboard.index .sec02 .inner .box01 .menu a .img img {
    aspect-ratio: 460 / 300;
    object-fit: cover;
}
#dashboard.index .sec02 .inner .box01 .menu a h3 {
    width: 100%;
    padding: 0 5%;
    display: flex;
    gap: 0 1em;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    left: 0;
    bottom: 1em;
    z-index: 1;
}
#dashboard.index .sec02 .inner .box01 .menu a h3 .en {
    font-size: 3.2rem;
    line-height: 1;
}
#dashboard.index .sec02 .inner .box01 .menu a h3 .jp {
	font-size: 1.6rem;
	font-family: var(--font-Serif);
    text-align: right;
	line-height: 1.4;
}
@media screen and (max-width: 768px) {
	#dashboard.index .sec02 .inner .box01 {
	    flex-direction: column;
	}
	#dashboard.index .sec02 .inner .box01 .news {
	    width: 100%;
	    padding: 2em 5%;
	}
	#dashboard.index .sec02 .inner .box01 .news h3 {
	    font-size: 2.0rem;
	}
	#dashboard.index .sec02 .inner .box01 .menu {
	    width: 100%;
	    gap: 1em;
	}
	#dashboard.index .sec02 .inner .box01 .menu a h3 .en {
	    font-size: 2.4rem;
	}
	#dashboard.index .sec02 .inner .box01 .menu a h3 .jp {
	    font-size: 1.2rem;
	}
}
/* ------------------------------------------- */
#dashboard.index .sec03 {
    background: url(../img/common/back01.jpg) top center;
}
#dashboard.index .sec03 .inner ul {
    display: grid;
    gap: 1em;
    grid-template-columns: repeat(4, 1fr);
}
#dashboard.index .sec03 .inner ul li .img {
    overflow: hidden;
}
#dashboard.index .sec03 .inner ul li .img img {
    width: 100%;
    aspect-ratio: 276 / 390;
    object-fit: cover;
    transition: scale ease .6s;
}
#dashboard.index .sec03 .inner ul li p {
    font-size: 1.6rem;
    font-family: var(--font-Serif);
    padding: .3em 1em 0;
    display: flex;
    gap: .5em;
    align-items: center;
}
#dashboard.index .sec03 .inner ul li p::before {
    content: "－";
}
#dashboard.index .sec03 .modal {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
    z-index: 9999999999;
}
#dashboard.index .sec03 .modal .modal-content {
    max-width: 90%;
    position: relative;
    z-index: 1;
}
#dashboard.index .sec03 .modal .overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
#dashboard.index .sec03 .modal .close {
    position: absolute;
    top: .5em;
    right: .5em;
    font-size: 2.8rem;
    line-height: 1;
    color: #fff;
    cursor: pointer;
}
#dashboard.index .sec03 .modal.fade-in {
    display: flex;
    opacity: 1;
}
#dashboard.index .sec03 .modal.fade-out {
    opacity: 0;
}
#dashboard.index .sec03 .modal .modal-content img {
    width: 90vw;
    max-width: 1160px;
    height: 100%;
    max-height: 90vh;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    border: 1px solid #fff;
}
@media (hover: hover) {
	#dashboard.index .sec03 .inner ul li .open:hover .img img {
	    scale: 1.1;
	}
}
@media screen and (max-width: 768px) {
	#dashboard.index .sec03 .inner .title02 {
	    font-size: 1.6rem;
	}
	#dashboard.index .sec03 .inner ul {
	    grid-template-columns: repeat(2, 1fr);
	}
	#dashboard.index .sec03 .inner ul li p {
	    font-size: 1.4rem;
	}
	#dashboard.index .sec03 .modal .modal-content img {
	    max-width: 100%;
	}
}
/* ------------------------------------------- */
#dashboard.index .sec04 {
    background: #fff;
}
#dashboard.index .sec04 .inner ul {
    display: grid;
    gap: 1em 2.5em;
    grid-template-columns: repeat(2, 1fr);
}
#dashboard.index .sec04 .inner ul li a {
    display: block;
    position: relative;
}
#dashboard.index .sec04 .inner ul li a h3 {
    width: 50%;
    max-width: 220px;
    padding: 2em 0;
    background: #fff;
    text-align: center;
    line-height: 1;
    display: grid;
    gap: .5em;
    align-items: center;
    align-content: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
#dashboard.index .sec04 .inner ul li a h3.c_white {
    background: var(--color-Black);
    text-align: center;
}
#dashboard.index .sec04 .inner ul li a h3 .en {
    font-size: 3.2rem;
}
#dashboard.index .sec04 .inner ul li a h3 .jp {
    font-size: 1.8rem;
    font-family: var(--font-Serif);
}
#dashboard.index .sec04 .inner ul li a .img img {
    width: 100%;
    aspect-ratio: 460 / 300;
    object-fit: cover;
}
@media screen and (max-width: 768px) {
	#dashboard.index .sec04 .inner ul {
	    grid-template-columns: repeat(1, 1fr);
	}
	#dashboard.index .sec04 .inner ul li a h3 {
	    padding: 1.5em 0;
    }
    #dashboard.index .sec04 .inner ul li a h3 .en {
	    font-size: 2.2rem;
	}
	#dashboard.index .sec04 .inner ul li a h3 .jp {
	    font-size: 1.4rem;
	}
}
/* ------------------------------------------- */
#dashboard.index .sec05 {
    background: #fff;
}
#dashboard.index .sec05 .inner .video video {
    width: 100%;
}
@media screen and (max-width: 768px) {
	#dashboard.index .sec05 .inner .title02 {
	    font-size: 1.6rem;
	}
}
/* ------------------------------------------- */
#dashboard.index .sec06 {
	color: #fff;
    background: var(--color-GrayB);
}
#dashboard.index .sec06 .inner .box01 {
    text-align: center;
}
#dashboard.index .sec06 .inner .box02 .img img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}
#dashboard.index .sec06 .inner .box03 {
    display: grid;
    gap: 4em;
}
#dashboard.index .sec06 .inner .box03 .item {
    display: flex;
    align-items: center;
}
#dashboard.index .sec06 .inner .box03 .item:nth-child(even) {
    flex-direction: row-reverse;
}
#dashboard.index .sec06 .inner .box03 .item .text {
    width: 45%;
    padding: 0 5%;
    display: grid;
    align-content: center;
}
#dashboard.index .sec06 .inner .box03 .item .text p {
    font-size: 2.0rem;
    font-family: var(--font-Serif);
}
#dashboard.index .sec06 .inner .box03 .item .img {
    width: 55%;
}
#dashboard.index .sec06 .inner .box03 .item .img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
#dashboard.index .sec06 .inner .box04 {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
#dashboard.index .sec06 .inner .box04 .item .img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}
@media screen and (max-width: 768px) {
	#dashboard.index .sec06 .inner .box02 .img img {
	    height: 400px;
	}
	#dashboard.index .sec06 .inner .box03 {
	    gap: 2em;
	}
	#dashboard.index .sec06 .inner .box03 .item,
	#dashboard.index .sec06 .inner .box03 .item:nth-child(even) {
		gap: 2em;
	    flex-direction: column-reverse;
	}
	#dashboard.index .sec06 .inner .box03 .item .img {
	    width: 90%;
	    margin: 0 auto 0 0;
	}
	#dashboard.index .sec06 .inner .box03 .item:nth-child(even) .img {
	    margin: 0 0 0 auto;
	}
	#dashboard.index .sec06 .inner .box03 .item .img img {
	    height: 300px;
	}
	#dashboard.index .sec06 .inner .box03 .item .text {
	    width: 90%;
	    padding: 0;
	}
	#dashboard.index .sec06 .inner .box03 .item .text p {
	    font-size: 1.6rem;
	}
    #dashboard.index .sec06 .inner .box03 .item:nth-child(even) .text p {
        text-align: right;
    }
    #dashboard.index .sec06 .inner .box04 .item .img img {
	    height: 300px;
	}
}
/* ------------------------------------------- */
#dashboard.index .sec07 {
	color: #fff;
    background: var(--color-GrayB);
}
#dashboard.index .sec07 .inner .box01 {
    display: grid;
    gap: 4em;
}
#dashboard.index .sec07 .inner .box01 .img.img01 {
    width: 90%;
    max-width: 1160px;
    margin: 0 auto;
}
#dashboard.index .sec07 .inner .box01 .img.img02 {
    width: 70%;
}
#dashboard.index .sec07 .inner .box01 .img.img03 {
    width: 70%;
    margin: 0 0 0 auto;
}
#dashboard.index .sec07 .inner .box01 .img.img04 {
    width: 90%;
    max-width: 1160px;
    margin: 0 auto;
}
#dashboard.index .sec07 .inner .box01 .img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}
@media screen and (max-width: 768px) {
	#dashboard.index .sec07 .inner .title02 {
        font-size: 1.6rem;
    }
    #dashboard.index .sec07 .inner .box01 {
	    gap: 2em;
	}
    #dashboard.index .sec07 .inner .box01 .img img {
	    height: auto;
	}
}



/* ----------------------------------------------
    dashboard.gallery
---------------------------------------------- */
#dashboard.gallery .sec01 .inner .tabs ul {
	width: 90%;
	max-width: 1160px;
    margin: 0 auto;
    display: flex;
    gap: .2em;
    align-items: flex-end;
}
#dashboard.gallery .sec01 .inner .tabs ul li {
    width: 100%;
}
#dashboard.gallery .sec01 .inner .tabs ul li .tab {
    width: 100%;
    padding: .5em;
    background: var(--color-GrayN);
    color: var(--color-GrayB);
    display: grid;
    place-items: center;
}
#dashboard.gallery .sec01 .inner .tabs ul li .tab[aria-selected="true"] {
    color: #fff;
    background-color: var(--color-GrayB);
}
#dashboard.gallery .sec01 .inner .panels {
	padding-top: 4em;
    background: var(--color-GrayB);
    border-bottom: 1px solid var(--color-GrayN);
}
#dashboard.gallery .sec01 .inner .panels .panel {
	width: 90%;
	max-width: 1160px;
	margin: 0 auto;
	display: none;
}
#dashboard.gallery .sec01 .inner .panels .panel[tabindex="0"] {
	display: block;
}
#dashboard.gallery .sec01 .inner .panels .panel .box {
    display: grid;
    gap: 4em;
}
#dashboard.gallery .sec01 .inner .panels .panel .box .w80 {
    width: 80%;
}
#dashboard.gallery .sec01 .inner .panels .panel .box .w90 {
    width: 90%;
}
#dashboard.gallery .sec01 .inner .panels .panel .box .right {
    margin: 0 0 0 auto;
}
#dashboard.gallery .sec01 .inner .panels .panel .box .center {
    margin: 0 auto;
}
#dashboard.gallery .sec01 .inner .panels .panel .box .flex {
    display: flex;
    gap: 4em;
}
@media screen and (max-width: 768px) {
	#dashboard.gallery .sec01 .inner .tabs {
	    overflow-x: scroll;
	}
	#dashboard.gallery .sec01 .inner .tabs ul {
	    width: 960px;
	    padding: 0 5%;
	}
	#dashboard.gallery .sec01 .inner .tabs ul li .tab {
	    padding: .5em 0;
	    font-size: 1.2rem;
	}
	#dashboard.gallery .sec01 .inner .panels .panel .box {
	    gap: 2em;
	}
	#dashboard.gallery .sec01 .inner .panels .panel .box .w80 {
	    width: 90%;
	}
	#dashboard.gallery .sec01 .inner .panels .panel .box .flex {
	    gap: 1em;
	}
	#dashboard.gallery .sec01 .inner .panels .panel .box .flex.column3 {
	    flex-direction: column;
	}
	#dashboard.gallery .sec01 .inner .panels .panel .box .flex.column3 .img {
	    width: 70%;
	}
	#dashboard.gallery .sec01 .inner .panels .panel .box .flex.column3 .img:nth-child(even) {
	    margin: 0 0 0 auto;
	}
}

/* ----------------------------------------------
    dashboard.faq
---------------------------------------------- */
#dashboard.faq .sec01 .inner details {
    border: 1px solid #fff;
    transition: border 0.3s;
}
#dashboard.faq .sec01 .inner details[open] {
    border: 1px solid var(--color-Gold);
}
#dashboard.faq .sec01 .inner details summary {
    padding: 1em 4em 1em 2em;
    background: var(--color-GrayL);
    list-style: none;
    display: flex;
    gap: .5em;
    align-items: baseline;
    cursor: pointer;
    position: relative;
    transition: background .3s ease;
}
#dashboard.faq .sec01 .inner details[open] summary {
    background: none;
}
#dashboard.faq .sec01 .inner details summary::before,
#dashboard.faq .sec01 .inner details summary::after {
    content: "";
    width: 12px;
    height: 2px;
    margin: auto;
    background: var(--color-Gold);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 2em;
}
#dashboard.faq .sec01 .inner details summary::after {
    transform: rotate(-90deg);
    transition: transform 0.3s;
}
#dashboard.faq .sec01 .inner details[open] summary::after {
    transform: rotate(0);
}
#dashboard.faq .sec01 .inner details summary i {
    color: var(--color-Gold);
    font-size: 2.4rem;
    font-family: var(--font-English);
    line-height: 1;
}
#dashboard.faq .sec01 .inner details summary span {
    font-size: 2.0rem;
    font-family: var(--font-Serif);
}
#dashboard.faq .sec01 .inner details .answer {
    margin: 0 auto;
    padding: 1em 4em 2em;
    position: relative;
}
#dashboard.faq .sec01 .inner details .answer::before {
    content: "";
    width: calc(100% - 4em);
    height: 1px;
    background: var(--color-Gold);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
	#dashboard.faq .sec01 .inner details summary {
	    padding: 1em 3em 1em 1em;
	}
	#dashboard.faq .sec01 .inner details summary::before,
	#dashboard.faq .sec01 .inner details summary::after {
	    right: 1em;
	}
	#dashboard.faq .sec01 .inner details summary span {
	    font-size: 1.6rem;
	    line-height: 1.6;
	}
	#dashboard.faq .sec01 .inner details .answer {
	    padding: 1em 2em 2em;
	}
	#dashboard.faq .sec01 .inner details .answer::before {
	    width: calc(100% - 2em);
	}
}

#dashboard #footer #cta {
    display: none;
}

/* ----------------------------------------------
    dashboard.faq
---------------------------------------------- */
#dashboard.news .sec01 .inner .newslist {
	border-top: solid 1px var(--color-GrayN);
}
#dashboard.news .sec01 .inner .newslist li {
	border-bottom: solid 1px var(--color-GrayN);
}
#dashboard.news .sec01 .inner .newslist li a {
    padding: 1.5em 0;
    display: flex;
    gap: 0 1em;
}
#dashboard.news .sec01 .inner .date {
	margin: 0 0 .3em;
    display: flex;
    gap: .5em;
    align-items: center;
    flex-shrink: 0;
}
#dashboard.news .sec01 .inner .date .cate {
    width: 80px;
    background: var(--color-Black);
    font-size: 1.2rem;
}
#dashboard.news .sec01 .inner .newslist li a p {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}
#dashboard.news .sec01 .inner .title {
    font-size: 2.0rem;
    font-weight: 500;
}
#dashboard.news .sec01 .inner .box {
    padding: 1.5em 0;
    border-top: solid 1px var(--color-GrayN);
    border-bottom: solid 1px var(--color-GrayN);
    display: grid;
    gap: 1em;
}
@media screen and (max-width: 768px) {
	#dashboard.news .sec01 .inner .newslist li a {
	    flex-wrap: wrap;
	}
	#dashboard.news .sec01 .inner .newslist li a p {
	    width: 100%;
		-webkit-line-clamp: 2;
	}
	#dashboard.news .sec01 .inner .title {
	    font-size: 1.6rem;
	}
}

