@charset "UTF-8";
/* ---------------------------------------
基本情報
-----------------------------------------*/
html {
  overflow-y: scroll;
}

@media screen and (min-width: 921px) {
  html {
    font-size: 41.67%;
  }
  html.safari.mac {
    font-size: 6.67px;
  }
}
@media screen and (max-width: 920px) {
  html {
    font-size: 1.3333333333vw;
  }
}
*,
*:after,
*:before {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
time,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
img,
figure,
figcaption,
form,
input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  letter-spacing: 0;
  list-style-type: none;
  font-style: normal;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  word-break: break-all;
  line-break: strict;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  resize: none;
  outline: none;
  background: none;
}

select::-ms-expand {
  display: none;
}

button:hover {
  cursor: pointer;
}

img,
object {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  cursor: pointer;
}

/* responsive
--------------------------------*/
@media screen and (min-width: 921px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 920px) {
  .pc {
    display: none !important;
  }
}
/* base
--------------------------------*/
body {
  color: #1a1a1a;
  font-size: 1rem;
  text-align: left;
}

main {
  display: block;
  overflow: hidden;
}

section {
  position: relative;
}

.wrap {
  position: relative;
  width: 68rem;
  margin: 0 auto;
}

p,
th,
td,
dt,
dd,
li,
input,
button,
textarea {
  font-size: 3rem;
  line-height: 2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flex.reverse {
  flex-direction: row-reverse;
}

.left {
  float: left;
}

.right {
  float: right;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.tac {
  text-align: center;
}

.center {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.bold,
strong {
  font-weight: bold;
  font-weight: 700;
}

.fixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.color--1 {
  color: #e38320;
}

.color--2 {
  color: #515e13;
}

.blue2 {
  color: #00468b;
}

.yellow {
  color: #fcff8a;
}

.min {
  font-family: "Noto Serif JP", serif;
}

.en {
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

@media screen and (min-width: 921px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
  a {
    cursor: pointer;
    transition: opacity 0.3s ease;
  }
  a:hover {
    opacity: 0.6;
  }
}
/* ---------------------------------------
  contents_wrap
-----------------------------------------*/
.contents_wrap {
  position: relative;
  width: 100%;
}

.contents {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: #fff;
}

@media screen and (min-width: 921px) {
  .bg_main {
    width: 100%;
    height: 100%;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    background: url(../img/main_bg.png) no-repeat center top/cover;
  }
  .contents {
    max-width: 500px;
  }
  .cnt_l,
.cnt_r {
    width: calc((100% - 500px) / 2);
    height: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cnt_l {
    left: 0;
  }
  .cnt_l .contact {
    width: 344px;
    padding: 32px 24px;
    border-radius: 20px;
    background-color: #fff;
  }
  .cnt_l .contact *:not(.cta_btn *) {
    font-weight: 500;
    color: #313819;
    text-align: center;
  }
  .cnt_l .contact .logo {
    width: 290px;
    margin: 0 auto;
  }
  .cnt_l .contact .ttl {
    font-weight: 600;
    font-size: 32px;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-top: 20px;
  }
  .cnt_l .contact .ttl span {
    color: #e38320;
  }
  .cnt_l .contact .txt {
    margin-top: 10px;
    font-size: 20px;
    line-height: 1.75;
    letter-spacing: 0.04em;
    border-top: 1px solid #313819;
    border-bottom: 1px solid #313819;
    font-weight: 500;
    margin-bottom: 20px;
  }
  .cnt_l .contact .cta_btn {
    width: 290px;
    margin: 10px auto 0;
  }
  .cnt_l .contact .cta_btn a {
    height: 76px;
    padding: 14px 10px 14px 50px;
    border-radius: 10px;
    box-shadow: 0px 6px 0px 0px #c43d3d;
    transition: 0.3s box-shadow, 0.3s transform;
  }
}
@media screen and (min-width: 921px) and (any-hover: hover) {
  .cnt_l .contact .cta_btn a:hover {
    box-shadow: 0 0 0 0 #c43d3d;
    transform: translateY(6px);
  }
}
@media screen and (min-width: 921px) {
  .cnt_l .contact .cta_btn a::before {
    content: "";
    width: 29px;
    height: 21px;
    background: url(../img/btn_mail.svg) no-repeat center/100% auto;
    position: absolute;
    left: 13px;
    top: calc(50% - 19px);
  }
}
@media screen and (min-width: 921px) {
  .cnt_l .contact .cta_btn a p {
    font-size: 22px;
    letter-spacing: -0.01em;
  }
}
@media screen and (min-width: 921px) {
  .cnt_l .contact .cta_btn a p .time {
    font-size: 14.5px;
    margin-top: 0;
    margin-left: -24px;
  }
}
@media screen and (min-width: 921px) {
  .cnt_l .contact .tel {
    text-align: center;
    padding-bottom: 15px;
    margin: 15px auto 0;
  }
}
@media screen and (min-width: 921px) {
  .cnt_l .contact .tel .ttl_s {
    font-size: 18px;
    line-height: 1.7647058824;
    font-weight: 500;
    border-bottom: 1px solid #313819;
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 921px) {
  .cnt_l .contact .tel .num {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 34px;
    line-height: 1;
    letter-spacing: -0.02em;
    white-space: nowrap;
    margin-top: 7px;
    font-weight: 500;
    justify-content: center;
  }
}
@media screen and (min-width: 921px) {
  .cnt_l .contact .tel .num::before {
    content: "";
    display: inline-block;
    width: 23px;
    height: 28px;
    background: url(../img/ico_tel.svg) no-repeat center/contain;
    margin-right: 3px;
  }
}
@media screen and (min-width: 921px) {
  .cnt_l .contact .tel .time {
    font-size: 13px;
    line-height: 1.5384615385;
    letter-spacing: 0.04em;
    margin-top: 5px;
  }
}
@media screen and (min-width: 921px) {
  .cnt_l .contact .txt02 {
    font-size: 17px;
    line-height: 1.5;
    margin-top: 5px;
  }
}
@media screen and (min-width: 921px) {
  .cnt_r {
    right: 0;
  }
}
@media screen and (min-width: 921px) {
  .cnt_r .menu {
    max-width: 309px;
  }
}
@media screen and (min-width: 921px) {
  .cnt_r .menu .ttl {
    color: #fff;
    font-weight: 600;
    font-size: 21px;
    line-height: 1;
    letter-spacing: 0.04em;
    padding: 7px;
    background: linear-gradient(90deg, rgb(75, 181, 9) 0%, rgb(174, 212, 17) 100%);
  }
}
@media screen and (min-width: 921px) {
  .cnt_r .menu nav {
    margin-top: 10px;
  }
}
@media screen and (min-width: 921px) {
  .cnt_r .menu nav ul li {
    font-weight: 700;
    color: #3a3a3a;
    font-size: 18px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 921px) {
  .cnt_r .menu nav ul li a {
    position: relative;
    display: block;
    padding: 10px 30px 10px 0;
    border-bottom: 1px solid #b3cce0;
  }
}
@media screen and (min-width: 921px) {
  .cnt_r .menu nav ul li a::after {
    content: "";
    width: 9px;
    height: 9px;
    border-right: 2px solid #00468b;
    border-bottom: 2px solid #00468b;
    position: absolute;
    right: 6px;
    top: 20px;
    transform: rotate(-45deg);
  }
}
.box_inner {
  background-color: #f4f4f4;
  border-radius: 10px;
  padding-block: 10px;
}
.box_inner > div {
  display: flex;
  justify-content: center;
  gap: 0 24px;
}
.box_inner > div p {
  font-size: 17px;
}
.box_inner .place {
  position: relative;
  padding-left: 16px;
}
.box_inner .place::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 20px;
  background: url(../img/icn_pin.svg) no-repeat center center/100% 100%;
  left: 0;
  top: 23%;
}
.box_inner .parking {
  position: relative;
  padding-left: 20px;
}
.box_inner .parking::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: url(../img/icn_parking.svg) no-repeat center center/100% 100%;
  left: 0;
  top: 29%;
}
.box_inner .has_line {
  text-align: center;
  position: relative;
  font-size: 13px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.box_inner .has_line::before, .box_inner .has_line::after {
  content: "";
  position: absolute;
  width: 1px;
  background-color: #313819;
  height: 1em;
  top: 29%;
}
.box_inner .has_line::before {
  left: -0.5em;
  transform: rotate(-30deg);
}
.box_inner .has_line::after {
  right: -0.5em;
  transform: rotate(30deg);
}

@media screen and (min-width: 921px) and (max-width: 1366px) {
  .cnt_l .contact {
    width: 25.1830161054vw;
    padding: 0.878477306vw;
  }
  .cnt_l .contact .box {
    padding: 0.2928257687vw 1.0248901903vw 1.317715959vw;
  }
  .cnt_l .contact .logo {
    width: 21.2298682284vw;
  }
  .cnt_l .contact .ttl {
    font-size: 2.3426061493vw;
    margin-top: 1.43vw;
  }
  .cnt_l .contact .txt {
    font-size: 1.4641288433vw;
  }
  .cnt_l .contact .cta_btn {
    width: 21.2298682284vw;
    margin-top: 0.7320644217vw;
  }
  .cnt_l .contact .cta_btn a {
    height: 5.5636896047vw;
    padding: 0.7320644217vw 1.0980966325vw;
    border-radius: 0.7320644217vw;
    box-shadow: 0px 6px 0px 0px #c43d3d;
  }
  .cnt_l .contact .cta_btn a::before {
    width: 2.4vw;
    height: 1.66vw;
    left: 0.9516837482vw;
    top: calc(50% - 1.6vw);
  }
  .cnt_l .contact .cta_btn a p {
    font-size: 1.6vw;
    padding-left: 2.7vw;
    white-space: nowrap;
  }
  .cnt_l .contact .cta_btn a p .time {
    font-size: 1.0614934114vw;
  }
  .cnt_l .contact .tel {
    width: 17.6427525622vw;
    padding-bottom: 0.7320644217vw;
    margin: 1.0980966325vw auto 0;
  }
  .cnt_l .contact .tel .ttl_s {
    font-size: 1.2445095168vw;
  }
  .cnt_l .contact .tel .num {
    font-size: 2.4890190337vw;
    margin-top: 0.2928257687vw;
  }
  .cnt_l .contact .tel .num::before {
    width: 2.0497803807vw;
    height: 2.0497803807vw;
    margin-right: 0.2196193265vw;
  }
  .cnt_l .contact .tel .time {
    font-size: 0.7516837482vw;
    margin-top: 0.3660322108vw;
  }
  .cnt_l .contact .txt02 {
    font-size: 1.2445095168vw;
    margin-top: 0.3660322108vw;
  }
  .cnt_r .menu {
    width: 22.6207906296vw;
  }
  .cnt_r .menu .ttl {
    font-size: 1.5373352855vw;
    padding: 0.5124450952vw;
  }
  .cnt_r .menu nav {
    margin-top: 0.7320644217vw;
  }
  .cnt_r .menu nav ul li {
    font-size: 1.317715959vw;
  }
  .cnt_r .menu nav ul li a {
    padding: 0.7320644217vw 2.196193265vw 0.7320644217vw 0;
  }
  .cnt_r .menu nav ul li a::after {
    width: 0.6588579795vw;
    height: 0.6588579795vw;
    border-right: 0.1464128843vw solid #00468b;
    border-bottom: 0.1464128843vw solid #00468b;
    right: 0.439238653vw;
    top: 1.4641288433vw;
  }
  .box_inner > div {
    gap: 0 1.4vw;
  }
  .box_inner > div p {
    font-size: 1.4vw;
  }
  .box_inner .has_line {
    font-size: 1vw;
  }
  .box_inner .place::before {
    width: 1.4vw;
  }
  .box_inner .parking {
    padding-left: 1.7vw;
  }
  .box_inner .parking::before {
    width: 1.4vw;
    top: 0.5em;
  }
}
/* ---------------------------------------
  main
-----------------------------------------*/
/* common
--------------------------------*/
.heading_content {
  text-align: center;
  background-color: #eaf2c9;
  padding-block: 2rem;
}
.heading_content p {
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.heading_content .strong {
  font-weight: 600;
}
.heading_content .has_line {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  color: #315400;
  font-size: 2.6rem;
  margin-bottom: 1rem;
  position: relative;
}
.heading_content .has_line::before, .heading_content .has_line::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 1.8em;
  background-color: #315400;
  top: 1.2%;
}
.heading_content .has_line::before {
  transform: rotate(-30deg);
  left: -1em;
}
.heading_content .has_line::after {
  transform: rotate(30deg);
  right: -1em;
}
.heading_content .has_line .txt_l {
  font-size: 120%;
}

.bg_grid {
  background: url(../img/bg_grid.png) repeat center/7.2rem auto;
}

.sec_ttl {
  font-weight: 600;
  font-size: 6.4rem;
  line-height: 1.296875;
}
.sec_ttl.grad {
  background: linear-gradient(225deg, rgb(149, 182, 15) 0%, rgb(63, 151, 8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.cta {
  text-align: center;
  margin-top: 4.5rem;
}

.cta .txt {
  font-weight: 600;
  font-size: 3.6rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.cta_btn {
  margin-top: 4.5rem;
}

.cta_btn a {
  position: relative;
  height: 14.5rem;
  display: flex;
  align-items: center;
  padding: 1rem 2.8rem;
  background: linear-gradient(0deg, rgb(252, 73, 97) 0%, rgb(255, 120, 115) 100%);
  border-radius: 1rem;
  box-shadow: 0px 0.8rem 0px 0 #c43d3d;
  transition: 0.3s box-shadow, 0.3s transform;
  will-change: transform, box-shadow;
}
@media (any-hover: hover) {
  .cta_btn a:hover {
    opacity: 1;
    transform: translateY(0.8rem);
    box-shadow: 0px 0 0px 0 #c43d3d;
  }
}

.cta_btn a p {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 4.1rem;
  line-height: 1.4170731707;
}

.cta_btn a p .small {
  font-size: 80%;
  font-weight: 500;
}

.cta_btn a p .time {
  display: block;
  font-size: 2.7rem;
  margin-top: 0.5rem;
}

.cta_btn a .arw {
  width: 2.8rem;
  height: 2.8rem;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  right: 2.5rem;
  top: calc(50% - 1.4rem);
}

.cta_btn a .arw::before {
  content: "";
  width: 1.2rem;
  height: 1.5rem;
  background: linear-gradient(90deg, rgb(252, 73, 97) 0%, rgb(255, 120, 115) 100%);
  position: absolute;
  right: 0.6rem;
  top: calc(50% - 0.8rem);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

/* merit
--------------------------------*/
#sec_merit {
  padding: 3.4rem 0 5rem;
  background: linear-gradient(45deg, rgb(174, 212, 17) 0%, rgb(75, 181, 9) 100%);
}

#sec_merit .sec_ttl {
  width: 69.4rem;
}

#sec_merit .merit_list {
  margin-top: 3rem;
}

#sec_merit .merit_list .item {
  display: flex;
  align-items: flex-start;
  gap: 0 3.4rem;
  padding: 2rem 2rem 2rem 5rem;
  background-color: #fff;
  border-radius: 2rem;
}

#sec_merit .merit_list .item + .item {
  margin-top: 2.6rem;
}

#sec_merit .merit_list .item .ico {
  width: 13.6rem;
}

#sec_merit .merit_list .item .txt_wrap {
  flex: 1;
  padding-top: 1rem;
}

#sec_merit .merit_list .item .txt_wrap .ttl {
  color: #515e13;
  font-weight: 700;
  font-size: 4.7rem;
  line-height: 1.0638297872;
  letter-spacing: 0.09em;
}

#sec_merit .merit_list .item .txt_wrap .txt {
  font-weight: 700;
  font-size: 2.9rem;
  line-height: 1.5;
  letter-spacing: 0.09em;
  margin-top: 0.5rem;
}

#sec_merit .note {
  color: #fff;
  font-size: 2rem;
  line-height: 1.75;
  letter-spacing: 0.11em;
  margin-top: 3rem;
}

/* intro
--------------------------------*/
#sec_intro {
  padding: 8rem 0 6.5rem;
  background-image: url(../img/intro_bg01.png), url(../img/intro_bg02.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top, center bottom;
}

#sec_intro .trouble .sec_ttl {
  font-weight: 500;
  color: #fff;
  font-size: 6rem;
  line-height: 1.2833333333;
}

