@charset "UTF-8";

@font-face {
    font-family: "shingoprob";
    src: url("../fonts/A-OTF-UDShinGoPro-Bold.otf") format("opentype");

    font-family: "akazukinpop";
    src: url("../fonts/din1451altG.ttf");
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
base
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
:root {
    --main-color: #028F5E;
    --sub-color: #FDC032;
    --white-color: #ffffff;
    --text-color: #404040;
}

html {
    font-size: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    line-height: 1.75;
    word-wrap: break-word;
    word-break: break-all;
    font-display: auto;
    letter-spacing: 0.05rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: var(--text-color);
}

.l-container {
    overflow-x: hidden;
}

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

.icon {
    display: inline-block;
    line-height: 1;
}

.pc-only {
    display: block;
}

.tb-only {
    display: none;
}

.sp-only {
    display: none;
}

@media screen and (max-width: 1200px) {
    html {
        scroll-padding-top: 80px;
    }
}

@media screen and (max-width: 768px) {
    .pc-only {
        display: none;
    }

    .tb-only {
        display: block;
    }
}

@media screen and (max-width: 576px) {
    html {
        scroll-padding-top: 60px;
    }

    .sp-only {
        display: block;
    }
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
header
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#priceBannerWrap{
    position: fixed;
    z-index: 999;
    right: 0;
    bottom: max(38%, 400px);
    width: clamp(3rem, 2.636rem + 1.82vw, 4rem);
	opacity: 0;
	transition: .5s all;
}

#priceBannerWrap.js-show{
    opacity: 1;
}


#l-navListContainer {
	position: fixed;
	right: 0;
    bottom: max(5%, 80px);
    z-index: 999;
    opacity: 0;
    transition: .5s all;
	min-width: 220px;
}

#l-navListContainer.js-show{
    opacity: 1;
}

.l-navListItem{
    border: 1px solid var(--text-color);
    background-color: var(--white-color);
    border-right: none;

    &:not(:first-child){
        margin-top: 6px;
    }

    a{
        display: flex;
    }
}

.l-navListItem--number{
    background-color: var(--main-color);
    color: var(--white-color);
    font-weight: 900;
    font-family: "shingoprob", sans-serif;
    font-optical-sizing: auto;
    line-height: 1;
    display: flex;
    align-items: center;
    width: 30px;
    justify-content: center;
}

.l-navListItem--text{
    padding:0 10px;
}

.l-navListItem--contact.c-button{
    margin-top: 10px;
    text-align: center;
    a{
        padding: 8px;
        box-shadow: none;
        width: 90%;
        font-size: 16px;
    }
}

.l-navTopButtonContainer{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--main-color);
    position: fixed;
    z-index: 999;
    bottom: 20px;
    right: 20px;
    display: none;

    &::after {
        content: '';
        width: 14px;
        height: 14px;
        border-top: solid 4px var(--white-color);
        border-right: solid 4px var(--white-color);
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -55%) rotate(-45deg);
    }
}


/* ーーーーーーーーーーーーーーーーーーーー
PC - header
ーーーーーーーーーーーーーーーーーーーーー */
.nav-accordion,
.nav-accordion-sp {
  display: none;
}

.l-header__spWrap {
    display: none;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
}

.l-header__pcInner,
.l-header__pcInner-navContainer,
.l-header__pcInner-nav-nav,
.l-header__pcInner-buttonWrap,
.l-header__pcInner-nav-telWrap {
    display: flex;
}

.l-header__pcInner {
    justify-content: space-between;
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white-color);
    z-index: 999;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
    height: 90px;
}

.l-header__pcInner-navInner {
    padding: 0.5rem 0rem;
}

/* logo　ーーーーーーーー */
.l-header__pcInner-logo {
    padding: 0.5rem 0rem 0.5rem clamp(0.625rem, 0.308rem + 1.41vw, 2rem);
    display: flex;
    align-items: center;

    img {
        width: clamp(6.25rem, 3.365rem + 12.82vw, 18.75rem);
    }
}

/* nav　ーーーーーーーー */
.l-header__pcInner-navInner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 24px;
    align-items: flex-end;
}

.l-header__pcInner-nav-nav {
    margin-top: 5px;

    & .listitem {
        font-size: 13px;
        letter-spacing: 0.05rem;
        font-weight: 700;

        &:not(:first-child) {
            margin-left: clamp(1.25rem, 1.67vw, 2rem);
        }

        & .icon {
            width: 16px;
            margin-left: 4px;
        }
    }

    & .nav-accordion {
        position: absolute;
        width: 380px;
        background: #fff;
        overflow: hidden;
        min-height: 0;

        li {
            a {
                padding: 0.75rem 1rem;
                border-bottom: 1px solid var(--main-color);
                position: relative;
                display: block;

                &::after {
                    content: "";
                    width: 10px;
                    height: 10px;
                    border-top: solid 3px var(--main-color);
                    border-right: solid 3px var(--main-color);
                    position: absolute;
                    top: 50%;
                    transform: translateY(-50%) rotate(45deg);
                    transition: 0.4s all;
                    right: 1rem;
                }
            }
        }
    }
}

.l-header__pcInner-nav-nav .nav-accordion.active {
    min-height: 180px;
}

