/* スマホファースト　sp・tl・pc に応じてスタイルを適用 */
.sp {
    display: block;
}

.tl,
.pc {
    display: none;
}

.tlpc {
    display: none;
}

html {
    scroll-behavior: smooth;
}

body {
    max-width: 1280px;
    padding: 0;
    margin: 0 auto 0 auto;
}

img {
    max-width: 100%;
}

.container {
    width: 90%;
    margin: 0 auto;
    padding: 3em 2%;
}

.smalltxt {
    font-size: 0.8em;
}

.smallertxt {
    font-size: 0.9em;
}

.verysmall {
    font-size: 0.7em;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    padding-left: 0;
}

header {
    /* overflow: hidden;　写真のはみ出しを抑制するがハンバーガーメニューが表示されない問題があるのでコメントアウト */
    position: relative;
    z-index: 10;
    top: 0;
    left: 0;
    /* width: 100%; */
    justify-content: space-between;
    align-items: center;
    min-height: 3rem;
    font-weight: 900;
    padding: 0.5rem;
    /* -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); */
    transition: 1s;
    background-color: #69bdb4;
    transform: translateZ(1px);    /* safariのz-indexバグ対応 */
}

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

header.scroll-nav {
    /* -webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%); */
    transition: 1s;
}

ul#menu {
    display: none;
}

/* ここからハンバーガーメニュー */
#menu-btn-check {
    display: none;
}

.menu-btn {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #69bdb4;
    cursor: pointer;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}

.menu-btn span:before {
    bottom: 8px;
}

.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked~.menu-btn span {
    background-color: rgba(255, 255, 255, 0);    /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked~.menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}

#menu-btn-check:checked~.menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

.menu-content {
    /* display: none; */
    visibility: hidden;
    opacity: 0;
    width: 80%;
    height: fit-content;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 80;
    background-color: #69bdb4;
    transition: all 0.5s;
}

.menu-content ul {
    padding: 2.5em 1em 0 1em;
}

.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    /* list-style: none; */
}

.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 1.1em;
    line-height: 2.3;
    box-sizing: border-box;
    color: #ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 10px;
    position: relative;
}

.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 0.7em;
    top: 1.4em;
}

#menu-btn-check:checked~.menu-content {
    /* display: block;メニューを画面内へ */
    visibility: visible;
    opacity: 1;
    transition: 1s;
}
/* ここまでハンバーガーメニュー */

.headline {
    width: 16em;
    text-align: center;
    margin: 1em 0;
    color: #ffffff;
}

.head-1 {
    text-align: center;
    font-size: 1.5em;
    font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.head-2 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.1em;
    font-weight: 700;
    text-align: initial;
    letter-spacing: 0.25em;
    line-height: 1.6;
    margin: 0 auto;
}