#sec_intro .trouble .sec_ttl .bg {
  display: block;
  width: 38rem;
  color: #1a1a1a;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: 0.09em;
  padding: 1.1rem;
  background-color: #fff;
  margin: 0 auto 1rem;
}

#sec_intro .trouble .sec_ttl .small {
  font-size: 80%;
}

#sec_intro .trouble .box {
  position: relative;
  padding: 5.2rem 4.8rem;
  background-color: #fff;
  border-radius: 2rem;
  box-shadow: 0 0 0.6rem rgba(0, 0, 0, 0.2);
  margin-top: 4rem;
}

#sec_intro .trouble .box::after {
  content: "";
  width: 38rem;
  height: 6.6rem;
  background: url(../img/intro_trouble_arw.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3.3rem;
  margin: 0 auto;
}

#sec_intro .trouble .box ul li {
  position: relative;
  font-weight: 700;
  font-size: 3.1rem;
  line-height: 1.5;
  letter-spacing: 0.09em;
  padding-left: 5rem;
}

#sec_intro .trouble .box ul li + li {
  margin-top: 1.5rem;
}

#sec_intro .trouble .box ul li::before {
  content: "";
  width: 3.3rem;
  height: 3.3rem;
  background: url(../img/ico_check_b.svg) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0.6rem;
}