/* tel関連 */
.l-header__pcInner-nav-telWrap {
    align-items: center;
    /* tel */
    & .telWrap {
        & .icon {
            width: clamp(1.25rem, 1.163rem + 0.38vw, 1.625rem);
        }

        & .text {
            font-size: 40px;
            font-family: "shingoprob", sans-serif;
            font-optical-sizing: auto;
            font-weight: 700;
            font-style: normal;
            letter-spacing: 0;
            color: var(--main-color);
            line-height: 1;
        }
    }

    /* hour */
    & .hourWrap {
        margin-left: 14px;
        border: 2px solid var(--main-color);
        font-size: 18px;

        & .week {
            height: 100%;
            background: var(--main-color);
            display: inline-block;
            color: var(--white-color);
            padding: 0 0.5rem;
            font-weight: 700;
        }

        & .hour {
            padding: 0 0.5rem;
            font-weight: 900;
            color: var(--main-color);
        }
    }
}

/* button　ーーーーーーーー */
.l-header__pcInner-buttonWrap {
    & .listitem {
        height: 100%;
        width: clamp(8.125rem, 7.462rem + 2.95vw, 11rem);

        a {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: var(--white-color);
            letter-spacing: 0.05rem;
            font-size: clamp(1rem, 0.971rem + 0.13vw, 1.125rem);
        }

        & .icon {
            width: 21px;
        }

        & .text {
            margin-top: 4px;
        }
    }

    & .contact a {
        background: var(--sub-color);
        color: var(--text-color);
    }

    & .quote a {
        background: var(--main-color);
    }
}

/* ーーーーーーーーーーーーーーーーーーーー
SP - header
ーーーーーーーーーーーーーーーーーーーーー */
.l-header__spWrap {
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    width: 100%;
    background: #fff;
    height: 80px;
    display: none;
}

.l-header__spWrap-logo {
    width: clamp(11.25rem, 9.375rem + 8.33vw, 15.625rem);
    height: auto;
    position: relative;
    display: inline-block;
    top: 50%;
    transform: translateY(-50%);
    left: clamp(0.625rem, 0.357rem + 1.19vw, 1.25rem);
    z-index: 6;
}


/* hamburgerMenu　ーーーーーーーー */
.p-button {
    position: relative;
    display: inline-block;
    text-decoration: none;
    appearance: none;
    border: none;
    background-color: transparent;
    cursor: pointer;
    z-index: 999;
}

.p-hamburger {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 999;
    width: 80px;
    height: 100%;
    box-shadow: 0 0 2rem transparent;
    outline: none;
    transition: all 0.3s ease-in-out;
    background: var(--main-color);
}

.p-hamburger__line {
    position: absolute;
    top: -15px;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 40px;
    height: 3px;
    background-color: var(--white-color);
    transition: inherit;
}

.p-hamburger__line::before,
.p-hamburger__line::after {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: inherit;
    content: "";
    transition: inherit;
}

.p-hamburger__line::before {
    top: -11px;
}

.p-hamburger__line::after {
    top: 11px;
}

.p-hamburger[aria-expanded="true"] .p-hamburger__line {
    background-color: transparent;
}

.p-hamburger[aria-expanded="true"] .p-hamburger__line::before,
.p-hamburger[aria-expanded="true"] .p-hamburger__line::after {
    top: 0;
    background-color: var(--white-color);
}

.p-hamburger[aria-expanded="true"] .p-hamburger__line::before {
    transform: rotate(45deg);
}

.p-hamburger[aria-expanded="true"] .p-hamburger__line::after {
    transform: rotate(-45deg);
}

.u-visuallyHidden {
    position: absolute;
    white-space: nowrap;
    width: 1px;
    height: 1px;
    overflow: hidden;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    margin: -1px;
}

.p-hamburger__text {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white-color);
    word-break: normal;
    font-weight: 700;
}

.l-header__spNavDrawerWrap {
    pointer-events: none;
    opacity: 0;
    height: 100vh;
    background-color: var(--white-color);
    top: 0;
    right: 0;
    width: 100%;
    position: fixed;
    z-index: 5;
    transition: all 0.4s ease-out;
    color: var(--text-color);
    overflow-y: scroll;
    padding-bottom: 3rem;
}

.js-nav {
    pointer-events: auto;
    opacity: 1;
    transition: all 0.4s ease-out;
}

/* drowerMenuInner */
.l-header__spNavDrawer {
    margin-top: clamp(6.25rem, 5.714rem + 2.38vw, 7.5rem);
    width: min(768px, 90%);
    margin-inline: auto;
}

.l-header__spNavDrawer-navWrap {
    & .listitem {
        &:first-child {
            border-top: 1px solid var(--main-color);
        }

        a {
            display: block;
            border-bottom: 1px solid var(--main-color);
            padding: 0.75rem;
            font-weight: 700;
            position: relative;

            & .icon {
                margin-left: 6px;
            }

            &::after {
                content: "";
                width: 10px;
                height: 10px;
                border-top: solid 3px var(--main-color);
                border-right: solid 3px var(--main-color);
                position: absolute;
                top: 50%;
                transform: translateY(-50%) rotate(45deg);
                transition: 0.4s all;
                right: 0.75rem;
            }
        }
    }
}

.l-header__spNavDrawer-telWrap {
    margin-top: 48px;
    text-align: center;

    & .telWrap {
        line-height: 1;

        & .text {
            font-size: clamp(1.75rem, 1.214rem + 2.38vw, 3rem);
            color: var(--main-color);
            font-family: "shingoprob", sans-serif;
            font-optical-sizing: auto;
            font-weight: 700;
            font-style: normal;
            letter-spacing: 0;
        }

        & .icon {
            width: clamp(1.125rem, 0.857rem + 1.19vw, 1.75rem);
        }
    }

    & .hourWrap {
        margin-top: 16px;
        border: 2px solid var(--main-color);
        display: inline-block;

        & .week {
            height: 100%;
            background: var(--main-color);
            display: inline-block;
            color: var(--white-color);
            padding: 0 0.5rem;
            font-weight: 700;
        }

        & .hour {
            padding: 0 0.5rem;
            font-weight: 900;
            color: var(--main-color);
        }
    }
}

