@charset "UTF-8";
/* CSS Document */

/* menu.css */

/**********************************************
	nav
***********************************************/
header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
  display: flex;
  justify-content: space-between; /* 左右に要素を配置 */
  align-items: center;
	z-index: 1000;
}

.logo130 {
  display: none;
}

.logo50 {
  padding-left: 5.334%;
  display: block;
}

@media (min-width: 835px) {
  .logo130{
    display: flex;
    padding-left: 8.4375%;
    padding-right: 5.208%;
	align-items: center;
  }
  
  .logo130 img{
    transition: opacity 0.3s ease;
  }
  
  .logo130 img:hover{
    opacity: 0.7;
  }

  .logo50 {
    display: none;
  }
}


/* ハンバーガーメニューとアイコンをまとめるコンテナ */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
 top: 0;
  right: 0;
}

/* オンラインストアのアイコン（ハンバーガー時のみ表示） */
.store-icon-hamburger {
  width: 30px;
  height: auto;
 /* display: none;*/
  /*transition: opacity 0.3s ease;*/
}

/*.store-icon-hamburger:hover{
  opacity: 0.7;
}*/

/* ナビゲーションのスタイル */
.nav_sp {
  position: fixed;
	z-index: 999;
  top: 80px;
  right: 0;
  background-color:#FFF5DB;
  width: 300px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
/*  display: none;  デフォルトは非表示 */
  flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.8s;
}

.nav-active{
	transform: translateX(0%);
}

.nav_sp .nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav_sp .nav-links li {
  padding: 30px;
	padding-bottom: 50px;
  text-align: center;
}

.nav_sp .nav-links a {
  text-decoration: none;
  color: #440017;
}


/*.nav_sp .store-link {
  text-align: center;
  padding: 15px;
}*/

@media (max-width: 835px) {
  .store-link img {
    display: none;
  }
  
  .store-icon-hamburger {
    display: block;
  }
}

/* ハンバーガーメニューのスタイル */
.hamburger-menu {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  background-color: #BB3B4C;
  padding: 10px;
  border-radius: 0 0 0 10px;
}

.hamburger-menu span {
  width: 30px;
  height: 3px;
  background-color: #FFF5DB;
  margin: 5px;
	transition: all 1s;
}

.hamburger-active span:nth-child(1){
	transform: translateY(15px) rotate(45deg);
}

.hamburger-active span:nth-child(2){
	opacity: 0;
}

.hamburger-active span:nth-child(3){
	transform: translateY(-11px) rotate(-45deg);
}

/* メニューを開いた時のスタイル */
.nav-active {
  display: block;
}

/*.nav_pc {
  display: none;
}*/

.nav_pc_wrap{
	display: none;
}

.nav_sp .nav-links a {
  position: relative;
}

.nav_sp .nav-links a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  content: "";
  width: 0%;
  height: 2px;
  background: #BB3B4C;
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.nav_sp .nav-links a:hover::after {
  width: 100%;
}





/* PC版のナビゲーション */
@media (min-width: 835px) {
  
  .hamburger-menu,.store-icon-hamburger,.nav_sp {
    display: none; 
  }
  
  .nav_pc_wrap{
    width: 100%;
	height: 110px;
    background-color:#bb3b4c;
    display: flex;
  }

  .nav_pc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*position: static;*/
    flex-direction: row;
    /*box-shadow: none;*/
    
    color: #fff5d8;
    width: 77.86%;
  }

  .nav_pc .nav-links {
    width: 32.84%;
    display: flex;
    flex-direction: row;
  }

  .nav_pc .nav-links li {
    padding: 10px 40px;
  }

  .nav_pc .store-link {
    transition: opacity 0.3s ease;
/*    display: flex;
    justify-content: space-between;*/
    /*margin-left: auto;*/
    
    padding: 10px 40px;
  }
  
  .store-link:hover {
    opacity: 0.7;
  }
  
  .store-link a{
    display: flex;
    align-items: center;
  }
  
  .store-link p{
    padding-right:18px;
  }
  
  .store-link img {
    transition: opacity 0.3s ease; /* 変化を滑らかに */
  }

  .store-link img:hover {
    opacity: 0.7;
  }
  
  .nav_store_pc{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav_pc .nav-links a {
    position: relative;
  }

  .nav_pc .nav-links a::after {
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    content: "";
    width: 0%;
    height: 2px;
    background: #FFF5DB;
    transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }

  .nav_pc .nav-links a:hover::after {
    width: 100%;
  }
}


