@charset "UTF-8";
/*全体*/
* {
    box-sizing: border-box;
}

/* インライン要素の<img>の下の余白を取り除く */
img {
    vertical-align: bottom;
  }

html {
    scroll-behavior: smooth;
}

/* body */
body {
    font-size: 16px;
    line-height: 1.8;
    font-family: 'Noto Sans JP', 'Open Sans', sans-serif;
    font-weight: 400;
    color: rgb(60, 60, 60);
    background-color: #fff;
}

/* 初期スタイル */
h1,
h2 {
    margin-top: 0;
    line-height: 1.7;
    letter-spacing: 0.2em;
    text-align: center; 
}

h2 {
    color: #64360c;
    font-size: 24px;
    margin-bottom: 2em;
}
h3 {
    color: rgb(251, 98, 3);
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.2em;
    text-align: center;
    padding-bottom: 14px;
}

h4 {
    color: #442305;
    font-size: 15px;
    font-weight: 500;
    padding-top: 10px;
    margin-bottom: 40px;
    text-align: center;
    border-top: 1px solid #0aa4afad;
}

p {
    margin-top: .7em;
    margin-bottom: 1em;
    margin-left: 50px;
    text-align: justify;
}

address {
    font-style: normal;
}

a {
    color: #442305;
    text-decoration: none;
    display: block;
    width: 100%;
}

a:hover {
    color: #f88e2d;
    text-decoration: none;
    transition: .3s;
}

ul {
    margin: 1em 0;
    padding: 0;
    list-style: none;
}

img {
    width: 100%;
    height: auto;
}

section {
    padding: 2em;
}

/* PC用のスタイル */
@media screen and (min-width: 768px) {
    section {
        padding-left: 20%;
        padding-right: 20%;
    }
}



/* お問い合わせボタン */
.btn-contact {
    color: #442305;
    font-size: 1.2em;
    font-weight: normal;
    display: block;
    padding: 16px 36px;
    margin: 0 auto;
    background: #fea500;
    border: none;
    border-radius: 10px;
    box-shadow: 3px 1.5px #6b585891;
}

.btn-contact:hover{
    color: rgb(251, 246, 215);
    letter-spacing: .1em;
    font-weight: 600;
    background: #ff6302;
    box-shadow: none;
    cursor: pointer;
    transition: .3s;
}

@media screen and (min-width: 768px) {
    .btn-contact {
        letter-spacing: .1em;
        padding: 16px 40px;
        margin-bottom: 40px;
    }
}

/* 詳細ボタン */
.btn-details {
    color: #040404;
    font-size: 1.1em;
    padding: 8px 16px;
    border-radius: 6px;
    margin: 0 auto;
    margin-left: auto;
    margin-top: 8px;
    display: inline-block;
    background: #45d109ca;
    border: none;
}

.btn-details:hover {
    color: rgb(255, 255, 240);
    font-weight: 500;
    letter-spacing: .08em;
    background: #3bac0b;
    cursor: pointer;
    transition: .2s;
}

@media screen and (min-width: 768px) {
    .btn-details {
        padding: 10px 18px;
    }

    .btn-details:hover {
        font-weight: 600;
    }
}

/* コンテンツを格納するスタイル */
.inner {
    padding: 0 15px;
    margin: 0 auto;
}

/* PC用 */
@media screen and (min-width: 768px) {
    .inner {
        max-width: 1200px;
    }
}

/* モバイルとPCでの表示に関するスタイル */
.sp-only {
    display: block;
}

.pc-only {
    display: none;
}

/* PC用のスタイル */
@media screen and (min-width: 768px) {
    .sp-only {
        display: none;
    }

    .pc-only {
        display: block;
    }
}

header
.header {
    position: fixed;
    top: 0px;
    width: 100%;
    background: rgba(255,255,255,1);
    z-index: 101;
}

サイトロゴとナビゲーションの並び
.header-logo-menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

サイトロゴの表示 
.logo-area {
    width: 1000px;
    margin: 10px;
    text-align: left;
}

