@charset "utf-8";
/* ----------------------------------------------------------------------------------------------
setup
---------------------------------------------------------------------------------------------- */

*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-display: swap;
  font-feature-settings: "palt";
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

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

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

img {
  -webkit-backface-visibility: hidden;
  vertical-align: bottom;
  image-rendering: auto;
  height: auto;
}

/* ----------------------------------------------------------------------------------------------
common
---------------------------------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-size: min(calc(100vw * 16 / 390), 16px);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.7;
  color: #4d2f29;
  background: #fdd23c;
}

.all_wrap {
  overflow-x: hidden;
}

section {
  position: relative;
}

.c-lh {
  line-height: 2;
}

.c-center {
  text-align: center;
}

.c-right {
  text-align: right;
}

.c-justify {
  text-align: justify;
}

.d_flex {
  display: flex;
  align-items: start;
  justify-content: start;
}

.bold {
  font-weight: 800;
}

.indent1em {
  text-indent: -1em;
  padding-left: 1em;
}

.indent2em {
  text-indent: -2.5em;
  padding-left: 2.5em;
}

.notes {
  font-size: 0.9rem;
  letter-spacing: normal;
}

.large {
  font-size: 1.4rem;
}

.container {
  position: relative;
  width: 90%;
  max-width: 1207px;
  margin-inline: auto;
}

.container02 {
  position: relative;
  width: 100%;
  max-width: 1100px;
  padding: 0 15px;
  margin-inline: auto;
}

.illust {
  position: absolute;
}

.section_heading {
  padding-bottom: 20px;
}

.section_heading h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section_heading h3 img {
  height: min(50vw, 5.2rem);
  width: auto;
}

.color-org {
  color: #fa5f00;
}

.sec_ttl {
  font-size: 46px;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  background: url(../images/discount_ttl_line_bg.svg) no-repeat center bottom / 182px;
  padding-bottom: 21px;
  position: relative;
}

.sec_ttl::before {
  content: '';
  display: block;
  width: 396px;
  height: 387px;
  margin: auto;
  position: absolute;
  top: -344px;
  left: 0;
  right: 0;
  z-index: 1;
}

.cta_btn {
  display: block;
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  background: #eb6100;
  width: 100%;
  max-width: 550px;
  padding: 28.75px 0 28.75px 15px;
  border: 2px solid #fff;
  border-radius: 50vw;
  margin: 0 auto;
  box-shadow: 0 8px 0 rgba(235, 97, 0, 0.3);
  position: relative;
  transition: 0.3s;
}

.cta_btn::before {
  content: '';
  display: block;
  background: url(../images/icon_cta_btn.svg) no-repeat center center / contain;
  width: 64px;
  height: 64px;
  margin: auto;
  position: absolute;
  top: 0;
  left: 35px;
  bottom: 0;
  z-index: 1;
}

.cta_btn:hover {
  transform: translateY(8px);
  box-shadow: none;
  opacity: 1;
}

@media (max-width: 779px) {
  .sec_ttl {
    font-size: 28px;
    background: url(../images/discount_ttl_line_bg.svg) no-repeat center bottom / 110px;
    padding-bottom: 8px;
  }

  .sec_ttl::before {
    width: 280px;
    height: 222px;
    top: -206px;
  }

  .cta_btn {
    font-size: 14px;
    max-width: 300px;
    padding: 15.5px 0 15.5px 16px;
    border: 1px solid #fff;
    box-shadow: none;
  }

  .cta_btn::before {
    width: 35px;
    height: 35px;
    left: 19px;
  }

  .cta_btn:hover {
    transform: translateY(0);
  }
}

/* --------------------------------------------------------------------
MARK: アコーディオン
----------------------------------------------------------------------- */

.js-accordion--close {
  display: none;
}

.accordion-item {
  margin-top: 30px;
  border: clamp(2px, 1vw, 4px) solid #00004b;
  border-radius: 35px;
  box-shadow: 0px 6px #00004b;
  background-color: #fff;
  font-weight: 500;
}

.accordion-box {
  height: 0;
  overflow: hidden;
  transition: 0.4s ease;
}

.accordion-box .d_flex {
  padding: 10px 10px 30px 10px;
  gap: 10px;
}

.accordion-box .icon {
  flex-shrink: 0;
  width: 30px;
}

.js-accordion {
  display: block;
  appearance: none;
  position: relative;
  padding: 10px 35px 10px 10px;
  border: none;
  background: none;
  width: 100%;
}

.js-accordion .d_flex {
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.js-accordion .ttl {
  display: flex;
  align-items: center;
  text-align: left;
  color: #00004b;
  gap: 10px;
  line-height: 1.4;
  padding-right: 10px;
}

.js-accordion .label {
  width: 35px;
  height: 9px;
  background: url(../images/ac_txt.png) no-repeat;
  background-size: 100%;
  background-position: 0 0;
  flex-shrink: 0;
  transition: all 0.2s;
}

.js-accordion.is-accordion--open .label {
  background-position: 0 100%;
}

.js-accordion::before {
  content: "";
  width: 2px;
  height: 16px;
  background: #297ae0;
  position: absolute;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.6s ease;
}

.js-accordion::after {
  content: "";
  width: 16px;
  height: 2px;
  background: #297ae0;
  position: absolute;
  right: 11px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.6s ease;
}

.js-accordion.is-accordion--open::before {
  transform: rotate(90deg);
}

.js-accordion.is-accordion--open::after {
  transform: rotate(-180deg);
}

.js-accordion.is-accordion--open+.accordion-box {
  height: auto;
  opacity: 1;
}

/* --------------------------------------------------------------------
MARK: header nav mv
----------------------------------------------------------------------- */

.header {
  position: absolute;
  top: 8px;
  left: 0;
  width: 100%;
  padding: 0 12px;
  z-index: 200;
}

h1.logo {
  display: inline-block;
  width: 143px;
  line-height: 0;
}

.top-mv {
  position: relative;
}

.mv-inner {
  position: relative;
}

.mv {
  position: relative;
}

.ribbon {
  margin-top: 10px;
  margin-inline: auto;
  position: relative;
  background-color: #fa5f00;
  color: #ffed00;
  --r: 0.8em;
  padding-inline: 1rem;
  padding-block: 10px 10px;
  line-height: 1.8;
  clip-path: polygon(0 0,
      100% 0,
      calc(100% - var(--r)) 50%,
      100% 100%,
      0 100%,
      var(--r) 50%);
  width: fit-content;
}

.ribbon .sub {
  font-size: 0.8rem;
  line-height: 1.3;
}

.period .notice {
  font-size: 0.6rem;
  letter-spacing: normal;
}

.oshirase {
  background: #fff;
  border: 2px solid #00004b;
  width: min(100%, 840px);
  margin-inline: auto;
  margin-top: 30px;
  padding: 20px 15px;
  font-size: 80%;
}

.oshirase .bold {
  margin-bottom: 8px;
}

/* --------------------------------------------------------------------
present
----------------------------------------------------------------------- */
#present {
  padding-bottom: 51px;
  margin-top: -76px;
}

