@charset "UTF-8";

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

/* ローディングアニメーション */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeOut 1.5s 2.5s forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

.loading__logo {
    opacity: 0;
    animation: logo_fade 2s 0.5s forwards;
    width: 175px;
}

@keyframes logo_fade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    60% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
    }
}

/* ローディングアニメーションここまで */


html {
    scroll-behavior: smooth;
}

body {
    text-align: center;
    color: #C7AD8A;
    font-family: "M PLUS Rounded 1c", sans-serif;
}



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

.sp-top {
    width: 100vw;
    /* object-fit: cover; */
    /* position: relative; */
    display: block !important;
}

/* .sp-top img {
    margin-bottom: 50px;
} */

.top-img {
    display: none !important;
}

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

.header {
    background-color: #C7AD8A;
    height: 60px;
}

.header-container {
    display: flex;
    /* align-items: center; */
}


/* ハンバーガーメニュー */

.drawer-hamburger {
    display: block;
    background-color: #C7AD8A;

}

.drawer-hamburger:hover {
    background-color: #C7AD8A;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon::after,
.drawer-hamburger-icon::before {
    background-color: #fff;
}

/* ナビゲーション */
.drawer-nav {
    background-color: #C7AD8A;
}

.drawer-menu {
    display: block;
    /* padding: 20px 0 0; */
}

.drawer-menu-item {
    color: #fff;
}

/* ハンバーガーメニューここまで */

p {
    line-height: 2;
    padding-bottom: 15px;
    font-size: 16px;
}

.padding {
    padding: 40px;
}



h2 {
    font-size: 30px;
    padding-top: 50px;
    padding-bottom: 20px;
}

/* 私たちについて */




.slide-container {
    width: 100%;
    padding: 30px 0 50px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slide-wrapper {
    display: flex;
    animation: slide-flow 20s infinite linear 1s both;
}

.slide {
    object-fit: cover;
    border: 1px solid #ffffff;
    max-width: none;
    /* width: auto; */
    width: 300px;

}

.slide-paused:hover .slide-wrapper {
    animation-play-state: paused;
}

.slide-paused:hover .slide-wrapper img:hover {
    opacity: .8;
    cursor: grabbing;
}

@keyframes slide-flow {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }


}

/* 私たちについてここまで */

.bold {
    font-weight: bold;
}

/* お知らせ */

time {
    font-weight: bold;
}

.news {
    list-style: none;
    border-bottom: #C7AD8A 1px dotted;
    padding-top: 15px;
}

/* お知らせここまで */

.padding-top {
    padding-top: 80px;
}

/* サービス */

.cp_sv *,
.cp_sv *:after,
.cp_sv *:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.cp_sv .cp_svtab {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 0 1em 0;
    color: #ffffff;
}

.cp_sv .cp_svtab input {
    position: absolute;
    opacity: 0;
}

.label-text {
    padding-right: 20px;
}

/* 質問 */
.cp_sv .cp_svtab label {
    font-weight: bold;
    line-height: 1.6em;
    position: relative;
    display: block;
    margin: 0 0 0 0;
    padding: 1em 2em 1em 2.5em;
    cursor: pointer;
    text-indent: 1em;
    border-radius: 0.5em;
    background: #C7AD8A;
}

.cp_sv .cp_svtab label:hover {
    transition: all 0.3s;
    color: #6b5e4a;
}

/* --質問の＋アイコン */
.cp_sv .cp_svtab label::after {
    font-size: 1.7em;
    font-weight: bold;
    line-height: 2em;
    position: absolute;
    top: 0;
    right: 0;
    content: '\2b';
    display: inline-block;
    width: 2em;
    height: 2em;
    -webkit-transition: transform 0.4s;
    transition: transform 0.4s;
}

/* 答え */
.cp_sv .cp_svtab .cp_svtab-content {
    position: relative;
    overflow: hidden;
    max-height: 0;
    padding: 0 0 0 2.5em;
    padding-right: 20px;
    -webkit-transition: max-height 0.2s;
    transition: max-height 0.2s;
    border-radius: 0 0 0.5em 0.5em;
    color: #C7AD8A;
}

.cp_sv .cp_svtab .cp_svtab-content::before {
    font-family: serif;
    font-size: 1.5em;
    /* position: absolute; */
    margin: 0.4em 0 0 -1em;
    /* padding: 0; */
}

.cp_sv .cp_svtab .cp_svtab-content p {
    margin: 1em 1em 1em 0;
    padding-bottom: 10px;
}

/* 質問を開いた時の仕様 */
/* --答えの高さ */
.cp_sv .cp_svtab input:checked~.cp_svtab-content {
    max-height: 40em;
    border: 10px solid rgba(27, 37, 56, 0.1);
    padding-right: 20px;
    padding: 40px;
    justify-content: center;
}

/* 質問をクリックした時のアイコンの動き */
.cp_sv .cp_svtab input:checked~label {
    color: #6b5e4a;
    border-radius: 0.5em 0.5em 0 0;
}

/* 質問をクリックした時の+の動き */
.cp_sv .cp_svtab input[type=checkbox]:checked+label::after {
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}


/* サービス ここまで*/

/* ブログ */
.btn {
    background-color: #C7AD8A;
    border: 1px none #C7AD8A;
    width: 100%;
    font-size: 20px;
    border-radius: 2em;
    padding: 1em;
    margin: 10px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
}

.btn::after {
    content: "　▶︎";
    color: #ffffff;
}

/* ブログ ここまで*/

/************************************
** スライダー
************************************/

.scroll_content {
    /* リスト全体のスタイル */
    display: flex;
    max-width: 800px;
    margin: auto;
    overflow-x: auto;
}

.scroll_content li {
    /* 各リストのスタイル */
    width: 90%;
    padding: 8px;
    margin: 3px;
    flex-shrink: 0;
    list-style: none;
}

.scroll_content img {
    /* 画像のスタイル */
    width: 100%;
    /* max-height: 200px; */
    object-fit: cover;
    padding: auto;
}

.scroll_content::-webkit-scrollbar {
    height: 12px;
    /* スクロールバーの高さ */
}

.scroll_content::-webkit-scrollbar-thumb {
    background: #C7AD8A;
    /* ツマミの色 */
    border-radius: 6px;
    /* ツマミ両端の丸み */
}

.scroll_content::-webkit-scrollbar-track {
    background: #ddd;
    /* トラックの色 */
    border-radius: 6px;
    /* トラック両端の丸み */
}

.sd {
    font-size: 15px;
    padding: 20px;
}



/* お問い合わせ */
.form-group {
    display: block;
    margin-bottom: 20px;
    text-align: left;
    /* grid-template-columns: 300px 1fr; */
}

.form-label {
    /* padding-top: 8px; */
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

.form-btn {
    margin: 30px 0;
}

/* フォームの入力欄 */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 10px;
    border: solid 1px #C7AD8A;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    outline: none;
}

/* 送信ボタン */
button[type="submit"] {
    width: 170px;
    height: 40px;
    font-size: 18px;
    color: #C7AD8A;
    cursor: pointer;
    background: #fff;
    border: 1px solid #C7AD8A;
}

/* マウスポインタを重ねた時 */
button[type="submit"]:hover {
    color: #fff;
    background: #C7AD8A;
}

.form-label::before {
    content: "●";
    margin-right: 4px;
    color: #C7AD8A;
}

strong {
    font-size: 20px;
}

.qa-tel::before {
    content: "☎";
}

/* お問い合わせここまで */

/* よくある質問 */

.cp_qa *,
.cp_qa *:after,
.cp_qa *:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.cp_qa .cp_actab {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 0 1em 0;
    color: #ffffff;
}

.cp_qa .cp_actab input {
    position: absolute;
    opacity: 0;
}

/* 質問 */
.cp_qa .cp_actab label {
    font-weight: bold;
    line-height: 1.6em;
    position: relative;
    display: block;
    margin: 0 0 0 0;
    padding: 1em 2em 1em 2.5em;
    cursor: pointer;
    text-indent: 1em;
    border-radius: 0.5em;
    background: #C7AD8A;
}

.cp_qa .cp_actab label::before {
    font-family: serif;
    font-size: 1.5em;
    margin-left: -2em;
    padding-right: 0.5em;
    content: 'Q ,';
    color: #fff;
}

.cp_qa .cp_actab label:hover {
    transition: all 0.3s;
    color: #6b5e4a;
}

/* --質問の＋アイコン */
.cp_qa .cp_actab label::after {
    font-size: 1.7em;
    font-weight: bold;
    line-height: 2em;
    position: absolute;
    top: 0;
    right: 0;
    content: '\2b';
    display: inline-block;
    width: 2em;
    height: 2em;
    -webkit-transition: transform 0.4s;
    transition: transform 0.4s;
}

/* 答え */
.cp_qa .cp_actab .cp_actab-content {
    position: relative;
    overflow: hidden;
    max-height: 0;
    padding: 0 0 0 1.5em;
    padding-right: 20px;
    -webkit-transition: max-height 0.2s;
    transition: max-height 0.2s;
    border-radius: 0 0 0.5em 0.5em;
    color: #C7AD8A;
}

.cp_qa .cp_actab .cp_actab-content p::before {
    font-family: serif;
    font-size: 1.5em;
    /* position: absolute; */
    margin: 0.4em 0 0 -1em;
    /* padding: 0; */
    content: 'A ,';
    padding-right: 10px;
}

.cp_qa .cp_actab .cp_actab-content p {
    /* margin: 1em 1em 1em 0; */
    padding-bottom: 10px;
}

/* 質問を開いた時の仕様 */
/* --答えの高さ */
.cp_qa .cp_actab input:checked~.cp_actab-content {
    max-height: 40em;
    border: 10px solid rgba(27, 37, 56, 0.1);
}

/* 質問をクリックした時のアイコンの動き */
.cp_qa .cp_actab input:checked~label {
    color: #6b5e4a;
    border-radius: 0.5em 0.5em 0 0;
}

/* 質問をクリックした時の+の動き */
.cp_qa .cp_actab input[type=checkbox]:checked+label::after {
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

/* よくある質問ここまで */

/* フッター */
.footer {
    background-color: #C7AD8A;
    color: #ffffff;
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 30px;
    width: 100%;
    padding: 20px;
}

address {
    font-style: normal;
}

.footer-address {
    line-height: 1.5;
    padding-bottom: 20px;
}

.ft-ad {
    margin-top: 20px;
    width: auto;
    border-top: solid #fff 1px;
    border-bottom: solid #fff 1px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.g-map {
    margin-top: 20px;
}

.dli-pin-fill {
    display: inline-block;
    vertical-align: middle;
    color: #6b5e4a;
    line-height: 1;
    position: relative;
    width: 0.8em;
    height: 0.8em;
    background: currentColor;
    border: 0.1em solid currentColor;
    border-radius: 40% 60% 0% 100% / 40% 100% 0% 60%;
    box-sizing: content-box;
    transform: rotate(45deg);
}

.dli-pin-fill::before {
    content: '';
    position: absolute;
    top: 18%;
    left: 18%;
    width: 0.336em;
    height: 0.336em;
    background: #fff;
    border-radius: 50%;
    box-sizing: border-box;
}

/* TOPボタン */
.btn-top {
    font-weight: bold;
    justify-content: center;
    right: 10px;
    background-color: #ffffff;
    width: 200px;
    height: 50px;
    border: 2px solid #ffffff;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 30px;
    color: #C7AD8A;
    cursor: pointer;
}

.btn-top::after {
    content: "↑";
}

/* TOPボタンここまで*/




@media screen and (min-width: 600px) {

    main {
        /* max-width: 1200px; */
        margin: auto;
    }

    /* ハンバーガーメニュー */

    .header-container {
        justify-content: space-around;
        /* width: 100%; */
        display: block;
    }

    .header {
        height: 100px;
    }

    .drawer-hamburger {
        display: none;
    }

    .drawer-menu {
        display: flex;
        justify-content: center;
        gap: 20px;
        list-style: none;
        padding-top: 10px;
    }

    .drawer-menu-item {
        font-size: 16px;
        /* text-transform: uppercase; */
    }

    .drawer-menu-item:hover {
        color: black;
    }

    /* ハンバーガーメニューここまで */

    .padding {
        padding: 150px;
    }

    .scroll_content li {
        width: 45%;
    }

    .top-img {
        max-width: 100%;
        display: block !important;
    }

    .sp-top {
        display: none !important;
    }

    /* お知らせ */
    #news ul li {
        /* margin-top: 20px; */
        /* padding: 0 0 20px 0; */
        text-indent: 0;
    }


    /* お知らせここまで */

    /* サービス内容 */
    .sv_img {
        width: 300px;
        height: 200px;
    }

    .cp_svtab-content {
        display: flex;
    }

    .sv_p {
        text-align: left;
    }

    /* サービス内容ここまで */

    /* フォーム */
    .form-group {
        display: grid;
        grid-template-columns: 300px 1fr;
    }

    /* フォームここまで */

    /* よくある質問 */

    /* よくある質問ここまで */

    .acd-label {
        width: 95%;
    }

    .acd-content {
        width: 95%;
    }

    .acd-check:checked+.acd-label+.acd-content {
        padding: 10px 0;
    }

    .footer-container {
        display: grid;
        /* width: 1000px; */
        /* margin: 0 auto; */
        margin: 30px;
        /* justify-items: center; */
        place-content: center;
        text-align: left;
    }

    .footer-logo {
        grid-row: 1/2;
        grid-column: 1/2;
    }

    .map {
        grid-row: 1/3;
        grid-column: 2/3;
        /* padding-left: 20px; */
        width: auto;
        padding-left: 60px;
    }

    .btn-center {
        text-align: center;
    }
}