/* ハンバーガーメニュー 
.gnav-toggle {
    position: relative;
    margin-top: 30px;
    margin-right: 20px;
}

.gnav-hidden {
    display: none;
}

#gnav-open {
    display: inline-block;
    width: 30px;
    height: 22px;
    vertical-align: middle;
    position: absolute;
    top: 5px;
    right: 0;
}

#gnav-open span,
#gnav-open span::before,
#gnav-open span::after {
    content: '';
    position: absolute;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: rgb(255, 107, 0);
    display: block;
    cursor: pointer;
    transition: .5s;
}

#gnav-open span::before {
    bottom: -8px;
}

#gnav-open span::after {
    bottom: -16px;
}

#gnav-close {
    display: none;
    position: fixed;
    z-index: 70;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0s ease-in-out;
}

#gnav-input:checked ~ #gnav-close {
    display: block;
    opacity: .5s;
}

#gnav-input:checked ~ #gnav-content {
    transform: translateX(0%);
}

#gnav-content {
    overflow: auto;
    position: fixed;
    top: 84px;
    right: 0;
    z-index: 300;
    width: 70%;
    max-width: 180px;
    background: rgba(105, 79, 79, 0.8);
    transition: .3s ease-in-out;
    transform: translateX(100%);
}

.gnav-menu {
    display: flex;
    flex-direction: column;
    padding-top: 5px;
    align-items: center;
}

.gnav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    margin-top: 5px;
    padding-bottom: 10px;
}

.gnav-item a {
    color: #fff;
    font-size: 14px;
    display: block;
    width: 200px;
    text-align: center;
}

.gnav-item a::first-line {
    font-size: 16px;
    font-weight: bold;
}

.gnav-menu:last-of-type {
    margin-bottom: 0;
}

#gnav-input:checked ~ #gnav-open span {
    bottom: 10px;
    transform: rotate(45deg);
}

#gnav-input:checked ~ #gnav-open span::before {
    bottom: 0;
    transform: rotate(-90deg);
}

#gnav-input:checked ~ #gnav-open span::after {
    background-color: transparent;
    transition: 0s;
} */
 
/* PC表示のナビ */
@media screen and (min-width: 768px) {
    .logo-area {
        width: 500px;
    }
}