#present .container::before,
#present .container::after {
  display: none;
}

#present .container {
  max-width: 1148px;
  position: relative;
}

#present .ttl {
  max-width: 325px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}

#present .present_list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 7px 20px;
  margin-bottom: 36px;
}

#present .present_item {
  width: 100%;
  max-width: 210px;
  position: relative;
}

#present .present_item::before {
  content: '';
  display: block;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
}

#present .present_item:nth-of-type(1):before {
  top: 14px;
}

#present .present_item:nth-of-type(1):before,
#present .present_item:nth-of-type(3):before {
  background: url(../images/icon_present01_sp.svg) no-repeat center center / contain;
  width: 76px;
  height: 254px;
  left: -83px;
}

#present .present_item:nth-of-type(2):before {
  background: url(../images/icon_present02_sp.svg) no-repeat center center / contain;
  width: 75px;
  height: 253px;
  right: -86px;
}

#present .att_box {
  border: 2px solid #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 35px;
}

#present .att_box h3 {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  background: #ffffff;
  width: 100%;
  padding: 11px 0;
}

#present .att_box p {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.59;
  letter-spacing: 0;
  padding: 12px 22px;
  width: 100%;
}

/* --------------------------------------------------------------------
discount
----------------------------------------------------------------------- */
#discount {
  background: url(../images/discount_bg_sp.jpg) no-repeat center top / cover;
  padding: 185px 0 21px;
}

#discount .container {
  max-width: 1195px;
  position: relative;
}

#discount .container::before,
#discount .container::after {
  content: '';
  display: block;
  margin: auto;
  position: absolute;
  z-index: 1;
}

#discount .container::before {
  background: url(../images/icon_discount01.svg) no-repeat center top / cover;
  width: 75px;
  height: 84px;
  top: -79px;
  left: 0;
}

#discount .container::after {
  background: url(../images/icon_discount02.svg) no-repeat center top / cover;
  width: 83px;
  height: 82px;
  top: -105px;
  right: 0;
}

#discount .sec_ttl {
  margin-bottom: 41px;
}

#discount .sec_ttl::before {
  background: url(../images/discount_ttl_bg.png) no-repeat center / contain;
}

#discount .top_txt {
  max-width: 197px;
  margin: 0 auto 29px;
}

#discount p {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.57;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 21px;
}

#discount .middle_txt {
  max-width: 279px;
  margin: 0 auto 35px;
}

#discount br.pc {
  display: none;
}

/* --------------------------------------------------------------------
benefit
----------------------------------------------------------------------- */
#benefit {
  background: url(../images/benefit_bg_sp.jpg) no-repeat center top / cover;
  padding: 223px 0 51px;
}

#benefit .container {
  max-width: 1200px;
}

#benefit .container::before,
#benefit .container::after {
  content: '';
  display: block;
  margin: auto;
  position: absolute;
  z-index: 1;
}

#benefit .container::before {
  background: url(../images/icon_benefit01_sp.svg) no-repeat center center / contain;
  width: 82px;
  height: 84px;
  top: -130px;
  left: -25px;
}

#benefit .container::after {
  background: url(../images/icon_benefit02_sp.svg) no-repeat center center / contain;
  width: 88px;
  height: 59px;
  top: -64px;
  right: -3px;
}

#benefit .sec_ttl {
  margin-bottom: 50px;
}

#benefit .sec_ttl::before {
  background: url(../images/benefit_ttl_bg.png) no-repeat center / contain;
}

#benefit .benefit_list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 113px 53px;
  margin-bottom: 99px;
}

#benefit .benefit_item {
  background: url(../images/benefit_item_bg.jpg) no-repeat center / cover;
  width: 89%;
  padding: 53px 21px 0;
  border-radius: 25px;
}

#benefit .benefit_item h3 {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.29;
  letter-spacing: 0;
  text-align: center;
  color: #0a5da7;
  min-height: 62px;
  margin-bottom: 7px;
  position: relative;
}

#benefit .benefit_item h3::before {
  content: '';
  display: block;
  width: 93px;
  height: 56px;
  margin: auto;
  position: absolute;
  top: -72px;
  left: 0;
  right: 0;
  z-index: 1;
}

#benefit .benefit_item:nth-of-type(1) h3::before {
  background: url(../images/benefit_ttl01.svg) no-repeat center center / contain;
}

#benefit .benefit_item:nth-of-type(2) h3::before {
  background: url(../images/benefit_ttl02.svg) no-repeat center center / contain;
}

#benefit .benefit_item:nth-of-type(3) h3::before {
  background: url(../images/benefit_ttl03.svg) no-repeat center center / contain;
}

#benefit .benefit_item p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.73;
  letter-spacing: 0;
  margin-bottom: 27px;
}

#benefit .benefit_item h3 .sm {
  font-size: 14px;
}

#benefit .benefit_item img {
  display: block;
  width: 87%;
  margin: 0 auto -78px;
}

#benefit .att_txt {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.54;
  letter-spacing: 0;
  text-align: left;
  margin-bottom: 36px;
}

/* --------------------------------------------------------------------
terms
----------------------------------------------------------------------- */
#terms {
  background: #fcbf00;
  padding: 46px 0 54px;
}

#terms .container {
  max-width: 900px;
  position: relative;
}

#terms .sec_ttl::before {
  display: none;
}

