@charset "utf-8";

html {
    scroll-behavior: smooth;
}

/**
* FOUT Support
*/
html.wf-loading {
    visibility: hidden;
}

html.wf-active,
html.loading-delay {
    visibility: visible;
}

/* Adobe フォントイベント
読み込み（.wf-loading）：Web フォントの読み込み中
アクティブ（.wf-active）：Web フォントがアクティブな状態
非アクティブ（.wf-inactive）：Web フォントが非アクティブな状態
*/


/**
* Variable
*/
:root {
    /* Color
    ------------------------ */
    /* e.g. color: var(--cr--black); */
    --cr--white: #fff;
    --cr--white-rgb: 255 255 255;
    --cr--red: #d50202;
    --cr--gray: #F6F6F6;
    --cr--gray-l: #fafafa;
    --cr--gray-d: #A8A8A8;
    --cr--green: #75BB2A;
    --cr--green-rgb: 117 187 42;
    --cr--green-d: #53A000;
    --cr--green-l: #CDE6B1;
    --cr--orange: #F8B50F;
    --cr--orange-l: #FDFAF2;
    --cr--orange-d: #df9f00;
    --cr--brown: #C99619;
    --cr--brown-l: #FBE987;
    --cr--yellow: #F8D200;
    --cr--black: #1D1D1D;
    --cr--black-rgb: 29 29 29;

    /* Font Size
    ------------------------ */
    /* e.g. font-size: var(--fSize--16); */
    --fSize--8: 0.5rem;
    --fSize--10: 0.625rem;
    --fSize--11: 0.687rem;
    --fSize--12: 0.75rem;
    --fSize--13: 0.812rem;
    --fSize--14: 0.875rem;
    --fSize--15: 0.9375rem;
    --fSize--16: 1rem;
    --fSize--18: 1.125rem;
    --fSize--20: 1.25rem;
    --fSize--22: 1.375rem;
    --fSize--23: 1.437rem;
    --fSize--24: 1.5rem;
    --fSize--25: 1.562rem;
    --fSize--28: 1.75rem;
    --fSize--30: 1.875rem;
    --fSize--32: 2rem;
    --fSize--38: 2.375rem;
    --fSize--40: 2.5rem;
    --fSize--50: 3.125rem;
    --fSize--60: 3.75rem;

    /* Font Family
    ------------------------ */
    /* e.g. font-family: var(--wf--DID); */
    --wf--SHSJP: source-han-sans-japanese, sans-serif;
    --wf--ZMG: "zen-maru-gothic", sans-serif;


    /* Font Weight
    ------------------------ */
    --fw--bold: 700;
}



/**
* Fonts, Txt
*/
/* Web Font
------------------------ */
.wf--SHSJP {
    /* Source Han Sans JP Variable */
    font-family: font-family: source-han-sans-japanese, sans-serif;
    font-style: normal;
}

.wf--ZMG {
    /* Zen Maru Gothic */
    font-family: "zen-maru-gothic", sans-serif;
    font-weight: 500;
    font-style: normal;
}


/* Color
------------------------ */
.fc--green {
    color: var(--cr--green-d);
}
.fc--orange {
    color: var(--cr--orange-d);
}

/* Size
------------------------ */
.fs--14 {
    font-size: var(--fSize--14);
}
.fs--s {
    font-size: var(--fSize--12);
}
.fs--m {
    font-size: var(--fSize--16);
}
.fs--l {
    font-size: var(--fSize--18);
    @media print, screen and (min-width: 576px) {
        font-size: var(--fSize--22);
    }
    /* 576pxとそれ以上 */
}
.fs--xl {
    font-size: var(--fSize--20);
    @media print, screen and (min-width: 576px) {
        font-size: var(--fSize--30);
    }
    /* 576pxとそれ以上 */
}

/* Line Spacing
------------------------ */
.text--body {
    /* line-height: 1.875rem; */
    line-height: 2rem;
}
.text--body__p {
    & p {
        &:not(:last-child) {
            margin-bottom: 15px;
        }
    }
}
.text--indent {
    text-indent: 1rem;
    /* & p:first-child {
        text-indent: 1rem;
    } */
}

/* Weight
------------------------ */
.fw--bold {
    /* font-weight: var(--fw--bold); */
    font-weight: 700;
}

/* Align
------------------------ */
.ta--center {
    text-align: center;
}

.ta--left {
    text-align: left;
}

.ta--right {
    text-align: right;
}


/**
* Display
*/
.sp {
    display: block;

    @media print,
    screen and (min-width: 768px) {
        display: none;
    }

    /* 768pxとそれ以上 */
}

.pc {
    display: none;

    @media print,
    screen and (min-width: 768px) {
        display: block;
    }

    /* 768pxとそれ以上 */
}

.d--none {
    display: none !important;
}

.d--block {
    display: block;
}

.d--inline {
    display: inline !important;
}

.d--inline__block {
    display: inline-block !important;
}

.d--table {
    display: table !important;
}



/**
* Layout
*/

