@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: "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;
}
section {
  margin-block: 100px;
}
@media screen and (max-width: 699px) {
  section {
    margin-block: 50px;
  }
}
section div {
  width: 95%;
  margin: 0 auto;
  text-align: center;
}
#mainvisual {
  background: #fcecec;
  background-size: cover;
  background-position: center;
  padding-block: 76px 40px;
  margin-top: 0;
}

#sec01 {
  margin-bottom: 0;
}
.sec01-top {
  background: url(../img/sec1-bk.png);
  background-size: cover;
  aspect-ratio: 512 / 119;
  align-content: center;
  width: 100%;
}
.sec01-top img {
  width: 60%;
}
.sec01-bottom {
  padding: 50px 0;
  background: #fadcdc;
  width: 100%;
}
.sec01-bottom > img {
  width: 90%;
}
.sec01-flexbox {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 50px auto;
  gap: 4%;
  width: 95%;
}
.sec01-flexbox li {
  width: 48%;
  margin: 20px 0;
}
@media screen and (max-width: 499px) {
  .sec01-flexbox {
    display: block;
  }
  .sec01-flexbox li {
    width: 100%;
  }
}
#sec02 {
  background: url(../img/sec2-bk.png);
  background-size: cover;
  margin: 0 auto;
}
#sec02 .price {
  margin: 20% 0 10%;
}
#sec02 .payment {
  background: #000000;
  width: 100%;
  padding: 50px 2%;
}

#sec03 {
  background: #e8e8e7;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
}
#sec03 .bkimg {
  width: 100%;
  max-width: 100%;
  position: absolute;

  top: 0;
}
#sec03 .text {
  margin: 10% 0;
  max-width: 1000px;
  position: relative;
}
.triangle-down {
  width: 0;
  height: 0;
  border-left: 200px solid transparent;
  border-right: 200px solid transparent;
  border-top: 100px solid black;
  margin: 0 auto;
}
@media screen and (max-width: 499px) {
  .triangle {
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-top: 50px solid black;
  }
}
.ctrblock {
  text-align: center;
  max-width: 1200px;
  width: 95%;
  margin: 50px auto;
}
.ctrblock .flexbox {
  display: flex;
  margin: 30px auto;
}

#sec04 {
  background: #fcecec;
  padding: 50px 0;
}
#sec07 {
  background: url(../img/sec7-bk.png);
  background-size: cover;
  padding: 40vw 0 10vw;
  margin-bottom: 0;
}
#sec08 {
  background: #fcecec;
  margin-top: 0;
  padding: 50px 0;
}
#sec10 {
  background: #fcecec;
  padding: 50px 0;
  margin-bottom: 0;
}
/* --------------------
ハンバーガーメニュー 
----------------------- */

/* チェックボックスを非表示にする */
.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.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;
  background: #fff;
  width: 100%;
  z-index: 100;
}
h1#logo {
  z-index: 100;
}
h1#logo img {
  max-width: 140px;
  margin-block: 20px;
  margin-left: 15px;
}
.top_btn {
  display: flex;
}
.top_btn img {
  max-width: 90px;
}

@media screen and (min-width: 700px) {
  header {
    width: 100%;
    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: #fff;
}
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: 200px;
  margin: 0 auto 16px;
}

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;
}

/* --------------------
form 
----------------------- */
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: #d72855;
  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;
  }
}
