@charset "UTF-8";
/*---------------共通-----------------*/

/*-------タグのスタイル---------*/
body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: gray;
    background-color: white;
    overflow-wrap: break-word;
    word-wrap: break-word;
    font-family: Meiryo,'ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','メイリオ',Verdana,Helvetica,sans-serif;
}

h1, h2 {
    margin: 0;
    font-family: Meiryo,'ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','メイリオ',Verdana,Helvetica,sans-serif;
}

h2 {
    font-size: 20px;
    font-family: 'Noto Sans JP',sans-serif;
    letter-spacing: 0.2em;
    line-height: 1.6em;
    color: #18530c;
    text-align: center;
    margin-bottom: 40px;
}

h2 span {
    font-size: 21px;
    font-family: 'Noto Sans JP',sans-serif;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.6em;
    color: black;
    text-align: center;
    margin-bottom: 40px;
}

h2 span {
    position: relative;
}

h2 span::before {
    content: '';
    background-color: #18530c;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    position: absolute;
    bottom: -3px;
    left: 0;
    z-index: -1;
}

h4 {
    color: #18530c;
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
}

p {
    font-size: 14px;
    line-height: 1.6em;
    margin: 0;
    margin-bottom: 0.7em;
}

a {
    text-decoration: none;
}

a:link,
a:visited,
a:active {
    color: #4aada6;
}

a:hover{
    margin: 0;
    padding: 0;
}

dl, dt, dd {
    margin: 0;
}

img {
    width: 100%;
}

/*------全体コンテナ------*/
#container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    padding-top: 16px;
}

/*------コンテンツ全体ブロック------*/
#contents {
    width: 980px;
    margin: 0 auto;
}

/*------個別コンテンツボックス------*/
.box {
    width: 100%;
    margin-bottom: 10%;
}

/*------フレックスボックスコンテナ------*/
.flex-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
}

.flex-box-C {
    display: inline-block;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
    width: 920px;
    margin-top: 59px;
}

/*------フレックスボックスアイテム3列用------*/
.flex-box-1item-2col {
    width: 25%;
    padding-bottom: 20px;
    margin: 30px 10px 20px 50px;
}

.flex-box-2item-2col {
    width: 25%;
    padding-bottom: 20px;
    margin: 16px 50px 20px 10px
}

.aaa {
    margin-top: 40px;
}

.pay-line {
    padding: 0.5em 2em;
    margin: 2em 0;
    font-weight: bold;
    color: #92D050;
    background: #FFF;
    border: solid 5px #18530c;
    border-radius: 10px;
    margin-left: 30px;
    margin-bottom: 90px;
}

.index-map {
    margin-top: 10px;
}
/*------画像用ボックス------*/

/*------コンテナブロック画面幅980未満------*/
@media only screen and ( max-width : 980px ) {
    /*------コンテンツ全体ブロック------*/
    #contents {
        width: calc(100% - 40px);
        margin: 0 auto;
    }

    /*------フレックスボックスアイテム3列用------*/
    .flex-box-item-3col {
        width: calc(100% / 3- 10px);
        padding-bottom:20px;
    }
}

/*------ヘッダーエリア------*/
header {
    display: block;
}

.header-right .tell-number {
    width: 155px;
    font-size: 16px;
    padding-left: 16px;
    margin: 0 auto 5px auto;
    background-size: 14px;
    background-position-x: 16px;
    background-position-y: 5px;
    text-align: center;
}

.header-right {
    float: right;
    text-align: center;
}

.header-right .tell-number {
    width: 155px;
    font-size: 16px;
    padding-left: 16px;
    margin: 0 auto 5px auto;
    background-size: 14px;
    background-position-x: 16px;
    background-position-y: 5px;
    text-align: center;
}

@media only screen and (max-width: 980px) {
nav ul{
    display: table;
    margin: 0 auto;
    padding: 0 ;
    width: 80%;
    text-align: center;
    }
nav li{
    display: table-cell;
    min-width: 50px;
    }
nav li.current{
    border-bottom: 3px solid #92D050;
    }
nav li:hover{
    color: #E7DA66;
    border-bottom: 3px solid #F0E475;
    }
}

.global-navi{
    display: table; /*擬似table要素にする*/
    table-layout: fixed;/*liタグ幅が均一になる*/
    text-align: center;/*センタリング*/
    width: 100%;/*メニュー幅の指定*/
    background: #dbe9cc;
}

.global-navi ul{
    display: table;
    margin: 0 auto;
    padding: 0 ;
    width: 80%;
    text-align: center;
    }
.global-navi li{
    display: table-cell;/*liタグをセルに指定*/
    vertical-align: middle;/*縦方向の中央寄せ*/
    min-width: 130px;
    }
    /* .global-navi a{
        display: block;
        width: 100%;
        text-decoration: none;
        color: #555;
        padding-bottom: 5px;
    } */
/* .global-navi li.current{
    border-bottom: 3px solid #92D050;
    }
.global-navi li:hover{
    color: #E7DA66;
    border-bottom: 3px solid #F0E475;
    } */

