@charset "utf-8";

/*-------------------------------------
設定
-------------------------------------*/
:root {
  --NotoSans: 'Noto Sans JP', sans-serif;
  --Mplus1: "M PLUS 1", sans-serif;
}

:root {
  --main-color: #3a3a3a;
  --sub-color: #eb6100;
  --accent-color: #88b929;
  --grad-main: linear-gradient(90deg, #eb7a00, #ebb100);
  --grad-sub: linear-gradient(90deg, #90c31f, #1fc364);
  --grad-hov: linear-gradient(90deg, #96d612, #12d657);
  --bg-main: #f5f2e9;
  --bg-sub: #f3e6c6;
}

/*-------------------------------------
共通
-------------------------------------*/
body {
  font-family: var(--NotoSans);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.75;
  color: var(--main-color);
  background-color: var(--bg-main);
}

img {
  max-width: 100%;
  height: auto;
  margin: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

.sp {
  display: none;
}
/* @media screen and (max-width: 767px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }
} */

a {
  display: inline-block;
  transition: 0.3s;
}
a:hover{
  opacity: 1;
}

.cta-wrap {
  margin: 60px auto 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  a._btn:hover img {
    filter: brightness(1.05) contrast(1.05) saturate(1.1);
    transition: filter 0.3s ease;
  }
}
/*-----------------------------
枠
-----------------------------*/
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}
.inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 0 40px;
  text-align: center;
}
section:nth-of-type(odd) {
  background: var(--bg-sub);
}
/* @media screen and (max-width: 767px) {
  .wrap {
    padding: 10px;
  }
  .inner {
    padding: 40px 0;
  }
} */


/*-----------------------------
ttl
-----------------------------*/
.ttl {
  margin: 20px auto 60px;
  position: relative;
  display: inline-block;
}
.ttl:before {
  content: '';
  position: absolute;
  top: -4em;
  right: -40px;
  background: url(../images/circ_01.png) no-repeat center center;
  background-size: contain;
  width: 109px;
  height: 56px;
}
.ttl:after {
  content: '';
  position: absolute;
  bottom: -2em;
  left: -40px;
  background: url(../images/circ_02.png) no-repeat center center;
  background-size: contain;
  width: 81px;
  height: 41px;
}
.ttl-inr {
  font-size: 55px;
  font-weight: 900;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.ttl-inr:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2em;
  height: 5px;
  background: var(--grad-main);
}
.sub_line {
  font-size: 30px;
  font-weight: 900;
  color: var(--accent-color);
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 45px;
}
.sub_line:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 23px;
  background: url("../images/line.png") no-repeat center bottom;
  background-size: contain;
}
p.note {
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 30px 0 0;
}
/* @media screen and (max-width: 767px) {
  .ttl-inr {
    font-size: 30px;
  }
} */



/*-----------------------------
header menu
-----------------------------*/
header {
  position: relative;
}

.js-menu-btn {
  width: 100px;
  height: 100px;
  position: fixed;
  top:0;
  right:0;
  cursor: pointer;
  transition: 0.3s;
  background-color: var(--bg-main);
  border-bottom-left-radius: 10px;
  z-index: 10;
}
.js-menu-btn span {
  position: absolute;
  width: 40px;
  height: 3px;
  background: var(--sub-color);
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .js-menu-btn:hover {
    filter: brightness(1.05) contrast(1.05) saturate(1.1);
    transition: filter 0.3s ease;
  }
}
.js-menu-btn span:nth-child(1) { top: 35%; }
.js-menu-btn span:nth-child(2) { top: 45%; }
.js-menu-btn span:nth-child(3) { top: 60%; background: none; }

.js-menu-btn.is-open span:nth-child(1) {
  transform: translateX(-50%) rotate(30deg);
  top: 45%;
}
.js-menu-btn.is-open span:nth-child(2) {
  transform: translateX(-50%) rotate(-30deg);
  top: 45%;
}
.js-menu-btn.is-open span:nth-child(3) {
  height: auto;
}
.js-menu-btn.is-open span:nth-child(3) img{
  display: none;
}
.js-menu-btn.is-open span:nth-child(3):after{
    content: '閉じる';
    color: var(--sub-color);
    font-size: 13px;
    font-weight: bold;
    position: absolute;
}

.js-nav {
  display: none;
  background-color: var(--bg-main);
  color: var(--sub-color);
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  z-index: 9;
  overflow: scroll;
}
.js-nav .logo {
  text-align: center;
}
.js-nav li {
  text-align: center;
}
.js-nav li a {
  position: relative;
  display: inline-block;
  width: 20em;
  color: var(--sub-color);
  text-decoration: none;
  padding: 40px 15px;
  font-weight: 900;
  font-size: 25px;
  text-align: left;
  border-bottom: 2px solid var(--sub-color);
}
.js-nav li a:after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 10px;
  border-right: 3px solid var(--sub-color);
  border-top: 3px solid var(--sub-color);
  display: inline-block;
  transform: rotate(45deg) translateY(-50%);
}
@media screen and (min-width: 768px) {
  .js-nav li a:hover{
    filter: brightness(1.05) contrast(1.05) saturate(1.1);
    transition: filter 0.3s ease;
  }
}

