@charset "utf-8";

/* 拾ってきたリセットcssをあてています ↓ */

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

nav ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

/* change colours to suit your needs */
ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}

/* change colours to suit your needs */
mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}

input,
select {
    vertical-align: middle;
}


/* 全体設定 */

html {
    font-size: 16px;
    background-color: #fff;
}

body {
    color: #4b3c23;
    font-family: '小塚ゴシック Pr6N', 'Kozuka Gothic Pro', sans-serif;
    box-sizing: border-box;
}

.inner {
    max-width: 1040px;
    margin: 0 auto;
    width: 90%;
    /* 画面幅が狭いときにも対応 */
}

.flex {
    display: flex;
    justify-content: space-between;
}

/* header ここから */

header {
    margin-bottom: 15px;
}

.header-tel {
    display: inline-block;
    color: #f0908d;
    font-size: 1.875rem;
    align-items: flex-end;
    margin-top: 65px;
    margin-right: 15px;
}

.header-tel a{
    color: #f0908d;
    text-decoration: none;
    font-size: 1.875rem;;
}

header .flex {
    position: relative;
}

.header-tel::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 40px;
    background-image: url(common-images/tel_icon.png);
    background-repeat: no-repeat;
    margin-right: 25px;
}

/* nav ここから */

.nav {
    width: 100%;
    background: rgba(222, 176, 104, 0.3);
    backdrop-filter: blur(5.6px);
    -webkit-backdrop-filter: blur(5.6px);
    z-index: 1000;
    position: sticky;
    top: 0;
    left: 0;
}

.nav_list {
    padding: 25px 0;
    margin: auto 150px;
}

.nav_list li {
    position: relative;
}

.nav a {
    text-decoration: none;
    color: #4b3c23;
    font-size: clamp(0.875rem, 0.3rem + 1vw, 1.1rem);
}

.nav_list li::before {
    position: absolute;
    left: -68px;
    height: 20px;
    transform: rotate(30deg);
    width: 1px;
    background-color: rgba(75, 60, 35, 0.3);
    content: "";
}

.nav_list li:first-child::before {
    content: none;
}
/*ホバー*/
.nav li:hover::after{
    content: "";
    background-image: url(../common/common-images/icon70.png);
    width: 50px;
    height: 50px;
    background-size: 100%;
    background-repeat: no-repeat;
    z-index: -1;
    position: absolute;
        top:  50%;
        left: 50%;
        transform: translate(-50%,-50%);
    
    }
/* WEB予約ボタン */

.yoyaku_btn {
    position: fixed;
    left: 0;
    top: 264px;
    z-index: 300;
    width: 70px;
    height: 100%;
}

/* headerとfooterのボーダー */

.border {
    border: 5px solid #deb068;
    color: transparent;
    font-size: 0;
}

/* totopボタン */

.totop {
    text-align: right;
    padding-bottom: 35px;
}

.totop img {
    position: relative;
    animation: fuwafuwa 4s infinite;
}

@keyframes fuwafuwa {
    0% {
        top: 0;
    }

    50% {
        top: 20px;
    }

    100% {
        top: 0;
    }
}

/* footer ここから */

footer li {
    list-style: none;
    margin-top: 30px;
}

.f_menu>li {
    margin: 55px 150px 60px 0;
}

footer a {
    text-decoration: none;
    color: #4b3c23;
}

.footer_link01,
.footer_link02 {
    font-weight: bold;
}

.button::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 1px solid #4b3c23;
    border-right: 1px solid #4b3c23;
    transform: rotate(45deg);
    margin-left: 10px;
    vertical-align: 1px;
}

.footer_link03 {
    font-weight: normal;
}

.footer-sns-box {
    text-align: center;
    font-weight: bold;
    margin-top: 55px;
}

.sns_icon {
    margin: 30px 0;
}

.copyright {
    background-color: #deb068;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 0.875rem;
}

/* レスポンシブ */

@media screen and (1200px >=width) {
    .nav_list li::before {
        display: none;
    }

}