.mincho {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

/* ここからロゴの設定 */
.logo-h {
    width: 4.5em;
    float: left;
}

.logo-big {
    width: 100%;
}

.logo-f {
    margin-top: 1em;
    width: 6em;
}
/* ここまでロゴの設定 */

.headimg {
    position: absolute;
    top: 3.8em;
    right: 0;
    border-radius: 300px 0 0 300px / 2000px 0 0 2000px;
    z-index: -1;
}

.imgtxt {
    position: absolute;
    top: 9em;
    right: 13.5em;
    font-size: 1.8em;
    color: #fff;
}

.headimg01 {
    position: absolute;
    top: 21.5em;
    left: 3em;
    transform: rotate(280deg);
    z-index: -2;
}

.flex-1 {
    padding: 2em 0;
}

/* ここから見出しの設定 */
.caption {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 2em;
    font-weight: 500;
    padding: 0.05em 0.5em;
    border-left: solid 8px #69bdb4;
    border-right: solid 8px #69bdb4;
    color: #69bdb4;
}

.caption-child {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    color: #69bdb4;
    font-size: 0.9em;
    font-weight: 600;
    padding: 0.7em 2em 0.7em 0;
    border: solid 1px #69bdb4;
    border-radius: 100vh;
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-right: 1em;
}

.caption-parent {
    margin-bottom: 0.5em;
}

.float {
    float: left;
}

.center {
    margin-left: auto;
    margin-right: auto;
    /* margin: 0 auto; */
    text-align: center;
}

/* .ifit li {
    display: inline-block;
} */

.cap-aft {
    margin-left: 1.5em;
    line-height: 4;
}

.cap-aftline {
    padding: 0.3em 0 0 1em;
}
/* ここまで見出しの設定 */

/* フロート解除 */
.clear {
    clear: both;
}
/* フロート解除 */

.c-green {
    color: #69bdb4;
}

.bg-green {
    background-color: #69bdb4;
}

.green {
    font-size: 1.5em;
    font-weight: 700;
    color: #69bdb4;
    margin: 1em 0;
}

.gazou {
    border-radius: 3%;
}

.gazou-1 {
    border-radius: 3%;
    margin-bottom: 1em;
}

.gazou-2 {
    border-radius: 3%;
}

.gazou-2:first-child {
    margin-right: 10px;
}

.gazou-3 {
    border-radius: 3%;
    margin-bottom: 2em;
}

.gazou-4 {
    border-radius: 3%;
}

.gazou-5 {
    border-radius: 3%;
    margin: auto 0 auto 1em;
}

.eiri {
    max-width: 480px;
}

.ue {
    margin-top: -0.2em;
}

.gazou-1:last-child {
    margin-bottom: 0;
}

.m-top {
    margin-top: 3em;
}

.diplo {
    outline: 10px solid #aa8368;
    outline-offset: -10px;
}

.setumei {
    font-size: 0.9em;
    font-weight: 500;
    margin: 2em 0;
}

.link-btn {
    display: flex;
    font-weight: 600;
    padding: 0.8em 3.5em 0.8em 3.5em;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: fit-content;
    border: solid 2px #aa8368;
    border-radius: 100vh;
    color: #aa8368;
    margin: 0 auto;
}

.arrow {
    width: 2em;
    height: 0.5em;
    margin: 0.25em 0 0 1em;
    border-bottom: 2px solid #aa8368;
    border-right: 2px solid #aa8368;
    transform: skew(40deg);
}

.plus {
    margin-top: 3em;
    margin-bottom: 2em;
}

.plus-1 {
    margin-top: 3em;
    margin-bottom: 4em;
}

.plus-2 {
    margin-top: 3em;
    margin-bottom: 3em;
}

.icent {
    margin: 2em auto;
    display: block;
}


.bottom {
    margin-bottom: 3em;
}

.sub-c {
    display: block;
    margin: 1em 0 2.7em 0;
    text-align: center;
    font-weight: 600;
}

.sub-c1 {
    text-align: center;
    font-size: 0.8em;
}

.new {
    padding: 3em 2%;
}

.cap-1 {
    margin-bottom: 3em;
}

.cap-2 {
    margin-bottom: 1em;
}

.cap-3 {
    display: flex;
    margin-top: 3em;
}

#sub {
    border: none;
    width: 100%;
}

/* ここから問合せ */
/* ここから電話問合せボタン */
.inqu {
    position: relative;
    display: block;
    margin-top: 15px;
    padding: 1em 0;
    width: 100%;
    height: 13em;
}

.inqu1 {
    position: relative;
    /* display: block; */
    margin-top: 15px;
    padding: 1em 0;
    width: 100%;
    height: 13em;
}

a.btn--tel {
    color: #fff;
    background: #69bdb4;
    text-align: center;
    font-size: 0.8em;
    line-height: 2;
}

/* ここからTEL-Logo */
i.icon {
    font-size: 4em;
    margin-top: 0.3em;
}

a.btn--tel .number {
    line-height: 1;
    display: inline-block;
    margin: 0.5rem auto;
    padding: 0.25rem 1rem;
    letter-spacing: 0;
    color: #000;
    border-radius: 0.5rem;
    background: #fff;
}

a.btn--tel:hover {
    color: #000;
}