/*-----------------------------
kv
-----------------------------*/
#kv{
  position: relative;
}
h1.h1logo{
  position: absolute;
  top: 20px;
  left: 100px;
  width: 185px;
}
h1 span.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.catch {
  background: var(--grad-main);
  padding: 20px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.catch p {
  color: #fff;
  font-weight: 900;
  font-size: 30px;
  padding-right: 10px;
}
.catch a {
  max-width: 300px;
}


/*-----------------------------
problem
-----------------------------*/
#problem .inner {
  padding-top: 60px;
}
#problem h2 {
  font-weight: 900;
  font-size: 28px;
  text-align: center;
  margin-bottom: -120px;
  position: relative;
}
#problem h2 span {
  font-size: 1.8em;
}

#problem p {
  font-size: 28px;
  text-align: center;
  font-weight: 900;
  line-height: 1.4;
}
#problem p span {
  position: relative;
  display: inline-block;
}
#problem p span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.1em;
  height: 18px;
  background: #fffc70;
  opacity: 0.6;
  z-index: -1;
  border-radius: 2px;
}
#problem p span._highlight {
  font-size: 2em;
  color: var(--sub-color);
}
#problem p span:last-of-type {
  font-size: 1.4em;
}

/*-----------------------------
about
-----------------------------*/
#about p.text {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
}
#about h3 {
  margin: 40px 0 80px;
  font-size: 35px;
  font-weight: 900;
  line-height: 1.4;
}
#about h3 span {
  color: var(--sub-color);
}
#about h3 span._strong {
  font-size: 1.2em;
}
#about h3.sub-catch {
  margin-bottom: 30px;
}
#about .box {
  background: var(--bg-main);
  border-radius: 10px;
  box-shadow: 0 0 16px #e3d3aa;
  padding: 40px 20px;
  margin-bottom: 60px;
}
#about .box p.box-catch {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 30px;
}
#about .box p.box-text {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 10px;
  margin-left: 4em;
  margin-right: auto;
}
#about .col {
  display: flex;
  justify-content: center;
  gap: 60px;
}
#about .col p {
  font-size: 25px;
  font-weight: 700;
}
#about .col-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#about .col-item .col-img {
  margin-bottom: 15px;
  flex: 1;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#about p.note {
  text-indent: -.5em;
}

/*-----------------------------
point
-----------------------------*/
.point-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 16px #dedbd2;
  padding: 40px 30px;
  margin-bottom: 50px;
}
.point-box + .point-box{
  margin-top: 60px;
}
.point-ttl {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}
.point-ttl p {
  background: var(--sub-color);
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  line-height: 1.2;
  padding: 10px 15px;
}
.point-ttl p span {
  font-size: 30px;
  font-weight: 600;
  font-family: var(--Mplus1);
}
.point-ttl h3 {
  color: var(--sub-color);
  font-weight: 900;
  font-size: 30px;
}
.point-dtl {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.point-box:first-of-type .point-dtl {
  align-items: start;
}

.point-dtl p {
  font-size: 20px;
  font-weight: 600;
  text-align: left;
}
.point-dtl .icon {
  width: 23%;
}
.point-box:first-of-type .point-dtl .icon {
  margin-top: -20px;
}
.point-dtl .icon.pc {
  margin-top: -30px;
}
#point h4 {
  font-size: 35px;
  font-weight: 900;
  text-align: center;
  line-height: 1.5;
}