.l-header__spNavDrawer-buttonWrap {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;

    & .listitem {
        color: var(--white-color);
        a {
            display: block;
            text-align: center;
            padding: 1rem;

            & .text {
                margin-left: 6px;
            }
        }
    }

    & .listitem.quote {
        background: var(--main-color);
    }

    & .listitem.contact {
        background: var(--sub-color);
        color: var(--text-color);
    }
}

.l-header__spNavDrawer-navWrap {
    & .listitem.nav-accordion-wrap-sp {
        a {
            display: flex;
            align-items: center;
            justify-content: space-between;

            & .plus {
                display: inline-block;
                vertical-align: middle;
                color: var(--main-color);
                line-height: 2;
                width: 14px;
                height: 3px;
                background: currentColor;
                position: relative;
                margin-right: -5px;

                &::before {
                    content: "";
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: inherit;
                    border-radius: inherit;
                    transform: rotate(90deg);
                    transition: 0.4s all;
                }
            }

            &::after {
                display: none;
            }
        }

        & .nav-accordion-sp li > a {
            font-size: 13px;
            border: none;
            padding: 0.5rem 0.5rem 0.5rem 2rem;
        }
    }

    & .listitem.nav-accordion-wrap-sp.open a .plus::before {
        transform: rotate(0);
    }
}

.l-header__spNavDrawer-navWrap
.listitem.nav-accordion-wrap-sp
.nav-accordion-sp
    li
    > a::before {
    display: block;
    content: "";
    height: 2px;
    background: var(--main-color);
    width: 12px;
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
}

.l-header__spNavDrawer-navWrap
.listitem.nav-accordion-wrap-sp
.nav-accordion-sp
    li:last-child
    a {
    border-bottom: 1px solid var(--main-color);
}

/* responsive　ーーーーーーーーーーーーーー */
@media screen and (max-width: 1200px) {
    /* PC */
    .l-header__pcWrap {
        display: none;
    }

    /* SP */
    .l-header__spWrap {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    #l-navListContainer{
        display: none;
    }

    .l-navTopButtonContainer{
        display: block;
    }
}

