@charset "utf-8";
/* CSS Document */

/* faq.css */

html {scroll-behavior: smooth;}

/**********************************************
	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%;
  }
}


/**********************************************
	main
***********************************************/
main{
	background-color: #FFF5DB;
}

#faq_btn_wrap , #faq_wrap{
	width: 68.53%;
	margin: 0 auto;
}

@media (min-width:835px){
	#faq_btn_wrap{
		width: 66.35%;
		margin: 0 auto;
	  }
	
	#faq_wrap{
		width: 52.08%;
	}
}


/**********************************************
	privacyttl
***********************************************/

#faqttl{
	background-image: url("../img/faq_bg_sp.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height:150px;
	text-align: center;
	display: flex;
	align-items: center;
/*	justify-content: center;*/
}

@media (min-width:835px){
  #faqttl{
    background-image: url("../img/faq_bg_pc.jpg");
    width: 100%;
    height: 530px;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

#faqttl h2{
	position: relative;
 	padding-top: 30px;
	padding-bottom: 10px;
/*	text-align: center;*/
	display: inline-block;
	margin: 0 auto;
	font-size: 16px;
	font-weight: 500;
}	


@media  (min-width: 835px){
  #faqttl h2{
    font-size: 40px;
    padding-top: 60px;
  }
}

#faqttl 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;
}

#faqttl 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){
  #faqttl 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;
  }
  
  #faqttl 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
    );
  }
}

/**********************************************
	faq_btn_wrap
***********************************************/
#faq_btn_wrap{
	padding-top: 60px;
	padding-bottom: 80px;
}

@media (min-width:835px){
	#faq_btn_wrap{
/*		width: 66.35%;*/
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
		padding-top: 250px;
		padding-bottom: 200px;
	}
}


/**********************************************
	faq_wrap
***********************************************/
.faq_content h3{
	text-align: center;
	font-size: clamp(16px, calc(34 / 1920 * 100vw), 34px);
	font-weight: 500;
	margin-bottom: 20px;
}

@media (min-width:835px){
	.faq_content h3{
		font-size: 40px;
		font-weight: 500;
		margin-bottom: 50px;
	}
}

/*
.accordion_A {
   
	background-color: #fff;
	
}
*/

/* 装飾用 */
.accordion_Q {
  background-color: #FFF;
  padding: 15px 18px 15px 12px;
/*  margin: 10px 0 0;*/
  transition: background .3s ease;
  cursor: pointer;
  position: relative;
}

.accordion_Q::before,
.accordion_Q::after{
  position:absolute;
  content:'';
  top:1px;
  right:20px;
  bottom:0;
  width:12px;
  height:2px;
  margin:auto;
  background:#440017;
}

@media (min-width:835px){
	.accordion_Q {
	  padding: 30px 50px;
	}
	
	.accordion_Q::before,
	.accordion_Q::after{
	  position:absolute;
	  content:'';
	  right:50px;
	  bottom:0;
	  width:21px;
	  height:3px;
	  margin:auto;
	  background:#440017;
	}
}

/*
@media (min-width:835px){
	.accordion_Q::before,
	.accordion_Q::after{
	  width:21px;
	  height:2px;
	  margin:auto;
	  background:#440017;
	}
}
*/

.accordion_Q::after{
  transform:rotate(-90deg);
  transition:transform 0.3s;
}

.accordion_Q .active::after{
	transform:rotate(0deg);
}

.accordion_A {
	 display: none;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 12px 20px 10px;
}

@media (min-width:835px){
	.accordion_A {
		padding: 30px 50px;
	}
}

.accordion_Q span
/*.accordion_A span*/ {
	display: block;
	width: 90%;
  padding-left: 20px;
	font-size: clamp(15px, calc(34 / 1920 * 100vw), 34px);
  position: relative;
}

.accordion_Q span::before{
  position: absolute;
  content:"Q";
  top: 2px;
  left: 0;
  color: #440017;
  font-size: clamp(17px, calc(34 / 1920 * 100vw), 34px);
}


.accordion_A span::before{
    position: absolute;
  content:"";
  top: 3px;
  left: 0;
  color: #440017;
  font-size: 17px;/*clamp(15px, calc(34 / 1920 * 100vw), 34px);*/
}

@media (min-width:835px){
	.accordion_Q span
	/*.accordion_A span*/ {
		display: block;
		width: 100%;
	  padding-left: 50px;
	  position: relative;
	}
	
	.accordion_Q span::before{
	  /*font-size: 34px;*/
		font-weight: 500;
	}
	
	.accordion_A span{
		line-height: 1.5;
	}

	.accordion_A span::before{
	  font-size: 18px;
	}
}

/* hover */
.accordion_Q:hover {
  background-color: #F2F2F2;
}

/*間隔*/
.accordion_Q:nth-child(n+2){
	margin-top: 25px;
}

.faq_content:nth-child(n+2){
	margin-top: 80px;
}

.form_link{
	padding: 100px 0;
}

.form_link span{
	display: block;
}

.form_link a{
	text-decoration: underline;
	transition: opacity 0.3s ease; 
}

.form_link a:hover{
	opacity: 0.6;
}

@media (min-width:835px){
	.accordion_Q:nth-child(n+2){
		margin-top: 40px;
	}

	.faq_content:nth-child(n+2){
		margin-top: 200px;
	}

	.form_link{
		padding: 200px 0 300px 0;
		line-height: 1.5;
	}
}

@media (min-width:835px){
	.accordion_Q span{
/*		font-size: 34px;*/
		font-weight: 500;
	}
	
	.accordion_A span{
		font-size: 18px;
		font-weight: 400;
	}
	
	.form_link p{
		font-size: 18px;
		font-weight: 400;
	}
}



/**********************************************
	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; /* 矢印の大きさ */
	}
}

