/*======================================
-----レイアウトの骨組みのみここに記載-----
======================================*/

.mamapan{
    overflow:hidden;
}

/*======================================
-------------フッターifarme-------------
======================================*/
/*.iframeWrap5 {
    padding-bottom: 52%;
}*/
@media screen and (max-width: 1024px) {
    .iframeWrap5 {
        padding-bottom: 100%;
    }   
}


/* ======================================*/
/* イントロ部 */
/* ======================================*/
.starter-template {
    background-color: #f0ede0;
    width: 100%;
    padding: 30px 0px;
    margin: 0px;
}


@media screen and (max-width: 640px) {
	
	
}



/*======================================
---------------レイアウト---------------
======================================*/

/*10pxアキのグリッドレイアウトにする*/
.grd_gp10 {
    display: grid;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}
/*20pxアキのグリッドレイアウトにする*/
.grd_gp20 {
    display: grid;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}
/*25pxアキのグリッドレイアウトにする*/
.grd_gp25 {
    display: grid;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
}

/*50pxアキのグリッドレイアウトにする*/
.grd_gp50 {
    display: grid;
    grid-column-gap: 50px;
    grid-row-gap: 50px;
}

/*80pxアキのグリッドレイアウトにする*/
.grd_gp80 {
    display: grid;
    grid-column-gap: 80px;
    grid-row-gap: 80px;
}


/*均等2分割*/
.grd_col_2fr{
    grid-template-columns: 1fr 1fr;  
}
.grd_col_2fr_r{
    grid-template-columns: 1fr 1fr; 
    grid-template-areas:
    "areaA areaB";
}
/*均等3分割*/
.grd_col_3fr{
    grid-template-columns: 1fr 1fr 1fr;
}
/*均等4分割*/
.grd_col_4fr{
    grid-template-columns: 1fr 1fr 1fr 1fr; 
}
/*3:2の2分割レイアウト（スマホ表示にしたとき、左の要素を上に表示）※直下のdivは何も指定しなくてよい*/
.grd_col_3_2_l {
    grid-template-columns: 3fr 2fr;
}
/*2:3の2分割レイアウト（スマホ表示にしたとき、左の要素を上に表示）※直下のdivは何も指定しなくてよい*/
.grd_col_2_3_l {
    grid-template-columns: 2fr 3fr;
}
/*3:2の2分割レイアウト（スマホ表示にしたとき、右の要素を上に表示）※直下のdivにgrd_itm1,grd_itm2などでエリア指定を行う*/
.grd_col_3_2_r {
    grid-template-columns: 3fr 2fr;
    grid-template-areas:
    "areaA areaB";
}
/*2:3の2分割レイアウト（スマホ表示にしたとき、右の要素を上に表示）※直下のdivにgrd_itm1,grd_itm2などでエリア指定を行う*/
.grd_col_2_3_r {
    grid-template-columns: 2fr 3fr;
    grid-template-areas:
    "areaA areaB";
}
/*1:4の2分割レイアウト（スマホ表示にしたとき、左の要素を上に表示）※直下のdivは何も指定しなくてよい*/
.grd_col_1_4_l {
    grid-template-columns: 1fr 4fr;
}
/*4:1の2分割レイアウト（スマホ表示にしたとき、左の要素を上に表示）※直下のdivは何も指定しなくてよい*/
.grd_col_4_1_l {
    grid-template-columns: 4fr 1fr;
}
.grd_itm1{
    grid-area:areaA;
}
.grd_itm2{
    grid-area:areaB;
}
/*均等3分割SNS用*/
.grd_sns{
    display: grid;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
}
/*sns内の画像サイズを40%に*/
.grd_sns img{
    width:40%;
}

@media (max-width: 767px){
/*スマホ表示の際、分割せず縦並び*/
    .grd_sp1fr{
        grid-template-columns: 1fr;
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }

/*スマホ表示の際、分割せず縦並び*/
    .grd_sp1fr_r{
        grid-template-columns: 1fr;
        grid-column-gap: 10px;
        grid-row-gap: 10px;
        grid-template-areas:
        "areaB"
        "areaA";
    }


/*スマホ表示の際、均等2分割横並び*/
    .grd_sp2fr{
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 20px;
        grid-row-gap: 20px;
    }
/*スマホ表示の際、右の要素を上に表示*/
    .grd_col_3_2_r, .grd_col_2_3_r, .grd_col_2fr_r {
        grid-template-areas:
        "areaB"
        "areaA";
    }
  .grd_sns{
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    }
    .grd_sns img{
        width:60%;
    }
}

/*----------中央寄せ----------*/
.blk_center{
    text-align: center;
}
.txt_center{
    text-align: center; /*インライン要素自体にかけると、要素内のテキストに反映される*/
}

/*----------上下アキ----------*/

