@charset "UTF-8";
/* CSS Document */



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box; /*余白や線を幅や高さに含める*/
}


html {
    font-size: 100%;
    scroll-behavior: smooth; /* ←ページ内スクロールを滑らかに */
}

body {
    font-family: "Kosugi", "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 0.9rem;
    color: #4A3F35;
    background-color: #FFF6E5;/*背景カラー*/
    max-width: 100%;
}

.wrapper {
    margin: 0 auto;
    padding: 0 50px;
}


#design,
#customer,
#buy {
    padding: 50px 50px 0;
}


.br-pc {
    display: none;
  }    
    
.br-sp {
    display: inline;
  }


.highlight {
    color: #769C56;
}


@media screen and (min-width:800px) {  
    
#design,
#customer,
#buy {
    padding: 90px 50px 0;
}
    
.br-pc {
    display: inline;
  }    
    
.br-sp {
    display: none;
  }
}



/*
h1 {
    display: flex;
    justify-content: center;
    font-size: 1.7rem;
    padding: 20px;
}

.h1span {
    background: linear-gradient(transparent 60%, #F0C4C4 60%);
    padding: 0 15px;
}*/


/*h1 {
  font-size: 1.7rem;
  display: flex;
  justify-content: center;
  position: relative;
  padding: 1.5rem 2rem;
  border: 3px solid #d8d8d8;
  border-radius: 10px;
  background: #f9f9f9;
}*/

h1 {
   font-size: 1.7rem;
   position: relative;
   text-align:center;
   font-family: "Shippori Mincho", serif;
   font-weight: 500;
   padding: 1rem　0; /*見出し上下の余白調整 */
   margin-bottom: 2rem;
}

h1:before {
   content: '';
   position: absolute;
   bottom: -1rem;
   height: 3px;
   left: 50%;
   -webkit-transform: translateX(-50%);
   transform: translateX(-50%);
   width: 50px; /*線の幅*/
   background: #d3ac1d; /*線の色 */
}


h2 {
    font-size: 1.2rem;
    padding: 1rem;
}


h3 {
    font-size: 1rem;
    position: relative;
    padding: 0.3em 0em 0.2em 1.5em;
    border-bottom: 3px solid #d3ac1d;
    color: #4a3f35;
}

h3::before {
    position: absolute;
    top: 0;
    left: 0.3em;
    transform: rotate(55deg);
    height: 11px;
    width: 12px;
    background: #d3ac1d;
    content: '';
}

h3::after {
    position: absolute;
    transform: rotate(15deg);
    top: 0.6em;
    left: 0;
    height: 8px;
    width: 8px;
    background: #d3ac1d;
    content: '';
}



p {
    font-size: 0.95rem;
    line-height: 1.8;
}

section {
padding: 75px 0 0;
}



/*fadeUpTrigger-----*/
.fadeUpTrigger{
    opacity: 0;
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1s;
    animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes fadeUpAnime{
from {
    opacity: 0;
    transform: translateY(100px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
/*fadeUpTrigger-----*/




/*========= ローディング===============*/
/* Loading背景画面設定　*/
#splash {
/*fixedで全面に固定*/
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background:#b19362;
  text-align:center;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width:150px;
}

/* fadeUpをするアイコンの動き */
.fadeUp{
animation-name: fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}



/*========= CTAボタン ===============*/
/*ボタンの形状*/
.cta{
    display: block;
    position: relative;
    width: 80%; /* スマホでは幅いっぱい */
    max-width: 400px; /* PCでは文字量に合わせた最大幅 */
    margin: 20px auto; /* 上下余白＋中央寄せ */
    font-size: 1rem;
    padding: 1.2rem 1.5rem;
    border-radius: 10px;
    background: #769C56;
    border: 1px solid #769C56;
    color: #F8F3EA;
    text-align: center;
    text-decoration: none;
    outline: none;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 0 40px rgba(118, 156, 86, 0.1) ;
    /*アニメーションの設定*/
    transition: all .3s;
}

/*hoverをしたらボックスの影が拡がり色が濃くなる*/
.cta:hover {
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.5), 0 0 50px rgba(118, 156, 86, 0.1) ;
    border-color: transparent;
}


@media screen and (min-width:800px) {  
.cta{
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}
}

/*========= 上部固定させるためのCSS ===============*/
#header {
	position: fixed;/*header固定*/
    top: 0;
	height: 60px;/*Headerの高さ設定*/
	width: 100%;
    z-index: 9;
	display: flex;
	justify-content: left;
	align-items: center;
    background: #FFF6E5;
}

hr {
    color: #FFF6E5;
    padding-top: 80px;
}



/*==================================================
共通　横並びのための設定
===================================*/

.pc-nav {
    display: flex;
    margin: 0;
    list-style: none;
    font-size: 0.9rem;
}

.pc-nav li a{
    display: block;
    padding: 10px 30px;
    text-decoration: none;
    color: #4A3F35;
}

.pc-nav li a:hover{
    color: #769C56;
    transition: all 0.3s;
}



/*========= ナビゲーションのためのCSS ===============*/

#g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    font-size: 1rem;
    line-height: 1.8;
    /*ナビのスタート位置と形状*/
	top: -150%;
	width: 100%;
    height: 100vh;/*ナビの高さ*/
	background: #F0C4C4;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav #g-nav-list{
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #4A3F35;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top: 10px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height: 50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #769C56;
  	width: 45%;
}

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}


