:root {
    --base: #1d1d1d;
    --primary: #cec299;
    --gray: #565656;
    --white: #fff;
    --regular: 400;
    --medium: 500;
    --semi: 600;
    --bold: 700;
    --black: 900;
    --jp: "Noto Sans JP", sans-serif;
    --s: 0.3s;
}

html {
    font-size: 62.5%;
}
html.is-fz-large .company .company_table {
    font-size: min(1.3020833333vw, 25px);
}
html.is-fz-small .company .company_table {
    font-size: min(0.8333333333vw, 16px);
}

body {
    color: var(--base);
    /* font-size: min(4.2666666667vw, 16px); */
    font-size: clamp(1.6rem, 1.5vw, 2rem);
    font-family: var(--jp);
    font-weight: var(--regular);
    font-optical-sizing: auto;
    line-height: 1.5;
    letter-spacing: 0.1em;
    background: var(--white);
    margin: 0;
    padding: 0;
    overflow-wrap: break-word;
    overflow-y: scroll;
}
body:has(dialog[open]) {
    width: 100%;
    position: fixed;
    left: 0;
}

article,
aside,
figcaption,
figure,
footer,
header,
main,
nav,
section,
picture,
summary {
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    margin-top: 1.5em;
}

p,
ul,
ol,
dl,
blockquote,
table {
    margin-top: 2em;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
blockquote,
table {
    margin-bottom: 0;
}

figure {
    margin: 0;
}

summary::-webkit-details-marker {
    display: none;
}

dialog {
    padding: 0;
    border: 0;
}

ul,
ol {
    list-style: none;
    padding-left: 0;
}

dd {
    margin-left: 0;
}

b,
strong {
    font-weight: var(--bold);
}

em {
    font-style: normal;
}

small {
    font-size: inherit;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
    position: relative;
}

sup {
    top: -0.5em;
}

/* a {
    color: #1d3ce5;
    background-color: transparent;
    text-decoration: underline;
}
a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none;
}
a[tabindex] {
    outline: none;
} */
a[href^="tel:"] {
    text-decoration: none;
}

img {
    vertical-align: bottom;
    width: 100%;
    height: auto;
    border: none;
}

svg {
    overflow: hidden;
    vertical-align: middle;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

th {
    font-weight: normal;
    text-align: left;
}

hr {
    display: block;
    margin: 0;
    border: none;
}

a,
button {
    touch-action: manipulation;
}

button {
    color: inherit;
    font: inherit;
    background: transparent;
    text-align: inherit;
    margin: 0;
    padding: 0;
    border: none;
    cursor: pointer;
    overflow: visible;
}
button:disabled,
button[aria-disabled="true"] {
    cursor: default;
}

*:first-child {
    margin-top: 0;
}

.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}
.header.is-sticky {
    background: rgba(255, 255, 255, 0.6);
}
.header .header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: min(20.2666666667vw, 76px);
    padding: min(4vw, 15px) min(4vw, 15px) min(4vw, 15px) min(5.3333333333vw, 20px);
    box-sizing: border-box;
}
.header .header_logo {
    color: #656565;
    font-size: min(4.2666666667vw, 16px);
    font-weight: var(--bold);
    line-height: 1;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    -webkit-column-gap: min(2.4vw, 9px);
    -moz-column-gap: min(2.4vw, 9px);
    column-gap: min(2.4vw, 9px);
    text-decoration: none;
    width: min(53.3333333333vw, 200px);
}
.header .header_logo > img {
    width: min(7.4666666667vw, 28px);
}
.header .header_menu {
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    position: absolute;
    top: min(4vw, 15px);
    right: min(4vw, 15px);
    z-index: 10;
}
.header .header_menu::before,
.header .header_menu::after,
.header .header_menu > span::before {
    content: "";
    background: var(--white);
    display: block;
    width: 21px;
    height: 2px;
    margin: 0 auto;
    border-radius: 2px;
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    right: 0;
}
.header .header_menu::before {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
}
.header .header_menu::after {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
}
.header .header_menu > span {
    width: 30px;
    height: 19px;
    position: relative;
}
.header .header_menu.header_menu--close {
    position: relative;
    top: inherit;
    right: inherit;
}
.header .header_menu.header_menu--close::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.header .header_menu.header_menu--close::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.header .header_menu.header_menu--close > span {
    opacity: 0;
}
.header .header_dialog {
    background: transparent;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 11;
    overflow: hidden;
}
.header .header_dialog:not(.is-active) {
    visibility: hidden;
    opacity: 0;
}
.header .header_dialog::-ms-backdrop {
    background: transparent;
}
.header .header_dialog::backdrop {
    background: transparent;
}
.header .header_dialog_inner {
    background: linear-gradient(#eef2eb 0%, #ebf2ec 49.75%, #ebf2f2 100%);
    overflow-y: scroll;
}
.header .header_dialog_head {
    height: min(35.4666666667vw, 133px);
}
.header .header_dialog_logo {
    width: min(58.6666666667vw, 220px);
    margin-top: 0;
    margin-left: min(12vw, 45px);
}
.header .header_dialog_body {
    background: url(../../img/page/facility/kamoi/mv_pic_sp.jpg) no-repeat;
    background-size: cover;
    position: relative;

    @media screen and (max-width: 820px) {
        background-color: #e3efdb;
    }
}
.header .header_dialog_body::before {
    content: "";
    display: block;
    background: rgba(240, 231, 223, 0.86);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.header .header_dialog_content {
    padding: min(4.5333333333vw, 17px) 0 min(5.0666666667vw, 19px);
    position: relative;
}
.header .header_nav {
    display: -ms-grid;
    display: grid;
    row-gap: min(5.3333333333vw, 20px);
    margin-top: 0;
    padding-left: min(14.6666666667vw, 55px);
    padding-right: min(14.6666666667vw, 55px);
}
.header .header_nav_link {
    color: #656565;
    font-size: min(4vw, 15px);
    font-weight: var(--bold);
    letter-spacing: 0.05em;
    display: inline-block;
    text-decoration: none;
}
.header .header_contact {
    background: var(--white);
    width: min(94.4vw, 354px);
    margin: min(5.3333333333vw, 20px) auto 0;
    padding: min(9.0666666667vw, 34px) 0 min(8.5333333333vw, 32px);
    border-radius: min(2.6666666667vw, 10px);
}
.header .header_contact_title {
    display: block;
    width: min(64vw, 240px);
    margin: 0 auto;
}
.header .header_contact_tel {
    color: #6885af;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(66.6666666667vw, 250px);
    margin: min(5.8666666667vw, 22px) auto 0;
}
.header .header_contact_tel > a {
    color: inherit;
    font-size: min(7.7333333333vw, 29px);
    line-height: 1;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    text-decoration: none;
}
.header .header_contact_tel > a::before {
    content: "";
    display: block;
    background: url(../../img/page/facility/kamoi/icon_tel.svg) no-repeat;
    background-size: cover;
    flex-shrink: 0;
    width: min(6.9333333333vw, 26px);
    height: min(6.9333333333vw, 26px);
    margin-right: min(6.4vw, 24px);
}
.header .header_contact_tel > span {
    font-size: min(3.4666666667vw, 13px);
    letter-spacing: 0.05em;
    display: block;
    margin: min(1.6vw, 6px) auto 0;
}
.header .header_contact_form {
    width: min(66.6666666667vw, 250px);
    margin: min(2.6666666667vw, 10px) auto 0;
}
.header .header_btn {
    font-size: min(5.3333333333vw, 20px);
    letter-spacing: 0;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.header .header_btn.header_btn--inquiry {
    color: #656565;
}
.header .header_btn.header_btn--primary {
    color: var(--white);
    background-color: var(--primary);
}
.header .header_btn.header_btn--inquiry::before {
    content: "";
    display: block;
    background: url(../../img/page/facility/kamoi/icon_mail.svg) no-repeat;
    background-size: cover;
    flex-shrink: 0;
    width: min(9.0666666667vw, 34px);
    height: min(6.4vw, 24px);
    margin-right: min(2.1333333333vw, 8px);
}

.container {
    position: relative;
    overflow: hidden;
}

.side-left {
    display: none;
}
.side-left .side-left_pic::before,
.side-left .side-left_pic::after {
    content: "";
    background: var(--primary);
    display: block;
    position: absolute;
}
.side-left .side-left_pic::before {
    width: min(4.8958333333vw, 94px);
    height: min(5.4166666667vw, 104px);
    top: 0;
    right: 0;
}
.side-left .side-left_pic::after {
    width: min(6.71875vw, 129px);
    height: min(7.2395833333vw, 139px);
    left: 0;
    bottom: 0;
}

.side-right {
    display: none;
}

.gnav {
    font-weight: var(--bold);
    display: flex;
    flex-direction: column;
    row-gap: min(1.5625vw, 30px);
}
.gnav .gnav_link {
    color: rgba(0, 0, 0, 0.33);
    text-decoration: none;
    position: relative;
}
.gnav .gnav_link:hover {
    opacity: 1;
}
.gnav .gnav_link.is-active {
    color: #000;
}
.gnav .gnav_link.is-active::after {
    background: var(--base);
}
.gnav .gnav_link::after {
    content: "";
    display: block;
    background: rgba(0, 0, 0, 0.33);
    width: 0;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: -2px;
}

.footer {
    color: #848484;
    background: #e3c9b6;
    padding: min(17.3333333333vw, 65px) min(8.8vw, 33px) min(5.3333333333vw, 20px);
    position: relative;
}
.footer::before {
    content: "";
    display: block;
    background: url(../../img/page/facility/kamoi/footer_icon_01.svg) no-repeat;
    background-size: cover;
    width: min(38.4vw, 144px);
    height: min(30.4vw, 114px);
    position: absolute;
    top: min(-15.2vw, -57px);
    left: 0;
}
.footer::after {
    content: "";
    display: block;
    background: url(../../img/page/facility/kamoi/footer_icon_02_sp.svg) no-repeat;
    background-size: cover;
    width: min(24vw, 90px);
    height: min(28vw, 105px);
    position: absolute;
    bottom: min(19.2vw, 72px);
    right: min(1.6vw, 6px);
}
.footer .footer_item:not(:first-child) {
    margin-top: min(12.8vw, 48px);
}
.footer .footer_title {
    font-size: min(5.3333333333vw, 20px);
    font-weight: var(--regular);
    letter-spacing: 0.05em;
    text-align: center;
    padding-bottom: min(2.1333333333vw, 8px);
    border-bottom: 1px solid currentColor;
}
.footer .footer_list {
    font-size: min(3.7333333333vw, 14px);
    line-height: 1.4285;
    letter-spacing: 0.05em;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: min(7.2vw, 27px);
    margin-top: min(6.9333333333vw, 26px);
}
.footer .footer_list > li {
    width: 48%;
}
.footer .footer_list a {
    color: currentColor;
    display: block;
    text-decoration: none;
}
.footer .footer_link {
    font-size: min(2.4vw, 9px);
    font-weight: var(--medium);
    letter-spacing: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: min(21.3333333333vw, 80px);
}
.footer .footer_link > li {
    display: flex;
    align-items: center;
}
.footer .footer_link > li:not(:first-child) {
    margin-left: 1em;
}
.footer .footer_link > li:not(:first-child)::before {
    content: "";
    display: block;
    background: #848484;
    width: 1px;
    height: 1em;
    margin-right: 1em;
}
.footer .footer_link a {
    color: currentColor;
    text-decoration: none;
}
.footer .footer_copy {
    color: #848484;
    font-size: min(2.4vw, 9px);
    font-weight: var(--medium);
    letter-spacing: 0;
    text-align: center;
    margin-top: min(1.0666666667vw, 4px);
}

.btn {
    color: var(--base);
    font-weight: var(--bold);
    font-size: min(5.3333333333vw, 20px);
    letter-spacing: 0.03em;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-sizing: border-box;
}
.btn[target="_blank"]::after {
    content: "";
    display: block;
    background: var(--primary);
    -webkit-mask: url(../../img/page/facility/kamoi/icon_blank.svg) no-repeat;
    mask: url(../../img/page/facility/kamoi/icon_blank.svg) no-repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
}

.mv {
    background: #fffaf4;
    position: relative;
}
.mv .mv_wrapper {
    background: linear-gradient(#eef2eb 0%, #ebf2ec 49.75%, #ebf2f2 100%);
    padding-top: min(20.2666666667vw, 76px);
    padding-bottom: min(29.8666666667vw, 112px);

    @media screen and (max-width: 767px) {
        padding-bottom: 0;
    }
}
.mv .mv_font {
    display: none;
}
.mv .mv_logo {
    width: min(58.6666666667vw, 220px);
    margin-top: 0;
    margin-left: min(12vw, 45px);
}
.mv .mv_pic {
    margin-top: min(4vw, 15px);
    position: relative;
}
.mv .mv_pic::before {
    content: "";
    display: block;
    background: url(../../img/page/facility/kamoi/mv_icon_sp.svg) no-repeat;
    background-size: cover;
    width: min(28.2666666667vw, 106px);
    height: min(22.4vw, 84px);
    position: absolute;
    top: min(-13.8666666667vw, -52px);
    right: 0;

    @media screen and (max-width: 820px) {
        background-size: contain;
    }
}
.mv .mv_intro {
    margin-top: min(-48.8vw, -183px);
    position: relative;
}

.intro .intro_heading {
    color: var(--gray);
    text-align: center;
    background: var(--white);
    box-shadow: 0 1px 20px rgba(196, 151, 145, 0.47);
    max-width: 125rem;
    width: 125rem;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 4rem 7rem;
    height: 20rem;
    top: -15rem;
    position: relative;

    @media screen and (max-width: 1311px) {
        width: calc(100vw - 6rem);
    }

    @media screen and (max-width: 820px) {
        height: auto;
        top: 9rem;
        padding: 3rem 5rem;
    }

    .intro-list {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        height: 100%;

        @media screen and (max-width: 820px) {
            /* flex-direction: column; */
            height: auto;
            gap: 3rem;
        }
    }
    .intro-item {
        display: flex;
        flex-direction: column;
        align-items: center;

        & img {
            width: 8rem;
            height: 8rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        &:first-child img,
        &:nth-child(2) img {
        }

        @media screen and (max-width: 820px) {
            width: 40%;
        }
    }
    .intro-text {
        font-size: 1.8rem;
        font-weight: 600;
        flex: 1;
        margin-top: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        line-height: 2.4rem;

        @media screen and (max-width: 820px) {
            font-size: 1.6rem;
        }
    }
}

.intro .intro_movie {
    width: min(92vw, 345px);
    margin: min(14.6666666667vw, 55px) auto 0;
}
.intro .intro_movie > iframe {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
}

.news {
    padding-top: min(9.0666666667vw, 34px);
    padding-bottom: min(12.5333333333vw, 47px);
}
.news .news_heading {
    width: min(41.6vw, 156px);
    margin-left: min(21.3333333333vw, 80px);
}
.news .news_body {
    width: min(84vw, 315px);
    margin: min(3.7333333333vw, 14px) auto 0;
}
.news .news_list {
    display: -ms-grid;
    display: grid;
    row-gap: min(3.3vw, 30px);
}
.news .news_media {
    color: var(--base);
    font-size: min(3.7333333333vw, 14px);
    background: var(--white);
    display: block;
    text-decoration: none;
    padding: min(2.1333333333vw, 8px) min(4.2666666667vw, 16px);
    box-sizing: border-box;
    border-radius: min(4vw, 15px);
}
.news .news_media_body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: min(2.1333333333vw, 8px) min(2.6666666667vw, 10px);
}
.news .news_date {
    color: #bababa;
    font-weight: var(--bold);
    letter-spacing: 0;
    flex: 0 0 11rem;

    @media screen and (max-width: 767px) {
        flex: 0 0 9rem;
    }
}
.news .news_new {
    color: var(--white);
    font-weight: var(--bold);
    letter-spacing: 0;
    background: var(--primary);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: bottom;
    width: min(16.2666666667vw, 61px);
    height: min(5.8666666667vw, 22px);
    border-radius: min(1.0666666667vw, 4px);
}
.news .news_new.news_new--hidden {
    opacity: 0;
}
.news .news_text {
    font-weight: var(--medium);
    line-height: 1.7142;
    letter-spacing: 0.05em;
    width: 100%;
}
.news .news_btn {
    color: inherit;
    font-size: min(4.8vw, 18px);
    font-weight: var(--semi);
    background: #ece6dc;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-height: min(12.8vw, 48px);
    border-radius: min(2.6666666667vw, 10px);
    position: relative;
}
.news .news_btn::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin: auto;
    border: min(1.6vw, 6px) solid transparent;
    border-left: min(2.4vw, 9px) solid #656565;
    border-right: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    right: min(9.3333333333vw, 35px);
}

.vision {
    background: var(--white);
    padding-top: min(6.6666666667vw, 25px);
    padding-bottom: min(10.6666666667vw, 40px);
}
.vision .vision_heading {
    width: min(62.9333333333vw, 236px);
    margin-left: min(21.8666666667vw, 82px);
}
.vision .vision_body {
    margin-top: min(6.9333333333vw, 26px);
}
.vision .vision_pic {
    width: min(92vw, 345px);
    margin: 0 auto;
}
.vision .vision_pic img {
    border-radius: min(2.6666666667vw, 10px);
}
.vision .vision_content {
    width: min(83.2vw, 312px);
    margin: min(9.0666666667vw, 34px) auto 0;
}
.vision .vision_copy {
    color: #656565;
    font-size: min(4.2666666667vw, 16px);
}
.vision .vision_copy_strong {
    font-size: min(4.8vw, 18px);
    font-weight: var(--semi);
    letter-spacing: 0.15em;
}
.vision .vision_text {
    font-size: 1.8rem;
    line-height: 1.7142;
    letter-spacing: 0.15em;
    margin-top: min(7.4666666667vw, 28px);

    @media screen and (max-width: 767px) {
        font-size: 1.6rem;
    }
}
.vision .vision_media {
    display: flex;
    align-items: flex-end;
    -webkit-column-gap: min(3.2vw, 12px);
    -moz-column-gap: min(3.2vw, 12px);
    column-gap: min(3.2vw, 12px);
    margin-top: min(6.4vw, 24px);

    @media screen and (max-width: 820px) {
        flex-direction: row;
    }
}
.vision .vision_media_pic {
    width: min(51.7333333333vw, 194px);
    border-radius: min(2.6666666667vw, 10px);
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 194/153;
}
.vision .vision_media_body {
    color: #656565;
    font-size: min(3.7333333333vw, 14px);
    font-weight: var(--bold);
    letter-spacing: 0.05em;
    padding-bottom: min(4.2666666667vw, 16px);
    position: relative;
}
.vision .vision_media_body::before {
    content: "";
    display: block;
    background: url(../../img/page/facility/kamoi/vision_icon_01.svg) no-repeat;
    background-size: cover;
    width: 50rem;
    height: 37rem;
    top: min(19.2708333333vw, 270px);
    left: max(-10.0520833333vw, -193px);
    background-size: contain;

    @media screen and (max-width: 820px) {
        width: 10rem;
        height: 10rem;
    }
}

.features {
    /* background: #fefaf4; */
    padding-top: min(12.2666666667vw, 46px);
    padding-bottom: min(12.5333333333vw, 47px);
    border-radius: min(4vw, 15px) min(4vw, 15px) 0 0;
}
.features .features_heading {
    width: min(84.5333333333vw, 317px);
    margin-left: min(4vw, 15px);
}
.features .features_body {
    /* width: min(84vw, 315px); */
    margin: min(6.4vw, 24px) auto 0;
    /* padding: min(6.4vw, 24px) auto 0; */
}
.features .features_list {
    display: -ms-grid;
    display: grid;
    row-gap: min(8vw, 30px);

    @media screen and (max-width: 820px) {
        row-gap: min(35vw, 14rem);
    }

    & li {
        display: flex;
        flex-direction: column;
        gap: 5rem;
    }
}
.features .features_list > li:nth-child(1) .features_num {
    width: min(8.8vw, 33px);
}
.features .features_list > li:nth-child(3) .features_num {
    width: min(8.8vw, 33px);
}
.features .features_media {
    display: -ms-grid;
    display: grid;
    row-gap: min(7.2666666667vw, 82px);
}

.features .features_media {
    /* .icon-box {
        display: flex;
        justify-content: right;

        @media screen and (max-width: 1200px) {
            justify-content: center;
        }
        .detail-item {
            background-color: var(--white);
            border-radius: 50%;
            box-shadow: 0 1px 20px rgba(0, 0, 0, 0.2);
            width: 23rem;
            height: 23rem;
            margin-bottom: 3rem;

            @media screen and (max-width: 1024px) {
                width: 20rem;
                height: 20rem;
            }

            .item-text {
                font-size: 1.6rem;
            }
        }
    } */

    /* .icon-box-2 {
        display: flex;
        justify-content: left;

        @media screen and (max-width: 1200px) {
            justify-content: center;
        }

        .detail-item {
            background-color: var(--white);
            border-radius: 50%;
            box-shadow: 0 1px 20px rgba(0, 0, 0, 0.2);
            width: 23rem;
            height: 23rem;
            margin-bottom: 3rem;

            @media screen and (max-width: 1024px) {
                width: 20rem;
                height: 20rem;
                margin-bottom: 2.5rem;
            }

            .item-text {
                font-size: 1.6rem;
            }
        }
    } */
}
.features .features_media_pic {
    border-radius: min(2.6666666667vw, 10px);
    overflow: hidden;
}

.features .features_title {
    color: #656565;
    font-size: min(4.8vw, 18px);
    font-weight: var(--semi);
    display: flex;
    align-items: center;
    -webkit-column-gap: min(2.4vw, 9px);
    -moz-column-gap: min(2.4vw, 9px);
    column-gap: min(2.4vw, 9px);
    margin-left: min(2.1333333333vw, 8px);
    margin-bottom: 2rem;

    @media screen and (max-width: 1200px) {
        justify-content: center;
        align-items: center !important;
    }

    @media screen and (max-width: 767px) {
        justify-content: center;
    }
}

.features .features_title span {
    font-size: 4rem;
    font-weight: 600;
    text-align: center;

    @media screen and (max-width: 820px) {
        font-size: 2.4rem;
    }
}

.features .features_num {
    width: min(9.6vw, 36px);
}
.features .features_text {
    color: #656565;
    margin-top: min(2.6666666667vw, 10px);
    margin-bottom: 2rem;
}

.features .features_text {
    font-size: 1.8rem;

    @media screen and (max-width: 1200px) {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center !important;
        text-align: center;
    }

    @media screen and (max-width: 820px) {
        align-items: flex-start !important;
        text-align: left;
        display: block;
    }
}

.faq {
    /* padding-top: min(10.6666666667vw, 40px); */
    padding-top: 0 !important;
    padding-bottom: min(6.4vw, 24px);
}
.faq .faq_heading {
    width: min(52.8vw, 198px);
    margin-left: min(20.2666666667vw, 76px);
}
.faq .faq_body {
    margin-top: min(5.0666666667vw, 19px);
}
.faq .faq_nav {
    display: -ms-grid;
    display: grid;
    row-gap: min(2.4vw, 9px);
    width: min(83.2vw, 312px);
    margin: 0 auto;
}
.faq .faq_btn {
    color: #656565;
    font-size: min(4.2666666667vw, 16px);
    font-weight: var(--semi);
    background: #e3efdb;
    display: flex;
    align-items: center;
    text-decoration: none;
    min-height: min(12.8vw, 48px);
    padding-left: min(13.0666666667vw, 49px);
    border-radius: min(2.6666666667vw, 10px);
    position: relative;
}
.faq .faq_btn::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin: auto;
    border: min(2.2666666667vw, 8.5px) solid transparent;
    border-top: min(3.2vw, 12px) solid #656565;
    border-bottom: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    right: min(9.3333333333vw, 35px);
}
.faq .faq_content {
    display: -ms-grid;
    display: grid;
    row-gap: min(4vw, 15px);
    width: min(94.6666666667vw, 355px);
    margin: min(10.4vw, 39px) auto 0;
}
.faq .faq_item {
    background: #e3efdb;
    padding: min(11.4666666667vw, 43px) min(3.7333333333vw, 14px) min(6.9333333333vw, 26px);
    border-radius: min(4vw, 15px);
}
.faq .faq_title {
    color: #656565;
    font-size: min(5.3333333333vw, 20px);
    font-weight: var(--bold);
    letter-spacing: 0.05em;
    text-align: center;
}
.faq .faq_list {
    display: flex;
    flex-direction: column;
    row-gap: min(4.2666666667vw, 16px);
    margin-top: min(6.9333333333vw, 26px);
}
.faq .faq_list_item {
    overflow: hidden;
}
.faq .faq_list_item.is-active .faq_q > i::after {
    opacity: 0;
}
.faq .faq_list_item.is-active .faq_a {
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
}
.faq .faq_q {
    color: #313131;
    font-size: min(3.7333333333vw, 14px);
    font-weight: var(--bold);
    line-height: 1.7142;
    letter-spacing: 0.16em;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: min(83.2vw, 312px);
    margin: 0 auto;
    padding-bottom: min(1.6vw, 6px);
    border-bottom: 1px solid var(--white);
}
.faq .faq_q > span {
    color: var(--white);
    font-size: min(5.3333333333vw, 20px);
    font-weight: var(--semi);
    line-height: 1;
    margin-right: min(1.6vw, 6px);
}
.faq .faq_q > i {
    display: block;
    flex-shrink: 0;
    width: min(5.3333333333vw, 20px);
    height: min(5.3333333333vw, 20px);
    margin-top: min(0.5333333333vw, 2px);
    margin-left: auto;
    position: relative;
}
.faq .faq_q > i::before,
.faq .faq_q > i::after {
    content: "";
    display: block;
    background: #707070;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.faq .faq_q > i::before {
    width: 100%;
    height: min(0.8vw, 3px);
}
.faq .faq_q > i::after {
    width: min(0.8vw, 3px);
    height: 100%;
}
.faq .faq_a {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 0fr;
    grid-template-rows: 0fr;
}
.faq .faq_a_inner {
    overflow: hidden;
}
.faq .faq_a_content {
    color: #313131;
    background: var(--white);
    display: flex;
    margin-top: min(2.6666666667vw, 10px);
    padding: min(2.6666666667vw, 10px) min(13.8666666667vw, 52px) min(2.6666666667vw, 10px) min(2.6666666667vw, 10px);
    position: relative;
}
.faq .faq_a_content::after {
    content: "";
    display: block;
    background: #707070;
    width: min(5.3333333333vw, 20px);
    height: min(0.8vw, 3px);
    position: absolute;
    top: min(3.4666666667vw, 13px);
    right: min(3.2vw, 12px);
}
.faq .faq_a_content > span {
    color: var(--primary);
    font-size: min(5.3333333333vw, 20px);
    font-weight: var(--semi);
    margin-right: min(3.2vw, 12px);
}
.faq .faq_a_content > div {
    font-size: min(3.7333333333vw, 14px);
    font-weight: var(--bold);
    line-height: 1.7142;
    padding-top: min(1.0666666667vw, 4px);
}

.gallery {
    /* padding-bottom: min(7.7333333333vw, 29px); */
    margin-top: 26rem;
    margin-bottom: 14rem;
    padding-bottom: 14rem !important;

    @media screen and (max-width: 820px) {
        margin-top: 10rem;
        margin-bottom: 5rem;
        padding-bottom: 5rem !important;
    }
}
.gallery_title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;

    @media screen and (max-width: 820px) {
        font-size: 1.8rem;
    }
}
.gallery > img {
    width: min(99.2vw, 372px);
    margin-left: min(0.5333333333vw, 2px);
}
.gallery .gallery_body {
    margin-top: min(-2.6666666667vw, -10px);
}
.gallery .gallery_slider .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-column-gap: min(4vw, 15px);
    -moz-column-gap: min(4vw, 15px);
    column-gap: min(4vw, 15px);
    margin-top: min(5.0666666667vw, 19px);
}
.gallery .gallery_slider .swiper-pagination > span {
    background: #ece6dc;
    width: min(3.4666666667vw, 13px);
    height: min(3.4666666667vw, 13px);
    border-radius: 50%;
}
.gallery .gallery_slider .swiper-pagination > span.swiper-pagination-bullet-active {
    background: #99ceb5;
}
.gallery .gallery_pic {
    position: relative;
}
.gallery .gallery_pic > img {
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 375/226;
}
.gallery .gallery_pic > div {
    color: #707070;
    font-size: min(4.8vw, 18px);
    font-weight: var(--bold);
    letter-spacing: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: min(67.2vw, 252px);
    height: min(10.1333333333vw, 38px);
    position: absolute;
    top: 0;
    right: 0;
}