/* flex
------------------------ */
.column-gap10 { column-gap: 10px; }
.column-gap20 { column-gap: 20px; }
.column-gap30 { column-gap: 30px; }
.column-gap40 { column-gap: 40px; }
.column-gap50 { column-gap: 50px; }
.row-gap10 { row-gap: 10px; }
.row-gap20 { row-gap: 20px; }
.row-gap30 { row-gap: 30px; }
.row-gap40 { row-gap: 40px; }
.row-gap50 { row-gap: 50px; }

.flex {
    display: flex;
    flex-direction: column;
    @media print,screen and (min-width: 576px) {
        flex-direction: row;
    }
    /* 576pxとそれ以上 */
    @media print,screen and (min-width: 768px) {
        /* flex-direction: row; */
    }
    /* 768pxとそれ以上 */

}
.flex__reverse {
    flex-direction: row-reverse;
}
.flex--wrap {
    flex-wrap: wrap;
}
.flex--align--center {
    align-items: center;
}
.flex--justify--center {
    justify-content: center;
}
.flex--shrink--0 {
    flex-shrink: 0;
}
.flex--basis50p {
    .flex--items {
        flex-basis: calc(100% / 2);
    }
}
.flex--2img {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    @media print, screen and (min-width: 1200px) {
        flex-direction: row;
        align-items: flex-start;
    }
    /* 1200pxとそれ以上 */
}

/* Float
------------------------ */
.fl {
    float: none;
    @media print, screen and (min-width: 576px) {
        float: left;
    }
    /* 576pxとそれ以上 */
}
.fr {
    font: none;
    @media print, screen and (min-width: 576px) {
        float: right;
    }
    /* 576pxとそれ以上 */
}
img.fl {
    display: block;
    margin: 0 auto 20px;
    @media print, screen and (min-width: 576px) {
        margin: 0 1.5rem .5rem 0;
    }
    /* 576pxとそれ以上 */
}
img.fr {
    display: block;
    margin: 0 auto 20px;
    @media print, screen and (min-width: 576px) {
        margin: 0 0 .5rem 1.5rem;
    }
    /* 576pxとそれ以上 */
}
.cf {
    &:after {
        display: block;
        content: "";
        clear: both;
    }
}

/* Space
------------------------ */
.w--50 {
    @media print, screen and (min-width: 576px) {
        width: 50%;
    }
    /* 576pxとそれ以上 */
}
.mt1 {
    margin-top: 1rem;
}
.mr1-pc {
    @media print, screen and (min-width: 576px) {
        margin-right: 1rem;
    }
    /* 576pxとそれ以上 */
}
.mr60-pc {
    @media print, screen and (min-width: 576px) {
        margin-right: 60px;
    }
    /* 576pxとそれ以上 */
}
.ml60-pc {
    @media print, screen and (min-width: 576px) {
        margin-left: 60px;
    }
    /* 576pxとそれ以上 */
}
.mb0 {
    margin-bottom: 0 !important;
}
.mb1 {
    margin-bottom: 1rem;
}
.mb2 {
    margin-bottom: 2rem;
}

/**
* List
*/
.list--circle,
.list--square,
.list--decimal,
.list--check {
    line-height: 1.8;
    margin-left: 20px;
}
/* リスト：前頭白丸
------------------------ */
.list--circle {
    > li {
        list-style-type: circle;
    }
}
/* リスト：先頭ブロック
------------------------ */
.list--square {
    > li {
        list-style-type: square;
    }
}
/* リスト：数字
------------------------ */
.list--decimal {
    > li {
        list-style-type: decimal;
    }
}
/* リスト：チェックマーク
------------------------ */
.list--check {
    margin-left: 0;
    > li {
        padding-left: 20px;
        background: url(../images/loop/icon--check.svg) left 7px no-repeat;
    }
}
/* 定義リスト：水平
------------------------ */
.dl--horizontal {
    display: flex;
    flex-direction: column;
    gap: 20px;
    @media print,screen and (min-width: 576px) {
        flex-direction: row;
    }
    /* 576pxとそれ以上 */
}

/**
* Table
*/
.tb--scroll {
    overflow-x: auto;
  }

  .table {
    width: auto;
    table-layout: fixed;
  }
  .table th {
    /* background: #f5f5f5; */
  }
  .table th,
  .table td {
    display: block;
    padding: 15px 8px;
    font-size: var(--fSize--16);
    /* font-weight: 700; */
    font-weight: normal;
    border-bottom: 1px solid rgb(var(--cr--black-rgb) / 0.5) ;
    @media print, screen and (min-width: 768px) {
        padding: 15px 20px;
    }
    /* 768pxとそれ以上 */
  }
  @media print, screen and (min-width: 768px) {
    .table th,
    .table td {
      display: table-cell;
      font-size: 1rem;
    }
  }
  .table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
  }
  .table tbody + tbody {
    border-top: 2px solid #dee2e6;
  }

  .table--wauto {
    width: auto;
  }

  .table--no-block th,
  .table--no-block td {
    display: table-cell;
  }

  .table-bordered {
    border: 1px solid #dee2e6;
  }

  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6;
  }

  .table-bordered thead th,
  .table-bordered thead td {
    border-bottom-width: 2px;
  }

