@charset "UTF-8";

body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img,
dl,
dt,
dd,
ol,
ul,
li,
footer,
header,
section {
   margin: 0;
   padding: 0;
   border: 0;
   font-size: 16px;
   font: inherit;
   vertical-align: baseline;
   box-sizing: border-box;
   color: #574537;
}

ol,
ul {
   list-style: none;
}

a {
   text-decoration: none;
   transition: .3s;
}

html,
body,
button,
input,
select,
textarea {
   font-family: YakuHanJP_Noto, ryo-gothic-plusn, Zen Maru Gothic, Hiragino Kaku Gothic ProN, Hiragino Sans, Yu Gothic Medium, Yu Gothic, Meiryo, Helvetica Neue, Helvetica, Arial, sans-serif;
}

.sp_only {
   display: none;
}

@media screen and (max-width:500px) {
   .sp_only {
      display: block;
   }
}

body {
   position: relative;
}

#wrapper {
   position: relative;
   width: 100%;
   max-width: 39rem;
   margin: 0 auto;
   min-height: 100vh;
   /* overflow: hidden; */
   z-index: 1;
}

#pc_bg {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100vh;
   z-index: -1;
   display: flex;
   background: url(../images/bg_PC.png) no-repeat center top;
   background-size: cover;
}

img {
   max-width: 100%;
   padding: 10px;
}

.container {
   max-width: 500px;
   background-color: #fffae6;
   margin: 0 auto;
   box-shadow: 0px 0px 10px 5px rgba(1, 0, 0, 0.1);
}

.header {
   position: sticky;
   top: 0;
   background: rgba(255, 250, 230, 0.5);
   box-sizing: border-box;
   width: 100%;
   height: 100px;
   display: flex;
   justify-content: space-between;
   z-index: 100;
}

.line_button {
   display: block;
   width: 300px;
   height: 70px;
   text-align: center;
   margin-top: 15px;
   margin-right: 10px;

}

.line_button a {
   color: #fff;
   font-weight: 700;
   font-size: 1.5rem;
   display: block;
   padding: 5px 0 0 0;
   border: 3px solid #fff;
   background-color: #06c755;
   border-radius: 100px;
   box-shadow: 0 4px 6px #ccc;
}

.line_button a:before {
   content: '';
   display: inline-block;
   width: 50px;
   height: 50px;
   background-image: url(../images/line.svg);
   background-size: contain;
   vertical-align: middle;
   margin: 0 5px 5px 0;
}

.logo_icon {
   padding: 0 0 0 5px;
}

.logo_icon img {
   width: 5.5rem;
}

.fadein {
   opacity: 0;
   transition: 1.2s;
}

.scrollin {
   opacity: 1;
}

.note {
   font-size: 1.2rem;
}

.fadein_animation {
   animation: fade-in 3s;
   animation-fill-mode: forwards;
}

@keyframes fade-in {
   from {
      opacity: 0;
   }

   to {
      opacity: 1;
   }
}

@media screen and (max-width: 380px) {
   .line_button {
      max-width: 250px;
   }
}

/*------------メインビジュアル------------*/
.maincopy_img {
   margin-top: -60px;
   position: relative;
   z-index: 10;
}

.fluffy {
   position: relative;
   z-index: 20;
   margin-top: -25%;
   margin-bottom: -30%;
   text-align: right;
   /* アニメーション名 アニメーションにかかる時間 アニメーションの繰り返し回数 */
   /* fluffy 3秒 無限ループ */
   animation: fluffy 3s infinite;
}

.fluffy img {
   width: 150px;
}

@keyframes fluffy {

   0%,
   100% {
      transform: translateY(0);
   }

   50% {
      transform: translateY(-20px);
   }
}

@media screen and (max-width: 400px) {
   .fluffy img {
      width: 120px;
   }

}

/*----------------problem----------------*/
.problem_container {
   text-align: center;

}

.problem_ttl {
   font-size: 1.3rem;
   font-weight: 700;
   text-align: center;
   color: #5c3723;
   margin-top: 30px;
}

.problem_img img {
   margin-top: 20px;
}

