@charset "UTF-8";
/*** The new CSS reset - version 1.5.1 (last updated 1.3.2022) ***/
*:where(
    :not(iframe, canvas, img, svg, video, select, input):not(svg *, symbol *)
  ) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  /* scroll-behavior: smooth; */
}

a,
button {
  cursor: revert;
}

ol,
ul,
menu {
  list-style: none;
  padding: 0;
}

img {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

table {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
  word-break: break-all;
  word-wrap: break-all;
  text-align: left;
}

textarea {
  white-space: revert;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
}

:where([draggable="true"]) {
  -webkit-user-drag: element;
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial,
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #585858;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  letter-spacing: 0.1rem;
}

.btn {
  position: relative;
  border: 3px solid #58975c;
  display: block;
  width: 90%;
  background: #fff;
  border-radius: 5rem;
  text-align: center;
  color: #58975c;
  padding: 12px 0;
  font-weight: bold;
  margin: 30px auto 0;
  -webkit-box-shadow: 3px 3px 0px #e4e4e4;
  box-shadow: 3px 3px 0px #e4e4e4;
  max-width: 350px;
}

.btn::after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  border-top: 2px solid #7a0;
  border-right: 2px solid #7a0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-size: contain;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.pc {
  display: none !important;
}
@media screen and (min-width: 700px) {
  .sp {
    display: none !important;
  }
  .pc {
    display: block !important;
  }
}

section div {
  width: 95%;
  margin: 0 auto;
  text-align: center;
}
#mainvisual img {
  width: 100%;
  max-width: 100%;
}
.main_line {
  max-width: 800px;
  padding: 30px 0;
  margin: 0 auto;
}
.down_triangle_white {
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid #fff;
}
.down_triangle_grey {
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid #f4f4f4;
}
@media screen and (min-width: 700px) {
  .main_line {
    padding: 50px 0;
  }
}
#mainbottom {
  background: #f4f4f4;
}
.mainbottom-title {
  margin: 30px auto;
}
.cta-flexbox {
  width: 95%;
  margin: 0 auto;
}
.cta-flexbox img {
  margin: 20px auto;
}
.special-price {
  background: #fd8900;
  padding: 50px 0;
  margin-top: 30px;
  max-width: 100%;
  width: 100%;
}
.special-price img {
  max-width: 800px;
  width: 95%;
}
@media screen and (min-width: 500px) {
  .mainbottom-title {
    max-width: 800px;
  }
  .cta-flexbox {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    gap: 4%;
  }
  .cta-flexbox li {
    width: 48%;
  }
}

#sec01 {
  background: #f4f4f4;
}

.sec01-content {
  padding-top: 50px;
}
.sec02-content {
  padding-top: 50px;
}
.sec03-title {
  width: 60%;
  max-width: 800px;
  margin: 40px auto 30px;
}
.sec03-content {
  background: #fef064;
  width: 100%;
  padding: 20px 10px;
}
#sec04 {
  padding: 50px 0;
  background: #f4f4f4;
}
#sec04 .sec04-title {
  max-width: 400px;
  width: 60%;
}
/**
 * list-style: none; ←デフォルト三角削除（Chrome非対応）
 * cursor: pointer; ←カーソルをポインターに
**/

details summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 10px 50px 10px 20px;
  background: #fff;
  color: #242323;
  font-weight: bold;
  text-align: left;
  border: #6a6a6a solid 0.5px;
}
/**
 * Chrome用のデフォルト三角削除
**/
details summary::-webkit-details-marker {
  display: none;
}
/**
 * Font Awesomeのプラスアイコン使用
**/
details summary::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: FontAwesome;
  content: "\f067";
  margin-right: 20px;
}
/**
 * アコーディオンがオープン時はマイナスアイコンに変更
**/
details[open] summary::after {
  content: "\f068";
}

details p {
  margin: 0;
  padding: 20px;
  text-align: left;
}
details span {
  background: #ff700a;
  color: #fff;
  font-weight: bold;
  border-radius: 50rem;
  padding: 0 5px 2px;
  margin-right: 10px;
}

details {
  max-width: 1000px;
  margin: 30px auto;
}
details:not(:last-child) {
  margin-bottom: 20px;
}
.sec05-content {
  padding: 50px 0;
  max-width: 800px;
}

#sec06 {
  background: #f4f4f4;
  padding: 100px 0;
  margin-top: 0;
  margin-bottom: 0;
}
.sec07-content {
  padding: 50px 0;
}
#contact {
  background: #fff;
  margin-top: 0;
  margin-bottom: 0;
  padding: 50px 0;
}
.contact_title {
  max-width: 400px;
}
/* --------------------
ハンバーガーメニュー 
----------------------- */