#terms .container::before {
  content: '';
  display: block;
  background: url(../images/icon_terms01.svg) no-repeat center center / contain;
  width: 88px;
  height: 89px;
  margin: auto;
  position: absolute;
  top: -66px;
  right: 5px;
  z-index: 1;
}

#terms .sec_ttl {
  font-size: 25px;
  background: none;
  padding-bottom: 0;
  margin-bottom: 34px;
}

#terms .terms_box {
  margin-bottom: 18px;
}

#terms .terms_top {
  text-align: center;
  background: #ffffff;
  padding: 124px 22px 27px 22px;
  border-top-left-radius: 11px;
  border-top-right-radius: 11px;
  position: relative;
}

#terms .terms_top::before {
  content: '';
  display: block;
  background: url(../images/icon_terms02.svg) no-repeat center center / contain;
  width: 100px;
  height: 105px;
  margin: auto;
  position: absolute;
  top: 13px;
  left: 0;
  right: 0;
  z-index: 1;
}

#terms .terms_top h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
}

#terms .terms_top h3 .clr {
  color: #eb6100;
}

#terms .terms_top h3 .sm {
  display: block;
  font-size: 13px;
}

#terms .terms_btm {
  font-size: 14px;
  text-align: center;
  background: #fef2c6;
  padding: 20px 0 31px;
  border-bottom-left-radius: 11px;
  border-bottom-right-radius: 11px;
}

#terms .terms_btm .ttl {
  font-weight: 700;
  width: max-content;
  max-width: 100%;
  padding-left: 27px;
  margin: 0 auto 4px;
  position: relative;
}

#terms .terms_btm .ttl::before {
  content: '';
  display: block;
  background: url(../images/icon_attention.svg) no-repeat center center / contain;
  width: 22px;
  height: 20px;
  margin: auto;
  position: absolute;
  top: 2px;
  left: 0;
  z-index: 1;
}

#terms .terms_btm .txt {
  font-size: 13px;
  font-weight: 500;
}

#terms .att_txt {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.54;
  letter-spacing: 0;
}

/* --------------------------------------------------------------------
about
----------------------------------------------------------------------- */
#about {
  background-color: #b3e0f4;
  padding-bottom: 100px;
}

#point {
  position: absolute;
  top: calc(-40vw / 3.75);
  width: 100%;
}

#point .d_flex {
  flex-wrap: wrap;
  justify-content: center;
}

#point .d_flex li {
  flex-basis: 50%;
  padding-inline: 10px;
}

#about>.container {
  padding-top: min(calc(220vw / 5.75), 520px);
}

#about_ttl {
  position: relative;
  border: clamp(8px, 3vw, 20px) solid #00004b;
  background-color: #297ae2;
  padding: min(3%, 25px);
  z-index: 1;
}

.about_inner {
  position: relative;
  border: clamp(5px, 2vw, 9px) solid #00004b;
  background: #fff200;
  font-weight: 800;
  padding: 42% 10px 30px 10px;
}

.about_inner h3 {
  position: absolute;
  top: -85px;
}

.about_inner .summary p {
  line-height: 2;
}

#about .illust.star01 {
  top: -15%;
  left: -13%;
}

#about .illust.star02 {
  bottom: -70px;
  left: -10%;
  transform: rotate(-20deg);
  width: 100px;
}

#about .illust.animal {
  bottom: -80px;
  right: -20px;
  width: 140px;
}

/* --------------------------------------------------------------------
plan
----------------------------------------------------------------------- */
#plan {
  background: linear-gradient(0deg,
      #fff 0%,
      #fff 75%,
      #b3e0f4 25%,
      #b3e0f4 100%);
}

#plan .list_wrapper {
  position: relative;
  margin-top: 40px;
}

.plan_list {
  display: flex;
  flex-direction: column;
  gap: 35px 35px;
}

.plan_list li {
  border: clamp(4px, 2vw, 6px) solid #00004b;
  border-radius: 20px;
  padding-block: 13% 30px;
  box-shadow: 10px 10px #00004b;
  font-weight: 500;
}

.plan_list li:nth-child(1) {
  background-color: #ffcae3;
}

.plan_list li:nth-child(2) {
  background-color: #ffe064;
}

.plan_list li:nth-child(3) {
  background-color: #52e6ed;
}

.plan_list li h4 {
  padding-right: 3px;
}

.plan_list li .inner {
  margin-top: 1rem;
  padding-inline: 5px;
}

.plan_list li .inner p strong {
  display: block;
  font-size: 1.3rem;
}

.otoku {
  width: 85%;
  margin-left: auto;
  margin-right: 5px;
}

.list_wrapper .illust.animal {
  top: -50px;
  left: -40px;
  width: 140px;
}

#plan .notes {
  margin-top: 2em;
  font-weight: 500;
}

/* --------------------------------------------------------------------
set
----------------------------------------------------------------------- */

#set {
  background: linear-gradient(180deg,
      #fff 0%,
      #fff 75%,
      #297ae0 25%,
      #297ae0 100%);
  z-index: 2;
}

.discount {
  position: relative;
  margin-top: 60px;
  border: clamp(4px, 2vw, 6px) solid #00004b;
  border-radius: 20px;
  padding-bottom: 30px;
  box-shadow: 10px 10px #00004b;
  background-color: #fff200;
}

.discount h3 {
  width: 100%;
  transform: translateY(-50%);
}

.discount h3 img {
  width: min(85%, 373px);
  margin-inline: auto;
}

.discount_inner {
  padding-inline: 15px;
}

.discount_inner>h4 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.discount_inner>p {
  font-weight: 700;
}

.price_list {
  margin-top: 35px;
}

.discount_inner .notes {
  font-weight: 500;
  margin-top: 1em;
}

.discount .illust.star01 {
  top: -30px;
  left: -30px;
  width: 90px;
}

.discount .illust.star02 {
  bottom: -20px;
  right: -40px;
  width: 70px;
}

/* --------------------------------------------------------------------
cbn
----------------------------------------------------------------------- */
#carbon_neutrality {
  background-image: url(../images/cbn_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  background-color: #297ae0;
  padding-top: 120px;
  z-index: 1;
}