@media screen and (max-width:800px) {  
    .pc-nav {
          display: none;
      }
}






  /*-------------------------------------------
  Firstview
  -------------------------------------------*/



.fv {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    position: relative;
    background: url('../img/back-top_sp.png') no-repeat;
    background-size: 100%;
    background-position: top;
}


.logo {
    margin: auto;
    display: block;
    width: 50%;
}

.fv-img {
    margin: auto;
    display: block;
    max-width: 100%;
    height: auto;

}


.fv-img-pc {
    display: none;
}

.fv-text {
    font-family: "Shippori Mincho", serif;
    letter-spacing: 0.05em;
    font-weight: 500;
    font-size: 1rem;
    line-height: 2;
    padding: 10px;
    text-align: center;
}




/* PC表示（幅800px以上） */
@media (min-width: 800px) {
 
    
.fv {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    background: url('../img/back-top.png') no-repeat;
    background-size: 100%;
    background-position: center;
}


    
.logo {
    display: none;
}

.fv-img {
    display: none;
}

.fv-img-pc {
    display: block;
    width: 800px;
    max-width: 70%;
    height: auto;
    align-items: flex-start;

}

.fv-text {
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    -ms-writing-mode: tb-rl;/*縦書き*/
    writing-mode: vertical-rl;
    line-height: 3;
    padding: 10px;
    text-align: left;
    font-size: 1.2rem;
}



}


  /*-------------------------------------------
  人気商品の紹介
  -------------------------------------------*/


.favorite-aori {
    text-align: center;
    line-height: 1.8;
    font-size: 1rem;
    padding-bottom: 50px;
}

.favorite-aori span {
    font-family: "Roboto", sans-serif;
    color: #769C56;
    font-size: 2rem;
    padding: 0px 5px;
}

.back {
    background: url('../img/back_sp.png') no-repeat;
    background-size: 350px;
    background-position: top left;
}

.back2 {
    background: url('../img/back_sp2.png') no-repeat;
    background-size: 350px;
    background-position: center right;
}

.back3 {
    background: url('../img/back_sp.png') no-repeat;
    background-size: 350px;
    background-position: bottom left;
}


/* 各商品ブロック（縦積み） */

.product {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 5rem;
}


/* 画像 */
.product-image img {
  width: 200px;
  height: auto;
  display: block;
}

.product-image2 img {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
}

/* テキスト */
.product-text,
.product-text2 {
  text-align: left;
  max-width: 80%;
}

.product-text h3,
.product-text2 h3 {
  margin: 0 0.5rem 0.5rem;
  font-size: 1.3rem;
  font-weight: 500;
}

.product-text p,
.product-text2 p {
  padding-left: 10px;
  line-height: 1.8;
}