/**********************************************
	feature_menu_wrap / intro
***********************************************/
/*#privacy_wrap{
	width: 68.53%;
	margin: 0 auto;
}

@media (min-width:835px){
  #privacy_wrap{
    width: 66.35%;
  }
}*/

#feature_menu_wrap{
  width: 100%;
  background-image: url("../img/bg_375.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  position: relative;
  padding: 150px 0;
}

@media (min-width:835px){
  #feature_menu_wrap{
    background-image: url("../img/bg_1920.jpg");
    padding: 18.22vw 16.82vw;
  }
}

#contents{
    /*margin: 0 auto;*/
 /* padding: 50px 0;*/
  background: #FFF5DB;
	position: relative;
	z-index: 0;
/*  overflow: hidden;*/
}

#contents::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:url("../img/pattern100.svg");
	background-repeat: repeat;
    background-size: 20px 20px;
	opacity: 0.25;
	z-index: -1;
	border-radius: 30px
}

@media (min-width:835px){
  #contents{
/*    width: 1274px;*/
    border-radius: 30px;
  }
}
.intro{
  width: 93.776%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: -12px;
  margin-bottom: 86px;
}

.intro_img{
  width: 25.84%;
}
  
.intro_img_1920 img{
   display: none;
}

.introtxt_wrap{
  /*width: 261px;*/
  width: 75.019%;
  margin-top: -15px;
}
  
@media (min-width:835px){
  .intro{
    width: 69.86%;
    margin-top: 0;
/*    margin: 0 auto;
    display: flex;
    justify-content:center;
    align-items: flex-start;*/
  } 
  
  .intro_img img{
    display: none;
  }
  
  .intro_img_1920 img{
     display: block;
    width: 100%;
  }
  
  .intro_img_1920{
    margin-top:-30px;
  }

  .introtxt_wrap{
    /*width: 261px;*/
    width: 100%;
    margin-top: -30px;
  }
}

/*text*/
.introtxt_wrap h2{
  font-size: clamp(20px,calc(40 / 1920 * 100vw) , 40px);
  margin-bottom: 12px;
}

.introtxt_wrap h2 span{
  display: block;
}

.introtxt_wrap p{
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.15em;
}

.intro_img{
  margin-top: -15px;
}
  
@media (min-width:835px){
  .introtxt_wrap h2{
/*    font-size: 40px;*/
    margin-bottom: 30px;
  }

  .introtxt_wrap h2 span{
    display: block;
  }

  .introtxt_wrap p{
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0.15em;
  }

  .intro_img{
    margin-top: -15px;
  }
}


/**********************************************
	featurettl
***********************************************/

/*#featurettl{
	width: 100%;
	margin: 0 auto;
  position: relative;
  display:block;
}

#featurettl::before{
  width: 33.6%;
  left: 0;
  top: 50%;
  height: 1px;
  background-color: #8E5B00;
  content: "";
  display: inline-block;
}

#featurettl h2{
	position: relative;
 	padding-top: 30px;
	padding-bottom: 10px;
	text-align: center;
	display: inline-block;
	margin: 0 auto;
	font-size: 16px;
	font-weight: 500;
}	*/


#featurettl{
	width: 100%;
	margin: 0 auto;
  position: relative;
  display:block;
}

#featurettl::after{
  width: calc((100% - 112px) / 2 - 10px);
  left: 0;
  top: 50%;
  height: 1px;
  background-color: #8E5B00;
  content: "";
  display: inline-block;
  position: absolute;
  transform: translateY(0.75em);
}


@media  (min-width: 835px){
	#featurettl::after{
		top: 60%;
/*		width: calc((100% - 238px) / 2 - 50px);*/
		width: 42.08vw;
        left: -323px;
	}
}

#featurettl h2{
	position: relative;
 	padding-top: 30px;
	padding-bottom: 10px;
/*	text-align: center;*/
	display: block;
	margin: 0 auto;
	font-size: 16px;
	font-weight: 500;
	width: fit-content;
}	


@media  (min-width: 835px){
  #featurettl h2{
    font-size: 40px;
    padding-top: 60px;
  }
}