/**
* Decoration
*/
/* line
------------------------ */
.underline-dotted-green {
    padding-bottom: 1px;
    border-bottom: 2px dotted var(--cr--green);
}

/* Box Shadow
------------------------ */
.shadow--box {
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
}
.shadow--img {
    box-shadow: 10px 10px 15px 0px rgba(0, 0, 0, 0.1);
    outline: 1px solid var(--cr--white);
}


/* Box
------------------------ */
.box,
.box--white,
.box--gray,
.box--green {
    padding: 10px;
    border-radius: 5px;
    box-shadow: 7.66px 6.428px 20px 0px rgba(213, 213, 213, 0.25);
    @media print, screen and (min-width: 576px) {
        padding: 30px;
    }
}
.box--white {
    background-color: var(--cr--white);
}
.box--gray {
    outline: 1px solid rgb(var(--cr--black-rgb) / .1);
    background-color: rgb(var(--cr--black-rgb) / .04);
}
.box--green {
    outline: 1px solid rgb(var(--cr--green-rgb) / .3);
    background-color: rgb(var(--cr--green-rgb) / .05);
}


/**
* Overall Structure
*/
body {
    /* text-align: justify; */
    font-family: var(--wf--SHSJP);
    font-size: var(--fSize--16);
    -webkit-font-feature-settings: "pkna";
    font-feature-settings: "pkna";
    color: var(--cr--black);
    background-color: var(--cr--white);
}

img {
    max-width: 100%;
    height: auto;
}

/* Anchor
------------------------ */
a {
    &:link,
    &:visited,
    &:hover {
        text-decoration: none;
        color: var(--cr--green-d);
        outline: none;
        transition: all 0.3s ease;
    }

    &:hover,
    &:hover img {
        opacity: 0.6;
        transition: all 0.3s ease;
    }

    img {
        transition: all 0.3s ease;
    }
}

/* tel:制御 */
@media print, screen and (min-width: 576px) {
    a[href*="tel:"] {
        text-decoration: none;
        color: var(--cr--black);
        pointer-events: none;
        cursor: default;
    }
}
/* 576pxとそれ以上 */

.link--arrow {
    margin: 0 3px;
    /* font-weight: var(--fw--bold); */
    border-bottom: 1px solid var(--cr--green-d);
    display: inline-block;
    a {
        /* border-bottom: 1px solid $cr--blue; */
        /* display: inline-block; */
    }
    &:before {
        content: "";
        width: 6px;
        height: 10px;
        margin-right: 8px;
        display: inline-block;
        background: url(../images/loop/icon--arrow-link.svg) left center no-repeat;
    }
}

/* 外部リンクにアイコン */
.external-icon:not([href^="https://yotsuba-clinic.com/"])
{
    &:after {
        content: "";
        width: 15px;
        height: 15px;
        margin: 0 5px;
        vertical-align: middle;
        display: inline-block;
        background: url(../images/loop/icon--external.svg) no-repeat;
        background-size: 15px auto;
    }
}

/* ヘッダのfixed対応 */
.offset-anker {
    &:before {
        content: "";
        display: block;
        margin-top: -30px; /* heightと同じ分のネガティブマージン */
        height: 30px; /* 調整したい高さ（固定ヘッダーの高さ） */
        visibility: hidden;
    }
}
/* 疑似要素ネストで@mediaが効かない対策 */
@media print, screen and (min-width: 768px) {
    .offset-anker {
        &:before {
            content: "";
            display: block;
            margin-top: -80px; /* heightと同じ分のネガティブマージン */
            height: 80px; /* 調整したい高さ（固定ヘッダーの高さ） */
            visibility: hidden;
        }
    }
}
/* 768pxとそれ以上 */

.offset-anker {
    /* margin-top: -24px;
    padding-top: 24px;
    @media print, screen and (min-width: 768px) {
        margin-top: -80px;
        padding-top: 80px;
    } */
    /* 768pxとそれ以上 */
}

