﻿@charset "UTF-8";

/*====================================================================================================

　CSS構成

　//絶対に変更しないCSS
　- reset.css           全てのブラウザ固有CSSをリセットするCSS。基本触らないこと。
　- bootstrap.min.css   Bootstrapコンポーネントを利用するためのCSS。基本触らないこと。
　- all.min.css         Font Awesome を利用するためのCSS。基本触らないこと。
　- aos.css             AOSを利用するためのCSS。基本触らないこと。

　//設定項目を基本的には変更しないCSS
　- base.css            基本の設定をまとめたもの。

　//メインで利用しているCSS
　- common.css          ヘッダー、フッター、下層ページのタイトルなど、共通ページレイアウトを記載したCSS
　- stlye.css           各ページ固有のレイアウトを記載したCSS

　//補助的に利用しているCSS
　- module.css          見出しやリスト、テーブルなど、共通利用できるパーツをまとめたCSS
　- utility.css         マージンやパディング、文字サイズや文字色など、補助的に利用できるCSS

====================================================================================================*/

.sp.tb,
.sp {
    display: none;
}

.tb {
    display: none;
}

.pc.tb,
.pc {
    display: block;
}

@media screen and (max-width:1199px) {
    .sp {
        display: none;
    }

    .sp.tb,
    .pc.tb,
    .tb {
        display: block;
    }

    .pc {
        display: none;
    }
}

@media screen and (max-width:575px) {

    .sp.tb,
    .sp {
        display: block;
    }

    .pc.tb,
    .tb {
        display: none;
    }

    .pc {
        display: none;
    }
}

.f-point {
    font-family: var(--point-font);
}

.f-en {
    font-family: var(--en-font);
}

.bg-orange {
    background-color: var(--primary-light-color);
}

.bg-2 {
    background-color: #FBE3C1;
}

.text-c-orange {
    color: var(--primary-color);
    font-weight: bold;
}

.child-page {
    margin-top: 80px;
}

@media screen and (max-width:1399px) {
    .child-page {
        margin-top: 72px;
    }
}

@media screen and (max-width:1199px) {
    .child-page {
        margin-top: 68px;
    }
}


/*------------------------------------------------------------------
  fix-bgimg
------------------------------------------------------------------*/
.fix-bgimg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100lvh;
    z-index: 0;
}

.fix-bgimg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.fix-bgimg+div {
    position: relative;
    z-index: 1;
}

/*------------------------------------------------------------------
  ani-wrapper
------------------------------------------------------------------*/
.ani-wrapper {
    position: absolute;
    z-index: 0;
    width: min(24vw, 26rem);
    aspect-ratio: 1 / 1;
    /* overflow: hidden; */
    pointer-events: none;
}

.ani-wrapper__circle {
    position: relative;
    width: 100%;
    height: 100%;
    contain: paint;
}

.ani-wrapper__image,
.ani-wrapper__text img {
    display: block;
    width: 100%;
    height: auto;
}

.ani-wrapper__image {
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    will-change: transform;
    animation: ani-wrapper-spin 12s linear infinite;
}

.ani-wrapper__text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 78%;
    transform: translate(-50%, -50%);
}

@keyframes ani-wrapper-spin {
    0% {
        transform: rotate(0deg);
    }

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


/*------------------------------------------------------------------
  home-txtanimation
------------------------------------------------------------------*/

.txtanimation {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: absolute;
    bottom: 60px;
    left: 0;
    opacity: .4;
}

.txtanimation p {
    font-size: 15rem;
    font-weight: 400;
    line-height: 1;
    flex: 0 0 auto;
    font-family: "Outfit", sans-serif;
    color: #f9f9f9;
}

.txtanimation_2 p {
    font-size: 15rem;
    font-weight: 400;
    line-height: 1;
    flex: 0 0 auto;
    font-family: "Outfit", sans-serif;
    color: #f9f9f9;
    /* Firefoxは text-stroke 非対応なので影でアウトライン */
    text-shadow: 1px 1px 0 #adadad, -1px 1px 0 #adadad, -1px -1px 0 #adadad, 1px -1px 0 #adadad;
}


/* WebKit（Chrome / Safari / Edge）対応版 */

@supports (-webkit-text-stroke: 1px #000) {
    .txtanimation_2 p {
        text-shadow: none;
        -webkit-text-stroke: .01em #adadad;
        paint-order: stroke fill;
    }
}

@media screen and (max-width:1199px) {

    .txtanimation p,
    .txtanimation_2 p {
        font-size: 10rem;
    }
}

@media screen and (max-width:991px) {

    .txtanimation p,
    .txtanimation_2 p {
        font-size: 9rem;
    }
}

@media screen and (max-width:576px) {

    .txtanimation p,
    .txtanimation_2 p {
        font-size: 8rem;
    }
}

.txtanimation p:nth-of-type(1) {
    animation: loop_01 120s -60s linear infinite;
}

.txtanimation p:nth-of-type(2) {
    animation: loop_02 120s linear infinite;
}


/* 2番目の txtanimation のみ */

.txtanimation_2 p:nth-of-type(1) {
    animation: loop_01 320s -160s linear infinite;
    /* ←1つ目の行 */
}

.txtanimation_2 p:nth-of-type(2) {
    animation: loop_02 320s linear infinite;
    /* ←2つ目の行 */
}

@keyframes loop_01 {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes loop_02 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-200%);
    }
}