.company {
    background: #eaeaea;
    padding-top: min(9.3333333333vw, 35px);
    padding-bottom: min(12.8vw, 48px);
}
.company .company_heading {
    width: min(79.2vw, 297px);
    margin-left: auto;
    margin-right: auto;
}
.company .company_body {
    background: var(--white);
    width: min(92vw, 345px);
    margin: min(6.6666666667vw, 25px) auto 0;
    padding-top: min(9.0666666667vw, 34px);
    padding-bottom: min(10.1333333333vw, 38px);
}
.company .company_table {
    letter-spacing: 0.05em;
    width: min(70.6666666667vw, 265px);
    margin: 0 auto;
}
.company .company_table th {
    color: #9f995b;
}
.company .company_table td {
    display: flex;
    flex-direction: column;
    padding-top: min(1.6vw, 6px);
}

.access {
    padding-top: min(10.6666666667vw, 40px);
    padding-bottom: min(12vw, 45px);
}
.access .access_heading {
    width: min(67.2vw, 252px);
    margin-left: min(9.0666666667vw, 34px);
}
.access .access_body {
    margin-top: min(7.2vw, 27px);
}
.access .access_map iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 1158/828;
}
.access .access_detail {
    /* background: rgba(186, 169, 141, 0.45); */
    /* background: rgba(190, 134, 41, 0.45); */
    background: rgba(226, 225, 210, 0.3);
    margin-top: min(3.4666666667vw, 13px);
    padding: min(17.3333333333vw, 65px) min(5.6vw, 21px) min(18.6666666667vw, 70px);
    position: relative;
}
.access .access_detail::before {
    content: "";
    display: block;
    background: url(../../img/page/facility/kamoi/mv_icon_sp.svg) no-repeat;
    background-size: cover;
    width: 20rem;
    height: 21rem;
    top: -5.2083333333vw;
    right: auto;
    background-size: contain;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;

    @media screen and (max-width: 820px) {
        left: 70%;
        transform: translateX(0);
        width: 10rem;
        height: 10rem;
    }
}
/* .access .access_list {
    font-size: min(5.3333333333vw, 20px);
    line-height: 1.2;
    letter-spacing: 0.05em;
    display: -ms-grid;
    display: grid;
    row-gap: 1em;
} */

.access_list {
    font-family: "Noto Sans JP";
    font-weight: normal;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    line-height: 3rem;
    text-align: left;
    color: #000;

    @media screen and (max-width: 820px) {
        font-size: 1.6rem;
    }
}

.access .access_list > li {
    text-indent: -1em;
    margin-left: 1em;
}

.recruit {
    background: url(../../img/page/facility/kamoi/recruit_bg.jpg) no-repeat;
    background-size: min(488vw, 1830px);
    width: min(93.3333333333vw, 350px);
    margin: 0 auto;
    padding: min(13.0666666667vw, 49px) 0 min(8.5333333333vw, 32px);
    border-radius: min(8vw, 30px);
    box-sizing: border-box;
}
.recruit .recruit_heading {
    width: min(60.8vw, 228px);
    margin-left: min(10.4vw, 39px);
}
.recruit .recruit_action {
    margin-top: min(4.5333333333vw, 17px);
}
.recruit .recruit_btn {
    color: #1d1d1d;
    font-size: min(4.8vw, 18px);
    font-weight: var(--semi);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: min(83.2vw, 312px);
    min-height: min(12.8vw, 48px);
    margin: 0 auto;
    border-radius: min(2.6666666667vw, 10px);
    position: relative;
}
.recruit .recruit_btn::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin: auto;
    border: min(1.6vw, 6px) solid transparent;
    border-left: min(2.4vw, 9px) solid #656565;
    border-right: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    right: min(9.3333333333vw, 35px);
}
.recruit .recruit_pic {
    margin: min(5.6vw, 21px) min(-3.3333333333vw, -12.5px) 0;
}

.contact {
    background: #e6dfd3;
    margin-top: min(12vw, 45px);
}
.contact .contact_body {
    background: #e6dfd3;
    width: min(96.8vw, 363px);
    margin: min(-8.2666666667vw, -31px) auto 0;
    padding: min(12vw, 45px) 0 min(17.6vw, 66px);
    border-radius: min(8vw, 30px) min(8vw, 30px) 0 0;
    position: relative;
}
.contact .contact_info {
    width: min(71.4666666667vw, 268px);
    margin: 0 auto;
}
.contact .contact_heading {
    width: min(64vw, 240px);
}
.contact .contact_tel {
    color: #656565;
    font-size: min(7.7333333333vw, 29px);
    letter-spacing: 0.05em;
    margin-top: min(5.8666666667vw, 22px);
}
.contact .contact_tel > a {
    color: inherit;
    line-height: 1;
    display: flex;
    align-items: center;
    text-decoration: none;
}
.contact .contact_tel > a::before {
    content: "";
    display: block;
    background: url(../../img/page/facility/kamoi/icon_tel.svg) no-repeat;
    background-size: cover;
    flex-shrink: 0;
    width: min(6.9333333333vw, 26px);
    height: min(6.9333333333vw, 26px);
    margin-right: min(6.4vw, 24px);
}
.contact .contact_tel > span {
    font-size: min(3.4666666667vw, 13px);
    letter-spacing: 0.05em;
    display: block;
    margin-top: min(1.6vw, 6px);
    margin-left: min(25.8666666667vw, 97px);
}
.contact .contact_form {
    margin-top: min(2.6666666667vw, 10px);
}
.contact .contact_form > a {
    color: #656565;
    font-size: min(5.3333333333vw, 20px);
    display: flex;
    align-items: center;
    text-decoration: none;
}
.contact .contact_form > a::before {
    content: "";
    display: block;
    background: url(../../img/page/facility/kamoi/icon_mail.svg) no-repeat;
    background-size: cover;
    flex-shrink: 0;
    width: min(9.0666666667vw, 34px);
    height: min(6.4vw, 24px);
    margin-right: min(2.1333333333vw, 8px);
}
.contact .contact_nav a {
    color: #656565;
    text-decoration: none;
}

.sr {
    word-wrap: normal;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
}

:root {
    --swiper-theme-color: #007aff;
}

.swiper {
    list-style: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
    flex-direction: column;
}

.swiper-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    box-sizing: content-box;
    position: relative;
    z-index: 1;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
    touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
    touch-action: pan-x;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
    visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto;
}
.swiper-autoheight > .swiper-wrapper {
    align-items: flex-start;
    transition-property: height, -webkit-transform;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform;
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev:after,
.swiper-button-next:after {
    font-family: swiper-icons;
    font-size: 44px;
    text-transform: none !important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: initial;
    line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 10px;
    right: auto;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: 10px;
    left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: "next";
}

.swiper-free-mode > .swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto;
}

.swiper-fade.swiper-free-mode .swiper-slide {
    transition-timing-function: ease-out;
}