.fukidasi {
  display: block;
  margin-bottom: 15px;
}

.fukidasi img {
  -webkit-backface-visibility: unset;
  height: auto !important;
}

#carbon_neutrality .inner {
  padding-bottom: 100vw;
}

#carbon_neutrality .inner p {
  color: #fff;
  font-weight: 700;
}

#carbon_neutrality .notes {
  margin-top: 1em;
}

.conditions dl {
  margin-top: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.conditions dl dd {
  color: #fff200;
  font-weight: 700;
  margin-top: 10px;
}

#carbon_neutrality .illust.animal.--01 {
  top: -95px;
  right: 0;
  width: 140px;
}

#carbon_neutrality .illust.animal.--02 {
  bottom: -10px;
  left: 0;
  width: 60%;
}

/* --------------------------------------------------------------------
apply
----------------------------------------------------------------------- */

#apply {
  background: #00004b;
  padding-top: 30px;
}

#apply .d_flex {
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 20px;
}

#apply .d_flex li {
  flex-basis: 50%;
  padding-inline: 10px;
}

/* --------------------------------------------------------------------
steps
----------------------------------------------------------------------- */
#steps {
  background: linear-gradient(180deg,
      #00004b 0%,
      #00004b 75%,
      transparent 25%,
      transparent 100%);
  padding-top: 80px;
  z-index: 1;
}

#steps .steps_bg {
  position: relative;
}

#steps .inner {
  position: absolute;
  top: 0;
  padding: 20px;
}

#steps .inner h4 {
  transform: translateY(-50%);
}

#steps .inner h4 img {
  width: min(85%, 801px);
  margin-inline: auto;
}

#steps .flow {
  margin-top: -50px;
  flex-direction: column;
  row-gap: 5px;
  align-items: center;
}

#steps .flow .item {
  padding-inline: 20px;
}

#steps .flow .arrow {
  transform: rotate(90deg);
}

#steps .contact {
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.contact .btn_box:nth-child(1) {
  flex-basis: 100%;
}

.contact .btn_box:nth-child(2),
.contact .btn_box:nth-child(3) {
  flex-basis: 48%;
}

.btn {
  position: relative;
  display: inline-block;
  border-radius: 50em;
  background-color: #00004b;
  box-shadow: 0px 5px #fff;
  padding: 1em 15px;
  width: 100%;
}

.btn_apply {
  background: #fff200;
  padding-inline: 15px 50px;
}

.btn_apply::after {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  content: "";
  display: block;
  height: 1.5em;
  width: 1.5em;
  background: url(../images/icon_check.svg) no-repeat;
  background-size: contain;
}


/* --------------------------------------------------------------------
delivery
----------------------------------------------------------------------- */
#delivery {
  padding: 80px 0 90px;
}

#delivery .h2_ttl {
  font-size: 37px;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 55px;
}

#delivery .container {
  max-width: 1100px;
}

#delivery .att_txt {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
  margin-top: 24px;
  margin-bottom: 32px;
}

#delivery .delivery_contents>p {
  text-align: center;
  margin-bottom: 20px;
}

#delivery .h4_ttl {
  font-size: 27px;
  color: #4d2f29;
  font-weight: 900;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}

#delivery .h4_ttl::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 4px;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #fe7846;
}

#delivery p {}

#delivery .delivery_wrapper {}

#delivery .delivery_wrapper .delivery_box {
  margin-bottom: 5px;
}

#delivery .delivery_wrapper .delivery_box .delivery_contents {
  margin-top: 30px;
}

#delivery .delivery_wrapper .delivery_box .delivery_ttl {
  font-size: 27px;
  color: #4d2f29;
  font-weight: 900;
  border-radius: 12px;
  padding: 22px 34px 22px 34px;
  cursor: pointer;
  background-color: #fff;
  line-height: 1;
  margin-bottom: 10px;
  position: relative;
}

#delivery .delivery_wrapper .delivery_box .delivery_ttl .plus {
  width: 34px;
  height: 34px;
  position: absolute;
  top: 19px;
  right: 35px;
  border-radius: 5px;
  background: #fe7846;
}

#delivery .delivery_wrapper .delivery_box .delivery_ttl .plus::before,
#delivery .delivery_wrapper .delivery_box .delivery_ttl .plus::after {
  content: '';
  display: block;
  background: #fff;
  width: 70%;
  height: 2px;
  position: absolute;
  top: 15px;
  right: 5px;
  transition: 0.3s;
}

#delivery .delivery_wrapper .delivery_box .delivery_ttl .plus::after {
  transform: rotate(0deg);
}

#delivery .delivery_wrapper .delivery_box .delivery_ttl.open .plus::after {
  transform: rotate(90deg);
}

#delivery .fee_wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  gap: 10px;
  align-items: stretch;
}

#delivery .fee_wrapper .set_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 12px 0;
}

#delivery .fee_wrapper .set_wrap .fee_inner {
  width: calc(100% / 3);
  padding: 25px 0 25px;
  /* border-right: 1px dashed #999999 ; */
  position: relative;
}

#delivery .fee_wrapper .set_wrap .fee_inner::after {
  content: url(../images/line.svg);
  position: absolute;
  right: 0;
  top: -2px;
  width: 2px;
}

#delivery .fee_wrapper .set_wrap .fee_inner:last-child::after {
  display: none;
}

#delivery .fee_wrapper .set_wrap .fee_inner .img_box img {
  margin: 0 auto;
}

#delivery .fee_wrapper .set_wrap .gas_box img {
  width: 111px;
}

#delivery .fee_wrapper .set_wrap .denki_box img {
  width: 132px;
}

#delivery .fee_wrapper .set_wrap .mix_box img {
  width: 196px;
}

#delivery .fee_wrapper .fee_box {
  border: 3px solid #3b63b4;
  border-radius: 20px;
  background: #fff;
  /* height: -webkit-fill-available; */
}

#delivery .fee_wrapper .fee_box.left_box {
  width: 20%;
}

#delivery .fee_wrapper .fee_box.left_box .fee {
  margin-top: 54px;
}

#delivery .fee_wrapper .fee_box.right_box {
  width: calc(80% - 12px);
}