.hard_img img {
   width: 85%;
}

.main_detail_container {
   background-color: #ffe791;
   padding-top: 60px;
   margin-top: 20px;
   position: relative;

}

.main_detail_container::before {
   content: "";
   position: absolute;
   height: 60px;
   width: 50%;
   clip-path: polygon(50% 50%, 0% 0%, 100% 0%);
   background-color: #fffae6;
   left: 0;
   right: 50%;
   transform: translatex(50%);
   top: 0;
}

.collabo img,
.main_detail img {
   padding: 0 10px;
}

.main_detail {
   margin-top: -20px;
   padding-bottom: 60px;
}

/*----------------about----------------*/
.about_container {
   background-color: #f59600;
}

.about_ttl img {
   position: relative;
   z-index: 1;
   margin-top: -35px;
}

.about_txt {
   color: #fff;
   font-size: 1.2rem;
   font-weight: bold;
   letter-spacing: 0.1rem;
   padding: 20px;
   line-height: 2rem;
}

.merit {
   margin: 0 auto;
   position: relative;
}

.merit_img {
   height: 100%;
   margin: 0 auto;
}

.merit_txt {
   width: 80%;
   font-size: 1.3rem;
   font-weight: bold;
   letter-spacing: 0.1rem;
   position: absolute;
   top: 32%;
   left: 50%;
   transform: translate(-50%, -50%);
}

.about_machine {
   text-align: center;
   background-color: #ffe791;
   padding: 30px 0;
   margin-top: 40px;
}

.about_machine_img {
   margin-top: -50px;
}

.about_machine_ttl {
   position: relative;
   padding: .5rem .7rem;
   border-radius: 10px;
   background-color: #ed6d34;
   color: #fff;
   font-size: 1.5rem;
   letter-spacing: 0.2rem;
   font-weight: bold;
   display: inline-block;
   padding: 5px 30px;
   margin: 20px 0 30px;
   text-align: center;
   z-index: 5
}

.about_machine_ttl::after {
   content: '';
   position: absolute;
   top: 100%;
   left: 45%;
   width: 0;
   height: 0;
   border: 10px solid transparent;
   border-top: 10px solid #ed6d34;
}

.about_machine_box {
   background-color: #fffbe9;
   border-radius: 20px;
   padding: 20px;
   margin: 10px;
}

.about_machine_txt {
   font-size: 1.1rem;
   font-weight: bold;
   text-align: left;
   line-height: 1.8rem;
}

.about_machine_note {
   color: #ea5520;
}

@media screen and (max-width: 400px) {
   .merit_txt {
      width: 85%;
      font-size: 1.1rem;
   }

}

/*----------------menu----------------*/
.menu {
   background-color: #f59600;
   padding: 10px;
}

.menu_container {
   background-color: #fffbe9;
   border-radius: 20px;
   margin: 60px 0 40px 0;
   padding: 10px;
}

.menu_copy {
   margin: -30px 0 0 0;
   font-size: 1.4rem;
   font-weight: bold;
   letter-spacing: 0.1rem;
   text-align: center;
}

.menu_copy::before {
   content: '';
   display: inline-block;
   width: 30px;
   height: 40px;
   background-image: url(../images/spoon.png);
   background-size: contain;
   background-repeat: no-repeat;
   background-position: left;
   vertical-align: bottom;
}

.menu_copy::after {
   content: '';
   display: inline-block;
   width: 30px;
   height: 40px;
   background-image: url(../images/fork.png);
   background-size: contain;
   background-repeat: no-repeat;
   background-position: right;
   vertical-align: bottom;
}

.menu_txt {
   margin: 0 0 15px 5px;
}

.menu_ttl img {
   padding: 12%;
   margin-top: -22%;
}

.menu_image img {
   margin-top: -40px;
}

.menu_catch img {
   width: 40%;
   margin-bottom: -80px;
}

.menu_catch {
   text-align: right;
   margin-right: -10px;
   position: relative;
   z-index: 1;
}

.menu_ex {
   background-color: #fff;
   border: 5px solid #ea5520;
   border-radius: 15px;
   padding: 10px;
   text-align: center;
   margin: 20px 0 0;
}