@media screen and (width >= 768px) {
    html.is-fz-large body {
        font-size: min(1.0416666667vw, 20px);
    }
    html.is-fz-large .header .header_logo {
        font-size: min(1.3671875vw, 26.25px);
    }
    html.is-fz-large .header .header_nav_link {
        font-size: min(0.9765625vw, 18.75px);
    }
    html.is-fz-large .header .header_contact_tel > a {
        font-size: min(1.8765625vw, 40px) !important;
    }
    html.is-fz-large .header .header_btn {
        font-size: min(1.171875vw, 22.5px);
    }
    html.is-fz-large .mv .mv_font_title {
        font-size: min(0.9765625vw, 18.75px);
    }
    html.is-fz-large .mv .mv_font_btn {
        font-size: min(0.8463541667vw, 16.25px);
    }
    html.is-fz-large .news .news_media {
        font-size: min(0.9114583333vw, 17.5px);
    }
    html.is-fz-large .news_bottom .faq_btn {
        font-size: min(2.0416666667vw, 23px);
    }
    html.is-fz-large .news .news_text {
        font-size: min(2.0416666667vw, 23px);
    }
    html.is-fz-large .news .news_btn {
        font-size: min(1.3020833333vw, 25px);
    }
    html.is-fz-large .row-link {
        font-size: min(1.6666666667vw, 21.5px) !important;
    }
    html.is-fz-large .vision .vision_media_body {
        font-size: min(1.3020833333vw, 25px);
    }
    html.is-fz-large .vision .vision_copy {
        font-size: min(1.0416666667vw, 20px);
    }
    html.is-fz-large .vision .vision_copy_strong {
        font-size: min(1.3020833333vw, 25px);
    }
    html.is-fz-large .vision .vision_text {
        font-size: min(1.0416666667vw, 20px);
    }
    html.is-fz-large .features .features_title {
        font-size: min(1.6927083333vw, 32.5px);
    }
    html.is-fz-large .features .features_text {
        font-size: min(1.171875vw, 22.5px);
    }
    html.is-fz-large .facility-top .right-col .title {
        font-size: min(3.171875vw, 45.5px) !important;
    }
    html.is-fz-large .bottom-col .title {
        font-size: min(2.15vw, 50.4px) !important;
    }
    html.is-fz-large .faq .faq_btn {
        font-size: min(1.3020833333vw, 25px);
    }
    html.is-fz-large .faq .faq_title {
        font-size: min(1.6927083333vw, 32.5px);
    }
    html.is-fz-large .faq .faq_q {
        font-size: min(1.5416666667vw, 30px);
    }
    html.is-fz-large .faq .faq_a_content > div {
        font-size: min(1.0416666667vw, 20px);
    }
    html.is-fz-large .gallery .gallery_pic > div {
        font-size: min(1.3020833333vw, 25px);
    }
    html.is-fz-large .row-th {
        font-size: min(1.3020833333vw, 25px) !important;
    }
    html.is-fz-large .row-td {
        font-size: min(1.0416666667vw, 20px) !important;
    }
    html.is-fz-large .row-time {
        font-size: min(1.0416666667vw, 20px) !important;
    }
    html.is-fz-large .row-content .content-title {
        font-size: min(1.6927083333vw, 32.5px) !important;
    }
    html.is-fz-large .row-content .content-text {
        font-size: min(1.0416666667vw, 20px) !important;
    }
    html.is-fz-large .content-box .title {
        font-size: min(4.75vw, 50.4px) !important;
    }
    html.is-fz-large .tab-box .tab {
        font-size: min(2.95vw, 43.4px) !important;
    }
    html.is-fz-large .access .access_list {
        font-size: min(1.3020833333vw, 25px);
    }
    html.is-fz-large .recruit .recruit_btn {
        font-size: min(1.3020833333vw, 25px);
    }
    html.is-fz-large .contact-title .text {
        font-size: min(3.6041666667vw, 60px) !important;
    }
    html.is-fz-large .mail-txt {
        font-size: min(2.6041666667vw, 40px) !important;
    }
    html.is-fz-large .tel-txt {
        font-size: min(2.6041666667vw, 48px) !important;
    }
    html.is-fz-large .work-time {
        font-size: min(1.6041666667vw, 22px) !important;
    }
    html.is-fz-large .contact .contact_tel > span {
        font-size: min(1.171875vw, 22.5px);
    }
    html.is-fz-large .contact .contact_form > a {
        font-size: min(2.6041666667vw, 50px);
    }
    html.is-fz-large .contact .contact_nav > div:first-child {
        font-size: min(1.0416666667vw, 20px);
    }
    html.is-fz-large .contact .contact_nav > div:last-child {
        font-size: min(0.9765625vw, 18.75px);
    }
    html.is-fz-large .dl-txt {
        font-size: min(1.9020833333vw, 35px);
    }
    html.is-fz-large .footer .footer_title {
        font-size: min(1.3020833333vw, 25px);
    }
    html.is-fz-large .group-title {
        font-size: min(1.3020833333vw, 25px);
    }
    html.is-fz-large .group {
        font-size: min(1.3020833333vw, 20px);
    }
    html.is-fz-large .footer-nav .column .big {
        font-size: min(1.8333333333vw, 25px) !important;
    }
    html.is-fz-large .footer-nav .column .small {
        font-size: min(0.8333333333vw, 24px) !important;
    }
    html.is-fz-large .group-title {
        font-size: min(2.3020833333vw, 35px) !important;
    }
    html.is-fz-large .group {
        font-size: min(2.3020833333vw, 24px) !important;
    }
    html.is-fz-large .privacy .link {
        font-size: min(2.3020833333vw, 22px) !important;
    }
    html.is-fz-large .footer .footer_list {
        font-size: min(0.9114583333vw, 17.5px);
    }
    html.is-fz-large .footer .footer_link {
        font-size: min(0.9114583333vw, 17.5px);
    }
    html.is-fz-large .footer .footer_copy {
        font-size: min(0.9114583333vw, 17.5px);
    }
    html.is-fz-large .pdf-btn a {
        font-size: min(1.65vw, 24px) !important;
    }
    html.is-fz-small body {
        font-size: min(0.6666666667vw, 12.8px);
    }
    html.is-fz-small .header .header_logo {
        font-size: min(0.875vw, 16.8px);
    }
    html.is-fz-small .header .header_nav_link {
        font-size: min(0.625vw, 12px);
    }
    html.is-fz-small .header .header_contact_tel > a {
        font-size: min(0.75vw, 14.4px) !important;
    }
    html.is-fz-small .header .header_btn {
        font-size: min(0.75vw, 14.4px);
    }
    html.is-fz-small .mv .mv_font_title {
        font-size: min(0.625vw, 12px);
    }
    html.is-fz-small .mv .mv_font_btn {
        font-size: min(0.5416666667vw, 10.4px);
    }
    html.is-fz-small .news .news_media {
        font-size: min(0.5833333333vw, 11.2px);
    }
    html.is-fz-small .about-text-box p {
        font-size: min(0.6666666667vw, 12px) !important;
    }
    html.is-fz-small .detail-title {
        font-size: min(1.6666666667vw, 16px) !important;
    }
    html.is-fz-small .row-link {
        font-size: min(1.6666666667vw, 14px) !important;
    }
    html.is-fz-small .news_bottom .faq_btn {
        font-size: min(0.5833333333vw, 11.2px) !important;
    }
    html.is-fz-small .news .news_text {
        font-size: min(0.6666666667vw, 12.8px);
    }
    html.is-fz-small .news .news_btn {
        font-size: min(0.8333333333vw, 16px);
    }
    html.is-fz-small .about-text-box {
        font-size: min(0.6666666667vw, 12.8px) !important;
    }
    html.is-fz-small .vision .vision_media_body {
        font-size: min(0.8333333333vw, 16px);
    }
    html.is-fz-small .vision .vision_copy {
        font-size: min(0.6666666667vw, 12.8px);
    }
    html.is-fz-small .vision .vision_copy_strong {
        font-size: min(0.8333333333vw, 16px);
    }
    html.is-fz-small .vision .vision_text {
        font-size: min(0.6666666667vw, 12.8px);
    }
    html.is-fz-small .features .features_title {
        font-size: min(1.0833333333vw, 20.8px);
    }
    /* html.is-fz-small .features .features_text {
        font-size: min(0.75vw, 14.4px);
    } */
    html.is-fz-small .facility-top .right-col .title {
        font-size: min(1.971875vw, 30.5px) !important;
    }
    html.is-fz-small .item-text {
        font-size: min(0.65vw, 12px) !important;
    }
    html.is-fz-small .pdf-btn a {
        font-size: min(0.65vw, 14px) !important;
    }
    html.is-fz-small .right-col .title {
        font-size: min(1.85vw, 30.4px) !important;
    }
    html.is-fz-small .right-col .text-box span {
        font-size: min(0.85vw, 20.4px) !important;
    }
    html.is-fz-small .right-col .text-box p {
        font-size: min(0.75vw, 14.4px) !important;
    }
    html.is-fz-small .det-title {
        font-size: min(0.85vw, 20.4px) !important;
    }
    html.is-fz-small .det-desc {
        font-size: min(0.75vw, 14.4px) !important;
    }
    html.is-fz-small .det-list {
        font-size: min(0.75vw, 14.4px) !important;
    }
    html.is-fz-small .det-text {
        font-size: min(0.75vw, 14.4px) !important;
    }
    html.is-fz-small .row-th {
        font-size: min(0.75vw, 18.4px) !important;
    }
    html.is-fz-small .row-td {
        font-size: min(0.75vw, 14.4px) !important;
    }
    html.is-fz-small .row-time {
        font-size: min(0.75vw, 14.4px) !important;
    }
    html.is-fz-small .row-content .content-title {
        font-size: min(1.95vw, 20.4px) !important;
    }
    html.is-fz-small .row-content .content-text {
        font-size: min(0.75vw, 14.4px) !important;
    }
    html.is-fz-small .bottom-col .title {
        font-size: min(1.75vw, 20.4px) !important;
    }
    html.is-fz-small .bottom-col .caption {
        font-size: min(0.75vw, 14.4px) !important;
    }
    html.is-fz-small .tab-box .tab {
        font-size: min(1.9114583333vw, 25.5px) !important;
    }
    html.is-fz-small .faq .faq_btn {
        font-size: min(0.8333333333vw, 16px);
    }
    html.is-fz-small .faq .faq_title {
        font-size: min(1.0833333333vw, 20.8px);
    }
    html.is-fz-small .faq .faq_q {
        font-size: min(0.6666666667vw, 12.8px);
    }
    html.is-fz-small .faq .faq_a_content > div {
        font-size: min(0.6666666667vw, 12.8px);
    }
    html.is-fz-small .gallery .gallery_pic > div {
        font-size: min(0.8333333333vw, 16px);
    }
    html.is-fz-small .bottom-col .title {
        font-size: min(1.75vw, 24.4px) !important;
    }
    html.is-fz-small .bottom-col .caption {
        font-size: min(0.75vw, 14.4px) !important;
    }
    html.is-fz-small .bottom-col .img-box p {
        font-size: min(0.75vw, 14.4px) !important;
    }
    html.is-fz-small .library .desc {
        font-size: min(0.75vw, 14.4px) !important;
    }
    html.is-fz-small .content-box .cat {
        font-size: min(0.75vw, 13.4px) !important;
    }
    html.is-fz-small .content-box .time {
        font-size: min(0.75vw, 14.4px) !important;
    }
    html.is-fz-small .content-box .title {
        font-size: min(0.75vw, 16.4px) !important;
    }
    html.is-fz-small .btn-txt {
        font-size: min(0.75vw, 14.4px) !important;
    }
    html.is-fz-small .access .access_list {
        font-size: min(0.8333333333vw, 16px);
    }
    html.is-fz-small .recruit .recruit_btn {
        font-size: min(0.8333333333vw, 16px);
    }
    html.is-fz-small .contact-title .text {
        font-size: min(1.6041666667vw, 30px) !important;
    }
    html.is-fz-small .mail-txt {
        font-size: min(1.6041666667vw, 25px) !important;
    }
    html.is-fz-small .tel-txt {
        font-size: min(1.6041666667vw, 25px) !important;
    }
    html.is-fz-small .work-time {
        font-size: min(1.6041666667vw, 14.4px) !important;
    }
    html.is-fz-small .contact .contact_tel {
        font-size: min(1.6666666667vw, 32px);
    }
    html.is-fz-small .contact .contact_tel > span {
        font-size: min(0.75vw, 14.4px);
    }
    html.is-fz-small .contact .contact_form > a {
        font-size: min(1.6666666667vw, 32px);
    }
    html.is-fz-small .contact .contact_nav > div:first-child {
        font-size: min(0.6666666667vw, 12.8px);
    }
    html.is-fz-small .contact .contact_nav > div:last-child {
        font-size: min(0.625vw, 12px);
    }
    html.is-fz-small .dl-txt {
        font-size: min(1.6041666667vw, 14.4px) !important;
    }
    html.is-fz-small .dl-txt {
        font-size: min(1.6041666667vw, 14.4px) !important;
    }
    html.is-fz-small .footer-nav .column .big {
        font-size: min(0.8333333333vw, 16px) !important;
    }
    html.is-fz-small .footer-nav .column .small {
        font-size: min(0.8333333333vw, 13px) !important;
    }
    html.is-fz-small .group-title {
        font-size: min(2.3020833333vw, 18px) !important;
    }
    html.is-fz-small .group {
        font-size: min(2.3020833333vw, 14px) !important;
    }
    html.is-fz-small .privacy .link {
        font-size: min(2.3020833333vw, 14px) !important;
    }
    html.is-fz-small .copyright {
        font-size: min(2.3020833333vw, 14px) !important;
    }
    html.is-fz-small .footer .footer_list {
        font-size: min(0.5833333333vw, 11.2px);
    }
    html.is-fz-small .footer .footer_link {
        font-size: min(0.5833333333vw, 11.2px);
    }
    html.is-fz-small .footer .footer_copy {
        font-size: min(0.5833333333vw, 11.2px);
    }
    body {
        font-size: min(0.8333333333vw, 16px);
        line-height: 2;
    }
    a[href^="tel:"] {
        pointer-events: none;
    }
    .header {
        width: calc(100% - min(2.5520833333vw, 49px));
        margin: 0 auto;
        top: min(1.3020833333vw, 25px);
        right: 0;
        border-radius: min(0.5208333333vw, 10px);
    }
    .header .header_inner {
        height: min(5.3125vw, 102px);
        padding: min(1.1458333333vw, 22px);
    }
    .header .header_logo {
        font-size: min(1.09375vw, 21px);
        flex-shrink: 0;
        -webkit-column-gap: min(1.09375vw, 21px);
        -moz-column-gap: min(1.09375vw, 21px);
        column-gap: min(1.09375vw, 21px);
        width: 23rem !important;
    }
    .header .header_logo > img {
        width: min(3.125vw, 60px);
    }
    .header .header_menu {
        display: none;
    }
    .header .header_dialog {
        height: inherit;
        position: static;
    }
    .header .header_dialog:not(.is-active) {
        visibility: visible;
        opacity: 1;
    }
    .header .header_dialog::-ms-backdrop {
        display: none;
    }
    .header .header_dialog::backdrop {
        display: none;
    }
    .header .header_dialog_inner {
        background: none;
        overflow-y: hidden;
    }
    .header .header_dialog_head {
        display: none;
    }
    .header .header_dialog_body {
        background: none;
    }
    .header .header_dialog_body::before {
        content: none;
    }
    .header .header_dialog_content {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        -webkit-column-gap: min(1.1458333333vw, 22px);
        -moz-column-gap: min(1.1458333333vw, 22px);
        column-gap: min(1.1458333333vw, 22px);
        padding: 0;
    }
    .header .header_nav {
        display: flex;
        gap: 0 min(1.25vw, 24px);
        padding: 0;
    }
    .header .header_nav_link {
        font-size: min(0.78125vw, 15px);
    }
    .header .header_nav_link::after {
        content: "";
        display: block;
        background: #656565;
        margin: 0 auto;
        width: 0;
        height: 1px;
    }
    .header .header_nav_link.is-active::after {
        width: 100%;
    }
    .header .header_contact {
        background: none;
        display: flex;
        align-items: center;
        -webkit-column-gap: min(1.0416666667vw, 20px);
        -moz-column-gap: min(1.0416666667vw, 20px);
        column-gap: min(1.0416666667vw, 20px);
        width: auto;
        margin: 0;
        padding: 0;
        border-radius: 0;
    }
    .header .header_contact_title {
        display: none;
    }
    .header .header_contact_tel {
        width: auto;
        margin: 0;
    }
    .header .header_contact_tel > a {
        font-size: min(0.9375vw, 18px);
        font-weight: var(--semi);
    }
    .header .header_contact_tel > a::before {
        width: min(1.3541666667vw, 26px);
        height: min(1.3541666667vw, 26px);
        margin-right: min(0.4166666667vw, 8px);
    }
    .header .header_contact_tel > span {
        display: none;
    }
    .header .header_contact_form {
        display: flex;
        align-items: center;
        -webkit-column-gap: min(0.2604166667vw, 5px);
        -moz-column-gap: min(0.2604166667vw, 5px);
        column-gap: min(0.2604166667vw, 5px);
        width: auto;
        margin: 0;
    }

    .header .header_btn {
        font-size: min(0.9375vw, 18px);
        font-weight: var(--semi);
        justify-content: center;
        text-align: center;
        min-height: min(2.9166666667vw, 56px);
        border-radius: min(0.5208333333vw, 10px);
    }

    .header .header_btn.header_btn--inquiry,
    .header .header_btn.header_btn--primary {
        width: min(11.25vw, 216px);
    }
    .header .header_btn.header_btn--inquiry {
        background: var(--white);
    }
    .header .header_btn.header_btn--primary {
        background: var(--primary);
    }
    .header .header_btn.header_btn--inquiry::before {
        content: none;
    }
    .footer {
        padding: min(7.1354166667vw, 137px) min(1.0416666667vw, 20px) min(3.3333333333vw, 64px);
    }
    .footer::before {
        width: min(18.4895833333vw, 355px);
        height: min(14.6354166667vw, 281px);
        top: max(-13.0208333333vw, -250px);
    }
    .footer::after {
        background-image: url(../../img/page/facility/kamoi/footer_icon_02.svg);
        width: min(8.3854166667vw, 161px);
        height: min(14.5833333333vw, 280px);
        bottom: max(5.1041666667vw, 98px);
        right: min(5vw, 96px);
    }
    .footer .footer_inner {
        width: min(66.1979166667vw, 1271px);
        margin: 0 auto;
    }
    .footer .footer_item:not(:first-child) {
        margin-top: min(5.1041666667vw, 98px);
    }
    .footer .footer_title {
        font-size: min(1.0416666667vw, 20px);
        padding-bottom: min(0.4166666667vw, 8px);
    }
    .footer .footer_list {
        font-size: min(0.7291666667vw, 14px);
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 0 min(2.7604166667vw, 53px);
        margin-top: min(1.5625vw, 30px);
    }
    .footer .footer_list.footer_list--02 {
        -webkit-column-gap: min(5.3645833333vw, 103px);
        -moz-column-gap: min(5.3645833333vw, 103px);
        column-gap: min(5.3645833333vw, 103px);
    }
    .footer .footer_list > li {
        width: inherit;
    }
    .footer .footer_link {
        font-size: min(0.7291666667vw, 14px);
        margin-top: min(9.7395833333vw, 187px);
    }
    .footer .footer_copy {
        font-size: min(0.7291666667vw, 14px);
        margin-top: min(0.2604166667vw, 5px);
    }
    .mv .mv_wrapper {
        background: url(../../img/page/facility/kamoi/mv_bg.jpg) no-repeat;
        background-size: 100% auto;
        padding-top: 6.6145833333vw;
        padding-bottom: min(28.6458333333vw, 250px);
    }
    .mv .mv_font {
        /* display: flex;
        align-items: center;
        justify-content: flex-end;
        -webkit-column-gap: min(0.625vw, 12px);
        -moz-column-gap: min(0.625vw, 12px);
        column-gap: min(0.625vw, 12px);
        margin-right: min(3.9583333333vw, 76px); */
        /* display: flex;
        align-items: center;
        justify-content: flex-end;
        -webkit-column-gap: min(0.625vw, 12px);
        -moz-column-gap: min(0.625vw, 12px);
        column-gap: min(0.625vw, 12px);
        margin-right: min(3.9583333333vw, 76px); */
        /* width: 237px; */
        width: 25rem;
        /* height: 54px; */
        height: 5rem;
        position: fixed;
        /* right: 14px; */
        right: 5rem;
        /* bottom: -14px; */
        /* bottom: -1.4rem; */
        top: 9rem;
        transform: translateY(100%);
        display: flex;
        justify-content: center;
        align-items: center;
        /* gap: 4px; */
        gap: 0.4rem;
        background-color: #fff;
        /* border-radius: 9px; */
        border-radius: 0.9rem;
        box-shadow: 0 0.2rem 0.8rem 0 rgba(66, 66, 66, 0.25);
        z-index: 999;

        @media screen and (max-width: 1024px) {
            top: 4rem;
        }
    }
    .mv .mv_font_title {
        font-size: min(0.78125vw, 15px);
    }
    .mv .mv_font_list {
        display: flex;
        -webkit-column-gap: min(0.15625vw, 3px);
        -moz-column-gap: min(0.15625vw, 3px);
        column-gap: min(0.15625vw, 3px);
        margin-top: 0;
    }
    .mv .mv_font_btn {
        color: #656565;
        font-size: min(0.6770833333vw, 13px);
        line-height: 1;
        background: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: min(1.0416666667vw, 20px);
        min-height: min(1.0416666667vw, 20px);
        padding: min(0.1041666667vw, 2px);
        border: 1px solid #656565;
        border-radius: min(0.1041666667vw, 2px);
        box-sizing: border-box;
    }
    .mv .mv_font_btn.is-active {
        color: var(--white);
        background: #656565;
    }
    .mv .mv_logo {
        height: 84px;
        width: auto;
        margin: 18px 0 30px 140px;
    }
    .mv .mv_logo img {
        height: 100%;
        width: auto;
    }
    .mv .mv_pic {
        margin-top: 0.5208333333vw;
        position: relative;
    }
    .mv .mv_pic::before {
        background-image: url(../../img/page/facility/kamoi/mv_icon_01.svg);
        /* width: 7.8645833333vw;
    height: 7.6041666667vw;
    top: -8.0208333333vw;
    left: 3.2291666667vw;
    right: inherit; */
        position: absolute;
        width: 9.5rem;
        height: 10rem;
        background-size: contain;
        top: 1rem;
        left: 0;
        transform: translate(3rem, -120%);
    }
    .mv .mv_intro {
        /* margin-top: max(-23.28125vw, -447px); */
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translate(-50%, -50%);
    }
    .mv .mv_intro::before,
    .mv .mv_intro::after {
        content: "";
        display: block;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
    }
    .mv .mv_intro::before {
        background-image: url(../../img/page/facility/kamoi/mv_icon_02.svg);
        /* width: min(6.09375vw, 117px); */
        /* height: min(4.8958333333vw, 94px); */
        width: 8rem;
        height: 8.5rem;
        background-size: contain;
        left: 0;
        bottom: 0;
        top: -2rem;
        transform: translate(-130%, -30%);
        /* top: max(-3.4375vw, -66px);
    left: min(7.0833333333vw, 136px); */
    }
    .mv .mv_intro::after {
        background-image: url(../../img/page/facility/kamoi/mv_icon_03.svg);
        /* width: min(14.0104166667vw, 269px);
    height: min(15.5729166667vw, 299px); */
        /* top: max(-11.1458333333vw, -214px);
    right: min(1.71875vw, 33px); */
        width: 16rem;
        height: 18rem;
        background-size: contain;
        bottom: 0;
        right: 0;
        top: -5rem;
        transform: translate(120%, -10%);
    }
    .intro .intro_heading {
        /* font-size: min(2.65625vw, 51px);
    min-height: min(5.1041666667vw, 98px);
    width: min(65vw, 1248px); */
        /* border-radius: min(0.5208333333vw, 10px); */
    }
    .intro .intro_movie {
        width: min(65vw, 1248px);
        margin-top: min(2.65625vw, 51px);
    }
    .news .news_heading {
        width: min(35vw, 672px);
        margin: 0 auto;
    }
    .news .news_heading > img {
        width: min(22.8125vw, 438px);
    }
    .news .news_body {
        width: min(70vw, 1344px);
        margin-top: min(5.3125vw, 102px);
        position: relative;
        z-index: 1;
    }
    .news_bottom {
        display: flex;
        justify-content: flex-end;
        width: 120rem;
        max-width: 100%;
        width: min(70vw, 1344px);
        margin: 0 auto;
        margin-top: 2.7rem;
        margin-right: 10rem;

        & a {
            padding-right: 3rem;
        }
    }
    .news .news_list {
        row-gap: min(1.3020833333vw, 25px);
    }
    .news .news_media {
        font-size: min(1.0416666667vw, 20px);
        border-radius: min(0.78125vw, 15px);
        width: 100%;
        max-width: 120rem;
        margin: 0 auto;
        transition: 0.3s opacity;

        & hover {
            opacity: 0.6;
        }
    }
    .news .news_media_body {
        flex-wrap: nowrap;
        gap: min(1.0416666667vw, 20px);
        text-decoration: none;
        color: #000;
    }
    .news .news_new {
        font-size: min(0.7291666667vw, 14px);
        width: min(4.0625vw, 78px);
        height: min(1.4583333333vw, 28px);
        border-radius: min(0.2083333333vw, 4px);
    }
    .news .news_text {
        font-weight: var(--semi);
        line-height: 2.375;
    }
    .news .news_btn {
        font-size: min(1.0416666667vw, 20px);
        min-height: min(3.2291666667vw, 62px);
        padding-right: min(1.09375vw, 21px);
        border-radius: min(0.5208333333vw, 10px);
    }
    .news .news_btn::after {
        border-width: min(0.546875vw, 10.5px);
        border-left-width: min(0.8333333333vw, 16px);
        right: min(1.4583333333vw, 28px);
    }
    .vision {
        padding-top: min(4.2708333333vw, 82px);
        padding-bottom: min(13.6458333333vw, 262px);
        position: relative;
    }
    .vision::before {
        content: "";
        display: block;
        background: url(../../img/page/facility/kamoi/vision_bg.svg) no-repeat;
        background-size: 100% auto;
        width: 100%;
        height: 119%;
        position: absolute;
        top: -10.625vw;
        left: 0;
    }
    .vision .vision_heading {
        width: min(30.5208333333vw, 586px);
        margin-left: 0;
        order: 1;
    }
    .vision .vision_body {
        display: flex;
        flex-direction: row-reverse;
        align-items: flex-end;
        justify-content: space-between;
        width: min(78.3333333333vw, 1504px);
        margin: 0 auto;
        position: relative;
    }
    .vision .vision_pic {
        width: min(36.8229166667vw, 707px);
        margin: 0;
        position: relative;
    }
    .vision .vision_pic::before,
    .vision .vision_pic::after {
        content: "";
        display: block;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
    }
    .vision .vision_pic::before {
        background-image: url(../../img/page/facility/kamoi/vision_icon_01.svg);
        width: min(13.3vw, 272px);
        height: min(15.5vw, 325px);
        /* top: min(19.2708333333vw, 370px); */
        left: max(-7.052083vw, -193px);
    }
    .vision .vision_pic::after {
        background-image: url(../../img/page/facility/kamoi/vision_icon_02.svg);
        width: 19rem;
        height: 13rem;
        bottom: max(-5.78125vw, -41px);
        right: max(-6.09375vw, -44px);
    }
    .vision .vision_pic img {
        border-radius: min(0.5208333333vw, 10px);
    }
    .vision .vision_content {
        display: flex;
        flex-direction: column;
        width: min(30.8333333333vw, 592px);
        margin: 0;
    }
    .vision .vision_copy {
        font-size: min(0.8333333333vw, 16px);
        margin-top: min(1.0416666667vw, 20px);
        order: 3;
    }
    .vision .vision_copy_strong {
        font-size: min(1.0416666667vw, 20px);
    }
    .vision .vision_text {
        font-size: min(1.8333333333vw, 17px);
        line-height: 2;
        margin-top: min(1.9791666667vw, 38px);
        order: 4;
    }
    .vision .vision_media {
        margin-top: min(3.3333333333vw, 64px);
        order: 2;
    }
    .vision .vision_media_pic {
        width: min(16.4583333333vw, 316px);
        border-radius: min(0.5208333333vw, 10px);
        aspect-ratio: 316/330;
    }
    .vision .vision_media_body {
        font-size: min(1.0416666667vw, 20px);
        line-height: 1.45;
        padding-bottom: min(0.8333333333vw, 16px);
    }
    .vision .vision_media_body::before {
        content: none;
    }
    .features {
        /* background: #faf8f2; */
        padding-top: min(10.3541666667vw, 110px);
        padding-bottom: min(14.6666666667vw, 150px);
        border-radius: min(3.125vw, 60px) min(3.125vw, 60px) 0 0;
        position: relative;
    }
    .features::before,
    .features::after {
        content: "";
        display: block;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
    }
    .features::before {
        background-image: url(../../img/page/facility/kamoi/features_icon_01.svg);
        width: min(25.3645833333vw, 487px);
        height: min(25.46875vw, 489px);
        top: min(19.9479166667vw, 383px);
        right: 0;
    }
    .features::after {
        background-image: url(../../img/page/facility/kamoi/features_icon_02.svg);
        width: min(27.0833333333vw, 520px);
        height: min(21.5104166667vw, 413px);
        top: min(58.8541666667vw, 1130px);
        left: 0;
    }
    .features .features_bg {
        background: url(../../img/page/facility/kamoi/features_icon_03.svg) no-repeat;
        background-size: cover;
        width: min(24.53125vw, 471px);
        height: min(16.71875vw, 321px);
        bottom: min(25.15625vw, 483px);
        right: 0;
        position: absolute;
    }
    .features .features_heading {
        width: min(46.71875vw, 897px);
        margin: 0 auto;
    }
    .features .features_heading img {
        /* width: min(33.6458333333vw, 646px); */
    }
    .features .features_body {
        width: min(70.5208333333vw, 1354px);
        /* margin-top: min(8.28125vw, 159px); */
        margin-top: min(2.28125vw, 159px);
        padding-bottom: min(2.28125vw, 159px);
        padding-top: min(8.28125vw, 159px);

        @media screen and (max-width: 1024px) {
            width: 90%;
        }
    }
    .features .features_list {
        row-gap: min(4.5vw, 144px);
        z-index: 1;
        position: relative;
    }
    .features .features_list > li:nth-child(1) .features_num {
        width: min(7.5520833333vw, 145px);
    }
    .features .features_list > li:nth-child(2) .features_num {
        width: min(8.2291666667vw, 158px);
    }
    .features .features_list > li:nth-child(3) .features_num {
        width: min(8.3333333333vw, 160px);
    }
    .features .features_list > li:nth-child(even) .features_media {
        flex-direction: row-reverse;
    }
    .features .features_list > li:nth-child(even) .features_title {
        align-items: flex-start;
    }
    .features .features_media {
        display: flex;
        align-items: flex-start;
        gap: 0 min(3.0208333333vw, 58px);
    }
    .features .features_media_pic {
        /* width: min(30.9895833333vw, 595px); */
        & img {
            width: 51rem;
            margin-bottom: 4rem;
            height: 39rem;
            object-fit: cover;
            border-radius: min(0.5208333333vw, 10px);

            @media screen and (max-width: 1024px) {
                width: min(30.9895833333vw, 595px);
                height: auto;
            }

            @media screen and (max-width: 1200px) {
                width: 58rem;
            }
        }
    }

    .features .features_media_body {
        flex: 1;
        position: relative;
        top: -4.5rem;

        @media screen and (max-width: 767px) {
            top: 0;
        }
    }
    .features .features_title {
        font-size: min(1.3541666667vw, 26px);
        flex-direction: column;
        align-items: flex-end;
        gap: min(2.0833333333vw, 40px) 0;
        margin-left: 0;
    }
    .features .features_text {
        /* font-size: min(0.9375vw, 18px); */
        line-height: 1.6667;
        /* margin-top: min(0.9895833333vw, 19px); */
        margin-bottom: 5rem;
    }
    .faq {
        padding-top: min(11.1979166667vw, 215px);
        padding-bottom: min(16.0416666667vw, 308px);
    }
    .faq .faq_heading {
        width: min(22.0833333333vw, 424px);
        margin: 0 auto;
    }
    .faq .faq_body {
        margin-top: min(3.0208333333vw, 58px);
    }
    .faq .faq_nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 min(1.875vw, 36px);
        width: auto;
    }
    .faq .faq_btn {
        font-size: min(1.0416666667vw, 20px);
        justify-content: center;
        text-align: center;
        min-width: min(14.2708333333vw, 274px);
        min-height: min(3.2291666667vw, 62px);
        padding: 0 min(2.6041666667vw, 50px) 0 min(1.09375vw, 21px);
        box-sizing: border-box;
    }
    .faq .faq_btn::after {
        border-width: min(0.546875vw, 10.5px);
        border-top-width: min(0.8333333333vw, 16px);
        right: min(1.3541666667vw, 26px);
    }
    .faq .faq_content {
        row-gap: min(3.0208333333vw, 58px);
        width: min(69.5833333333vw, 1336px);
        margin-top: min(2.1875vw, 42px);
    }
    .faq .faq_item {
        padding: min(2.4479166667vw, 47px) 0 min(4.21875vw, 81px);
        border-radius: min(2.4479166667vw, 47px);
    }
    .faq .faq_title {
        font-size: min(1.3541666667vw, 26px);
    }
    .faq .faq_list {
        row-gap: min(0.3125vw, 6px);
        margin-top: min(2.8645833333vw, 55px);
    }
    .faq .faq_q {
        font-size: min(0.8333333333vw, 16px);
        align-items: center;
        width: min(51.9791666667vw, 998px);
        min-height: min(4.0104166667vw, 77px);
        padding-bottom: 0;
    }
    .faq .faq_q > span {
        font-size: min(1.9791666667vw, 38px);
        margin-left: min(0.6770833333vw, 13px);
        margin-right: min(2.34375vw, 45px);
    }
    .faq .faq_q > i {
        width: min(1.40625vw, 27px);
        height: min(1.40625vw, 27px);
        margin-top: 0;
        margin-right: min(0.8333333333vw, 16px);
    }
    .faq .faq_q > i::before {
        height: min(0.2604166667vw, 5px);
    }
    .faq .faq_q > i::after {
        width: min(0.2604166667vw, 5px);
    }
    .faq .faq_a {
        width: min(51.9791666667vw, 998px);
        margin: 0 auto;
    }
    .faq .faq_a_content {
        margin-top: min(0.2604166667vw, 5px);
        padding: min(1.25vw, 24px) min(2.7083333333vw, 52px) min(1.25vw, 24px) min(1.3541666667vw, 26px);
    }
    .faq .faq_a_content::after {
        width: min(1.40625vw, 27px);
        height: min(0.2604166667vw, 5px);
        top: min(2.0833333333vw, 40px);
        right: min(0.8333333333vw, 16px);
    }
    .faq .faq_a_content > span {
        font-size: min(1.9791666667vw, 38px);
        line-height: 1;
        margin-right: min(2.1875vw, 42px);
    }
    .faq .faq_a_content > div {
        font-size: min(0.8333333333vw, 16px);
        line-height: 2.125;
        padding-top: min(0.2083333333vw, 4px);
    }
    .gallery {
        padding-bottom: min(22.1354166667vw, 425px);
    }
    .gallery > img {
        width: 97.7083333333vw;
        margin-left: 0;
    }
    .gallery .gallery_body {
        margin-top: -3.3333333333vw;
    }
    .gallery .gallery_slider .swiper-pagination {
        -webkit-column-gap: min(1.25vw, 24px);
        -moz-column-gap: min(1.25vw, 24px);
        column-gap: min(1.25vw, 24px);
        margin-top: min(2.8125vw, 54px);
    }
    .gallery .gallery_slider .swiper-pagination > span {
        width: min(1.3020833333vw, 25px);
        height: min(1.3020833333vw, 25px);
    }
    .gallery .gallery_pic {
        padding: 0 min(1.5625vw, 30px);
    }
    .gallery .gallery_pic > img {
        aspect-ratio: 1078/815;
    }
    .gallery .gallery_pic > div {
        font-size: min(1.0416666667vw, 20px);
        width: min(19.0104166667vw, 365px);
        height: min(4.2708333333vw, 82px);
    }
    .company {
        padding-top: min(8.59375vw, 165px);
        padding-bottom: min(9.8958333333vw, 190px);
        position: relative;
    }
    .company::before {
        content: "";
        display: block;
        background: url(../../img/page/facility/kamoi/company_bg.svg) no-repeat;
        background-size: cover;
        width: 31.9270833333vw;
        height: 21.40625vw;
        position: absolute;
        top: -16.5vw;
        right: 0;
    }
    .company .company_heading {
        width: min(38.5416666667vw, 740px);
    }
    .company .company_heading img {
        width: min(34.8958333333vw, 670px);
    }
    .company .company_body {
        width: min(90.3125vw, 1734px);
        margin-top: min(1.6666666667vw, 32px);
        padding-top: min(5.625vw, 108px);
        padding-bottom: min(5.46875vw, 105px);
    }
    .company .company_table {
        font-size: clamp(16px, 0.833vw, 20px);
        width: min(45.1041666667vw, 866px);
    }
    .company .company_table tr {
        border-bottom: 1px solid #ccc;
    }
    .company .company_table th {
        padding: min(1.0416666667vw, 20px) min(3.125vw, 60px);
    }
    .company .company_table td {
        padding: min(1.0416666667vw, 20px) min(3.125vw, 60px);
    }
    .access {
        padding-top: min(13.0208333333vw, 250px);
        padding-bottom: min(15.625vw, 300px);
        position: relative;
    }
    .access:before {
        content: "";
        display: block;
        background: url(../../img/page/facility/kamoi/access_bg.svg) no-repeat;
        background-size: cover;
        width: 90rem;
        height: 70rem;
        position: absolute;
        top: -9.8958333333vw;
        left: -13rem;
        z-index: 0;
    }
    .access .access_heading {
        width: min(28.2291666667vw, 542px);
        margin: 0 auto;
    }
    .access .access_heading img {
        width: min(24.5833333333vw, 472px);
    }
    .access .access_body {
        display: flex;
        align-items: flex-end;
        margin-top: min(7.03125vw, 135px);
        z-index: 1;
        position: relative;
    }
    .access .access_map {
        width: 60.3125%;
    }
    .access .access_detail {
        flex: 1;
        margin: 0 0 -3.28125vw -5.4167%;
        padding: 7.5520833333vw 4.6875vw 5.7291666667vw 8.3333333333vw;
    }
    .access .access_detail::before {
        width: 14.0625vw;
        height: 11.1458333333vw;
        top: -5.2083333333vw;
        right: 18.28125vw;
    }
    .access .access_list {
        font-size: 1.0416666667vw;
        line-height: 2;
        row-gap: 0;
    }
    .recruit {
        background-size: 100%;
        width: min(95.3125vw, 1830px);
        padding: 0 min(2.8645833333vw, 55px) 0 min(6.4583333333vw, 124px);
    }
    .recruit .recruit_body {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
    }
    .recruit .recruit_content {
        flex: 1;
    }
    .recruit .recruit_heading {
        width: min(28.2291666667vw, 542px);
        margin: 0 auto;
    }
    .recruit .recruit_action {
        margin-top: min(3.2291666667vw, 62px);
    }
    .recruit .recruit_btn {
        font-size: min(1.0416666667vw, 20px);
        width: min(14.2708333333vw, 274px);
        min-height: min(3.2291666667vw, 62px);
        padding-right: min(1.09375vw, 21px);
        border-radius: min(0.5208333333vw, 10px);
    }
    .recruit .recruit_btn::after {
        border-width: min(0.546875vw, 10.5px);
        border-left-width: min(0.8333333333vw, 16px);
        right: min(1.4583333333vw, 28px);
    }
    .recruit .recruit_pic {
        display: -ms-grid;
        display: grid;
        row-gap: min(1.0416666667vw, 20px);
        width: min(33.8020833333vw, 649px);
        margin: max(-2.1875vw, -42px) 0 max(-1.9791666667vw, -38px);
    }
    .contact {
        margin-top: min(14.5833333333vw, 280px);
    }
    .contact .contact_body {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        width: min(88.0208333333vw, 1690px);
        margin-top: max(-7.8125vw, -150px);
        padding: min(11.1979166667vw, 215px) min(11.4583333333vw, 220px) min(9.8958333333vw, 190px) min(11.9791666667vw, 230px);
        border-radius: min(1.5625vw, 30px) min(1.5625vw, 30px) 0 0;
        box-sizing: border-box;
    }
    .contact .contact_info {
        width: min(26.1458333333vw, 502px);
        margin: 0;
    }
    .contact .contact_heading {
        width: min(22.96875vw, 441px);
    }
    .contact .contact_tel {
        font-size: min(2.0833333333vw, 40px);
        margin-top: min(3.1770833333vw, 61px);
        padding-top: min(1.5104166667vw, 29px);
        border-top: 1px solid var(--primary);
    }
    .contact .contact_tel > a::before {
        width: min(1.875vw, 36px);
        height: min(1.875vw, 36px);
        margin-right: min(1.8229166667vw, 35px);
    }
    .contact .contact_tel > span {
        font-size: min(0.9375vw, 18px);
        margin-top: min(0.3125vw, 6px);
        margin-left: min(6.9791666667vw, 134px);
    }
    .contact .contact_form {
        margin-top: min(1.40625vw, 27px);
    }
    .contact .contact_form > a {
        font-size: min(2.0833333333vw, 40px);
    }
    .contact .contact_form > a::before {
        width: min(1.7708333333vw, 34px);
        height: min(1.5104166667vw, 29px);
        margin-right: min(0.8333333333vw, 16px);
    }
    .contact .contact_nav {
        display: flex;
        -webkit-column-gap: min(5.5208333333vw, 106px);
        -moz-column-gap: min(5.5208333333vw, 106px);
        column-gap: min(5.5208333333vw, 106px);
    }
    .contact .contact_nav > div {
        font-weight: var(--bold);
        letter-spacing: 0.05em;
    }
    .contact .contact_nav > div:first-child {
        font-size: min(0.8333333333vw, 16px);
    }
    .contact .contact_nav > div:last-child {
        font-size: min(0.78125vw, 15px);
    }
    .contact .contact_nav_list {
        display: -ms-grid;
        display: grid;
        row-gap: 1em;
    }
    .sp {
        display: none;
    }
}

