

h3{
    position: relative;
    color:#000;
    letter-spacing: 1rem;
    text-align: center;
    width: 100%;
    margin:0 0 0 5px ;

}
h3 span{
font-size: 1.5rem;



}

#sec7_1 { background: url( ../../img/sec7_bg.png) 0 0 no-repeat; background-size: 100%;}
#sec7_1 ul { width: 85%; padding: 35px 0 0 35px;}
#sec7_1 ul li { padding: 10px; border-bottom: 1px dotted #000;}
#sec7_1 ul li a:hover { text-decoration: underline;}
#sec7_1 p { text-align: right;}
#sec7_1 .btn { display: inline-block; font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif; margin:10px 8% 0 auto;}
#sec7_1 .btn:hover { text-decoration: underline;}

#top{
background: url("../common/img/bg06.png")no-repeat ;
background-size:100%;

}



#spa{
  position: relative;
}
#spa .col_01_box{
  background: #fff;
  padding-bottom:30px;

}

#spa .bg_img{
  background: url('../spa/img/s_01.jpg') no-repeat center;/* 擬似要素に背景画像 */
  background-size: cover;/* cover指定 */
  content: "";/* 画像を表示させる為に必要*/
  display: block;/*ブロックボックスで表示*/
  position: fixed;/* 擬似要素全体を固定 */
  width: 100%;/* 横幅を画面全体 */
  height: 100vh;/* 縦幅を画面全体 */
  top: 0;/* 上からの配置を0 */
  left: 0;/* 左からの配置を0 */
  z-index: -1;/*背景画像になるように重ね順を-1*/
}


#meal{
  position: relative;
  background: #fff;
}


.col01_box{
    margin: 40px auto 50px;
	}


  img.img_wide {
    width: 100%;
    height: 400px;
    object-fit: cover;/*object-fit: cover;高さを固定し横幅いっぱいに可変*/
    object-position: 100% 80%
  }
  
 /* spa */ 
  .img_tit{
    position: absolute;
    width: 400px;
    height:100px;
    margin:30px 0 0 0;
    background:rgba(255, 255, 255, 0.80);
    /*background-image: url("../common/img/sikaku.jpg");*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

.img_tit p{
font-size: 3rem;
line-height:4rem ;
  }

  @media screen and (max-width:680px) {
    .img_tit{
      position: absolute;
      width: 300px;
      height:80px;
    }
  
  .img_tit p{
  font-size: 2rem;
  line-height:2.5rem ;
    }

  }    
 /* ///spa */ 

  .plan_search{ padding:40px 0 0 0; line-height:1.2em;}
  .plan_search table{float:left; width:720px;height:160px; font-size:14px;}
  .plan_search span{font-size:11px;}
  .plan_search table , .plan_search th , .plan_search td{background: rgba(255,255,255,0.3);border:none; padding:0; margin:0; vertical-align: middle;}
  .plan_search input , .plan_search select , .plan_search table img{margin:8px 0 0 0;}
  .plan_search tr td:first-child{padding:0 0 0 20px;}
  .plan_search input[type=image]{ margin:0 0 0 0; height:100%;}
  

#access{

  background: #fff;
}  
.access{width:100%; max-width: 600px; margin: 0 auto; padding:0 10px;}
.access .caption{font-size: 2rem; font-weight: bold; margin:30px 0 20px 0; line-height: 3.5rem; padding:15px; text-align: left; border-bottom: 1px solid #000;}
.access p{line-height: 3rem; margin-bottom:20px; text-align: left;} 
.access ul{font-size: 1.8rem; line-height: 3rem; margin: 1em 0; padding-left: 40px; list-style-type: disc;}






/* faci&room*/

/* section_name */
#faci{

    padding-top: 80px;
    margin-top: -80px;
    background: #fff;
}


.sec_tit{
    position: relative;
    top:50px;
    margin-bottom: 100px;
    text-align:center;
	}

  .col2 {
    display: flex;
  }
  
  .col2 .item_box {
    width: calc(100% / 2);
 
  }
  .txt_area{
    padding:30px;
  }

  .item_tit{
font-size: 1.8rem;
letter-spacing: 0.1rem;

  }


.gradient{
width: 100%;

}

.sec_gnavi {
  width: 100%;
  max-width: 500px;
  margin:0 auto;
  padding:30px;
  font-size: 1.5rem;
}

.sec_gnavi_box {
  display: flex; /*子要素を横並びにするには、親要素に display: flex; を指定*/
/*display: inline-flex; インライン要素に使うのであれば、親要素に display: inline-flex; を指定*/
  flex-direction: row; /*子要素をどの方向に配置していくかを指定row-reverse column column-reverse*/
  flex-wrap: wrap; /*子要素が親要素の幅を超えてしまった場合、折り返して複数行に配置*/
  justify-content: space-around;/*親要素に空きスペースがあった場合、子要素を水平方向のどの位置に配置するかを指定*/
  align-items: center;/*親要素に空きスペースがあった場合、子要素を垂直方向のどの位置に配置するかを指定*/
  align-content: space-around;/*子要素が複数行に渡った場合の垂直方向の揃えを指定*/

}



