@charset "UTF-8";

:root {
    --color-non: #FFF;
    --color-basic: #333;
    --color-pale: #fcfcfc;
    --color-accent-sec: #efefef;
    --color-accent-thi: #d3d3d3;
    --color-navy: #00273e;
    --muted: #c3c4c5;
    --line: #e5e7eb;
    --brand: #111;
    --accent: #0096AE;
    --accent-pale: #f0e8ef;
    --gap: min(4vw, 24px);
    --font-family-ja: "游ゴシック Medium", Yu Gothic Medium, "游ゴシック体", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    --font-family-ja-ttl: "Noto Sans JP", "游ゴシック Medium", Yu Gothic Medium, "游ゴシック体", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    --font-family-en: "Roboto", sans-serif;
    --font-family-en-cursive: "Oooh Baby", cursive;
    --font-family-number: "Roboto", sans-serif;
    --easing: cubic-bezier(.2, 1, .2, 1);
    --transition: .8s var(--easing);
}

* {
    box-sizing: border-box
}

:where(.contents-area) a {
    display: inline-block;
    transition: all 0.2s ease-in-out;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

:-webkit-any-link {
    color: var(--color-basic);
}

:-moz-any-link {
    color: var(--color-basic);
}

:any-link {
    color: var(--color-basic);
}

a {
    text-decoration: none;
    cursor: pointer;
}

a:hover,
a.button:hover,
a.icon:hover {
    text-decoration: none;
    opacity: .75;
}

::-moz-selection {
    background: var(--color-accent-thi);
}

::selection {
    background: var(--color-accent-thi);
}

*:focus {
    outline: none;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 62.5%;
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
}

body {
    font-family: var(--font-family-ja);
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--color-basic);
    background: var(--color-non);
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
    scrollbar-gutter: stable;
}

p {
    margin: 1rem 0 2rem;
    line-height: 1.8;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border-style: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.responsive {
    display: block;
    margin: auto;
    max-width: 100%;
}

/*//////////////////// LOADER ////////////////////////*/

.spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 999;
    background: var(--color-non);
}

.spinner::after {
    content: "";
    height: 60px;
    width: 60px;
    border: 1px solid var(--color-basic);
    border-radius: 50%;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    animation: spinner 0.5s linear infinite;
    -webkit-animation: spinner 0.5s linear infinite;
}

@-webkit-keyframes spinner {

    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }

}

@keyframes spinner {

    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }

}

/*//////////////////// FLEX ////////////////////////*/

@media (min-width: 821px) {

    .df {
        display: flex;
    }

    .df>* {
        position: relative;
        flex: 1;
    }

    .fdc {
        flex-direction: column;
    }

    .fdr {
        flex-direction: row;
    }

    .fww {
        flex-wrap: wrap;
    }

    .jcc {
        justify-content: center;
    }

    .jce {
        justify-content: end;
    }

    .jcsb {
        justify-content: space-between;
    }

    .aic {
        align-items: center;
    }

    .odd>.df:nth-child(odd),
    .even>.df:nth-child(even) {
        flex-direction: row-reverse;
    }

}

.df.c12,
.df.c123 {
    width: 100%;
}


.df.c23>*,
.df.c234>* {
    width: calc((100% - var(--gap))/2);
}


@media (min-width: 821px) {

    .df.c2,
    .df.c3,
    .df.c4,
    .df.c5,
    .df.c6,
    .df.c12,
    .df.c123,
    .df.c23,
    .df.c234 {
        flex-wrap: wrap;
    }

    .df.c2>* {
        width: calc((100% - var(--gap))/2);
    }

    .df.c3>* {
        width: calc((100% - (var(--gap))*2)/3);
    }

    .df.c4>* {
        width: calc((100% - (var(--gap))*3)/4);
    }

    .df.c5>* {
        width: calc((100% - (var(--gap))*4)/5);
    }

    .df.c6>* {
        width: calc((100% - (var(--gap))*5)/6);
    }

}

/*//////////////////// GRID ////////////////////////*/

.dg {
    display: grid;
}

.dg.c12,
.dg.c123 {
    grid-template-columns: repeat(1, 1fr);
}