@media (any-hover: hover) and (prefers-reduced-motion: no-preference) {
    a {
        transition: opacity 0.3s;
    }
    a:hover {
        opacity: 0.8;
    }
    button:hover {
        opacity: 0.8;
    }
    .gnav .gnav_link::after {
        transition: width 0.5s;
    }
}

@media (any-hover: hover) {
    button {
        transition: opacity 0.3s;
    }
    .gnav .gnav_link:hover::after {
        width: 100%;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .header {
        transition: background 0.5s;
    }
    .header .header_menu {
        transition: opacity 0.5s;
    }
    .header .header_dialog {
        transition: opacity 0.5s, visibility 0.5s;
    }
    .header .header_nav_link::after {
        transition: width 0.5s;
    }
    .faq .faq_a {
        transition: grid-template-rows 0.5s;
        transition: grid-template-rows 0.5s, -ms-grid-rows 0.5s;
    }
}

@media screen and (width >= 981px) {
    .side-left {
        display: block;
        max-width: min(18.75vw, 360px);
        padding-bottom: min(0.5208333333vw, 10px);
    }
    .side-left .side-left_logo {
        line-height: 1;
    }
    .side-left .side-left_pic {
        text-align: center;
        max-width: min(18.4375vw, 354px);
        margin: min(1.6666666667vw, 32px) auto 0;
        padding: min(1.875vw, 36px) 0 min(2.3958333333vw, 46px);
        position: relative;
    }
    .side-left .side-left_pic > img {
        width: 85.3107%;
        position: relative;
        z-index: 1;
    }
    .side-left .side-left_title {
        width: min(17.4479166667vw, 335px);
        margin: auto 0;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
    }
    .side-left .side-left_popover {
        margin-top: min(2.34375vw, 45px);
    }
    .side-right {
        display: block;
        width: min(14.9479166667vw, 287px);
        padding-bottom: min(0.5208333333vw, 10px);
    }
    .side-right .side-right_access {
        margin-top: min(6.25vw, 120px);
    }
    .side-right .side-right_nav {
        font-size: min(0.9375vw, 18px);
    }
    .popover {
        font-size: min(0.8333333333vw, 16px);
        text-align: center;
    }
    .popover .popover_title {
        color: var(--primary);
        font-size: min(1.0416666667vw, 20px);
        font-weight: var(--bold);
        line-height: 1.5;
        letter-spacing: 0.05em;
    }
    .popover .popover_body {
        line-height: 1.4375;
        display: flex;
        flex-direction: column;
        justify-content: center;
        row-gap: min(1.5625vw, 30px);
        margin-top: min(1.5625vw, 30px);
    }
    .popover .popover_btn {
        font-size: min(0.8333333333vw, 16px);
        -ms-grid-row-align: center;
        align-self: center;
        width: min(12.6041666667vw, 242px);
        height: min(2.2916666667vw, 44px);
    }
    .popover .popover_btn::after {
        width: min(0.8854166667vw, 17px);
        height: min(0.8854166667vw, 17px);
        margin-left: min(0.5208333333vw, 10px);
    }
    .qr {
        background: var(--white);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: min(1.0416666667vw, 20px);
        border-radius: min(0.3125vw, 6px);
    }
    .qr .qr_body {
        display: flex;
        flex-direction: column;
    }
    .qr .qr_pic {
        flex-shrink: 0;
        width: min(3.9583333333vw, 76px);
    }
    .qr .qr_en {
        color: var(--primary);
        font-family: var(--roboto);
        font-size: min(0.625vw, 12px);
        font-weight: var(--bold);
        letter-spacing: 0.08em;
    }
    .qr .qr_text {
        font-size: min(0.8333333333vw, 16px);
        font-weight: var(--bold);
        line-height: 1.4375;
        margin-top: min(0.2604166667vw, 5px);
    }
}

@media screen and (width <= 767.9px) {
    .company .company_table tr {
        display: -ms-grid;
        display: grid;
        padding-left: min(2.6666666667vw, 10px);
        padding-right: min(2.6666666667vw, 10px);
    }
    .company .company_table tr:not(:first-child) {
        margin-top: min(3.2vw, 12px);
        padding-top: min(3.2vw, 12px);
        border-top: 1px solid #ccc;
    }
    .pc {
        display: none;
    }
}

/* ABOUT */
#about {
    margin-bottom: 21rem;

    @media screen and (max-width: 820px) {
        margin-bottom: 10rem;
    }

    .about-wrapper {
        max-width: 178rem;
        width: 178rem;
        margin: 0 auto;
        background-color: #f8f8f8;
        position: relative;
        border-radius: 4rem;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 8.1rem 0;
        color: #656565;
        z-index: 0;
        cursor: pointer;

        @media screen and (max-width: 1841px) {
            width: calc(100% - 6rem);
            max-width: calc(100% - 6rem);
        }

        @media screen and (max-width: 820px) {
            width: 100%;
            padding: 2rem 0;
        }

        &::before,
        &::after {
            content: "";
            position: absolute;
            background-size: contain;
            background-repeat: no-repeat;

            @media screen and (max-width: 820px) {
                display: none;
            }
        }
        &::before {
            /* background-image: url(../../img/page/facility/kamoi/about-icon01.svg); */
            top: 46%;
            left: 0;
            width: 50rem;
            height: 45rem;
            z-index: -1;
        }
        &::after {
            /* background-image: url(../../img/page/facility/kamoi/about-icon02.svg); */
            bottom: 20rem;
            right: 0;
            width: 47rem;
            height: 46rem;
            z-index: -1;
        }

        .about-title-box {
            /* width: 76rem; */
            /* max-width: 76rem; */
            width: 100%;
            padding-left: 30rem;
            padding-right: 8.7rem;
            display: flex;
            justify-content: space-between;
            transition: 0.3s opacity;

            & hover {
                opacity: 0.6;
            }

            @media screen and (max-width: 901px) {
                text-align: center;
                padding-left: 3rem;
                padding-right: 3rem;
                gap: 1rem;

                & img {
                    width: 80%;
                }
            }

            @media screen and (max-width: 820px) {
                text-align: center;

                & img {
                    width: 40%;
                }
            }
        }

        .about-title-name {
            font-family: "Noto Sans JP";
            font-weight: 600;
            font-size: 3.2rem;
            letter-spacing: 0.15em;
            line-height: 32px;
            text-align: left;
            color: #656565;

            @media screen and (max-width: 820px) {
                font-size: 1.6rem;
            }
        }

        .about-detail-content {
            display: none;
            /* gap: 10rem; */
        }

        .about-detail-content .detail-box {
            display: flex;
            @media screen and (max-width: 820px) {
                display: flex;
                flex-direction: column;
            }
        }

        .about-detail-content.active {
            display: flex !important;
        }

        .about-text-box {
            /* padding: 0 5rem; */
            padding-left: 30rem;
            width: 48%;

            @media screen and (max-width: 1301px) {
                /* padding: 0 3rem; */
                padding-left: 3rem;
                padding-right: 3rem;
            }

            @media screen and (max-width: 820px) {
                width: 100%;
            }

            & p {
                margin-top: 7rem;
                margin-bottom: 15.6rem;
                font-size: 1.8rem;
                font-weight: 400;
                line-height: 2;

                @media screen and (max-width: 820px) {
                    font-size: 1.6rem;
                    margin-top: 5rem;
                    margin-bottom: 6rem;
                }
            }
        }

        .about-detail-box {
            margin-top: 7rem;
            display: flex;
            flex-direction: column;
            width: 40%;
            /* align-items: center; */
            /* gap: 10rem; */

            @media screen and (max-width: 820px) {
                /* gap: 4rem; */
                width: 100%;
            }

            .detail-row {
                align-items: center;
                justify-content: flex-start;
                display: flex;
                flex-direction: column;

                .detail-title {
                    font-size: 2.4rem;
                    font-weight: 700;
                    /* margin-bottom: 6rem; */
                    text-align: center;

                    @media screen and (max-width: 820px) {
                        font-size: 1.8rem;
                        /* margin-bottom: 3rem; */
                    }
                }
                .detail-list {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 3.6rem;

                    @media screen and (max-width: 820px) {
                        /* flex-direction: column; */
                        gap: 0;
                    }
                }
            }

            .detail-row-1 {
                display: flex;
                gap: 4rem;

                @media screen and (max-width: 820px) {
                    flex-direction: column;
                }
            }
        }
    }

    .about-wrapper.active {
        .toggle-icon {
            transform: rotate(-180deg);
        }
    }
    .row-button {
        display: flex;
        justify-content: center;
    }
    .row-link {
        width: 53.6rem;
        height: 6.3rem;
        padding: 1.7rem;
        padding-right: 0;
        /* display: flex;
      justify-content: center;
      align-items: center; */
        position: relative;
        background-color: #eaeaea;
        border-radius: 1rem;
        color: #656565;
        text-decoration: none;
        font-size: 2rem;
        font-weight: 600;

        @media screen and (max-width: 820px) {
            width: 90vw;
            height: 5rem;
            font-size: 1.4rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        &::after {
            content: "";
            display: block;
            width: 0;
            height: 0;
            margin: auto;
            border: min(2.2666666667vw, 8.5px) solid transparent;
            border-top: min(3.2vw, 12px) solid #656565;
            border-bottom: 0;
            position: absolute;
            top: 0;
            bottom: 0;
            right: min(9.3333333333vw, 35px);
            transform: rotate(-90deg);
        }
    }
}

.detail-item {
    width: 20rem;
    height: 20rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    line-height: 2.4rem;

    @media screen and (max-width: 820px) {
        width: 15rem;
        /* height: 17rem; */
    }

    & img {
        width: 7rem;
    }

    .intro_icon02 {
        position: relative;
        bottom: 1.5rem;
    }

    .item-text {
        text-align: center;
        font-size: 1.8rem;

        @media screen and (max-width: 820px) {
            font-size: 1.2rem;
        }
    }
}

.com-flex-wrapper {
    .titl-box {
        display: flex;
        justify-content: center;

        & img {
            width: 70rem;

            @media screen and (max-width: 820px) {
                width: 80%;
            }
        }
    }
    .content-box {
        margin-top: 34rem;
        position: relative;
        margin-bottom: 8rem;

        @media screen and (max-width: 767px) {
            margin-bottom: 0;
        }

        &::before {
            content: "";
            background-color: #f5f5e1;
            position: absolute;
            left: 10rem;
            top: 0;
            bottom: 0;
            right: 0;
            height: 80rem;

            @media screen and (max-width: 1550px) {
                left: 5rem;
                height: auto;
            }

            @media screen and (max-width: 1390px) {
                left: 0;
                height: auto;
            }

            @media screen and (max-width: 767px) {
                height: auto;
            }
        }

        @media screen and (max-width: 820px) {
            margin-top: 33rem;
            height: 120rem;
        }

        /* &::before {
      content: '';
      position: absolute;
      bottom: -8rem;
      left: -5rem;
      z-index: 10;
      width: 60rem;
      height: 40rem;
      background-size: contain;
      background-repeat: no-repeat;
      background-image: url(../../img/page//facility/kamoi/facility-icon.svg);

      @media screen and (max-width: 820px) {
        display: none;
      }
    } */

        .inner {
            /* width: 111rem;
            max-width: 111rem;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            transform: translateY(-20rem);
            gap: 10rem;

            @media screen and (max-width: 1301px) {
                flex-direction: column;
                width: calc(100% - 6rem);
            }

            @media screen and (max-width: 820px) {
                flex-direction: column;
                width: 100%;
                max-width: 100%;
                gap: 5rem;
            } */

            /* .facility-top {
                display: flex;
                gap: 10rem;

                @media screen and (max-width: 1024px) {
                    gap: 5rem;
                    flex-direction: column;
                }
                @media screen and (max-width: 820px) {
                    flex-direction: column;
                    gap: 2rem;
                }
            } */

            .left-col {
                /* flex: 0 0 57rem; */
                /* width: 57rem; */
                width: 50%;

                @media screen and (max-width: 1200px) {
                    /* flex: 0 0 100%; */
                    width: 100%;
                    text-align: center;
                }

                @media screen and (max-width: 1200px) {
                    order: 1;
                    margin-top: 4rem;
                    width: 100%;
                }

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

                & img {
                    width: 58rem;
                    margin-bottom: 9rem;
                    height: 44rem;
                    object-fit: cover;

                    @media screen and (max-width: 820px) {
                        width: 80%;
                        height: auto;
                        margin-bottom: 4rem;
                    }
                }
                .text-box {
                    font-size: 1.8rem;

                    @media screen and (max-width: 820px) {
                        font-size: 1.6rem;
                        padding: 0 3rem;
                    }

                    @media screen and (max-width: 767px) {
                        text-align: left;
                    }

                    & span {
                        /* font-weight: 600;
                        font-size: 2.4rem; */

                        @media screen and (max-width: 820px) {
                            font-size: 1.8rem;
                        }
                    }

                    & p {
                        margin-top: 0 !important;
                    }

                    & p:nth-child(2) {
                        margin-bottom: 1.3rem;
                        margin-top: 2.4rem !important;

                        @media screen and (max-width: 820px) {
                            margin-top: 1.8rem !important;
                        }
                    }

                    & p:last-child {
                        margin-top: 3rem !important;
                        line-height: 2;

                        @media screen and (max-width: 820px) {
                            margin-top: 2rem !important;
                        }
                    }
                }
            }
            .right-col {
                /* flex: 1; */
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                gap: 8rem;
                color: #565656;
                width: 50%;

                @media screen and (max-width: 1024px) {
                    width: 100%;
                    gap: 3.5rem;
                }

                @media screen and (max-width: 1200px) {
                    width: 100%;
                    display: contents;
                }

                .title {
                    font-size: 4rem;
                    font-weight: 600;
                    text-align: center;

                    @media screen and (max-width: 820px) {
                        font-size: 2.4rem;
                    }
                }
                .icon-box {
                    display: flex;
                    gap: 3rem;
                    position: relative;
                    top: -2rem;

                    @media screen and (max-width: 1200px) {
                        justify-content: center;
                    }

                    @media screen and (max-width: 820px) {
                        flex-direction: column;
                    }

                    @media screen and (max-width: 767px) {
                        margin-top: 3rem;
                    }

                    .detail-item {
                        background-color: var(--white);
                        border-radius: 50%;
                        box-shadow: 0 1px 20px rgba(0, 0, 0, 0.2);
                        width: 23rem;
                        height: 23rem;

                        @media screen and (max-width: 1024px) {
                            width: 20rem;
                            height: 20rem;
                        }

                        @media screen and (max-width: 767px) {
                            margin: 0 auto;
                        }

                        .item-text {
                            font-size: 1.6rem;
                        }
                    }
                }
                .text-box {
                    font-size: 1.8rem;

                    @media screen and (max-width: 820px) {
                        font-size: 1.6rem;
                        padding: 0 3rem;
                    }

                    @media screen and (max-width: 1200px) {
                        order: 2;
                    }

                    @media screen and (max-width: 1200px) {
                        order: 2;
                    }

                    & span {
                        /* font-weight: 600;
                        font-size: 2.4rem; */

                        @media screen and (max-width: 820px) {
                            font-size: 1.8rem;
                        }
                    }

                    & p {
                        margin-top: 0 !important;
                    }

                    & p:nth-child(2) {
                        margin-bottom: 1.3rem;
                        margin-top: 2.4rem !important;

                        @media screen and (max-width: 820px) {
                            margin-top: 1.8rem !important;
                        }
                    }

                    & p:last-child {
                        margin-top: 5.5rem !important;
                        line-height: 2;

                        @media screen and (max-width: 1024px) {
                            margin-top: 1rem !important;
                        }

                        @media screen and (max-width: 820px) {
                            margin-top: 2rem !important;
                        }
                    }
                }
            }
        }

        .bottom-col {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translate(-50%, 50%);
            width: 92rem;
            max-width: 92rem;
            z-index: 1;

            @media screen and (max-width: 820px) {
                width: 90%;
            }

            .title {
                font-size: 3.5rem;
                font-weight: 700;
                margin-bottom: 3rem;
                text-align: center;

                @media screen and (max-width: 820px) {
                    font-size: 2rem;
                    margin-bottom: 2rem;
                }
            }
            .img-box {
                .capiton {
                    font-size: 2rem;
                    font-weight: 500;

                    @media screen and (max-width: 820px) {
                        font-size: 1.6rem;
                    }
                }
            }
        }
    }

    .content-box-top {
        margin-top: 34rem;
        position: relative;

        &::before {
            content: "";
            background-color: #f5f5e1;
            position: absolute;
            left: 10rem;
            top: 0;
            bottom: 0;
            right: 0;
            height: 80rem;
            @media screen and (max-width: 1450px) {
                left: 0;
                height: auto;
            }

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

        @media screen and (max-width: 820px) {
            height: 135rem;
            margin-top: 30rem;
        }

        /* &::before {
        content: '';
        position: absolute;
        bottom: -8rem;
        left: -5rem;
        z-index: 10;
        width: 60rem;
        height: 40rem;
        background-size: contain;
        background-repeat: no-repeat;
        background-image: url(../../img/page//facility/kamoi/facility-icon.svg);

        @media screen and (max-width: 820px) {
            display: none;
        }
        } */

        .inner {
            /* width: 125rem;
            max-width: 125rem;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transform: translateY(-20rem);
            gap: 10rem;

            @media screen and (max-width: 1301px) {
                flex-direction: column;
                width: calc(100% - 6rem);
            }

            @media screen and (max-width: 820px) {
                flex-direction: column;
                width: 100%;
                max-width: 100%;
            } */

            /* .facility-top {
                display: flex;
                gap: 10rem;

                @media screen and (max-width: 1024px) {
                    flex-direction: column;
                    gap: 2rem;
                }
            } */

            .left-col {
                /* flex: 0 0 57rem; */
                width: 50%;

                @media screen and (max-width: 1200px) {
                    /* flex: 0 0 100%; */
                    width: 100%;
                    text-align: center;
                }

                @media screen and (max-width: 1200px) {
                    order: 1;
                    margin-top: 4rem;
                }

                & img {
                    width: 58rem;
                    margin-bottom: 9rem;
                    height: 44rem;
                    object-fit: cover;

                    @media screen and (max-width: 820px) {
                        width: 80%;
                        height: auto;
                        margin-bottom: 4rem;
                    }
                }

                .text-box {
                    font-size: 1.8rem;

                    @media screen and (max-width: 820px) {
                        font-size: 1.6rem;
                        padding: 0 3rem;
                    }

                    & span {
                        /* font-weight: 600;
                        font-size: 2.4rem; */

                        @media screen and (max-width: 820px) {
                            font-size: 1.8rem;
                        }
                    }

                    & p {
                        margin-top: 0 !important;
                    }

                    & p:nth-child(2) {
                        margin-bottom: 1.3rem;
                        margin-top: 2.4rem !important;

                        @media screen and (max-width: 820px) {
                            margin-top: 1.8rem !important;
                        }
                    }

                    & p:last-child {
                        margin-top: 3rem !important;
                        line-height: 2;

                        @media screen and (max-width: 820px) {
                            margin-top: 2rem !important;
                        }
                    }
                }
            }
            .right-col {
                /* flex: 1; */
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                gap: 8rem;
                color: #565656;
                width: 50%;

                @media screen and (max-width: 1024px) {
                    gap: 3.3rem;
                    width: 100%;
                }

                @media screen and (max-width: 1200px) {
                    display: contents;
                }

                .title {
                    font-size: 4rem;
                    font-weight: 600;
                    text-align: center;

                    @media screen and (max-width: 820px) {
                        font-size: 2.4rem;
                    }
                }
                .icon-box {
                    display: flex;
                    gap: 3rem;
                    position: relative;
                    top: -2rem;

                    @media screen and (max-width: 1200px) {
                        justify-content: center;
                    }

                    @media screen and (max-width: 820px) {
                        flex-direction: column;
                        top: 0;
                    }

                    .detail-item {
                        background-color: var(--white);
                        border-radius: 50%;
                        box-shadow: 0 1px 20px rgba(0, 0, 0, 0.2);
                        width: 23rem;
                        height: 23rem;

                        @media screen and (max-width: 1024px) {
                            width: 20rem;
                            height: 20rem;
                        }

                        @media screen and (max-width: 767px) {
                            margin: 0 auto;
                        }

                        .item-text {
                            font-size: 1.6rem;
                        }
                    }
                }
                .text-box {
                    font-size: 1.8rem;

                    @media screen and (max-width: 820px) {
                        font-size: 1.6rem;
                        padding: 0 3rem;
                    }

                    @media screen and (max-width: 1200px) {
                        order: 2;
                        text-align: left;
                    }

                    & span {
                        /* font-weight: 600;
                        font-size: 2.4rem; */

                        @media screen and (max-width: 820px) {
                            font-size: 1.8rem;
                        }
                    }

                    & p {
                        margin-top: 0 !important;
                    }

                    & p:nth-child(2) {
                        margin-bottom: 1.3rem;
                        margin-top: 2.4rem !important;

                        @media screen and (max-width: 820px) {
                            margin-top: 1.8rem !important;
                        }
                    }

                    & p:last-child {
                        margin-top: 5.5rem !important;
                        line-height: 2;

                        @media screen and (max-width: 1024px) {
                            margin-top: 0 !important;
                        }

                        @media screen and (max-width: 820px) {
                            margin-top: 2rem !important;
                        }
                    }
                }
            }
        }

        .bottom-col {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translate(-50%, 50%);
            width: 92rem;
            max-width: 92rem;
            z-index: 1;

            @media screen and (max-width: 820px) {
                width: 90%;
            }

            .title {
                font-size: 3.5rem;
                font-weight: 700;
                margin-bottom: 3rem;
                text-align: center;

                @media screen and (max-width: 820px) {
                    font-size: 2rem;
                    margin-bottom: 2rem;
                }
            }
            .img-box {
                .capiton {
                    font-size: 2rem;
                    font-weight: 500;

                    @media screen and (max-width: 820px) {
                        font-size: 1.6rem;
                    }
                }
            }
        }
    }
}

/* FACILITY */

.facility {
    margin-bottom: 10rem;
}
.facility-detail-box {
    .title {
        margin-top: 12rem;
        margin-bottom: 10rem;
        text-align: center;
        font-size: 3.6rem;
        font-weight: 700;

        @media screen and (max-width: 820px) {
            font-size: 2.5rem;
        }
    }

    .fac-detail {
        background-color: #ededed;
        margin-left: 12rem;
        color: #565656;
        border-radius: 1rem;
        padding: 7rem 9rem;

        @media screen and (max-width: 1301px) {
            margin-left: 0;
        }

        @media screen and (max-width: 820px) {
            padding: 4rem 2rem;
            margin-left: 0;
        }

        &:not(:last-child) {
            margin-bottom: 4.4rem;
        }

        .det-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 2.5rem;

            @media screen and (max-width: 820px) {
                font-size: 2.2rem;
                margin-bottom: 2rem;
            }
        }
        .det-desc {
            margin-bottom: 3.2rem;
            font-size: 1.8rem;
            line-height: 2;

            @media screen and (max-width: 820px) {
                font-size: 1.6rem;
                margin-bottom: 2rem;
            }
        }
        .det-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-column-gap: 7rem;
            grid-row-gap: 5.6rem;

            @media screen and (max-width: 820px) {
                grid-template-columns: 1fr;
                grid-row-gap: 3rem;
            }

            .det-item {
                .det-img-box {
                    margin-bottom: 3rem;

                    & img {
                        border-radius: 10px;
                    }
                }
                .det-text {
                    font-size: 2rem;
                    font-weight: 600;

                    @media screen and (max-width: 820px) {
                        font-size: 1.6rem;
                    }
                }
            }
        }
    }
    .bath-rooms {
    }

    .foods {
        .det-white-box {
            width: 125rem;
            max-width: 125rem;
            background-color: var(--white);
            padding: 7rem 10rem;
            margin: 0 auto;
            margin-top: 6rem;
            border-radius: 2rem;

            @media screen and (max-width: 1301px) {
                width: 100%;
                max-width: 100%;
            }

            @media screen and (max-width: 820px) {
                width: 100%;
                padding: 3rem;
                border-radius: 1rem;
            }

            .title {
                font-size: 2.5rem;
                font-weight: 700;
                margin-bottom: 5.4rem;
                margin-top: 0 !important;

                @media screen and (max-width: 820px) {
                    font-size: 1.8rem;
                    margin-bottom: 3rem;
                }
            }
            .w-box-table {
            }
            .w-row {
                display: flex;
                align-items: center;
                font-size: 1.8rem;
                line-height: 1;
                padding-bottom: 2rem;
                border-bottom: 4px dashed #e4e1e1;

                @media screen and (max-width: 820px) {
                    font-size: 1.6rem;
                }

                &:not(:first-child) {
                    padding-top: 2rem;
                }

                .row-th {
                    flex: 0 0 17.5rem;
                    padding-left: 2.5rem;
                    color: #a1ce97;
                    font-weight: 600;

                    @media screen and (max-width: 820px) {
                        font-size: 1.6rem;
                        flex: 0 0 30%;
                        padding-left: 0;
                    }
                }
                .row-td {
                    color: #000000;

                    @media screen and (max-width: 820px) {
                        flex: 1;
                        line-height: 2;
                        font-size: 1.4rem;
                    }
                }
            }
        }
    }
}

