@charset "utf-8";

/* ---------------------------------------------------
   File: faq.css
   Version: 2.0.0
   Update: 2025-04-08
   Author: https://flowlab.co.jp

   (c)2007-2025 Flowlab inc. All Rights Reserved.
--------------------------------------------------- */



/* =======================================================================================================================

   WIDE DESKTOP LAYOUT

======================================================================================================================= */

/* ====================================================
		Layout
==================================================== */
#main .row {
  width: 840px;
  padding: 0;
  position: relative;
}
#main::after {
  width: 270px;
  height: 270px;
  background: url("../img_common/img_dot_01.png") no-repeat 0 0 / 270px;
  bottom: 140px;
  left: inherit;
  right: 8%;
}


/* ====================================================
		Page Title
==================================================== */
/* -------------------------------
		Animation - Decoration
------------------------------- */
#pageTitleArea::before {
  width: 118px;
  height: 176px;
  background: url("../img_common/img_decoration_11.png") no-repeat 0 0 / 118px 176px;
  top: 90px;
  left: 20%;
}
#pageTitleArea::after {
  width: 128px;
  height: 180px;
  background: url("../img_common/img_decoration_12.png") no-repeat 0 0 / 128px 180px;
  top: 100px;
}

/* -------------------------------
		Animation - Paints
------------------------------- */
#main h1::before {
  width: 298px;
  height: 280px;
  background: url("../img_common/img_texture_pink_07.png") no-repeat 0 0 / 298px 280px;
  animation: fuwafuwa3 2s infinite ease-in-out .2s alternate;
  top: 70px;
  left: -100px;
}
#main h1::after {
  width: 182px;
  height: 126px;
  background: url("../img_common/img_texture_yellow_03.png") no-repeat 0 0 / 182px 126px;
  animation: fuwafuwa2 2.5s infinite ease-in-out .2s alternate;
  top: 200px;
  left: 6%;
}
#main h1 span::before {
  width: 272px;
  height: 204px;
  background: url("../img_common/img_texture_green_07.png") no-repeat 0 0 / 272px 204px;
  animation: fuwafuwa3 2s infinite ease-in-out .2s alternate;
  top: 180px;
  right: -60px;
}
#main h1 span::after {
  width: 270px;
  height: 270px;
  background: url("../img_common/img_dot_01.png") no-repeat 0 0 / 270px;
  top: 700px;
  left: 4%;
}


/* ====================================================
		Accordion
==================================================== */
.accordion-area {
  width: 100%;
  margin: 0 auto;
}
.accordion-area li {
  background: #fff;
  border-radius: 40px;
  margin-bottom: 20px;
}
.accordion-area section {
}

/* -------------------------------
		Title - Question
------------------------------- */
#main h2.question {
  position: relative;
  cursor: pointer;
  font-size: 2.4rem;
  color: #774935;
  text-align: left;
  line-height: 1.5;
  padding: 45px 100px 45px 130px;
  transition: all .5s ease;
  background: no-repeat left 40px top 30px / 66px;
}
#main li:nth-child(4n+1) h2.question { background-image: url("../faq/images/icon_question_green.png"); }

#main li:nth-child(4n+2) h2.question { background-image: url("../faq/images/icon_question_blue.png"); }
#main li:nth-child(4n+3) h2.question { background-image: url("../faq/images/icon_question_orange.png"); }
#main li:nth-child(4n+4) h2.question { background-image: url("../faq/images/icon_question_pink.png"); }

/* Button / OPEN-CLOSE */
#main h2.question::after {
  position: absolute;
  content: '';
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  top: 50%;
  right: 10px;
}
#main h2.question::after {
  background: url("../faq/images/icon_plus.png") no-repeat 0 0 / 40px;
}
#main h2.question.close::after {
  background: url("../faq/images/icon_minus.png") no-repeat 0 0 / 40px;
}

/* -------------------------------
		Detail - Answer
------------------------------- */
#main .answer {
  display: none;
  border-top: 1px dashed #e2dbd8;
  padding: 30px 30px 30px 130px;
}

/* Button - Btn */
#main .answer .btn {
  width: 180px;
  font-size: 1.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-left: calc(100% - 180px);
  margin-top: 20px;
}
#main .answer .btn a {
  font-size: 1.4rem;
  overflow: hidden;
  border: 2px solid #774935;
  border-radius: 30px;
  text-align: center;
  letter-spacing: 0.05em;
  background: #fff;
  line-height: 1em;
  padding: 12px 20px;
  position: relative;
  transition: ease .2s;
  display: block;
}
#main .answer .btn a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 2px solid #774935;
  background:#774935;
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
#main .answer .btn a span {
  position: relative;
  z-index: 3;
  color: #774935;
  padding-top: 4px;
}
#main .answer .btn a:hover {
  opacity: 1;
}
#main .answer .btn a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
#main .answer .btn a:hover span {
  color: #fff;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {/*Safari Only Hack*/
  _::-webkit-full-page-media, _:future, :root #main .answer .btn a::before {
    content: none;
  }
  _::-webkit-full-page-media, _:future, :root #main .answer .btn a:hover span {
    opacity: 0.6;
  }
  _::-webkit-full-page-media, _:future, :root #main .answer .btn a:hover span {
    color: #774935;
  }
}

 /* Button - BtnColor */
