/* ------------------------------------------------
  base
------------------------------------------------- */
html,
body {
    overflow-x: hidden;
}

body {
    line-height: 1.9;
    font-family: "Playfair_Display", "Shippori_Mincho_B1", serif;
    font-weight: 400;
    letter-spacing: 0.01em;
    font-size: 17px;
}

body.is-fixed {
    overflow: hidden;
}

@media screen and (max-width:480px) {
    body {
        font-size: 17px;
    }
}

.br__pc {
    display: none;
}

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

@media screen and (min-width:960px) {
    .br__pc {
        display: block;
    }

    .br__sp {
        display: none;
    }
}

@font-face {
    font-family: 'Shippori_Mincho_B1';
    src: url(Shippori_Mincho_B1/ShipporiMinchoB1-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'Shippori_Mincho_B1_Medium';
    src: url(Shippori_Mincho_B1/ShipporiMinchoB1-Medium.ttf) format('truetype');
}

.small {
    font-size: 14px;
    display: inline-block;
    line-height: 1.6;
}

.big {
    font-size: 30px;
}

.bold {
    font-family: "Playfair_Display", "Shippori_Mincho_B1_Medium", serif;
}

.textGradient {
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.5) 40%, rgba(255, 255, 255, 0.1) 80%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ------------------------------------------------
  fadeIn animation
------------------------------------------------- */
.load-fade {
    opacity: 0;
    visibility: hidden;
    transition: all .7s;
}

.load-fade.is-show {
    opacity: 1;
    visibility: visible;
}

.scroll-up {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: all 2s;
}

.scroll-up.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

@media screen and (min-width:768px) {
    .small {
        font-size: 16px;
    }

    .big {
        font-size: 40px;
    }
}

/* -------------------------------------------------
  container
---------------------------------------------------- */
.container {
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

@media screen and (min-width:768px) {
    .container {
        max-width: 750px;
    }
}

@media screen and (min-width:960px) {
    .container {
        max-width: 1080px;
    }
}

/* ------------------------------------------------
  section
  ------------------------------------------------- */
.section {
    padding-top: 50px;
    padding-bottom: 80px;
    position: relative;
    background: #f8f6f0;
    color: #381e20;
}

.section._primary {
    background: #fff;
}

.section._secondary {
    background: #ece5dc;
}

.section._kouso {
    background-image: url('../img/bg_kouso_sp.png');
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    overflow: hidden;
    color: #fff;
    padding-bottom: 90px;
}

.section._pilates {
    background-image: url('../img/bg_pilates_sp.png');
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right center;
    overflow: hidden;
    color: #fff;
    padding-bottom: 90px;
}

@media screen and (min-width: 768px) {
    .section {
        padding-top: 80px;
        padding-bottom: 100px;
    }
}

@media screen and (min-width: 960px) {
    .section._kouso {
        background-image: url('../img/bg_kouso_pc.png');
    }

    .section.section._pilates {
        background-image: url('../img/bg_pilates_pc.png');
    }
}


/* ------------------------------------------------
  link
  ------------------------------------------------- */
.link {
    text-decoration: underline;
}

/*------------------------------------------------- 
  header
------------------------------------------------ */
.header {
    display: none;
}

@media screen and (min-width: 960px) {
    .header {
        position: fixed;
        display: flex;
        justify-content: space-between;
        align-items: center;
        top: 0;
        left: 0;
        width: 100%;
        height: 90px;
        z-index: 10;
        background: #ebdcc8;
    }

    .logo {
        margin-left: 15px;
        margin-top: 5px;
    }

    .logo__wrapper {
        width: 180px;
        height: auto;
    }

    .logo__wrapper img {
        width: 100%;
        flex-shrink: 1;
    }
}

/*--------------------------------------------------
  navSP
---------------------------------------------------  */
#navSP {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
}

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

.navSP__item {
    display: inline-block;
    width: 100%;
    padding: 10px 5px;
    text-align: center;
    background: #ebdcc8;
    color: #55353b;
    font-size: 15px;
}

.navSP__item._reservasion {
    background: #55353b;
    color: #fff;
}

.navSP__item i {
    font-size: 25px;
}

.iconname {
    display: block;
}

#navPC {
    display: none;
}

.menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 85vh;
    background-color: #f8f6f0;
    color: #381e20;
    z-index: 5;
    padding: 15px;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.menu.open {
    transform: translateY(0);
}