/**/
.item


.item1 { order: 2; }/*order任意の順で並べ替え*/
.item2 { order: 3; }
.item3 { order: 1; }

/*親要素に余ったスペースがあった場合、指定のある子要素が他の子要素に対してどれくらい伸びるかを指定*/
/*
.item2 { flex-grow: 3; }
.item1 { flex-grow: 2; }
.item3 { flex-grow: 1; }
*/
/*flex-grow と逆で、親要素に余ったスペースがなくすべての子要素が入り切らない場合、指定のある子要素が他の子要素に対してどれくらい縮むかを指定*/
/*
.item1 { flex-shrink: 2; }
.item2 { flex-shrink: 3; }
.item3 { flex-shrink: 1; }
*/

/*子要素に対し width と同じように幅の値を指定*/
.item1 { flex-basis: auto; }
.item2 { flex-basis: 200px; }
.item3 { flex-basis: 30%; }


/*親要素に空きスペースがあった場合、子要素を垂直方向のどの位置に配置するかを指定*/
/*
.item1 {
  align-self: flex-end;
}
*/



.card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto ;
}


.card_item{
  width:50%;
}

.card-thumbnail {
  width: 100%;
}

.card-img {
    display: block;
    width: 100%;
    object-fit: cover;

}

.card-caption {

  width: 100%;
  font-size: 16px;
  line-height: 1.5;
}

.card_tit{
  font-size: 2.5rem;
  padding:30px 30px 30px 30px;
}

.card_txt{
  font-size: 1.5rem;
  padding:0px 30px 30px 30px;
  text-align: left;
}


/* 偶数番目に登場する.cardは右から左に要素が配置されるようにする */

.card:nth-child(even) {
  flex-direction: row-reverse;
}


@media screen and (max-width:480px) {
  .card {
    display:block;
  }

  .card_item{
    width:100%;
  }

  .card-img {
    display: block;
    width: 100%;
    object-fit: cover;
}
  .card_tit{
    font-size: 2rem;
    line-height: 3rem;
  }
  
}

/* faci&room*/

.shikishi{width: 100%; max-width: 950px; margin: 20px auto 0; text-align: center;}


/* youtube*/

.flex_area{
  display : flex;
  flex-direction: row;
  flex-wrap:wrap;
  justify-content: center;
  justify-content: space-around;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}
.flex_area .item{
margin:10px 1px;
}


@media screen and (max-width:480px) {
.flex_area{
  display : flex;
  flex-direction: row;
  flex-wrap:wrap;
  justify-content: center;
  justify-content: space-around
}
.flex_area .item{
 width:45%; 
margin:10px 1px;
}
}


.sns_wrapper{
  width: 100%;
  background: url("https://fukumotokan.jp/common/img/sns_bg.jpg");
  background-size: cover;
}

.sns_area{

width: 100%;
margin:0 auto;
padding: 0 0 30px;
display:flex ;

}

.sns_box{
  padding:50px 0 0;
  margin:0 auto;

}
 
.sns_area p{
  font-size: 2.5rem;
  text-align: center;
  }
 




  @media screen and (max-width: 480px) {
    .sns_area{
      display:block ;
      width: 96%;
      margin:0 2%;
      }
      .sns_box{
        text-align: center;
        width: 100%;
        margin:0 auto;

      }
  }



  
.top_osirase_wrapper{
  width: 100%;
  background: url("https://fukumotokan.jp/common/img/sns_bg.jpg");
  background-size: cover;
}

.top_osirase_area{

width: 100%;
max-width: 1300px;
margin:0 auto;
padding: 0 0 30px;
display:flex ;
align-items: flex-end;
flex-wrap: wrap;
justify-content: center;

}

.top_osirase_box{
  padding:0 10px 0;
  margin:0 auto;

}

.top_osirase_box.box01{
width: 60%;
max-width: 700px;
}
.top_osirase_box.box02{
  width: 40%;
  }
 
.top_osirase_area p{
  font-size: 2.5rem;
  text-align: center;
  }
 


  @media screen and (max-width: 480px) {
    .top_osirase_area{
      display:block ;
      width: 96%;
      margin:0 2%;
      }
    .top_osirase_box{
      text-align: center;
      width: 100%;
      margin:0 auto;

      }
    .top_osirase_box.box01{
      width: 100%;
      }
    .top_osirase_box.box02{
      width: 100%;
      }
  }