.product-text .product-text2 .lead {
  margin: 0 0.5rem 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.lead-price {
  font-size: 1.2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}



/* PC表示：横並び＋交互に反転 */
@media (min-width: 800px) {
    
  .back {
      background: url('../img/back.png') no-repeat;
      background-size: 400px;
      background-position: top left;
  }

  .back2 {
      background: url('../img/back2.png') no-repeat;
      background-size: 400px;
      background-position: bottom right;
  }

  .back3 {
      background: url('../img/back.png') no-repeat;
      background-size: 400px;
      background-position: top left;
  }
    

  .favorite-aori {
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1rem;
  }    
    
    

  .product {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 1.5rem;
    margin: 0 20%;
    margin-bottom: 3rem;
  }

  .product:nth-child(even) {
    flex-direction: row-reverse;
  }
    
  .product:nth-child(even).img {
    align-items: right;
  }

  .product-text .product-text2 {
    flex: 1;
    justify-content: right;
  }
    
    
}



  /*-------------------------------------------
  ギフトにも最適
  -------------------------------------------*/


/* 共通レイアウト */
.design-package {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
}


.design-package:nth-child(even)::before {
    background-color: #F0C4C4;
}

.design-package > * {
    position: relative;
    z-index: 1;
}

.ribbon {
    background: url('../img/ribbon.png') no-repeat;
    background-size: 70%;
    background-position: center 48%;
}

.seigaiha {
    background: url('../img/back-design.png') no-repeat;
    background-size: 100%; 
    background-position: top right;
}




.design-text h2 {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
　line-height: 1.8;
　padding: 2rem 2rem;
  margin: 1rem;
  text-align: center;
  position: relative;
  border-top: solid 2px #d3ac1d;
  border-bottom: solid 2px #d3ac1d;
}

.design-text h2:before, .design-text h2:after {
  content: '';
  position: absolute;
  top: -7px;
  width: 2px;
  height: -webkit-calc(100% + 14px);
  height: calc(100% + 14px);
  background-color: #d3ac1d;
}

.design-text h2:before {
  left: 7px;
}

.design-text h2:after {
  right: 7px;
}


.design-text p {
  text-align: left;
  padding:0 20px;
  margin-bottom: 1rem;
}


.package {
    width: 250px;
    height: auto;
}

.package2 {
    width: 300px;
    height: auto;
}




/* PC表示（幅900px以上） */
@media (min-width: 900px) {
    #design {
    max-width: 100%;
}
    
    .design-package {
        flex-direction: row-reverse;
        justify-content: center;
        align-items: center;
        padding: 2rem;
    }
    
    .design-text {
        max-width: 50%;
      }
    .design-text p {
        text-align: left;
      }

    .ribbon {
        background-size: 30%;
    }
    
    /* 偶数番目のセクションは左右反転 */
    .design-package:nth-child(even) {
        flex-direction: row;
    }

    
    .package {
        margin-right: 10rem;
    }    
    
    .package2 {
        margin-left: 10rem;
    }
    
    .design-package::before {
        width: 60%;
        height: 60%;
    }

    .design-text {
        flex: 1;
        padding: 1rem 2rem;
        line-height: 1.8;
        text-align: right;
    }

    .design-package:nth-child(even) .design-text {
        text-align: left;
    }

    .package .package2 {
        flex: 1;
        max-width: 100%;
    }
}



  /*-------------------------------------------
  お客様の声
  -------------------------------------------*/

/* customer */



/* セロテープ風 */
.box5-6 {
   box-shadow: 0 3px 5px rgb(74 63 53 / 30%);
   position: relative; /* タイトルをボックス内の左上に配置するための基準 */
   margin: 3rem auto 3em; /* 外側の余白（上下と中央配置） */
   background-color: #F0C4C4; /* ボックス背景色 */
}

.box5-6 .box-title {
   background-color: rgb(255 255 255 / .6); /* テープ背景色と透過 */
   border-left: 2px dotted rgb(0 0 0 / .1); /* テープのギザギザ左 */
   border-right: 2px dotted rgb(0 0 0 / .1); /* テープのギザギザ右 */
   box-shadow: 0 0 5px rgb(0 0 0 / .3); /* テープ影 */
   transform: rotate(-2deg); /* テープの傾き */
   color: #4A3F35; /* タイトル文字色 */
   padding: 10px 20px; /* タイトルの余白 */
   line-height: 1; /* タイトルの行の高さ */
   position: absolute; /* 親要素の左上に固定 */
   top: -1em; /* 上端に配置 */
   left: 1em; /* 左端に配置 */
   display: inline-block; /* タイトルの幅を内容に合わせる */
   font-size: 0.9em; /* タイトルのフォントサイズ */
   width: auto; /* タイトル幅を内容に応じて可変にする */
   max-width: calc(100% - 2em); /* 左右の余白を考慮して最大幅を調整 */
   white-space: nowrap; /* タイトルを1行に固定 */
   overflow: hidden; /* はみ出した部分を非表示 */
   text-overflow: ellipsis; /* 省略記号（...）を表示 */
}

.box5-6 .box-content {
   padding: 2.5em 2em 2em; /* コンテンツ内の余白 */
}

/* pタグの余白を0にする */
.box5-6 p {
   margin: 0;
}

.weight{
   font-family: "M PLUS 1 Code", monospace;
   font-weight: 700;
}


/* --- PC向けスタイル --- */
@media screen and (min-width: 800px) { /* 一般的なタブレット縦向き以上のブレークポイント */ 
    
.box5-6 {
    max-width: 80%;
}  


}




  /*-------------------------------------------
  ご購入の流れ
  -------------------------------------------*/


/*タイムライン全体の設定*/
.timeline{
	max-width: 600px;
	width:100%;
	margin:50px auto 0px;
	padding:0 20px;
}

