@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');

html {
    font-size: 10px;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
    font-style: normal;
    color: #161616;
    line-height: 1.75;
    letter-spacing: 0.05em;
    animation: Fadein 1s both;
}

a:link {
    color: #161616;
    text-decoration: none;
}

a:visited {
    color: #161616;
}

a:hover {
    color: #009EE6;
    text-decoration: underline;

}

a:active {
    color: #E64800;
}

@keyframes Fadein {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}




/* フレックス */
.model-flex {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;

    &.type-left {
        justify-content: flex-start;
        gap: 1em;
    }


    &.type-right {
        justify-content: flex-end;
        gap: 1em;

    }

    &.type-top {
        align-items: flex-start;
    }

    &.type-bottom {
        align-items: flex-end;
    }
}

/*フレックスボックス　レスポンシブ */
@media screen and (max-width:900px) {
    .model-flex.res-flex {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 40px;
    }
}


/* ボタン */
.model-btn {
    display: inline-block;
    width: fit-content;
    text-align: center;
    padding: 0.5em 1em 0.5em 1em;
    font-weight: 400;
    cursor: pointer;

    &.type-orange {
        color: #fff;
        background-color: #E64800;
    }

    &.type-blue {
        color: #fff;
        background-color: #009EE6;
    }

    &.type-border {
        border: 1px solid #999;
    }
}