@media screen and (max-width: 576px) {
    .l-header__spWrap {
        height: 60px;
    }

    /* hamburgerMenu ーーーー */
    .p-hamburger {
        width: 60px;
    }

    .p-hamburger__line {
        width: 36px;
        height: 2px;
    }

    .p-hamburger__line::before {
        top: -10px;
    }

    .p-hamburger__line::after {
        top: 10px;
    }

    .p-hamburger__text {
        font-size: 12px;
    }

    /* DrawerMenu ーーーー */
    .l-header__spNavDrawer-buttonWrap {
        grid-template-columns: 1fr;
        grid-gap: 14px;
    }
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
footer
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.l-footer__cvInner {
    width: min(1000px, 90%);
    margin-inline: auto;
    margin-top: clamp(4rem, 3.481rem + 2.31vw, 6.25rem);
}

.l-footer__cvInner-buttonWrap {
    display: flex;
    align-items: center;
    justify-content: center;

    & .button2 {
        margin-left: 16px;
    }
}

/* address */
.l-footer__addressInner{
    background: #F0F0F0;
    margin-top: clamp(4rem, 3.481rem + 2.31vw, 6.25rem);
    padding: 32px 0;

    & .logo{
        width: clamp(17.5rem, 15.769rem + 7.69vw, 25rem);
        margin-inline: auto;
    }

    & .addressWrap {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 24px;

        & .tel{
            padding-left: 32px;
        }
    }
}

/* nav */
.l-footer__navWrap {
    background: var(--main-color);
    color: var(--white-color);
    padding-top: 48px;
    padding-bottom: 48px;
}

.l-footer__navWrap-nav {
    width: min(1080px, 90%);
    margin-inline: auto;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.l-footer__topButton {
    position: absolute;
    width: clamp(7.5rem, 6.49rem + 4.49vw, 11.875rem);
    right: -3vw;
    top: -150px;
}

.l-footer__navWrap-navInner {
    font-size: clamp(0.813rem, 0.798rem + 0.06vw, 0.875rem);
    & .listitem {
        &:not(:first-child) {
            margin-top: 12px;
        }
    }
}

.copyrightWrap {
    background: #404040;
    text-align: center;
    color: var(--white-color);
    padding: 14px 0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(0.813rem, 0.798rem + 0.06vw, 0.875rem);
}

@media screen and (max-width: 1200px) {
    .l-footer__navWrap-nav {
        grid-template-columns: 1fr 1fr;
        grid-gap: 40px 0;
    }

    .l-footer__topButton {
        right: -20px;
        top: inherit;
        bottom: -20px;
    }
}

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

    .l-footer__addressInner {
        display: block;

        & .addressWrap,
        .telWrap {
            margin-left: 0px;
            margin-top: 24px;
        }
    }
}

@media screen and (max-width: 768px) {
    .l-footer__cvInner-buttonWrap {
        display: block;
        width: min(100%, 450px);
        margin-inline: auto;

        & .button2 {
            margin-left: 0rem;
            margin-top: 8px;
        }
    }

    .l-footer__addressInner {
        & .addressWrap {
            display: block;
            text-align: center;

            & .tel {
                padding-left: 0;
            }
        }
    }

    .l-footer__topButton {
        right: -14px;
    }

    .l-footer__navWrap-nav {
        grid-template-columns: 1fr;
        grid-gap: 40px 0;
    }

    .l-footer__navWrap-navInner {
        & .listitem {
            &:not(:first-child) {
                margin-top: 8px;
            }
        }
    }
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
main
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.l-main,
.l-subMain {
    margin-top: 90px;
}

@media screen and (max-width: 1200px) {
    .l-main,
    .l-subMain {
        margin-top: 80px;
    }
}

@media screen and (max-width: 576px) {
    .l-main,
    .l-subMain {
        margin-top: 60px;
    }
}

/* ーーーーーーーーーーーーーーーーーーーー
common
ーーーーーーーーーーーーーーーーーーーーー */
/* width */
.wh1080{
    width: min(1080px,90%);
    margin-inline: auto;
}

/* common title */
.c-mainTitle{
    font-weight: 900;
    display: flex;
    flex-direction: column;

    span{
        display: inline-block;
        line-height: 1;
    }

    & .textColor{
        color: var(--main-color);
    }

    & .jp{
        font-size: clamp(2rem, 1.596rem + 1.79vw, 3.75rem);
    }

    & .en{
        font-size: clamp(0.875rem, 0.788rem + 0.38vw, 1.25rem);
        font-family: "Montserrat", sans-serif;
        margin-top: 20px;
        color: var(--main-color);
    }
}


.c-subTitle{
    display: inline-block;
    font-size: clamp(1.25rem, 1.106rem + 0.64vw, 1.875rem);
    font-weight: 900;
    border-bottom: 2px solid var(--main-color);
    padding-bottom: 4px;

    &::before {
        background: url("../images/logo-g.svg") no-repeat center center / contain;
        display: inline-block;
        content: "";
        aspect-ratio: 58 / 60;
        width: 50px;
        vertical-align: bottom;
        margin-bottom: -4px;
    }
}

.c-thirdTitleWrap{
    display: flex;
    border: 2px solid var(--main-color);
}

.c-thirdTitle--title{
    background: var(--main-color);
    flex-basis: max(30%, 200px);
    text-align: center;
    font-size: clamp(1.5rem, 1.327rem + 0.77vw, 2.25rem);
    color: var(--white-color);
    font-weight: 700;
    padding: clamp(0.375rem, 0.317rem + 0.26vw, 0.625rem);
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 2px;
}

.c-thirdTitle--titleTextWrap{
    flex-basis: calc(100% - max(30%,200px));
    padding: clamp(0.375rem, 0.317rem + 0.26vw, 0.625rem);
    font-size: clamp(1rem, 0.913rem + 0.38vw, 1.375rem);
    font-weight: 700;
    line-height: 1.75;
    background: var(--white-color);
    display: flex;
    align-items: center;
    color: var(--main-color);

    & .textBig{
        font-size: 130%;
        font-weight: 900;
        line-height: 0;
    }

    & .textBold{
        font-weight: 900;
    }
}

.c-fourTitle{
    font-size: clamp(1.5rem, 1.327rem + 0.77vw, 2.25rem);
    border-top: clamp(0.188rem, 0.173rem + 0.06vw, 0.25rem) solid var(--main-color);
    border-bottom: clamp(0.188rem, 0.173rem + 0.06vw, 0.25rem) solid var(--main-color);
    display: inline-block;
    font-weight: 700;
    color: var(--main-color);
    padding: 10px;
}

.c-fifTitle{
    font-size: clamp(1.125rem, 1.038rem + 0.38vw, 1.5rem);
    background-color: var(--main-color);
    color: var(--white-color);
    font-weight: 700;
    padding: 4px 10px;
    text-align: center;
}


.c-pointTitle{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1.5;

    &::before {
        background: url("../images/logo-g.svg") no-repeat center center / contain;
        display: inline-block;
        content: "";
        aspect-ratio: 58 / 60;
        width: 64px;
        vertical-align: bottom;
        margin-bottom: -4px;
    }
}

.c-pointTitle__jp{
    font-size: clamp(1.375rem, 1.231rem + 0.64vw, 2rem);
    font-weight: 900;
    color: var(--main-color);

    & .textBig{
        font-size: 130%;
        & .textBig{
            font-size: 150%;
            line-height: 1;
        }
    }
}

.c-pointTitle__en{
    color: var(--sub-color);
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: clamp(1rem, 0.942rem + 0.26vw, 1.25rem);
    margin-top: 10px;
}

/* common button */
.c-button{
    a,button{
        background: var(--sub-color);
        display: inline-block;
        width: min(300px,100%);
        text-align: center;
        font-size: clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem);
        font-weight: 700;
        box-shadow: 0px 4px 10px -6px #000000;
        padding: 16px;
        position: relative;
        color: var(--text-color);
        border: 2px solid var(--sub-color);

        &::after{
            content: "";
            width: 12px;
            height: 12px;
            border-top: solid 3px var(--text-color);
            border-right: solid 3px var(--text-color);
            position: absolute;
            top: 50%;
            right: 16px;
            transform: translateY(-50%) rotate(45deg);
        }
    }
}


/* common arrow */
.c-arrowWrap{
    position: absolute;
    right: 0;
    bottom: 0;
    display: inline-block;
    line-height: 0;
    background: var(--main-color);
    height: clamp(3rem, 2.727rem + 1.36vw, 3.75rem);
    width: clamp(3rem, 2.727rem + 1.36vw, 3.75rem);

    &::after {
    content: "";
        width: clamp(0.813rem, 0.744rem + 0.34vw, 1rem);
        height: clamp(0.813rem, 0.744rem + 0.34vw, 1rem);
        border-top: solid 3px var(--white-color);
        border-right: solid 3px var(--white-color);
        position: absolute;
        top: 50%;
        left: 45%;
        transform: translate(-45%, -50%) rotate(45deg);
    }
}


/* ーーーーーーーーーーーーーーーーーーーー
fv
ーーーーーーーーーーーーーーーーーーーーー */



/* ーーーーーーーーーーーーーーーーーーーー
intro
ーーーーーーーーーーーーーーーーーーーーー */
.p-intro{
    background-color: #F1F0ED;
    padding-top: clamp(3rem, 2.8rem + 1vw, 4rem);
    position: relative;

    &::before{
        display: block;
        content: "";
        background: url("../images/intro-bg.png") no-repeat center center / cover;
        display: inline-block;
        content: "";
        position: absolute;
        width: clamp(18.75rem, 12.981rem + 25.64vw, 43.75rem);
        left: -80px;
        aspect-ratio: 923 / 730;
    }
}

/* introText */
.p-intro__textWrap{
    position: relative;
    z-index: 1;
    max-width: 90%;
    margin-inline: auto;
}

.p-intro__textItem1{
    font-size: clamp(1.25rem, 1.1rem + 0.75vw, 2rem);
    font-weight: 900;
}

.p-intro__textItem2{
    font-size: clamp(1rem, 0.971rem + 0.13vw, 1.125rem);
    margin-top: 32px;
}

.p-intro__textItem3{
    font-size: clamp(1.25rem, 1.1rem + 0.75vw, 2rem);
    font-weight: 900;
    margin-top: 32px;
    color: var(--main-color);

    & .textBg{
        color: var(--white-color);
        background-color: var(--main-color);
        margin: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem) clamp(0.313rem, 0.25rem + 0.31vw, 0.625rem);
        display: inline-block;
        padding:10px;
        line-height: 1;
    }

    & .textBig{
        font-size: 120%;
    }
}