.dg.c2,
.dg.c23,
.dg.c234 {
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 821px) {

    .dg.c12,
    .dg.c123 {
        grid-template-columns: repeat(2, 1fr);
    }

    .dg.c23,
    .dg.c234 {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (min-width: 980px) {

    .dg.c123 {
        grid-template-columns: repeat(3, 1fr);
    }

    .dg.c234 {
        grid-template-columns: repeat(4, 1fr);
    }

}

.dg>* {
    position: relative;
    display: grid;
    grid-template-rows: subgrid;
    gap: 0;
}

.dg.r2>* {
    grid-row: span 2;
}

.dg.r3>* {
    grid-row: span 3;
}

.dg.r4>* {
    grid-row: span 4;
}

.dg.r5>* {
    grid-row: span 5;
}

/*//////////////////// GAP ////////////////////////*/

.g1 {
    gap: var(--gap);
}

.g2 {
    gap: calc(var(--gap) * 2);
}

.g3 {
    gap: calc(var(--gap) * 3);
}

.g4 {
    gap: calc(var(--gap) * 4);
}

.g5 {
    gap: calc(var(--gap) * 5);
}

.g10 {
    gap: calc(var(--gap) * 10);
}

/*//////////////////// GUTTER ////////////////////////*/

.mt1 {
    margin: .5rem auto 0;
}

.mt2 {
    margin: 1rem auto 0;
}

.mt3 {
    margin: 1.5rem auto 0;
}

.mt {
    margin: 3rem auto 0;
}

.mt8 {
    margin: 4rem auto 0;
}

.mb {
    margin: 0 auto 3rem;
}

.mtb {
    margin: 3rem auto;
}

@media (min-width: 821px) {

    .mt1 {
        margin: 1rem auto 0;
    }

    .mt2 {
        margin: 2rem auto 0;
    }

    .mt3 {
        margin: 3rem auto 0;
    }

    .mt {
        margin: 6rem auto 0;
    }

    .mt8 {
        margin: 8rem auto 0;
    }

    .mb {
        margin: 0 auto 6rem;
    }

    .mtb {
        margin: 6rem auto;
    }

}

/*//////////////////// INNER ////////////////////////*/

.inner {
    margin: auto;
}

.inner.w109 {
    width: 100%;
}

.inner.w98 {
    width: 90%;
}

.inner.w987 {
    width: 90%;
}

@media (min-width: 821px) {

    .inner.w109 {
        width: 90%;
    }

    .inner.w98 {
        width: 80%;
    }

    .inner.w987 {
        width: 80%;
    }

}

@media (min-width: 980px) {

    .inner.w987 {
        width: 70%;
    }

}

/*////////////////////  STICKY ////////////////////////*/

@media (min-width: 1000px) {

    .sticky {
        position: sticky;
        top: 120px;
        display: block;
        height: fit-content;
    }

}

/*//////////////////// TOAST B ////////////////////////*/

.toastB {
    display: block;
    align-content: center;
    position: fixed;
    bottom: -200px;
    left: 0;
    width: 100%;
    background: var(--color-primary);
    transition: all 0.5s;
    z-index: 1;

    color: var(--color-non);
    padding: 2rem 0;
}

.toastB .inner-contents {
    display: flex;
    justify-content: center;
}

.toastB .inner-contents a {
    display: flex;
    align-items: center;
}

.toastB .inner-contents a:hover {
    text-decoration: none;
}

.toastB .inner-contents a:not(:last-child) {
    border-right: 1px dotted var(--color-light);
}

.toastB .inner-contents .button.tel>span {
    display: none;
}

.toastB .inner-contents .button.tel .inner-button {
    display: inline-block;
    text-align: left;
    margin: 0 0 0 1rem;
}

@media (min-width: 821px) {

    .toastB .inner-contents .button.tel>span {
        display: inline-block;
        font-size: 3.6rem;
    }

}

/*//////////////////// POPUP ////////////////////////*/

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
    pointer-events: none;
    opacity: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.7);
}

.popup-item {
    cursor: pointer;
}

.popup.is-active {
    opacity: 1;
    pointer-events: auto;
}

.popup-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.popup-contents {
    position: relative;
    background: var(--color-non);
    width: 100%;
    padding: 0;
    max-width: 800px;
}

.popup-close {
    position: absolute;
    right: 0;
    z-index: 10;
}

.popup .swiper-slide .slide-inner {
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-color: var(--color-60) var(--color-dark);
    scrollbar-width: thin;
    height: 100%;
}

.popup .df.jce {
    display: flex;
    justify-content: end;
}

.popup h3 span {
    font-size: 1.1rem;
    margin: 0 0 .5rem;
    font-weight: 400;
    color: #fff;
    background: #000000;
    padding: .3rem 1rem;
    font-family: var(--font-family-en);
    font-weight: 600;
    text-align: right;
    margin: .5rem 0 0;
}

.popup .swiper-slide {
    display: flex;
    align-items: center;
    height: auto;
}

.popup .products-img {
    height: 25vh;
    margin: 0;
}

@media (min-width: 821px) {

    .popup .swiper-slide .slide-inner {
        max-height: 70vh;
    }

    .popup .swiper-slide .slide-inner {
        width: 100%;
    }

    .popup .products-img {
        flex: .5;
        height: 60vh;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
        margin: 2rem 0;
    }

}

/*//////////////////// ICON ////////////////////////*/

.icon {
    flex: inherit;
    display: flex;
    align-items: center;
    line-height: 3rem;
}