/*------------------------------------------------------------------
  header / global nav
------------------------------------------------------------------*/

body.is-menu-open {
    overflow: hidden;
    overscroll-behavior: none;
}


.l-header {
    --header-height: 80px;
    box-sizing: border-box;
    position: fixed;
    inset: 0 0 auto;
    z-index: 1200;
    width: 100%;
    background: var(--bg-color);
    color: var(--black-color);
    border-bottom: 1px solid var(--black-color);
    transition: background-color .3s ease, color .3s ease, box-shadow .3s ease;
}

body.is-menu-open .l-header {
    background: transparent;
    color: var(--white-color);
    border-bottom-color: transparent;
}

body.is-menu-open .l-header__logo {
    opacity: 1;
    pointer-events: auto;
}

.l-header__inner,
.p-global-nav__head {
    box-sizing: border-box;
    width: 100%;
    height: var(--header-height);
    padding: 0 3.75rem;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) 7.5rem;
    align-items: center;
    gap: 2rem;
}

.l-header__logo,
.l-header__links,
.p-global-nav__logo,
.p-global-nav__links {
    min-width: 0;
}

.l-header__logo,
.l-header__links {
    transition: opacity .25s ease;
}

body.is-menu-open .l-header__links {
    opacity: 1;
    pointer-events: auto;
}

.l-header__logo img,
.p-global-nav__logo img {
    display: block;
    width: 100%;
    height: auto;
}

body.is-menu-open .l-header__logo img,
.p-global-nav__logo img {
    filter: brightness(0) invert(1);
}

.l-header__links,
.p-global-nav__links {
    justify-self: end;
}

.c-logo {
    width: max(13.4vw, 240px);
}

.c-external-links {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
}

.c-external-links__item {
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
    transition: all .2s ease-out;
}

.c-external-links__item:hover {
    opacity: .65;
}

header .c-external-links__item:hover {
    opacity: 1;
    color: var(--accent-color);
}

body.is-menu-open .l-header .c-external-links__item:hover {
    opacity: 1;
    color: var(--black-color);
}

.c-external-links__title,
.c-external-links__text {
    display: inline-flex;
    align-items: center;
    gap: .35em;
    line-height: 1.2;
    font-family: var(--en-font);
    font-size: .875rem;
}

.c-external-links__title {
    letter-spacing: .04em;
}

.c-external-links__text {
    margin-top: .15em;
    padding-bottom: .125rem;
    border-bottom: 1px dashed currentColor;
}

.c-external-links__icon {
    display: block;
    width: 1rem;
    height: 1rem;
    aspect-ratio: auto;
    background-color: currentColor;
    -webkit-mask-image: url(../images/icon/link-arrow.svg);
    mask-image: url(../images/icon/link-arrow.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    flex: none;
}

.c-menu-button {
    --menu-icon-width: 1.125rem;
    --menu-icon-gap: .3125rem;
    --menu-icon-shift: .375rem;
    width: 7.5rem;
    height: 3rem;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0rem;
    border: 1px solid currentColor;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font-family: var(--en-font);
    font-weight: 700;
    letter-spacing: .12em;
    line-height: 1;
    position: relative;
    transition: color .3s ease, border-color .3s ease, background-color .3s ease;
}

.c-menu-button:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}