#sec_intro .trouble .box ul li .line {
  background: linear-gradient(transparent 80%, #ededed 80%);
}

#sec_intro .trouble .box ul li .dot {
  line-height: 1;
  vertical-align: text-bottom;
}

#sec_intro .trouble .box .illust {
  width: 14.8rem;
  position: absolute;
  right: 0;
  bottom: 0;
}

#sec_intro .solution {
  margin-top: 3rem;
}
#sec_intro .solution .txt-wrap {
  position: relative;
  bottom: -0.2em;
  display: inline-block;
}

#sec_intro .solution .sec_ttl {
  font-weight: 700;
  color: #1a1a1a;
  font-size: 6rem;
  line-height: 1.6666666667;
}

#sec_intro .solution .sec_ttl img {
  width: 54.7rem;
  margin-left: -0.5em;
}

#sec_intro .solution .sec_ttl .small {
  font-weight: 900;
  font-size: 4.2rem;
  vertical-align: bottom;
}

#sec_intro .solution .sec_ttl .bg {
  position: relative;
  display: inline-block;
  width: 23.5rem;
  font-weight: 900;
  font-size: 6.4rem;
  line-height: 1;
  padding: 0.7rem 1rem 1.2rem;
  border: 0.3rem solid #1a1a1a;
  margin-right: 1rem;
}

#sec_intro .solution .sec_ttl .bg::before {
  content: "";
  display: inline-block;
  width: 5.7rem;
  height: 5.1rem;
  left: -0.1em;
  position: relative;
  background: url(../img/intro_solution_ttl_check.svg) no-repeat center/contain;
}

#sec_intro .solution .box {
  position: relative;
  padding: 4.5rem 3rem 4.5rem 4rem;
  background-color: #fff;
  border: 0.7rem solid #d5e6c3;
  border-radius: 2rem;
  box-shadow: 0 0 0.6rem rgba(0, 0, 0, 0.2);
  margin-top: 3.2rem;
}

#sec_intro .solution .box::before {
  content: "";
  width: 65rem;
  height: calc(100% - 1.6rem);
  border: 0.2rem solid #d5e6c3;
  border-radius: 1rem;
  position: absolute;
  left: 0;
  right: 0;
  top: 0.8rem;
  margin: 0 auto;
}

#sec_intro .solution .box ul li {
  position: relative;
  font-weight: 700;
  font-size: 3.1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding-left: 5rem;
}

#sec_intro .solution .box ul li + li {
  margin-top: 1.5rem;
}

#sec_intro .solution .box ul li::before {
  content: "";
  width: 3.3rem;
  height: 3.3rem;
  background: url(../img/ico_check.svg) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0.6rem;
}

#sec_intro .solution .box ul li .color--1 {
  font-size: 130%;
  line-height: 1;
  background: linear-gradient(transparent 80%, #fcff8a 80%);
}

#sec_intro .solution .box .illust {
  width: 10.4rem;
  position: absolute;
  right: 0;
  top: -3.7rem;
}

#sec_intro .solution .message {
  position: relative;
  margin-top: 4rem;
}

#sec_intro .solution .message .ttl {
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.35;
  letter-spacing: 0.03em;
}

#sec_intro .solution .message .ttl .fukidashi {
  position: relative;
  display: inline-block;
  padding: 0 4rem;
  white-space: nowrap;
}

#sec_intro .solution .message .ttl .fukidashi::before,
#sec_intro .solution .message .ttl .fukidashi::after {
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 9rem;
  background-color: #accc27;
  border-radius: 0.2rem;
  position: absolute;
  bottom: 0;
}

#sec_intro .solution .message .ttl .fukidashi::before {
  left: 0;
  transform: rotate(-23deg);
}

#sec_intro .solution .message .ttl .fukidashi::after {
  right: 0;
  transform: rotate(23deg);
}

#sec_intro .solution .message .txt {
  width: 62.3rem;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 2.1428571429;
  letter-spacing: 0.04em;
  padding: 1.5rem 3.5rem 1.5rem 6rem;
  background-color: #f3fff6;
  border-radius: 1rem;
  margin-left: auto;
  margin-right: -3.5rem;
  margin-top: 4rem;
}

#sec_intro .solution .message .illust {
  width: 17.8rem;
  position: absolute;
  left: -3.5rem;
  bottom: 3rem;
}

#sec_intro .point {
  margin-top: 7.5rem;
}

#sec_intro .point .box {
  position: relative;
  padding: 6rem 3rem 0;
  background-color: #fff;
  border-radius: 2rem;
  box-shadow: 0 0 0.6rem rgba(0, 0, 0, 0.2);
}

#sec_intro .point .box .txt_point {
  width: 41.3rem;
  color: #fff;
  font-weight: 700;
  font-size: 4.4rem;
  line-height: 1;
  padding: 0.8rem;
  background-color: #e38320;
  border-radius: 100vh;
  position: absolute;
  left: 0;
  right: 0;
  top: -3.3rem;
  margin: 0 auto;
  letter-spacing: 0.1em;
}

#sec_intro .point .box .ttl {
  position: relative;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.35;
  padding-bottom: 3rem;
}

#sec_intro .point .box .ttl::after {
  content: "";
  width: 62.3rem;
  height: 1.1rem;
  background: url(../img/ttl_line_orange.svg) no-repeat center/100%;
  position: absolute;
  bottom: 0;
  left: -0.15rem;
}

#sec_intro .point .box .img {
  position: relative;
  width: 63.6rem;
  margin-left: auto;
  margin: -2rem -1.6rem 0 auto;
}

#sec_intro .point .txt {
  text-align: justify;
  letter-spacing: 0.06em;
  margin-top: 4rem;
}

/* plan
--------------------------------*/
#sec_plan {
  padding: 7rem 0 7.7rem;
}

#sec_plan .sec_ttl {
  color: #515e13;
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 600;
}

#sec_plan .sec_ttl span {
  color: #e38320;
  font-size: 140%;
  line-height: 1;
}

#sec_plan .plan_list {
  margin-top: 5rem;
}

#sec_plan .plan_list .item {
  position: relative;
  padding: 3.5rem 2.9rem 5rem;
  background-color: #fff;
  border-radius: 2rem;
  box-shadow: 0 0 0.6rem rgba(0, 0, 0, 0.2);
}