.content-box-2 {
    margin-top: 34rem;
    position: relative;
    &::after {
        content: "";
        background-color: #f5f5e1;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        right: 10rem;

        @media screen and (max-width: 1450px) {
            right: 0;
        }

        @media screen and (max-width: 767px) {
            /* height: auto; */
        }
    }

    @media screen and (max-width: 820px) {
        margin-top: 35rem;
        height: 130rem;
    }

    &::before {
        content: "";
        position: absolute;
        bottom: -8rem;
        left: -5rem;
        z-index: 1;
        width: 60rem;
        height: 40rem;
        background-size: contain;
        background-repeat: no-repeat;
        background-image: url(../../img/page//facility/kamoi/facility-icon.svg);

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

    .inner {
        /* width: 125rem;
        max-width: 125rem;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transform: translateY(-20rem);
        gap: 10rem; */

        /* @media screen and (max-width: 1301px) {
            flex-direction: column;
            width: calc(100% - 6rem);
        } */

        /* @media screen and (max-width: 820px) {
            flex-direction: column;
            width: 100%;
            max-width: 100%;
        } */

        .left-col {
            /* flex: 0 0 50rem; */
            width: 50%;

            @media screen and (max-width: 1200px) {
                /* flex: 0 0 100%; */
                width: 100%;
                text-align: center;
            }

            @media screen and (max-width: 1200px) {
                order: 1;
                margin-top: 4rem;
            }

            & img {
                width: 58rem;
                margin-bottom: 9rem;
                height: 44rem;
                object-fit: cover;

                @media screen and (max-width: 820px) {
                    width: 80%;
                    height: auto;
                    margin-bottom: 4rem;
                }
            }
            .text-box {
                font-size: 1.8rem;

                @media screen and (max-width: 820px) {
                    font-size: 1.6rem;
                    padding: 0 3rem;
                }

                @media screen and (max-width: 767px) {
                    text-align: left;
                }

                & span {
                    /* font-weight: 600;
                        font-size: 2.4rem; */

                    @media screen and (max-width: 820px) {
                        font-size: 1.8rem;
                    }
                }

                & p {
                    margin-top: 0 !important;
                }

                & p:nth-child(2) {
                    margin-bottom: 1.3rem;
                    margin-top: 2.4rem !important;

                    @media screen and (max-width: 820px) {
                        margin-top: 1.8rem !important;
                    }
                }

                & p:last-child {
                    margin-top: 3rem !important;
                    line-height: 2;

                    @media screen and (max-width: 820px) {
                        margin-top: 2rem !important;
                    }
                }
            }
        }
        .right-col {
            /* flex: 1; */
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 8rem;
            color: #565656;
            width: 50%;

            @media screen and (max-width: 1024px) {
                gap: 2.2rem;
                width: 100%;
            }

            @media screen and (max-width: 1200px) {
                gap: 3.5rem;
                display: contents;
            }

            .title {
                font-size: 4rem;
                font-weight: 600;
                text-align: center;
                position: relative;
                top: -4rem;

                @media screen and (max-width: 1024px) {
                    font-size: 3.5rem;
                }

                @media screen and (max-width: 820px) {
                    font-size: 2.4rem;
                }
            }
            .icon-box {
                display: flex;
                gap: 3rem;
                position: relative;
                top: -2rem;

                @media screen and (max-width: 1200px) {
                    top: 1.5rem;
                    justify-content: center;
                }

                @media screen and (max-width: 820px) {
                    flex-direction: column;
                    top: 2rem;
                }

                .detail-item {
                    background-color: var(--white);
                    border-radius: 50%;
                    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.2);
                    width: 23rem;
                    height: 23rem;
                    position: relative;
                    top: -3rem;

                    @media screen and (max-width: 1024px) {
                        width: 20rem;
                        height: 20rem;
                    }

                    @media screen and (max-width: 767px) {
                        margin: 0 auto;
                    }

                    .item-text {
                        font-size: 1.6rem;
                    }
                }
            }
            .text-box {
                font-size: 1.8rem;

                @media screen and (max-width: 820px) {
                    font-size: 1.6rem;
                    padding: 0 3rem;
                }

                @media screen and (max-width: 1200px) {
                    order: 2;
                }

                & span {
                    /* font-weight: 600;
                    font-size: 2.4rem; */

                    @media screen and (max-width: 820px) {
                        font-size: 1.8rem;
                    }
                }

                & p {
                    margin-top: 0 !important;
                }

                & p:nth-child(2) {
                    margin-bottom: 1.3rem;
                    margin-top: 2.4rem !important;

                    @media screen and (max-width: 820px) {
                        margin-top: 1.8rem !important;
                    }
                }

                & p:last-child {
                    margin-top: 3rem !important;
                    line-height: 2;

                    @media screen and (max-width: 820px) {
                        margin-top: 2rem !important;
                    }
                }
            }
        }
    }

    .bottom-col {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 50%);
        width: 92rem;
        max-width: 92rem;
        z-index: 1;

        @media screen and (max-width: 820px) {
            width: 90%;
        }

        .title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
            text-align: center;

            @media screen and (max-width: 820px) {
                font-size: 2rem;
                margin-bottom: 2rem;
            }
        }
        .img-box {
            .capiton {
                font-size: 2rem;
                font-weight: 500;

                @media screen and (max-width: 820px) {
                    font-size: 1.6rem;
                }
            }
        }
    }
}