/* ボタンレスポンシブ */
@media screen and (max-width:900px) {
    .model-btn.res-bl-center {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}
/* アイコンセット */
.model-iconset {
    &::after{
        content: '';
        background-size: contain;
        background-repeat: no-repeat;
        display: inline-block;
        width: 0.9em;
        height: 1em;
        margin-left: 0.5em;
        vertical-align: middle;
    }
    &.type-targetblank::after {
        background-image: url(../image/common/icon-target-blank.png);
    }

    &.type-pdf::after{
        background-image: url(../image/common/icon-pdf.png);

    }

    &.type-download::after{
        background-image: url(../image/common/icon-download.png);

    }

    &.type-arrow::after{
        background-image: url(../image/common/icon-arrow-white.png);
    }
}

.model-inner {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 60px 30px;
}

/* テーブル */
.model-table {
    border-collapse: collapse;
    border-spacing: 0;

    th,
    td {
        border: 1px solid #999;
        padding: 0.5em 1em;
    }

    th {
        white-space: nowrap;
        text-align-last: justify;
    }

    &.type-th-gray th {
        background-color: #f4f4f4;
    }
}

.model-form {
    font-size: 1.4rem;
    text-align: left;

    dl>div {
        margin: 20px 0;
    }

    dd {
        font-weight: normal;
    }

    input,
    select,
    textarea {
        padding: 0.5rem;
        color: #000;
    }

    input[type="text"] {
        width: 100%;
    }

    input[type="email"] {
        width: 100%;
    }

    input[type="tel"] {
        width: 100%;
    }

    input[type="radio"] {
        margin-left: 1.5em;
        margin-right: 0.2em;
        appearance: auto;

    }

    input[type="radio"]:first-child {
        margin-left: 0;

    }

    select {
        appearance: auto;
        width: 50%;
        min-width: max-content;
    }

    textarea {
        width: 100%;
        height: 140px;
    }


    .req {
        margin-left: 1em;
        border: 1px solid #a22000;
        padding: 0 0.5rem;
        font-size: 1rem;
        color: #a22000;
        font-style: normal;
        font-weight: normal;
    }

    .personal-check {
        text-align: center;
        margin: 2em 0;
    }

    .personal-check input[type="checkbox"] {
        width: auto;
        margin-right: 0.5em;
        vertical-align: -1px;
        appearance: auto;

    }

    input[type=submit] {
        display: block;
        padding: 0.5em 3em;
        margin: 2em auto;
        font-weight: bold;
        letter-spacing: 0.05em;
    }


    &.type-blue {

        input,
        select,
        textarea {
            background-color: #ebf9ff;
            border: 1px solid #abe3ff;
        }

        input[type="submit"] {
            background-color: #009EE6;
            border: 0;
            color: #fff;
        }
    }

    &.type-gray {

        input,
        select,
        textarea {
            background-color: #eee;
            border: 1px solid #dedede;
        }

        input[type="submit"] {
            background-color: #161616;
            border: 0;
            color: #fff;
        }
    }

}




.att-bgcl-gray {
    background-color: #f4f4f4;
}

.att-bgcl-blue {
    background-color: #ebf9ff;
}

/* メインヘッダー */
.main-header {
    padding: 24px 30px;

    .gnav ul {
        list-style-type: none;
        gap: 1em;
        font-weight: 400;
    }
}

/*メインヘッダーレスポンシブ */
@media screen and (max-width:1050px) {
    .main-header {
        flex-direction: column;
    }

    .gnav {
        padding-top: 10px;
    }

    .gnav .model-btn {
        padding-top: 0.1em;
        padding-bottom: 0.1em;
    }
}

/* ハンバーガーアイコン */
.hmbicon {
    display: none;
    width: 40px;
    height: 40px;
    padding: 6px;
    cursor: pointer;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1;

    img {
        width: 100%;
        height: auto;
        min-width: 28px;
    }
}

/* ハンバーガーアイコン
ナビゲーションレスポンシブ */
@media screen and (max-width: 700px) {
    .hmbicon{
        display: block;
    }

    .gnav {
        display: none;
    }
    .gnav.open{
        display: unset;
        position: fixed;
        left: 0;
        top: 0;
        z-index: 1;
        width: 100%;
        height: 100vh;
        background-color: #ebf9ff;
        padding: 80px 30px 0 30px;
        font-size: 1.6rem;
        overflow-y: auto;

        ul {
            flex-direction: column;
            align-items: stretch;
            gap: 0;
        }

        li {
            border-bottom:  1px solid #d1d1d1 ;
            text-align: center;
        }

        li:last-child {
            border: 0;
        }

        a{
            display: block;
            padding: 20px 0;

        }

        .model-btn{
            padding: 0.5rem;
            margin: 20px auto;
        }
    }
}

.main-footer ul {
    padding-top: 1em;
    padding-bottom: 1em;
    font-weight: 400;
}

/* メインフッター */
.main-footer {
    padding: 32px 30px 24px;
    background-color: #dedede;

    ul {
        padding-top: 1em;
        padding-bottom: 1em;
        font-weight: 400;
    }

    address {
        margin-top: 1em;
        margin-bottom: 1em;
    }

    .tel,
    .mail {
        margin-left: 1em;
    }

    .susicon a {
        margin-right: 10px;

    }

    .copyright {
        text-align: center;
        font-size: 1.2rem;
    }
}

@media screen and (max-width:900px) {
    .main-footer .model-flex.res-flex {
        align-items: start;
        gap: 1em;
    }
}

/* sabページ */
.sub h1 {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
    font-size: 3.2rem;
    font-weight: 400;
    background-image: url(../image/common/bg-img-tl.png), url(../image/common/bg-img-br.png);
    background-position: top left, bottom right;
    background-size: 30% 30%;
    background-repeat: no-repeat;
}

/* sabページ　リード文 */
.readtext {
    padding: 40px 30px 0 30pX;
    text-align: center;

}

/* subページ　ｈ２ */
.sub h2 {
    font-size: 2.4rem;
    font-weight: 600;
    margin-top: 60px;
    margin-bottom: 14pX;

}

/* ?subページ　.catch */
.catch {
    font-size: 1.6rem;
    font-weight: 400;
    color: #009EE6;
}

.business-table {
    width: 100%;
    margin-bottom: 20px;

    th {
        width: 25%;

    }

    td {
        width: 75%;

    }
}

.acs-cont {
    gap: 40px;
}

.acs-item1 {

    width: 40%;
}

.acs-item2 {
    width: 60%;
}

.map {
    width: 100%;
}

.shoping {
    width: 100%;
}