.closebtn {
    position: absolute;
    top: 0;
    right: 20px;
    font-size: 25px;
}

.menu ul {
    display: block;
    margin-top: 40px;
}

.menu li {
    display: block;
    padding: 10px;
    border-bottom: #7c7c7c 1px solid;
    font-size: 16px;
}

.menu__instaArea {
    padding-left: 10px;
    padding-top: 20px;
}

.menu__instaArea i {
    font-size: 45px;
}

/*--------------------------------------------------
  navPC
---------------------------------------------------  */
#navPC {
    position: fixed;
    right: 0;
    width: 100%;
}

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

.navPC__item {
    display: inline-block;
    width: 8.5%;
    height: 90px;
    padding: 17px 5px 0 5px;
    text-align: center;
    background: #ebdcc8;
    color: #55353b;
    font-size: 15px;
}

.navPC__item._about {
    padding: 15px 5px 0 5px;
}

.navPC__item._reservasion {
    background: #55353b;
    color: #fff;
}

.navPC__icon {
    width: 32px;
    margin: 0 auto;
}

#navPC i {
    font-size: 25px;
}

.iconname {
    display: block;
}


@media screen and (min-width: 960px) {
    #navSP {
        display: none;
    }

    #navPC {
        display: block;
    }
}

/* ---------------------------------------------------
  heading
---------------------------------------------------- */
.headingL {
    text-align: center;
    margin-top: 30px;
    font-size: 30px;
    font-family: "Playfair_Display", "Shippori_Mincho_B1_Medium", serif;
    letter-spacing: 0.1em;
}

.headingL._top {
    margin-top: 60px;
}

.headingL._primary {
    position: relative;
    margin-top: 0px;
    margin-bottom: 50px;
}

.headingL._primary::before {
    content: '';
    position: absolute;
    background: #381e20;
    width: 100px;
    height: 1px;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.headingL._secondary {
    font-size: 25px;
}

.headingL._bg {
    border-bottom: 1px solid #fff;
    margin-bottom: 30px;
}

.headingM {
    font-family: "Playfair_Display", "Shippori_Mincho_B1_Medium", serif;
    font-size: 19px;
    margin-top: 30px;
    margin-bottom: -10px;
    margin-left: 13px;
    position: relative;
}

.headingM::before {
    content: '';
    display: inline-block;
    position: absolute;
    background-color: #381e20;
    width: 4px;
    height: 30px;
    top: 5px;
    left: -13px;
    margin-right: 5px;
}

.headingM:first-of-type {
    margin-top: 50px;
}

@media screen and (min-width: 768px) {
    .headingL {
        margin-top: 50px;
        font-size: 40px;
    }

    .headingL._top {
        margin-top: 90px;
    }

    .headingL._primary {
        margin-bottom: 60px;
    }

    .headingL._secondary {
        font-size: 35px;
        margin-top: 90px;
    }

    .headingL._bg {
        margin: 20px auto 50px;
        max-width: 800px;
    }
}

/* -----------------------------------------
  headingImg
--------------------------------------------- */

.headingImg {
    background-image: url("../img/bg_header.png");
    width: 100%;
    height: 15vh;
    background-size: cover;
    background-repeat: no-repeat;
}

@media screen and (min-width: 960px) {
    .headingImg {
        height: 40vh;
    }
}

.headingImg.headingImg--kouso {
    background-image: url("../img/bg_kouso.jpg");
}

.headingImg.headingImg--pilates {
    background-image: url("../img/bg_pilates.jpg");
}


/* -----------------------------------------
  breadcrumb
--------------------------------------------- */
.breadcrumb {
    margin: 0;
    padding: 0 20px;
    list-style: none;
    background: #f8f6f0;
    color: #55353b;
    font-size: 15px;
}

.breadcrumb li {
    display: inline;
    /*横に並ぶように*/
    list-style: none;
}

.breadcrumb li:after {
    /* >を表示*/
    content: '>';
    padding: 0 0.2em;
    color: #555;
}

.breadcrumb li:last-child:after {
    content: '';
}

.breadcrumb li a {
    text-decoration: none;
}

.breadcrumb li a:hover {
    text-decoration: underline;
}


/* -----------------------------------------
  imgArea
--------------------------------------------- */
.imageArea img {
    width: 100%;
}

.imgArea {
    margin-top: 30px;
}



/* -----------------------------------------
  pageIntro
--------------------------------------------- */
.pageIntro__wrapper {
    display: flex;
    flex-direction: column;
}

.pageIntro__wrapper._mirror {
    flex-direction: column-reverse;
}

.pageIntro__catch {
    font-size: 22px;
    margin-top: 15px;
    letter-spacing: 0.05em;
    text-align: center;
}

.pageIntro__catch._middle {
    margin-top: 50px;
}

.pageIntro__catch._table {
    margin-top: 30px;
}

.pageIntro__txt {
    margin-top: 30px;
}

.pageIntro__txt._border {
    border: #7c7c7c 1px solid;
    padding: 12px 12px 18px 12px;
    border-radius: 5px;
    margin-top: 20px;
}

@media screen and (min-width: 768px) {
    .pageIntro__catch {
        font-size: 34px;
        letter-spacing: 0.07em;
    }

    .pageIntro__catch._middle {
        margin-top: 100px;
    }
}

@media screen and (min-width: 960px) {
    .pageIntro__wrapper {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-top: 20px;
    }

    .pageIntro__wrapper._mirror {
        flex-direction: row;
    }

    .pageIntro__wrapper._half {
        align-items: flex-start;
    }

    .pageIntro__wrapper .pageIntro__txt {
        width: 55%;
        margin-right: 50px;
    }

    .pageIntro__wrapper .imgArea {
        width: 45%;
    }

    .pageIntro__wrapper._mirror .pageIntro__txt {
        margin-right: 0;
        margin-left: 50px;
    }

    .pageIntro__wrapper._half .pageIntro__inner {
        width: calc((100% - 50px) / 2);
    }

    .pageIntro__wrapper._half .pageIntro__txt {
        width: 100%;
    }

    .pageIntro__inner .pageIntro__catch {
        margin-top: 0;
    }

    .pageIntro__txt {
        font-size: 18px;
        max-width: 800px;
        margin: 30px auto;
    }
}


/* ----------------------------------------
  button
------------------------------------------- */
.centerBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 30px;
    position: relative;
}

