@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');


:root {
  --font16: clamp(0.875rem, 1.82vw, 1rem);
  --font18: clamp(1.0625rem, 2.21vw, 1.125rem);
  --font20: clamp(1.125rem, 2.08vw, 1.25rem);
  --font22: clamp(1.25rem, 2.6vw, 1.375rem);
  --font24: clamp(1rem, 2.08vw, 1.5rem);
  --font28: clamp(1.375rem, 2.86vw, 1.75rem);
  --font32: clamp(1.5rem, 3.12vw, 2rem);
  --font40: clamp(1.75rem, 3.65vw, 2.5rem);
  --font48: clamp(2rem, 4.17vw, 3rem);
  --font64: clamp(3rem, 6.25vw, 4rem);
  --font72: clamp(4rem, 8.34vw, 4.5rem);
  --font96: clamp(4.5rem, 9.38vw, 6rem);
  --space16: clamp(0.5rem, 1.04vw, 1rem);
  --space24: clamp(0.75rem, 1.56vw, 1.5rem);
  --space32: clamp(1rem, 2.08vw, 2rem);
  --space48: clamp(1.5rem, 3.12vw, 3rem);
  --space64: clamp(2rem, 4.17vw, 4rem);
  --space96: clamp(3rem, 6.25vw, 6rem);
  --space128: clamp(4rem, 8.34vw, 8rem);
  --space192: clamp(6rem, 12.51vw, 12rem);
  --green: #6BAE37;
  --serif: "Shippori Mincho", serif;
}



* {
  margin: 0px;
  padding: 0px;
  vertical-align: top;
  box-sizing: border-box;
  table-layout: fixed;
  scroll-behavior: smooth;
}

body {
  font-size: 17px;
  line-height: 1.8rem;
  font-family: 'Noto Sans JP', sans-serif;
  background: rgba(244, 244, 244, 1);
  color: #333;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  display: block;
  background-repeat: repeat-x;
  margin: 0px;
  padding: 0px;
}

img {
  max-width: 100%;
  height: auto;
}

a,
a:link,
a:visited {
  text-decoration: none;
  color: #666;
}


strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

blockquote {
  display: block;
  -webkit-margin-before: 1em;
  -webkit-margin-after: 1em;
  -webkit-margin-start: 40px;
  -webkit-margin-end: 40px;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  padding-top: 30px;
  padding-bottom: 70px;
  min-height: 900px;
}

@media screen and (max-width: 800px) {
  .container {
    padding: 10px;
  }
}



/*---------------------
header
-----------------------*/

header {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: white;
  overflow: hidden;
}

@media (max-width: 767px) {
  header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }
}


.header_inner {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
  align-items: center;
  gap: var(--space24);
  width: 100%;
}

@media (max-width: 767px) {
  .header_inner {
    justify-content: center;
    gap: 0;
  }
}