.icon::after {
    content: "";
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.icon.arrowR::after {
    width: 40px;
    height: 40px;
    background: #000 url(../../content/images/icon_arrowR.svg) no-repeat center center / 20px;
    margin: 0 0 0 1rem;
}

.icon.phone::after {
    background: #000 url(../../content/images/icon_phone.svg) no-repeat center center / 20px;
}

.icon.home::after {
    background: #000 url(../../content/images/icon_home.svg) no-repeat center center / 20px;
}

.icon.review::after {
    background: #000 url(../../content/images/icon_voice.svg) no-repeat center center / 30px;
}

/*//////////////////// FOOTER ////////////////////////*/

footer {
    background: #f8f7f7;
    padding: 2rem 0 12rem;
    font-size: 1.4rem;
}

footer .copyright {
    text-align: center;
    font-size: 1.3rem;
}

footer dt {
    font-family: var(--font-family-ja-ttl);
    line-height: 1.5;
    font-weight: 600;
    border-bottom: 1px solid #ccc;
    margin: 0 0 1rem;
}

footer dd {
    margin: 0 0 3rem;
}

footer dd p {
    margin: 1rem 0;
    line-height: 1.2;
}

footer ul li {
    padding: .8rem 0;
}

footer .marker {
    font-size: 1.3rem;
    line-height: 1.2;
    padding: .5rem 1rem;
}

@media (min-width: 821px) {

    footer .inner {
        flex: 1.5;
    }

}

/*//////////////////// PRODUCTS ////////////////////////*/

.products .g3 {
    gap: 0;
}

@media (min-width: 821px) {

    .products .df {
        flex-direction: column;
    }

}

@media (min-width: 1000px) {

    .products .df {
        flex-direction: row;
    }

    .products .g3 {
        gap: calc(var(--gap) * 3);
    }

}

/*//////////////////// VOICE ////////////////////////*/

section.voice {
    padding: clamp(2rem, 4vw, 4rem) 0 clamp(6rem, 10vw, 10rem);
}

.voice .slide-wrap {
    position: relative;
    padding: 0 0 4rem;
}

.voice .slide-wrap .inner {
    border: 3px solid var(--color-accent-sec);
    border-radius: 10px;
    box-shadow: 6px 6px var(--color-accent-thi);
    padding: 2rem;
}

.voice .slide-wrap .inner h3 {
    line-height: 1.6;
    background: #0096ae;
    border-radius: 6px;
    padding: 1rem 1.5rem;
    margin: 0;
    color: var(--color-non);
}

.voice .slide-wrap .inner h3.navy {
    background: var(--color-navy);
}

.voice .slide-wrap .inner p {
    line-height: 1.6;
}

.voice .slide-wrap .inner .attribute {
    text-align: center;
    font-weight: 600;
    padding: 0 0 1rem;
}

.voice .icon {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
}

.voice .icon.brown::after {
    background-color: #7f7f7f;
}

.voice .icon.green::after {
    background-color: #128F9D;
}

.voice .icon.navy::after {
    background-color: var(--color-navy);
}

/*//////////////////// CONCERN ////////////////////////*/

.concern .container {
    max-width: 1000px;
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(10px) brightness(3);
    -webkit-backdrop-filter: blur(10px) brightness(3);
    border-radius: 10px;
    padding: 3rem 4% 4rem;
}

.concern .dg {
    gap: 150px 4%;
    margin: 0 0 20rem;
}

.concern li {
    position: relative;
    border: 3px solid var(--color-accent-sec);
    border-radius: 10px;
    background: #fff;
    box-shadow: 6px 6px var(--color-accent-thi);
    padding: 1.2rem;
    margin: 0;
}

.concern ul.dg li {
    background: #7b776f;
    background: #7f7f7f;
    color: #fff;

}

.concern li.df {
    border: 3px solid var(--color-accent-sec);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 50px 50px -50px rgba(0, 0, 0, 0.4);
}

.concern li.df h3 {
    font-size: clamp(1.7rem, 1.567rem + 0.56vw, 2rem);
}

.concern .thumb {
    height: 100px;
    border-radius: 6px;
    padding: 2rem;
    margin: 0;
}

.concern .ill {
    position: absolute;
    bottom: -110px;
    left: 10%;
}

.concern li:nth-child(2n) .ill {
    left: auto;
    right: 10%;
}

.concern .c12 h3 {
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.6;
}

.concern h2.section-title>span.x2 {
    font-family: var(--font-family-ja-ttl);
    font-size: clamp(2rem, 1.028rem + 4.09vw, 4.2rem);
    line-height: 1.5;
    margin: 0 0 1rem;
    font-weight: 600;
    font-feature-settings: "palt" 1;
    letter-spacing: .2rem;
}

.concern .df {
    margin: 5rem 0 1rem;
}

.concern .df .thumb {
    height: 260px;
}

@media (min-width: 641px) {
    .concern li {
        padding: 2rem;
    }
}

@media (min-width: 821px) {
    .concern .dg {
        gap: 120px 30px;
        margin: 0 0 20rem;
    }

    .concern .container {
        padding: 6rem 8% 8rem;
    }

}

/*///////////////////////// Concern /////////////////////////*/

h3.fukidashi {
    font-size: clamp(1.6rem, 1.512rem + 0.37vw, 1.8rem);
    margin: 0 0 1rem;
    text-align: center;
}

.concern-top {
    max-width: 1000px;
    margin: auto;
    text-align: center;
    color: var(--color-non);
}

.concern .odd h3 {
    font-family: var(--font-family-ja-ttl);
    font-size: clamp(1.6rem, 1.512rem + 0.37vw, 1.8rem);
    font-weight: 600;
}


/*///////////////////////// BADGE /////////////////////////*/

.concern .badge {
    position: absolute;
    top: -40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-navy);
    color: #ffffff;
    font-family: var(--font-family-en-cursive);
    text-align: center;
    line-height: 1.2;
    padding-top: 2px;
    z-index: 1;
    letter-spacing: .2rem;
}