.centerBtn .btn+.btn {
    margin-top: 15px;
}

.centerBtn._bottom {
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    padding: 0.4em;
    width: 100%;
    max-width: 370px;
    transition: .4s;
    cursor: pointer;
}

/* default */
.btn--default {
    position: relative;
    background: transparent;
    border: 1px #381e20 solid;
    color: #381e20;
    font-size: 18px;
    letter-spacing: 0.03em;
}

.btn--default::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 27px;
    width: 10px;
    height: 10px;
    margin: auto;
    border-top: 1.5px solid #381e20;
    border-right: 1.5px solid #381e20;
    transform: rotate(45deg);
    box-sizing: border-box;
}

/* primary */
.btn--primary {
    position: relative;
    border: 1px #fff solid;
    background: transparent;
    color: #fff;
    font-size: 18px;
}

.btn--primary::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 27px;
    width: 10px;
    height: 10px;
    margin: auto;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    transform: rotate(45deg);
    box-sizing: border-box;
}

@media screen and (min-width:768px) {
    .btn {
        max-width: 400px;
    }

    .btn--default,
    .btn--primary {
        font-size: 20px;
    }

    .centerBtn {
        flex-direction: row;
        margin-top: 50px;
    }

    .centerBtn .btn+.btn {
        margin-top: 0;
        margin-left: 20px;
    }
}

/* img */
img {
    width: 100%;
}

/* ----------------------------------------------
  table
----------------------------------------------- */
.table {
    margin-top: 60px;
    width: 100%;
    table-layout: fixed;
    margin-bottom: 30px;
}

tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #7c7c7c;
}

.table tr:first-child {
    padding-top: 0;
}

th {
    font-weight: normal;
    vertical-align: middle;
    width: 25%;
}

td {
    display: block;
    width: 75%;
}

.table__txt {
    font-size: 18px;
    margin-top: 50px;
    margin-bottom: -30px;
}

.table+.table__txt {
    margin-top: 100px;
}

.table__list {
    margin-top: 15px;
    margin-bottom: 15px;
}

.table__list._first {
    margin-top: 0;
}

.table__item {
    display: flex;
}

.table__item+.table__item {
    margin-top: 5px;
}

.number+.text {
    margin-left: 5px;
}

/* for long th */
@media screen and (min-width:768px) {
    th {
        width: 35%;
    }

    td {
        width: 65%;
    }
}

.table__link {
    text-decoration: underline;
}

.table__link i {
    margin-left: -7px;
}