/* Header
------------------------ */
.header {
    width: 100%;
     @media print, screen and (min-width: 992px) {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 80px;
        padding: 0 30px;
        background-color: var(--cr--white);
        /* box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.05); */
        position: fixed;
        z-index: 10000;
    }
    /* 992pxとそれ以上 */

    /* デスクトップで要素を並べ替える */
    @media print, screen and (min-width: 768px) {
        .btns { order: 3; }
        .logo { order: 1; }
        .main-nav { order: 2; }
    }
    /* 768pxとそれ以上 */

    .btns {
        display: flex;
        justify-content: center;
        text-align: center;
        font-weight: 400;
        font-size: var(--fSize--10);
        letter-spacing: .05em;
        color: var(--cr--white);
        position: fixed;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10000;
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.05);
        @media print, screen and (min-width: 576px) {
            font-size: var(--fSize--14);
            position: relative;
            top: auto;
            left: auto;
            transform: none;
            box-shadow: none;
        }
        /* 576pxとそれ以上 */
        @media print, screen and (min-width: 992px) {
            right: 80px;
        }
        /* 992pxとそれ以上 */
        @media print, screen and (min-width: 1580px) {
            right: auto;
        }
        /* 1580pxとそれ以上 */

        /* 共通設定 */
        .btns--time a,
        .btns--first a {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 158px;
            padding: 7px 0;
            color: var(--cr--white);
            &:hover {
                opacity: .5;
            }
        }
        .btns--time {
            a {
                border-radius: 0 0 0 8px;
                background-color: var(--cr--orange);
                @media print, screen and (min-width: 576px) {
                    width: 220px;
                    padding: 13px 0;
                    border-radius: 30px 0 0 30px;
                }
                /* 576pxとそれ以上 */
                @media print, screen and (min-width: 768px) {
                    width: 220px;
                    padding: 13px 0;
                    border-radius: 30px 0 0 30px;
                }
                /* 768pxとそれ以上 */

                &:before {
                    content: '';
                    display: inline-block;
                    width: 7px;
                    height: 11px;
                    margin-right: 5px;
                    background: url(../images/loop/icon-phone-w.png) no-repeat center left / cover;
                }
                /* 疑似要素ネストで@mediaが効かない対策 */
                @media print, screen and (min-width: 576px) {
                    &:before {
                        width: 11px;
                        height: 18px;
                        margin-right: 8px;
                    }
                }
                /* 576pxとそれ以上 */
            }
        }
        .btns--first {
            a {
                border-radius: 0 0 8px 0;
                background-color: var(--cr--green);
                @media print, screen and (min-width: 576px) {
                    width: 220px;
                    padding: 13px 0 14px;
                    border-radius: 0 30px 30px 0;
                }
                /* 576pxとそれ以上 */
                @media print, screen and (min-width: 768px) {
                    width: 220px;
                    padding: 14px 0;
                    border-radius: 0 30px 30px 0;
                }
                /* 768pxとそれ以上 */

                &:before {
                    content: '';
                    display: inline-block;
                    width: 11px;
                    height: 11px;
                    margin-right: 5px;
                    background: url(../images/loop/icon-arrow-right-circle.png) no-repeat center left / cover;
                }
                /* 疑似要素ネストで@mediaが効かない対策 */
                @media print, screen and (min-width: 576px) {
                    &:before {
                        width: 16px;
                        height: 16px;
                        margin-right: 8px;
                    }
                }
                /* 576pxとそれ以上 */
            }
        }
    }
    .logo {
        display: flex;
        flex-direction: column;
        gap: 7px;
        margin: 40px 0 20px 20px;
        @media print, screen and (min-width: 768px) {

        }
        /* 768pxとそれ以上 */
        @media print, screen and (min-width: 992px) {
            gap: 20px;
            flex-direction: row;
            margin: 0;
        }
        /* 992pxとそれ以上 */
        .logo--img {
            flex-shrink: 0;
            img {}
        }
        .logo--txt {
            line-height: 1.6;
            margin-left: 20px;
            font-size: var(--fSize--10);
            @media print, screen and (min-width: 576px) {
            }
            /* 576pxとそれ以上 */
            @media print, screen and (min-width: 768px) {
                margin-left: 0;
            }
            /* 768pxとそれ以上 */
        }
    }
}

#menuButton {
    display: block;
    width: 60px;
    height: 53px;
    position: fixed;
    right: 20px;
    top: 50px;
    z-index: 10000;
    border-radius: 5px;
    background-color: var(--cr--white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    @media print, screen and (min-width: 576px) {

    }
    /* 576pxとそれ以上 */
    @media print, screen and (min-width: 992px) {
        top: 14px;
        right: 30px;
    }
    /* 992pxとそれ以上 */
    @media print, screen and (min-width: 1580px) {
        display: none;
    }
    /* 1580pxとそれ以上 */

    .menuButton--wrap {}

    &:hover {
        opacity: 1;
    }

    & span {
        display: block;
        background: var(--cr--orange);
        width: 40px;
        height: 1px;
        position: absolute;
        left: 10px;
        transition: all 0.4s;
        -webkit-transition: all 0.4s;
        -moz-transition: all 0.4s;

        &:first-child {
            top: 16px;
        }

        &:nth-child(2) {
            top: 27px;
        }

        &:last-child {
            top: 38px;
        }
    }

    &.active {
        & span {

            &:first-child {
                -webkit-transform: translateY(8px) rotate(45deg);
                -moz-transform: translateY(8px) rotate(45deg);
                -ms-transform: translateY(8px) rotate(45deg);
                transform: translateY(8px) rotate(45deg);
                top: 20px;
            }

            &:nth-child(2) {
                opacity: 0;
            }

            &:last-child {
                -webkit-transform: translateY(-8px) rotate(-45deg);
                -moz-transform: translateY(-8px) rotate(-45deg);
                -ms-transform: translateY(-8px) rotate(-45deg);
                transform: translateY(-8px) rotate(-45deg);
                top: 36px;
            }
        }
    }
}