.p-intro__textItem1,.p-intro__textItem2,.p-intro__textItem3{
    text-align: center;
}

/* introReason */
.p-intro__reasonWrap{
    margin-top: 60px;
    position: relative;
    z-index: 1;
    background: url("../images/intro-bg2.png") no-repeat center center / cover;
    max-width: 1780px;
    padding-top: clamp(5rem, 4.575rem + 2.13vw, 7.125rem);
    padding-bottom: 80px;
    margin-inline: auto;
}

.p-intro__reasonTitleWrap{
    text-align: center;
}

.p-intro__reasonTitle{
    font-size: clamp(1.375rem, 1.125rem + 1.25vw, 2.625rem);
    font-weight: 900;
    position: relative;
    display: inline-block;
    color: var(--white-color);

    &::before{
        background: url("../images/logo-w.svg") no-repeat center center / contain;
        display: inline-block;
        content: "";
        aspect-ratio: 64 / 85;
        width: clamp(2.75rem, 2.5rem + 1.25vw, 4rem);
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: clamp(1.875rem, 1.5rem + 1.88vw, 3.75rem);
    }
}

.p-intro__reasonInner{
    width: min(90%,1200px);
    margin-inline: auto;
}

.p-intro__reasonListWrap{
    margin-top: 48px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: -24px;
    margin-right: -24px;
}

.p-intro__reasonListItem{
    background-color: var(--white-color);
    box-shadow: 10px 10px 0px 0px var(--sub-color);
    border-radius: 999vw;
    text-align: center;
    width: clamp(16.25rem, 13.833rem + 6.7vw, 21.875rem);
    height: clamp(16.25rem, 13.833rem + 6.7vw, 21.875rem);
    margin:24px;
}

.p-intro__reasonListItem--number{
    font-size: clamp(1.75rem, 1.643rem + 0.3vw, 2rem);
    font-weight: 900;
    color: var(--white-color);
    margin-top: -28px;

    span{
        background: var(--main-color);
        height: clamp(3.75rem, 3.482rem + 0.74vw, 4.375rem);
        width: clamp(3.75rem, 3.482rem + 0.74vw, 4.375rem);
        line-height: clamp(3.75rem, 3.482rem + 0.74vw, 4.375rem);
        border-radius: 999vw;
        display: inline-block;
        font-family: "shingoprob", sans-serif;
    }
}

.p-intro__reasonListItem--img{
    width: clamp(7.5rem, 7.067rem + 1.92vw, 9.375rem);
    margin-inline: auto;
    margin-top: clamp(0.625rem, 0.464rem + 0.45vw, 1rem);
}

.p-intro__reasonListItem--title{
    font-size: clamp(1.625rem, 1.196rem + 1.19vw, 2.625rem);
    text-align: center;
    font-weight: 900;
    line-height: 1.25;
    color: var(--main-color);
    margin-top: 10px;
}

.p-intro__reasonListItem--text{
    margin-top: clamp(0.625rem, 0.464rem + 0.45vw, 1rem);
    font-size: clamp(1rem, 0.971rem + 0.13vw, 1.125rem);
    line-height: 1.25;
}


/* ーーーーーーーーーーーーーーーーーーーー
service
ーーーーーーーーーーーーーーーーーーーーー */
.p-service{
    margin-top: clamp(5rem, 3.99rem + 4.49vw, 9.375rem);
}

.p-service__titleWrap{
    width: 69.6875%;
    margin: 0 0 0 auto;
}

.p-service__title{
    align-items: flex-end;
    width: 710px;
    margin-inline: auto;
}

/* service1.2　ーーーーーーーーーーーー */
.p-service__service1Wrap,
.p-service__service2Wrap{
    position: relative;
}

.p-service__service1imgWrap,
.p-service__service2imgWrap{
    position: absolute;
    width: 46%;
    top: -120px;

    & img{
        object-fit: cover;
        height: 560px;
    }
}