#main .answer .btnColor {
  margin-top: 20px;
  margin-left: calc(100% - 250px);
}


/* ====================================================
		Contents
==================================================== */



/* ====================================================
		Sub Footer
==================================================== */
/* -------------------------------
		Animation - Paints
------------------------------- */
#subFooter::before {
  width: 442px;
  height: 302px;
  background: url("../img_common/img_texture_pink_04.png") no-repeat 0 0 / 442px 302px;
  animation: fuwafuwa3 2s infinite ease-in-out .2s alternate;
  bottom: 700px;
  right: -80px;
}
#subFooter::after {
  width: 432px;
  height: 246px;
  background: url("../img_common/img_texture_yellow_04.png") no-repeat 0 0 / 432px 246px;
  animation: fuwafuwa3 2s infinite ease-in-out .2s alternate;
  bottom: 1300px;
  left: -30px;
}







/* =======================================================================================================================

   TABLET

======================================================================================================================= */
@media screen and (min-width: 897px) and (max-width: 1299px) {
  
  /* ====================================================
      Layout
  ==================================================== */
  #main .row {
    width: inherit;
    padding: 0 50px;
  }
  #main::after {
    right: -4%;
  }

  /* ====================================================
      Page Title
  ==================================================== */
  /* -------------------------------
      Animation - Decoration
  ------------------------------- */
  #pageTitleArea::before {
    top: 110px;
    left: 15%;
  }
  #pageTitleArea::after {
    top: 120px;
    right: 8%;
  }
  /* ====================================================
      Page Title
  ==================================================== */
  /* -------------------------------
      Animation - Paints
  ------------------------------- */
  #main h1 span::after {
    left: -4%;
  }
  
  /* ====================================================
      Sub Footer
  ==================================================== */
  /* -------------------------------
      Animation - Paints
  ------------------------------- */
  #subFooter::before {
    bottom: 560px;
  }
}













/* =======================================================================================================================

   MOBILE

======================================================================================================================= */
@media screen and (max-width: 896px) {
  
  /* ====================================================
      Layout
  ==================================================== */
  #main .row {
    width: inherit;
    padding: 0 5%;
  }
  #main::after {
    width: 200px;
    height: 200px;
    background-size:  200px;
    bottom: 140px;
    left: inherit;
    right: -8%;
  }

  
  
  /* ====================================================
      Page Title
  ==================================================== */
  /* -------------------------------
      Animation - Decoration
  ------------------------------- */
  #pageTitleArea::before {
    width: 70px;
    height: 104px;
    background-size: 70px 104px;
    top: 90px;
    left: 8%;
  }
  #pageTitleArea::after {
    width: 72px;
    height: 101px;
    background-size: 72px 101px;
    right: 8%;
  }

  /* -------------------------------
      Animation - Paints
  ------------------------------- */
  #main h1::before {
    width: 170px;
    height: 160px;
    background-size: 170px 160px;
    top: 70px;
    left: -60px;
  }
  #main h1::after {
    width: 100px;
    height: 70px;
    background-size: 100px 70px;
    top: 150px;
    left: 5%;
  }
  #main h1 span::before {
    width: 150px;
    height: 112px;
    background-size: 150px 112px;
    top: 120px;
    right: -60px;
  }
  #main h1 span::after {
    width: 200px;
    height: 200px;
    background-size: 200px;
    left: -8%;
  }
  
  
  /* ====================================================
      Accordion
  ==================================================== */
  .accordion-area {
  }
  .accordion-area li {
    background: #fff;
    border-radius: 20px;
  }
  .accordion-area section {
  }

  /* -------------------------------
      Title - Question
  ------------------------------- */
  #main h2.question {
    font-size: 1.8rem;
    letter-spacing: 0.02em;
    padding: 25px 60px 25px 70px;
    background: no-repeat left 20px top 20px / 40px;
  }

  /* Button / OPEN-CLOSE */
  #main h2.question::after,
  #main h2.question.close::after {
    width: 30px;
    height: 30px;
    right: 0;
    background-size: 30px;
  }
  
  /* -------------------------------
      Detail - Answer
  ------------------------------- */
  #main .answer {
    padding: 30px;
  }
  
  /* Button - Btn */
  #main .answer .btn {
    width: 80%;
    margin: 20px auto 0;
  }

  
  
  /* ====================================================
      Contents
  ==================================================== */
  
  
  /* ====================================================
      Sub Footer
  ==================================================== */
  /* -------------------------------
      Animation - Paints
  ------------------------------- */
  #subFooter::after {
    bottom: 650px;
    right: 10px;
  }
  #subFooter::before {
    width: 230px;
    height: 157px;
    background-size: 230px 157px;
    bottom: 640px;
    right: -100px;
  }
  #subFooter::after {
    width: 240px;
    height: 137px;
    background-size: 240px 137px;
    bottom: 800px;
    left: -80px;
  }

}