/* Schedule */
.schedule {
    background-color: #ededed;
    border-top-left-radius: 10rem;
    border-top-right-radius: 10rem;
    padding: 10rem 0;
    position: relative;
    display: block;

    @media screen and (max-width: 820px) {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    &::after {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        background-repeat: no-repeat;
        background-size: contain;
        background-image: url(../../img/page/facility/kamoi/sched-icon.svg);
        width: 83rem;
        height: 40rem;

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

    .com-sched-box {
        width: 126rem;
        max-width: 126rem;
        margin: 0 auto;
        color: #333333;

        @media screen and (max-width: 1301px) {
            width: 100%;
            max-width: 100%;
        }

        @media screen and (max-width: 820px) {
            width: 100%;
            max-width: 100%;
        }

        .title-box {
            margin-bottom: 5rem;
            text-align: center;

            & img {
                width: 58rem;

                @media screen and (max-width: 820px) {
                    width: 60%;
                }
            }
        }
        .content-box {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 8rem;

            .desc {
                font-size: 2.6rem;
                text-align: center;
                font-weight: 500;

                @media screen and (max-width: 820px) {
                    font-size: 1.8rem;
                    padding: 0 3rem;
                    text-align: left;
                }
            }
            .sub-title {
                color: #565656;
                font-weight: 600;
                font-size: 2.6rem;

                @media screen and (max-width: 820px) {
                    font-size: 1.8rem;
                }
            }
            .sched-det-box {
                background-color: var(--white);
                border-radius: 5rem;
                padding: 10rem 22rem;

                @media screen and (max-width: 820px) {
                    border-radius: 0;
                    padding: 3rem 5rem;
                }

                .det-table {
                    .det-row {
                        display: flex;
                        font-weight: 500;
                        gap: 1.5rem;

                        .row-time {
                            font-size: 1.6rem;
                            flex: 0 0 9rem;
                            line-height: 1;
                        }
                        .row-content {
                            position: relative;
                            padding-bottom: 3rem;

                            @media screen and (max-width: 820px) {
                                padding-bottom: 2rem;
                            }

                            &::after {
                                content: "";
                                position: absolute;
                                top: 0;
                                left: 0;
                                width: 1px;
                                height: 100%;
                                background: #e59a9a;
                            }

                            .content-title {
                                padding-left: 3rem;
                                position: relative;
                                padding-bottom: 1rem;
                                font-size: 2.6rem;
                                line-height: 1;

                                @media screen and (max-width: 820px) {
                                    padding-left: 2rem;
                                    font-size: 1.8rem;
                                    line-height: 1.8;
                                    transform: translateY(-3px);
                                }

                                &::before,
                                &::after {
                                    content: "";
                                    position: absolute;
                                }

                                &::before {
                                    width: 15px;
                                    height: 15px;
                                    border-radius: 50%;
                                    background: #e59a9a;
                                    top: 0;
                                    left: 0;
                                    transform: translateX(-50%);
                                }
                            }
                            .content-text {
                                padding-left: 3rem;
                            }
                        }

                        &:last-child .row-content {
                            .content-title {
                                padding-bottom: 0;
                            }

                            &::after {
                                display: none;
                            }
                        }
                    }
                }
            }
        }
    }
}

#service {
    padding-top: 12rem;
    .com-flex-wrapper {
        .content-box {
            padding-bottom: 18rem;
            margin-bottom: 35rem;
            position: relative;

            @media screen and (max-width: 820px) {
                padding-bottom: 0;
                margin-bottom: 20rem;
            }

            &::before {
                bottom: 33rem;
            }
        }
    }
}

#service2,
#service3 {
    .com-flex-wrapper {
        .content-box {
            position: relative;

            .bottom-col {
                width: 114rem;
                max-width: 114rem;

                @media screen and (max-width: 1301px) {
                    width: 80%;
                }

                @media screen and (max-width: 820px) {
                    width: 80%;
                }

                .img-list {
                    display: flex;
                    gap: 7rem;

                    @media screen and (max-width: 820px) {
                        flex-direction: column;
                        gap: 3rem;
                    }
                }
            }
        }
    }
}