.timeline li{
    /*線の起点とするためrelativeを設定*/
    position: relative;
	list-style: none;
	padding:0 0 20px 0;
}

.timeline dl{
	margin: 0 30px 40px;
    padding-top: -30px;
    line-height: 1.8;
}

.timeline dt{
	color: #4A3F35;
    font-size: 1.1rem;
}

.timeline dd{
    font-size: 0.9rem;
}



/*絶対配置で線を設定*/
.border-line {
    /*線の位置*/
	position: absolute;
	left:0.2em;
	top:10px;
	width:3px;/*線の太さ*/
	height:0;/*はじめは高さを0に*/
	background: #F0C4C4;
    
}

/*タイムラインの見出し横の丸の位置と形状*/
.timeline li::after{
	content:'';
	position: absolute;
	top:10px;
	left:0;
	width: 10px;
	height: 10px;
	background:#d3ac1d;
	border-radius: 50%;
}




.buy-area{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    
}

.buy-img{
    background:url("../img/haisou.jpg") no-repeat center;
    border-radius: 50%;
    background-size: cover;
    width: 50%;
    height: 50%;
    margin-top: 30px;
}

.buy-line{
    width:45%;
    padding: 30px 0 0 0;
}


.buy-area{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    
}

.buy-img,
.buy-line{
        width:100%;
    }
    
.buy-img{
        height:40vh;
    }





/* PC表示（幅768px以上） */
@media (min-width: 800px) {
    
    
.timeline{
	margin:50px auto;
	padding:0 30px;
}


.timeline li{
    /*線の起点とするためrelativeを設定*/
    position: relative;
	list-style: none;
	padding:0 0 20px 0;
}

.timeline dl{
	margin: 0 30px 40px;
    padding-top: -30px;
    line-height: 1.8;
}

.timeline dt{
	color: #4A3F35;
    font-size: 1.1rem;
}

.timeline dd{
    font-size: 0.9rem;
}

    
    


.buy-img{
    background:url("../img/haisou.jpg") no-repeat center;
    background-size: cover;
    width: 48%;
    height: 400px;
    margin-top: 30px;
}

.buy-line{
    width: 45%;
    padding: 0;
}
    

}



  /*-------------------------------------------
  よくあるご質問
  -------------------------------------------*/

.accordion {
    padding: 1rem;
    margin-bottom: 5rem;
}


.accordion-item {
    margin-bottom: 0.5rem;
}

.accordion-check {
    display: none;
}

.accordion-list {
  border-top: 1px solid #F0C4C4;
}

.accordion-label {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 0.5rem;
    background-color: #FFF6E5;
    font-size: 1rem;
    line-height: 1.5;
}

.accordion-label::after {
    position: absolute;
    top: 50%;
    right: 0px;
    height: 100%;
    width: 40px;
    transform: translateY(-50%) rotate(0deg);
    color: #d3ac1d;
    text-align: center;
    font-size: 1.5rem;
    content: '＋';
    font-weight: 600;
}

.accordion-box {
    height: 0;
    overflow: hidden;
    opacity: 0;
    background-color: #FFF6E5;
    transition: all .5s;
}

.accordion-check:checked~.accordion-box {
    height: auto;
    opacity: 1;
    padding: 1rem;
}

.accordion-check:checked+.accordion-label:after {
    transform: translateY(-50%) rotate(45deg);
}


.accordion-box p {
    display: flex;
    justify-content: left;
    line-height: 1.5;
}


.accordion-icon {
    font-family: "Roboto", sans-serif;
    margin-right: 8px;
    color: #d3ac1d;
    font-size: 1.2em; /* 親要素(.faq-question)のフォントサイズ基準 */
    font-weight: 500;
}


/* PC表示（幅800px以上） */
@media (min-width: 800px) {
    
   .accordion {
    width: 70%
} 
    
}



  /*-------------------------------------------
  Footer
  -------------------------------------------*/


.site-footer {
    background-color: #F0C4C4; 
    padding: 2rem 1rem 1rem;
    font-size: 0.9rem;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.footer-left {
    text-align: center;
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-address {
    text-align: center;
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.footer-nav a {
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: #769C56;
    transition: all .3s;
}

.footer-sns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.footer-sns img {
    width: 24px;
    height: 24px;
}

.footer-copy {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #4A3F35;
}

/* PC表示（800px以上） */
@media (min-width: 800px) {
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        max-width: 95%;
        margin: 0 auto;
    }
    
    .footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 1rem;
   }
    
    .footer-left {
        text-align: left;
    }

    .footer-address {
        text-align: left;
    }

    .footer-right {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 1rem;
    }

    .footer-nav {
        justify-content: flex-end;
    }

    .footer-sns {
        justify-content: flex-end;
    }
}