#featurettl h2::before{
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 28px;
  background-image: url("../img/symbol_sp.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

#featurettl h2::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    #8E5B00, /* 点線の色 */
    #8E5B00 5px,
    transparent 5px,
    transparent 10px
  );
}

@media  (min-width: 835px){
  #featurettl h2::before{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 60px;
    background-image: url("../img/symbol.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
  
  #featurettl h2::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    #8E5B00,  /*点線の色 */
    #8E5B00 5px,
    transparent 5px,
    transparent 10px
    );
  }
}


/**********************************************
	feature_wrap
***********************************************/
#feature_wrap{
  width: 93.07%;
  margin: 41px auto 92px;
}

#feature_wrap img{
  border-radius: 5px;
}

@media (min-width:835px){
  #feature_wrap{
    width: 92.46%;
    margin: 0 auto;
  }
  
  #feature_wrap img{
    border-radius: 20px;
	  width: 100%;
      object-fit: cover;
  }
}

.feature01,.feature02,.feature03{
  display: flex;
  /*width: 47.09%;*/
  height: 150px;
  position: relative;
  align-items: center;
}

@media (min-width:835px){
  .feature01,.feature03{
    display: flex;
    height: 470px;
    position: relative;
  }
  
  .feature02{
    display: flex;
    height: 570px;
    position: relative;
  }
}

.feature01,.feature02{
  margin-bottom: 30px;
}


/*.feature_txt_wrap{
  width: 215px;
  background-color: #fff;
  border-radius: 5px;
}*/

.feature_txt_ttl{
  display: flex;
/*  width: 89.30%;*/
  justify-content: space-between;
  margin-bottom: 10px;
}

.feature_txt_ttl span{
  display: block;
}

.feature_txt_ttl .number{
  width: 12.15%;
}

.feature_txt_ttl h3{
  width: 82.08%;
}

.feature_txt {
	font-size: clamp(14px, calc(18 / 1920 * 100vw), 18px);
}

@media (min-width:835px){
  .feature_txt_ttl{
    display: block;
	  /*width: 96.77%;*/
	  width: 118%;
    /*width: 450px;*/
    /*justify-content: space-between;*/
    margin-bottom: 25px;
  }

  .feature_txt_ttl span{
    display: block;
  }

  .feature_txt_ttl .number{
    width: 12.15%;
  }

  .feature_txt_ttl h3{
    width: 82.08%;
    padding-top: 20px;
  }
  
  .feature_txt{
    line-height: 1.5;
  }
}


/*数字*/
.number{
  position: relative;
}

.number::after{
  content: "";
  display: block;
  position: absolute;
  width:23px; /* 二重線の長さ */
  height: 1px; /* 線の太さ（1本目） */
  background-color: #8E5B00;
  bottom:0px; 
}

.number::before {
  content: "";
  display: block;
  width: 23px; /* 二重線の長さ */
  height: 1px; /* 2本目の線 */
  background-color: #8E5B00; /* 色は統一 */
  position: absolute;
  bottom: 5px;
}

@media (min-width:835px){
  .number::after{
    content: "";
    display: block;
    position: absolute;
    width:36px; /* 二重線の長さ */
    height: 1px; /* 線の太さ（1本目） */
    background-color: #8E5B00;
    bottom:-10px; 
  }

  .number::before {
    content: "";
    display: block;
    width: 36px; /* 二重線の長さ */
    height: 1px; /* 2本目の線 */
    background-color: #8E5B00; /* 色は統一 */
    position: absolute;
    bottom: -5px;
  }
}