.table__link:hover {
    color: #7c7c7c;
}

@media screen and (max-width: 480px) {
    .table {
        margin-top: 30px;
    }

    .table+.table__txt {
        margin-top: 50px;
    }

    tr {
        display: block;
    }

    th+td {
        margin-top: 10px;
    }

    td {
        width: 100%;
    }

    .table__txt {
        font-size: 15px;
        margin-top: 30px;
        margin-bottom: -15px;
    }
}

/* for plan */
.table__inner {
    display: flex;
    flex-direction: column;
}

.tableTtl {
    font-family: "Playfair_Display", "Shippori_Mincho_B1_Medium", serif;
    font-size: 19px;
    margin-top: 30px;
    margin-bottom: -10px;
    margin-left: 13px;
    position: relative;
}

.tableTtl::before {
    content: '';
    display: inline-block;
    position: absolute;
    background-color: #381e20;
    width: 4px;
    height: 30px;
    top: 5px;
    left: -13px;
    margin-right: 5px;
}

.plan__markUp {
    display: inline-block;
    position: relative;

    height: 40px;
    line-height: 40px;
    text-align: center;
    padding: 0 25px;
    font-size: 15px;
    background: #573f42;
    color: #FFF;
    box-sizing: border-box;
    border-radius: 40px;

    margin-bottom: 10px;
    font-family: "Playfair_Display", "Shippori_Mincho_B1_Medium", serif
}

.plan__trTtl .plan__th {
    width: 100%;
}

.plan__table {
    margin-top: 30px;
    width: 100%;
    table-layout: fixed;
    margin-bottom: 30px;
}

.plan__table._single {
    max-width: 400px;
}

.plan__table._single .plan__td {
    padding-right: 10px;
}

.plan__table._single .plan__tr:last-child {
    border-bottom: none;
}

.plan__tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #7c7c7c;
    background: #fff;
}

.plan__trTtl {
    background: #ebdcc8;
    padding: 5px 0 5px 0;
    border-bottom: none;
}

.plan__name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #7c7c7c;
    background-color: #ebdcc8;
}

.plan__th {
    font-weight: normal;
    vertical-align: middle;
    width: 25%;
    padding-left: 10px;
    line-height: 1.6;
}

.plan__td {
    display: block;
    width: 75%;
    line-height: 1.4;
}

/* tab */
.tab-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0;
}

.tab-wrap:after {
    content: '';
    width: 100%;
    height: 3px;
    background: #573f42;
    display: block;
    order: -1;
}

.tab-label {
    color: #fff;
    background: #c3bfba;
    white-space: nowrap;
    text-align: center;
    padding: 10px .5em;
    order: -1;
    position: relative;
    cursor: pointer;
    border-radius: 3px 3px 0 0;
    flex: 1;
}

.tab-label:not(:last-of-type) {
    margin-right: 5px;
}

.tab-content {
    width: 100%;
    height: 0;
    overflow: hidden;
    opacity: 0;
    background: #fcfbf8;
    border-radius: 0 0 5px 5px;
}

/* アクティブなタブ */
.tab-switch:checked+.tab-label {
    background: #573f42;
    font-family: "Playfair_Display", "Shippori_Mincho_B1_Medium", serif;
    font-weight: 400;
}

.tab-switch:checked+.tab-label+.tab-content {
    height: auto;
    overflow: auto;
    padding: 15px 15px 50px 15px;
    opacity: 1;
    transition: 1.2s opacity;
    box-shadow: 0 0 3px rgba(0, 0, 0, .1);
}

/* ラジオボタン非表示 */
.tab-switch {
    display: none;
}

/* card */
.plan__list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 30px;
}

.plan__card {
    width: 100%;
    background: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, .1);
    border-radius: 5px;
}

.plan__card+.plan__card {
    margin-top: 30px;
}

.plan__card .plan__table {
    margin: 10px 0 20px 0;
}

.plan__card._recommend {
    border: 1px solid #573f42;
}

.plan__label {
    background: #ebdcc8;
    padding: 20px 10px 15px 10px;
    border-radius: 5px 5px 0 0;
}

.plan__label._recommend {
    background: #573f42;
    color: #fff;
}

.plan__body {
    padding: 20px 10px 20px 10px;
}

.plan__ttl {
    font-family: "Playfair_Display", "Shippori_Mincho_B1_Medium", serif;
    text-align: center;
    font-size: 20px;
}