@media screen and (max-width: 768px) {
    .flex {
        align-items: center;
        text-align: center;
    }
header{
    position: sticky;
    top: 0;
    background-color: #fff;
    width: 100%;
    z-index: 1000;

}
    .title_logo img {
        width: 250px;
        /* 画像を少し小さくする */
    }

    .header-tel {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
        /* 文字サイズを少し調整 */
        margin-top: 20px;
        margin-right: 0;
        /* 右側の余白をなくす */
        align-items: end;
    }
    .header-tel a{
        color: #f0908d;
        text-decoration: none;
        font-size: 0.7rem;;
    }

    .header-tel::before {
        margin-right: 10px;
        /* アイコンと電話番号の間隔を調整 */
        background-size: contain;
        /* 画像サイズを自動調整 */
    }

    .nav {
        display: none;
        position: absolute;
        top: 65px;
        position: fixed;
        top: 43px;
        left: 50%;
        transform: translate(-50%);
        
    }

    .nav_list {
        display: block;
        margin: 0;
       
       
    }

    .nav_list li {
        margin: 10px 0;
    }

    .f_menu3box {
        display: flex;
        flex-direction: column;
    }

    .f_menu {
        align-items: start;
        text-align: center;
        width: 100%;
    }

    .f_menu>li {
        margin: 20px 0;
        /* 上下の余白を追加 */
        width: 100%;
        text-align: center;
    }

    .footer_link01,
    .footer_link02 {
        padding: 30px 0;
    }

    .sns_icon {
        display: flex;
        /* 横並びにする */
        flex-direction: row;
        /* 横方向に配置 */
        justify-content: center;
        /* 中央揃え */
        gap: 15px;
        /* アイコン間の余白 */
        width: 100%;
        /* 幅を100%にする */
    }

    .sns_icon p {
        margin-bottom: 20px;
    }

    .footer-sns-box {
        width: 100%;
        /* 幅を100%にする */
        text-align: center;
        margin-top: 30px;
        /* 上の余白を調整 */
    }

    .footer-logo {
        padding-bottom: 80px;
        text-align: center;
    }

    @media screen and (max-width: 480px) {
        .title_logo img {
            width: 180px;
            /* 画像を少し小さくする */
        }

        .header-tel {
            /* display: flex;
            align-items: center;
            justify-content: center; */
            font-size: 0.4rem;
            /* 文字サイズを少し調整 */
            margin-top: 0px;
            margin-right: 0;
            /* 右側の余白をなくす */
            align-items: end;
        }
        .header-tel a{
            color: #f0908d;
            text-decoration: none;
            font-size: 0.75rem;;
        }
    
        .header-tel::before {
            margin-right: 10px;
            /* アイコンと電話番号の間隔を調整 */
            background-size: contain;
            /* 画像サイズを自動調整 */
        }
    }

    /* ハンバーガーメニュー */

    /*=============================
.btn-trigger
=============================*/
    .btn-trigger {
         /*position: absolute;*/
       position: fixed;
        top: 85px;
        right: 20px;
        width: 30px;
        height: 40px;
        cursor: pointer;
        box-sizing: content-box;
        /* pc版では非表示、スマホ版では表示 */
        display: block;
        z-index: 1100;
      
    }

    .btn-trigger span {
        position: absolute;
        top: 10px;
        width: 100%;
        height: 4px;
        background-color: #f0908d;
        border-radius: 4px;
    }

    .btn-trigger,
    .btn-trigger span {
        display: inline-block;
        transition: all .5s;
        box-sizing: border-box;
    }

    .btn-trigger span:nth-of-type(1) {
        top: 0;
    }

    .btn-trigger span:nth-of-type(2) {
        top: 20px;
    }

    .btn-trigger span:nth-of-type(3) {
        bottom: 0;
    }


    /* =============================
#btn01
============================= */
    #btn01.active span:nth-of-type(1) {
        -webkit-transform: translateY(20px) rotate(-45deg);
        transform: translateY(-5px) rotate(-45deg);
    }

    #btn01.active span:nth-of-type(2) {
        opacity: 0;
    }

    #btn01.active span:nth-of-type(3) {
        -webkit-transform: translateY(-20px) rotate(45deg);
        transform: translateY(-15px) rotate(45deg);
    }
}