.row_bottom{margin-bottom:10px;}

.row_bottom15{
	margin-bottom:15px;
}
.row_bottom30{
	margin-bottom:30px;
}
.row_bottom50{
	margin-bottom:50px;
}
.row_bottom80{
	margin-bottom:80px;
}
.row_bottom100{
	margin-bottom:100px;
}
.row_top{
    margin-top:15px;
}
.row_top30{
    margin-top:30px;
}
.row_top50{
    margin-top:50px;
}
.row_top80{
    margin-top:80px;
}
.row_top100{
    margin-top:100px;
}

/*----------左右アキ----------*/

@media (max-width: 767px){
.margin_side{
	margin-right:10px;
	margin-left:10px;
	}
.margin_bottom{
	margin-bottom:40px;
}

}








/*----------PC・スマホ調整----------*/
@media only screen and (max-width : 320px) {
.pc_h {display: none;}
.smp_h {display: inline;}
}

@media only screen and (min-width : 320px) {
.pc_h {display: none;}
.smp_h {display: inline;}
}

@media only screen and (min-width : 992px) {
.pc_h {display: inline;}
.smp_h {display: none;}
}
@media only screen and (min-width : 1200px) {
.pc_h {display: inline;}
.smp_h {display: none;}
}




/* 背景色 */
.lead-bg01 { background-color: #f0ede0; padding: 30px 0px;}
.lead-bg02 { background-color: #e94709; padding: 30px 0px;}
.lead-bg-sns { background-color: #f3f3f3; padding: 50px 0px;}



/* 背景画像入り */

.block_ttlsand {
  display: table;
  height: 400px;
  width: 100%;
  position: relative;
  background: url('img/sandcover.jpg') no-repeat;
  text-align: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  text-align: center;
}
@media (max-width: 767px){
.block_ttlsand {
  height: 250px;
  width: 100%;}
  
  }

/*============================================*/
/*SNS */
/*============================================*/
.sns{
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.sns-box00{
    display: block;
    width: 20%;
    text-align: center;
    border-right: solid 1px #333;
}
.sns-box01{
    display: inline-block;
    width: 15%;
    padding: 10px;
    text-align: center;
}
.sns img{width: 40%;}
.sns h2{
    font-family: "Shippori Mincho", serif;
    font-size: 25px;
    text-shadow: none;
    margin: 40px 0px 30px 0px;
}
.sns h2::before{content: none;}
.sns h4{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 13px;
    font-weight: normal;
    letter-spacing: 0px;
    text-shadow: none;
    margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
.sns img{width: 80%;}
.sns h2{margin: 10px 0px;}
.sns-box00{width: 25%;}
.sns-box01{width: 18%;}
.sns h4{font-size: 11px;}
}




/*============================================*/
/*ボタン */
/*============================================*/


a.btn_long {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 1px solid #333333;
  box-sizing: border-box;
  width: 100%;
  height: 50px;
  padding: 0 6% 0 12%;
  color: #333333;
  font-size: 16px;
  text-align: left;
  text-decoration: none;
  position: relative;
  transition-duration: 0.2s;
  border-radius: 4px;
}
a.btn_long:hover {
  background: #333333;
  color: #fff;
}
a.btn_long:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 8px;
  border-color: transparent transparent transparent #333333;
  position: absolute;
  top: 50%;
  left: 6%;
  margin-top: -7px;
}
a.btn_long:hover:before {
  border-color: transparent transparent transparent #fff;
}




a.btn_long_br {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #422817;
  border: 1px solid #fff;
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  padding: 0 6% 0 12%;
  margin-top:4%;
  margin-bottom:4%;
  color: #fff;
  font-size: .8rem;
  text-align: left;
  text-decoration: none;
  position: relative;
  transition-duration: 0.2s;
  border-radius: 4px;
}
a.btn_long_br:hover {
  background: #fff;
  border: 1px solid #422817;
  color:#422817;
}
a.btn_long_br:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 8px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 50%;
  left: 6%;
  margin-top: -7px;
}
a.btn_long_br:hover:before {
  border-color: transparent transparent transparent #422817;
}
@media screen and (max-width: 640px) {
a.btn_long_br {margin-top:5%;margin-bottom:5%; height:30px;}
}

/*============================================*/
/*slider */
/*============================================*/
/*============================================*/
/* スライダー */
/*============================================*/
.swiper-container-pro {
    margin-inline: auto;
    max-width: 900px;
    position: relative;
}
@media screen and (max-width: 850px) {
.swiper-container-pro{
    max-width: 500px;
}
}
@media screen and (max-width: 500px) {
.swiper-container-pro{
    max-width: 280px;
}
}


.swiper {
  width: min(100%, 900px);
  height: 300px;
}
@media screen and (max-width: 850px) {
.swiper {
  width: min(100%, 500px);
  height: 150px;
}
}
@media screen and (max-width: 500px) {
.swiper {
  width: min(100%, 280px);
  height: 130px;
}
}
.swiper-slide {
  width:100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
}
.swiper-button-prev {
    left: -50px;
    bottom: 130px;
}
.swiper-button-next {
  right: -50px;
    bottom: 130px;
}
@media screen and (max-width: 850px) {
.swiper-button-prev {
    left: -40px;
    bottom: 4%;
}
.swiper-button-next {
    right: -40px;
    bottom: 4%;
}
}
@media screen and (max-width: 500px) {
.swiper-button-prev {
    left: -30px;
    bottom: 50px;
}
.swiper-button-next {
    right: -30px;
    bottom: 50px;
}
}
.swiper-button-prev:after,
.swiper-button-next:after {
  content: ""; /*ここでデフォルトの矢印を上書き*/
  width: 18px;
  height: 18px;
  border: 0;
  border-top: solid 1.5px #666;
  border-right: solid 1.5px #666;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.swiper-button-prev:before {
  border-bottom: 20px solid transparent;
  border-right: 30px solid #ff4500;
  border-top: 20px solid transparent;
}
.swiper-button-prev:after {
  transform: rotate(-135deg);
}
.swiper-button-next:before {
  border-bottom: 20px solid transparent;
  border-left: 30px solid #ff4500;
  border-top: 20px solid transparent;
}
.swiper-button-next:after {
  transform: rotate(45deg);
}



/*============================================*/
/* 吹き出し */
/*============================================*/


.fukidashi {
  position: relative;
  width: max-content;
  padding: 12px 40px;
  bottom:8%;
  margin-top:5%;
}

.fukidashi p{
	font-weight:bold; font-size:1rem;  font-family: "Noto Sans JP", sans-serif; color:#333333;}
.fukidashi::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 100%;
  height: 50%;
  box-sizing: border-box;
  border: 3px solid #333333;
  border-top: none;
  border-bottom-right-radius: 50px; /* 左下の角丸 */
  border-bottom-left-radius: 50px; /* 右下の角丸 */
  translate: -50%;
}
.fukidashi::after {
  content: "";
  position: absolute;
  top: calc(100% + 8px); /* フキダシのサイズに応じて調整してください */
  left: 50%;
  width: 30px;
  height: 2px;
  box-sizing: border-box;
  background-color: #333333;
  /*box-shadow: 0 2px 0 #ffffff, 0 -2px 0 #ffffff;*/
  rotate: 50deg;
  translate: -50%;
}




.fukidashi_srt {
    display: flex;
    justify-content: left;
    align-items: left;
    color: #333333;
  font-family: "Noto Sans JP", sans-serif;
}

.fukidashi_srt::before,
.fukidashi_srt::after {
    width:1px;
    height: 20px;
    background-color: #333333;
    content: '';
}

.fukidashi_srt::before {
    transform: rotate(-35deg);
    margin-right: 15px;
}

.fukidashi_srt::after {
    transform: rotate(35deg);
    margin-left: 15px;
}



.fukidashi_center {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-size:1.5rem;
  margin-bottom:2%;
}

.fukidashi_center::before,
.fukidashi_center::after {
    width:2px;
    height: 33px;
    background-color: #333333;
    content: '';
}

.fukidashi_center::before {
    transform: rotate(-35deg);
    margin-right: 20px;
}

.fukidashi_center::after {
    transform: rotate(35deg);
    margin-left: 20px;
}

@media (max-width: 767px){
.fukidashi{bottom:6%;}
.fukidashi p{font-size:1.2rem;}
.fukidashi_center { font-size:1.0rem;margin-bottom:2%;margin-top:4%;}

}




/*============================================*/
/*other */
/*============================================*/



.img_hover a{
    transition: all .3s ease-in-out;
}
.img_hover img{
    width: 100%;
    vertical-align: middle;
}
.img_hover a:hover{
    filter:opacity(40%);
}

.kadomaru{ border-radius:15px;}

/*タイトル画像のサイズ指定*/

img.ttl00 {
    display: block;
    max-width: 350px;
    margin: 30px auto 30px;
}

img.ttl01 {
    display: block;
    max-width: 180px;
    margin: 50px auto 0px;
}

img.ttl02 {
    display: block;
    max-width: 200px;
    margin: 50px auto 0px;
}

/*-------スマホの時-------------*/
@media screen and (max-width: 768px) {
img.ttl01 {margin: 4% auto 0;max-width: 140px;}
}













/*区切り罫線*/
.partition-b {
  border-bottom: solid 1px #333333;
  margin-top:150px;
  margin-bottom:100px;
}
@media (max-width: 767px){
.partition-b {
  margin-top:20px;
  margin-bottom:70px;
}
}