.main-nav {
    display: none;
    max-width: 100%;
    height: 100%;
    padding-top: 100px;
    background-color: var(--cr--gray);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    @media print, screen and (min-width: 576px) {
        width: 375px;
        left: auto;
    }
    /* 576pxとそれ以上 */

    @media print, screen and (min-width: 1580px) {
        display: block;
        width: auto;
        max-width: none;
        height: auto;
        padding-top: 0;
        background: none;
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        z-index: auto;
    }
    /* 1580pxとそれ以上 */

    & ul {
        flex-wrap: wrap;
        flex-direction: column;
        @media print, screen and (min-width: 576px) {

        }
        /* 576pxとそれ以上 */
        @media print, screen and (min-width: 1580px) {
            display: flex;
            flex-wrap: nowrap;
            flex-direction: row;
            gap: 19px;
        }
        /* 1580pxとそれ以上 */
        @media print, screen and (min-width: 1800px) {
            gap: 30px;
        }
        /* 1800pxとそれ以上 */
        @media print, screen and (min-width: 2000px) {
            gap: 50px;
        }
        /* 2000pxとそれ以上 */

    }

    & li {
        & a {
            display: block;
            line-height: 2;
            margin: 0 0 20px 40px;
            padding: 5px 0 5px 20px;
            text-decoration: none;
            font-size: var(--fSize--14);
            color: var(--cr--black);
            letter-spacing: 0.1em;
            border-left: 1px solid var(--cr--green-d);
            text-decoration: none;
            color: var(--cr--black);
            position: relative;
            @media print, screen and (min-width: 1580px) {
                display: inline;
                line-height: normal;
                margin: 0;
                padding: 0;
                font-size: var(--fSize--14);
                color: var(--cr--black);
                letter-spacing: 0;
                border-left: none;
            }
            /* 1580pxとそれ以上 */
            @media print, screen and (min-width: 1800px) {
                font-size: var(--fSize--16);
            }
            /* 1800pxとそれ以上 */
            &:hover {
                color: var(--cr--green-d);
                opacity: 1;
            }
            &:after {
                content: '';
                width: 100%;
                height: 1px;
                position: absolute;
                left: 0;
                bottom: -5px;
                background-color: var(--cr--green-d);
                transform: scale(0, 1);
                transform-origin: left top;
                transition: transform 0.3s;
            }
            &:hover:after {
                transform: scale(1, 1);
            }
        }
    }
}
/* current menu */
.current { color: var(--cr--green-d) !important; &:after { transform: scale(1, 1) !important; } }


/* Title
------------------------ */
/* h1 */
.hero--sub {
    margin: 0px 1px 50px;
    text-align: center;
    /* background: url(../images/loop/hero--sub-bg.jpg) no-repeat top / cover; */
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    box-shadow: inset 0px 12px 25px 5px rgba(0, 0, 0, 0.03);
    @media print, screen and (min-width: 576px) {

    }
    /* 576pxとそれ以上 */

    @media print, screen and (min-width: 992px) {
        margin-bottom: 100px;
    }
    /* 992pxとそれ以上 */

    @media print, screen and (min-width: 992px) {

    }
    /* 992pxとそれ以上 */

    .t1 {
        display: flex;
        justify-content: center;
        flex-direction: column;
        padding: 50px 0;
        color: var(--cr--white);
        /* backdrop-filter: blur(10px);
        --webkit-backdrop-filter: blur(10px); */
        @media print, screen and (min-width: 992px) {
            padding: 100px 0;
        }
        /* 992pxとそれ以上 */
        .hero--sub-en {
            margin-bottom: 1rem;
            font-family: var(--wf--ZMG);
            font-weight: 700;
            font-size: var(--fSize--30);
            letter-spacing: 0.06em;
            @media print, screen and (min-width: 992px) {
                margin-bottom: 1.5rem;
                font-size: var(--fSize--50);
            }
            /* 992pxとそれ以上 */
        }
        .hero--sub-ja {
            font-size: var(--fSize--32);
            letter-spacing: .1em;
            @media print, screen and (min-width: 992px) {
                font-size: var(--fSize--50);
            }
            /* 992pxとそれ以上 */
        }
        .hero--sub-ja-fix {
            font-size: var(--fSize--20);
            @media print, screen and (min-width: 992px) {
                font-size: var(--fSize--30);
            }
            /* 992pxとそれ以上 */
        }
    }
}

.page--title {
    height: 265px;
    margin-bottom: 60px;
    position: relative;
    background: no-repeat center / cover;
    @media print, screen and (min-width: 576px) {
        height: 500px;
        margin-bottom: 100px;
    }
    /* 576pxとそれ以上 */
    .t1 {
        width: 100vw;
        text-align: center;
        font-size: var(--fSize--30);
        color: var(--cr--white);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        /* 576pxとそれ以上 */
    }
    .page--title--en {
        margin-bottom: 30px;
        font-size: var(--fSize--30);
        letter-spacing: .1em;
        @media print, screen and (min-width: 576px) {
            margin-bottom: 50px;
            font-size: var(--fSize--60);
        }
    }
    .page--title--ja {
        font-size: var(--fSize--20);
        letter-spacing: .15em;
        @media print, screen and (min-width: 576px) {
            font-size: var(--fSize--40);
        }
    }
}
/* h2 */
.t2 {
    line-height: 1.5;
    margin-bottom: 30px;
    padding-left: 2rem;
    font-size: var(--fSize--20);
    font-family: var(--wf--ZMG);
    letter-spacing: .05em;
    color: var(--cr--green-d);
    position: relative;
    border-radius: 2px;
    @media print, screen and (min-width: 992px) {
        margin-bottom: 40px;
        font-size: var(--fSize--30);
    }
    /* 992pxとそれ以上 */
    &:before {
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        background: linear-gradient(6deg, rgba(205, 230, 177, 1) 0%, rgba(117, 187, 42, 1) 100%);
        background-size: contain;
        position: absolute;
        bottom: -10px;
        left: 18px;
        @media print, screen and (min-width: 992px) {
            bottom: -8px;
        }
        /* 992pxとそれ以上 */
    }
    &:after {
        content: "";
        display: block;
        width: 8px;
        height: 50px;
        background: linear-gradient(6deg, rgba(205, 230, 177, 1) 0%, rgba(117, 187, 42, 1) 100%);
        background-size: contain;
        position: absolute;
        top: 0;
        left: 0;
        border-radius: 10px;
    }
}

