body{
    font-family: "Yu Mincho";
    color: #735C48;
    font-weight: bold;
}


/*=========================================================================*/
/* ･･････ヘッダー部分･･････ */
/*=========================================================================*/

/* ････････････block････････････ */

.header{
    width: 90%;
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
}

.header__logo{
    display: flex;
    line-height:60px;
}

.header__link{
    display: flex;
}

/* ････････････Element････････････ */

.header__logo-image{
    width: 60px;
}

.header__logo-title{
    font-size: 40px;
    padding: 0 10px;
    line-height:60px;
}

.header__logo-subtitle{
    font-weight: normal;
}

.header__link-item{
    width: 50px;
    margin: 5px;
}



/*=========================================================================*/
/* ･･････ナビゲーションリンク部分･･････ */
/*=========================================================================*/

/* ････････････block････････････ */

.nav__list{
    background-color: #84BF04;  /* ････････････変更････････････ */
    display: flex;
    text-align: center;
}

/* ････････････Element････････････ */

.nav__list a{
    display: block;
    text-decoration: none;
    color: white;
    font-size: 15px;
}

.nav__list a:hover {
    opacity: 0.7;
}

.nav__list:first-child{
    border-left: 0.5px solid #B5BF69;/* ････････････変更････････････ */
}

.nav__list-item{
    width: 25%;
    padding: 9px 0;
    border-right: 0.5px solid #B5BF69;/* ････････････変更････････････ */
}

.li_position{
    position: relative;
}

.nav-sublist{
    width: 100%;
    position: absolute;
    top: 40px;
    left: 0;
    z-index: 10;
    display: none;
}

.nav-sublist-item{
    background-color: #84BF04;  /* ････････････変更････････････ */
    border-bottom: 0.5px solid #B5BF69;/* ････････････変更････････････ */
    padding: 8px 0;
}

.li_position:hover .nav-sublist{
    display: block;
    z-index: 10;
}



/*=========================================================================*/
/* ･･････メインビジュアル　スライダー部分･･････ */
/*=========================================================================*/

.main-visual{
    width:100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.carousel-area{
    display: flex;
    width: 100%;
    height: 100%;
}

.carousel-area img{
    width: 100%;
    height: 400px;
    object-fit:cover;
  }

  

/*=========================================================================*/
/* ･･････パート１　いこい整骨院のおすすめ ･･････ */
/*=========================================================================*/

/* ････････････block････････････ */

.concept__wrapper{
    width: 80%;
    margin: 0 auto;
    padding: 2rem 0;
    text-align: center;
}

/* ････････････Element････････････ */

.concept__title{
    padding: 1.5rem 0 1rem 0;
}

.concept__text{
    padding: 1rem 0 1.5rem 0;
}

.concept__image{
    width: 50%;
    margin: auto;
}

.concept__list-item{
    padding: 0.3rem 0;
    font-size: 18px;
}

/* ････････････modifier････････････ */

.concept__list-item--underline{
    background:linear-gradient(transparent 70%, coral 50%);
}

.concept__textColor--coral{
    color: coral;
}



/*=========================================================================*/
/* ･･････ 施術メニュー ･･････ */
/*=========================================================================*/

/* ････････････block････････････ */

.menu{
    background-color: #F2F2F0;
}

.menu__wrapper{
    padding: 3rem 0;
    text-align: center;
}

.menu__list{
    display: flex;
    padding: 1.5rem 0;
    width: 95%;
    margin: 0 auto;
}

.menu__list-item{
    width: 20%;
    background-color: rgb(251, 249, 249);
    border: 1px solid rgb(185, 184, 184);
    border-radius: 10px;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32);
    margin: 0 0.5rem;
}


/* ････････････Element････････････ */

.menu__title{
    width: 55%;
    margin: auto;
    padding: 0.6rem 0;
    background-color: rgb(251, 249, 249);
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32);
}

.menu__text{
    padding: 1.5rem 0;
}

.menu__list-itemTitle{
    padding: 2rem 0;
}