.fa-position-right {
    font-size: 1.5em;
    position: absolute;
    top: calc(50% - 0.5em);
    right: 1em;
}
/* ここまでTEL-Logo */
/* ここまで電話問合せボタン */

/* ここからLINEボタン */
a.btn-sns {
    color: #000;
    background-color: rgb(240, 240, 240);
    text-align: center;
    font-size: 0.8em;
    line-height: 2;
}

/* ここからLINE-Logo */
a.btn-sns .line-id {
    line-height: 1;
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.25rem 1rem;
    letter-spacing: 0;
    color: #000;
    border-radius: 0.5rem;
    background: #fff;
}

a.btn-sns:hover {
    color: red;
}

i.fa-line {
    color: #00b900;
    background-color: #fff;
}
/* ここまでLINE-Logo */
/* ここまでLINEボタン */

/* ここからフォーム問合せボタン */
.inq-form {
    color: #000;
    background-color: #cfe5df;
    text-align: center;
    font-size: 0.8em;
    line-height: 2;
}

.inq-form:hover{
    color: #fff;
}
/* ここまでフォーム問合せボタン */
/* ここまで問合せ */

.migigawa {
    margin-bottom: 4em;
}

.eigyo {
    text-align: center;
    font-size: 1em;
    font-weight: bold;
}

.futoji {
    display: inline;
    font-weight: 750;
    width: 6em;
}

.youto {
    border-collapse: collapse;
}
.youto th,td {
    padding: 1em 1em 1em 0;
    border-bottom: solid 1px #ddd;
}

.youto th {
    text-align: left;
    vertical-align: top;
}

/* ここから福井 */
.fukui {
    /* display: block; */
    width: 99%;
    max-width: 35em;
    border: solid 1px #69bdb4;
    margin-top: 2em;
    padding: 1em;
    box-sizing: border-box;
    border-radius: 6px;
    font-size: 0.8em;
}

.fuku-1 {
    margin: 0;
    text-align: center;
    font-size: 1.1em;
    font-weight: 600;
}

.fuku-2 {
    margin: 0;
    padding-left: 5em;
    text-indent: -5em;
}

p#fuku {
    /* display: block; */
    margin: 1em auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    border: solid 1px #69bdb4;
    border-radius: 100vh;
    padding: 0.2em 2em;
    color: #fff;
    background-color: #69bdb4;
}
/* ここまで福井 */

/* ここから設備 */
.setubi {
    font-size: 0.8em;
    letter-spacing: 0.15em;
    line-height: 1.8;
    width: 99%;
    max-width: 30em;
    border: solid 1px #69bdb4;
    margin: 3em 0;
    padding: 1em;
    box-sizing: border-box;
    border-radius: 8px;
    /* float: left; */
}

.norap {
    white-space: nowrap;
}

/* ここまで設備 */

.calendar {
    margin: 0.5em auto;
    box-sizing: border-box;
    width: 100%;
    position: relative;
    aspect-ratio: 7/8;
    max-width: 800px;
    margin-bottom: 3em;
}