.concern li:nth-child(2n+1) .badge {
    right: 10px;
}

.concern li:nth-child(2n) .badge {
    left: 10px;
}

.concern .badge span {
    font-size: 2.4rem;
}

/*//////////////////// BG ////////////////////////*/

.bg {
    position: relative;
    z-index: 0;
    isolation: isolate;
    overflow: clip;
    padding: 0;
}

.bg::before {
    content: "";
    display: block;
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: -1;
    background-image: url(/content/images/home/bg_sp.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transform: translateZ(0);
    will-change: transform;
    pointer-events: none;
}

.bg::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0) 100%);
}

.bg>* {
    position: relative;
    z-index: 1;
}

.bg .space-bg {
    height: 6rem;
}

@media (min-width: 821px) {

    .bg::before {
        background-image: url(/content/images/home/bg.webp);
    }

    .bg .space-bg {
        height: 12rem;
    }

}

/*//////////////////// MESSAGE ////////////////////////*/

.message h2 {
    margin: 0 0 2rem;
}

.message .contents-img {
    flex: 1;
}

.message .contents-img img {
    display: block;
    max-width: 100%;
    border-radius: 10px;
}

.message .contents-text {
    padding: 0 2rem 4rem;
}

.message .lead {
    font-size: 1.6rem;
    line-height: 2.2;
}

.logo-message {
    width: 100%;
    max-width: 400px;
}

@media (min-width: 821px) {

    .message .contents-text {
        padding: 0;
    }

}

@media (min-width: 1025px) {

    .message .contents-img {
        flex: 1.3;
    }

}

/*//////////////////// ABOUT ////////////////////////*/

.about img {
    display: block;
    max-width: 100%;
    border-radius: 10px;
}

/*//////////////////// LIST ////////////////////////*/

ul.list {
    position: relative;
    padding: 1rem 2rem;
}

ul.list li {
    display: flex;
    align-items: center;
    margin: 0 0 1rem;
}

ul.list li:before {
    content: '';
    position: absolute;
    left: 0;
    width: 5px;
    height: 5px;
    background: url(../../content/images/icon_dot.png) no-repeat center / contain;
}

/*//////////////////// MARKER ////////////////////////*/

.marker {
    display: inline-block;
    background: #999;
    color: #FFF;
    line-height: 1.2;
    padding: .5rem 1rem;
    margin: .5rem 0 0;
    border-radius: 2px;
}

/*//////////////////// PRODUCTS ////////////////////////*/

.products .popup-item {
    background: #fff;
    border-radius: 6px;
    box-shadow:
        0 50px 50px -50px rgba(0, 0, 0, 0.2),
        0 80px 90px -50px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s var(--easing), box-shadow 0.5s var(--easing);
}

@media (min-width: 821px) {

    .products .popup-item:hover {
        transform: translateY(-3px);
        box-shadow:
            0 52px 80px -40px rgba(0, 0, 0, 0.36),
            0 12px 24px -10px rgba(0, 0, 0, 0.22);
    }
}