#service2 .content-box {
    padding-bottom: 16rem;
    margin-bottom: 69.5rem;

    &::before {
        bottom: 3rem;
    }

    .bottom-col {
        @media screen and (max-width: 820px) {
            transform: translate(-50%, 60%);
        }
    }
}
#service3 .content-box {
    padding-bottom: 20rem;
    margin-bottom: 45rem;

    @media screen and (max-width: 1301px) {
        padding-bottom: 30rem;
    }

    @media screen and (max-width: 820px) {
        padding-bottom: 20rem;
        margin-bottom: 45rem;
    }

    &::before {
        bottom: 3rem;
    }
}

.library {
    padding-bottom: 14rem;
    width: 155rem;
    max-width: 155rem;
    margin: 0 auto;

    @media screen and (max-width: 1301px) {
        width: calc(100% - 6rem);
    }

    @media screen and (max-width: 820px) {
        padding-bottom: 8rem;
        width: calc(100% - 3rem);
        margin-top: 10rem;
    }

    .title-box {
        z-index: -1;
        text-align: center;

        & img {
            width: 46rem;

            @media screen and (max-width: 820px) {
                width: 80%;
            }
        }
    }
    .desc {
        font-size: 1.6rem;
        font-weight: 500;
        margin-bottom: 8rem;
        z-index: 10;
        text-align: center;
        margin-top: -3rem;
        position: relative;

        @media screen and (max-width: 820px) {
            text-align: left;
        }
    }

    .lib-list {
        display: flex;
        gap: 2.6rem;

        @media screen and (max-width: 820px) {
            flex-direction: column;
            gap: 3rem;
        }

        .list-item {
            width: 45rem;

            @media screen and (max-width: 820px) {
                width: 100%;
            }

            .img-box {
                margin-bottom: 3rem;
                display: flex;
                align-items: center;

                & img {
                    height: 38rem;
                    width: 30rem;
                    margin: 0 auto;

                    @media screen and (max-width: 820px) {
                        width: 100%;
                    }
                }
            }
            .content-box {
                .cat {
                    font-size: 1.6rem;
                    padding: 1rem 1.8rem;
                    display: inline-block;
                    border-radius: 4rem;
                    line-height: 1;
                    border: 1px solid currentColor;
                    color: #0163a0;
                    margin-bottom: 1rem;

                    @media screen and (max-width: 820px) {
                        font-size: 1.4rem;
                    }
                }
                .time {
                    font-size: 1.6rem;
                    color: #808080;
                    line-height: 2;

                    @media screen and (max-width: 820px) {
                        font-size: 1.4rem;
                    }
                }
                .title {
                    color: #0163a0;
                    font-size: 2rem;
                    font-weight: 600;

                    @media screen and (max-width: 820px) {
                        font-size: 1.8rem;
                    }
                }
            }
        }
    }

    .btn-wrapper {
        @media screen and (max-width: 820px) {
            margin-top: 5rem !important;
        }
    }
}

.area-up::after {
    content: "";
    display: block;
    background: url(../../img/page/facility/kamoi/footer_bg.svg) no-repeat;
    background-size: cover;
    width: min(38.4vw, 289px);
    height: min(30.4vw, 288px);
    position: absolute;
    left: 11rem;
    bottom: -8rem;
    /* top: min(-15.2vw, -57px); */

    /* @media screen and (width >= 768px) {
  .area-up::before {
      width: min(18.4895833333vw, 355px);
      height: min(14.6354166667vw, 281px);
      top: max(-13.0208333333vw, -250px);
  }
} */
}

.area-down::before {
    content: "";
    display: block;
    background: url(../../img/page/facility/kamoi/footer_bg_02.svg) no-repeat;
    background-size: cover;
    width: min(38.4vw, 185px);
    height: min(30.4vw, 225px);
    position: absolute;
    right: 15rem;
    bottom: 8rem;
    /* top: min(-15.2vw, -57px); */

    /* @media screen and (width >= 768px) {
  .area-up::before {
      width: min(18.4895833333vw, 355px);
      height: min(14.6354166667vw, 281px);
      top: max(-13.0208333333vw, -250px);
  }
} */
}

#footer {
    .area-down {
        position: relative;
    }

    .inner {
        width: 125rem;
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 0;
    }

    & a {
        text-decoration: none !important;
        color: #333 !important;
    }
    .area-up {
        position: relative;

        @media screen and (max-width: 901px) {
            .contact-title .watermark {
                right: 20%;
                top: -30%;
            }
        }

        .two-btns {
            @media screen and (max-width: 1301px) {
                width: 90%;
                margin-left: auto;
                margin-right: auto;
            }

            @media screen and (max-width: 901px) {
                flex-direction: column;
            }

            .two-btn {
                text-decoration: none;

                .work-time {
                    margin: 0 !important;
                }

                .tel {
                    .tel-txt {
                        margin: 0 !important;
                    }
                }

                .mail {
                    .mail-txt {
                        margin: 0 !important;
                    }
                }
            }
        }
    }

    .area-mid {
        .footer-nav {
            @media screen and (max-width: 1301px) {
                width: 90%;
                margin-left: auto;
                margin-right: auto;
            }
        }
    }
}

/* MAP */
#map {
    padding: 20rem 0;
    background-color: #eef2eb;
    position: relative;
    z-index: 0;

    @media screen and (max-width: 820px) {
        padding: 10rem 0;
    }

    &::before,
    &::after {
        content: "";
        position: absolute;
        top: 14rem;
        background-repeat: no-repeat;
        background-size: contain;
        width: 60rem;
        height: 60rem;
        z-index: -1;

        @media screen and (max-width: 1301px) {
            top: -6rem;
            width: 40rem;
            height: 50rem;
        }

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

    &::before {
        left: -12rem;
        background-image: url(../../img/page/facility/kamoi/map_icon01.svg);
    }

    &::after {
        right: -35rem;
        background-image: url(../../img/page/facility/kamoi/map_icon02.svg);

        @media screen and (max-width: 1301px) {
            right: -17rem;
            width: 30rem;
            height: 35rem;
        }
    }

    .map-wrapper {
        max-width: 120rem;
        width: 120rem;
        margin: 0 auto;

        @media screen and (max-width: 1301px) {
            width: calc(100% - 6rem);
        }

        @media screen and (max-width: 820px) {
            width: calc(100% - 3rem);
        }

        .map-title-box {
            display: flex;
            justify-content: center;
            margin-bottom: 16rem;

            @media screen and (max-width: 820px) {
                margin-bottom: 8rem;
            }

            & img {
                width: 70rem;

                @media screen and (max-width: 1301px) {
                    width: 70%;
                }

                @media screen and (max-width: 820px) {
                    width: 80%;
                }
            }
        }

        .tab-box {
            display: flex;
            gap: 2px;
            height: 9rem;
            width: 100%;

            @media screen and (max-width: 820px) {
                height: 4rem;
            }

            .tab {
                flex: 1;
                height: 100%;
                background-color: var(--white);
                color: #989898;
                text-align: center;
                font-size: 3.6rem;
                font-weight: bold;
                cursor: pointer;
                transition: background-color 0.3s;
                display: flex;
                justify-content: center;
                align-items: center;

                @media screen and (max-width: 820px) {
                    font-size: 1.6rem;
                }
            }

            .tab.active {
                background-color: #99ceb5;
                color: var(--white);
            }
        }

        .content-box {
            width: 1200px;
            background-color: var(--white);
            padding: 9rem 4rem;

            @media screen and (max-width: 1301px) {
                width: 100%;
            }

            @media screen and (max-width: 820px) {
                width: 100%;
                padding: 3rem;
            }

            .tab-content {
                display: none;
            }

            .tab-content.active {
                display: block;
            }

            .tab-content img {
                max-width: 100%;
                height: auto;
                display: block;
            }
        }
    }
}

.news_bottom {
    @media screen and (max-width: 820px) {
        text-align: center;
        display: flex;
        justify-content: center;
        margin-top: 3rem;
    }
}

.common-btn.btn-primary {
    color: #707070;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #eaeaea;
    font-size: min(0.9375vw, 18px);
    font-weight: var(--semi);
    justify-content: center;
    text-align: center;
    min-height: min(2.9166666667vw, 56px);
    border-radius: min(0.5208333333vw, 10px);
    width: min(11.25vw, 216px);

    @media screen and (max-width: 820px) {
        width: 20rem;
        height: 4rem;
        border-radius: 5px;
        font-size: 1.6rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    &::after {
        content: "";
        display: block;
        width: 0;
        height: 0;
        margin: auto;
        border: clamp(4px, 0.8vw, 8.5px) solid transparent;
        border-top: clamp(6px, 1.2vw, 12px) solid #656565;
        border-bottom: 0;
        position: absolute;
        top: 0;
        bottom: 0;
        right: clamp(8px, 1.8vw, 26px);
        transform: rotate(-90deg);
    }
}

@media screen and (max-width: 820px) {
    .vision .vision_pic img {
        height: 20rem;
        object-fit: cover;
    }
}
@media screen and (max-width: 820px) {
    .header .header_btn.header_btn--primary {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 5rem;
        border-radius: 4px;
        margin-bottom: 2rem;
    }
    .header .header_btn.header_btn--primary {
        color: var(--white);
        background-color: var(--primary);
    }
}

@media screen and (max-width: 1301px) {
    .news .news_media {
        width: 100%;
        max-width: 100%;
    }
}
.access:before {
    @media screen and (max-width: 1301px) {
        width: 60rem;
        height: 40rem;
        top: -20rem;
        left: -13rem;
    }
}

.pc-off {
    br {
        display: none;

        @media screen and (width <= 767.9px) {
            display: block;
        }
    }
}

.room-grid {
    width: 100%;
    flex-wrap: wrap;
    display: flex;
    padding-top: 2rem;
    gap: 3rem;
    margin: auto;
    /* justify-content: center; */

    @media screen and (max-width: 820px) {
        gap: 2rem;
        padding: 0 3rem;
    }
}

.room-grid-title {
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 2.4rem;
    letter-spacing: 0.05em;
    text-align: center;
    color: #565656;
    padding-bottom: 1rem;
}

.room-grid-2 {
    width: 100%;
    flex-wrap: wrap;
    display: flex;
    padding-top: 5rem;
    gap: 3rem;
    margin: auto;
    /* justify-content: center; */

    @media screen and (max-width: 820px) {
        gap: 2rem;
        padding-top: 2rem;
    }
}

.room-card {
    /* display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    position: relative; */
    width: 31.3%;

    @media screen and (max-width: 1394px) {
        width: 31%;
    }

    @media screen and (max-width: 820px) {
        width: 46%;
    }
}

.room-card ul {
    margin: 0;

    & li {
        font-size: 1.8rem;
        @media screen and (max-width: 820px) {
            font-size: 1.4rem;
        }
    }
}

.room-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.room-des {
    font-family: "Noto Sans JP";
    font-weight: 600;
    font-size: 2rem;
    letter-spacing: 0.05em;
    text-align: left;
    color: #000;

    @media screen and (max-width: 820px) {
        font-size: 1.2rem;
    }
}

.food-grid {
    /* width: 100%; */
    /* flex-wrap: wrap; */
    /* gap: 2.5rem; */
    display: flex;
    margin: 3rem 10rem;
    background-color: #ededed;
    justify-content: left;
    border-radius: 5px;

    @media screen and (max-width: 1024px) {
        gap: 2rem;
        padding: 0 2rem;
        margin: 0;
        margin-top: 3rem;
    }

    @media screen and (max-width: 820px) {
        gap: 2rem;
        padding: 0 2rem;
        margin: 0;
        margin-top: 3rem;
    }
}

.food-grid-container {
    width: 125.2rem;
    max-width: 100%;
    margin: auto;
    padding: 3rem;

    @media screen and (max-width: 820px) {
        padding: 1rem 0;
        padding-top: 2rem;
    }
}

.food-grid-title {
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 3rem;
    letter-spacing: 0.05em;
    text-align: center;
    color: #565656;

    @media screen and (max-width: 820px) {
        font-size: 2rem;
    }
}

.food-card-container {
    padding: 3rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;

    @media screen and (max-width: 820px) {
        padding: 1rem 0;
    }
}

.food-card {
    /* display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    position: relative; */
    width: 31.7%;

    @media screen and (max-width: 820px) {
        width: 100%;
    }
}

.food-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;

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

.food-des {
    font-family: "Noto Sans JP";
    font-weight: normal;
    font-size: 2rem;
    letter-spacing: 0.05em;
    text-align: left;
    color: #000;

    @media screen and (max-width: 820px) {
        font-size: 1.6rem;
        text-align: center;
    }
}

.mv-txts {
    position: absolute;
    z-index: 2;
    left: 25%;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    top: 7rem;

    @media screen and (max-width: 820px) {
        /* position: relative; */
        gap: 0;
        top: 1.5rem;
        left: 20%;
        width: 60%;
    }
}

#welfare {
    margin-bottom: 8rem;
}