.calendar iframe {
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.lesson {
    font-size: 0.8em;
}

.lesson li {
    line-height: 1.8;
    letter-spacing: 0.15em;
}

.fa-circle {
    font-size: 0.9em;
}

/* ここからレッスン料金表 */
table.tbl {
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    max-width: 55em;
    width: 100%;
    letter-spacing: 0.15em;
}

table.tbl tr {
    border-bottom: solid 1px #ddd;
}

table.tbl th {
    padding: 7px 10px;
    background-color: rgb(153, 189, 153);
}

table.tbl td {
    text-align: center;
    padding: 7px 0;
    border-right: solid 1px #ddd;
    border-left: solid 1px #ddd;
}

.tbl td:nth-child(2n) {
    border-bottom: solid 1px #ddd;
}

.tbl .head {
    display: none;
}

.tbl th,
.tbl td {
    display: block;
}

.tbl td::before {
    content: attr(data-label);
    font-size: 0.8em;
    font-weight: 800;
    display: block;
}
/* ここまでレッスン料金表 */

.career li {
    line-height: 2;
}

.career li:first-child {
    font-weight: 600;
    color: #69bdb4;
    border-bottom: solid 1px #69bdb4;
    margin-bottom: 1em;
    padding-right: 4em;
}

.career li:last-child {
    padding-left: 2.7em;
    text-indent: -2.7em;
}

.rent {
    line-height: 2;
}

.rent li {
    padding-left: 1em;
    text-indent: -0.6em;
}

/* ここからキャンセル */
.cancel-parent {
    margin: 0.5em 2em;
    border: solid 1px #000;
    border-radius: 6px;
    padding: 0 1em;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

.cancel {
    /* margin: 0.5em 0;
    padding: 0.5rem; */
    border-collapse: collapse;
}

.cancel tr td {
    border-bottom: solid 1px #ddd;
}

.cancel tr:last-child td {
    border-bottom: none;
}
/* ここまでキャンセル */

.sikaku li {
    line-height: 2em;
}

.taikai {
    margin: 3em 0;
}

.taikai li {
    line-height: 2em;
}

/* ここから問合せフォーム */
textarea {
    font-size: 100%;
    width: 99%;
    max-width: 900px;
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
}

textarea#toi {
    height: 8rem;
}

input {
    font-size: 100%;
    padding: 0.2rem;
    width: 99%;
    height: 1.3rem;
    max-width: 20rem;
}

select {
    font-size: 100%;
    padding: 0.4rem;
}

/* fieldset {
    line-height: 3rem;
    padding: -2rem 1rem;
} */

input#toi-btn {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 2px solid #747474;
    color: #ccc;
    transition: 0.5s;
    background: #747474;
    font-weight: 600;
    padding: 0.8em 6em 0.8em 3em;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: fit-content;
    border-radius: 100vh;
}

input#toi-btn.doi {
    color: #aa8368;
    border: solid 2px #aa8368;
    background: #fff;
    cursor: pointer;
}

.btn-submit {
    display: inline-block;
    position: relative;
}

.btn-submit::after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 2em;
    height: 0.5em;
    border-bottom: 2px solid #aa8368;
    border-right: 2px solid #aa8368;
    transform: skew(40deg);
    right: 3em;
    top: 1.2em;
}

.btn-submit:hover::after {
    right: 1em;
}

input#subbtn {
    display: block;
    text-align: center;
    text-decoration: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: fit-content;
    height: fit-content;
    padding: 0.8em 7em 0.8em 3em;
    font-weight: bold;
    border: 2px solid #aa8368;
    border-radius: 100vh;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    color: #aa8368;
    background: #fff;
    cursor: pointer;
}

.agree {
    text-align: center;
    margin-top: 2rem;
}

input#check {
    width: 1.5rem;
    vertical-align: middle;
}
/* ここまで問合せフォーム */

/* ここからconfirm table */

table.tbl-1 {
    border-collapse: collapse;
    border-spacing: 0;
    /* table-layout: fixed; */
    width: 100%;
    max-width: 1000px;
}

table.tbl-1 th {
    text-align: left;
    font-size: 0.9em;
    background-color: #69bdb4;
}

table.tbl-1 th,
table.tbl-1 td {
    display: block;
    width: 100%;
    border: solid 1px #ccc;
    border-bottom: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

table.tbl-1 tr:last-child {
    border-bottom: solid 1px #ccc;
}
/* ここまでconfirm table */

.footrent {
    margin-top: 1em;
    padding-left: 1.1em;
    text-indent: -0.6em;
}

.gray {
    background-color: #efeded;
}

.access {
    margin-top: 3em;
    width: 23em;
    font-size: 0.8em;
}

.access-1 {
    font-weight: 650;
}

/* ここから地図の設定 */
.map {
    width: 100%;
    position: relative;
    aspect-ratio: 16/9;
    margin-top: 0.5em;
    text-decoration: initial;
    /* 不具合解消のための記述 */
}

.map iframe {
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* ここまで地図の設定 */

footer {
    margin-top: 2rem;
    padding: 0.2rem 0.5rem;
}

footer a {
    color: #000;
}

footer .cont-parent {
    line-height: 2.3;
}

footer .cont {
    display: block;
    font-size: 0.7em;
}

.insta {
    font-size: 1.5em;
}

.caption-f {
    font-weight: 600;
}

.ireko li {
    margin-left: 0.5em;
}

ul#privacy {
    font-size: 0.9em;
}

ul#privacy li {
    line-height: 1.7rem;
}