.products .popup-item .products-img {
    position: relative;
    width: 90%;
    margin: 1rem auto 1rem 0;
    height: clamp(180px, 32vw, 220px);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

@media (min-width: 821px) {

    .products .popup-item .products-img::before {
        content: "";
        position: absolute;
        inset: 0;
        background: inherit;
        background-size: cover;
        transform: scale(1);
        filter: grayscale(.1) saturate(.9) brightness(.96);
        transition:
            transform 0.9s cubic-bezier(0.25, 1, 0.5, 1),
            filter 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        will-change: transform, filter;
        pointer-events: none;
    }

    .products .popup-item:hover {
        transform: translateY(-10px);
    }

    .products .popup-item:hover .products-img::before {
        transform: scale(1.12);
        filter: none;
    }
}

.products .popup-item .products-text {
    padding: 1rem 6% 1rem;
}

.products .popup-item .products-text h3 {
    margin: 0;
    font-family: var(--font-family-ja-ttl);
    font-size: clamp(1.6rem, 1.1rem + 0.9vw, 1.8rem);
    font-weight: 600;
    line-height: 1.4;
}

.products .popup-item .products-text p {
    font-size: 1.4rem;
    line-height: 1.8;
}

.products .popup-item .products-logo {
    justify-self: end;
    padding: 0 2rem 0 2rem;
}

.products .popup-item .products-logo img {
    filter: grayscale(1) brightness(0.9);
    transition: filter .6s var(--easing);
    will-change: filter;
}

.products .popup-item:hover .products-logo img {
    filter: none;
}

.products .popup-item .btn-detail {
    margin: 0 0 3rem auto;
    padding: 0 18px;
    width: 60%;
    border-radius: 2px 0 0 2px;
    padding: .6rem 1rem;
    background: #9f9f9f;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-family: var(--font-family-en);
    font-weight: 400;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    font-size: 1.3rem;
    transition: background 0.25s ease, transform 0.25s ease;
}

.products .popup-item:hover .btn-detail {
    background: var(--accent);
}

/*///////////////////////// Utilities /////////////////////////*/

.container {
    width: min(90vw, 1240px);
    margin-inline: auto;
}

@media (min-width: 821px) {

    .offset {
        max-width: 1240px;
        margin: auto;
    }

}

section {
    padding: clamp(6rem, 10vw, 12rem) 0;
}

h1,
h2,
h3 {
    font-style: var(--font-family-ja-ttl);
    font-weight: 600;
    line-height: 1.6;
}

h1 span,
h2 span,
h3 span {
    display: block;
    font-family: var(--font-family-en);
    line-height: 1;
    letter-spacing: 0.05rem;
    font-weight: 400;
}

h1 span {
    font-family: var(--font-family-en);
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 400;
}

h2 span {
    font-size: 1.3rem;
    letter-spacing: 0.1rem;
    line-height: 1.2;
    margin: 0 0 0.5rem;
}

.center {
    text-align: center;
}

.sp {
    display: block !important;
}

.pc {
    display: none !important;
}

@media (min-width: 640px) {

    .sp {
        display: none !important;
    }

    .pc {
        display: block !important;
    }

}

.eyebrow {
    font-size: 1.6rem;
    letter-spacing: .1rem;
    color: var(--color-accent-thi);
    font-weight: 400;
    margin: 0 0 .5rem;
    font-family: var(--font-family-en-cursive);
}

.section-title {
    font-family: var(--font-family-ja-ttl);
    font-size: clamp(1.8rem, 1.271rem + 2.49vw, 3.2rem);
    line-height: 1.5;
    margin: 0 0 2rem;
    font-weight: 600;
    font-feature-settings: "palt" 1;
    letter-spacing: .2rem;
}

.text-link {
    display: inline-block;
    color: var(--brand);
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
}

.btn {
    display: inline-block;
    padding: .9rem 1.2rem;
    border-radius: 999px;
    border: 1px solid var(--brand);
    font-weight: 700;
}

.btn.primary {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}

.btn.ghost {
    background: transparent;
    color: var(--brand);
}

.btn.small {
    padding: .6rem .9rem;
    font-size: .9rem;
}



/*///////////////////////// Header /////////////////////////*/

.site-header {
    display: none;
}

.logo-tate {
    display: block;
    margin: auto;
    width: auto;
    max-width: 100%;
}

@media (max-width: 600px) {
    .logo-tate {
        width: min(100%, 280px);
        height: auto;
    }
}

@media (min-width: 601px) {

    .site-header {
        display: block;
        position: sticky;
        top: 0;
        z-index: 50;
        background: rgba(255, 255, 255, 0.5);
        -webkit-backdrop-filter: blur(10px) brightness(2);
        backdrop-filter: blur(10px) brightness(2);
        border-bottom: 1px solid var(--line);
        box-shadow: 0px 10px 10px -5px rgba(0, 0, 0, 0.1);
    }

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem .5rem;
    }

    .brand {
        font-weight: 800;
        letter-spacing: .06em;
        font-size: 1.1rem;
    }

    .brand span {
        font-weight: 400;
        margin-right: .35em;
        color: var(--muted);
    }

}

/*///////////////////////// phone /////////////////////////*/

.phone-number {
    display: none;
}

@media (min-width: 769px) {
    .phone-number {
        font-family: var(--font-family-number);
        font-optical-sizing: auto;
        font-weight: 600;
        font-style: normal;
        flex: 0 1 auto;
        display: flex;
        align-items: center;
        letter-spacing: -0.2rem;
    }

    .phone-number span {
        font-size: clamp(2.6rem, 1.981rem + 2.6vw, 4rem);
        color: var(--color-basic);
        white-space: nowrap;
    }
}