@media (hover:hover) {
    .c-menu-button:hover {
        background-color: var(--black-color);
        color: var(--bg-color);
    }

    body.is-menu-open .c-menu-button:hover {
        background-color: var(--white-color);
        border-color: var(--white-color);
        color: var(--accent-color);
    }

    body.is-menu-open .c-menu-button:hover .c-menu-button__text::before {
        color: var(--accent-color);
    }
}

.c-menu-button__text {
    position: relative;
    display: inline-block;
    width: auto;
    font-size: .9375rem;
    text-align: center;
}

body.is-menu-open .c-menu-button__text {
    color: transparent;
}

body.is-menu-open .c-menu-button__text::before {
    content: "CLOSE";
    position: absolute;
    inset: 0;
    color: var(--white-color);
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
}

.c-menu-button__icon {
    display: none;
}

@media screen and (max-width:1199px) {
    .c-menu-button__text {
        display: none;
    }

    .c-menu-button__icon {
        display: grid;
        width: var(--menu-icon-width);
        height: 17px;
        grid-template-rows: repeat(3, 1px);
        align-content: center;
        row-gap: var(--menu-icon-gap);
    }

    .c-menu-button__icon span {
        width: 100%;
    }
}

.c-menu-button__icon span {
    display: block;
    height: 1px;
    background: currentColor;
    transition: transform .35s ease, opacity .25s ease, background-color .3s ease;
    transform-origin: center;
}

body.is-menu-open .c-menu-button__icon span:nth-child(1) {
    transform: translateY(var(--menu-icon-shift)) rotate(45deg);
}

body.is-menu-open .c-menu-button__icon span:nth-child(2) {
    opacity: 0;
}

body.is-menu-open .c-menu-button__icon span:nth-child(3) {
    transform: translateY(calc(var(--menu-icon-shift) * -1)) rotate(-45deg);
}

.p-global-nav {
    --header-height: 80px;
    box-sizing: border-box;
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    height: 100dvh;
    background: var(--accent-color);
    color: var(--white-color);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .35s ease, visibility .35s ease;
    overflow-y: hidden;
    overflow-x: hidden;
}

.p-global-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.p-global-nav__bg {
    left: clamp(1rem, 4vw, 5rem);
    bottom: clamp(1.5rem, 4vh, 4rem);
    width: clamp(14rem, 24vw, 28rem);
    opacity: .2;
    filter: brightness(0) invert(1);
}

.p-global-nav__head {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    border-bottom: 1px solid rgba(255, 255, 255, .7);
}

.p-global-nav__head .p-global-nav__logo {
    visibility: hidden;
    pointer-events: none;
}

.p-global-nav__body {
    position: relative;
    z-index: 2;
}

.p-global-nav__main {
    width: fit-content;
    margin: 90px 6vw 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3.75rem;
}

.p-global-nav__main>.p-global-nav__logo {
    width: 28rem;
}

.p-global-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, max(420px, 24vw));
    column-gap: 3rem;
    justify-content: center;
    align-items: start;
}

.p-global-nav__list li:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.p-global-nav__list li:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
}

.p-global-nav__list li:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
}

.p-global-nav__list li:nth-child(4) {
    grid-column: 1;
    grid-row: 4;
}

.p-global-nav__list li:nth-child(5) {
    grid-column: 1;
    grid-row: 5;
}

.p-global-nav__list li:nth-child(6) {
    grid-column: 2;
    grid-row: 1;
}

.p-global-nav__list li:nth-child(7) {
    grid-column: 2;
    grid-row: 2;
}

.p-global-nav__list li:nth-child(8) {
    grid-column: 2;
    grid-row: 3;
}

.p-global-nav__list li:nth-child(9) {
    grid-column: 2;
    grid-row: 4;
}

.p-global-nav__list li {
    border-bottom: 1px dashed rgba(255, 255, 255, .28);
}

.p-global-nav__list li:nth-child(1),
.p-global-nav__list li:nth-child(6) {
    border-top: 1px dashed rgba(255, 255, 255, .28);
}

.p-global-nav__list a {
    position: relative;
    min-height: 4.875rem;
    padding: .75rem 1.125rem;
    display: flex;
    align-items: center;
    gap: 1.125rem;
    color: var(--white-color);
    text-decoration: none;
    transition: background-color .25s ease;
}