/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 0px;
  right: 0;
  z-index: 100;
  cursor: pointer;
  width: 80px;
  height: 80px;
  border-radius: 0 0 0 20px;
  position: fixed;
  padding: 0 0 18px;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: "";
  display: block;
  height: 4px;
  width: 34px;
  border-radius: 3px;
  background: #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
}

.drawer_open:after {
  position: absolute;
  content: "";
  bottom: 16px;
  color: #000;
  font-size: 11px;
  font-weight: bold;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
.sp_navbtn.open .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
.sp_navbtn.open .drawer_open span::before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sp_navbtn.open .drawer_open span::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  bottom: 100%;
  left: 0%;
  /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-align: center;
  padding-top: 25px;
}

.nav_list {
  list-style: none;
}

.nav_item a {
  color: #000;
  text-decoration: none;
}

/* アイコンがクリックされたらメニューを表示 */
.nav_content.open {
  bottom: 0;
  /* メニューを画面に入れる */
}

/*ハンバーガーメニュー内容*/
@media screen and (max-width: 699px) {
  .nav_content ul.sp {
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 20px;
  }
  .nav_content ul:first-child img {
    width: 60%;
  }
  .nav_content ul.sp a {
    color: #000;
    border-bottom: 1px solid #bfbfbf;
    padding-bottom: 3px;
  }

  .nav_content ul:first-child a {
    display: block;
    border-bottom: 1px dashed #e3e3e3;
    width: 90%;
    margin: 0 auto;
    padding: 6px 0;
    font-size: 18px;
    color: #000;
  }
}
/* --------------------
header
----------------------- */
header {
  position: fixed;

  width: 100%;
  z-index: 100;
}
h1#logo {
  z-index: 100;
}
h1#logo img {
  max-width: 180px;
  margin-block: 20px;
  margin-left: 15px;
}
.top_btn {
}
.top_btn img {
  background: #06c755;
  width: 180px;
  padding: 10px;
  margin: 5px 10px;
}

@media screen and (min-width: 700px) {
  header {
    width: 100%;
    background: #fff;
    position: fixed;
    margin-inline: auto;
    padding: 0;
    z-index: 2;
    top: 0;
  }
  header div.flexbox {
    display: flex;
    margin-left: 2%;
  }

  .drawer_open {
    display: none;
  }
  .nav_content {
    position: unset;
    margin-block: auto;
    padding-right: 1%;
    padding-left: 1%;
    padding: 0;
  }

  .nav_content ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 0 auto;
    /* row-gap: 10px; */
  }

  .nav_content a {
    color: #000;
    /* border-right: 1px solid #e3e3e3;*/
    padding: 0 10px;
    font-size: 15px;
    letter-spacing: 0.15em;

    letter-spacing: 1px;
  }

  .nav_content li:nth-child(4) a {
    /* border-right: none; */
  }

  .nav_content li:last-child a {
    border-right: none;
  }
}

/* --------------------
footer 
----------------------- */
footer {
  background: #f4f4f4;
  margin: 0;
}
footer .f_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;

  margin-bottom: 10px;
}
footer li a {
  color: #fff;
  border-right: 1px solid #fff;
  padding: 0 15px;
  font-size: 15px;
  letter-spacing: 0.15em;
  font-weight: bold;
  letter-spacing: 1px;
}
.nav_content li:nth-child(4) a {
  /* border-right: none; */
}

footer li:last-child a {
  border-right: none;
}

footer img {
  display: block;
  width: 90%;
  max-width: 250px;
  padding-top: 50px;
}

footer ul.info {
  margin: 40px 0 10px;
  text-align: center;
  padding: 60px 0;
}
footer > p {
  color: #000;
  font-size: 12px;
  text-align: center;
  padding: 6px 0;
}
footer > p.copy {
  background: #fff;
  margin-top: 50px;
}

/* --------------------
form 
----------------------- */
.form-wrap {
  max-width: 1000px;
  background: #fff;
  padding: 50px 10px;
  margin: 20px auto;
}
form {
  margin: 50px auto;
  max-width: 800px;
  width: 95%;
  font-weight: bold;
}

form p {
  margin-bottom: 30px;
  font-size: 20px;
  text-align: left;
}

form input,
form textarea {
  border-bottom: 2px solid #d6d6d6;
  padding: 4px;
}

form input[type="submit"] {
  -webkit-appearance: none;
  background: #ffaa55;
  border-radius: 10px;
  width: 250px;
  text-align: center;
  color: #fff;
  margin-inline: auto;
  display: block;
  padding-block: 10px;
  font-size: 18px;
  margin: 40px auto;
}

td {
  padding: 10px 0 10px 5px;
  width: 70%;
}
@media screen and (max-width: 700px) {
  form p {
    font-size: 15px;
  }
}

span.req {
  color: #ffaa55;
}