.plan__catch {
    font-size: 15px;
    text-align: center;
    flex-grow: 1;
}

.plan__price {
    text-align: center;
    font-size: 22px;
    font-family: "Playfair_Display", "Shippori_Mincho_B1_Medium", serif;
}

.plan__td {
    font-size: 22px;
    font-family: "Playfair_Display", "Shippori_Mincho_B1_Medium", serif;
    text-align: right;
}

.plan__list._single .plan__td {
    width: 55%;
}

.plan__list._single .plan__th {
    width: 45%;
}

.plan__card .small {
    margin-left: 3px;
}

@media screen and (min-width: 768px) {
    .plan__list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .plan__card {
        width: calc((100% - 30px) / 2);
    }

    .plan__list._single .plan__card {
        width: calc((100% - 30px) / 2);
    }

    .plan__table._single .plan__th {
        width: 50%;
    }

    .plan__table._single .plan__td {
        width: 50%;
    }

    .plan__card .plan__th {
        width: 50%;
    }

    .plan__card .plan__td {
        width: 50%;
        text-align: right;
        padding-right: 10px;
    }

    .plan__card._recommend {
        margin-top: 0;
    }
}

@media screen and (min-width: 960px) {
    .plan__markUp {
        height: 50px;
        line-height: 50px;
        text-align: center;
        padding: 0 30px;
        font-size: 18px;
        background: #573f42;
        color: #FFF;
        box-sizing: border-box;
        border-radius: 30px;
    }

    .tableTtl._middle {
        margin-bottom: 40px;
    }

    .table__wrapper {
        max-width: 800px;
        margin: 0 auto;
    }

    .table__inner {
        flex-direction: row;
        justify-content: space-between;
    }

    .table__inner .plan__table._single {
        width: calc((100% - 30px) / 2);
    }

    .plan__list {
        flex-direction: row;
    }

    .plan__list._single {
        max-width: 800px;
    }

    .plan__card {
        width: calc((100% - 30px) / 4);
    }

    .plan__list._single .plan__card {
        width: calc((100% - 30px) / 3);
    }

    .plan__card+.plan__card {
        margin-top: 0;
    }

    .plan__card:nth-child(4) {
        margin-top: 30px;
    }
}


@media screen and (max-width: 480px) {
    .plan__table {
        margin-top: 30px;
    }

    .plan__th {
        width: 35%;
    }

    .plan__td {
        width: 65%;
    }

    .plan__th+.plan__td {
        margin-top: 0;
    }

    .plan__table+.plan__table {
        margin-top: 0;
    }
}

/* -----------------------------------------
  footer
------------------------------------------ */
.footer {
    padding: 30px 10px 90px 10px;
    text-align: center;
    background: #573f42;
    color: #fff;
    font-weight: 300;
}

.footer._short {
    padding: 30px 10px;
}

.footer__logo {
    width: 170px;
    height: auto;
    margin: 0 auto;
}

.footer__wrapper {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.footer__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-left: 10%;
}

.footer__item {
    width: calc((100% - 10px) / 2);
    text-align: left;
    font-size: 16px;
    padding: 1% 0 1% 0;
}

.footer__instaArea {
    display: flex;
    justify-content: flex-start;
    margin: 50px 10% 0 10%;
    border-top: 1px solid #fff;
}

.instaBtn {
    display: inline-block;
    font-size: 40px;
    margin-top: 5px;
}

.footer__txt {
    font-size: 16px;
}

.centerBtn._footer {
    margin-top: 10px;
}

.footer__policyList {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 10px;
    margin-left: 10%;
    flex-direction: column;
}

.footer__policyItem {
    padding: 1% 0 1% 0;
    text-align: left;
    font-size: 14px;
}

.footer__copyright {
    margin-top: 30px;
    font-size: 14px;
}



@media screen and (min-width:768px) {
    .footer._short {
        padding: 30px 10px;
    }

    .footer__logo {
        margin: 30px auto;
        width: 30%;
    }

    .footer__wrapper {
        flex-direction: row;
    }

    .footer__item {
        font-size: 18px;
    }

    .footer__list {
        width: 40%;
        margin-top: 0;
        margin-left: 10%;
    }

    .footer__inner {
        width: 30%;
        border-left: 1px solid #fff;
    }

    .footer__instaArea {
        margin-top: 0;
        border-top: none;
    }

    .footer__instaBtn {
        margin-top: 0;
    }

    .footer__policyList {
        margin-top: 30px;
    }
}