#delivery .fee_wrapper .fee_box .delivery {
  text-align: center;
  font-weight: 700;
  color: #fff;
  background-color: #3b63b4;
  box-sizing: border-box;
  border-radius: 10px 10px 0px 0px;
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
  padding: 10px 20px;
  margin-bottom: 0px;
}

#delivery .fee_wrapper .fee_box .fee {
  text-align: center;
  font-weight: 700;
  color: #0a5da7;
  box-sizing: border-box;
  font-size: 22px;
  line-height: 1;
  padding: 1rem 0 1.5rem;
}

#delivery .fee_wrapper .fee_box .fee .gray {
  color: #808080;
}

#delivery .fee_wrapper .fee_box .fee .num {
  font-size: 57px;
  margin: 0;
  color: #0a5da7;
}

#delivery .fee_wrapper .set_wrap .fee {
  color: #eb6100;
}

#delivery .fee_wrapper .set_wrap .fee .num {
  color: #eb6100;
}

#delivery .office-map h4 {
  font-size: 19px;
  font-weight: bold;
  margin-bottom: 0;
}

#delivery .office-map .h4_ttl {
  font-size: 27px;
  color: #4d2f29;
  font-weight: 900;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}

#delivery .office-map {
  box-sizing: border-box;
  margin-bottom: 30px;
  background-color: #fef1c4;
  border-radius: 30px;
  padding: 50px 40px 50px 80px;
  max-width: 860px;
  margin: 45px auto 65px;
}

#delivery .office-map ul.disc {
  padding-left: 2rem;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0px 30px;
  margin-bottom: 30px;
}

#delivery .office-map ul.disc li {
  line-height: 1.6;
  position: relative;
  font-weight: bold;
  letter-spacing: 0;
}

#delivery .office-map ul.disc li::before {
  background-color: #fe7846;
  display: block;
  width: 8px;
  height: 8px;
  content: "";
  position: absolute;
  left: -14px;
  top: 9px;
  bottom: 0;
  border-radius: 5px;
}

.orange {
  color: #fe7846;
}

.attention {
  text-align: center;
  margin-top: 30px;
}

.apply-cond {
  margin-top: 45px;
}

.apply-cond .apply_ttl {
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 5px;
}

.apply-cond>p {
  text-align: center;
}

@media (max-width: 779px) {
  #delivery {
    padding: 50px 0 60px;
  }

  #delivery .h2_ttl {
    font-size: 25px;
    margin-bottom: 25px;
  }

  #delivery .h4_ttl {
    font-size: 18px;
    margin-bottom: 20px;
  }

  #delivery .delivery_contents>p {
    font-size: 14px;
  }

  #delivery .h4_ttl::after {
    width: 28px;
  }

  #delivery .delivery_wrapper .delivery_box .delivery_ttl {
    font-size: 18px;
    border-radius: 7px;
    padding: 12px 34px 12px 24px;
  }

  #delivery .delivery_wrapper .delivery_box .delivery_ttl .plus {
    width: 26px;
    height: 26px;
    right: 15px;
    top: 8px;
  }

  #delivery .delivery_wrapper .delivery_box .delivery_ttl .plus::before,
  #delivery .delivery_wrapper .delivery_box .delivery_ttl .plus::after {
    top: 12px;
    right: 4px;
  }

  #delivery .fee_wrapper {
    width: 70%;
    margin: 0 auto;
  }

  #delivery .fee_wrapper .fee_box.left_box {
    width: 100%;
  }

  #delivery .fee_wrapper .fee_box.left_box .fee {
    margin-top: 0;
  }

  #delivery .fee_wrapper .fee_box.right_box {
    width: 100%;
  }

  #delivery .fee_wrapper .set_wrap .fee_inner {
    width: 100%;
    padding: 15px 0 15px;
  }

  #delivery .fee_wrapper .set_wrap {
    margin: 0;
  }

  #delivery .fee_wrapper .set_wrap .fee_inner::after {
    content: url(../images/line_sp.svg);
    left: 8px;
    top: auto;
    bottom: 0;
    width: 96%;
  }

  #delivery .fee_wrapper .fee_box.right_box .fee {
    padding: 0.5rem 0 0.5rem;
  }

  #delivery .fee_wrapper .fee_box .delivery {
    font-size: 14px;
  }

  #delivery .fee_wrapper .set_wrap .gas_box img {
    width: 80px;
  }

  #delivery .fee_wrapper .set_wrap .denki_box img {
    width: 100px;
  }

  #delivery .fee_wrapper .set_wrap .mix_box img {
    width: 156px;
  }

  #delivery .fee_wrapper .fee_box .fee .num {
    font-size: 51px;
  }

  .apply-cond {
    margin-top: 25px;
  }

  .apply-cond>p {
    text-align: left;
    font-size: 13px;
    line-height: 1.5;
  }

  #delivery .office-map {
    padding: 20px 20px;
    border-radius: 10px;
  }

  #delivery .office-map .h4_ttl {
    font-size: 18px;
  }

  #delivery .office-map h4 {
    font-size: 14px;
  }

  #delivery .office-map ul.disc {
    margin-bottom: 15px;
  }

  #delivery .office-map ul.disc li {
    font-size: 13px;
  }

  .attention {
    text-align: left;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 20px;
  }

  #delivery .att_txt {
    font-size: 14px;
    margin-bottom: 18px;
  }
}

/* --------------------------------------------------------------------
voice
----------------------------------------------------------------------- */
#voice {
  padding: 93px 0 110px;
  background-color: #fcbf00;
}

#voice .voice_list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 44px;
}

#voice .voice_item {
  width: calc((100% - 88px) / 3);
}

#voice .att_txt {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 32px;
}

.profile {
  font-weight: 700;
}

.attribute {
  font-size: 0.8rem;
}

#voice .h2_ttl {
  font-size: 37px;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 55px;
}

.voice_item .main_txt {
  margin-top: 15px;
  font-weight: 500;
}

@media (max-width: 779px) {
  #voice {
    padding: 63px 0 50px;
  }

  #voice .h2_ttl {
    font-size: 25px;
    margin-bottom: 30px;
  }

  #voice .voice_item {
    width: 90%;
    max-width: 460px;
    margin: 0 auto;
  }
}