#sec_plan .plan_list .item + .item {
  margin-top: 6.5rem;
}

#sec_plan .plan_list .item .num {
  width: 12.8rem;
  height: 12.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 7.8rem;
  line-height: 1;
  background: linear-gradient(225deg, rgb(174, 212, 17) 0%, rgb(75, 181, 9) 100%);
  border-radius: 50%;
  position: absolute;
  left: -1.6rem;
  top: -3rem;
}

#sec_plan .plan_list .item .ttl_wrap {
  margin-top: 2.5rem;
  margin: 2.5rem -2.9rem 0;
}

#sec_plan .plan_list .item .ttl_wrap .ttl {
  color: #515e13;
  font-weight: 600;
  font-size: 4.6rem;
  line-height: 1.1489361702;
  letter-spacing: -0.05em;
  white-space: nowrap;
}
#sec_plan .plan_list .item .ttl_wrap .ttl .ls {
  letter-spacing: -0.15em;
}

#sec_plan .plan_list .item .ttl_wrap .lead {
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 1.4705882353;
  letter-spacing: 0.08em;
  margin-top: 1.2rem;
}

#sec_plan .plan_list .item .txt_wrap {
  padding-top: 3rem;
  border-top: 1px solid #1a1a1a;
  margin-top: 3rem;
}

#sec_plan .plan_list .item .txt_wrap .fukidashi {
  font-weight: 700;
  font-size: 3.162rem;
  line-height: 1.5;
  letter-spacing: 0.09em;
}

#sec_plan .plan_list .item .txt_wrap .fukidashi span {
  position: relative;
  display: inline-block;
}

#sec_plan .plan_list .item .txt_wrap .fukidashi span::before,
#sec_plan .plan_list .item .txt_wrap .fukidashi span::after {
  content: "";
  display: inline-block;
  width: 0.3rem;
  height: 4rem;
  background-color: #accc27;
  border-radius: 0.15rem;
  vertical-align: -1rem;
}

#sec_plan .plan_list .item .txt_wrap .fukidashi span::before {
  transform: rotate(-23deg);
  margin-right: 2.5rem;
}

#sec_plan .plan_list .item .txt_wrap .fukidashi span::after {
  transform: rotate(23deg);
  margin-left: 2.5rem;
}

#sec_plan .plan_list .item .txt_wrap ul {
  padding-left: 2rem;
  margin-top: 3.4rem;
}
#sec_plan .plan_list .item .txt_wrap ul.ls li {
  letter-spacing: 0.05em;
}

#sec_plan .plan_list .item .txt_wrap ul li {
  position: relative;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.5;
  padding-left: 5rem;
}

#sec_plan .plan_list .item .txt_wrap ul li + li {
  margin-top: 1.5rem;
}

#sec_plan .plan_list .item .txt_wrap ul li::before {
  content: "";
  width: 3.3rem;
  height: 3.3rem;
  background: url(../img/ico_check.svg) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0.6rem;
}

#sec_plan .message {
  position: relative;
  margin-top: 4rem;
}

#sec_plan .message .txt {
  width: 62.3rem;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 2.1428571429;
  letter-spacing: 0.04em;
  padding: 1.5rem 5rem 1.5rem 3.5rem;
  background-color: #f3fff6;
  border-radius: 1rem;
}

#sec_plan .message .illust {
  width: 17.8rem;
  position: absolute;
  right: 0;
  bottom: 0;
}

/* plan_detail
--------------------------------*/
.sec_plan_detail {
  background-color: #f3fff6;
}

.sec_plan_detail .lead_box {
  position: relative;
  text-align: center;
  padding: 3rem 3.5rem 9.2rem;
  background: linear-gradient(225deg, rgb(149, 182, 15) 0%, rgb(63, 151, 8) 100%);
  margin-bottom: 3rem;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 8.2rem), 50% 100%, 0 calc(100% - 8.2rem));
          clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 8.2rem), 50% 100%, 0 calc(100% - 8.2rem));
}

.sec_plan_detail .lead_box .txt,
.sec_plan_detail .lead_box .txt_l {
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.09em;
}

.sec_plan_detail .lead_box .txt {
  white-space: nowrap;
}

.sec_plan_detail .lead_box .txt span,
.sec_plan_detail .lead_box .txt_l span {
  color: #fcff8a;
}

.sec_plan_detail .sec_ttl {
  color: #3f9708;
  font-weight: 600;
  letter-spacing: -0.05em;
  background: linear-gradient(225deg, rgb(149, 182, 15) 0%, rgb(63, 151, 8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.sec_plan_detail .sec_ttl_sub {
  color: #3f9708;
  font-weight: 700;
  font-size: 4.6rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  background: linear-gradient(225deg, rgb(149, 182, 15) 0%, rgb(63, 151, 8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  margin-top: 0.5rem;
}

.sec_plan_detail .box01 {
  padding: 3rem 2rem;
  background-color: #fff;
  border-radius: 2rem;
  box-shadow: 0 0 0.6rem rgba(0, 0, 0, 0.2);
  margin-top: 3.5rem;
}

.sec_plan_detail .box01 .img {
  margin: 0 auto;
}

.sec_plan_detail .box01 .note {
  color: #4d4d4d;
  font-size: 2rem;
  line-height: 1.75;
  letter-spacing: 0.11em;
  margin-top: 1em;
}

.sec_plan_detail .box02 {
  position: relative;
  padding: 3rem 2.3rem;
  background-color: #fff;
  border: 0.7rem solid #d5e6c3;
  border-radius: 2rem;
  box-shadow: 0 0 0.6rem rgba(0, 0, 0, 0.2);
  margin-top: 4rem;
}

.sec_plan_detail .box02::before {
  content: "";
  width: 65rem;
  height: calc(100% - 1.6rem);
  border: 0.2rem solid #d5e6c3;
  border-radius: 1rem;
  position: absolute;
  left: 0;
  right: 0;
  top: 0.8rem;
  margin: 0 auto;
}

.sec_plan_detail .box02 .ttl_wrap {
  position: relative;
  padding: 0 0 3rem 8rem;
}

.sec_plan_detail .box02 .ttl_wrap::after {
  content: "";
  width: 62.3rem;
  height: 1.1rem;
  background: url(../img/ttl_line.svg) no-repeat center/100%;
  position: absolute;
  bottom: 0;
  left: -0.15rem;
}

.sec_plan_detail .box02 .ttl_wrap .ttl {
  color: #3f9708;
  font-weight: 600;
  font-size: 4.5rem;
  line-height: 1.1111111111;
  background: linear-gradient(225deg, rgb(149, 182, 15) 0%, rgb(63, 151, 8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
.sec_plan_detail .box02 .ttl_wrap .ttl.green {
  color: #515e13;
  -webkit-background-clip: inherit;
  -webkit-text-fill-color: inherit !important;
  text-fill-color: inherit !important;
  background: none;
}

.sec_plan_detail .box02 .ttl_wrap .illust {
  width: 14.6rem;
  position: absolute;
  left: -6.2rem;
  bottom: 1.1rem;
}

.sec_plan_detail .box02 .txt_wrap {
  padding: 0 1.5rem;
}

.sec_plan_detail .box02 .txt_wrap .txt {
  text-align: justify;
  letter-spacing: 0.03em;
  margin-top: 1rem;
}

.sec_plan_detail .box02 .txt_wrap .list_wrap {
  text-align: center;
  padding: 3rem 1.8rem;
  background-color: #f7f7f7;
  border-radius: 1rem;
  margin-top: 3rem;
}

.sec_plan_detail .box02 .txt_wrap .list_wrap .ttl {
  width: 54.4rem;
  color: #fff;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0.07em;
  padding: 1rem 1.5rem;
  background: linear-gradient(225deg, rgb(149, 182, 15) 0%, rgb(63, 151, 8) 100%);
  border-radius: 100vh;
  margin-bottom: 2rem;
}

.sec_plan_detail .box02 .txt_wrap .list_wrap ul {
  display: inline-block;
}

.sec_plan_detail .box02 .txt_wrap .list_wrap ul li {
  position: relative;
  text-align: left;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.5;
  padding-left: 5rem;
}

.sec_plan_detail .box02 .txt_wrap .list_wrap ul li + li {
  margin-top: 1.5rem;
}

.sec_plan_detail .box02 .txt_wrap .list_wrap ul li::before {
  content: "";
  width: 3.3rem;
  height: 3.3rem;
  background: url(../img/ico_check.svg) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0.6rem;
}

.sec_plan_detail .box02 .txt_wrap .list_wrap ul li span {
  background: linear-gradient(transparent 85%, #fcff8a 85%);
}

.sec_plan_detail .box02 .txt_wrap .point {
  position: relative;
  padding: 3rem 1.8rem;
  background-color: #f7f7f7;
  border-radius: 1rem;
  margin-top: 5.5rem;
}

.sec_plan_detail .box02 .txt_wrap .point .ttl {
  width: 41.3rem;
  color: #fff;
  font-weight: 700;
  font-size: 4.4rem;
  line-height: 1;
  letter-spacing: 0.19em;
  padding: 0.8rem 1.5rem 0.6rem;
  background: linear-gradient(225deg, rgb(149, 182, 15) 0%, rgb(63, 151, 8) 100%);
  border-radius: 100vh;
  position: absolute;
  top: -3rem;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.sec_plan_detail .box02 .txt_wrap .point .txt {
  text-align: center;
  letter-spacing: 0.09em;
}

.sec_plan_detail .box02 .txt_wrap .point + .txt {
  margin-top: 2rem;
}

.sec_plan_detail .box02 .txt_wrap .img {
  margin-top: 2rem;
}

.sec_plan_detail .box02 .txt_wrap .txt + .img {
  margin-top: 3rem;
}

/* plan01
--------------------------------*/
#sec_plan01 .lead_box .txt {
  font-size: 3rem;
  line-height: 1.4;
}

#sec_plan01 .lead_box .txt_l {
  font-size: 4.7rem;
  line-height: 1.2765957447;
  margin-top: 1rem;
}

#sec_plan01 .sec_ttl {
  font-size: 8.8rem;
  line-height: 1.1363636364;
}

#sec_plan01 .box01 .img._02 {
  width: 71.8rem;
  margin: 6rem -3.9rem 0;
}

#sec_plan01 .box01 .note {
  margin-top: 0;
}

#sec_plan01 .box02 .ttl_wrap .ttl span {
  font-size: 6.8rem;
  letter-spacing: -0.025em;
}

#sec_plan01 .reason {
  padding: 7rem 0 8rem;
  background-color: #fff;
  margin-top: 7.8rem;
}

#sec_plan01 .reason .ttl_l {
  position: relative;
  font-weight: 600;
  font-size: 5.5rem;
  line-height: 1.2545454545;
}

#sec_plan01 .reason .ttl_l .fukidashi {
  position: relative;
  display: inline-block;
  padding: 0 2rem;
}

#sec_plan01 .reason .ttl_l .fukidashi::before,
#sec_plan01 .reason .ttl_l .fukidashi::after {
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 12rem;
  background-color: #accc27;
  border-radius: 0.2rem;
  position: absolute;
  bottom: 0;
}