.site-header .nav-right a {
    display: block;
}

.site-header .phone-box {
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.2;
}

.phone-right {
    flex: 0 0 auto;
    display: flex;
    gap: 6px;
}

.phone-right p {
    margin: 0;
    padding: .5rem .8rem;
    background: var(--color-navy);
    color: #fff;
    font-family: var(--font-family-ja-ttl);
    font-size: clamp(10px, 1.6vw, 14px);
    font-weight: 600;
    line-height: 1.1;
    border-radius: 2px;
    text-align: center;
    white-space: nowrap;
}

.header-inner .nav-right {
    margin-left: auto;
}

.phone-right p.hour24 {
    display: block;
    background: var(--accent);
}

@media (min-width: 480px) {
    .phone-right p.hour24 {
        display: block;
        background: var(--accent);
    }
}

/*//////////////////// HERO ////////////////////////*/

.hero {
    padding: 0;
}

.hero-left {
    display: none;
}

.hero-center {
    flex: inherit;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
}

.hero-right {
    display: flex;
    flex-direction: column;
    flex: inherit;
    width: 100%;
    height: 100%;
}

h1.hero-h1 {
    font-size: 1.6rem;
}

.hero .case {
    background: #a6a6a6;
    color: #FFF;
    line-height: 1.6;
    border-radius: 6px;
    padding: 1rem;
    margin: 4rem auto 2rem;
    font-weight: 600;
    font-size: 1.6rem;
    max-width: 340px;
}

@media (min-width: 821px) {

    .hero-center {
        width: 40%;
    }

    .hero-right {
        width: 60%;
    }

}

@media (min-width: 1025px) {

    .hero .df {
        min-height: 600px;
        height: 100vh;
        align-items: stretch;
    }

    .hero-right,
    .hero-right .basic,
    .hero-right .swiper,
    .hero-right .swiper-wrapper {
        height: 100%;
    }

    .hero-right .basic .swiper-slide {
        height: 100% !important;
        min-height: 0;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        flex: inherit;
        width: 20%;
    }

    .hero-left figure {
        margin: 0;
    }

    .hero-left figure:nth-child(1) {
        height: 30%;
    }

    .hero-left figure:nth-child(2) {
        height: 45%;
    }

    .hero-left figure:nth-child(3) {
        height: 25%;
    }

    .hero-center {
        width: 36%;
    }

    .hero-right {
        width: 44%;
    }

}

/*////////////////////////// 元のSCROLL BUTTON /////////////////////////*/
.scroll-btn {
    --scroll-size: 64px;
    position: relative;
    display: inline-block;
    width: var(--scroll-size);
    height: 140px;
    color: var(--color-basic);
    text-decoration: none;
    isolation: isolate;
}

.scroll-btn .scroll-text {
    position: absolute;
    top: 0;
    left: calc(50% + 14px);
    transform: translateX(-50%);
    writing-mode: vertical-rl;
    font-size: 1.1rem;
    letter-spacing: .18em;
    font-weight: 600;
    user-select: none;
    z-index: 2;
}

.scroll-btn .arrow {
    position: absolute;
    left: 50%;
    top: 0;
    width: 0;
    height: 100%;
    transform: translateX(-50%);
    z-index: 1;
    will-change: transform, opacity;
}



.scroll-btn .arrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(-50%);
    width: 1px;
    height: calc(100% - (var(--scroll-size) / 2));
    background: currentColor;
    opacity: .8;
}

.scroll-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: var(--scroll-size);
    height: var(--scroll-size);
    transform: translateX(-50%);
    border: 1px solid #999;
    border-radius: 999px;
    background: transparent;
    z-index: 0;
}


.scroll-btn .arrow::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: calc(var(--scroll-size) / 2);
    transform: translate(-50%, -1px) rotate(45deg);
    width: 14px;
    height: 14px;
    border-right: 1px solid currentColor;
}

.scroll-btn .dot {
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    z-index: 2;
    animation: scrollDot 2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
    will-change: top, opacity;
}

@keyframes scrollDot {
    0% {
        top: 8px;
        opacity: 0;
    }

    60% {
        top: calc(100% - (var(--scroll-size)/2) - 8px);
        opacity: 0.6;
    }

    100% {
        top: calc(100% - (var(--scroll-size)/2) - 8px);
        opacity: 0;
    }
}

.scroll-btn:hover::after,
.scroll-btn:focus-visible::after {
    box-shadow: 0 0 0 6px color-mix(in oklab, currentColor 12%, transparent);
}

@media (prefers-reduced-motion: reduce) {
    .scroll-btn .arrow {
        animation: none;
    }
}