/*01*/
.feature01{
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature01img{
  position: absolute;
  content: "";
/*  bottom: 0;*/
  left: 0;
}

.feature_txt_wrap01{
  /*width: 215px;*/
  width: 61.78%;
  padding: 14px 11px 14px 12px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  z-index: 1px;
}

@media (min-width:835px){
  .feature01{
    width: 77.42%;
    margin: 0 auto;
    justify-content: center;
    margin-top: 80px;
    margin-bottom: 93px;
  }

  .feature_txt_wrap01{
    /*width: 215px;*/
    width: 100%;
    padding: 49px 30px 48px 31px;
    background-color: #fff;
    border-radius: 10px;
    position: relative;
    margin-left: -94px;
    margin-bottom: -35px;
/*    position: absolute;
    content: "";
    top:0;
    right: 0;
    z-index: 1;*/
  }
	
	.feature01img_pc{
		display: block;
        width: 62.5%;
        aspect-ratio: 570 / 470;
        height: 100%;
	}
}



/*02*/
.feature_txt_wrap02{
  /*width: 215px;*/
  width: 61.78%;
  padding: 14px 11px 14px 12px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  z-index: 1px;
}

.feature02img{
  position: absolute;
  content: "";
/*  top: 0;*/
  left: 0;
}

@media (min-width:835px){
  .feature02{
    width: 69.78%;
    /*margin: 0 auto;
    justify-content: center;*/
    flex-direction: row-reverse;
    margin: 0 0 0 auto;
	  margin-bottom: 150px;
  }

  .feature_txt_wrap02{
    /*width: 465px;*/
    width: 100%;
    padding: 31px 43px 36px 47px;
    background-color: #fff;
    border-radius: 10px;
    position: relative;
    margin-right: -113px;
    margin-top: 30px;
    height: 350px;
/*    position: absolute;
    content: "";
    top:0;
    right: 0;
    z-index: 1;*/
  }
	
	.feature02img_pc{
		width: 69.34%;
/*		display: block;*/
        aspect-ratio: 570 / 470;
        height: 100%;
	}
}


/*03*/
.feature03img{
  position: absolute;
  content: "";
/*  top: 0;*/
  left: 0;
}

.feature_txt_wrap03{
  /*width: 215px;*/
 	width: 61.78%;
  padding: 14px 11px 14px 12px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  content: "";
/*  top: 0;*/
  right: 0;
  z-index: 1px;
}

@media (min-width:835px){
  .feature03{
    width: 79.37%;
    margin: 0 auto 0 0;
    margin-bottom: 200px;
  }

  .feature_txt_wrap03{
    /*width: 100%;*/
    width: 49.73%;
    padding: 31px 43px 36px 47px;
    background-color: #fff;
    border-radius: 10px;
    position: relative;
    margin-left: -100px;
    margin-top: 160px;
    height: 380px;
/*    position: absolute;
    content: "";
    top:0;
    right: 0;
    z-index: 1;*/
  }
	
	.feature03img_pc{
		width: 60.96%;
/*		display: block;*/
        aspect-ratio: 570 / 470;
        height: 100%;
	}
}


/*画像共通*/
.feature01img_pc,.feature02img_pc,.feature03img_pc{
  display: none;
}

@media(min-width:835px){
  .feature01img_pc,.feature02img_pc,.feature03img_pc{
    display: block;
  }
  
  .feature01img,.feature02img,.feature03img{
    display: none;
  }
}


/*text*/
#feature_wrap h3{
  font-size:clamp(14px , calc(32 / 1920 * 100vw ), 32px);
  font-weight: 500;
}

/*#feature_wrap p{
  font-size: 14px;
}*/

.number{
  font-size: 16px;
  font-weight: 500;
}

.feature_txt_wrap01 p,.feature_txt_wrap02 p,.feature_txt_wrap03 p{
  letter-spacing: 0.15em;
}

@media(min-width:835px){
  #feature_wrap h3{
    /*font-size: 32px;*/
    font-weight: 500;
  }

  .number{
    font-size: 32px;
    font-weight: 400;
  }

}

/**********************************************
	menuttl
***********************************************/
#menuttl{
	width: 100%;
	margin: 0 auto;
  position: relative;
  display:block;
}

#menuttl::after{
  width: calc((100% - 208px) / 2 - 10px);
  right: 0;
  top: 50%;
  height: 1px;
  background-color: #8E5B00;
  content: "";
  display: inline-block;
  position: absolute;
  transform: translateY(0.75em);
}


@media  (min-width: 835px){
	#menuttl::after{
/*		width: calc((100% - 520px) / 2 - 30px);*/
    	top: 60%;
		right: -16.82vw;
	}
}

@media  (min-width: 1336px){
	#menuttl::after{
/*		width: calc((100% - 520px) / 2 - 30px);*/
    	top: 60%;
		width: 33.70vw;
		right: -16.82vw;
	}
}

#menuttl h2{
	position: relative;
 	padding-top: 30px;
	padding-bottom: 10px;
/*	text-align: center;*/
	display: block;
	margin: 0 auto;
	font-size: 16px;
	font-weight: 500;
	width: fit-content;
}	