ul#privacy li ul {
    padding-left: 2rem;
}

iframe#pri {
    width: 100%;
    height: 15rem;
    background-color: #e6faedee;
    margin-top: 2rem;
}

p#copy {
    margin-top: 0;
    color: #ffffff;
    font-size: 0.7em;
    background-color: #69bdb4;
    height: 3em;
    line-height: 3;
    text-align: center;
}

/* ここからTOPボタン */
.pagetop {
    position: fixed;
    right: 10px;
    bottom: 10px;
    font-size: 1.2rem;
    line-height: 1.2rem;
    background: #fff;
    color: #737373;
    padding: 10px;
    border: solid 1px;
    border-radius: 50%;
    box-shadow: 0 2px 10px -6px rgba(0, 0, 0, .5), 0 3px 10px -4px rgba(0, 0, 0, .2);
    opacity: 0;
    visibility: hidden;
}

.pagetop.active {
    opacity: 1;
    visibility: visible;
}
/* ここまでTOPボタン */


/* タブレットで見たときは"tl"のclassが表示される */
@media only screen and (min-width : 481px) {
    .tl {
        display: block;
    }

    .sp,
    .pc {
        display: none;
    }

    .tlpc {
        display: block;
    }

    /* body {
        padding: 0 30px;
        margin: auto;
    } */

    .flower {
        background-image:url(img/flower02.png),url(img/flower03.png);
        background-repeat: no-repeat,no-repeat;
        background-position: top 30% right,bottom 25% left;
    }

    header {
        padding-left: 3em;
    }

    .cap-aftline {
        font-size: 0.8em;
        margin-top: 1.8em;
        border-top: solid 1px #69bdb4;
    }

    .capwidth-1 {
        width: calc(100% - 24em);
    }

    .capwidth-2 {
        width: calc(100% - 21em);
    }

    .flex {
        display: flex;
    }

    .flex-1 {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .flex-4 {
        display: flex;
        justify-content: center;
        margin-top: 3em;
    }

    .gazou-4 {
        margin-top: 2em;
    }

    .lesson {
        margin-left: 2em;
    }

    .cap-aft {
        font-size: 0.8em;
    }

    .sub-c {
        font-size: 0.8em;
    }

    /* .link-btn {
        margin: initial;
    } */

    .plus {
        margin-top: 3em;
        margin-bottom: 2em;
    }

    .calendar {
        margin-top: 2em;
        aspect-ratio: 8/6;
    }

    /* ここからレッスン料金表 */
    table.tbl tr {
        border-bottom: solid 1px #ddd;
    }

    table.tbl tr:nth-child(1) th:nth-child(2) {
        background-color: #8ecfd2;
    }

    table.tbl tr:nth-child(1) th:nth-child(3) {
        background-color: #f7c8c0;
    }

    table.tbl th:nth-child(1) {
        padding: 7px 10px;
        text-align: left;
        font-weight: bold;
        background-color: #dfe0e0;
        width: calc(100%/4);
    }

    .tbl tr:first-child th:first-child {
        background-color: initial;
    }

    table.tbl th:nth-child(n+2) {
        border-right: solid 1px #ddd;
        border-left: solid 1px #ddd;
    }

    table.tbl td {
        text-align: center;
        padding: 7px 0;
        border-right: solid 1px #ddd;
        border-left: solid 1px #ddd;
    }

    .tbl .head {
        display: table-row;
    }

    .tbl th,
    .tbl td {
        display: table-cell;
    }

    .tbl td::before {
        /* content: attr(data-label); */
        display: none;
    }

    th#green {
        background-color: #dfe0e0;
    }

    ul#privacy {
        list-style: decimal;
    }

    /* td#top {
        border-top: solid 1px #ddd;
    } */

    /* ここまでレッスン料金表 */

    table.tbl-1 th {
        padding: 0.2rem 0 0.2rem 1rem;
        min-width: 12rem;
    }

    table.tbl-1 td {
        padding: 0.2rem;
    }

    table.tbl-1 th,
    table.tbl-1 td {
        display: table-cell;
        text-align: left;
        width: auto;
    }

    .career {
        margin-left: 3em;
    }

    .sikaku {
        margin-left: 3em;
    }
    footer {
        padding: 0.5rem 1.5rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    footer .cont-parent {
        max-width: 50em;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    footer .cont {
        margin-left: 3em;
    }
}


/* パソコンで見たときは"pc"のclassが表示される */
@media only screen and (min-width : 960px) {
    .pc {
        display: block;
    }

    .sp,
    .tl {
        display: none;
    }

    .tlpc {
        display: block;
    }

    .sptl {
        pointer-events: none;
        text-decoration: none;
    }

    .tlsp {
        display: none;
    }

    /* body {
        padding: initial;
        padding: 10px 30px;
    } */

    header.home {
        height: calc(623px + 2.8em);
    }

    .takasa {
        height: 14em;
    }

    .headline {
        margin: initial;
        text-align: initial;
    }

    .head-2 {
        margin: initial;
    }

    .hamburger-menu {
        display: none;
    }

    ul#menu {
        display: flex;
        justify-content: flex-end;
        font-size: 0.85em;
        margin-left: 0;
        margin-right: 2em;
    }

    ul#menu li {
        margin-left: 1.5rem;
        /* width: calc(90% / 6); */
    }

    .container {
        width: 90%;
    }

    .flex-2 {
        display: flex;
	    justify-content: center;
	    align-items: center;
    }

    .flex-3 {
        display: flex;
    }

    .flex-4 {
        display: flex;
        justify-content: space-around;
        margin-top: 3em;
    }

    .green {
        margin-bottom: 2em;
    }

    .gazou {
        margin: 2em 4.5em 0 0;
        float: left;
    }

    .gazou-g {
        margin: 2em 2em 0 0;
        float: left;
    }

    .gazou-1 {
        display: block;
    }

    .gazou-3 {
        margin-top: 3em;
    }

    .gazou-5 {
        display: block;
        margin-bottom: 2em;
    }

    .left {
        margin-left: 8em;
    }

    .G-font {
        position: relative;
    }

    .G-font1 {
        position: relative;
    }

    .L-font {
        position: absolute;
        top: 0.1em;
        left: 0;
        font-family: 'Caveat', cursive;
        font-size: 5em;
        color: #aa8368;
    }

    .S-font {
        position: absolute;
        top: 0;
        left: 2.5em;
        font-family: 'Caveat', cursive;
        font-size: 5em;
        color: #aa8368;
    }

    .hidarigawa {
        flex-shrink: 0;
    }

    .migigawa {
        margin-top: 1em;
        margin-left: 5em;
    }

    #sub {
        width: calc(100% - 16em);
        margin-left: 3em;
    }

    .cap-1 {
        display: flex;
        margin-top: 3em;
    }

    .clearfix::after {
        content: "";
        display: block;
        clear: both;
    }

    .inqu {
        width: calc(100% / 3);
        height: 13em;
        /* float: left; */
    }

    .migiyohaku {
        margin-right: 5em;
    }

    a.btn--tel .number {
        font-size: 1.5em;
        padding: 0.3em 1em 0.1em 1em;
    }

    .youto {
        margin-left: 3em;
    }

    .access {
        float: left;
    }

    .map {
        margin-left: 20em;
        width: calc(100% - 20em);
    }

    .cont-parent {
        margin-right: 7em;
    }

    .plus-2 {
        margin-top: 0;
        margin-bottom: 3em;
    }

}