ul {
    margin: 0;
    padding: 0;
}
ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 20px;
    color: #4d4d4d;
}
div {
    display: block;
}

.menus-navi {
    padding: 0.7em 0;
    border-top: 2px solid #4d4d4d;
    border-bottom: 2px solid #4d4d4d;
    margin: 70px 30px 30px 10px;
}

.menus-navi {
    text-align: center;
    }
.menus-navi ul{
    margin: 0 ;
    padding: 0 ;
    }
.menus-navi li{
    list-style: none;
    display: inline-block;
    width: 10%;
    min-width: 200px;
    }
.menus-navi li:not(:last-child){
    border-right:2px solid #ddd;
    }
/* .menus-navi a{
    text-decoration: none;
    color: #333;
    } */
.menus-navi a.current{
    color: #00B0F0;
    border-bottom:2px solid #00B0F0;
    }
.menus-navi a:hover{
    color:#F7CB4D;
    border-bottom:2px solid #F7CB4D;
    }



.top {
    text-align: center;
    margin-top: 100px;
    margin-bottom: 100px;
}

.img-box-300px {
    width: 50%;
}

.right-img {
    display: block;
    float: right;
    margin: 0 0 100px 30px;
}

.left-img {
    float: left;
    margin: 0 0 100px 30px;
    margin-right: 0%;
    float: left;
    overflow: hidden;
}

.link-button-right {
    float: right;
    margin: 130px 135px 130px 185px;
}

.link-button-left {
    float: left;
    margin: 130px 0 130px 185px;
}

.grd-line {
    height: 1px;
    margin-bottom: 30px;
    background: #fff;
    background: linear-gradient(
90deg
,rgba(255,255,255,0) 0,#99999a 13%,#99999a 87%,rgba(255,255,255,0) 100%);
}

.balloon1 {
    position: relative;
    padding: 91px;
    width: 130px;
    height: 105px;
    /* line-height: 65px; */
    border-radius: 50%;
    text-align: center;
    margin: 0 0 1px 13px;
    color: #ffffff;
    letter-spacing: 0.2em;
    font-size: 13px;
    background-color: #18530c;
}

.balloon1::before {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    right: 30px;
    bottom: 24px;
    border-right: 20px solid #18530c;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    transform: rotate(227deg);
}

.balloon2 {
    position: relative;
    padding: 91px;
    width: 130px;
    height: 105px;
    /* line-height: 65px; */
    border-radius: 50%;
    text-align: center;
    margin: 0 0 60px 25px;
    color: #ffffff;
    letter-spacing: 0.2em;
    font-size: 11px;
    background-color: #18530c;
}

.balloon2::before {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: 37px;
    bottom: 26px;
    border-left: 20px solid #18530c;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    transform: rotate(20deg);
}

.balloon3 {
    position: relative;
    padding: 91px;
    width: 130px;
    height: 105px;
    /* line-height: 65px; */
    border-radius: 50%;
    text-align: center;
    margin: 0 0 1px 13px;
    color: #ffffff;
    letter-spacing: 0.2em;
    font-size: 13px;
    background-color: #18530c;
}

.balloon3::before {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    right: 30px;
    bottom: 24px;
    border-right: 20px solid #18530c;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    transform: rotate(227deg);
}

.info {
    margin-top: 55px;
}

/*---------------共通-----------------*/

h2 {
    font-size: 21px;
    font-family: 'Noto Sans JP',sans-serif;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.6em;
    color: #4187ff;
    text-align: center;
    margin-bottom: 40px;
}

.recep-time dt {
    display: block;
    float: left;
    width: calc(100% - 120px);
    margin-bottom: 1.3em;
    margin: 10px 0 10px 185px;
    padding: 8px 0 6px 0;
}

.recep-time dd {
    display: block;
    float: left;
    margin: 10px 0 10px 20px;
    margin-bottom: 1.3em;
    padding: 8px 0 6px 0;
    color: #000;
    font-size: 17px;
}

p {
    color: #000;
}

.address {
    color: #000;
}
.pay {
    margin-top: 10px;
}

.img-pay-right {
    width: 280px;
    padding-bottom: 20px;
}

.img-pay-left {
    width: 280px;
    padding-bottom: 20px;
}

style attribute {
    position: absolute;
    z-index: 0;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    padding: 0px;
    border-width: 0px;
    margin: 0px;
    cursor: url(https://goo.gl/maps/XA72rBwwEvMcML7i9), default;
    touch-action: pan-x pan-y;
}

dt {
    color: black;
}

footer {
    display: block;
}

section {
    display: block;
}
.payment {
    margin: 10px 0 10px 150px;
}

.img-logo {
    width: 60%;
    margin: 30px 30px 30px 175px;
}

.img-logo2 {
    width: 88%;
    margin: 30px 30px 30px 35px;
}

.img-logo3 {
    width: 100%;
    margin: 30px 30px 30px 25px;
}

.img-menu {
    width: 100%;
}

.center {
    text-align: center;
}

.flex-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
    width: 920px;
    margin: 0 auto;
}

.flex-box-B {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: left;
    margin-bottom: 10px;
    /* width: 920px;
    margin: 0 auto; */
}

.flex-box-D {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 10px;
    width: 620px;
    margin: 0 auto;
}
/* .flex-box-item-3col {
    width: calc(100% / 3 - 10px);
    padding-bottom: 20px;
} */
.flex-box-item-3col {
    width: 280px;
    padding-bottom: 20px;
}

.header-logo {
    margin-top: 9px;
    margin-bottom: 4px;
    width: 7%;
}


.map {
    margin-top: 30px;
}

.access-g-map {
    margin-bottom: 20px;
}
.sp-item {
    display: none;
}

#main-image {
    height: 430px;
    overflow: hidden;
    position: relative;
}