.features-body-container {
    background-color: #faf8f2;

    @media screen and (max-width: 820px) {
        padding: 6rem 0;
        /* border-radius: 5rem; */
    }

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

/* FAQ */

.faq {
    /* padding-top: min(10.6666666667vw, 40px); */
    /* padding-top: 0 !important; */
    padding-bottom: min(6.4vw, 24px);
}
.faq .faq_heading {
    width: min(52.8vw, 198px);
    margin-left: min(20.2666666667vw, 76px);
}
.faq .faq_body {
    margin-top: min(5.0666666667vw, 19px);
}
.faq .faq_nav {
    display: -ms-grid;
    display: grid;
    row-gap: min(2.4vw, 9px);
    width: min(83.2vw, 312px);
    margin: 0 auto;
}
.faq .faq_btn {
    color: #656565;
    font-size: min(4.2666666667vw, 16px);
    font-weight: var(--semi);
    background: #f5f5e1;
    display: flex;
    align-items: center;
    text-decoration: none;
    min-height: min(12.8vw, 48px);
    padding-left: min(13.0666666667vw, 49px);
    border-radius: min(2.6666666667vw, 10px);
    position: relative;
}
.faq .faq_btn::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin: auto;
    border: min(2.2666666667vw, 8.5px) solid transparent;
    border-top: min(3.2vw, 12px) solid #656565;
    border-bottom: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    right: min(9.3333333333vw, 35px);
}
.faq .faq_content {
    display: -ms-grid;
    display: grid;
    row-gap: min(4vw, 15px);
    width: min(94.6666666667vw, 355px);
    margin: min(10.4vw, 39px) auto 0;
}
.faq .faq_item {
    background: #f5f5e1;
    padding: min(11.4666666667vw, 43px) min(3.7333333333vw, 14px) min(6.9333333333vw, 26px);
    border-radius: min(4vw, 15px);
}
.faq .faq_title {
    color: #656565;
    font-size: min(5.3333333333vw, 20px);
    font-weight: var(--bold);
    letter-spacing: 0.05em;
    text-align: center;
}
.faq .faq_list {
    display: flex;
    flex-direction: column;
    row-gap: min(4.2666666667vw, 16px);
    margin-top: min(6.9333333333vw, 26px);
}
.faq .faq_list_item {
    overflow: hidden;
}
.faq .faq_list_item.is-active .faq_q > i::after {
    opacity: 0;
}
.faq .faq_list_item.is-active .faq_a {
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
}
.faq .faq_q {
    color: #313131;
    font-size: min(3.7333333333vw, 14px);
    font-weight: var(--bold);
    line-height: 1.7142;
    letter-spacing: 0.16em;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: min(83.2vw, 312px);
    margin: 0 auto;
    padding-bottom: min(1.6vw, 6px);
    border-bottom: 1px solid var(--white);
}
.faq .faq_q > span {
    color: var(--white);
    font-size: min(5.3333333333vw, 20px);
    font-weight: var(--semi);
    line-height: 1;
    margin-right: min(1.6vw, 6px);
}
.faq .faq_q > i {
    display: block;
    flex-shrink: 0;
    width: min(5.3333333333vw, 20px);
    height: min(5.3333333333vw, 20px);
    margin-top: min(0.5333333333vw, 2px);
    margin-left: auto;
    position: relative;
}
.faq .faq_q > i::before,
.faq .faq_q > i::after {
    content: "";
    display: block;
    background: #707070;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.faq .faq_q > i::before {
    width: 100%;
    height: min(0.8vw, 3px);
}
.faq .faq_q > i::after {
    width: min(0.8vw, 3px);
    height: 100%;
}
.faq .faq_a {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 0fr;
    grid-template-rows: 0fr;
}
.faq .faq_a_inner {
    overflow: hidden;
}
.faq .faq_a_content {
    color: #313131;
    background: var(--white);
    display: flex;
    margin-top: min(2.6666666667vw, 10px);
    padding: min(2.6666666667vw, 10px) min(13.8666666667vw, 52px) min(2.6666666667vw, 10px) min(2.6666666667vw, 10px);
    position: relative;
}
.faq .faq_a_content::after {
    content: "";
    display: block;
    background: #707070;
    width: min(5.3333333333vw, 20px);
    height: min(0.8vw, 3px);
    position: absolute;
    top: min(3.4666666667vw, 13px);
    right: min(3.2vw, 12px);
}
.faq .faq_a_content > span {
    color: var(--primary);
    font-size: min(5.3333333333vw, 20px);
    font-weight: var(--semi);
    margin-right: min(3.2vw, 12px);
}
.faq .faq_a_content > div {
    font-size: min(3.7333333333vw, 14px);
    font-weight: var(--bold);
    line-height: 1.7142;
    padding-top: min(1.0666666667vw, 4px);
}

@media screen and (width >= 768px) {
    html.is-fz-large .faq .faq_btn {
        font-size: min(1.3020833333vw, 25px);
    }
    html.is-fz-large .faq .faq_title {
        font-size: min(1.6927083333vw, 32.5px);
    }
    html.is-fz-large .faq .faq_q {
        font-size: min(1.5416666667vw, 30px);
    }
    html.is-fz-large .faq .faq_a_content > div {
        font-size: min(1.0416666667vw, 20px);
    }
    html.is-fz-small .faq .faq_btn {
        font-size: min(0.8333333333vw, 16px);
    }
    html.is-fz-small .faq .faq_title {
        font-size: min(1.0833333333vw, 20.8px);
    }
    html.is-fz-small .faq .faq_q {
        font-size: min(0.6666666667vw, 12.8px);
    }
    html.is-fz-small .faq .faq_a_content > div {
        font-size: min(0.6666666667vw, 12.8px);
    }

    .faq {
        padding-top: min(5.1979166667vw, 215px);
        /* padding-bottom: min(16.0416666667vw, 308px); */
    }
    .faq .faq_heading {
        width: min(22.0833333333vw, 424px);
        margin: 0 auto;
    }
    .faq .faq_body {
        margin-top: min(3.0208333333vw, 58px);
    }
    .faq .faq_nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 min(1.875vw, 36px);
        width: auto;
    }
    .faq .faq_btn {
        font-size: min(1.0416666667vw, 20px);
        justify-content: center;
        text-align: center;
        min-width: min(14.2708333333vw, 274px);
        min-height: min(3.2291666667vw, 62px);
        padding: 0 min(2.6041666667vw, 50px) 0 min(1.09375vw, 21px);
        box-sizing: border-box;
    }
    .faq .faq_btn::after {
        border-width: min(0.546875vw, 10.5px);
        border-top-width: min(0.8333333333vw, 16px);
        right: min(1.3541666667vw, 26px);
    }
    .faq .faq_content {
        row-gap: min(3.0208333333vw, 58px);
        width: min(69.5833333333vw, 1336px);
        margin-top: min(2.1875vw, 42px);
    }
    .faq .faq_item {
        padding: min(2.4479166667vw, 47px) 0 min(4.21875vw, 81px);
        border-radius: min(2.4479166667vw, 47px);
    }
    .faq .faq_title {
        font-size: min(1.3541666667vw, 26px);
    }
    .faq .faq_list {
        row-gap: min(0.3125vw, 6px);
        margin-top: min(2.8645833333vw, 55px);
    }
    .faq .faq_q {
        font-size: min(0.8333333333vw, 16px);
        align-items: center;
        width: min(51.9791666667vw, 998px);
        min-height: min(4.0104166667vw, 77px);
        padding-bottom: 0;
    }
    .faq .faq_q > span {
        font-size: min(1.9791666667vw, 38px);
        margin-left: min(0.6770833333vw, 13px);
        margin-right: min(2.34375vw, 45px);
    }
    .faq .faq_q > i {
        width: min(1.40625vw, 27px);
        height: min(1.40625vw, 27px);
        margin-top: 0;
        margin-right: min(0.8333333333vw, 16px);
    }
    .faq .faq_q > i::before {
        height: min(0.2604166667vw, 5px);
    }
    .faq .faq_q > i::after {
        width: min(0.2604166667vw, 5px);
    }
    .faq .faq_a {
        width: min(51.9791666667vw, 998px);
        margin: 0 auto;
    }
    .faq .faq_a_content {
        margin-top: min(0.2604166667vw, 5px);
        padding: min(1.25vw, 24px) min(2.7083333333vw, 52px) min(1.25vw, 24px) min(1.3541666667vw, 26px);
    }
    .faq .faq_a_content::after {
        width: min(1.40625vw, 27px);
        height: min(0.2604166667vw, 5px);
        top: min(2.0833333333vw, 40px);
        right: min(0.8333333333vw, 16px);
    }
    .faq .faq_a_content > span {
        font-size: min(1.9791666667vw, 38px);
        line-height: 1;
        margin-right: min(2.1875vw, 42px);
    }
    .faq .faq_a_content > div {
        font-size: min(0.8333333333vw, 16px);
        line-height: 2.125;
        padding-top: min(0.2083333333vw, 4px);
    }
}

@media (prefers-reduced-motion: no-preference) {
    .faq .faq_a {
        transition: grid-template-rows 0.5s;
        transition: grid-template-rows 0.5s, -ms-grid-rows 0.5s;
    }
}

/* MAP */
#map {
    padding: 20rem 0;
    background-color: #f5f5e1;
    position: relative;
    z-index: 0;

    @media screen and (max-width: 820px) {
        padding: 10rem 0;
    }

    &::before,
    &::after {
        content: "";
        position: absolute;
        top: 14rem;
        background-repeat: no-repeat;
        background-size: contain;
        width: 60rem;
        height: 60rem;
        z-index: -1;

        @media screen and (max-width: 1301px) {
            top: -6rem;
            width: 40rem;
            height: 50rem;
        }

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

    &::before {
        left: -12rem;
        background-image: url(../../img/page/facility/sawayaka/map_icon01.svg);
    }

    &::after {
        right: -35rem;
        background-image: url(../../img/page/facility/sawayaka/map_icon02.svg);

        @media screen and (max-width: 1301px) {
            right: -17rem;
            width: 30rem;
            height: 35rem;
        }
    }

    .map-wrapper {
        max-width: 120rem;
        width: 120rem;
        margin: 0 auto;

        @media screen and (max-width: 1301px) {
            width: calc(100% - 6rem);
        }

        @media screen and (max-width: 820px) {
            width: calc(100% - 3rem);
        }

        .map-title-box {
            display: flex;
            justify-content: center;
            margin-bottom: 16rem;

            @media screen and (max-width: 820px) {
                margin-bottom: 8rem;
            }

            & img {
                width: 70rem;

                @media screen and (max-width: 1301px) {
                    width: 70%;
                }

                @media screen and (max-width: 820px) {
                    width: 80%;
                }
            }
        }

        .tab-box {
            display: flex;
            gap: 2px;
            height: 9rem;
            width: 100%;

            @media screen and (max-width: 820px) {
                height: 4rem;
            }

            .tab {
                flex: 1;
                height: 100%;
                background-color: var(--white);
                color: #989898;
                text-align: center;
                font-size: 3.6rem;
                font-weight: bold;
                cursor: pointer;
                transition: background-color 0.3s;
                display: flex;
                justify-content: center;
                align-items: center;

                @media screen and (max-width: 820px) {
                    font-size: 1.6rem;
                }
            }

            .tab.active {
                background-color: #99ceb5;
                color: var(--white);
            }
        }

        .content-box {
            width: 1200px;
            background-color: var(--white);
            padding: 9rem 4rem;

            @media screen and (max-width: 1301px) {
                width: 100%;
            }

            @media screen and (max-width: 820px) {
                width: 100%;
                padding: 3rem;
            }

            .tab-content {
                display: none;
            }

            .tab-content.active {
                display: block;
            }

            .tab-content img {
                max-width: 100%;
                height: auto;
                display: block;
            }
        }
    }
}

#news {
    @media screen and (max-width: 820px) {
        padding-top: 15rem;
    }

    @media screen and (max-width: 767px) {
        padding-top: 3rem;
    }
}

.facility-top {
    display: flex;
    gap: 10rem;

    @media screen and (max-width: 1200px) {
        gap: 5rem;
        flex-direction: column;
    }
    @media screen and (max-width: 820px) {
        flex-direction: column;
        gap: 2rem;
    }
}

/* PARAGRAPH COL */

.paragraph-content {
    display: flex;
    gap: 10rem;
    margin-bottom: 10rem;

    @media screen and (max-width: 820px) {
        gap: 5rem;
        flex-direction: column;
        align-items: center;
    }
}

/* PDF BTN */

.pdf-btn-col {
    .detail-title {
        font-size: 2.4rem;
        font-weight: 700;
        margin-bottom: 6rem;
        text-align: center;

        @media screen and (max-width: 820px) {
            font-size: 1.8rem;
            margin-bottom: 3rem;
        }
    }
    .detail-list {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 3.6rem;

        @media screen and (max-width: 820px) {
            flex-direction: column;
            gap: 3rem;
        }
    }
}

.pdf-btn {
    display: flex;
    justify-content: center;
    position: relative;
    transition: 0.3s opacity;

    &:hover {
        opacity: 0.9;
    }
}

.pdf-link {
    width: 45rem;
    height: 6rem;
    padding: 1.7rem;
    padding-right: 0;
    /* display: flex;
      justify-content: center;
      align-items: center; */
    position: relative;
    background-color: #fff;
    border-radius: 1rem;
    color: #656565;
    text-decoration: none;
    font-family: "Noto Sans JP";
    font-weight: 400;
    font-size: 2rem;
    letter-spacing: 0.05em;
    line-height: 2.8rem;
    text-align: left;
    color: #1d1d1d;

    @media screen and (max-width: 820px) {
        /* width: 90vw; */
        height: 5rem;
        font-size: 1.4rem;
        display: flex;
        align-items: center;
        padding-left: 11.5rem;
        margin: 0 3rem;
        /* justify-content: center; */
    }

    .pdf-logo {
        position: absolute;
        width: 1.8rem;
        right: 2rem;
    }
}

html.is-fz-small p,
html.is-fz-small span,
html.is-fz-small div {
    font-size: min(0.6666666667vw, 12.8px) !important;
}

html.is-fz-small span.intro-text {
    font-size: min(0.6666666667vw, 12.8px) !important;
}

html.is-fz-small h3.about-title-name {
    font-size: 2rem !important;
}

html.is-fz-large p,
html.is-fz-large span,
html.is-fz-large div,
html.is-fz-large div.caption {
    font-size: min(2.3416666967vw, 24px) !important;
}

html.is-fz-large div.detail-title {
    font-size: min(2.1416666967vw, 30px) !important;
}

html.is-fz-large div.food-grid-title,
html.is-fz-large div.det-title {
    font-size: min(2.1416666967vw, 40px) !important;
}

html.is-fz-large div.title,
html.is-fz-large div.gallery_title {
    font-size: min(3.1416666967vw, 50px) !important;
}

html.is-fz-large h3.about-title-name {
    font-size: 4rem !important;
}

.service-detail-text-box {
    width: 800px;
    margin: 7rem auto;
    font-size: 1.8rem;
    color: #565656;
    line-height: 2;
    font-family: var(--jp);
    font-weight: var(--regular);
    font-optical-sizing: auto;
    letter-spacing: 0.1em;
    @media screen and (max-width: 820px) {
        width: 80%;
        font-size: 1.6rem;
    }
}

.features_media {
    width: 100%;

    @media screen and (max-width: 1200px) {
        display: flex;
        flex-direction: column;
    }
}

.features_media_body {
    width: 50%;

    @media screen and (max-width: 1200px) {
        width: 100%;
    }
}

.features_media_image {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 4rem;

    @media screen and (max-width: 1200px) {
        align-items: center;
        width: 100%;
        gap: 2rem;
    }
}

.pt210 {
    padding-top: 15.5rem !important;
    @media screen and (max-width: 1024px) {
        padding-top: 0 !important;
    }
    @media screen and (max-width: 820px) {
        padding-top: 5.5rem !important;
    }
}

.news {
    padding-top: min(5.8854166667vw, 113px);
    padding-bottom: min(15.46875vw, 297px);
    position: relative;
    margin-top: -3.5rem;
    background: #eff2ec;
    z-index: 0;

    @media screen and (max-width: 820px) {
        margin-top: 0;
    }
}

.news::before,
.news::after {
    content: "";
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
}
.news::before {
    background-image: url(../../img/page/facility/kamoi/news_icon_01.svg);
    /* width: min(29.5833333333vw, 568px);
    height: min(20.9375vw, 402px);
    top: min(2.0833333333vw, 40px);
    left: min(-4.1666666667vw, -80px); */
    width: 50rem;
    height: 60rem;
    background-size: contain;
    top: -3rem;
    left: -9rem;
    z-index: -1;

    @media screen and (max-width: 820px) {
        width: 20rem;
        height: 20rem;
        left: 0;
    }
}
.news::after {
    background-image: url(../../img/page/facility/kamoi/news_icon_02.svg);
    width: min(29.5833333333vw, 568px);
    height: min(22.8125vw, 438px);
    /* right: min(-1.8229166667vw, -35px);
    bottom: min(6.25vw, 120px); */
    bottom: -1rem;
    right: -9rem;
    background-size: contain;
    width: 60rem;
    height: 60rem;
    z-index: -1;

    @media screen and (max-width: 820px) {
        width: 20rem;
        height: 20rem;
        right: 0;
    }
}

.features .features_media {
    width: 100% !important;
    @media screen and (max-width: 1024px) {
        gap: 5rem !important;
        display: flex;
        flex-direction: column !important;
    }
}

.g45 {
    gap: 4.5rem !important;
}
.g60 {
    gap: 6rem !important;
}

.g75 {
    gap: 7.5rem !important;
}

.features_test.pc-off {
    @media screen and (max-width: 1200px) {
        display: block !important;
    }
}

.features_text.sp-off {
    @media screen and (max-width: 1200px) {
        display: none !important;
    }
}

.inner {
    width: 111rem;
    max-width: 111rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10rem;
    /* transform: translateY(-20rem); */

    @media screen and (max-width: 1301px) {
        flex-direction: column;
        /* width: calc(100% - 6rem); */
        width: 100%;
    }

    @media screen and (max-width: 820px) {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }
}

.inner-2 {
    width: 111rem;
    max-width: 111rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10rem;
    transform: translateY(-20rem);
    position: relative;
    z-index: 9;

    @media screen and (max-width: 1301px) {
        flex-direction: column;
        /* width: calc(100% - 6rem); */
        width: 100%;
    }

    @media screen and (max-width: 820px) {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        gap: 0;
    }
}

.faq .faq_q {
    font-size: clamp(16px, 0.833vw, 20px);
    align-items: center;
    width: min(51.9791666667vw, 998px);
    min-height: min(4.0104166667vw, 77px);
    padding-bottom: 0;
}

.facility .content-box-2 {
    @media screen and (max-width: 820px) {
        height: 120rem;
    }
}