#sec_plan01 .reason .ttl_l .fukidashi::before {
  left: 0;
  transform: rotate(-23deg);
}

#sec_plan01 .reason .ttl_l .fukidashi::after {
  right: 0;
  transform: rotate(23deg);
}

#sec_plan01 .reason .ttl_l .grad {
  color: #3f9708;
  background: linear-gradient(225deg, rgb(149, 182, 15) 0%, rgb(63, 151, 8) 100%);
  font-size: 6rem;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#sec_plan01 .reason .ttl_l .small {
  font-size: 3.9rem;
}

#sec_plan01 .reason .img01 {
  margin-top: 2.8rem;
}

#sec_plan01 .reason .reason_list {
  margin-top: 4rem;
}

#sec_plan01 .reason .reason_list .item {
  position: relative;
  padding: 3rem;
  background-color: #fff;
  border-radius: 2rem;
  box-shadow: 0 0 0.6rem rgba(0, 0, 0, 0.2);
}

#sec_plan01 .reason .reason_list .item + .item {
  margin-top: 4rem;
}

#sec_plan01 .reason .reason_list .item .ttl {
  color: #515e13;
  font-weight: 600;
  font-size: 4.5rem;
  line-height: 1.1777777778;
  padding-bottom: 2.6rem;
  border-bottom: 1px solid #1a1a1a;
}

#sec_plan01 .reason .reason_list .item .txt_wrap {
  padding: 2rem 1.5rem 0;
}

#sec_plan01 .reason .reason_list .item .txt_wrap .txt {
  text-align: justify;
}

#sec_plan01 .reason .reason_list .item:nth-child(3) .txt_wrap .txt {
  letter-spacing: -0.025em;
}

#sec_plan01 .reason .img02 {
  margin-top: 6rem;
}

#sec_plan01 .cta {
  margin-top: 3.5rem;
}

#sec_plan01 .cta .ttl {
  width: 52.8rem;
  margin: 0 auto;
}

#sec_plan01 .cta .txt {
  font-size: 3rem;
  line-height: 2;
  letter-spacing: -0.02em;
  margin-top: 1.5rem;
  white-space: nowrap;
}

#sec_plan01 .cta .cta_btn {
  margin-top: 3rem;
}

/* plan02
--------------------------------*/
#sec_plan02 {
  padding-bottom: 8rem;
}

#sec_plan02 .lead_box .txt {
  position: relative;
  text-align: left;
  font-size: 3.3rem;
  line-height: 1.3636363636;
  padding-left: 7rem;
}

#sec_plan02 .lead_box .txt::before {
  content: "";
  width: 3.7rem;
  height: 3.7rem;
  background: url(../img/ico_check_y.svg) no-repeat center/contain;
  position: absolute;
  left: 1.5rem;
  top: 0.5rem;
}

#sec_plan02 .lead_box .txt:not(:last-child) {
  padding-bottom: 2rem;
  border-bottom: 0.2rem solid #fff;
  margin-bottom: 2.5rem;
}

#sec_plan02 .sec_ttl {
  font-size: 7.1rem;
  line-height: 1.1363636364;
  letter-spacing: -0.08em;
}

#sec_plan02 .box01 .img {
  width: 62rem;
}

#sec_plan02 .box02 .ttl_wrap .ttl span {
  font-size: 5.4rem;
  letter-spacing: -0.025em;
}

/* plan03
--------------------------------*/
#sec_plan03 {
  padding-bottom: 8rem;
}

#sec_plan03 .lead_box {
  padding: 2.5rem 3.5rem 10rem;
}

#sec_plan03 .lead_box .txt {
  font-size: 3.7rem;
  line-height: 1.0810810811;
}

#sec_plan03 .sec_ttl {
  font-size: 8.84rem;
  line-height: 1.1312217195;
}

#sec_plan03 .box01 .img {
  width: 59rem;
}

#sec_plan03 .box01 .txt {
  text-align: justify;
  letter-spacing: 0.02em;
  padding: 0 2.4rem;
  margin-top: 1.5rem;
}

#sec_plan03 .box02 .ttl_wrap {
  padding-left: 0;
}

#sec_plan03 .box02 .ttl_wrap .ttl {
  font-size: 5.3rem;
}

#sec_plan03 .box02 .ttl_wrap .ttl span {
  font-size: 70%;
}

#sec_plan03 .box02 .txt_wrap .point .ttl {
  width: 54.4rem;
  font-size: 4rem;
  letter-spacing: 0.07em;
}

/* sec_case
--------------------------------*/
#sec_case {
  padding: 7rem 0 8rem;
}

#sec_case .case_list {
  margin-top: 6rem;
}

#sec_case .case_list .item {
  position: relative;
  padding: 3.5rem 3rem 4rem;
  background-color: #fff;
  border-radius: 2rem;
  box-shadow: 0 0 0.6rem rgba(0, 0, 0, 0.2);
}

