@charset "UTF-8";

/*******************************
COMMON CSS
********************************/
html {
    font-size: 62.5%;
    overflow-x: hidden;
    overscroll-behavior-x: none;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    font-size: 1.6rem;
    color: #333333;
    overflow-x: hidden;
    overscroll-behavior-x: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: revert;
}

img {
    image-rendering: -webkit-optimize-contrast;
}

a {
    text-decoration: none;
    color: #333;
}

/*******************************
SP
********************************/
/* HEADER */
header {
    width: 100%;
    padding: 1.2rem;
    border-bottom: 1px #6b6b6b solid;
    display: flex;
    justify-content: space-between;
}

header h1 {
    width: 12.6rem;
}

header h1 img {
    width: 100%;
}

.head-nav__bt {
    display: flex;
    gap: 1.5rem;
}

.head-nav__bt li {
    display: flex;
    align-items: center;
}

/* ホバー */
.head-nav__bt li a {
    border-radius: 3rem;
    width: 9rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0px 4px 0px #3cabad;
    transition: 0.2s ease;
    position: relative;
}

.head-nav__bt li a:hover {
    transform: translateY(3px);
    box-shadow: 0px 1px 0px #3cabad;
}

/* ボタン1（枠線） */
.head-nav__bt li:nth-of-type(1) a {
    border: 1px #3cabad solid;
    color: #3cabad;
}

.head-nav__bt li:nth-of-type(1) a:hover {
    color: #3cabad;
    border-color: #3cabad;
}

/* 下のボタン */
.head-nav__bt li:nth-of-type(2) a {
    border: 1px #fff solid;
    background: #3cabad;
    color: #fff;
}

.head-nav__bt li:nth-of-type(2) a:hover {
    background: #3cabad;
    border-color: #3cabad;
    color: #fff;
}

/* CONTENTS */
.contents {
    width: 112rem;
    max-width: 93%;
    margin: auto;
    padding: 3rem 0 0;
}

.contents h2 {
    font-size: 3.2rem;
    font-weight: bold;
    border-left: 8px #3cabad solid;
    padding: 0 0 0 0.5rem;
    position: relative;
    margin: 0 0 3rem;
}

.contents h2::after {
    position: absolute;
    content: "-contact us-";
    bottom: -3rem;
    left: 0.8rem;
    font-size: 1.6rem;
    color: #6b6b6b;
}

.contents > p {
    font-size: 1.5rem;
    font-weight: bold;
    padding: 1rem 0 0 1rem;
}

.inquiry {
    padding: 3rem 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

.inquiry__inner {
    width: 100%;
    max-width: 100%;
}

.inquiry__inner > h3 {
    max-width: 100%;
    background: #3cabad;
    padding: 0.7rem 0 0.7rem 2rem;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    margin: 0 0 1.5rem;
}

.inquiry__inner > p {
    font-size: 1.5rem;
    padding: 0 1rem;
    margin: 0 0 1.5rem;
    line-height: 1.4;
}

/* 注釈（SP） */
.inquiry__inner > p.inquiry__note {
    font-size: 0.8rem;
    font-weight: bold;
    padding: 0.3rem 1rem 1.5rem;
    line-height: 1.4;
    text-align: center;
}

.inquiry__inner > img {
    width: 100%;
    padding: 0 1rem;
    margin: 0 0 1.5rem;
}

/* inquiry ボタン（通常） */
.inquiry__inner > a {
    display: flex;
    border: 2px #3cabad solid;
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
    margin: 0 1rem 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #3cabad;
    height: 5rem;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: 0.2s ease;
}

.inquiry__inner:first-of-type > a:last-of-type {
    margin-bottom: 0.5rem; 
}

.inquiry__inner > a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 2.5rem solid transparent;
    border-bottom: 2.5rem solid transparent;
    border-left: 1.5rem solid #3cabad;
}

/* inquiry ボタン（ホバー → 色反転） */
.inquiry__inner > a:hover {
    background: #3cabad;
    color: #fff;
}

.inquiry__inner > a:hover::before {
    border-left-color: #fff;
}