@media screen and (min-width: 768px) {
    .gnav-menu {
        flex-direction: row;
        /* background: #aaa; */
        height: 72px;
        padding-top: 0;
        padding-bottom: 5px;
    }

    .gnav-item {
        border-bottom: none;
        margin-top: 8px;
        padding-bottom: 0;
    }

    .gnav-item a {
        color: #683b11;
        width: 12vw;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .gnav-item a::first-line {
        color: #ff6302;
        font-size: 17px;
        font-weight: bold;
    }

    .gnav-item a:hover {
        color: #ff6302;
        font-size: 15px;
        background-color: #a76e0436;
    }

    .gnav-menu:last-of-type {
        margin-right: 18px;
    }
}

/* main画像 */
.mv-area {
    width: 100vw;
    height: 63vh;
    background-image: url(../img/img_3762sp.png);
    background-size: cover;
    background-position: center center;
    align-items: center;
    flex-direction: column;
}

@media screen and (min-width: 768px) {
    .mv-area {
        position: relative;
        width: 100%;
        height: 650px;
        background-image: url(../img/img_3762pc.png);
        background-size: cover;
        /* background-position: center top;
        background-repeat: no-repeat; */
        /* -webkit-animation: zoom 9s 1;
        animation: zoom 9s 1;
        animation-fill-mode: forwards;
        overflow: hidden; */
    }
}

/* h1 */
.mv-title {
    font-size: 1.5em;
    font-weight: 700;
    color: #fff;
    text-shadow: 0px 0px 5px #442305;
    letter-spacing: 2px;
    line-height: 1.4em;
    margin-top: 100px;
    text-align: end;
    z-index: 10;
}

@media screen and (min-width: 768px) {
    .mv-title {
        font-size: 38px;
        text-shadow: 0px 1px 7px #442305;
        letter-spacing: 0.17em;
        line-height: 1.7;
        margin-top: 105px;
        margin-right: -20%;
    }
}

/* h2見出し */
.h2-title {
    font-size: 22px;
    font-weight: 700;
    position: relative;
    padding-top: 60px;
    text-align: center;
    text-decoration: underline dotted;
    text-decoration-thickness: 4px;
    text-underline-offset: 12px;
}

@media screen and (min-width: 768px) {
    .h2-title {
        font-size: 28px;
        text-underline-offset: 15px;
        padding-top: 100px;
    }
}

/* h3 */
@media screen and (min-width: 768px) {
    h3 {
        font-size: 1.1em;
        margin-bottom: 26px;
    }

    .txt-plan {
        font-size: 1.1em;
        text-align: center;
    }
}

/* p */
@media screen and (min-width: 768px) {
    p {
        margin-top: .7em;
        margin-bottom: 1em;
        margin-left: 0;
        text-align: center;
    }
}

/* infoエリア */
.info-area {
    background-color: rgba(239, 225, 197, 0.8);
    background-image: url(../img/bg_1056885.jpg);
    background-attachment: fixed;
}

.info-content {
    padding-bottom: 18px;
}

.info-txt {
    font-size: 1.1em;
    font-weight: 500;
    color: #683b11;
    text-shadow: 0px 0.7px 1px rgba(4, 0, 0, 0.4);
    margin-bottom: 0;
    padding: 10px 0px 10px 0px;
}

.info-txt h2 {
    font-size: 1.8em;
    font-weight: 700;
    letter-spacing: .09em;
    text-shadow: 0px 3px 3px #fff;
}

@media screen and (min-width: 768px) {
    .info-txt {
        font-size: 1.2em;
        font-weight: 400;
        text-align-last: center;
        margin-bottom: 30px;
    }
    
    .info-txt h2 {
        font-size: 1.9em;
        font-weight: 700;
        letter-spacing: .05em;
        text-shadow: 0px 3px 3px #fff;
        padding-top: 40px;
    }
    
}
/* planエリア */
.plan-item img:hover {
    opacity: .5;
    cursor: pointer;
    transition: .1s;
}

.txt-plan {
    margin-bottom: 3em;
}

ul li p {
    margin-bottom: 0;
}


@media screen and (min-width: 768px) {
    /* プランのリスト（ul） */
    .plan-content {
        display: flex;
        flex-wrap: nowrap;
        min-width: 840px;
        margin: 0 auto;
    }

    /* プランアイテム（li） */    
    .plan-item {
        flex: 1;
    }

    .plan-item p {
        height: 128px;
        margin: 18px;
    }

    /* 詳細を見るボタン */
    .plan-item button {
        margin-bottom: 3em;
        display: block;
        margin-right: 33%;
    }
}

.btn-below {
    padding-top: 4em;
    border-top: 1px solid #ff4800;
}

/* スタッフ紹介エリア */
.staff-txt p {
    margin-bottom: 0;
}
.staff-txt button {
    margin-bottom: 3em;
    display: block;
    margin-right: 0px
}

@media screen and (min-width: 768px) {
    .staff-txt p {
        font-size: 1.1em;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .staff-txt button {
        display: block;
        margin: 0 auto;
    }
}

/* 採用情報エリア */
.recruit-txt p {
    margin-bottom: 0;
}
.recruit-txt button {
    margin-bottom: 3em;
    display: block;
    margin-right: 0px
}

@media screen and (min-width: 768px) {
    .recruit-txt p {
        font-size: 1.1em;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .recruit-txt button {
        display: block;
        margin: 0 auto;
    }
}

/* アクセスエリア */
.access-area {
    padding-bottom: 0;
}

.txt-lead {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

/* マップの表示枠の指定 */
.access-maparea {
    position: relative;
    padding-top: 350px;
}

/* Googleマップに追加 */
.access-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 350px;
}

/* フッター全体 */
.foot-area {
    color: #442305;
    text-align: center;
    padding-top: 40px;
}

@media screen and (min-width: 768px) {
    .foot-area {
        font-size: 1.1em;
    }
}

/* フッターナビ */
.footer-nav {
    display: inline-block;
    width: 100%;
    vertical-align: middle;
}

.footer-nav ul li {
    color: rgb(53, 44, 44);
    font-size: 16px;
    letter-spacing: .1em;
    background-color: #fea50079;
    border-bottom: .5px solid rgba(255, 255, 255, 0.8);
    margin: 1px;
    line-height: 2.4;
}

.footer-nav ul li a:hover {
    color: rgb(249, 247, 235);
    font-weight: 600;
    letter-spacing: .1em;
    padding: 1.2px;
    display: block;
    background-color: #ff480091;
    cursor: pointer;
}

@media screen and (min-width: 768px) {
    .footer-nav {
        display: none;
    }
    
}

/* ロゴ画像 */
.foot-logo {
    margin: 0 auto 20px;
    padding-top: 30px;
    width: 250px;
}

.txt-phone {
    font-size: 1.5em;
    letter-spacing: .05em;
    font-weight: 600;
}

/* PC用　電話起動しない */
@media screen and (min-width: 768px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}

/* 著作権表示 */
.foot-area_copy {
    color: #fff;
    font-size: 12px;
    display: inline-block;
    text-align: center;
    width: 85%;
    padding: 8px;
    background-color: #76af5d;
}