@media  (min-width: 835px){
  #menuttl h2{
    font-size: 40px;
    padding-top: 60px;
  }
}

#menuttl h2::before{
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 28px;
  background-image: url("../img/symbol_sp.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

#menuttl h2::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    #8E5B00, /* 点線の色 */
    #8E5B00 5px,
    transparent 5px,
    transparent 10px
  );
}

@media  (min-width: 835px){
  #menuttl h2::before{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 60px;
    background-image: url("../img/symbol.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
  
  #menuttl h2::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    #8E5B00,  /*点線の色 */
    #8E5B00 5px,
    transparent 5px,
    transparent 10px
    );
  }
}


/**********************************************
	menu_wrap
***********************************************/
#menu_wrap{
  width: 100%;
  margin-top: 30px;
}

.menuimg01_pc img,.menuimg02_pc img,.menuimg03_pc img{
    display: none;
  }

@media (min-width:835px){
  #menu_wrap{
    margin-top: 90px;
  }
  
  .menuimg01 img,.menuimg02 img,.menuimg03 img{
    display:none;
  }
  
  .menuimg01_pc img,.menuimg02_pc img,.menuimg03_pc img{
    display: block;
  }
}




/*menu01*/
.menu01{
  width: 78.93%;
  margin: 0 auto 0 0;
  padding-bottom: 73px;
}

.menu01 img{
  border-radius: 0 5px 5px 0;
  margin-bottom: 15px;
}

@media (min-width:835px){
	.menu01{
	  width: 87.48%;
	  padding-bottom: 140px;
		display: flex;
		align-items: center;
	}
	
	.menuimg01_pc{
		width:  57.54%;
	}
	
	.menuimg01_pc img {
		border-radius: 0 10px 10px 0;
		width: 100%;
		object-fit: cover;
	}
}

.menu01_txtwrap{
  width: 86.82%;
  margin: 0 auto;
}

@media (min-width:835px){
	.menu01_txtwrap{
	  width: 37.49%;
		margin-left: 60px;
/*	  margin: 0 auto;*/
	}
}

.menu01_txtwrap h3{
  margin-bottom: 5px;
  position: relative;
}

@media (min-width:835px){
	.menu01_txtwrap h3{
	  margin-bottom: 20px;
	  position: relative;
	}
}

.menu01_txtwrap h3::before{
  content: "";
  display: block;
  position: absolute;
  width:100%;
  height: 1px; 
  background-color: #440017;
  bottom: -15px;
}

.menu01_txtwrap h3::after{
  display: block;
  height: 1px;
  background-color:#440017; 
    content: "";
    position: absolute;
  width: 100%;
  bottom: -5px;
}

@media (min-width:835px){
	.menu01_txtwrap h3::before{
	  content: "";
	  display: block;
	  position: absolute;
	  width:100%;
	  height: 1px; 
	  background-color: #440017;
	  bottom: -20px;
	}

	.menu01_txtwrap h3::after{
	  display: block;
	  height: 1px;
	  background-color:#440017; 
		content: "";
		position: absolute;
	  width: 100%;
	  bottom: -10px;
	}
}

.menu01_txtwrap p{
  padding-top: 15px;
}

@media (min-width:835px){
	.menu01_txtwrap .menu01_txt {
	  letter-spacing: 0.5em;
		line-height: 1.4;
	}
}


/*menu02*/
.menu02{
  width: 78.93%;
  margin: 0 0 0 auto;
  padding-bottom: 73px;
}

.menu02 img{
  border-radius: 5px 0 0 5px;
  margin-bottom: 15px;
}

@media (min-width:835px){
	.menu02{
	  width: 86.26%;
	padding-bottom: 140px;
		display: flex;
		align-items: center;
		flex-direction: row-reverse;
	}
	
	.menuimg02_pc{
		width: 57.54%;
	}
	
	.menuimg02_pc img {
		border-radius: 10px 0 0 10px;
		width: 100%;
		object-fit: cover;
	}
}

.menu02_txtwrap{
  width: 86.82%;
  margin: 0 auto;
}

@media (min-width:835px){
	.menu02_txtwrap{
	  width: 37.49%;
		margin-right: 60px;
/*	  margin: 0 auto;*/
	}
}