/*-----------------------------
items
-----------------------------*/
#items p.text {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
}
#items p.text span {
  color: var(--sub-color);
  font-size: 26px;
  font-weight: 900;
}
.item-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.item-box {
  flex: 1;
  background: var(--bg-main);
  border-radius: 10px;
  box-shadow: 0 0 16px #e3d3aa;
  padding: 30px 10px;
}
.item-box:last-of-type {
  display: flex;
}
.item-img,
.item-maker,
.item-price {
  padding:0 30px;
}
.item-col {
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: left;
}
.item-box:last-of-type .item-img {
  width: 45%;
}
.item-col .item-maker,
.item-col .item-price {
  padding: 0;
}
.item-maker {
  margin: 20px 0;
}
.item-name {
  margin-bottom: 20px;
  font-weight: 900;
  font-size: 25px;
  line-height: 1.2;
}
.item-name span {
  font-weight: 600;
  font-size: 16px;
}
.item-price {
  color: var(--sub-color);
  font-weight: 900;
  font-size: 35px;
  line-height: 1.2;
}
.item-price span {
  font-size: 18px;
}


/*-----------------------------
flow
-----------------------------*/
#flow .box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 16px #dedbd2;
  padding: 40px 30px;
  margin-bottom: 60px;
}
#flow .box .flow-img {
  margin-bottom: 35px;
}
#flow .box .col {
  background: var(--bg-main);
  padding: 30px;
  font-weight: 900;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 30px;
}
#flow .box .col .left {
  background: var(--sub-color);
  padding: 20px;
  color: #fff;
}
#flow .box .col .right {
  text-align: left;
}
#flow .note {
  text-align: center;
}


/*-----------------------------
qa
-----------------------------*/
.accordion {
  margin-bottom: 100px;
  text-align: left;
}
.js-accordion-item {
  border-bottom: 3px solid var(--main-color);
  position: relative;
}
.js-accordion-item span {
  font-family: var(--Mplus1);
  font-weight: bold;
  font-size: 24px;
  padding-right: 10px;
}
.js-accordion-title {
  padding: 50px 100px 50px 0;
  cursor: pointer;
  position: relative;
  font-weight: 900;
  font-size: 26px;
  text-indent: -3em;
  padding-left: 3em;
}
.js-accordion-title span {
  font-size: 36px;
}
.js-accordion-content {
  display: none;
  padding: 15px 30px 30px;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 600;
}

.js-accordion-btn {
  position: absolute;
  top: 50px;
  right: 10px;
  width: 60px;
  height: 60px;
}
.js-accordion-item:nth-of-type(1) .js-accordion-btn,
.js-accordion-item:nth-of-type(4) .js-accordion-btn,
.js-accordion-item:nth-of-type(5) .js-accordion-btn{
  top: 60px;
}
.js-accordion-btn:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 9999px;
  border: 4px solid var(--main-color);
  content: '';
  width: 60px;
  height: 60px;
}
.js-accordion-btn:after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%);
  transition: 0.3s;
  content: "+";
  font-weight: 600;
  font-size: 30px;
}
.js-accordion-item.is-open .js-accordion-btn::after {
  content: "−";
}

/*-----------------------------
footer
-----------------------------*/
footer .footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}
.company {
  margin-bottom: 30px;
}
.contact-txt {
  color: #eb6100;
  font-family: var(--Mplus1);
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}
.contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-family: var(--Mplus1);
  font-weight: bold;
  font-size: 18px;
}
.contact p {
  display: flex;
  gap: 10px;
}
.tel {
  font-size: 50px;
  align-items: center;
}
.tel span {
  width: 60px;
}
.time {
  line-height: 1.2;
}
.time span {
  background: var(--main-color);
  color: #fff;
  padding: 12px 10px;
}

.cta-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}
.cta-fixed-wrap {
  background: var(--grad-main);
  padding: 20px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
}
.cta-fixed-wrap .pc {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-fixed-wrap ._txt {
  margin-bottom: 10px;
  display: block;
  text-align: center;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.2;
}
.cta-fixed-wrap ._txt span {
  font-size: 21px;
}
.cta-fixed-wrap ._tel {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 33px;
  font-weight: 700;
  font-family: var(--Mplus1);
}
.cta-fixed-wrap ._time {
  font-size: 14px;
  font-weight: 700;
  font-family: var(--Mplus1);
  margin-bottom: 10px;
}
.cta-fixed-wrap .sp_box a {
  max-width: 347px;
}