/* h3 */
.t3 {
    display: inline-block;
    line-height: 1.5;
    margin-bottom: 15px;
    padding: 0 1.5rem .2rem 1.5rem;
    font-size: var(--fSize--18);
    font-family: var(--wf--ZMG);
    letter-spacing: .05em;
    border-bottom: 3px dotted #F8B50F;
    position: relative;
    @media print, screen and (min-width: 992px) {
        margin-bottom: 25px;
        padding: 0 2rem .5rem 2rem;
        font-size: var(--fSize--25);
    }
    /* 992pxとそれ以上 */
    &:before {
        content: "";
        display: block;
        width: 16px;
        height: 16px;
        background: linear-gradient(#fdce58 0%, #f8b50f 100%);
        background-size: contain;
        position: absolute;
        top: 6px;
        left: 0;
        border-radius: 100%;
        /* 768pxとそれ以上 */
    }
    /* 疑似要素ネストで@mediaが効かない対策 */
    @media print, screen and (min-width: 992px) {
        &:before {
            top: 12px;
        }
    }
    /* 992pxとそれ以上 */
}

/* h4 */
.t4 {
    line-height: 1.5;
    margin-bottom: 15px;
    padding: 0 0 10px 1rem;
    font-family: var(--wf--ZMG);
    letter-spacing: .05em;
    position: relative;
    &:before,
    &:after {
        content: '';
        width: 50%;
        height: 2px;
        position: absolute;
        bottom: -2px;
    }
    &:before {
        background: var(--cr--green);
        left: 0;
    }
    &:after {
        background: var(--cr--green-l);
        right: 0;
    }

    @media print, screen and (min-width: 992px) {
        margin-bottom: 20px;
        font-size: var(--fSize--20);
    }
}


/* Main
------------------------ */
.main {
    @media print, screen and (min-width: 992px) {
        padding-top: 80px;
    }
    /* 992pxとそれ以上 */
}

.container {
    margin-right: auto;
    margin-left: auto;
    padding: 0 20px;
    position: relative;
    @media print, screen and (min-width: 992px) {
        max-width: 900px;
        padding: 0;
    }
    /* 992pxとそれ以上 */
    @media print, screen and (min-width: 1200px) {
        max-width: 1100px;
    }
    /* 1200pxとそれ以上 */
}

.container--in {
    @media print, screen and (min-width: 1500px) {
        max-width: 1500px;
    }
    /* 1500pxとそれ以上 */
}

.container--footer {
    @media print,
    screen and (min-width: 992px) {
        max-width: 800px;
        padding: 0;
    }
    /* 992pxとそれ以上 */
}

.container-bottom {
    margin-bottom: 50px;
    position: relative;
    @media print,
    screen and (min-width: 992px) {
        margin-bottom: 150px;
    }
    /* 992pxとそれ以上 */
    /* &:last-child {
        margin-bottom: 0;
    } */
}

.container-bottom__in {
    margin-bottom: 35px;
    position: relative;
    @media print,
    screen and (min-width: 992px) {
        margin-bottom: 70px;
    }
    /* 992pxとそれ以上 */
    &:last-child {
        margin-bottom: 0;
    }
}

.container-bottom__in__in {
    margin-bottom: 25px;
    position: relative;
    @media print,
    screen and (min-width: 992px) {
        margin-bottom: 40px;
    }
    /* 992pxとそれ以上 */
    &:last-child {
        margin-bottom: 0;
    }
}

/* Footer
------------------------ */
.footer {
    padding-top: 40px;
    border-top: 30px solid var(--cr--gray-l);
    position: relative;
    @media print, screen and (min-width: 992px) {
        padding-top: 80px;
    }
    /* 992pxとそれ以上 */
    .btn-pagetop {
        position: absolute;
        right: 0;
        top: -90px;
        @media print, screen and (min-width: 992px) {
            top: -130px;
            &:hover {
                top: -140px;
            }
        }
        /* 992pxとそれ以上 */
        &:hover,
        &:hover img {
            opacity: 1;
        }
    }
    .logo-footer {
        margin-bottom: 20px;
        text-align: center;
        @media print, screen and (min-width: 992px) {
            margin-bottom: 80px;
        }
        /* 992pxとそれ以上 */
    }
    .footer--in {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 20px;
        @media print, screen and (min-width: 1100px) {
            justify-content: space-between;
            width: 1100px;
            margin: 0 auto;
        }
        /* 1100pxとそれ以上 */
        .table {
            width: auto;
        }
        .tmp--btn-tel {
            margin: 25px 0 15px;
        }
        .btn-add-gmap {
            text-decoration: underline;
            font-weight: 700;
            color: var(--cr--black);
            @media print, screen and (min-width: 992px) {
                margin-left: 1rem;
            }
            /* 992pxとそれ以上 */
        }
        .tmp--table-hours {
            .table th,
            .table td {
                @media print, screen and (min-width: 992px) {
                    padding-left: 17px;
                    padding-right: 17px;
                }
                /* 992pxとそれ以上 */
            }
        }
    }
    .more-info {
        margin-top: 30px;
        padding: 20px;
        text-align: center;
        background-color: var(--cr--gray-l);
        border-radius: 20px;
        .flex {
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .designation {
            line-height: 2.3;
            font-size: var(--fSize--13);
            @media print, screen and (min-width: 992px) {
                line-height: 2.28;
                text-align: left;
                font-size: var(--fSize--14);
            }
            /* 992pxとそれ以上 */
        }
        .emergency {
            padding: 10px 20px;
            text-align: center;
            font-weight: 700;
            color: var(--cr--green-d);
            background-color: var(--cr--white);
            border: 1px solid var(--cr--green-d);
            border-radius: 20px;
            dt {
                margin-bottom: 10px;
                padding-bottom: 13px;
                font-size: var(--fSize--18);
                letter-spacing: 0.05em;
                background: url(../images/loop/icon-arrow-right-thin.png) left bottom no-repeat;
                background-size: contain;
            }
            dd {
                line-height: 1.57;
                font-size: var(--fSize--14);
            }
        }
    }
    .ft-gmap-box {
        position: relative;
        overflow-y: hidden;
        width: 100%;
        padding-top: 50%;
        @media print, screen and (min-width: 576px) {
            width: 50%;
            position: relative;
            right: 0;
        }
        /* 576pxとそれ以上 */
        .ft-gmap {
            position: absolute;
            top: -150px;
            left: 0;
            width: 100%;
            height: calc(100% + (150px * 2));
        }
    }
    iframe {
        /* width: 100%;
        height: 360px;
        @media print, screen and (min-width: 576px) {
            width: 100vw;
        } */
        /* 576pxとそれ以上 */
        /* @media print, screen and (min-width: 1100px) {
            width: 550px;
            height: 590px;
        } */
        /* 1100pxとそれ以上 */
    }
    .fnav-box {
        margin-top: 40px;
        padding: 40px 10px;
        background-color: var(--cr--gray-l);
        border-radius: 50px 50px 0 0;
        @media print, screen and (min-width: 992px) {
            margin-top: 100px;
            margin-left: auto;
            margin-right: auto;
            padding: 80px 0 50px;
        }
        /* 992pxとそれ以上 */
        @media print, screen and (min-width: 1500px) {
            max-width: 1500px;
        }
        /* 1500pxとそれ以上 */
        .fnav {
            max-width: fit-content;
            margin-bottom: 50px;
            @media print, screen and (min-width: 992px) {
                margin-bottom: 65px;
            }
            /* 992pxとそれ以上 */
            ul {
                flex-wrap: wrap;
                flex-direction: row;
                justify-content: flex-start;
                gap: 25px 6%;
                @media print, screen and (min-width: 576px) {
                    justify-content: center;
                }
                /* 576pxとそれ以上 */
                @media print, screen and (min-width: 1200px) {
                    flex-wrap: nowrap;
                    justify-content: center;
                    gap: 0;
                }
                /* 1200pxとそれ以上 */
            }
            li {
                flex-basis: calc(94% / 2);
                padding-left: 20px;
                border-left: 1px solid var(--cr--gray-d);
                @media print, screen and (min-width: 576px) {
                    flex-basis: calc(100% / 7);
                }
                /* 576pxとそれ以上 */
                @media print, screen and (min-width: 992px) {
                    flex-basis: auto;
                    &:first-child {
                        border-left: none;
                    }
                    &:not(:first-child) {
                        margin-left: 30px;
                        padding-left: 29px;
                    }
                }
                /* 992pxとそれ以上 */
            }
            a {
                font-size: var(--fSize--14);
                color: var(--cr--black);
                @media print, screen and (min-width: 992px) {
                    font-size: var(--fSize--18);
                }
                /* 992pxとそれ以上 */
            }
        }
    }
    .copy {
        text-align: center;
        font-size: var(--fSize--14);
        letter-spacing: 0.03em;
    }
}


/**
* Template
*/

/* Page Navigation
------------------------ */
.pnav {
    margin: 0 auto 50px;
    font-family: var(--wf--ZMG);
    @media print, screen and (min-width: 992px) {
        margin: 100px auto;
    }
    /* 992pxとそれ以上 */
    .pnav-title {
        text-align: center;
        .pnav-title-ja {
            font-size: var(--fSize--25);
            letter-spacing: .3em;
        }
        .pnav-title-en {
            display: block;
            margin-bottom: 15px;
            letter-spacing: .05em;
            font-weight: 700;
            color: var(--cr--green-d);
        }
    }
    .pnav-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: -1rem;
        padding: 20px;
        text-align: center;
        background-color: rgb(var(--cr--green-rgb) / .1);
        border-radius: 20px;
        @media print, screen and (min-width: 992px) {
            padding-top: 50px;
            padding-bottom: 50px;
        }
        /* 992pxとそれ以上 */
        .pnav-list-items {
            line-height: 1.5;
            padding: 10px;
            position: relative;
            .pnav-list-link {
                display: block;
                padding: 0 5px 0 15px;
                color: var(--cr--black);
                background: url(../images/loop/icon--arrow-link-black.svg) left 7px no-repeat;
                position: relative;
                &:before {
                    content: '';
                    display: inline-block;
                    width: 100%;
                    height: 2px;
                    position: absolute;
                    bottom: -10px;
                    left: 0;
                    border-bottom: 2px dotted var(--cr--black);
                }
                &:hover {
                    color: var(--cr--green-d);
                }
            }
        }
    }
}

/* Button
------------------------ */
.btn--orange {
    display: block;
    padding: 15px 0;
    text-align: center;
    font-size: var(--fSize--18);
    font-weight: 700;
    color: var(--cr--white) !important;
    letter-spacing: 0.03em;
    background-color: var(--cr--orange);
    background-size: 16px ; */
    border: 5px solid var(--cr--white);
    border-radius: 20px;
    @media print, screen and (min-width: 992px) {
        display: inline-block;
        padding: 30px 50px;
        font-size: var(--fSize--20);
        border-radius: 30px;
        background-size: auto;
    }
    /* 992pxとそれ以上 */
    &:before {
        content: '';
        display: inline-block;
        width: 16px;
        height: 17px;
        margin-right: 10px;
        background-image: url(../images/loop/arrow-right-w.png);
        background-size: contain;
        vertical-align: bottom;
    }
    /* 疑似要素ネストで@mediaが効かない対策 */
    @media print, screen and (min-width: 576px) {
        &:before {
            width: 23px;
            height: 24px;
        }
    }
    &:hover {
        opacity: 1;
        border-color: var(--cr--orange-d);
    }
}

.btn--green {
    display: inline-block;
    padding: 10px 30px;
    text-align: center;
    font-family: var(--wf--ZMG);
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--cr--green-d) !important;
    border: 2px solid var(--cr--green);
    border-radius: 30px;
    &:before {
        content: "";
        width: 7px;
        height: 12px;
        margin-right: 15px;
        display: inline-block;
        background: url(../images/loop/icon-arrow-right.png) left center no-repeat;
    }
}
.tmp--btn-tel {
    padding: 10px 0;
    text-align: center;
    border: 3px solid var(--cr--orange);
    border-radius: 50px;
    @media print, screen and (min-width: 768px) {
        display: inline-block;
        padding: 10px 35px 15px;
    }
    .tmp--btn-number {
        display: inline-block;
        margin-bottom: 8px;
        font-family: var(--wf--ZMG);
        font-size: var(--fSize--38);
        font-weight: 700;
        letter-spacing: 0.03em;
        color: var(--cr--black);
        @media print, screen and (min-width: 768px) {
        }
        /* 768pxとそれ以上 */
        &:before {
            content: "";
            width: 18px;
            height: 30px;
            margin-right: 10px;
            display: inline-block;
            background: url(../images/loop/icon-phone-b.png) left center no-repeat;
        }
    }
    .tmp--btn-time {
        font-size: var(--fSize--14);
        letter-spacing: 0.05em;
    }
}