.p-global-nav__list a::after {
    content: "";
    position: absolute;
    right: 1rem;
    display: block;
    width: 10px;
    height: 10px;
    justify-self: end;
    background-image: url(../images/icon/button-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    filter: brightness(0) invert(1);
    transition: transform .25s ease;
}

.p-global-nav__list a.is-active {
    background: var(--accent-deep-color);
}

.p-global-nav__list a.is-active::after {
    transform: translateX(.25rem);
}

@media (hover: hover) {
    .p-global-nav__list a:hover {
        background: var(--accent-deep-color);
    }

    .p-global-nav__list a:hover::after {
        transform: translateX(.25rem);
    }
}

.p-global-nav__list strong {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
    text-align: left;
}

.p-global-nav__list span {
    min-width: 0;
    font-family: var(--en-font);
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 300;
    white-space: nowrap;
    text-align: left;
    text-transform: lowercase;
}

.p-global-nav__bottom {
    position: absolute;
    z-index: 1;
    bottom: 1rem;
    align-self: center;
    font-family: var(--en-font);
    font-size: 7.2vw;
    line-height: 1;
    color: var(--white-color);
    -webkit-text-stroke: 1px var(--black-color);
    pointer-events: none;
}

.p-global-nav__sp-links {
    display: none;
}

@media screen and (min-width:1200px) {
    body.is-menu-open .l-header__logo {
        opacity: 0;
        pointer-events: none;
    }

    body.is-menu-open .p-global-nav__links {
        opacity: 0;
        pointer-events: none;
    }
}

@media screen and (max-width:1199px) {

    .l-header,
    .p-global-nav {
        --header-height: 72px;
    }

    .l-header__inner,
    .p-global-nav__head {
        height: var(--header-height);
        padding: 0 1.25rem;
        grid-template-columns: 1fr 3.125rem;
        gap: 1rem;
    }

    .c-logo__text {
        font-size: 1.0625rem;
    }

    .l-header__links,
    .p-global-nav__links {
        display: none;
    }

    .c-menu-button {
        --menu-icon-width: 24px;
        --menu-icon-gap: 7px;
        --menu-icon-shift: 8px;
        width: 3.125rem;
        height: 3.125rem;
        margin-left: auto;
        padding: 0;
        gap: 0;
    }

    .c-menu-button__text {
        display: none;
    }

    .p-global-nav__head {
        border-bottom: none;
    }

    .p-global-nav__bg {
        left: initial;
        right: -5%;
        bottom: -10%;
        width: 80%;
        opacity: .1;
    }

    .ani-wrapper__image {
        animation: ani-wrapper-spin 20s linear infinite;
    }

    .p-global-nav__body {
        width: 100%;
        margin: 0;
        padding: 1.25rem 1.25rem 0;
    }

    .p-global-nav__main {
        width: 100%;
        display: block;
        margin: 0 auto;
    }

    .p-global-nav__main>.p-global-nav__logo {
        display: none;
    }

    .p-global-nav__list {
        display: block;
    }

    .p-global-nav__list a {
        min-height: 4rem;
        padding: .75rem .875rem;
        grid-template-columns: minmax(6.5rem, auto) minmax(0, 1fr) auto;
        gap: .75rem;
    }

    .p-global-nav__list strong {
        min-width: 0;
        font-size: 1.25rem;
    }

    .p-global-nav__list span {
        font-size: 1.25rem;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .p-global-nav__bottom {
        display: none;
    }

    .p-global-nav__sp-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.25rem 2rem;
        margin: 1.75rem 0 3.75rem;
    }

    .p-global-nav__sp-links .c-external-links__item {
        font-size: 1.0625rem;
    }
}

@media screen and (max-width:575px) {
    .p-global-nav__list a {
        min-height: 3.5rem;
    }

    .p-global-nav__bg {
        opacity: .2;
    }
}

@media screen and (max-width:399px) {
    .p-global-nav__list a {
        min-height: 3rem;
    }
}

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

/* .child-page footer {
    margin-top: 10rem;
} */

footer {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

footer a {
    opacity: 1;
    transition: .2s ease-out;
}

footer a:hover {
    opacity: .8;
}

/*  contact
------------------------------------------------------------------*/

.contact-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: -5rem;
}

.contact-wrap .container-wide {
    background-color: var(--accent-color);
    margin-inline: auto;
    width: 95%;
    padding: 0;
}

.tashika .contact-wrap .container-wide {
    background-color: #5e5c61;
}

.contact-wrap .inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.contact-wrap .ttl-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 12% 14.8%;
    color: var(--white-color);
    border-right: 1px solid var(--white-color);
}

