@charset "utf-8";

/*
 * File    : layout.css
 * Author  : STUDIO-JT (JSH)
 *
 * GLOBAL
 * HEADER
 * FOOTER
 * CONTAINER
 * PAGE
 * PRIVACY
 * 404
 * HOVER
 */



/* **************************************** *
 * GLOBAL
 * **************************************** */
html { font-size: 6.25%; }
html.safari.desktop { font-size: 1px; }

body { overflow-x: hidden; font-family: var(--font-primary); font-size: 16rem; word-break: keep-all; color: var(--color-black); background: var(--color-white); }
a { color: var(--color-primary); text-decoration: none; }

/* WRAP */
.wrap { max-width: 1180rem; margin: 0 auto; position: relative; }
.wrap-narrow { max-width: 880rem; margin: 0 auto; position: relative; }
.wrap-moderate { max-width: 1480rem; margin: 0 auto; position: relative; }
.wrap-wide { max-width: 1780rem; margin: 0 auto; position: relative; }

/* BR */
br.lgbr { display: none; }
br.mdbr { display: none; }
br.smbr { display: none; }



/* **************************************** *
 * HEADER
 * **************************************** */
#header { position: fixed; top: 0; left: 0; width: 100%; z-index: 500; border-bottom-color: transparent; transition: background .3s, border .3s; }
.header__inner { position: relative; max-width: 1780rem; margin: 0 auto; }

/* STICKY */
.sticky-banner { position: relative; background: var(--color-gray-400); z-index: 1000; }
.sticky-banner__content { display: block; padding: 12rem 0; }
.sticky-banner__content p { position: relative; max-width: 1780rem; margin: 0 auto; color: var(--color-black); padding: 0 40rem; text-align: center; }
.sticky-banner__close { position: absolute; top: 50%; right: calc((100% - 1780rem) / 2); translate: 0 -50%; width: 28rem; height: 28rem; transition: rotate .3s; }
.sticky-banner__close .jt-icon { width: 28rem; height: 28rem; }
.sticky-banner__close .jt-icon path { fill: var(--color-black); }

/* LOGO */
#logo { width: 230rem; height: 36rem; position: absolute; left: 0; top: 50%; translate: 0 -50%; z-index: 2; transition: scale .3s; transform-origin: 0; }
#logo a { display: block; width: 100%; height: 100%; padding: 5rem 0; }
#logo a svg, #logo a img { display: block; width: 100%; height: 100%; }

/* MENU */
.menu-container { display: block; width: 100%; position: relative; font-size: 0; line-height: 1; text-align: center; z-index: 1; }
#menu { display: inline-block; vertical-align: middle; }
#menu a { display: block; transition: color .3s; }
#menu a span { position: relative; }

#menu ul.sub-menu { opacity: 0; visibility: hidden; transition: opacity .3s cubic-bezier(.05, .9, .32, .96); }
#menu > li:hover > ul, #menu > li.focusin > ul { opacity: 1; visibility: visible; }

/* 1DEPTH */
#menu > li { display: inline-block; vertical-align: middle; position: relative; }
#menu > li > a { position: relative; padding: 35rem 26rem; min-width: 140rem; font-size: var(--font-size-primary-07); line-height: var(--font-lineheight-primary-07); font-weight: 700; letter-spacing: var(--letter-spacing); color: var(--color-black); text-transform: capitalize; transition: padding .3s, color .3s; }
#menu > li > a > span { display: flex; align-items: center; justify-content: center; gap: 4rem; }
#menu > li.current-menu-item > a, #menu > li.current-menu-ancestor > a, #menu > li:has(.current-menu-item) > a { color: var(--color-primary); }
#menu > li.menu-item-has-children > a > span:after { content: ''; display: inline-block; width: 16rem; height: 16rem; background: no-repeat center center / cover; background-image: url(../images/icon/icon-menu-arrow.svg); transition: rotate .3s, background-image .3s; }
#menu > li.current-menu-item.menu-item-has-children > a > span:after, #menu > li.current-menu-ancestor.menu-item-has-children > a > span:after { background-image: url(../images/icon/icon-menu-arrow-active.svg); }

/* 2DEPTH */
#menu > li > ul { position: absolute; top: 100%; left: 50%; width: max-content; translate: -50%; text-align: start; background: var(--color-white); border-radius: 0 0 16rem 16rem; border: 1px solid var(--color-gray-400) }
#menu > li > ul > li > a { padding: 8rem 32rem; font-size: var(--font-size-primary-07); line-height: var(--font-lineheight-primary-07); font-weight: 700; letter-spacing: var(--letter-spacing); color: var(--color-black); }
#menu > li > ul > li:first-child > a { padding-top: 32rem; }
#menu > li > ul > li:last-child > a { padding-bottom: 32rem; }
#menu > li > ul > li.current-menu-item > a, #menu > li > ul > li.current-menu-ancestor > a { color: var(--color-primary); }