.p-service__service1textWrap,
.p-service__service2textWrap{
    width: 69.6875%;
    background: var(--main-color);
    margin: 0 0 0 auto;
    color: var(--white-color);
    padding: 48px;
}

.p-service__service1textInner,
.p-service__service2textInner{
    width: 710px;
    margin-inline: auto;
}

.p-service__service1textInner--inner,
.p-service__service2textInner--inner{
    width: 80%;
}

.p-service__service1text--titleWrap,
.p-service__service2text--titleWrap{
    text-align: center;
}

.p-service__service1text--title,
.p-service__service2text--title{
    font-size: clamp(1.75rem, 1.462rem + 1.28vw, 3rem);
    font-weight: 900;
    display: inline-block;
    position: relative;

    &::before{
        background: url("../images/logo-w.svg") no-repeat center center / contain;
        display: inline-block;
        content: "";
        aspect-ratio: 64 / 85;
        width: clamp(2.625rem, 2.308rem + 1.41vw, 4rem);
        vertical-align: bottom;
        margin-bottom: -2px;
        margin-right: 10px;
    }
}

.p-service__service1text--subtitle,
.p-service__service2text--subtitle{
    font-size: clamp(1.125rem, 0.981rem + 0.64vw, 1.75rem);
    font-weight: 900;
    margin-top: 32px;

    & .textBg{
        background-color: var(--white-color);
        color: var(--main-color);
        line-height: 1;
        padding: 6px;
        display: inline-block;
        margin: 4px;
    }
}

.p-service__service1text--text,
.p-service__service2text--text{
    margin-top: 18px;
}

.p-service__service1text--buttonWrap,
.p-service__service2text--buttonWrap{
    margin-top: 32px;
}

.p-service__service1text--button,
.p-service__service2text--button{
    width: min(270px, 100%);
}

/* service1　ーーーーーーーーーーーー */
.p-service__service1Wrap{
    margin-top: clamp(3rem, 2.538rem + 2.05vw, 5rem);
}

.p-service__service1textInner--inner{
    margin: 0 0 0 auto;
}

.p-service__service1text--buttonWrap{
    display: flex;
    justify-content: space-between;
}


/* list */
.p-service__service1ListWrap{
    margin-top: clamp(4rem, 3.481rem + 2.31vw, 6.25rem);
}

.p-service__service1List{
    width: min(90%,1250px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.625rem, -1.292rem + 3.89vw, 3.375rem);
}

.p-service__service1ListItem{
    background-color: var(--white-color);
    box-shadow: 0px 4px 10px -6px #000000;
    position: relative;
}

.p-service__service1ListItem--textWrap{
    padding: clamp(1rem, 0.885rem + 0.51vw, 1.5rem) clamp(1rem, 0.885rem + 0.51vw, 1.5rem) clamp(4rem, 3.769rem + 1.03vw, 5rem);
}

.p-service__service1ListItem--title{
    font-size: clamp(1.25rem, 0.886rem + 1.82vw, 2.25rem);
    color: var(--main-color);
    font-weight: 900;
}

.p-service__service1ListItem--text{
    font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
    margin-top: 10px;
}

.p-service__service1ListItem--listWrap{
    margin-top: 32px;
}

.p-service__service1ListItem--listFlex{
    display: flex;
    border: 1px solid var(--main-color);

    &:not(:first-child){
        margin-top: 10px;
    }
}

.p-service__service1ListItem--listTitle,
.p-service__service1ListItem--listText{
    padding: 8px;
    line-height: 1.15;
}