/*////////////////////////// Products /////////////////////////*/

.products a:hover {
    opacity: 1;
}

section.products {
    padding: clamp(5rem, 10vw, 14rem) 3rem;
    background: #f8f7f7;
}

section.products>* {
    position: relative;
    z-index: 1;
}

.products .df {
    max-width: 320px;
    margin: auto;
}

@media (min-width: 460px) {
    .products .df {
        max-width: 80%;
    }
}

.products .df .contents-text {
    padding: 0;
}

img.modal-logo {
    margin: .5rem 0 1.5rem;
}

.products .g2 {
    gap: calc(var(--gap) * 3);
}

@media (min-width: 821px) {

    .products .df {
        max-width: 1400px;
        margin: auto;
    }

    .products .df .contents-img {
        flex: 7;
    }

    .products .df .contents-text {
        flex: 3;
        padding: 3rem 0 3rem 3rem;
    }

    .products .g2 {
        gap: calc(var(--gap) * 1.5);
    }

}

@media (min-width: 1240px) {
    .products .g2 {
        gap: calc(var(--gap) * 2);
    }
}

.products .contents-img .dg {
    max-width: 1000px;
    margin: auto;
}

.brand-logo {
    font-family: var(--font-family-ja-ttl);
    font-size: clamp(1.8rem, 1.2rem + 1.5vw, 2.2rem);
    font-weight: 600;
    line-height: 1.2;
    padding: 4rem 2rem 1rem;
    font-feature-settings: "palt" 1;
}

.brand-logo span {
    font-family: var(--font-family-en-cursive);
    font-size: clamp(1.2rem, 0.9rem + 0.6vw, 1.6rem);
    font-weight: 400;
    color: var(--muted);
    margin-left: 0.8rem;
}

/*////////////////////////// CONTACT /////////////////////////*/

section#contact {
    padding: clamp(4rem, 8vw, 8rem) 1rem;
}

.support-dial {
    position: relative;
    display: block;
    background: var(--accent);
    border: var(--color-non) 3px solid;
    color: #fff;
    border-radius: 10px;
    box-shadow: 0px 20px 20px -10px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    max-width: 1000px;
    margin: auto;
}

.support-dial .dial-avatar img {
    width: 100px;
    object-fit: contain;
    display: block;
}

.support-dial .dial-eyebrow {
    margin: 0;
    font-size: 1.4rem;
    font-family: var(--font-family-number);
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: .1rem;
}

.support-dial .dial-sub {
    font-size: 1.7rem;
    line-height: 1.3;
    font-weight: 400;
    margin: 0 0 .5rem;
}

.support-dial .dial-ttl {
    margin: 0;
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 600;
    font-family: var(--font-family-ja-ttl);
    line-height: 1.3;
}

.support-dial .dial-num {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, .14);
    border-radius: 8px;
    justify-content: center;
}

.support-dial .dial-icon {
    flex: 0 0 auto;
    max-width: 40px;
}

.support-dial .dial-num .num {
    font-family: var(--font-family-number);
    font-weight: 600;
    letter-spacing: -.02em;
    font-size: clamp(3rem, 2.116rem + 3.72vw, 5rem);
    white-space: nowrap;
    line-height: 1;
}

.support-dial .dial-note {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-none);
    border-radius: 4px;
    text-align: center;
    font-size: 1.6rem;
    padding: 8px 10px;
    font-weight: 600;
    line-height: 1.2;
    margin: .5rem 0 0;
}

img.free-ill {
    position: absolute;
    top: -30px;
    right: 10px;
    width: 60px;
}

@media (min-width: 540px) {
    img.free-ill {
        top: -30px;
        width: 66px;
    }
}

@media (min-width: 820px) {

    .support-dial .dial-ttl {
        font-size: clamp(1.8rem, 2.4vw, 3rem);
    }

    .support-dial .dial-icon {
        max-width: 56px;
    }
}

@media (min-width: 820px) {

    .support-dial .dial-num {
        background: transparent;
        padding: 0;
    }
}

#contact .support-dial .df {
    padding: 0 2rem;
}

#contact .support-dial .dial-text {
    display: flex;
    align-items: center;
    padding: 2rem 0;
    justify-content: center;
}

#contact .support-dial .dial-text .inner {
    margin: 0 0 0 1.5rem;
}

#contact .support-dial .dial-text::before {
    content: "";
    background: url(/content/images/contact3.png) no-repeat center / cover;
    padding: 4rem;
}

#contact .support-dial .dial-call {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 1rem 0;
}

/*////////////////////////// PRODUCTS /////////////////////////*/

.products .contact {
    display: none;
}