/* FOOTER */
footer {
    width: 100%;
}

footer > p {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    height: 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*******************************
TABLET・PC
********************************/
@media (min-width: 768px) {
    /* HEADER */
    header {
        width: 100%;
        padding: 1.5rem 4rem;
        border-bottom: 1px #6b6b6b solid;
        display: flex;
        justify-content: space-between;
    }

    header h1 {
        width: 17.7rem;
    }

    header h1 img {
        width: 100%;
    }

    .head-nav__bt {
        display: flex;
        gap: 1.5rem;
    }

    .head-nav__bt li a {
        border-radius: 3rem;
        width: 18rem;
        height: 5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 16px;
        font-weight: bold;
        box-shadow: 0px 4px 0px #3cabad;
        transition: 0.2s ease;
    }

    .head-nav__bt li a:hover {
        transform: translateY(3px);
        box-shadow: 0px 1px 0px #3cabad;
    }

    .head-nav__bt li:nth-of-type(1) a {
        border: 1px #3cabad solid;
        color: #3cabad;
    }

    .head-nav__bt li:nth-of-type(1) a:hover {
        color: #3cabad;
        border-color: #3cabad;
    }

    .head-nav__bt li:nth-of-type(2) a {
        border: 1px #fff solid;
        background: #3cabad;
        color: #fff;
    }

    .head-nav__bt li:nth-of-type(2) a:hover {
        background: #3cabad;
        border-color: #3cabad;
        color: #fff;
    }

    /* CONTENTS */
    .contents {
        width: 112rem;
        max-width: 90%;
        margin: auto;
        padding: 5rem 0 8rem;
    }

    .contents h2 {
        font-size: 3.2rem;
        font-weight: bold;
        border-left: 8px #3cabad solid;
        padding: 0 0 0 1rem;
        position: relative;
        margin: 0 0 3rem;
    }

    .contents h2::after {
        position: absolute;
        content: "-contact us-";
        bottom: -4rem;
        left: 1.3rem;
        font-size: 1.6rem;
        color: #6b6b6b;
    }

    .contents > p {
        font-size: 1.8rem;
        font-weight: bold;
        padding: 2rem 0 0 2.3rem;
    }

    .inquiry {
        padding: 3.5rem 0 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
    }

    .inquiry__inner {
        width: 52.3rem;
        max-width: 46%;
    }

    .inquiry__inner > h3 {
        max-width: 100%;
        background: #3cabad;
        padding: 0.7rem 0 0.7rem 2rem;
        font-size: min(2.4vw, 2.8rem);
        font-weight: bold;
        color: #fff;
        margin: 0 0 1.5rem;
    }

    .inquiry__inner > p {
        font-size: min(1.85vw, 1.6rem);
        padding: 0 1rem;
        margin: 3rem 0 3rem;
        line-height: 1.4;
    }

    .inquiry__inner > p.inquiry__note {
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.4;

    
    margin: 0.4rem 1rem 1.8rem;  
    padding: 0;                 
}

    .inquiry__inner > img {
        width: 100%;
        padding: 0 1rem;
        margin: 0 0 3rem;
    }

    /* inquiry ボタン（PC） */
    .inquiry__inner > a {
        display: flex;
        border: 2px #3cabad solid;
        box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
        margin: 0 1rem 2rem;
        font-size: min(1.6vw, 2rem);
        font-weight: bold;
        color: #3cabad;
        height: min(5vw, 5rem);
        justify-content: center;
        align-items: center;
        position: relative;
        transition: 0.2s ease;
    }
	

    .inquiry__inner > a::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-top: min(2.2vw, 2.3rem) solid transparent;
        border-bottom: min(2.2vw, 2.3rem) solid transparent;
        border-left: min(1.5vw, 2rem) solid #3cabad;
    }

    .inquiry__inner > a:hover {
        background: #3cabad;
        color: #fff;
    }

    .inquiry__inner > a:hover::before {
        border-left-color: #fff;
    }

    /* FOOTER */
    footer {
        width: 100%;
    }

    footer > p {
        text-align: center;
        font-size: 1rem;
        font-weight: 600;
        height: 8rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}