.menu02_txtwrap h3{
  margin-bottom: 5px;
  position: relative;
}

@media (min-width:835px){
	.menu02_txtwrap h3{
	  margin-bottom: 20px;
	  position: relative;
	}
}

.menu02_txtwrap h3::before{
  content: "";
  display: block;
  position: absolute;
  width:100%;
  height: 1px; 
  background-color: #440017;
  bottom: -15px;
}

.menu02_txtwrap h3::after{
  display: block;
  height: 1px;
  background-color:#440017; 
    content: "";
    position: absolute;
  width: 100%;
  bottom: -5px;
}

@media (min-width:835px){
	.menu02_txtwrap h3::before{
	  content: "";
	  display: block;
	  position: absolute;
	  width:100%;
	  height: 1px; 
	  background-color: #440017;
	  bottom: -20px;
	}

	.menu02_txtwrap h3::after{
	  display: block;
	  height: 1px;
	  background-color:#440017; 
		content: "";
		position: absolute;
	  width: 100%;
	  bottom: -10px;
	}
}

.menu02_txtwrap p{
  padding-top: 15px;
}

@media (min-width:835px){
	.menu02_txtwrap .menu02_txt {
	  letter-spacing: 0.5em;
		line-height: 1.4;
	}
}




/*menu03*/
.menu03{
  width: 78.93%;
  margin: 0 auto 0 0;
  padding-bottom: 73px;
}

.menu03 img{
  border-radius: 0 5px 5px 0;
  margin-bottom: 15px;
}

@media (min-width:835px){
	.menu03{
	  width: 86.26%;
	  padding-bottom: 150px;
		display: flex;
		align-items: center;
	}
	
	.menuimg03_pc{
		width: 57.54%;
	}
	
	.menuimg03_pc img {
		border-radius: 0 10px 10px 0;
		width: 100%;
		object-fit: cover;
	}
}

.menu03_txtwrap{
  width: 86.82%;
  margin: 0 auto;
}

@media (min-width:835px){
	.menu03_txtwrap{
	  width: 37.49%;
		margin-left: 60px;
/*	  margin: 0 auto;*/
	}
}

.menu03_txtwrap h3{
  margin-bottom: 5px;
  position: relative;
}

@media (min-width:835px){
	.menu03_txtwrap h3{
	  margin-bottom: 20px;
	  position: relative;
	}
}

.menu03_txtwrap h3::before{
  content: "";
  display: block;
  position: absolute;
  width:100%;
  height: 1px; 
  background-color: #440017;
  bottom: -15px;
}

.menu03_txtwrap h3::after{
  display: block;
  height: 1px;
  background-color:#440017; 
    content: "";
    position: absolute;
  width: 100%;
  bottom: -5px;
}

@media (min-width:835px){
	.menu03_txtwrap h3::before{
	  content: "";
	  display: block;
	  position: absolute;
	  width:100%;
	  height: 1px; 
	  background-color: #440017;
	  bottom: -20px;
	}

	.menu03_txtwrap h3::after{
	  display: block;
	  height: 1px;
	  background-color:#440017; 
		content: "";
		position: absolute;
	  width: 100%;
	  bottom: -10px;
	}
}

.menu03_txtwrap p{
  padding-top: 15px;
}

@media (min-width:835px){
	.menu03_txtwrap .menu03_txt {
	  letter-spacing: 0.5em;
		line-height: 1.4;
	}
}





/*text共通*/
#menu_wrap h3{
  font-size: 18px;
  font-weight: 500;
}

.price{
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
  text-align: right;
  position: relative;
}

.price::before{
  content: "";
  position: absolute;
  background-color: #440017;
  height: 10px;
  right: 100px;
  bottom: 0;
  width: 1px;
  transform: rotate(25deg);
}

@media (min-width:835px){
	#menu_wrap h3{
	  font-size: 28px;
	  font-weight: 500;
	}
	
	.menu01_txt,.menu02_txt,.menu03_txt{
		font-size: 18px;
		font-weight: 500;
	}

	.price{
	  font-size: 25px;
	  font-weight: 400;
	  margin-top: 22.5px;
		letter-spacing:normal;
	  text-align: right;
	  position: relative;
	}

	.price::before{
	  content: "";
	  position: absolute;
	  background-color: #440017;
	  height: 10px;
		right: 145px;
 		bottom: 0;
	  /*left: -3px;*/
	  width: 1px;
	  transform: rotate(25deg);
	}
	
	.menu01_txt,.menu02_txt,.menu03_txt{
		letter-spacing: 0.4em;
	  }
}