.menu_ex:nth-of-type(2) {
   margin-top: -20px;
}

.menu_ex_ttl {
   font-size: 1.5rem;
   font-weight: bold;
}

.menu_ex_for {
   font-size: 1rem;
}

.menu_ex_point {
   font-weight: bold;
   font-size: 1.1rem;
}

.menu_ex_value {
   color: #ea5520;
}

.menu_ex_price {
   font-size: 2.3rem;
   font-weight: bold;
   color: #ea5520;
   letter-spacing: 0.2rem;
}

.en {
   font-size: 1.4rem;
   color: #ea5520;
}

.menu_ex_case_02 {
   background-color: #ffe791;
   border-radius: 100px;
   padding: 5px 20px;
   display: inline-block;
   margin-bottom: 10px;
}

.menu_detail_txt {
   margin-top: 20px;
}

.menu_note {
   color: #ea5520;
}

.menu_ex_note img {
   width: 40%;
}

.menu_ex_note {
   text-align: right;
   margin-right: -15px;
   margin-bottom: -40px;
   position: relative;
   z-index: 1;
}

@media screen and (max-width: 400px) {
   .menu_ttl img {
      padding: 5%;
      margin-top: -16%;
   }

   .menu_ex_note img {
      width: 45%;
   }

   .menu_ex_ttl {
      margin-top: 10px;
      line-height: 1;
   }

   .menu_ex_point {
      margin-top: 10px;
   }

   .menu_ex_case_03 {
      font-size: 0.9rem;
   }

   .menu_copy {
      margin: 0 0 0 5px;
   }

}

@media screen and (max-width: 350px) {
   .menu_copy {
      font-size: 1.3rem;
   }
}

/*----------------使い方----------------*/
.howto_container {
   background-color: #ffe791;
   padding: 40px 10px 10px;
}

.service_ttl_sub {
   display: flex;
   justify-content: center;
   align-items: center;
   color: #574537;
   font-size: 1.3rem;
   font-weight: bold;
   margin-bottom: 10px;
   text-align: center;
   letter-spacing: 0.1rem;
}

.service_ttl_sub::before,
.service_ttl_sub::after {
   width: 3px;
   height: 40px;
   background-color: #574537;
   content: '';
}

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

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

.howto_ttl img {
   padding: 20px;
}

.service_ttl img {
   padding: 10px;
}

.howto_contents {
   padding: 30px 0;
}

.howto_item img {
   margin-top: -35px;
}

.howto_1 {
   max-width: 230px;
}

.howto_2 {
   max-width: 280px;
}

.howto_3 {
   max-width: 180px;
}

.howto_4 {
   max-width: 200px;
}

.howto_item {
   background-color: #fffbe9;
   border: 3px solid #ffda2a;
   width: 100%;
   padding: 5px 20px 0;
   border-radius: 20px;
   text-align: center;
   margin-bottom: 20px;
   position: relative;
   display: block;
}

.howto_detail,
.howto_detail_note {
   text-align: left;
   font-size: 1.1rem;
   font-weight: bold;
   letter-spacing: 0.1rem;
}

.howto_detail {
   margin-bottom: 20px;
}

.howto_detail_note {
   position: relative;
   border-radius: 10px;
   background-color: #ed6d34;
   color: #fff;

   display: inline-block;
   width: 100%;
   margin: 10px 0 20px;
   text-align: left;
   padding: 10px 20px;
}

.howto_detail_note::before {
   content: '';
   position: absolute;
   bottom: 100%;
   left: 45%;
   width: 0;
   height: 0;
   border: 15px solid transparent;
   border-bottom: 15px solid #ed6d34;
}

.however {
   color: #fff;
   font-weight: bold;
   font-size: 1.4rem;
}