/* Facilities
------------------------ */
.facilities {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    border-radius: 10px;
    @media print,screen and (min-width: 576px) {
        flex-direction: row;
        align-items: center;
    }
    /* 576pxとそれ以上 */
    &:after {
        content: "";
        flex-shrink: 0;
        width: 180px;
        height: 192px;
        margin-right: 8px;
        display: inline-block;
        background: url(../images/internal-medicine/facilities-img.png) right center no-repeat;
        background-size: 180px;
    }
    .facilities-txt {
        margin-bottom: 1rem;
        padding: 2rem;
        border-left: 1px solid var(--cr--orange);
        border-bottom: 1px solid var(--cr--orange);
        border-radius: 0 0 0 50px;
        @media print, screen and (min-width: 992px) {
            margin-bottom: 0;
        }
        /* 992pxとそれ以上 */
    }
    .facilities-img {}
}

/* Information
------------------------ */
.news-list {
    padding: 20px 0;
    border-top: 1px solid var(--cr--yellow);
    @media print, screen and (min-width: 992px) {
        padding: 35px;
    }
    /* 992pxとそれ以上 */
    &:last-child {
        border-bottom: 1px solid var(--cr--yellow);
    }
    dt {
        margin-bottom: 15px;
        font-weight: normal;
        time {}
    }
    dd {
        a {
            color: var(--cr--black);
            font-size: var(--fSize--14);
        }
    }
}