/* UTILS */
.header__utils { position: absolute; top: 50%; right: 0; translate: 0 -50%; z-index: 2; transition: scale .3s; transform-origin: 100%; }
.header__utils-list { display: flex; align-items: stretch; gap: 12rem; }
.header__utils-list > li { position: relative; }
.header__utils-list a { display: flex; height: 100%; padding: 0 10rem; align-items: center; }
.header__utils-list a > .jt-icon { width: 32rem; height: 32rem; vertical-align: top; }
.header__utils-list .header__utils-contact { padding: 10rem 32rem; background: var(--color-primary); color: var(--color-white); border-radius: 50rem; margin-left: 10rem; transition: background .3s; }

/* SEARCH */
.header__search-modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 1000; display: none; opacity: 0; visibility: hidden; }
.header__search-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, .4); }
.header__search-container { position: relative; background: var(--color-white); padding: 100rem 0; }
.header__search-container .jt-search { justify-content: center; }
.header__search-container .jt-search__bundle { width: 100%; }
.header__search-container .jt-search__field { width: 100%; }
.header__search-close { position: absolute; top: 30rem; right: 111rem; transition: rotate .3s; }
.header__search-close .jt-icon { display: block; width: 32rem; height: 32rem; }
.header__search-close .jt-icon path { fill: var(--color-gray-800); }

.header__search--open { display: block; }

/* LANGUAGE */
.header__language-modal { position: absolute; top: calc(100% + 25rem); left: 50%; width: max-content; translate: -50% 0; background: var(--color-white); border: 1px solid var(--color-gray-400); border-radius: 0 0 16rem 16rem; display: none; opacity: 0; visibility: hidden; transition: top .3s; }
.header__language--open { display: block; }

.header__language-list > li > a { display: block; color: var(--color-gray-700); padding: 8rem 20rem; transition: color .3s; }
.header__language-list > li:first-child > a { padding-top: 20rem; }
.header__language-list > li:last-child > a { padding-bottom: 20rem; }
.header__language-list > li.header__language--current > a { color: var(--color-primary); }

.header__search-form fieldset { display: flex; }

/* MOBILE */
.small-menu-controller, .small-menu-container { display: none; }

/* MINIMIZE */
.minimize#header { border-bottom: 1px solid var(--color-gray-400); background: var(--color-white); }
.minimize#header #logo { scale: .8695; }
.minimize#header #menu > li > a { padding-top: 25rem; padding-bottom: 25rem; }
.minimize#header .header__language-modal { top: calc(100% + 15rem); }



/* **************************************** *
 * FOOTER
 * **************************************** */
#footer { position: relative; background: var(--color-gray-300) }
.footer__inner { position: relative; max-width: 1780rem; margin: 0 auto; }

.footer__top { display: flex; gap: 224rem; padding-top: 60rem; }

.footer__logo svg { width: 226rem; height: 25.5rem; vertical-align: top; }

.footer__menu-container .menu { display: flex; gap: 40rem; }
.footer__menu-container .menu > li { width: 160rem; }
.footer__menu-container .menu > li > a { display: inline-block; position: relative; color: var(--color-gray-900); }
.footer__menu-container .menu > li > a:after { content: ''; display: block; width: 0; height: 2rem; position: absolute; bottom: 0; right: 0; left: auto; background: currentColor; transition: width .4s cubic-bezier(0.165, 0.840, 0.440, 1.000); }
.footer__menu-container .menu > li > a > span { font-size: var(--font-size-primary-07); line-height: var(--font-lineheight-primary-07); font-weight: 700; letter-spacing: var(--letter-spacing); }
.footer__menu-container .menu > li > ul { margin-top: 12rem; }
.footer__menu-container .menu > li > ul > li + li { margin-top: 10rem; }
.footer__menu-container .menu > li > ul > li > a { display: inline-block; position: relative; color: var(--color-gray-800); }
.footer__menu-container .menu > li > ul > li > a:after { content: ''; display: block; width: 0; height: 1px; position: absolute; bottom: 0; right: 0; left: auto; background: currentColor; transition: width .4s cubic-bezier(0.165, 0.840, 0.440, 1.000); }
.footer__menu-container .menu > li > ul > li > a > span { font-size: var(--font-size-primary-08); line-height: var(--font-lineheight-primary-08); font-weight: 500; letter-spacing: var(--letter-spacing); }

.footer__bottom { position: relative; display: flex; justify-content: space-between; gap: 40rem; padding: 32rem 0 48rem; margin-top: 120rem; }
.footer__bottom:before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--color-black); opacity: .2; }
.footer__bottom-left { display: flex; gap: 10rem; }

.footer__link { display: flex; gap: 10rem; }
.footer__link > a { position: relative; color: var(--color-gray-800); }
.footer__link > a:after { content: ''; display: block; width: 0; height: 2rem; position: absolute; bottom: 0; right: 0; left: auto; background: currentColor; transition: width .4s cubic-bezier(0.165, 0.840, 0.440, 1.000); }
.footer__link .footer__privacy { position: relative; color: var(--color-black); }