@media (min-width: 1000px) {

    .products .contact {
        display: block;
        margin: 6rem 0 2rem;
    }

    .products .contact .support-dial .dial-inner {
        display: grid;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
        border-radius: 6px;
    }

    .products .contact .support-dial .dial-num .num {
        font-size: clamp(1.6rem, 2.116rem + 3.72vw, 3rem);
    }

    .products .contact .support-dial .dial-avatar img {
        object-fit: contain;
        display: block;
        text-align: center;
        margin: auto;
        position: absolute;
        width: 80%;
        top: -3.5rem;
        right: 0;
        left: 0;
        max-width: 240px;
    }

    .products .contact .support-dial .dial-icon {
        max-width: 40px;
    }

    .products .contact .support-dial .dial-text {
        padding: 2rem 0 0;
    }

}

/*///////////////////////// toast-foot /////////////////////////*/

.bg-grad-s {
    background: linear-gradient(45deg, #010b27 00%, #07b2cc 50%, #009dae 100%);
    background-size: 200% 200%;
    animation: gradationAnim 10s ease infinite;
}

.bg-grad {
    background: linear-gradient(135deg, #009dae 00%, #07b2cc 50%, #010b27 100%);
    background-size: 200% 200%;
    animation: gradationAnim 6s ease infinite;
}

.bg-grad-s {
    position: relative;
    isolation: isolate;
}

@keyframes gradationAnim {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

.toast-foot .toast-inner {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 10px;
    padding: 0 10px;
    max-width: 800px;
    margin: auto;
}

.toast-foot .dial-num {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, .2);
    border-radius: 8px;
    justify-content: center;
    border: solid 1px #64c9d8;
    backdrop-filter: blur(10px);
    box-shadow: 0px 10px 10px -10px rgb(0, 15, 33, .4);
    color: var(--color-non);
}

.toast-foot .dial-num .num {
    display: none;
}

.toast-foot .dial-num .phone-now {
    font-family: var(--font-family-ja-ttl);
    font-weight: 600;
    font-size: clamp(2rem, 1.558rem + 1.86vw, 3rem);
    white-space: nowrap;
    line-height: 1;
    display: block;
}

.toast-foot .dial-ttl {
    margin: 0 0 1rem;
    font-size: clamp(1.2rem, 2vw, 2rem);
    font-weight: 600;
    font-family: var(--font-family-ja-ttl);
    line-height: 1.2;
}

.toast-foot .dial-sub {
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 400;
    margin: 1rem 0 0.3rem;
}

@media (min-width: 640px) {
    .toast-foot .toast-inner {
        position: relative;
        grid-template-columns: 30% 1fr;
        z-index: 1;
    }

    .toast-foot .dial-num .num {
        font-family: var(--font-family-number);
        font-weight: 600;
        letter-spacing: -.02em;
        font-size: clamp(3rem, 2.116rem + 3.72vw, 4.6rem);
        white-space: nowrap;
        line-height: 1;
        display: block;
    }

    .toast-foot .dial-num .phone-now {
        display: none;
    }
}

/*///////////////////////// NOISE /////////////////////////*/

.bg-grad-s::after,
.bg-grad::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' seed='2'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    background-size: 160px 160px;
    background-repeat: repeat;
    opacity: .9;
    mix-blend-mode: multiply;
}

/*
@keyframes noiseShift {
    0% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(-1px, 1px, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {

    .bg-grad-s::after,
    .bg-grad::after {
        animation: none;
    }
}
    */

/*///////////////////////// Message /////////////////////////*/

.about {
    border-top: 1px solid var(--line);
}

.about-points {
    padding-left: 1.1rem;
}

.about-points li {
    margin: .2rem 0;
}

.about-visuals .mosaic {
    display: grid;
    gap: 4px;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 140px;
}

.about .inner {
    padding: 0 0 4rem;
}

/*//////////////////// 404 ////////////////////////*/
.n-found {
    padding: clamp(6rem, 10vw, 12rem) 0 0;
}
.notfound {
    font-family: var(--font-family-en);
    font-size: 10rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--accent);
}

.notfound span {
    display: block;
    font-size: 1.6rem;
    font-family: var(--font-family-en-cursive);
}

.n-found .contents-text p.df {
    display: flex;
    justify-content: center;
}

/*///////////////////////// Other /////////////////////////*/

.underline {
    text-decoration: none;
    border-bottom: 1px dotted var(--color-basic);
    padding-bottom: 2px;
}

.txt-btn {
    font-family: var(--font-family-ja-ttl);
    font-weight: 600;
    font-size: 1.7rem;
}

.event-day {
    display: block;
    width: 200px;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.event-day {
    display: block;
    width: 150px;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

@media (min-width: 640px) {
    .event-day {
        width: 200px;
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
}

.event-day {
    display: block;
    width: 200px;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.event-day img {
    -webkit-filter: drop-shadow(0px 15px 10px rgba(0, 0, 0, 0.5));
    filter: drop-shadow(0px 15px 10px rgba(0, 0, 0, 0.5));
}