#sec_case .case_list .item + .item {
  margin-top: 4rem;
}

#sec_case .case_list .item .ttl {
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.35;
  letter-spacing: 0.03em;
  padding-bottom: 2.6rem;
  border-bottom: 1px solid #1a1a1a;
}

#sec_case .case_list .item .txt_wrap {
  margin-top: 3.5rem;
}

#sec_case .case_list .item .txt_wrap .ttl_s {
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.02em;
  padding: 1rem;
  background-color: #0071bc;
  border-radius: 100vh;
}

#sec_case .case_list .item .txt_wrap .txt {
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.35;
  letter-spacing: 0.03em;
  margin-top: 1.5rem;
}

#sec_case .case_list .item .txt_wrap .img {
  margin-top: 1.5rem;
}

#sec_case .case_list .item .txt_wrap dl {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem 3rem;
  margin-top: 3rem;
}

#sec_case .case_list .item .txt_wrap dl dt {
  width: 19.6rem;
  text-align: center;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.02em;
  padding: 1rem;
  background-color: #1a1a1a;
}

#sec_case .case_list .item .txt_wrap dl dd {
  width: calc(100% - 22.6rem);
  line-height: 1.6666666667;
  letter-spacing: 0.03em;
}

/* sec_feature
--------------------------------*/
#sec_feature {
  padding: 7rem 0 8rem;
  background-color: #68a507;
}

#sec_feature .sec_ttl {
  color: #fff;
}

#sec_feature .feature_list {
  margin-top: 6rem;
}

#sec_feature .feature_list .item {
  background-color: #fff;
}

#sec_feature .feature_list .item + .item {
  margin-top: 4.5rem;
}

#sec_feature .feature_list .item .txt_wrap {
  padding: 3rem 3.5rem;
}

#sec_feature .feature_list .item .txt_wrap .ttl {
  color: #515e13;
  font-weight: 600;
  font-size: 4rem;
  line-height: 1.35;
  letter-spacing: 0.05em;
  white-space: nowrap;
  font-feature-settings: "palt";
}
#sec_feature .feature_list .item .txt_wrap .ttl.line {
  padding-bottom: 2rem;
  border-bottom: 1px solid #515e13;
}

#sec_feature .feature_list .item .txt_wrap .txt {
  text-align: justify;
  letter-spacing: 0.04em;
  margin-top: 1.5rem;
}

/* sec_reason
--------------------------------*/
#sec_reason {
  padding: 7rem 0 8rem;
  background-color: #f3fff6;
}

#sec_reason .reason_list {
  margin-top: 6rem;
}

#sec_reason .reason_list .item {
  background-color: #fff;
}

#sec_reason .reason_list .item + .item {
  margin-top: 4.5rem;
}

#sec_reason .reason_list .item .txt_wrap {
  padding: 3rem 3.5rem;
}

#sec_reason .reason_list .item .txt_wrap .ttl {
  color: #515e13;
  font-weight: 600;
  font-size: 4rem;
  line-height: 1.35;
  letter-spacing: -0.05em;
}

#sec_reason .reason_list .item .txt_wrap .ttl span {
  background: linear-gradient(transparent 90%, #fcff8a 90%);
}

#sec_reason .reason_list .item .txt_wrap .txt {
  text-align: justify;
  letter-spacing: 0.04em;
  margin-top: 1.5rem;
}

#sec_reason .reason_list .item .txt_wrap .note {
  color: #4d4d4d;
  font-size: 2rem;
  line-height: 1.75;
  letter-spacing: 0.11em;
  margin-top: 1em;
}

/* sec_price
--------------------------------*/
#sec_price {
  padding: 7rem 0 8rem;
}

#sec_price .fukidashi {
  font-weight: 700;
  font-size: 5.266rem;
  line-height: 1.5;
  letter-spacing: 0.09em;
  margin-top: 5rem;
}

#sec_price .fukidashi > span {
  position: relative;
  display: inline-block;
  padding: 0 3rem 1.5rem;
  background: url(../img/price_fukidashi_line.svg) no-repeat center bottom/35.6rem auto;
}

#sec_price .fukidashi > span::before,
#sec_price .fukidashi > span::after {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 7.5rem;
  background-color: #1a1a1a;
  border-radius: 0.25rem;
  position: absolute;
  bottom: 0.3rem;
}

#sec_price .fukidashi > span::before {
  left: 0;
  transform: rotate(-23deg);
}

#sec_price .fukidashi > span::after {
  right: 0;
  transform: rotate(23deg);
}

#sec_price .box01 {
  padding: 3rem;
  background-color: #fff;
  border-radius: 2rem;
  box-shadow: 0 0 0.6rem rgba(0, 0, 0, 0.2);
  margin-top: 6.5rem;
}

#sec_price .box01 + .box01 {
  margin-top: 4.5rem;
}

#sec_price .box01 .ttl {
  color: #fff;
  font-size: 3.4rem;
  line-height: 1;
  letter-spacing: 0.02em;
  padding: 1.3rem;
  background-color: #6b6b6b;
  border-radius: 100vh;
}

#sec_price .box01 .txt {
  text-align: justify;
  letter-spacing: 0.04em;
  padding: 0 0.6rem;
  margin-top: 1.5rem;
}

#sec_price .box01 .card_img {
  width: 61.3rem;
  margin: 2rem auto 0;
}

#sec_price .box01 .about {
  padding: 2rem 3rem;
  background-color: #f7f7f7;
  border-radius: 1rem;
  margin-top: 1.5rem;
}

#sec_price .box01 .about .ttl_s {
  color: #515e13;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.25;
  padding-bottom: 2rem;
  border-bottom: 1px solid #1a1a1a;
}

#sec_price .box02 {
  position: relative;
  padding: 4rem 2.9rem 4.5rem;
  background-color: #fff;
  border: 0.7rem solid #d5e6c3;
  border-radius: 2rem;
  box-shadow: 0 0 0.6rem rgba(0, 0, 0, 0.2);
  margin-top: 4rem;
}

#sec_price .box02::before {
  content: "";
  width: 65rem;
  height: calc(100% - 1.6rem);
  border: 0.2rem solid #d5e6c3;
  border-radius: 1rem;
  position: absolute;
  left: 0;
  right: 0;
  top: 0.8rem;
  margin: 0 auto;
}

#sec_price .box02 .item + .item {
  margin-top: 4.5rem;
}

#sec_price .box02 .item .ttl {
  color: #fff;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0.02em;
  padding: 2rem;
  background: linear-gradient(225deg, rgb(149, 182, 15) 0%, rgb(63, 151, 8) 100%);
  border-radius: 100vh;
}

#sec_price .box02 .item .price {
  text-align: center;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #1a1a1a;
  margin: 3.4rem auto 0;
}

#sec_price .box02 .item._01 .price img {
  width: 53.4rem;
}

#sec_price .box02 .item._02 .price img {
  width: 48.2rem;
}

#sec_price .box02 .item .txt {
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.5;
  margin-top: 1rem;
}

#sec_price .note {
  color: #4d4d4d;
  font-size: 2rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
  margin-top: 3.6rem;
}

/* sec_caution
--------------------------------*/
#sec_caution {
  padding: 7rem 0 8rem;
  background: linear-gradient(45deg, rgb(63, 151, 8) 0%, rgb(149, 182, 15) 100%);
}

#sec_caution .sec_ttl {
  color: #fff;
  font-size: 4rem;
  line-height: 1.225;
}

#sec_caution .sec_ttl .fukidashi {
  position: relative;
  display: block;
  padding: 0 2rem;
}

#sec_caution .sec_ttl .fukidashi::before,
#sec_caution .sec_ttl .fukidashi::after {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 9rem;
  background-color: #fff;
  border-radius: 0.25rem;
  position: absolute;
  bottom: -0.5rem;
}

#sec_caution .sec_ttl .fukidashi::before {
  left: 1.5rem;
  transform: rotate(-23deg);
}

#sec_caution .sec_ttl .fukidashi::after {
  right: 1.5rem;
  transform: rotate(23deg);
}

#sec_caution .caution_list {
  margin-top: 4.5rem;
}