.header_inner .logo {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.header_inner .logo>* {
  padding: 6px 20px;
  overflow: hidden;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .header_inner .logo>* {
    padding: 0;
    display: grid;
    place-content: center;
  }
}

.header_inner .logo img {
  max-width: 440px;
  height: auto;
  width: 100%;
  margin: auto;
}

@media (max-width: 767px) {
  .header_inner .logo img {
    width: 92%;
    margin: auto;
  }
}

.header_inner .info {
  text-align: right;
  flex: 1;
  background-color: rgba(255, 255, 255, 1.00);

}


@media (max-width: 767px) {
  .header_inner .info {
    display: none;
  }
}

.header_inner .info p:nth-child(1) {
  letter-spacing: 5px;
  white-space: nowrap;
  text-align: right;
  font-size: 0.9rem;
  color: #5cae1d;
}

.header_inner .info p:nth-child(2) {
  letter-spacing: 2px;
  white-space: nowrap;
  text-align: right;
  font-size: 1.8rem;
  color: #008200;
}

.header_inner .info p:nth-child(3) {
  letter-spacing: 0px;
  white-space: nowrap;
  text-align: right;
  font-size: 0.85rem;
  color: #5cae1d;
}

@media (max-width: 767px) {
  .header_inner .info {
    padding-bottom: 24px;
  }
}

.top_menu {
  display: block;
  width: 100%;
  background: rgba(90, 179, 23, 1);
}

@media (max-width: 767px) {
  .top_menu {
    overflow: auto;
    width: 100%;
    display: block;
    position: sticky;
    top: 0;
    left: 0;
  }
}

.top_menu .menu {
  display: flex;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  align-items: center;
  justify-content: center;
  gap: 32px;
}


@media (max-width: 767px) {
  .top_menu {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    padding: 0 32px;
  }

  .top_menu .menu {
    display: inline-flex;
    width: auto !important;
    max-width: none !important;
    min-width: 780px;
  }

  .top_menu .menu li {
    flex: none;
  }
}


.top_menu .menu>* {
  padding: 24px 8px;
}

.top_menu .menu>*:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.top_menu .menu a,
.top_menu .menu a:visited {
  color: #fff;
  width: 100%;
  height: 100%;
  display: block;
  white-space: nowrap;
  font-weight: 600;
}


.bottom_menu>ul {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: auto;
  justify-content: center;
  align-items: center;
  margin-bottom: 96px;
}

@media (max-width: 767px) {
  .bottom_menu>ul {
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .bottom_menu>ul>li {
    flex: 1 1 calc((100% - (32px * 1)) / 2);
    text-align: left;
  }
}

@media (max-width: 480px) {
  .bottom_menu>ul>li {
    flex: 1 1 100%;
    text-align: center;
  }
}

a.telnum {
  color: #008200;
  font-family: "FOT-セザンヌ ProN B", CezanneProN-B;
  letter-spacing: 0.8px;
  font-weight: 600;
}


/*---------------------
  footer
-----------------------*/
footer {
  display: block;
  width: 100%;
  background-color: rgba(255, 255, 255, 1.00);
  padding: 25px;
  text-align: center;
}

@media (max-width: 767px) {
  footer {
    padding-bottom: 96px;
  }
}

footer .share-buttons {
  font-size: 20px;
  display: table;
  width: auto;
  list-style: none;
  table-layout: fixed;
  margin-left: auto;
  margin-right: auto;
}

footer .share-buttons>* {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  padding: 15px;
}

.page-top {
  position: fixed;
  bottom: 30px;
  right: 0;
  width: 50px;
  height: 50px;
  background: #333;

  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  z-index: 1000;
  transition: opacity 0.3s;
  opacity: 0.7;
}

@media (max-width: 767px) {
  .page-top {
    position: fixed;
    bottom: 30px;
    right: 0;
    width: 50px;
    height: 50px;
    background: #333;

    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 1000;
    transition: opacity 0.3s;
    opacity: 0.7;
  }
}

/* 矢印（CSS描画） */
.page-top::before {

  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-left: 3px solid #fff;
  border-top: 3px solid #fff;
  transform: rotate(45deg);
  /* ↖ を上矢印に見せる */
  margin-bottom: -4px;
  /* ちょっと下に寄せて矢印感を強調 */
}

.page-top:hover {
  opacity: 1;
}

.call {
  display: none;
}

@media (max-width: 767px) {

  .call {
    background-color: var(--green);
    color: white;
    font-weight: 600;
    border-radius: 999px;
    padding: 12px 32px;
    font-size: 24px;
    text-align: center;
    display: grid;
    place-content: center;
    position: fixed;
    bottom: 30px;
    width: 80%;
    max-width: 240px;
    margin: auto;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  }
}

/*---------------------
 Section / Card
-----------------------*/

.card {
  background-color: #fff;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  padding: clamp(16px, 4.26vw, 96px);
}



.card h2 {
  color: #70c600;
  font-weight: normal;
  font-size: 1.5rem;
  margin-top: 32px;
  margin-bottom: 16px;
  font-family: "フォーク R", Folk Regular;
  letter-spacing: 0.1rem;
}

.card h3 {

  font-weight: normal;
  font-size: 1.2rem;
  margin-bottom: 16px;
  font-family: "フォーク R", Folk Regular;
  letter-spacing: 0.1rem;
}




/*---------------------
 Layout
-----------------------*/
.main {
  width: 65%;
  padding-right: 20px;
  padding-left: 20px;

}

@media (max-width: 767px) {
  .main {
    flex: 1;
  }
}

.side {
  width: 35%;
  padding-right: 30px;
  padding-left: 15px;
}

@media (max-width: 767px) {
  .side {
    flex: 1;
  }
}

.side a {
  display: block;
}

.side h3 {
  color: #4C3B2D;
  margin-top: 20px;
  font-size: 18px;
  border-bottom: 3px solid #CDBAAB;
  padding: 0;
}

.side ul {
  list-style: none;
}

.side li {
  list-style: none;
  border-bottom-width: 1px;
  border-bottom-color: #eee;
  border-bottom-style: dashed;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
}

.side li:hover,
.side li.selected:hover {
  background-color: #E1EE00;
}

.side li.selected {
  background-color: #E4E1D9;
}

.side .date {
  font-size: 12px;
  line-height: 14px;
}

.side .title {
  font-size: 16px;
}


/*---------------------
 見出し
-----------------------*/
.pagetitle {
  font-weight: normal;
  font-size: var(--font32);
  line-height: 30px;
  margin-bottom: 32px;
  text-align: center;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  padding: 32px;
  display: block;
  font-weight: 600;
}

.pagedesc {
  font-size: var(--font18);
  line-height: 160%;
  font-weight: 400;
  text-align: center;
  max-width: 1000px;
  margin: auto;
}

.pagesubtitle,
h3.pagesubtitle {
  font-size: var(--font28);
  line-height: 160%;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  color: #333;
  margin: 64px auto 48px auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.pagesubtitle:before,
h3.pagesubtitle:before {
  content: '';
  border-bottom: 4px solid #70c600;
  height: 1px;
  width: 120px;
  margin-right: 32px;
  margin-top: -4px;
  vertical-align: middle;
}

.pagesubtitle:after,
h3.pagesubtitle:after {
  content: '';
  border-bottom: 4px solid #70c600;
  height: 1px;
  width: 120px;
  display: inline-block;
  margin-left: 32px;
  margin-top: -4px;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {

  .pagesubtitle:before,
  h3.pagesubtitle:before {
    content: '';
    border-bottom: 4px solid #70c600;
    height: 1px;
    width: 60px;
    margin-right: 16px;
    margin-top: -4px;
    vertical-align: middle;
  }

  .pagesubtitle:after,
  h3.pagesubtitle:after {
    content: '';
    border-bottom: 4px solid #70c600;
    height: 1px;
    width: 60px;
    display: inline-block;
    margin-left: 16px;
    margin-top: -4px;
    vertical-align: middle;
  }
}

.pagesubtitle span {
  font-size: var(--font20);
  line-height: 140%;
}

/*---------------------
 Utility
-----------------------*/
.flex {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 800px) {
  .flex {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
}

.marker {
  background-color: rgba(228, 240, 0, 0.3);
}

.table {
  display: table;
  width: 100%;
}

.table>* {
  display: table-cell;
}

@media (max-width: 767px) {
  .table {
    display: block;
    width: 100% !important;
  }

  .table>* {
    display: block;
    width: 100% !important;
  }
}

.wbr {
  display: inline-block;
}

.inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

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

.text-left {
  text-align: left;
}

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

.text-bold {
  font-weight: 600;
}

.mt-24px {
  margin-top: 24px;
}

.mb-24px {
  margin-bottom: 24px;
}

img[class*="wp-image-"],
img[class*="attachment-"] {
  height: auto;
  max-width: 100%;
}

.clearfix {
  overflow: hidden;
  zoom: 1;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}



@media (min-width: 768px) {
  .sp {
    display: none;
  }
}

@media (max-width:767px) {
  .pc {
    display: none;
  }
}
@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

li {
  list-style: none;
}

main {
  overflow: hidden;
}

.contents {
  background-color: #fff;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  margin-bottom: var(--space64);
  padding: 0;
}

/*-------------------
 Utility
--------------------*/
.wbr {
  display: inline-block;
}

.inner {
  max-width: var(--width-l);
  margin: auto;
  padding: 0 16px;
  display: block;
  overflow: hidden;
}


/*-------------------
 Common
--------------------*/

.section_title {
  font-size: var(--font40);
  line-height: calc(var(--font40) + 8px);
  text-align: center;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.2rem;

  margin-bottom: var(--space64);
  vertical-align: text-bottom;
}

.section_title span {
  font-size: var(--font24);
  line-height: calc(var(--font40) + 8px);
  vertical-align: bottom;
}

.section_lead {
  font-size: 1rem;
  max-width: 820px;
  margin: auto;
  text-align: center;
  line-height: 180%;
  margin-bottom: var(--space64);
}

.section_subtitle {
  font-size: 32px;
  line-height: 140%;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  color: #333;


  margin: 48px auto 24px auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

@media (max-width: 767px) {
  .section_subtitle {
    font-size: 26px;
  }
}

.section_subtitle span {
  font-size: 20px;
  display: block;
}

.section_subtitle:before {
  content: '';
  border-bottom: 4px solid var(--green);
  width: 120px;
  margin-right: 32px;
  margin-top: -4px;
  vertical-align: middle;
}

.section_subtitle:after {
  content: '';
  border-bottom: 4px solid var(--green);
  height: 1px;
  width: 120px;
  display: inline-block;
  margin-left: 32px;
  margin-top: -4px;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .section_subtitle:before {
    content: '';
    border-bottom: 4px solid var(--green);
    height: 1px;
    width: 30px;
    margin-right: 8px;
    margin-top: -4px;
    vertical-align: middle;
  }

  .section_subtitle:after {
    content: '';
    border-bottom: 4px solid var(--green);
    height: 1px;
    width: 30px;
    display: inline-block;
    margin-left: 8px;
    margin-top: -4px;
    vertical-align: middle;
  }
}


/*---------------------
  mv
-----------------------*/

.mv {
  position: relative;
  aspect-ratio: 875 / 444;
  width: 100%;
}

@media (max-width: 767px) {
  .mv {
    aspect-ratio: 400 / 889;
  }

}

.mv_bg {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  aspect-ratio: 875 / 444;
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .mv_bg {
    aspect-ratio: 400 / 889;
  }

}

@media (max-width: 767px) {}

.mv_bg img {
  width: 100%;
  aspect-ratio: 875 / 444;
}

@media (max-width: 767px) {
  .mv_bg img {
    width: 100%;
    aspect-ratio: 400 / 889;
  }
}

.mv_text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  aspect-ratio: 875 / 444;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@media (max-width: 767px) {
  .mv_text {
    aspect-ratio: 400 / 889;
    width: 100%;
    overflow: hidden;
  }
}


.mv_text h2 {
  position: absolute;
  top: 10%;
  margin: auto;
  z-index: 2;
  left: 0;
  right: 0;
  /* border: 1px solid #000; */
}

@media (max-width: 767px) {
  .mv_text h2 {
    top: 5%;
  }
}

.mv_text p {
  text-align: center;
  font-size: clamp(1.2rem, 2.08vw, 1.375rem);
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  white-space: nowrap;
}


.mv_text .item1 {
  position: absolute;
  top: 30%;
  left: 30%;
  z-index: 2;
  width: 20%;
  height: 33%;
  padding: var(--space48) var(--space24) var(--space24) var(--space24);
  overflow: hidden;

  display: grid;
  place-content: center;
}

@media (max-width: 767px) {
  .mv_text .item1 {

    top: 15%;
    left: 5%;
    width: 90%;
    height: 11%;


  }
}

.mv_text .item2 {
  position: absolute;
  top: 30%;
  left: 54%;
  z-index: 2;
  width: 19%;
  height: 33%;
  z-index: 2;
  padding: var(--space24);
  /* border: 1px solid #000; */
  display: grid;
  place-content: center;
  overflow: hidden;
  place-content: center;

}

@media (max-width: 767px) {
  .mv_text .item2 {
    top: 30%;
    left: 5%;
    width: 90%;
    height: 11%;
  }
}

.mv_text .item3 {
  position: absolute;
  top: 68%;
  left: 30%;
  z-index: 2;
  width: 43%;
  height: 20%;
  z-index: 2;

  /* border: 1px solid #000; */
  padding: var(--space24);
  display: grid;
  place-content: center;
  overflow: hidden;
  place-content: center;

}

@media (max-width: 767px) {
  .mv_text .item3 {
    top: 45%;
    left: 5%;
    width: 90%;
    height: 11%;
  }
}

/*---------------------
  treat
-----------------------*/
.treat_wrapper {
  background: linear-gradient(180deg, #FFF 0%, #E8F8FF 100%);
}

.treat {
  position: relative;
  aspect-ratio: 932 / 320;
  width: 100%;
  max-width: 900px;
  margin: 64px auto 64px auto;
}

@media (max-width: 767px) {
  .treat {
    aspect-ratio: 400 / 848;
  }
}

.treat_bg {
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  aspect-ratio: 932 / 320;
  width: 100%;
  margin: auto;
}

@media (max-width: 767px) {
  .treat_bg {
    aspect-ratio: 400 / 848;
  }
}

.treat_bg img {
  aspect-ratio: 932 / 320;
  margin: auto;
  width: 100%;
}

@media (max-width: 767px) {
  .treat_bg img {
    width: 100%;
    aspect-ratio: 400 / 848;
  }
}

.treat_text {
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  right: 0;
  z-index: 2;
  aspect-ratio: 932 / 320;
  width: 100%;
  overflow: hidden;
}

@media (max-width: 767px) {
  .treat_text {
    aspect-ratio: 400 / 848;
    width: 100%;
    overflow: hidden;
  }
}

.treat_text .item1 {
  position: absolute;
  top: 5%;
  left: 25%;
  z-index: 2;
  width: 48%;
  height: 26%;
  padding: var(--space24);
  overflow: hidden;
  /* border: 1px solid #ff0000; */
  display: block;
  font-size: clamp(1rem, 2.08vw, 1.375rem);
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  white-space: nowrap;
  text-align: center;
  color: #FFF;

}

@media (max-width: 767px) {
  .treat_text .item1 {
    top: 31%;
    left: 5%;
    width: 90%;
    height: 12%;
    font-size: 18px;
  }
}

.treat_text .item1>div {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -60%);
}

.treat_text .item1 span {
  font-size: var(--font32);
  font-style: normal;
  font-weight: 500;
  line-height: calc(var(--font32) + 8px);
  vertical-align: text-bottom;
}

@media (max-width: 767px) {
  .treat_text .item1 span {
    font-size: 28px;

  }
}

.dot i {
  position: relative;
  font-style: normal;
}

.dot i::before {
  content: '';
  background-color: #FFE51F;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  position: absolute;
  top: -10px;
  bottom: auto;
  left: 0;
  right: 0;
  z-index: 10;
  margin: auto;
  display: block;
}

.treat_text .item2 {
  position: absolute;
  top: 67%;
  left: 22%;
  z-index: 2;
  width: 25%;
  height: 25%;
  z-index: 2;
  padding: var(--space24);
  /* border: 1px solid #000; */
  display: grid;
  place-content: center;
  overflow: hidden;
  place-content: center;
  text-align: center;
  font-size: clamp(1rem, 2.08vw, 1.375rem);
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .treat_text .item2 {
    top: 60%;
    left: 1%;
    width: 70%;
    height: 15%;
    font-size: clamp(1.5rem, 6.4vw, 2.25rem);
  }
}

.treat_text .item3 {
  position: absolute;
  top: 67%;
  left: 51%;
  z-index: 2;
  width: 25%;
  height: 25%;
  z-index: 2;
  /* border: 1px solid #00c458c5; */
  padding: var(--space24);
  display: grid;
  place-content: center;
  overflow: hidden;
  place-content: center;
  text-align: center;
  font-size: clamp(1rem, 2.08vw, 1.375rem);
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .treat_text .item3 {
    top: 84%;
    left: 28%;
    width: 71%;
    height: 15%;
    font-size: clamp(1.5rem, 6.4vw, 2.25rem);
  }
}

.only {
  text-align: center;
  font-weight: 700;
  font-size: 28px;
  width: 100%;
  display: block;
  padding: 24px;
  padding-top: 0;
  margin-bottom: 32px;
}

/*---------------------
  treat2
-----------------------*/
.treat2 {
  position: relative;
  aspect-ratio: 445 / 198;
  width: 100%;
  max-width: 445px;
  margin: auto;
}

@media (max-width: 767px) {
  .treat2 {
    width: 94%;
  }
}

.treat2_bg {
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  aspect-ratio: 445 / 198;
  width: 100%;
  margin: auto;
}

.treat2_bg img {
  aspect-ratio: 445 / 198;
  margin: auto;
  width: 100%;
}

.treat2_text {
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  right: 0;
  z-index: 2;
  aspect-ratio: 445 / 198;
  width: 100%;
  overflow: hidden;
}



.treat2_text .item1 {
  position: absolute;
  top: 0%;
  left: 2%;
  z-index: 2;
  width: 100%;
  height: 80%;
  padding: var(--space24);
  padding-top: var(--space48);
  overflow: hidden;

  display: grid;
  place-content: center;
  font-size: clamp(1rem, 2.08vw, 1.375rem);
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  white-space: nowrap;
  text-align: center;
  color: white;
}

@media (max-width: 797px) {
  .treat2_text .item1 {
    padding: 20px;
    padding-top: 28px;
    font-size: clamp(0.9375rem, 4vw, 1.375rem);
  }
}

.treat2_text .item1>*:nth-child(3) {
  grid-column: span 2;
}

.treat2_text .item1 span {
  font-size: var(--font20);
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
}

.treat2_text .size-m {
  font-size: var(--font32);
  display: inline-block;
}

@media (max-width: 767px) {
  .treat2_text .size-m {
    font-size: clamp(1.125rem, 4.8vw, 1.5rem);
    display: block;
  }

}

.treat2_text .size-l {
  font-size: 36px;
  line-height: 150%;
}

@media (max-width: 767px) {
  .treat2_text .size-l {
    font-size: clamp(1.875rem, 8vw, 2.25rem);
    line-height: 38px;
  }
}


@media (max-width: 767px) {
  .treat2_text .item1 span {
    font-size: clamp(1.125rem, 4.8vw, 1.25rem);
    line-height: 150%;
    display: block;
  }
}

/*---------------------
  treat3
-----------------------*/
.treat3 {
  padding: var(--space64);

}

.treat3 figure img {
  max-width: 640px;
  margin: auto;
  margin-bottom: var(--space64);
  width: 100%;
}



/*---------------------
  growth
-----------------------*/

.growth_title {
  background-image: url(images/growth_bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 1030 / 260;
  width: 100%;
  position: relative;
}

@media (max-width: 767px) {
  .growth_title {
    background-image: url(images/growth_bg_sp.webp);
    aspect-ratio: 400 / 260;
    display: block;
    margin: auto;

  }
}

.growth_title_inner {
  background: rgba(255, 255, 255, 0.42);
  width: 40%;
  margin: auto;
  display: grid;
  place-content: center;
  padding: var(--space32) 48px;
  height: 100%;
  color: #000;
  text-align: center;
  font-size: var(--font32);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}

@media (max-width: 767px) {
  .growth_title_inner {
    height: 80px;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    margin: auto;
  }
}

.growth_title_inner span {
  text-align: center;
  font-size: var(--font22);
  font-weight: 500;
  line-height: 150%;
}

.growth .section_lead {
  padding: var(--space48) var(--space32);
}

.growth_list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}

@media (max-width: 767px) {
  .growth_list {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
}

.growth_list>* {
  flex: 1 1 calc((100% - (48px * 1)) / 2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  padding: var(--space32);
  text-align: center;
}

.growth_list>*:nth-child(1) {
  background-color: #FFFCE2;
}

.growth_list>*:nth-child(2) {
  background-color: #ECF7F9;
}

/*---------------------
　flow
-----------------------*/

.flow_list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: var(--space32);
  width: 80%;
  margin: auto;
  padding: var(--space32);
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .flow_list {
    flex-direction: column;
    width: 100%;
    gap: 48px;
  }
}

.flow_list>* {
  flex: 1 1 calc((100% - (48px * 3)) / 4);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: var(--space24);
  text-align: center;
  color: #000;

  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
}



.flow_list>* img {
  max-width: 170px;
}

@media (max-width: 767px) {

  .flow_list>* img {
    max-width: 220px;
  }

}

.flow_list h3 {


  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
}

/*---------------------
　three
-----------------------*/
.three {
  background-color: #FCECEC;
  padding: var(--space64) var(--space32);
}

.three picture>* {
  margin: auto;
  display: grid;
  place-content: center;
}

/*---------------------
　merit
-----------------------*/
.merit {
  background-image: url("images/pdf_merit_bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: var(--space64);
}

@media (max-width: 767px) {
  .merit {
    background-image: url("images/pdf_merit_bg_sp.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

.merit .pagesubtitle {
  margin: var(--space48) auto;
}

.merit .section_lead {
  margin: var(--space48) auto;
}

.merit_list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space32);
  flex-direction: column;
  margin: var(--space48) auto;
  max-width: 500px;
}

.merit_list>* {
  flex: 1 1 calc((100% - (48px * 1)) / 2);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: var(--space48);
  color: #0C3E87;

  font-size: var(--font20);
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
}

@media (max-width: 767px) {
  .merit_list>* {
    flex-direction: column;
    width: 100%;
    gap: 0;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
  }
}

.merit_list .icon {
  width: 32px;
  height: 32px;
  object-fit: contain;

}

@media (max-width: 767px) {
  .merit_list .icon {
    margin: 0;
    margin-top: 32px;
    margin-bottom: 8px;
  }
}

/*---------------------
  target
-----------------------*/
.target {
  padding: var(--space64) var(--space32);
  position: relative;
  z-index: 1;
}

.target::before {
  width: 100%;
  aspect-ratio: 1031 / 582;
  background: #F7F7F1;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 57.216495%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 0%, 100% 57.216495%, 0% 100%);
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  margin: auto;
  z-index: -1;
}

.target_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space32);
  z-index: 2;
  position: relative;
  margin: auto;
  margin-top: 0;
}

@media (max-width: 767px) {
  .target_list {
    flex-direction: column;
    width: 100%;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
  }
}

.target_list>* {
  flex: 1 1 calc((100% - (var(--space32) * 2)) / 3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: left;
  gap: 2px;
  font-size: 15px;

}


.target_list>*:nth-child(1) {
  justify-content: space-between;
  align-items: flex-end;
}

@media (max-width: 767px) {
  .target_list>*:nth-child(1) {
    order: 2;
    flex: 1 1 calc((100% - (var(--space32) * 1)) / 2);
    align-items: flex-start;
    justify-content: flex-start;
  }
}

.target_list>*:nth-child(2) {
  justify-content: center;
  align-items: center;
}

@media (max-width: 767px) {
  .target_list>*:nth-child(2) {
    order: 1;
    flex: 1 1 100%;
    align-items: center;
    justify-content: center;
  }
}

.target_list>*:nth-child(3) {
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

@media (max-width: 767px) {
  .target_list>*:nth-child(3) {
    order: 3;
    flex: 1 1 calc((100% - (var(--space32) * 1)) / 2);
  }
}

.target_list h3 {
  border-radius: 300px;
  background: #0C3E87;
  color: white;
  width: 64px;
  height: 64px;
  object-fit: contain;
  aspect-ratio: 1 / 1;
  display: grid;
  place-content: center;
  margin: 32px auto 16px auto;
  position: relative;
  z-index: 3;

}

.target_list .frame {
  background: #d8e5f7;
  padding: var(--space32);
  padding-top: 45px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border-radius: 15px;
  text-align: center;
  row-gap: 0px;
  column-gap: 12px;
  margin-top: -50px;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .target_list .frame {
    justify-content: center;
    align-items: center;
  }
}

/*---------------------
  Faq
-----------------------*/

.faq {
  padding: 0 var(--space32) var(--space64) var(--space32);
}


.faq_list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: var(--space48);
  flex-wrap: wrap;
  padding: var(--space64) var(--space64);
}

@media (max-width: 767px) {
  .faq_list {
    flex-direction: column;
    width: 100%;
    padding: 0;
  }
}

.faq_list>* {
  flex: 1 1 calc((100% - (48px * 1)) / 2);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: var(--space32);
  border-radius: 30px;
  background: rgba(238, 245, 188, 0.30);
  padding: var(--space32) var(--space32);
}

.faq_list .faq_que {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space32);
  width: 100%;
}

@media (max-width: 767px) {
  .faq_list .faq_que {
    flex-direction: column;
  }
}

.faq_list .faq_ans {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space32);
  width: 100%;
}

@media (max-width: 767px) {
  .faq_list .faq_ans {
    flex-direction: column;
    padding-top: 32px;
  }
}

.faq_list img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  aspect-ratio: 1 / 1;
  display: grid;
  place-content: center;
}

@media (max-width: 767px) {
  .faq_list img {
    width: 64px;
    height: 64px;
    margin: auto;
  }
}

.faq_list .faq_que>*:nth-child(1) {
  flex: 0 0 70px;
}

.faq_list .faq_que>*:nth-child(2) {
  flex: 1;
}

.faq_list .faq_ans>*:nth-child(1) {
  flex: 0 0 70px;
}

.faq_list .faq_ans>*:nth-child(2) {
  flex: 1;
}

/*---------------------
  price
-----------------------*/
.price {
  padding: 0 var(--space64) var(--space128) var(--space64);

}

.price .attention {
  /* border: 1px solid #6BAE37; */
  padding: var(--space32);
  text-align: center;
}

.price .attention h4 {
  color: #6BAE37;
  font-family: Inter;
  font-size: var(--font24);
  font-style: normal;
  font-weight: 700;
  line-height: 200%;
}

.price .attention p {
  color: #6BAE37;
  font-family: Inter;
  font-size: var(--font16);
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
}

.price_list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  margin: var(--space64) auto;
  width: 80%;
  padding: var(--space24);
}

@media (max-width: 767px) {
  .price_list {
    flex-direction: column;
    width: 100%;

  }

}

.price_list>* {

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
  color: #000;
  font-size: var(--font24);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: var(--space32);

}

.price_list dt {
  flex: 0 0 30%;
  align-self: flex-start;
  border: 1px solid #ddd;
}

.price_list dd {
  flex: 1;
  align-self: flex-end;
  border: 1px solid #ddd;
  border-left: 0;
}

@media (max-width: 767px) {
  .price_list dt {
    flex: 0 0 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .price_list dd {
    flex: 0 0 100%;
    border: 1px solid #ddd;
    border-top: 0;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
}

.attention {
  width: 80%;
  margin: auto;
  border: 1px solid #6BAE37;
}

@media (max-width: 767px) {
  .attention {
    width: 100%;
  }

}