@media screen and (min-width:960px) {
    .footer {
        padding: 30px 10px 50px 10px;
    }
}

#reservation {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: fixed;
    top: 100px;
    right: 0px;
    width: 20%;
    /*デフォルトで非表示にする*/
    opacity: 0;
    visibility: hidden;
    transition: .7s;
}

/*このクラスが付与されると表示する*/
#reservation.active {
    opacity: 1;
    visibility: visible;
}

#reservation a {
    z-index: 999;
    box-shadow: 1px 3px 5px rgba(155, 155, 155, .6);
    background: #55353b;
    padding: 0;
    border-radius: 3px 0 0 3px;
}

.lineImg {
    padding: 25%;
}

#reservation p {
    margin-top: -5px;
    margin-bottom: 20%;
    font-size: 19px;
    line-height: 1.3;
    letter-spacing: 0.1em;
    color: #fdfbf7;
}

@media screen and (min-width: 768px) {
    #reservation a {
        border-radius: 10px 0 0 10px;
    }

    #reservation p {
        margin-top: -5px;
        margin-bottom: 20%;
        font-size: 30px;
        line-height: 1.3;
        letter-spacing: 0.1em;
        color: #fdfbf7;
    }
}

@media screen and (min-width: 960px) {
    #reservation {
    top: 200px;
    right: 0px;
    width: 100px;
    }

    #reservation p {
        font-size: 25px;
    }
}

/* -----------------------------------------
  mainVisual
------------------------------------------ */
.mainVisual__wrapper img {
    width: 100%;
}

.mainVisual__wrapper._pc {
    display: none;
}

@media screen and (min-width:960px) {
    .mainVisual__wrapper._sp {
        display: none;
    }

    .mainVisual__wrapper._pc {
        display: block;
    }
}

.mainVisual__wrapper._sp {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0 auto;
    aspect-ratio: 9 / 16;
}

@media screen and (min-width: 767px) {
    .mainVisual__wrapper._pc {
        position: relative;
        width: 100%;
        height: auto;
        overflow: hidden;
        margin: 0 auto;
        margin-top: 70px;
        aspect-ratio: 16 / 9;
    }
}

.img-01,
.img-02,
.img-03 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

.mainVisual__wrapper._sp .img-01 {
    background-image: url('../img/openBanner.png');
}

.mainVisual__wrapper._sp .img-02 {
    background-image: url('../img/openBanner.png');
    animation: slide-animation-02 12s infinite;
}

.mainVisual__wrapper._sp .img-03 {
    background-image: url('../img/smp1_sp.jpg');
    animation: slide-animation-03 12s infinite;
}

.mainVisual__wrapper._pc .img-01 {
    background-image: url('../img/openBanner_pc.png');
}

.mainVisual__wrapper._pc .img-02 {
    background-image: url('../img/smp2_pc.jpg');
    animation: slide-animation-02 12s infinite;
}

.mainVisual__wrapper._pc .img-03 {
    background-image: url('../img/smp1_pc.jpg');
    animation: slide-animation-03 12s infinite;
}

@keyframes slide-animation-01 {
    0% {
        opacity: 1;
        transform: scale(1.0);
    }

    30% {
        opacity: 1;
    }

    40% {
        opacity: 0;
        transform: scale(1.15);
    }

    90% {
        opacity: 0
    }

    100% {
        opacity: 1;
        transform: scale(1.0);
    }
}

@keyframes slide-animation-02 {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 0;
        transform: scale(1.1);
    }

    40% {
        opacity: 1;
    }

    60% {
        opacity: 1;
    }

    70% {
        opacity: 0;
        transform: scale(1.0);
    }

    100% {
        opacity: 0;
    }
}

@keyframes slide-animation-03 {
    0% {
        opacity: 0;
    }

    60% {
        opacity: 0;
        transform: scale(1.0);
    }

    70% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}


/* -----------------------------------------
  about
------------------------------------------ */
@media screen and (min-width:768px) {
    .trial__wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
}


/* -----------------------------------------
  about
------------------------------------------ */
.about__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about__img {
    border: #5a656b 1px solid;
    border-radius: 7px;
}

.about__img img {
    border-radius: 7px;
}

.about__inner+.about__img {
    margin-left: 70px;
}

.about__mark {
    width: 200px;
    margin: 0 auto;
}

.about__logo {
    width: 250px;
    height: auto;
    margin: 20px auto;
}