/* --------------------------------------------------------------------
flow
----------------------------------------------------------------------- */
#flow {
  padding: 104px 0 0;
}

#flow .h2_ttl {
  font-size: 37px;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 55px;
}

#flow .flow_list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 44px;
}

#flow .flow_list .flow_item {
  width: calc((100% - 176px) / 5);
  position: relative;
}

#flow .flow_list .flow_item .sp {
  display: none;
}

#flow .att_txt {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
  margin-top: 24px;
  margin-bottom: 32px;
}

#flow .flow_list .flow_item::after {
  content: "";
  width: 20px;
  height: 25px;
  position: absolute;
  top: 50%;
  right: -30px;
  background: #4d2f29;
  transform: translatey(-50%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

#flow .flow_list .flow_item:last-child:after {
  display: none;
}

@media (max-width: 779px) {
  #flow {
    padding: 45px 0 0;
  }

  #flow .h2_ttl {
    font-size: 25px;
    margin-bottom: 30px;
  }

  #flow .flow_list {
    gap: 30px;
  }

  #flow .flow_list .flow_item {
    width: 100%;
  }

  #flow .flow_list .flow_item .pc {
    display: none;
  }

  #flow .flow_list .flow_item .sp {
    display: block;
  }

  #flow .flow_list .flow_item::after {
    transform: rotate(90deg);
    width: 13px;
    left: 0;
    right: 0;
    top: auto;
    bottom: -30px;
    margin: 0 auto;
  }

  #flow .att_txt {
    text-align: left;
    font-size: 13px;
  }
}

/* --------------------------------------------------------------------
achievement
----------------------------------------------------------------------- */
#achievement {
  background: #f0f0f0;
  border: clamp(10px, 4vw, 30px) solid #fff;
}

#achievement .inner {
  padding-bottom: 80px;
}

#achievement .d_flex {
  flex-direction: column;
  row-gap: 20px;
}

.achievement_item {
  background: #fff;
  padding: 10px 30px 30px 30px;
}

.achievement_heading {
  display: flex;
  align-items: center;
  justify-content: center;
}

.achievement_item .main_txt {
  font-weight: 700;
  margin-top: 20px;
}

#achievement .illust.animal.--01 {
  bottom: 0px;
  right: -20px;
  width: 140px;
}

#achievement .illust.animal.--02 {
  top: 90px;
  left: -20px;
  width: 100px;
}

/* --------------------------------------------------------------------
Q&A
----------------------------------------------------------------------- */
#faq {
  background-image: repeating-linear-gradient(90deg,
      #297ae0,
      #297ae0 30px,
      #4190e5 30px,
      #4190e5 60px);
  padding-block: 30px 60px;
}

.js-accordion .icon {
  flex-shrink: 0;
  width: 30px;
}

/* --------------------------------------------------------------------
Footer
----------------------------------------------------------------------- */
footer {
  padding-top: 103px;
  background: url(../images/ft_bg_sp.jpg) no-repeat center top / cover;
}

footer .txt {
  max-width: 257px;
  margin: 0 auto 18px;
}

footer .cta_btn {
  margin-bottom: 82px;
}

footer .img {
  max-width: 339px;
  margin: 0 auto 33px;
}

footer .logo {
  display: block;
  width: 100%;
  max-width: 115px;
  margin: 0 auto 13px;
}

footer nav {
  margin-bottom: 31px;
}

footer nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px 40px;
  max-width: 315px;
  margin: 0 auto;
}

footer nav li {
  width: max-content;
  position: relative;
}

footer nav li:not(:last-of-type):after {
  content: '';
  display: block;
  background: #4d2f29;
  width: 1px;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  right: -20px;
  bottom: 0;
  z-index: 1;
}

footer nav li:nth-of-type(2):after {
  display: none;
}