.p-service__service1ListItem--listTitle{
    background: var(--main-color);
    color: var(--white-color);
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-service__service1ListItem--listText{
    color: var(--main-color);
    font-size: clamp(0.875rem, 0.846rem + 0.13vw, 1rem);
}

/* banner　ーーーーーーーーーーーー */
.p-banner{
    margin-top: 100px;
    position: relative;

    &::before{
        display: block;
        content: "";
        background: url("../images/intro-bg.png") no-repeat center center / cover;
        display: inline-block;
        content: "";
        position: absolute;
        width: max(80%,800px);
        left: -80px;
        aspect-ratio: 923 / 730;
        opacity: 0.2;
        z-index: -1;
        bottom: 0;
    }
}

.p-banner__imgWrap{
    width: min(1018px,90%);
    margin-inline: auto;
}


/* service2　ーーーーーーーーーーーー */
.p-service__service2Wrap{
    margin-top: 180px;
}

.p-service__service2textInner--inner{
    margin: 0 auto 0 0;
}

.p-service__service2imgWrap{
    right: 0;
}

.p-service__service2textWrap{
    margin: 0 auto 0 0;
}

.p-service__service2text--button{
    margin: 0 0 0 auto;
}


/* ーーーーーーーーーーーーーーーーーーーー
voice
ーーーーーーーーーーーーーーーーーーーーー */
.p-voice{
    background: url("../images/voice-bg.jpg") no-repeat center center / cover;
    padding: clamp(4rem, 3.769rem + 1.03vw, 5rem) 0;
}

.p-voice__title{
    align-items: center;
}

.p-voice__listWrap{
    margin-top: 48px;
    width: min(90%,1090px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.p-voice__listItem{
  background-color: var(--white-color);
  border: 2px solid var(--white-color);
}

.p-voice__listItem--img{
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--white-color);
}

.p-voice__listItem--name{
    padding: 12px 24px;
}

.p-voice__listItem--textWrap{
    padding: 20px 16px;
    text-align: center;
}

.p-voice__listItem--title,.p-voice__listItem--subTitle{
    color: var(--main-color);
    font-weight: 900;
}

.p-voice__listItem--title{
    font-size: 16px;
    line-height: 1.25;
}

.p-voice__listItem--subTitle{
    padding-top: 16px;
}

.p-voice__listItem--text{
    padding-top: 20px;
}

.p-voice__buttonWrap{
    text-align: center;
    margin-top: clamp(3rem, 2.769rem + 1.03vw, 4rem);
}

/* ーーーーーーーーーーーーーーーーーーーー
about
ーーーーーーーーーーーーーーーーーーーーー */
.p-about{
    background: url("../images/about-bg.jpg") no-repeat center right / cover;
    padding: clamp(4rem, 3.769rem + 1.03vw, 5rem) 0;
}

.p-about__title{
    align-items: center;

    & .jp{
        color: var(--white-color);
    }

    & .en{
        color: var(--sub-color);
    }
}

.p-about__textWrap{
    width: min(90%,1090px);
    margin-inline: auto;
    margin-top: clamp(2rem, 1.538rem + 2.05vw, 4rem);
}

.p-about__text{
    width: min(602px,100%);
    color: var(--white-color);
}

.p-about__listWrap{
    margin-top: 48px;
    width: min(90%,1090px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.p-about__listItem{
    background-color: var(--white-color);
    box-shadow: 0px 4px 10px -6px #000000;
    position: relative;

    & .c-arrowWrap{
        background: var(--sub-color);

        &::after {
            border-top: solid 3px var(--text-color);
            border-right: solid 3px var(--text-color);
        }
    }
}

.p-about__listItem--nameWrap{
    background-color: #0D2F45;
    color: var(--white-color);
    font-size: clamp(1.125rem, 1.034rem + 0.45vw, 1.375rem);
    font-weight: 900;
    text-align: center;
    padding: 12px 24px;
}

.p-about__listItem--name{
    display: inline-block;
    position: relative;
    margin-right: -40px;

    &::before{
        background: url("../images/logo-w.svg") no-repeat center center / contain;
        display: inline-block;
        content: "";
        aspect-ratio: 64 / 85;
        width: 36px;
        position: absolute;
        transform: translateY(-50%);
        top: 50%;
        left: -48px;
    }
}

.p-about__listItem--textWrap{
    padding: clamp(1rem, 0.885rem + 0.51vw, 1.5rem) clamp(1rem, 0.885rem + 0.51vw, 1.5rem) clamp(3.125rem, 2.981rem + 0.64vw, 3.75rem);
}


/* ーーーーーーーーーーーーーーーーーーーー
各種認定証
ーーーーーーーーーーーーーーーーーーーーー */
.p-certif{
    padding: clamp(4rem, 3.769rem + 1.03vw, 5rem) 0;
    position: relative;

    &::before{
        display: block;
        content: "";
        background: url("../images/intro-bg.png") no-repeat center center / cover;
        display: inline-block;
        content: "";
        position: absolute;
        width: 1000px;
        aspect-ratio: 923 / 730;
        opacity: 0.2;
        z-index: -1;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }
}

.p-certif__titleWrap{
    text-align: center;
}

.p-certif__listWrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: min(90%,950px);
    margin-inline: auto;
    gap: clamp(1.25rem, 0.962rem + 1.28vw, 2.5rem) clamp(1.25rem, 0.385rem + 3.85vw, 5rem);
    margin-top: 48px;
}

.p-certif__listItem{
    text-align: center;
    box-shadow: 0px 4px 10px -6px #000000;
    padding: 8px clamp(0.5rem, 0.385rem + 0.51vw, 1rem);
    background: var(--white-color);
}

.p-certif__listItem--text{
    margin-top: 8px;
    font-size: clamp(0.813rem, 0.769rem + 0.19vw, 1rem);
}



/* ーーーーーーーーーーーーーーーーーーーー
blog
ーーーーーーーーーーーーーーーーーーーーー */
.p-blog{
    background: url("../images/blog-bg.jpg") no-repeat center right / cover;
    padding: clamp(4rem, 3.769rem + 1.03vw, 5rem) 0;
}

.p-blog__title{
    align-items: center;
}

.p-blog__listWrap {
    margin-top: 64px;
    width: min(90%,1080px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.25rem, 0.962rem + 1.28vw, 2.5rem);
}

.p-blog__listItem {
    a {
        display: flex;
        box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
        height: 100%;
    }
}

.p-blog__listItem--img {
    flex-basis: 45%;

    img {
        object-fit: cover;
        height: 100%;
        aspect-ratio: 4 / 4;
    }
}

.p-blog__listItem--textWrap {
    flex-basis: calc(100% - 45%);
    padding: 16px;
    background: var(--white-color);
}

.p-blog__listItem--cateWrap,
.p-blog__listItem--date{
    display: inline-block;
}

.p-blog__listItem--date {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    margin-right: 14px;
    font-style: italic;
}

.p-blog__listItem--cate {
    font-size: 12px;
    background: var(--main-color);
    min-width: 90px;
    padding: 16px;
    padding: 2px;
    text-align: center;
    color: var(--white-color);
    display: inline-block;
}

.p-blog__listItem--title {
    line-height: 1.5;
    font-size: clamp(1rem, 0.971rem + 0.13vw, 1.125rem);
    font-weight: bold;
    letter-spacing: 0;
    margin-top: 16px;
}

.p-blog__listItem--text {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0;
    margin-top: 16px;
}

.p-blog__buttonWrap{
    text-align: center;
    margin-top: clamp(3rem, 2.769rem + 1.03vw, 4rem);
}

/* ーーーーーーーーーーーーーーーーーーーー
responsive
ーーーーーーーーーーーーーーーーーーーーー */
@media screen and (max-width: 1280px) {
   /* card　ーーーーーーーー */
   .p-voice__listWrap,
   .p-about__listWrap{
    grid-template-columns: 1fr 1fr;
   }

   /* service　ーーーーーーーー */
   .p-service__title{
    width: 80%;
   }

   .p-service__service1textInner, .p-service__service2textInner {
        width: 100%;
        margin-inline: auto;
    }

    .p-service__service1imgWrap, .p-service__service2imgWrap {
        position: absolute;
        width: 42%;
    }

    .p-service__service1text--buttonWrap{
        display: block;
    }

    .p-service__service1text--button{
        &:not(:first-child){
            margin-top: 16px;
        }
    }

}

/* max 1024px　ーーーーーーーーーーーーー */
@media screen and (max-width: 1024px) {
   /* service　ーーーーーーーー */
    .p-service__service1List {
        grid-template-columns: 1fr;
        width: min(90%, 768px);
    }

    /* 各種認定証　ーーーーーーーー */
    .p-certif__listWrap{
        grid-template-columns: 1fr 1fr; 
    }

    /* blog　ーーーーーーーー */
    .p-blog__listItem {
        a {
            flex-direction: column-reverse;
            box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
            height: 100%;
        }
    }

    .p-blog__listItem--img{
        & img {
            aspect-ratio: 5 / 3;
            object-fit: cover;
        }
    }
}

/* max 768px　ーーーーーーーーーーーーー */
@media screen and (max-width: 768px) {
    /* common　ーーーーーーーー */
    .c-thirdTitleWrap {
        display: block;
    }

    /* card　ーーーーーーーー */
    .p-voice__listWrap,
    .p-about__listWrap{
        grid-template-columns: 1fr;
        width: min(480px,90%);
        margin-inline: auto;
    }

    /* service　ーーーーーーーー */
    .p-service__titleWrap{
        width: 100%;
    }

    .p-service__title{
        width: 100%;
        align-items: center;
    }

    .p-service__service1imgWrap,
    .p-service__service2imgWrap {
        position: initial;
        width: 100%;

        & img {
            object-fit: cover;
            height: auto;
            aspect-ratio: 5 / 3;
        }
    }

    .p-service__service1textWrap,
    .p-service__service2textWrap,
    .p-service__service1textInner--inner,
    .p-service__service2textInner--inner{
        width: 100%;
    }

    .p-service__service1textWrap,
    .p-service__service2textWrap{
        padding: clamp(2rem, 1.118rem + 3.92vw, 3rem) clamp(1.5rem, 0.176rem + 5.88vw, 3rem);
    }

    .p-service__service1text--button,
    .p-service__service2text--button {
        margin-inline: auto;
    }

    .p-service__service2Wrap,
    .p-banner{
        margin-top: 80px;
    }

}

/* max 576px　ーーーーーーーーーーーーー */
@media screen and (max-width: 576px) {
    /* service　ーーーーーーーー */
   .p-service__service1ListItem--listFlex{
    display: block;
   }

   /* blog　ーーーーーーーー */
   .p-blog__listWrap{
    grid-template-columns: 1fr;
    width: min(480px, 90%);
   }

}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
animation
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*hover*/
.l-header__pcInner,
.c-button,
.p-sbCharter__link,
.p-sbCon__intro2link,
.c-pointLink,
.p-subProp__cateListWrap,
.p-sbPrice__link,
.p-service__service1ListItem,
.p-banner__imgWrap,
.p-subVoice__listItem,
.p-voice__listItem,
.p-about__listItem,
.p-blog__listItem,
.p-subBlog__listItem,
.c-postListItem,
.l-footer__cvInner-buttonWrap,
.priceBannerWrap,
.p-sbSdgs__linkWrap,
.p-sbCharter__pointWrap2--tableWrap,
.p-subDownload__listItem{
    a {
        transition: 0.3s all ease-in-out;
    }

    button {
        transition: 0.3s all ease-in-out;
    }
}

.p-sbWare__pointWrap2--buttonWrap {
    & .p-sbWare__pointWrap2--button2.c-button {
        a, button {
            transition: 0.3s all ease-in-out;
        }
    }
}

.formbutton {
    input[type="submit"] {
        transition: 0.3s all ease-in-out;
    }
}

@media (any-hover: hover) {
    .l-header__pcInner,
    .p-service__service1ListItem,
    .p-banner__imgWrap,
    .p-subVoice__listItem,
    .p-voice__listItem,
    .p-about__listItem,
    .p-blog__listItem,
    .c-postListItem,
    .l-footer__cvInner,
    .priceBannerWrap,
    .p-sbCharter__pointWrap2--tableWrap,
	.p-subDownload__listItem{
        a:hover {
            opacity: 0.75;
        }
    }

    .c-button,
    .p-sbCharter__link,
    .p-sbCon__intro2link,
    .c-pointLink,
    .p-subProp__cateListWrap,
    .p-sbPrice__link,
    .p-sbSdgs__linkWrap{
        a:hover{
            background: var(--white-color);
        }

        button:hover{
            background: var(--white-color);
        }
    }

    .p-sbWare__pointWrap2--buttonWrap {
        & .p-sbWare__pointWrap2--button2.c-button {
            a:hover {
                background: var(--white-color);
                color: #122746;

                &::after {
                    border-top: solid 3px #122746;
                    border-right: solid 3px #122746;
                }
            }
        }
    }

    .formbutton:hover {
        input[type="submit"] {
            background: var(--white-color);
            color: var(--main-color);
        }
    }

    
    
}