.about__logo._top {
    margin-top: 60px;
    width: 200px;
}

.about__ttl {
    margin-top: 30px;
    text-align: center;
    font-size: 34px;
    letter-spacing: 0.07em;
}

.about__ttl._top {
    margin-top: 100px;
}

.about__txt {
    max-width: 800px;
    margin: 30px auto 15px;
}

.about__thumb {
    width: 40%;
    border-radius: 10px;
    border: 1px solid #5a656b;
}

.about__thumb img {
    border-radius: 10px;
}

.about__box {
    width: 60%;
}

.about__box+.about__thumb {
    margin-left: 50px;
}

.about__imageArea {
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
}

.about__imageArea img {
    border-radius: 10px;
    object-fit: cover;
}

.about__body {
    color: #000;
    border: 1px solid #5a656b;
    border-radius: 10px;
    padding: 15px 20px;
    margin: 10px auto;
    max-width: 750px;
}

.about__body._primary {
    background: #fdfbf7;
}

.about__comment {
    display: inline-block;
    font-size: 18px;
}

.about__ttl._primary {
    margin-top: 60px;
    font-size: 30px;
}

.about__txt._primary {
    max-width: 750px;
    margin: 30px auto;
}

.about__ttl._point {
    margin-top: 100px;
    font-size: 30px;
}

.about__imgWrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 90px;
}

.about__imageArea {
    border: 1px solid #7c7c7c;
    border-radius: 10px;
    width: calc((100% - 15px) / 2);
}

/* hanna */
.hanna__wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 50px;
}

.hanna__inner {
    width: calc((100% - 50px) / 2);
}

.hanna__txt {
    margin-top: 25px;
    margin-bottom: -15px;
}

@media screen and (max-width:960px) {
    .about__wrapper {
        flex-direction: column;
        margin-left: 0;
    }

    .about__wrapper._top {
        margin-top: 0;
    }

    .about__box {
        width: 100%;
    }

    .about__thumb {
        width: 100%;
        max-width: 480px;
    }

    .about__box+.about__thumb {
        margin-left: 0;
        margin-top: 30px;
    }

    .about__ttl._primary {
        margin-top: 30px;
        font-size: 22px;
    }

    .about__comment {
        display: inline-block;
        font-size: 12px;
    }

    .about__ttl._point {
        margin-top: 60px;
        font-size: 20px;
    }

}

@media screen and (max-width:767px) {
    .about__ttl {
        font-size: 24px;
    }

    .about__ttl._primary {
        font-size: 20px;
    }

    .about__ttl._top {
        margin-top: 60px;
    }

    .about__mark,
    .about__logo {
        width: 200px;
    }

    .about__logo._top {
        margin-top: 30px;
        width: 130px;
    }

    .about__body {
        color: #000;
        border: 1px solid #5a656b;
        border-radius: 10px;
        padding: 10px;
        margin-top: 10px;
    }

    .about__imgWrapper {
        flex-direction: column;
        margin-left: 0;
        margin-top: 60px;
    }

    .about__imageArea {
        width: 100%;
    }

    .about__imageArea._primary {
        display: none;
    }

    .hanna__wrapper {
        flex-direction: column;
    }

    .hanna__inner {
        width: 100%;
    }

    .hanna__inner+.hanna__inner {
        margin-top: 30px;
    }

}

/* -----------------------------------------
  information
------------------------------------------ */
.information__ttl {
    font-size: 22px;
    margin-top: 15px;
    letter-spacing: 0.05em;
    text-align: center;
    font-family: "Playfair_Display", "Shippori_Mincho_B1_Medium", serif;
}

.information__list {
    margin-top: 30px;
    border-top: 1px solid #7c7c7c;
}

.information__item {
    display: flex;
    padding: 15px 0 15px 5px;
    border-bottom: 1px solid #7c7c7c;
    flex-direction: column;
    font-size: 16px;
}

.information__link {
    text-decoration: underline;
}


.date {
    margin-right: 20px;
}

@media screen and (min-width: 768px) {
    .information__ttl {
        font-size: 34px;
        letter-spacing: 0.07em;
    }

    .information__list {
        max-width: 800px;
        margin: 30px auto 0;
    }

    .information__item {
        flex-direction: row;
        font-size: 17px;
        padding: 20px 0 20px 5px;
    }
}



/* -----------------------------------------
  faq
------------------------------------------ */
.faq__list {
    margin-top: 30px;
}

