@charset "utf-8";
:root {
    --main-coler: rgb(247, 244, 239);
    --key-coler: rgb(224, 106, 51);
    --accent-color: rgb(18, 18, 146);
    --font-color: rgb(11, 11, 11);
}

a {
    text-decoration: none;
}

a:hover {
    opacity: 0.7;
}

body {
    font-family: "游ゴシック体", "Yu Gothic", "YuGothic", "メイリオ", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    background-color: var(--main-coler);
    box-sizing: border-box;
    color: var(--font-color);
}

/* ヘッダーここから */
header {
    position: fixed;
    width: 100%;
    z-index: 100;
    top: 0;
    background-color: rgba(250 250 250 / 0.9);
}

.header-contents {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Mochiy Pop One', sans-serif;

}

.logo {
    position: relative;
    padding-top: 10px;
    padding-left: 40px;
    width: 200px;
    font-size: 30px;
    font-weight: 600;
    color: rgb(39, 14, 98);
    margin: 30px 0 0px;
    font-family: 'Mrs Saint Delafield', cursive;
    text-shadow: 2px 2px rgb(147, 204, 231);
}

.logo span {
    position: relative;
    z-index: 0;
}

.logo::before {
    content: attr(data-en);
    position: absolute;
    transform: rotate(-7deg);
    top: -53px;
    left: 40px;
    color: #e5c046;
    font-size: 80px;
    font-weight: 400;
    font-family: "Mrs Saint Delafield", cursive;
}

#header-tel {
    margin: 0 auto 0 0;
}

#header-tel p {
margin: 10px;
}

.gnavi{
    display: flex;
    align-items: center;
    flex-wrap: wrap;/*スマホ表示折り返し用なのでPCのみなら不要*/
    list-style: none;
}

.gnavi li a{
    display: block;
    padding:10px 5px;
    text-decoration: none;
    color: #333;
}

.gnavi li{
    padding-right: 20px;
    font-size: 1.2rem;
    color: var(--font-color);
}

.gnavi li a{
    position: relative;
}

.gnavi li.current a,
.gnavi li a:hover{
    color:#0481A2;
}

.gnavi li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    /*線の形状*/
    width: 80%;
    height: 2px;
    background:#0481A2;
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: center top;/*上部中央基点*/
}

.gnavi li.current a::after,
.gnavi li a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}

.header-contents a .fa-brands {
    display: block;
    margin-top: -5px;
    margin-right: 20px;
    color: #ee0000;
}

main {
    font-family: 'Mochiy Pop One', sans-serif;
}

/* タイトル装飾 */
.contents-title {
    display: flex;
    align-items: center;
}

.heading {
    position: relative;
    padding-bottom: 10px;
    width: 100%;
    border-bottom: 5px solid #c7c7c7;
}

.heading::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    height: 5px;
    background-color: rgb(224, 106, 51);
}

.contents-title h1,
.contents-title h2 {
    font-size: 2rem;
    margin-bottom: 0;
    margin-left: 30px;
}

.contents-title p {
    font-size: 1.5rem;
    margin-left: 30px;
    margin-bottom: 0;
}

/* フッターここから */
#footer {
    margin-top: 100px;
    background-color: rgb(52, 40, 85);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#footer-left {
    width: 50%;
}

#footer-left .appearance {
    display: flex;
    justify-content: center;
    align-items: center;
}

#footer-left .appearance img {
    margin: 10px;
}
#footer-left .appearance img:first-child {
    padding-left: 30px;
}

    #footer-right {
    width: 50%;
    text-align: center;
    padding: 20px;
}

#footer img {
    display: block;
    width: 300px;
    height: 200px;
    margin: 0 auto 20px;
}

#footer-left p {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: #c7c7c7;
}

.footer-left-bottom {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.footer-address {
    margin-left: 20px;
}

.footer-address02 a .fa-brands {
    color: #e5d09e;
    font-size: 3rem;
}

#footer-right iframe {
   width: 100%;
}
footer #copy {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    background-color: rgb(19, 43, 52);
    color: #c7c7c7;
}


@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適用される */
        .header {
            height: 80px;
        }
        #header-tel {
            display: none;
        }
        #footer {
            margin-top: 50px;
        }
        #footer-left .appearance img:nth-child(2) {
            display: none;
        }
        #footer-left .footer-left-bottom .footer-address p {
            font-size: 16px;
        }
    }
    @media screen and (max-width: 800px) {
        #header-left {
            width: 30%;
        }
        .gnavi li {
            padding-right: 5px;
            font-size: 16px;
        }
        .gnavi li a {
            padding: 10px;
        }
    }

    @media screen and (max-width: 600px) {
        .header {
            height: 70px;
            padding-left: 10px;
        }
        .gnavi {
            flex-wrap: nowrap;
        }
        .gnavi li {
            padding-left: 5px;
            text-align: right;
        }
        .gnavi li a {
            padding: 5px;
            font-size: 14px;
        }
        .gnavi li:first-child {
            display: none;
        }
        #header-left a .logo {
            padding-left: 5px;
            font-size: 23px;
        }
        .logo::before {
            left: 0;
            font-size: 60px;
            top: -40px
        }
        .instagram {
            display: none;
        }
        #footer {
            display: block;
        }
        #footer img {
            display: none;
        }
        .footer-left-bottom{
            margin: 20px 20px 10px 10px;
            text-align: right;
        }
        #footer-left {
            width: 100%;
        }
        .footer-left-bottom .footer-address {
            width: 90%;
        }
        #footer-left .footer-left-bottom .footer-address p{
            font-size: 13px;
            margin-right: 10px;
            margin-left: -10px;
        }
        #footer-right {
            width: 100%;
            padding: 10px 7px;
        }
    }