.contact-wrap .title-english .en {
    position: relative;
    font-family: var(--en-font);
    font-size: 3.75rem;
    font-weight: 400;
    line-height: 1;
    text-align: justify;
    z-index: 1;
    color: var(--white-color);
}

.contact-wrap .title-english .jp {
    line-height: 2.5;
    font-weight: 500;
    font-size: 1.125rem;
    color: var(--white-color);
    text-align: left;
    white-space: nowrap;
    z-index: 2;
}

.contact-area .text-area,
.tel-fax {
    height: 100%;
}

.tel-fax .tel {
    flex-direction: column;
    border-bottom: 1px solid var(--white-color);
}

.tel-fax .tel,
.tel-fax .mail {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-wrap .ttl-area p {
    margin-top: 1rem;
    width: fit-content;
    text-align: justify;
}

.access-area {
    border-right: 1px solid var(--gray-light-color);
    padding-right: 5.5rem;
}

.access-area p {
    text-align: center;
    margin-top: 2.25rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.contact-area {
    display: flex;
}

.contact-area .text-area {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tel-fax {
    display: flex;
    flex-direction: column;
    flex: 1;
    color: var(--white-color);
}

.tel-fax .num {
    display: flex;
    align-items: center;
    font-family: var(--en-font);
    font-size: 2.5rem;
    line-height: 1;
    color: var(--white-color);
}

.tel-fax .num a {
    color: var(--white-color);
}

.tel-fax .icon {
    border-radius: 100%;
    width: 2.25rem;
    height: 2.25rem;
    margin-right: 9px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../images/icon/tel.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

footer .tel .annotation {
    font-size: 0.9125rem;
}

.tel-fax .mail {
    color: var(--white-color);
    align-items: center;
    justify-content: center;
    text-align: center;
}

.tel-fax .mail .c-text-hover {
    font-size: 1.5rem;
    color: var(--white-color);
}

@media (hover:hover) {
    .tel-fax .mail:hover {
        opacity: 1;
        background-color: var(--accent-deep-color);
    }

    .tashika .tel-fax .mail:hover {
        opacity: 1;
        background-color: var(--black-color);
    }
}


@media screen and (max-width:1199px) {
    .contact-wrap {
        flex-direction: column;
        align-items: center;
        gap: 6rem;
    }

    .contact-wrap .title-english .en {
        font-size: 3rem;
    }

    .access-area {
        border-right: none;
        padding: 0;
        width: 100%;
    }

    .contact-area {
        padding: 0;
        text-align: justify;
    }

    .tel-fax span {
        font-size: 2rem;
    }

    .tel-fax .mail span {
        font-size: 1.5rem;
    }

    footer .tel p,
    footer .fax p {
        text-align: left;
    }

    .map iframe {
        width: 100%;
    }
}

@media screen and (max-width:991px) {
    .contact-wrap .inner {
        display: grid;
        grid-template-columns: 1fr;
    }

    .contact-wrap .ttl-area {
        padding: 5% 7%;
        align-items: center;
        border: none;
        border-bottom: 1px solid var(--white-color);
    }

    .contact-wrap .ttl-area p {
        margin-top: 0;
    }

    .contact-wrap .title-english .en,
    .contact-wrap .title-english .jp {
        text-align: center;
    }

    .tel-fax .tel, .tel-fax .mail {
        min-height: 8rem;
    }

}

@media screen and (max-width:575px) {
    .contact-wrap .ttl-area {
        padding: 15% 5%;
    }

    .tel-fax .mail .c-text-hover {
        font-size: 1.125rem;
    }
}


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

.footer-main {
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    padding: 12.5rem 0 3rem;
}

@media screen and (max-width:1199px) {
    .footer-main {
        flex-direction: column;
        justify-content: center;
        align-items: initial;
        row-gap: 1rem;
        padding-bottom: 1rem;
        padding: 10rem 0 3rem;
    }
}

@media screen and (max-width:575px) {
    .footer-main {
        padding-bottom: 1rem;
    }
}

.footer-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 60px;
    max-width: 1760px;
    width: 94%;
    margin-inline: auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.footer-right {
    display: flex;
    gap: 80px;
}

footer .logo .logo-img {
    width: 24vw;
    min-width: 260px;
    display: block;
}

footer .logo img {
    width: 100%;
    height: auto;
}

@media screen and (max-width:1199px) {

    footer .logo .logo-img,
    footer .logo a {
        margin: 0 auto;
    }

    footer .logo img {
        padding-bottom: 4rem;
    }
}

@media screen and (max-width:991px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width:575px) {
    .footer-top {
        align-items: flex-start;
        width: fit-content;
        margin: auto;
    }

    .footer-right {
        flex-direction: column;
        gap: .75rem;
    }

    footer .logo img {
        padding-bottom: 2.5rem;
    }

}

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

.footer-right ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-nav li {
    font-weight: 500;
    font-size: 1.125rem;
}

.footer-nav li a {
    opacity: 1;
    transition: .2s ease-out;
}

.footer-nav li a span {
    margin-left: .75rem;
}

.footer-nav li a:hover {
    opacity: .6;
}

@media screen and (max-width:575px) {
    .footer-right ul {
        gap: .75rem;
    }

    .footer-nav li {
        font-size: initial;
    }
}


/*  footer-bottom txt
------------------------------------------------------------------*/

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    margin-top: 5.5rem;
    padding-top: 3.75rem;
    border-top: 1px solid var(--black-color);
}

.footer-company {
    line-height: 1.6;
}

.footer-company p:first-of-type {
    font-weight: 500;
}

.footer-company div {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-company div a {
    font-size: .8em;
    padding: .25rem .5rem;
    line-height: 1;
    border: 1px solid var(--black-color);
    border-radius: 10rem;
}

@media screen and (max-width:767px) {
    .footer-bottom {
        align-items: flex-start;
    }
}

@media screen and (max-width:575px) {
    .footer-bottom {
        margin-top: 4rem;
        padding-top: 2.5rem;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .footer-company p {
        text-align: center;
    }

    .footer-company div {
        flex-direction: column;
        gap: .125rem;
        margin-bottom: .25rem;
    }
}

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

@media screen and (max-width:767px) {
    .footer-links .c-external-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media screen and (max-width:575px) {
    .footer-links .c-external-links {
        flex-direction: row;
        gap: 2rem;
    }
}

/*  copyright
------------------------------------------------------------------*/

.copyright {
    font-size: .875rem;
    line-height: 1;
    text-align: right;
    margin-top: 1.5rem;
    color: #a2a2a2;
}

@media screen and (max-width:575px) {
    .copyright {
        text-align: center;
    }
}

/*-----------------------------------------------------------------
  child page
------------------------------------------------------------------*/


/*  page-top
------------------------------------------------------------------*/

.page-top {
    position: relative;
    padding: 14rem 1.5rem 10rem;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (max-width:991px) {
    .page-top {
        padding: 80px 20px;
    }
}

@media screen and (max-width:767px) {
    .page-top {
        padding: 60px 20px;
    }
}


/*  page-top-title-en
------------------------------------------------------------------*/

.page-top-title-en {
    position: relative;
    font-family: var(--en-font);
    font-size: 6rem;
    font-weight: 400;
    text-align: start;
    line-height: 1;
    --letter-spacing: .04em;
    z-index: 3;
    white-space: nowrap;
}

@media screen and (max-width:1199px) {
    .page-top-title-en {
        font-size: 5.75rem;
    }
}

@media screen and (max-width:991px) {
    .page-top-title-en {
        font-size: 4.25rem;
    }
}

@media screen and (max-width:575px) {
    .page-top-title-en {
        font-size: 4rem;
    }
}


/*  page-top-title-jp
------------------------------------------------------------------*/

.page-top-title-jp {
    position: relative;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0;
    text-align: start;
    line-height: 1.5;
    z-index: 3;
}

@media screen and (max-width:991px) {
    .page-top-title-jp {
        font-size: 1.25rem;
    }
}

@media screen and (max-width:767px) {
    .page-top-title-jp {
        font-size: 1.25rem;
    }
}

@media screen and (max-width:575px) {
    .page-top-title-jp {
        font-size: 1.125rem;
    }
}

@media screen and (max-width:374px) {
    .page-top-title-jp {
        font-size: 1rem;
    }
}


/*  page-top-image
------------------------------------------------------------------*/

.page-top-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #fff;
    z-index: 1;
}

.page-top-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1);
    animation: pageTopImage .8s forwards ease-out;
}

@keyframes pageTopImage {
    from {
        opacity: 0;
        /* transform: scale(1.1); */
        /* filter: grayscale(1); */
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media screen and (max-width:575px) {
    .page-top-image {
        height: 100%;
    }
}

@media screen and (max-width:374px) {
    .page-top-image {
        width: 100%;
        height: 100%;
    }
}

.contents-03 .txtanimation {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: absolute;
    bottom: 60px;
    left: 0;
}

.contents-03 .txtanimation p {
    font-size: 22rem;
    line-height: 1.2;
    flex: 0 0 auto;
    font-family: "Outfit", sans-serif;
    color: #f9f9f9;
    text-shadow: 1px 1px 0 #adadad, -1px 1px 0 #adadad, -1px -1px 0 #adadad, 1px -1px 0 #adadad;
}

.contents-03 p+p {
    margin-top: 0;
}

.contents-03 .txtanimation p:nth-of-type(1) {
    animation: loop_01 120s -60s linear infinite;
}

.contents-03 .txtanimation p:nth-of-type(2) {
    animation: loop_02 120s linear infinite;
}


/*------------------------------------------------------------------
  breadcrumb
------------------------------------------------------------------*/

.breadcrumb-wrapper {
    background-color: var(--primary-light-color);
    padding-block: .75rem;
}

.breadcrumb {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    padding: 0 .25rem;
    font-size: .75rem;
    font-weight: 600;
    line-height: 1.5;
    z-index: 3;
    color: var(--gray-color);
}

.breadcrumb>li+li::before {
    display: inline-block;
    margin-right: 10px;
    content: "＞";
}

.breadcrumb>li>a {
    color: var(--primary-deep-color);
    transition: .2s;
}

.breadcrumb>li>a:hover {
    color: var(--accent-color);
}

@media screen and (max-width:767px) {
    .breadcrumb {
        /* font-size: 11px; */
    }
}


/*------------------------------------------------------------------
  paging
------------------------------------------------------------------*/

.paging {
    display: flex;
    justify-content: center;
    column-gap: 10px;
}

.paging-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #aaa;
    color: #898989;
    transition: .2s ease-out;
}

.paging-text a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1.25rem;
    transition: .2s ease-out;
    background-color: var(--white-color);
}

.paging-text.current {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff !important;
    pointer-events: none;
    font-size: 1.25rem;
}


/* ホバー時動作 */

@media (hover:hover) {
    .paging-text:hover {
        background: var(--primary-color);
        border-color: var(--primary-color);
    }

    .paging-text:hover a {
        color: #fff !important;
        background: var(--primary-color);
    }
}

@media screen and (max-width:767px) {
    .paging {
        column-gap: 5px;
    }

    .paging-text {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}


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

#pagetop-btn {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 2;
    width: 2.5rem;
}

#pagetop-btn img {
    transition: .5s ease;
    transform: translateY(0);
}

#pagetop-btn img:hover {
    opacity: 0.8;
}

@keyframes rotates {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

@media screen and (max-width:767px) {
    #pagetop-btn img {
        transform: scale(0.7);
    }
}




/* ========================================
   Page Heading
======================================== */

.c-page-heading {
    position: relative;
    padding: 5vw 0;
    overflow: hidden;
    background: rgb(255 106 137 / 18%);
    background-color: rgb(255 106 137 / 18%);
    background-image:
        linear-gradient(rgb(255 106 137 / 20%) 1px, transparent 1px),
        linear-gradient(90deg, rgb(255 106 137 / 20%) 1px, transparent 1px);
    background-size: 1.5rem 1.5rem;
}

.c-page-heading__inner {
    position: relative;
    margin-inline: auto;
    width: 80%;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
}

.c-page-heading__ani {
    position: absolute;
    top: -2vw;
    right: 1vw;
    z-index: 1;
    width: 16vw;
    pointer-events: none;
    transform: rotate(8deg);
    filter: brightness(0) invert(1);
    opacity: 1;
}

.c-page-heading__images {
    position: relative;
    width: 56%;
    aspect-ratio: 2 / 1;
    flex-shrink: 0;
}

.c-page-heading__image {
    position: absolute;
    border: 1px solid var(--black-color);
    z-index: 2;
}

.c-page-heading__image img,
.setsubi_deco img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.c-page-heading__image .c-wipe-reveal {
    height: 100%;
}

.c-page-heading__image--large {
    top: 0;
    left: 0;
    width: 62%;
    aspect-ratio: 4 / 3;
    box-shadow: 1rem 1rem 0 var(--pink-color);
}

.c-page-heading__image--small {
    right: 0;
    bottom: 0;
    width: 22%;
    aspect-ratio: 3 / 4;
    box-shadow: .8rem .8rem 0 var(--sand-color);
}

.setsubi_deco {
    width: 25%;
    position: absolute;
    right: 25%;
    bottom: 7%;
    z-index: 10;
    /* transform: rotate(5deg); */
}

.c-page-title {
    position: absolute;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: fit-content;
    z-index: 3;
}

.c-page-title__en {
    font-size: 7rem;
    line-height: 1;
    font-weight: 400;
    font-family: var(--en-font);
    color: var(--white-color);
    -webkit-text-stroke: 1px var(--black-color);
    width: fit-content;
    transition: .3s all ease;
}

.c-page-title__jp {
    margin-top: 1.5em;
    font-size: 2.4rem;
    width: fit-content;
}

@media screen and (max-width: 1299px) {
    .c-page-heading__inner {
        width: 95%;
    }

    .c-page-title__jp {
        margin-top: 2rem;
        font-size: 1.75rem;
    }
}

@media screen and (max-width: 1199px) {
    .c-page-heading__inner {
        width: 95%;
    }

    .c-page-heading__ani {
        width: 20vw;
    }
}

@media screen and (max-width: 991px) {

    .c-page-heading {
        padding: 8rem 0;
    }

    .c-page-heading__inner {
        flex-direction: column-reverse;
        gap: 4rem;
    }

    .c-page-heading__ani {
        top: 35%;
        left: initial;
        top: 19vw;
        right: 8vw;
        width: 30vw;
    }

    .c-page-heading__images,
    .c-page-heading__content {
        width: 85%;
    }

    .c-page-heading__images .top-products__note {
        right: 15%;
        bottom: -40%;
    }

    .setsubi_deco {
        width: 30%;
        bottom: -5%;
    }

    .c-page-heading__content {
        justify-content: center;
    }

    .c-page-title {
        position: relative;
        right: initial;
        align-items: center;
        text-align: center;
    }

    .c-page-title__en {
        font-size: 6rem;
    }
}

@media screen and (max-width: 575px) {

    .c-page-heading {
        padding: 6rem 0;
    }

    .c-page-heading__inner {
        gap: 3rem;
    }

    .c-page-title__en {
        font-size: 4rem;
    }

    .c-page-title__jp {
        font-size: 1.75rem;
    }

    .c-page-heading__ani {
        top: 35%;
    }

    .c-page-heading__images,
    .c-page-heading__content {
        width: 95%;
    }

    .c-page-heading__image--small {
        width: 26%;
    }

    .setsubi_deco {
        width: 40%;
        bottom: -30%;
    }

    .c-page-heading__image--large {
        box-shadow: .5rem .5rem 0 var(--pink-color);
    }

    .c-page-heading__image--small {
        box-shadow: .5rem .5rem 0 var(--sand-color);
    }
}


/* ==============================
  flow section
============================== */

.c-card-section {
    background: var(--white-color);
    padding: min(60px, 6vw);
}

.c-card-section__head {
    margin-bottom: 4rem;
}

.c-card-section__lead {
    margin-top: 1rem;
    text-align: justify;
}


/* ==============================
  process
============================== */

.c-process {
    display: grid;
    gap: 2.5rem;
}

.c-process--4col {
    grid-template-columns: repeat(4, 1fr);
}

.c-process__item {
    position: relative;
}

.c-process__image {
    position: relative;
    margin-bottom: 1.25rem;
    aspect-ratio: 4 / 5;
}

.c-process__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-process__number {
    position: absolute;
    top: -1rem;
    left: .5rem;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 3.5rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--white-color);
    font-family: var(--en-font);
    font-size: 1.25rem;
}

.c-process__text {
    text-align: justify;
}

@media screen and (max-width: 991px) {
    .c-process--4col {
        grid-template-columns: repeat(2, 1fr);
    }

    .c-process--arrow .c-process__item::after {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .c-card-section {
        padding: 3rem 2rem;
    }

    .c-process--4col {
        grid-template-columns: 1fr;
    }

    .c-process__image {
        aspect-ratio: 4 / 3;
    }
}