.faq__item+.faq__item {
    margin-top: 20px;
}

.faq__button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #f7d9d9;
    font-weight: 500;
    width: 100%;
    padding: 7px 10px;
    border: none;
    border-radius: 7px;
    transition: all .5s ease;
}

.faq__button.close {
    border-radius: 7px 7px 0 0;
    background: #e7b5b5;
    color: #fff;
}

.faq__button.close i {
    transform: rotate(180deg);
}

.question {
    display: inline-block;
    font-style: oblique;
    font-size: 18px;
    margin-right: 7px;
}

.box {
    display: none;
    background: #fff3f3;
    padding: 20px 20px 30px 20px;
    border-radius: 0 0 7px 7px;
}

@media screen and (min-width: 768px) {
    .faq__question {
        padding: 15px 25px;
    }

    .faq__button {
        padding: 7px 20px;
    }

    .box {
        padding: 20px 30px 30px 30px;
    }
}

/* -----------------------------------------
  inquiry
------------------------------------------ */
.inquiry__txt {
    margin-top: 30px;
    margin-bottom: -40px;
    text-align: center;
}

.inquiry__txt._long {
    text-align: left;
    font-size: 16px;
    letter-spacing: 0.05em;
    color: #000;
}

.imageArea {
    margin-top: 100px;
    border: #5a656b 1px solid;
    border-radius: 7px;
}

.imageArea img {
    background: #fff3f3;
    border-radius: 7px;
}

@media screen and (min-width: 768px) {
    .inquiry__txt {
        margin-top: 50px;
    }

    .inquiry__txt._long {
        text-align: center;
        font-size: 24px;
        letter-spacing: 0.07em;
    }

    .imageArea {
        display: none;
    }
}



/* -----------------------------------------
  access
------------------------------------------ */
.access__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.access__map {
    width: 100%;
    position: relative;
    padding-top: 56.25%;
    margin-top: 30px;
}

.access__map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.access__ttl {
    font-size: 16px;
    margin-top: 15px;
}

.access__bus {
    display: flex;
}

.access__linkTxt {
    display: inline-block;
    color: #000;
}

.access__catch {
    font-size: 18px;
    text-align: center;
    margin-top: 50px;
}

.access__catch+.access__wrapper {
    margin-top: 20px;
}

.access__inner {
    text-align: left;
}

.access__inner+.access__img {
    margin-top: 20px;
}

.access__listItem {
    display: flex;
}

.access__listItem+.access__linkList {
    margin-top: 10px;
}

.access__linkList {
    margin-top: 15px;
}

.access__item+.access__item {
    margin-top: 10px;
}

.access__item,
.access__routeTtl {
    padding: 5px;
    background: #f7d9d9;
}

.access__item._blue,
.access__routeTtl._blue {
    background: #d5e9f0;
}

.access__item i,
.access__routeTtl i {
    color: #fff;
    margin-right: 7px;
}

.access__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

@media screen and (min-width: 768px) {
    .access {
        padding-bottom: 30px;
    }

    .access__wrapper {
        flex-direction: row;
    }

    .access__map {
        padding-top: 35%;
        width: 50%;
    }

    .access__inner {
        width: 50%;
    }

    .access__ttl {
        font-size: 18px;
    }

    .access__map+.access__inner {
        margin-left: 50px;
    }

    .access__txt {
        margin-top: 10px;
    }

    .access__img {
        width: 50%;
    }

    .access__inner+.access__img {
        margin-left: 30px;
    }

    .access__linkList {
        display: none;
    }

    .access__catch {
        font-size: 28px;
        margin-top: 100px;
    }
}


/* modal */

.modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    margin: 55% auto;
    width: 80%;
    position: relative;
}

.modal-content p br {
    display: none;
}

.modal-content .btn {
    font-size: 19px;
}

.modal-content .centerBtn {
    margin-top: 30px;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .modal-content {
        margin: 20vh auto;
        width: 60%;
    }
}

@media screen and (min-width: 960px) {
    .modal-content {
        margin: 10vh auto;
        width: 35%;
    }
}

.close-button {
    color: #fff;
    float: right;
    font-size: 30px;
    font-weight: bold;
    margin-top: -20px;
    position: absolute;
    top: 10px;
    right: 10px;
}

.close-button:hover,
.close-button:focus {
    color: #7c7c7c;
    text-decoration: none;
    cursor: pointer;
}