.footer__copyright { color: var(--color-gray-800); }
.footer__sns { display: flex; gap: 20rem; }
.footer__sns > li { display: block; width: 24rem; height: 24rem; }
.footer__sns > li > a { display: block; width: 100%; height: 100%; }
.footer__sns .jt-icon { display: block; width: 100%; height: 100%; }
.footer__sns .jt-icon path { fill: var(--color-gray-900); }



/* **************************************** *
 * CONTAINER
 * **************************************** */
.main-container { padding-top: 242rem; padding-bottom: 200rem; }

body:has(.jt-cta) .main-container { padding-bottom: 0; }



/* **************************************** *
 * PAGE
 * **************************************** */
/* PAGE VISUAL */
.article__visual-banner { position: relative; display: flex; align-items: center; justify-content: center; border-radius: 32rem; aspect-ratio: 1 / 0.4494; overflow: hidden; }
.article__visual-banner:has(.article__visual-content) { aspect-ratio: 1 / 0.382; }
.article__visual-bg { position: absolute; left: 0; top: 0; bottom: 0; right: 0; background: no-repeat center center / cover; }
.article__visual-bg--mobile { display: none; }
.article__visual-content { text-align: center; margin-top: 80rem; }
.article__visual-desc { margin-top: 32rem; color: var(--color-gray-800); }

.article__visual-banner .article__visual-content { position: relative; margin: 0 80rem; }
.article__visual-banner .article__visual-desc { color: var(--color-black); }

/* PAGE HEADER */
.article__header { padding-bottom: 100rem; text-align: center; }
.article__header--narrow { padding-bottom: 60rem; }
.article__desc { margin-top: 24rem; color: var(--color-gray-800); }

/* PAGE BODY */
.article__body { position: relative; }
.article__section { position: relative; padding: 160rem 0 200rem; }
.article__section:last-child { padding-bottom: 0; }
.article__section-head { text-align: center; margin-bottom: 80rem; }
.article__section-head--narrow { margin-bottom: 60rem; }
.article__section-desc { margin-top: 32rem; color: var(--color-gray-800); }
.article__section-desc p + p { margin-top: 24rem; }

body:has(.jt-cta) .article__section:last-child { padding-bottom: 200rem; }



/* **************************************** *
 * PRIVACY
 * **************************************** */
.page-template-privacy .article__header,
.page-template-terms .article__header { text-align: left; }
.privacy__revision { margin-top: 40rem; }
.privacy__revision-choice { display: inline-block; width: max-content; min-width: 200rem; max-width: 100%; vertical-align: top; }



/* **************************************** *
 * 404
 * **************************************** */
body.error404 #header { background: var(--color-white); }
body.error404 .main-container { padding-top: 0; padding-bottom: 0; }

.error-404 { background: var(--color-primary); }
.error-404__inner { display: flex; flex-direction: column; align-items: center; justify-content: space-between; height: var(--fit-height, 100svh); padding: 154rem 20rem 0; text-align: center; }
.error-404__container { flex: 1; display: flex; flex-direction: column; justify-content: center; width: 100%; }
.error-404__motion { width: 28.14%; max-width: 332rem; margin: 0 auto; margin-bottom: 40rem; }
.error-404__motion .jt-lazyload { padding-top: 36.14%; }
.error-404__content h1 { color: var(--color-white); }
.error-404__content p { margin-top: 16rem; color: var(--color-white); }
.error-404__controller { margin-top: 60rem; }
.error-404__copyright { padding: 40rem 0; color: var(--color-white); opacity: .8; }



/* **************************************** *
 * HOVER
 * **************************************** */
@media (hover: hover) and (pointer: fine) {

    /* HEADER */    
    .sticky-banner__close:hover { rotate: 90deg }

    #menu > li.jt-hoverintent--allow:hover > a { color: var(--color-primary); }
    #menu > li.jt-hoverintent--allow:hover > a > span:after { background-image: url(../images/icon/icon-menu-arrow-active.svg); rotate: -180deg }
    #menu > li > ul > li:hover > a { color: var(--color-primary); }

    .header__utils-list > li > a:hover > .jt-icon path { fill: var(--color-primary); }
    .header__utils-contact:hover { background: #5465AD; }

    .header__search-close:hover { rotate: 90deg; }
    .header__search-close:hover .jt-icon path { fill: var(--color-black); }

    .header__language-list > li:not(.header__language--current) > a:hover { color: var(--color-black); }

    /* FOOTER */
    .footer__menu-container .menu > li > a:hover:after { width: 100%; left: 0; right: auto; }
    .footer__menu-container .menu > li > ul > li > a:hover:after { width: 100%; left: 0; right: auto; }

    .footer__link > a:hover:after { width: 100%; left: 0; right: auto; }

    .footer__sns > li > a:hover .jt-icon svg path { fill: var(--color-black); }
    
}