#sec_caution .caution_list .item {
  padding: 3.4rem;
  background-color: #fff;
  border-radius: 2rem;
  box-shadow: 0 0 0.6rem rgba(0, 0, 0, 0.2);
}

#sec_caution .caution_list .item + .item {
  margin-top: 4.5rem;
}

#sec_caution .caution_list .item .ttl {
  position: relative;
  color: #515e13;
  font-weight: 600;
  font-size: 4rem;
  line-height: 1.35;
  letter-spacing: -0.05em;
  padding: 0 0 3rem;
}
#sec_caution .caution_list .item .ttl::after {
  background-image: url(../img/ttl_line_green.svg) !important;
}

#sec_caution .caution_list .item .ttl::after {
  content: "";
  width: 62.3rem;
  height: 1.1rem;
  background: url(../img/ttl_line.svg) no-repeat center/100%;
  position: absolute;
  bottom: 0;
  left: -0.55rem;
}

#sec_caution .caution_list .item .txt {
  text-align: justify;
  letter-spacing: 0.03em;
}
#sec_caution .caution_list .item .txt.ls {
  letter-spacing: -0.02em;
}

#sec_caution .caution_list .item .img {
  margin-top: 2rem;
}

/* sec_message
--------------------------------*/
#sec_message {
  padding: 7rem 0 8rem;
  background-image: url(../img/message_bg01.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
}

#sec_message .message_list {
  margin-top: 7rem;
}

#sec_message .message_list .item {
  padding: 0 3.5rem;
}

#sec_message .message_list .item + .item {
  margin-top: 4.5rem;
}

#sec_message .message_list .item .img_wrap {
  position: relative;
  padding-bottom: 10.4rem;
}
#sec_message .message_list .item .img_wrap.wrap-2 {
  padding-bottom: 6rem;
}
#sec_message .message_list .item .img_wrap.wrap-2 .profile {
  width: 42.8rem;
  left: auto;
  margin-right: 0;
  text-align: left;
}

#sec_message .message_list .item .img_wrap .img {
  width: 50.3rem;
  margin: 0 auto;
}

#sec_message .message_list .item .img_wrap .profile {
  max-width: 55.8rem;
  padding: 1.8rem 2rem;
  background-color: #fff;
  box-shadow: 0 0 0.6rem rgba(0, 0, 0, 0.2);
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0.9;
  text-align: center;
  margin: 0 auto;
}

#sec_message .message_list .item .img_wrap .profile p {
  color: #515e13;
  font-weight: 600;
  font-size: 2.68rem;
  line-height: 1.3888888889;
  padding: 0 1.5rem;
}

#sec_message .message_list .item .img_wrap .profile .aff {
  padding-bottom: 0.7rem;
  border-bottom: 1px solid #515e13;
}

#sec_message .message_list .item .img_wrap .profile .name {
  margin-top: 0.5rem;
}

#sec_message .message_list .item .img_wrap .profile .name span {
  font-size: 4.6rem;
  letter-spacing: 0.01em;
  margin-left: 2rem;
}

#sec_message .message_list .item .block {
  margin-top: 3rem;
}

#sec_message .message_list .item .block + .block {
  margin-top: 4.5rem;
}

#sec_message .message_list .item .block .ttl {
  font-weight: 600;
  font-size: 4rem;
  line-height: 1.5;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #515e13;
}

#sec_message .message_list .item .block .career {
  margin-top: 1rem;
}

#sec_message .message_list .item .block .career .txt {
  font-size: 2.8rem;
  line-height: 1.7857142857;
  letter-spacing: 0.01em;
  margin-top: 0;
  display: flex;
  gap: 2.5rem;
}

#sec_message .message_list .item .block .career .txt span:first-of-type {
  flex-shrink: 0;
}

#sec_message .message_list .item .block .txt {
  text-align: justify;
  letter-spacing: 0.02em;
  margin-top: 1.5rem;
}

#sec_message .cta_btn {
  margin-top: 6.5rem;
}

#sec_message .message_list .item .block .list {
  margin-block: 1.1rem 3rem;
}
#sec_message .message_list .item .block .list li {
  position: relative;
  font-size: 2.8rem;
  line-height: 1.3928571429;
  padding-left: 1em;
}
#sec_message .message_list .item .block .list li + li {
  margin-top: 0.2em;
}
#sec_message .message_list .item .block .list li::before {
  content: "";
  color: #515e13;
  font-size: 1.6rem;
  top: calc(50% - 0.25em);
  position: absolute;
  width: 0.7em;
  height: 0.7em;
  border-radius: 100%;
  background-color: #515e13;
  left: 0;
  line-height: 1;
}

/* sec_voice
--------------------------------*/
#sec_voice {
  padding: 7rem 0 8rem;
  background-color: #fcf7e0;
}

#sec_voice .voice_list {
  margin-top: 4.5rem;
}

#sec_voice .voice_list .ttl {
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.225;
  letter-spacing: 0.05em;
}

#sec_voice .voice_list .ttl .blue2 {
  font-size: 130%;
}

#sec_voice .voice_list .ttl .fukidashi {
  position: relative;
  display: block;
  padding: 0 5rem;
}

#sec_voice .voice_list .ttl .fukidashi::before,
#sec_voice .voice_list .ttl .fukidashi::after {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 11rem;
  background-color: #1a1a1a;
  border-radius: 0.25rem;
  position: absolute;
  bottom: -0.5rem;
}

#sec_voice .voice_list .ttl .fukidashi::before {
  left: 3rem;
  transform: rotate(-23deg);
}

#sec_voice .voice_list .ttl .fukidashi::after {
  right: 3rem;
  transform: rotate(23deg);
}

#sec_voice .voice_list + .voice_list {
  margin-top: 4.5rem;
}

#sec_voice .voice_list .img {
  width: 66.4rem;
  margin: 2.5rem auto 0;
}

#sec_voice .voice_list .img + .img {
  margin-top: 4rem;
}

/* sec_flow
--------------------------------*/
#sec_flow {
  padding: 7rem 0 8rem;
}

#sec_flow .flow_list {
  margin-top: 5.2rem;
}

#sec_flow .flow_list .item {
  position: relative;
  background-color: #fff;
  box-shadow: 0 0 0.6rem rgba(0, 0, 0, 0.2);
}

#sec_flow .flow_list .item + .item {
  margin-top: 9.6rem;
}

#sec_flow .flow_list .item:not(:last-child)::after {
  content: "";
  width: 38rem;
  height: 6.6rem;
  background: url(../img/flow_arw.png) no-repeat center/contain;
  position: absolute;
  bottom: -7rem;
  left: 0;
  right: 0;
  margin: 0 auto;
}

#sec_flow .flow_list .item .step {
  color: #fff;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1;
  padding: 1.1rem;
  background-color: #68a507;
}

#sec_flow .flow_list .item .txt_wrap {
  padding: 1.5rem 3rem 3.4rem;
}

#sec_flow .flow_list .item .txt_wrap .ttl {
  color: #515e13;
  font-weight: 600;
  font-size: 4rem;
  line-height: 1.35;
  letter-spacing: -0.025em;
  padding-bottom: 1rem;
  border-bottom: 1px solid #1a1a1a;
}

#sec_flow .flow_list .item .txt_wrap .txt {
  text-align: justify;
  letter-spacing: 0.03em;
  margin-top: 0.5rem;
}

#sec_flow .flow_list .item .txt_wrap .txt a {
  color: #e38320;
  text-decoration: underline;
}

#sec_flow .cta .txt_s {
  font-size: 3rem;
}

#sec_flow .cta .txt {
  margin-top: 1rem;
}

/* sec_faq
--------------------------------*/
#sec_faq {
  padding: 7rem 0 8rem;
  background-color: #f4f4f4;
}

#sec_faq .faq_list {
  margin-top: 6rem;
}

#sec_faq .faq_list .item {
  position: relative;
  padding: 5rem 3rem 3rem;
  background-color: #fff;
  box-shadow: 0 0 0.6rem rgba(0, 0, 0, 0.2);
}