/**********************************************
	menu_attention
***********************************************/
.menu_attention{
  width: 89.33%;
  text-align: left;
  margin: 0 auto;
  font-size: 12px;
  padding-bottom: 80px;
}

	
@media (min-width:835px){
	.menu_attention{
	  width: 73.55%;
	  text-align: left;
	  margin: 0 auto;
	  padding-bottom: 222px;
	}
	
	.menu_attention p{
		font-size: 18px;
		font-weight: 400;
		margin-bottom: 10px;
	}
}


/**********************************************
	footer
***********************************************/
footer{
  background-color: #BB3B4C;
  color: #FFF5DB;
}

.footer_wrap{
  padding-top: 30px;
  /*margin-left: 40px;*/
}

@media (min-width:835px){
  .footer_wrap{
    width: 66.35%;
    margin: 0 auto;
    padding-top: 137px;
  }
}

.footerttl{
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
    margin-bottom: 25px;
	margin-left: 10.67%;
}

@media (min-width:835px){
  .footerttl{
    margin-bottom: 80px;
    margin-left: 0;
  }
}

.footerttl h3{
  /*position: relative;*/
  font-size: 14px;
  font-weight: 500;
  margin-right: 10px;
}

.footerttl::before{
  content: "";
/*  position: absolute;*/
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff5d8;
  display: inline-block;
  order: 1;
}

.footerttl::after{
  content: "";
  /*position: absolute;*/
  flex-grow: 1;
/*  display: inline-block;*/
  height: 1px;
  background-color: #fff5d8;
/*  border: 1px solid #fff5d8;
  width: 220px;*/
  order: 2;
}

@media (min-width:835px){
  .footerttl h3{
    /*position: relative;*/
    font-size: 32px;
    font-weight: 500;
    margin-right: 34px;
  }
  
  .footerttl::before{
    content: "";
  /*  position: absolute;*/
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #fff5d8;
    display: inline-block;
    order: 1;
  }

  .footerttl::after{
    content: "";
    /*position: absolute;*/
    flex-grow: 1;
  /*  display: inline-block;*/
    height: 2px;
    background-color: #fff5d8;
  /*  border: 1px solid #fff5d8;
    width: 220px;*/
    order: 2;
  }
}

.navlist ul li a{
  font-size: 12px;
  font-weight: 500;
}

@media (min-width:835px){
  .navlist ul li a{
    /*position: relative;*/
    font-size: 18px;
    font-weight: 500;
  }
}

.navlist ul li{
  margin-bottom: 20px;
}

@media (min-width:835px){
  .navlist ul li{
    margin-bottom: 30px;
  }
}

.navlist{
	margin-left: 10.67%;
  display: flex;
}

.navlist01{
  margin-right: 20px;
}

.navlist01_wrap{
  display: flex;
}

.footer_snsicon a:nth-child(1){
  margin-right: 20px;
}

.footer_snsicon_pc{
  display: none;
}

.pagetop{
	display: none !important;
}