footer nav a {
  display: block;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

footer .copy {
  background: #0a5da7;
}

footer .copy p {
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  color: #ffffff;
  padding: 20px 20px;
}

.hidden {
  animation: fade 0.2s ease-in-out forwards;
  pointer-events: none;
  /* 重要 */
}

@keyframes fade {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.visible {
  animation: fadeOut 0.2s ease-in-out forwards;
  pointer-events: all;
  /* 重要 */
}

@keyframes fadeOut {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* --------------------------------------------------------------------
MARK: TB
----------------------------------------------------------------------- */

@media (min-width: 510px) {}

/* --------------------------------------------------------------------
MARK: PC
----------------------------------------------------------------------- */

@media (min-width: 780px) {
  body {
    width: 100vw;
  }

  a {
    transition: all 0.3s;
  }

  a:hover,
  a:active {
    opacity: 0.7;
  }

  .large {
    font-size: 2.4rem;
  }

  .header {
    top: 22px;
    padding: 0 23px;
  }

  .header_inner {
    position: relative;
    width: 100%;
  }

  h1.logo {
    width: 247px;
  }

  .ribbon {
    font-size: 1.9rem;
    padding-inline: 13%;
    padding-block: 15px 15px;
    z-index: -1;
    margin-top: -10px;
  }

  #present {
    padding-bottom: 0;
    margin-top: -18px;
  }

  #present::after {
    content: '';
    display: block;
    background: url(../images/present_bg.jpg) no-repeat center center / contain;
    width: 100%;
    height: 45.4vw;
    left: 0;
    right: 0;
    bottom: 74px;
    margin: auto;
    position: absolute;
    z-index: -1;
  }

  #present .ttl {
    max-width: initial;
    margin-bottom: 26px;
  }

  #present .container {
    padding-bottom: 10px;
  }

  #present .container::before,
  #present .container::after {
    content: '';
    display: block;
    width: 169px;
    height: 563px;
    margin: auto;
    position: absolute;
    top: 49px;
    z-index: 1;
  }

  #present .container::before {
    background: url(../images/icon_present01.svg) no-repeat center center / contain;
    left: -169px;
  }

  #present .container::after {
    background: url(../images/icon_present02.svg) no-repeat center center / contain;
    right: -169px;
  }

  #present .present_list {
    justify-content: space-between;
    margin-bottom: 42px;
  }

  #present .present_item {
    width: calc((100% - 40px) / 3);
    max-width: initial;
  }

  #present .present_item::before {
    display: none;
  }

  #present .att_box {
    display: flex;
    justify-content: space-between;
    max-width: 755px;
    margin: 0 auto 47px;
  }

  #present .att_box h3 {
    font-size: 23px;
    width: 198px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #present .att_box p {
    font-size: 18px;
    line-height: 1.5;
    padding: 31px 38px;
    width: calc(100% - 198px);
  }

  #discount {
    background: url(../images/discount_bg.jpg) no-repeat center top / cover;
    padding: 405px 0 28px;
  }

  #discount .container::before {
    width: 166px;
    height: 185px;
    top: 0;
    left: 0;
  }

  #discount .container::after {
    width: 204px;
    height: 201px;
    top: -68px;
    right: 0;
  }

  #discount .sec_ttl {
    margin-bottom: 77px;
  }

  #discount .top_txt {
    max-width: 934px;
    margin: 0 auto 40px;
  }

  #discount p {
    font-size: 21px;
    line-height: 1.62;
    margin-bottom: 7px;
  }

  #discount .middle_txt {
    max-width: 850px;
    margin: 0 auto 60px;
  }

  #discount .bottom_txt {
    max-width: 1000px;
    margin: 0 auto;
  }

  #discount br.pc {
    display: block;
  }

  #benefit {
    background: url(../images/benefit_bg.jpg) no-repeat center top / cover;
    padding: 371px 0 81px;
  }

  #benefit .container::before {
    background: url(../images/icon_benefit01.svg) no-repeat center center / contain;
    width: 325px;
    height: 178px;
    top: -232px;
    left: -134px;
  }

  #benefit .container::after {
    background: url(../images/icon_benefit02.svg) no-repeat center center / contain;
    width: 340px;
    height: 147px;
    top: -151px;
    right: -89px;
  }

  #benefit .sec_ttl {
    margin-bottom: 76px;
  }

  #benefit .benefit_list {
    margin-bottom: 112px;
  }

  #benefit .benefit_item {
    width: calc((100% - 106px) / 3);
    padding: 66px 27px 0;
    border-radius: 30px;
  }

  #benefit .benefit_item h3 {
    font-size: 29px;
    line-height: 1.31;
    min-height: 76px;
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #benefit .benefit_item h3::before {
    width: 115px;
    height: 78px;
    top: -90px;
  }

  #benefit .benefit_item p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.78;
    letter-spacing: 0;
    margin-bottom: 32px;
  }

  #benefit .benefit_item h3 .sm {
    font-size: 14px;
    margin-top: auto;
    margin-bottom: 2px;
    margin-left: -8px;
  }

  #benefit .benefit_item img {
    display: block;
    width: 87%;
    margin: 0 auto -78px;
  }

  #benefit .att_txt {
    font-size: 14px;
    text-align: center;
    margin-bottom: 32px;
  }

  #terms {
    padding: 76px 0 83px;
  }

  #terms .container::before {
    content: '';
    display: block;
    background: url(../images/icon_terms01.svg) no-repeat center center / contain;
    width: 216px;
    height: 219px;
    margin: auto;
    position: absolute;
    top: -144px;
    right: -214px;
    z-index: 1;
  }

  #terms .sec_ttl {
    font-size: 37px;
    background: none;
    padding-bottom: 0;
    margin-bottom: 34px;
  }

  #terms .terms_box {
    margin-bottom: 31px;
  }

  #terms .terms_top {
    text-align: left;
    background: #ffffff;
    padding: 31.3px 30px 31.3px 252px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    position: relative;
  }

  #terms .terms_top::before {
    content: '';
    display: block;
    background: url(../images/icon_terms02.svg) no-repeat center center / contain;
    width: 107px;
    height: 113px;
    margin: auto;
    position: absolute;
    top: 0;
    left: 110px;
    right: auto;
    bottom: 0;
    z-index: 1;
  }

  #terms .terms_top h3 {
    font-size: 29px;
    font-weight: 700;
    letter-spacing: 0;
  }

  #terms .terms_top h3 .clr {
    color: #eb6100;
  }

  #terms .terms_top h3 .sm {
    display: block;
    font-size: 19px;
  }

  #terms .terms_btm {
    font-size: 21px;
    text-align: center;
    background: #fef2c6;
    padding: 19px 0;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  #terms .terms_btm .ttl {
    font-weight: 700;
    width: max-content;
    max-width: 100%;
    padding-left: 39px;
    margin: 0 auto 11px;
    position: relative;
  }

  #terms .terms_btm .ttl::before {
    content: '';
    display: block;
    background: url(../images/icon_attention.svg) no-repeat center center / contain;
    width: 32px;
    height: 30px;
    margin: auto;
    position: absolute;
    top: 2px;
    left: 0;
    z-index: 1;
  }

  #terms .terms_btm .txt {
    font-weight: 500;
  }

  #terms .att_txt {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.65;
    letter-spacing: 0;
  }

  .ribbon .sub {
    font-size: 1.3rem;
  }

  .period .notice {
    font-size: 1rem;
    margin-top: 0.5rem;
    font-weight: 800;
  }

  .oshirase {
    font-size: 100%;
  }

  #point {
    top: calc(-35vw / 2.75);
  }

  #point .d_flex {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 30px;
  }

  #point .d_flex li {
    flex-basis: 40%;
    padding-inline: 0;
  }

  #about {
    padding-bottom: 130px;
  }

  #about>.container {
    padding-top: clamp(140px, calc(150vw / 3.75), 140px);
  }

  #about .summary {
    display: flex;
  }

  .about_inner {
    padding: 10px 60px 10px 18%;
  }

  .about_inner h3 {
    position: absolute;
    top: -85px;
    left: -8%;
    width: 25%;
    z-index: 1;
  }

  .about_inner .summary p {
    font-size: 1.2rem;
    padding-top: 1.2em;
    line-height: 2.2;
  }

  #about .illust.star01 {
    top: -2%;
    left: -70px;
  }

  #about .illust.star02 {
    top: -22%;
    bottom: unset;
    left: unset;
    right: -9%;
    width: auto;
    transform: rotate(0deg);
  }

  #about .illust.animal {
    bottom: -117px;
    right: -10px;
    width: 190px;
    z-index: 1;
  }

  #plan {
    margin-top: -90px;
    padding-bottom: 30px;
    z-index: 0;
    background: linear-gradient(0deg,
        #fff 0%,
        #fff 35%,
        #b3e0f4 0%,
        #b3e0f4 100%);
  }

  #plan .list_wrapper {
    margin-top: 10px;
  }

  .plan_list {
    flex-direction: row;
  }

  .plan_list li {
    padding-block: 50px 30px;
  }

  .plan_list li .inner {
    padding-inline: 0px;
  }

  .otoku {
    margin-right: 10px;
  }

  .list_wrapper .illust.animal {
    top: 88%;
    left: -14%;
    width: 210px;
  }

  .discount_inner>p {
    margin-top: 10px;
  }

  .price_list {
    margin-top: 25px;
  }

  .discount .illust.star01 {
    top: 30px;
    left: -11%;
    width: auto;
  }

  .discount .illust.star02 {
    bottom: 65%;
    right: -9%;
    width: auto;
  }

  #carbon_neutrality {
    background-size: 40%;
    background-position: right bottom;
  }

  #carbon_neutrality .section_heading img {
    height: auto;
  }

  #carbon_neutrality .inner {
    margin-top: 20px;
    width: 50%;
    padding-bottom: 12vw;
  }

  #carbon_neutrality .notes {
    font-size: 0.8rem;
  }

  .conditions {
    margin-top: 20px;
  }

  .conditions dl {
    flex-direction: row;
    justify-content: start;
    column-gap: 10px;
    margin-top: 10px;
  }

  .conditions dl dt {
    width: 9rem;
  }

  .conditions dl dd {
    margin-top: 0;
    font-size: 1.1rem;
    text-align: left;
  }

  #carbon_neutrality .illust.animal.--01 {
    top: 6%;
    right: -12%;
    width: 326px;
  }

  #carbon_neutrality .illust.animal.--02 {
    bottom: -10px;
    left: 5%;
    width: 322px;
  }

  #apply {
    padding-top: 40px;
  }

  #apply .d_flex {
    flex-wrap: nowrap;
    column-gap: 20px;
  }

  #apply .d_flex li {
    flex-basis: 50%;
    padding-inline: 0;
  }

  #apply .inner {
    max-width: 850px;
    margin-inline: auto;
    margin-top: 30px;
  }

  #steps .inner {
    width: 100%;
  }

  #steps .inner h4 {
    transform: translateY(-34%);
  }

  #steps .flow {
    margin-top: -60px;
    flex-direction: row;
    align-items: center;
    column-gap: 20px;
    max-width: 988px;
    margin-inline: auto;
  }

  #steps .flow .item {
    padding-inline: 0;
  }

  #steps .flow .arrow {
    transform: rotate(0deg);
    flex-shrink: 0;
  }

  #steps .contact {
    margin-top: 40px;
    flex-wrap: nowrap;
    gap: 15px;
    align-items: center;
    justify-content: center;
    max-width: 988px;
    margin-inline: auto;
  }

  .btn {
    padding: 1.5em 15px;
  }

  .btn img {
    margin-inline: auto;
  }

  .btn_apply {
    padding-inline: 45px 70px;
  }

  .btn_apply img {
    margin-left: 0;
  }

  .btn_apply::after {
    right: 35px;
    height: 2em;
    width: 2em;
  }

  .contact .btn_box:nth-child(1) {
    flex-basis: 74%;
  }


  #more_btn {
    cursor: pointer;
    margin-top: 30px;
    width: 30%;
  }

  #achievement {
    padding-top: 35px;
  }

  #achievement .inner {
    padding-bottom: 100px;
  }

  #achievement .d_flex {
    flex-direction: row;
    column-gap: 30px;
    align-items: stretch;
    margin-top: 20px;
  }

  .achievement_item {
    width: 100%;
  }

  .achievement_heading {
    min-height: 221px;
    align-items: start;
  }

  #achievement .illust.animal.--01 {
    bottom: 0px;
    right: -3%;
    width: 249px;
  }

  #achievement .illust.animal.--02 {
    top: 90%;
    left: -2%;
    width: 282px;
    z-index: 1;
  }

  #faq {
    padding-block: 50px 80px;
  }

  .js-accordion {
    cursor: pointer;
    padding: 10px 50px 10px 15px;
  }

  .js-accordion .ttl {
    gap: 15px;
  }

  .js-accordion .icon {
    width: 52px;
  }

  .js-accordion::before {
    right: 33px;
  }

  .js-accordion::after {
    right: 26px;
  }

  .js-accordion .label {
    width: 70px;
    height: 17px;
  }

  .accordion-box .d_flex {
    padding: 10px 40px 40px 15px;
    gap: 15px;
  }

  .accordion-box .icon {
    width: 52px;
  }

  .accordion-box p {
    margin-top: 1rem;
  }

  .btn_wrap button {
    transition: all 0.3s;
  }

  .btn_wrap button:hover {
    opacity: 0.7;
  }

  footer {
    padding-top: 268px;
    background: url(../images/ft_bg.jpg) no-repeat center top / cover;
  }

  footer .txt {
    max-width: 501px;
    margin: 0 auto 20px;
  }

  footer .cta_btn {
    margin-bottom: 7px;
  }

  footer .img {
    max-width: 1016px;
    margin: 0 auto 42px;
  }

  footer .logo {
    display: block;
    width: 100%;
    max-width: 195px;
    margin: 0 auto 31px;
  }

  footer nav {
    margin-bottom: 69px;
  }

  footer nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px 52px;
    max-width: initial;
  }

  footer nav li {
    width: max-content;
    position: relative;
  }

  footer nav li:not(:last-of-type):after {
    content: '';
    display: block;
    background: #4d2f29;
    width: 1px;
    height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    right: -25px;
    bottom: 0;
    z-index: 1;
  }

  footer nav a {
    display: block;
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
  }

  footer .copy {
    background: #0a5da7;
  }

  footer .copy p {
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    color: #ffffff;
    padding: 37.5px 20px;
  }
}

@media (min-width: 1600px) {
  #present::after {
    bottom: 0;
  }
}