#sec_faq .faq_list .item + .item {
  margin-top: 4.5rem;
}

#sec_faq .faq_list .item .ttl {
  position: relative;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.35;
  padding: 0 0 2rem 6.3rem;
  border-bottom: 1px solid #1a1a1a;
}
#sec_faq .faq_list .item .ttl.ls {
  letter-spacing: -0.08em;
}

#sec_faq .faq_list .item .ttl::before {
  content: "Q";
  width: 5.7rem;
  height: 5.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3.4rem;
  line-height: 1;
  letter-spacing: 0;
  background-color: #515e13;
  padding-bottom: 0.8rem;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}

.safari #sec_faq .faq_list .item .ttl::before {
  padding-bottom: 0;
}

.mobile.safari #sec_faq .faq_list .item .ttl::before {
  padding-top: 0.2em;
}

#sec_faq .faq_list .item .txt {
  position: relative;
  text-align: justify;
  letter-spacing: 0.04em;
  padding: 0 0 0 6.3rem;
  margin-top: 1.5rem;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}

#sec_faq .faq_list .item .txt::before {
  content: "A";
  width: 5.7rem;
  height: 5.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 3.4rem;
  line-height: 1;
  padding-bottom: 0.8rem;
  background-color: #c92d2d;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}

.safari #sec_faq .faq_list .item .txt::before {
  padding-bottom: 0;
}

.mobile.safari #sec_faq .faq_list .item .txt::before {
  padding-top: 0.2em;
}

/* sec_about
--------------------------------*/
#sec_about {
  padding: 0 0 8rem;
}

#sec_about .sec_ttl {
  color: #fff;
  padding: 5.2rem 0;
  background: linear-gradient(225deg, rgb(149, 182, 15) 0%, rgb(63, 151, 8) 100%);
  letter-spacing: 0.1em;
}

#sec_about .ttl {
  color: #313819;
  font-weight: 600;
  font-size: 5rem;
  line-height: 1.2;
  letter-spacing: -0.05em;
  margin-top: 4rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #313819;
}

#sec_about .logo {
  border-bottom: none;
  margin-bottom: 3rem;
}

#sec_about .info_wrap {
  border-top: 1px solid #15275b;
  margin-top: 1rem;
}

#sec_about .info_wrap dl {
  padding: 2.5rem 1rem 3rem;
  border-bottom: 1px solid #15275b;
  display: flex;
  gap: 0 1rem;
}
#sec_about .info_wrap dl:last-of-type {
  border-bottom: none;
}

#sec_about .info_wrap dl dt {
  color: #313819;
  font-weight: 600;
  font-size: 3rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  width: 16.3rem;
}

#sec_about .info_wrap dl dd {
  font-size: 2.5rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  padding-top: 0.4rem;
}

#sec_about .info_wrap dl dd .time {
  width: 67.4rem;
  margin: 3.5rem 0 0 -1rem;
}

#sec_about .info_wrap dl dd .note {
  font-size: 2.4rem;
  line-height: 1.4166666667;
  letter-spacing: 0.04em;
  margin: 1rem 0 0 -1rem;
}

#sec_about .timetable .note {
  font-size: 2.4rem;
  line-height: 1.4166666667;
  margin-top: 0.6em;
}
#sec_about .timetable table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
#sec_about .timetable table .heading th {
  background-color: #3f9708;
  color: #fff;
  font-size: 2.8rem;
  text-align: center;
  padding: 1rem 1.2rem;
}
#sec_about .timetable table .heading th.hour {
  font-size: 2.5rem;
  position: relative;
}
#sec_about .timetable table .heading th.hour::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 80%;
  transform: translateY(-50%);
  width: 1px;
  right: 0;
  background-color: #fff;
}
#sec_about .timetable table .table-body th {
  text-align: left;
  font-size: 2.6rem;
  line-height: 1.3846153846;
  vertical-align: middle;
  border-bottom: 1px solid #15275b;
  padding-left: 1em;
}
#sec_about .timetable table td {
  font-size: 2.8rem;
  text-align: center;
  padding: 2rem 0;
  border-bottom: 1px solid #15275b;
}

#sec_about .map {
  margin-top: 5.7rem;
  aspect-ratio: 1/1;
}
#sec_about .map iframe {
  width: 100%;
  height: 100%;
}

#sec_about .facility {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
  margin-top: 4rem;
}

#sec_about .facility .ttl {
  color: #fff;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.6071428571;
  letter-spacing: 0.04em;
  padding: 2rem 1rem;
  background-color: #686868;
  margin-top: 0;
  border: none;
}

#sec_about .access {
  border: 4px solid #c9caca;
  border-radius: 0.8rem;
  margin-top: 6rem;
  padding: 4rem 2.8rem;
}
#sec_about .access + .access {
  margin-top: 5rem;
}
#sec_about .access .access_ttl {
  font-size: 3rem;
  background-color: #313819;
  border-radius: 100px;
  color: #fff;
  text-align: center;
  padding: 0.6rem 0 0.6rem;
  font-weight: 500;
}
#sec_about .access dl {
  margin-top: 2.4rem;
}
#sec_about .access dl div + div {
  margin-top: 1.7rem;
}
#sec_about .access dt {
  font-size: 3rem;
  font-weight: 600;
  color: #313819;
  border-bottom: 1px solid #313819;
  padding-bottom: 0.7rem;
}
#sec_about .access dd {
  text-align: justify;
  padding-top: 0.8rem;
  font-size: 2.5rem;
  line-height: 1.8;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}

/* ---------------------------------------
footer
-----------------------------------------*/
#footer {
  position: relative;
  padding: 3rem 0 13rem;
  background-color: #313819;
}

@media screen and (min-width: 921px) {
  #footer {
    padding-bottom: 3rem;
  }
}
#footer .fixed_btn {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 1rem;
  z-index: 100;
}

#footer .fixed_btn .flex {
  justify-content: center;
  gap: 0 1.5rem;
}

#footer .fixed_btn .btn {
  width: 48%;
  margin-top: 4.5rem;
}

#footer .fixed_btn .btn a {
  position: relative;
  height: 9.5rem;
  border-radius: 1rem;
}
#footer .fixed_btn .btn a img {
  width: 100%;
}

#footer .fixed_btn .btn a::before {
  content: "";
  position: absolute;
  left: 1.4rem;
}

#footer .fixed_btn .btn a p {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.3225806452;
}

#footer .fixed_btn .btn a p .small {
  font-size: 80%;
}

#footer .fixed_btn .btn a p .time {
  display: block;
  font-size: 1.9vw;
}

#footer .fixed_btn .btn._tel a {
  /* background: linear-gradient(180deg, rgba(62, 173, 222, 1) 0%, rgba(111, 203, 227, 1) 100%);
  box-shadow: 0px 4px 0px 0px #2a88a3; */
}

#footer .fixed_btn .btn._tel a::before {
  /* width: 2.5rem;
  height: 2.5rem;
  background: url(../img/btn_tel.svg) no-repeat center/100% auto;
  top: calc(50% - 3.1rem); */
}

#footer .fixed_btn .btn._mail a {
  /* background: linear-gradient(180deg, rgba(252, 73, 97, 1) 0%, rgba(255, 120, 115, 1) 100%);
  box-shadow: 0px 4px 0px 0px #c43d3d;
  padding-left: 4.1rem; */
}

#footer .fixed_btn .btn._mail p .time {
  font-size: 2.8vw;
  margin-left: -2em;
}

#footer .fixed_btn .btn._mail a::before {
  /* width: 3.6rem;
  height: 2.6rem;
  background: url(../img/btn_mail.svg) no-repeat center/100% auto;
  top: calc(50% - 2.3rem); */
}

#footer .copyright {
  color: #fff;
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: 0.01em;
}

/* ---------------------------------------
clearfix
-----------------------------------------*/
.cf:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

.cf {
  display: inline-block;
}

/* Hides from IE Mac */
* html .cf {
  height: 1%;
}

.cf {
  display: block;
}

/* End Hack */
/*# sourceMappingURL=style.css.map */