.flow_arrow {
   width: 90px;
   margin: 0 auto 20px;
}

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

   .service_ttl_sub::before,
   .service_ttl_sub::after {
      width: 2px;
      height: 50px;
      background-color: #574537;
      content: '';
   }

   .flow_arrow {
      width: 80px;
   }

}

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

   .service_ttl_sub {
      font-size: 1.1rem;
   }

   .flow_arrow {
      width: 70px;

   }

   .however {
      color: #fff;
      font-weight: bold;
      font-size: 1.3rem;
   }

}

/*----------------demo----------------*/
.demo {
   padding: 30px 10px;
}

.demo_ttl {
   display: inline-block;
   padding: 0 4rem;
   color: #574537;
   margin: 20px 0;
   font-size: 1.5rem;
   font-weight: bold;
   position: relative;
   left: 50%;
   transform: translateX(-50%);
}

.demo_ttl::before,
.demo_ttl::after {
   content: '';
   display: inline-block;
   position: absolute;
   top: 50%;
   width: 45px;
   height: 2px;
   background-color: #574537;
}

.demo_ttl::before {
   left: 0;
}

.demo_ttl::after {
   right: 0;
}

.demo_table {
   border-collapse: collapse;
   background-color: #fff;
   border: solid 2px #4f2411;
   width: 100%;
   margin-top: 20px;
}

.demo_table th,
.demo_table td {
   border: solid 1px black;
   padding: 10px;
}

.demo_table th {
   background: #f5d334;
   /*背景色*/
}

.demo_txt {
   padding: 15px;
}

/*----------------よくある質問----------------*/
.faq_container {
   margin: 40px auto 0;
   background-color: #ffe791;
   padding: 40px 0;
}

.faq_ttl {
   display: inline-block;
   position: relative;
   font-size: 1.5rem;
   color: #eb6428;
   font-weight: bold;
   margin: 0 0 30px 0;
   left: 50%;
   transform: translateX(-50%);
}

.faq_section {
   padding: 0 10px;
}

.accordion {
   margin-top: 10px;
}

.accordion_area .accordion .accordion_header {
   background-color: #fffbe9;
   border: 2px solid #ffda2a;
   padding: 1.5rem 4rem 1.5rem 2rem;
   position: relative;
   z-index: +1;
   cursor: pointer;
   transition: .2s;
   text-align: left;
}

.accordion_area .accordion .accordion_header:not(.open):hover {
   background-color: #fff;
}

.accordion_area .accordion:nth-child(odd) .accordion_header {
   background-color: #fffbe9;
}

.accordion_area .accordion:nth-child(odd) .accordion_header:not(.open):hover {
   background-color: #fff;
}

.accordion_area .accordion .accordion_header .ac_box {
   position: absolute;
   top: 50%;
   right: 2rem;
   width: 20px;
   height: 20px;
   margin-top: -10px;
}

.accordion_area .accordion .accordion_header .ac_box:before,
.accordion_area .accordion .accordion_header .ac_box:after {
   position: absolute;
   content: "";
   margin: auto;
   box-sizing: border-box;
   vertical-align: middle;
}

.accordion_area .accordion .accordion_header .ac_box:before {
   border-top: 2px solid #574537;
   width: 20px;
   height: 0;
   top: 0;
   bottom: 0;
   right: 0;
}

.accordion_area .accordion .accordion_header .ac_box:after {
   border-left: 2px solid #574537;
   width: 0;
   height: 20px;
   top: 0;
   bottom: 0;
   right: 9px;
   transition: .3s;
}

.accordion_area .accordion .accordion_header.open .ac_box:after {
   height: 0;
}

.accordion_area .accordion .ac_inner {
   display: none;
   padding: 1.5rem 2rem 1.5rem 2rem;
   border-left: 2px solid #ffda2a;
   border-right: 2px solid #ffda2a;
   border-bottom: 2px solid #ffda2a;
   box-sizing: border-box;
   background: #fff;
   text-align: left;
}

.p-faq_headinner {
   display: block;
   padding-left: 25px;
   position: relative;
   line-height: 1.5;
}

.p-faq_headinner::before {
   position: absolute;
   left: 0;
   content: "Q．";
   color: #574537;
   font-size: 1.1rem;
   font-weight: bold;
}

.p-faq_headinner p.p-faq_q-txt {
   font-size: 1.1rem;
}