.menu__list-itemImage{
    display: block;
    width: 75%;
    height: 170px;
    object-fit: cover;
    margin: auto;
    border-radius: 50%;
}

.menu__list-itemBtn{
    display: inline-block;
    width: 80%;
    background-color: #735C48;
    border-radius: 10px;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32);
    text-decoration: none;
    padding: 0.3rem 0;
    margin: 2.5rem 0;
    color: white;
    font-size: 13px;
    opacity: 0.8;
}

.menu__list-itemBtn:hover{
    opacity: 1.0;
}



/*=========================================================================*/
/* ･･････ おすすめポイント ･･････ */
/*=========================================================================*/

/* ････････････block････････････ */

.recommend__wrapper{
    width: 80%;
    margin: 0 auto;
    padding: 3rem 0;
    text-align: center;
}

.recommend__contents{
    display: flex;
    padding: 3.5rem 1rem;
    border-bottom:1px solid #B5BF69;
}

.recommend__contents-inner{
    width: 65%;
    margin: auto;
}

/* ････････････Element････････････ */

.recommend__title{
    width: 70%;
    margin: auto;
    padding: 0.6rem 0;
    border-bottom: 1px solid #735C48;
}

.recommend__contents-title{
    position: relative;
    background: #D9BFA9;
    color: white;
    width: 90%;
    padding: 0.3rem 0;
    margin: 0 auto;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32);
}

.recommend__contents-title:after{
    position: absolute;
    content: '';
    top: 100%;
    left: 30px;
    border: 15px solid transparent;
    border-top: 15px solid #D9BFA9;
    width: 0;
    height: 0;
}

.recommend__contents-text{
    padding: 2rem 0 0 0;
    font-size: 16px;
    text-align: left;
}

.recommend__contents-text span{
    font-size: 13px;
}


/* ････････････modifier････････････ */
.recommend__contents--color{
    flex-direction: row-reverse;
}


/*=========================================================================*/
/* ･･････ いこい整骨院の歴史 ･･････ */
/*=========================================================================*/

/* ････････････block････････････ */

.history{
    background-color: rgb(245, 244, 244);
}

.history__wrapper{
    width: 80%;
    margin: 0 auto;
    background-color: rgb(245, 244, 244);
    padding: 3rem 0;
    text-align: center;
}

.history__wrapper-inner{
    display: flex;
    padding-top: 2rem;
}

.history__text{
    padding: 1rem 2rem;
}


/* ････････････Element････････････ */

.history__title{
    width: 70%;
    margin: auto;
    padding: 0.6rem 0;
    background-color: rgb(251, 249, 249);
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32);
}

.history__text-subtitle{
    padding: 1rem 0;
}

.history__textimage{
    margin: 0 auto;
}



/*=========================================================================*/
/* ･･････ フッター ･･････ */
/*=========================================================================*/

/* ････････････block････････････ */

.footer{
    width: 100%;/* ････････････変更････････････ */
    margin: auto;/* ････････････変更････････････ */
    background-color:rgb(255, 242, 205);
    background-color: #BFAB99;/* ････････････変更････････････ */
}

.footer__wrapper{
    width: 80%;
    margin: 0 auto;
    display: flex;
    padding: 3rem 0;
    justify-content: space-between;
}

.footer__wrapper-text{
    width: 50%;
    padding: 1rem 2rem;
    background-color: white;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32);
}

.footer__wrapper-map{
    width: 45%;
    margin: 0 1rem;
}


/* ････････････Element････････････ */

.footer__wrapper-textList :first-child{
    font-size: 30px;
    padding: 15px 0;
}

.footer__wrapper-textList li{
    font-size: 15px;
    line-height: 35px;
    border-bottom: 0.5px solid rgb(82, 24, 24);
}

.footer_logo{
    display: block;/* ････････････変更････････････ */
    background-color: #84BF04;/* ････････････変更････････････ */
    padding: 0.1rem 0;/* ････････････変更････････････ */
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: normal;
    color: white;
    text-align: center;
}