@media (min-width:835px){
  .navlist{
    margin-left: 0;
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
  }
  
/*  .navlist01_wrap{
    display: flex;
  }*/
  
  .navlist01{
    margin-right: 80px;
  }
  
  .footer_snsicon{
    display: none;
  }
  
  .footer_snsicon_pc{
    display: block;
    margin-bottom: 10px;
  }
  
  .footer_snsicon_pc a:nth-child(1){
    margin-right: 30px;
  }
  
  .footer_snsicon_pc img{
    transition: opacity 0.3s ease;
  }

  .footer_snsicon_pc img:hover{
    opacity: 0.7;
  }
  
  .pagetop{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 1px solid #FFF5D8;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    color: #440017;
    background-color: rgba(252, 241, 211, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .pagetop:hover {
    background-color: #FFF5DB;
  }
  
  .pagetop a {
    display: block;
    background-color: #ccc;
    text-align: center;
    color: #222;
    font-size: 12px;
    text-decoration: none;
    padding: 5px 10px;
	  filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
  }
  
  .pagetop a:hover {
      display: block;
      background-color: #b2d1fb;
      text-align: center;
      color: #fff;
      font-size: 12px;
      text-decoration: none;
      padding:5px 10px;
      filter:alpha(opacity=50);
      -moz-opacity: 0.5;
      opacity: 0.5;
  }
  
  .navlist01 ul li a {
    position: relative;
    display: inline-block;
  }

  .navlist01 ul li a::after {
    position: absolute;
    left: 0;
    bottom: -2px;
    display: block;
    content: "";
    width: 0%;
    height: 2px;
    background: #FFF5DB;
    transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }

  .navlist01 ul li a:hover::after {
    width: 100%;
  }
  
  .navlist02 ul li a {
    position: relative;
    display: inline-block;
  }

  .navlist02 ul li a::after {
    position: absolute;
    left: 0;
    bottom: -2px;
    display: block;
    content: "";
    width: 0%;
    height: 2px;
    background: #FFF5DB;
    transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }

  .navlist02 ul li a:hover::after {
    width: 100%;
  }
}

.copyattention{
  font-size: 10px;
  font-weight: normal;
}

#footer_sns_copy{
  width: 78.67%;
	margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
}

.attention{
  text-align: right;
}

@media (min-width:835px){
  #footer_sns_copy{
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    padding-bottom: 22px;
  }
  
  .copyattention{
    display: flex;
    /*width: 66.35%;*/
    justify-content: space-between;
    font-size: 14px;
    font-weight: 400;
    flex-direction: row-reverse;
  }
  
  .attention br{
    display: none;
  }
}


/**********************************************
	右下の常時のトップページ戻るボタン
***********************************************/
#pageTop_btn { 
	position: fixed;
	bottom: 80px;
	right: 20px;
}
.pageTop_link { 
	background: #8E5B00; 
	border-radius: 50%; 
	display: block; 
	position: relative;
	height: 55px; /* ボタンの高さ */
	width: 55px; /* ボタンの幅（円にしたいときは、高さと幅を同じ数値にします）*/ 
}
	
/*▼ ボタンの中の上向き矢印装飾 */
.pageTop_link:before {  
	content: ''; 
	position: absolute;	 /* ボタン（親）の子として浮かせる */
	border-top: solid 2px #fff; /* top・left・rotate(45deg)セットで上向き矢印 */
	border-left: solid 2px #fff; /* top・left・rotate(45deg)セットで上向き矢印*/
	margin: auto; /* positionで浮かせたものを上下中央寄せにする際に必須 */
	top: 5px; /* ボタン（親）の上からどのくらいか*/ 
	right: 0; /* ボタン（親）の右からどのくらいか */
	left: 0; /* ボタン（親）の左から */
	bottom: 0; /* ボタン（親）の下から */
	transform: rotate(45deg); /* top・left・rotate(45deg)セットで上向き矢印 */
	ms-transform: rotate(45deg); /* Internet Explorer用 */
	webkit-transform: rotate(45deg); /* Google Chrome、Safari用 */
	height: 10px; /* 矢印の大きさ */
	width: 10px; /* 矢印の大きさ */
}

@media (min-width:835px){
	#pageTop_btn { 
		position: fixed;
		bottom: 100px;
		right: 50px;
	}
	
	.pageTop_link { 
		background: #8E5B00; 
		border-radius: 50%; 
		display: block; 
		position: relative;
		height: 100px;
		width: 100px;
	}
	
	.pageTop_link:before {  
		content: ''; 
		position: absolute;
		border-top: solid 2px #fff; /* top・left・rotate(45deg)セットで上向き矢印 */
		border-left: solid 2px #fff; /* top・left・rotate(45deg)セットで上向き矢印*/
		margin: auto; /* positionで浮かせたものを上下中央寄せにする際に必須 */
		top: 5px; /* ボタン（親）の上からどのくらいか*/ 
		right: 0; /* ボタン（親）の右からどのくらいか */
		left: 0; /* ボタン（親）の左から */
		bottom: 0; /* ボタン（親）の下から */
		transform: rotate(45deg); /* top・left・rotate(45deg)セットで上向き矢印 */
		ms-transform: rotate(45deg); /* Internet Explorer用 */
		webkit-transform: rotate(45deg); /* Google Chrome、Safari用 */
		height: 15px; /* 矢印の大きさ */
		width: 15px; /* 矢印の大きさ */
	}
}