.p-faq__bodyinner {
   display: block;
   padding-left: 25px;
   position: relative;
   line-height: 1.5;
}

.p-faq__bodyinner::before {
   position: absolute;
   left: 0;
   content: "A．";
   color: #ed6d34;
   font-size: 1.1rem;
   font-weight: bold;
}

.p-faq__bodyinner p.p-faq__a-txt {
   font-size: 1rem;
}

.faq__list__more__block {
   display: none;
}

.faq__list__more {
   cursor: pointer;
}

.faq__list__more__text {
   margin: 20px 0 10px;
}

.faq__list__more__text--arw img {
   width: 30px;
}

.faq__list__more__text--reverse img {
   width: 30px;
   transform: rotate(180deg);
}

.link_info {
   text-decoration: underline;
   color: #009cd0;
}

/*--------------CTA------------------*/
.cta_container {
   background-color: #f59600;
   padding: 20px;
   text-align: center;
}

.cta_ttl {
   display: flex;
   justify-content: center;
   align-items: center;
   color: #fff;
   font-size: 1.5rem;
   font-weight: bold;
   margin-bottom: 20px;
   margin-top: 10px;
   text-align: center;
   letter-spacing: 0.2rem;

}

.cta_ttl::before,
.cta_ttl::after {
   width: 3px;
   height: 30px;
   background-color: #fff;
   content: '';
}

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

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

.cta_txt {
   color: #fff;
   font-size: 1.3rem;
   letter-spacing: 0.1rem;
   font-weight: bold;
   line-height: 3rem;
}

.highlight {
   color: #fff;
   font-size: 1.3rem;
   letter-spacing: 0.2rem;
   font-weight: bold;
   background: linear-gradient(transparent 50%, #eb612a 50%);
   padding-bottom: 0.1rem;

}

.highlight_number {
   color: #fff;
   font-size: 2.5rem;
}

.line_button_big {
   width: 100%;
   margin: 30px 0;

}

.line_button_big a {
   font-size: 2rem;
   padding: 10px 0 5px 0;
   letter-spacing: 0.1rem;
   box-shadow: 0 5px 8px #a56b3f;
}

@media screen and (max-width: 400px) {
   .cta_ttl {
      font-size: 1.4rem;
   }

   .cta_ttl::before {
      margin-right: 15px;
   }

   .cta_ttl::after {
      margin-left: 10px;
   }

   .line_button_big a {
      font-size: 1.5rem;
   }

}

@media screen and (max-width: 350px) {
   .cta_ttl {
      font-size: 1.2rem;
   }

}

/*--------------フッター------------------*/
.footer {
   background-color: #fff;
   text-align: center;
   padding: 30px 0 0;
}

.fotter_box {
   max-width: 1200px;
   margin: 0 auto;
   display: flex;
   justify-content: space-between;
   gap: 20px;
   align-items: center;
   flex-direction: column;
}

.footer_logo_box {
   margin: 20px auto;
   display: flex;
   justify-content: center;
   gap: 40px;
}

.footer_logo {
   display: flex;
   align-items: center;
   gap: 10px;
}

.footer_logo_img {
   width: 200px;
}

.footer_logo_ttl {
   font-size: 0.9rem;
   font-weight: bold;
   letter-spacing: 0.1rem;
}

.tohonav {
   display: flex;
   justify-content: center;
   gap: 30px;
   margin: 0 auto 30px;
   flex-wrap: wrap;
   padding-right: 30px;
}

.tohonav_item {
   font-size: 0.8rem;
}

.copy {
   font-size: 0.7rem;
   background-color: #ffe641;
   padding: 10px;
}

@media screen and (max-width: 400px) {
   .tohonav {
      gap: 20px;
      padding-right: 40px;
   }

   .copy {
      font-size: 0.6rem;
   }

}

/* -------------トップに戻る---------------*/
#page-top {
   bottom: 0;
   position: fixed;
   right: 0;
   z-index: 30;
}

#page-top a {
   height: 70px;
   padding: 0;
   width: 70px;
}


#page-top a img {
   width: 80px;
}