.slide-images {
    height: auto;
    min-height: 100%;
    left: 50%;
    object-fit: cover;
    object-position: top center;
    overflow: hidden;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 100%;
}
@media only screen and (max-width: 980px) {
    .center {
        text-align: center;
    }
}

.no-img {
    margin: 30px 30px 30px 265px;
}

.img-introduction {
    width: 50%;
}

#contents {
    width: 920px;
    margin: 0 auto;
}

#container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    padding-top: 8px;
}

.introduction {
    width: 100%;
}

.img2 {
    width: 40%;
}

.margin-top-10px {
    margin-top: 30px;
}

.margin-top-100px {
    margin-top: 100px;
}

.mr-D {
    margin-right: 40px;
}

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.fa-position-left {
    position: absolute;
    top: calc(50% - .5em);
    left: 1rem;
  }
  .fa-position-right {
    position: absolute;
    top: calc(50% - .5em);
    right: 1rem;
  }

.margin-left-10px {
    margin-left: 430px;
}

.margin-top-100px {
    margin-top: 100px;
}


.balloon1 p {
    color: #fff;
}

.balloon2 p {
    color: #fff;
}

.balloon3 p {
    color: #fff;
}

.link-button-left a:link,
.link-button-left a:visited,
.link-button-left a:active {
    color: #75e6c4;
}

.link-button-right a:link,
.link-button-right a:visited,
.link-button-right a:active {
    color: #75e6c4;
}

h3 {
    color: #18530c;
    font-size: 20px;
}

.img3 {
    width: 40%;
}

.black {
    color: black;
}

.name {
    display: block;
    font-size: 1.17em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    color: black;
}

.recep-time dt {
    display: block;
    float: left;
    clear: left;
    margin-right: 20px;
    width: 80px;
    font-family: 'Noto Sans JP',sans-serif;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-align: center;
    /* border-radius: 4px; */
    padding: 8px 0 8px 2px;
    border: solid 2px #18530c;
}

.link-20px:link,
.link-20px:visited,
.link-20px:active {
color: #4aada6;
font-size: 18px;
}

.fs-25px {
    font-size: 25px;
}
/* .line{
    border-top:1px solid #ff0000;
    size: 150px;
    } */

    .footer-logo {
        margin-left: auto;
        margin-top: 60px;
        width: 15%;
    }
    #footer-info {
        width: 980px;
        margin: 20px auto 20px auto;
        text-align: center;
    }

    .margin-bottom-50px {
        margin-bottom: 50px;
    }

    .margin-top-10px {
        margin-top: 10px;
    }

    .margin-top-50px {
        margin-top: 50px;
    }

    .intro-h2 {
        margin: 50px auto 0 auto;
    }

    .notes {
        font-size: 15px;
    }

    .ml-120px {
        margin-left: 120px;
    }

    .text-deco-frame {
        display: inline-block;
        border: 1px solid #c3c3c3;
        border-radius: 30px;
        padding: 2px 10px 0px 10px;
        color: #333;
        margin-bottom: 5px;
        margin-right: 5px;
    }

    .line1 {
        height: 1px;
        background: rgba(153,153,154,1);
    }

    ul.bullets-list2 li {
        position: relative;
        list-style-type: none!important;
        vertical-align: top;
        line-height: 1.6em;
        padding-left: 1em;
        margin-bottom: 0.3em;
        font-size: 14px;
        color: #000;
    }

    ul.bullets-list2 li:before {
        position: absolute;
        display: inline-block;
        vertical-align: middle;
        content: '';
        width: 8px;
        height: 2px;
        top: 0.6em;
        left: 0;
        border-radius: 2px;
        background: #93f02f;
    }

    .left-mb-1em {
        margin-left: 1em;
    }

    .price {
        font-size: 16px;
    }

    .price2 {
        font-size: 12px;
        margin-left: 4px;
    }

    .fs-17px {
        font-size: 17px;
    }

    .fs-24px {
        font-size: 24px;
    }

    .info2 {
        border-color: #808080;
    }

    .info2 {
        border: 1px solid;
        border-radius: 4px;
        padding: 22px 22px 5px 22px;
        overflow: hidden;
    }

    .left-mb-1em {
        margin-left: 1em;
    }