@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-origin: border-box;
}
@font-face {
  font-family: "Noto Sans CJK JP";
  src: url("../font/NotoSansCJKjp-VF.otf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "Hiragino Maru Gothic Pro";
  /* src: url("../font/HiraMaruProN-W4-AlphaNum.woff2") format("woff2"), url("../font/HiraMaruProN-W4-AlphaNum.woff") format("woff"); */
  src: url("../font/Hiragino_Maru_Gothic_ProN_W4.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-primary: #ea5d6c;
  --color-secondary: #fef4e5;
  --color-tertiary: #333;
  --color-white: #fff;
  --font-noto-san: "Noto Sans JP";
  --font-noto-san-cjk: "Noto Sans CJK JP";
  --font-hiragino: "Hiragino Maru Gothic Pro";
  font-size: 10px;
}
html {
  scroll-behavior: smooth;
  line-height: 0;
}
body {
  display: block;
  overflow-x: hidden;
  width: 100%;
  font-style: normal;
}
p {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-tertiary);
}
/*====================================*/
/* base contents */
/*====================================*/
a {
  text-decoration: none;
}
ul {
  list-style-type: none;
}
ul li {
  color: currentColor;
}
img {
  width: 100%;
  height: auto;
  overflow: hidden;
  object-fit: cover;
}
h2,
h3,
h4,
p {
  line-height: 1.8;
}
.animate {
  opacity: 0;
  transition: all 0.8s ease-in-out;
  position: relative;
}

.slide-up {
  transform: translateY(100px);
}

.slide-down {
  transform: translateY(-100px);
}

.slide-left {
  transform: translateX(100px);
}

.slide-right {
  transform: translateX(-100px);
}

.animate.active {
  opacity: 1;
  transform: translate(0, 0);
}
.mt-108 {
  margin-top: 108px !important;
}
small {
  font-size: 1.2rem;
}
@media (min-width: 1079.98px) {
  small {
    font-size: 1.4rem;
  }
}
.fl_row {
  display: flex;
  justify-content: space-between;
}
.items-center {
  align-items: center;
}
.flex_start {
  justify-content: flex-start !important;
}
.fl_col {
  display: flex;
  flex-direction: column !important;
}
.mt_16 {
  margin-top: 16px !important;
}
.mt-32 {
  margin-top: 32px !important;
}
.text-right {
  text-align: right;
}
.gap-32 {
  gap: 32px !important;
}
.border-green {
  border: 3px solid #7ac0a3 !important;
}
.color-green-white {
  color: var(--color-white) !important;
  background: #7ac0a3 !important;
}
.pd-80 {
  padding: 32px 80px !important;
}
.pd-24 {
  padding: 24px !important;
}
.pb-24 {
  padding-bottom: 24px !important;
}
.pb-16 {
  padding-bottom: 16px !important;
}
.pd-0 {
  padding: 0 !important;
}
.m-h116 {
  max-height: 120px;
}
/* ------------------------
    edit contents
------------------------- */
/* 指定フォント ここから */

/* ----pc,sp/on_off---- */
.pc {
  display: block !important;
}
.tb {
  display: block;
}
.pc_fl {
  display: flex !important;
}
.sp {
  display: none !important;
}
.sp_fl {
  display: none !important;
}
.min-mb {
  display: block;
}
@media (min-width: 424.98px) {
  .min-mb {
    display: none;
  }
}
@media (max-width: 1079.98px) {
  .pc {
    display: none !important;
  }
  .pc_fl {
    display: none !important;
  }
  .tb {
    display: none;
  }
  .sp {
    display: block !important;
  }
  .sp_fl {
    display: flex !important;
  }
}

/*====================================*/
/* Header */
/*====================================*/
header {
  position: relative;
  z-index: 2;
}
.topbar {
  position: relative;
  background: linear-gradient(180deg, #fffff6 0%, #ffdfae 50.48%, #ffdfae 75.96%);
}
.topbar .topbar_detail--bg {
  position: relative;
  z-index: 0;
  width: 100%;
  animation: opacity 1.5s ease-in-out;
}
@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.topbar .topbar_detail--main {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  animation: customBackInDown 0.8s ease-in-out forwards;
}
@keyframes customBackInDown {
  0% {
    opacity: 0;
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -100px, 0, 1) translateX(-50%);
  }
  100% {
    opacity: 1;
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1) translateX(-50%);
  }
}
.decor_2,
.decor_3 {
  overflow: hidden;
  position: absolute;
  content: "";
  display: block;
  z-index: 5;
  bottom: 0;
}
.decor_2 {
  background: url(../img/svg/top_decor1.svg) no-repeat;
  background-size: cover;
  width: 73.383px;
  height: 126.361px;
  left: 0;
}
.decor_3 {
  background: url(../img/svg/top_decor2-sp.svg) no-repeat;
  background-size: cover;
  width: 80.996px;
  height: 106.22px;
  right: 0;
}
.break {
  position: relative;
  z-index: 4;
  /* margin-top: 10px; */
}
.bottombar_detail {
  position: relative;
  z-index: 3;
  /* background: linear-gradient(180deg, #baefd9 0%, #98d6bd 5.53%, #7ac0a3 12.95%, #1fa08a 51.44%); */
  background: linear-gradient(180deg, #fffff6 0.54%, #b2dfd2 5.64%, #37bbb1 14.35%, #1fa08a 97.08%);
  margin-top: -2px;
}
.bottombar_detail p {
  position: relative;
  z-index: 1;
  padding: 59px 20px 131px;
  color: var(--color-white);
  font-family: var(--font-hiragino);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.9;
  margin: 0 auto;
}
.decor_4 {
  position: absolute;
  display: block;
  z-index: 4;
  background: url(../img/svg/top_decor4.svg) no-repeat;
  background-size: cover;
  width: 133.01px;
  height: 152px;
  right: 0;
  bottom: 0;
}
.setup1 {
  z-index: unset;
}
.setup2 {
  margin-top: -2px;
  background: transparent;
  z-index: 3;
}
/* Nav */
.buttonX {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 47px;
  height: 47px;
  padding: 10px;
  box-sizing: border-box;
  cursor: pointer;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #20a08a;
  border-radius: 50%;
  background: #20a08a;
}
.buttonX span {
  display: block;
  height: 3px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.buttonX span:nth-child(1),
.buttonX span:nth-child(2),
.buttonX span:nth-child(3) {
  width: 100%;
}
.buttonX span:nth-child(n + 4) {
  display: none;
}

.buttonX.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.buttonX.active span:nth-child(2) {
  display: none;
}
.buttonX.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -7px);
}
.hero_menu {
  position: fixed;
  top: 0;
  left: -80%;
  width: 80%;
  height: 100vh;
  background: var(--color-white);
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease;
  z-index: 1000;
  padding: 31px 14px;
}
.hero_menu.active {
  left: 0;
}
.hero_menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.hero_menu ul li {
  max-width: 135px;
  margin-bottom: 10px;
}
.hero_menu ul li {
  transition: transform 0.3s ease;
}

.hero_menu ul li:hover {
  transform: translateY(-10px);
}
.hero_menu ul li a {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  transition: all 0.5s ease;
}
.hero_menu ul li a:hover p {
  font-weight: 700;
  transform: scale(1.1);
}
.hero_menu ul li a:hover img:first-child {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.hero_menu ul li a p {
  text-align: center;
  color: var(--color-primary);
  font-size: 1.4rem;
  font-family: var(--font-hiragino);
  font-weight: 400;
  line-height: 15.179px;
}
.hero_menu ul li a img:last-child {
  width: 7.59px;
  height: 7.59px;
  margin-top: -10px;
}
@media (min-width: 767.98px) {
  .topbar::after {
    width: 137.811px;
    height: 218.951px;
    transform: translateX(-75%);
    animation: customDownUp1 0.8s ease-in-out forwards;
  }
  @keyframes customDownUp1 {
    0% {
      opacity: 0;
      transform: translateY(100px) translateX(-75%);
    }
    100% {
      opacity: 1;
      transform: translateY(0) translateX(-75%);
    }
  }
  .bottombar_detail p {
    max-width: 600px;
    margin: 0 auto;
  }
  .decor_4 {
    width: 154.01px;
    height: 171px;
    bottom: 10px;
  }
  .hero_menu ul {
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
  }
  .hero_menu ul li {
    min-width: 180px;
  }
  .decor_2 {
    width: 111.383px;
    height: 196.361px;
  }
  .decor_3 {
    width: 129.996px;
    height: 169.22px;
  }
}
@media (min-width: 1079.98px) {
  header {
    z-index: 1;
  }
  .topbar .topbar_detail--main {
    width: 60%;
  }
  .break {
    margin-top: -88px;
  }
  .bottombar_detail {
    background: linear-gradient(0deg, #34bab0 95%, #c5e7d5 249.76%, #f5f6e2 155.08%);
  }
  .bottombar_detail p {
    padding: 28px 0 114px;
    max-width: 1080px;
  }
  .setup2 {
    margin-top: -1px !important;
  }
  .decor_4 {
    width: 383.231px;
    height: 417.369px;
    bottom: 22px;
    z-index: 0;
  }
  .hero_menu {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: transparent;
    height: auto;
    box-shadow: none;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0;
  }
  .hero_menu ul {
    gap: 50px;
    max-width: 1080px;
    margin: 0 auto;
  }
  .hero_menu ul li {
    min-width: 176px;
    margin-bottom: 0;
  }
  .hero_menu ul li a img {
    max-width: 148px;
  }
  .hero_menu ul li a p {
    font-size: 1.6rem;
    line-height: 20px;
    min-height: 40px;
    display: flex;
    align-items: center;
  }
  .hero_menu::before,
  .hero_menu::after {
    position: absolute;
    content: "";
    display: block;
    z-index: -1;
    top: -171px;
  }
  .hero_menu::before {
    background: url(../img/svg/top_decor1.svg) no-repeat;
    background-size: cover;
    width: 173.383px;
    height: 289.361px;
    left: 0;
  }
  .hero_menu::after {
    background: url(../img/svg/top_decor2.svg) no-repeat;
    background-size: cover;
    width: 209.996px;
    height: 276.22px;
    right: 0;
  }
}
/*====================================*/
/* Main */
/*====================================*/
/* Section */
.sec-1 {
  position: relative;
  z-index: 1;
}
.lp_main {
  background: linear-gradient(180deg, #fff 0%, #fef4e5 22.12%, #ffdfae 100%);
  padding-bottom: 101px;
}
.lp_main--title {
  position: relative;
  padding-top: 110px;
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 47px;
}
.lp_main--title h2 {
  font-family: var(--font-hiragino);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.33;
}
.lp_main--title h2 span {
  display: block;
  font-size: 2rem;
}
.lp_main--detail {
  position: relative;
  z-index: 2;
  margin: 0 20px;
}
.detail_top {
  position: relative;
}
.grid-1 {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  align-items: stretch;
}
.grid-2,
.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  align-items: stretch;
}
.grid-1 {
  grid-template-areas: "img1";
}
.grid-2 {
  grid-template-areas: "img1 img2";
}
.grid-3 {
  grid-template-areas:
    "img3 img1"
    "img2 img1";
}
.img1 {
  grid-area: img1;
  border-radius: 0px 11.496px 0px 0px;
}
.grid-2 .img1 {
  border-radius: 32px 0px 0px 0px;
}
.grid-2 .img2 {
  border-radius: 0px 32px 0px 0px;
}
.img3 {
  grid-area: img3;
  border-radius: 11.496px 0px 0px 0px;
}
.img3 {
  grid-area: img3;
}
.grid-2::after,
.grid-1::after {
  position: absolute;
  content: "";
  background: url(../img/svg/grid_line.svg) no-repeat;
  background-size: cover;
  width: 100%;
  height: 12px;
  bottom: 0;
}
.detail_bottom {
  padding: 24px 14px;
  border-radius: 0px 0px 32px 32px;
  background-color: var(--color-white);
}
.detail_bottom h3 {
  color: var(--color-primary);
  text-align: center;
  font-family: var(--font-noto-san);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 2.4px;
  margin-bottom: 24px;
}
.detail_bottom--table {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.detail_bottom--table .left p {
  color: var(--color-primary);
  font-family: var(--color-primary);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 1.8px;
}
.detail_bottom--table .right {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-radius: 20px;
  background: #fef4e5;
}
.detail_bottom--table .right .option > .op_tittle,
.detail_bottom--table .right .option > .op_text {
  font-family: var(--font-noto-san-cjk);
  line-height: 1.6;
  text-align: right;
}
.detail_bottom--table .right .option > .op_tittle {
  display: flex;
  justify-content: flex-start;
  color: var(--color-primary);
}
.detail_bottom--table .right .option > .op_tittle p:first-child {
  color: var(--color-primary);
  font-size: 1.6rem;
  font-weight: 700;
}
.detail_bottom--table .right .option > .op_tittle p:first-child:before,
.detail_bottom--table .right .option > .title_bf::before {
  content: "";
  display: inline-block;
  width: 11.87px;
  height: 11.87px;
  transform: rotate(-45deg);
  background-color: var(--color-primary);
  margin-right: 8px;
}
.detail_bottom--table .right .option > .title_bf::before {
  margin-top: 6px;
}
.detail_bottom--table .right .dinner > .op_tittle p:first-child:before {
  background: #0c6bb0;
}
.detail_bottom--table .right .option > .op_text {
  margin-top: 14px;
  color: var(--color-tertiary);
  font-size: 1.4rem;
}
.detail_bottom--table .right .option {
  position: relative;
}
.detail_bottom--table .right .option::after {
  content: "";
  position: absolute;
  display: block;
  background: url(../img/svg/line_dot.svg) no-repeat;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: -18px;
}
.detail_bottom--table .right .option:last-child::after {
  content: none;
}
.option2 {
  display: flex;
  flex-direction: column;
}
.option2 .square,
.right .square {
  display: flex;
  border: 1px solid #ea5d6c;
  border-radius: 11px;
}
.option2 .square:first-of-type {
  margin: 14px 0 16px;
}
.option2 .square p {
  font-family: var(--font-noto-san-cjk);
  font-size: 1.6rem;
  line-height: 1.6;
  padding: 8px 0;
}
.option2 .square p:first-child,
.right .square p:first-child {
  color: #fffff6;
  background: var(--color-primary);
  width: 35%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px 0 0 8px;
}
.option2 .square p:last-child,
.right .square p:last-child {
  color: var(--color-tertiary);
  background: #fffff6;
  width: 65%;
  padding-left: 8px;
  border-radius: 0 11px 11px 0;
}
.fl_text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fl_text span {
  display: block;
  position: relative;
}
.fl_text span:first-child::after {
  content: "";
  position: absolute;
  background: url(../img/svg/line_dot-red.svg) repeat;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: -10px;
}
.option3 {
  display: flex;
  justify-content: space-between;
}
.option3 .op_text {
  margin-top: 0 !important;
}
/* Decor BF AT */
.sec-1 .lp_main--title::before,
.sec-2 .lp_main--title::before {
  position: absolute;
  content: "";
}
.sec-1 .lp_main--title::before {
  background: url(../img/svg/top_decor5.svg) no-repeat;
  background-size: cover;
  width: 152px;
  height: 159.894px;
  left: -10px;
  top: 20px;
}
.sec-2 .lp_main--title::before {
  background: url(../img/svg/top_decor8.svg) no-repeat;
  background-size: cover;
  width: 157.514px;
  height: 107.797px;
  left: -40px;
  bottom: -61px;
  z-index: -1;
}
.decor_1-1,
.decor_1-2 {
  position: relative;
}
.decor_1-1::before,
.decor_1-2::after {
  position: absolute;
  content: "";
  z-index: 1;
}
.decor_1-1::before {
  background: url(../img/svg/top_decor6.svg) no-repeat;
  background-size: cover;
  width: 176.062px;
  height: 180px;
  right: 0;
  top: -175px;
}
.sec-2 .decor_1-1::before {
  background: url(../img/svg/top_decor9.svg) no-repeat;
  background-size: cover;
  width: 131.345px;
  height: 158.32px;
  z-index: -1;
  right: 0;
  top: -60px;
}
.decor_1-2::after {
  background: url(../img/svg/top_decor7.svg) no-repeat;
  background-size: cover;
  width: 154px;
  height: 128px;
  left: -50px;
  bottom: -100px;
}
@media (min-width: 424.98px) {
  .option1 {
    display: flex;
    justify-content: space-between;
  }
  .detail_bottom--table .right .option > .op_text {
    margin-top: 0;
  }
}
@media (min-width: 767.98px) {
  .lp_main--detail {
    max-width: 600px;
    margin: 0 auto;
  }
  .detail_bottom {
    padding: 44px 34px;
  }
}
@media (min-width: 1079.98px) {
  .lp_main {
    padding-bottom: 0;
  }
  .lp_main--title {
    padding-top: 77px;
  }
  .lp_main--title h2 {
    font-size: 4.6rem;
    line-height: 1.17;
  }
  .lp_main--title h2 span {
    font-size: 3.2rem;
  }
  .detail_bottom h3 {
    font-size: 3.2rem;
    line-height: 2;
  }
  .detail_bottom--table .left p {
    font-size: 2rem;
    line-height: 2;
    letter-spacing: 1px;
  }
  .lp_main--detail {
    max-width: 1080px;
  }
  .detail_bottom {
    padding: 32px 48px;
  }
  .detail_bottom--table {
    flex-direction: row;
  }
  .detail_bottom--table .left,
  .detail_bottom--table .right {
    width: 50%;
  }
  .detail_bottom--table .left {
    width: 502px;
  }
  .detail_bottom--table .right {
    max-width: 450px;
  }
  /* .option1 {
    display: flex;
    justify-content: space-between;
  } */
  .detail_bottom--table .right .option > .op_text {
    margin-top: 0;
    font-size: 1.6rem;
  }
  .detail_bottom--table .right .option > .op_text,
  .op_square {
    min-width: 294px;
  }
  .option2 {
    flex-direction: row;
    justify-content: space-between;
  }
  .option2 .square:first-of-type {
    margin-top: 0;
  }
  .setup3 {
    margin-top: 0;
  }
  .img1 {
    border-radius: 0px 32px 0px 0px;
  }
  .img3 {
    border-radius: 32px 0px 0px 0px;
  }
  .grid-3::after {
    position: absolute;
    content: "";
    background: url(../img/svg/grid_line.svg) no-repeat;
    background-size: cover;
    width: 100%;
    height: 18px;
    bottom: 0;
  }
  .grid-2::after,
  .grid-1::after {
    height: 18px;
  }
  .detail_bottom--table .right .option > .op_tittle {
    justify-content: space-between;
  }
  /* Decor BF AT */
  .sec-1 .lp_main--title::before {
    width: 352.916px;
    height: 376.438px;
    left: 10px;
    top: -175px;
    z-index: 1;
  }
  .decor_1-1::before {
    width: 406px;
    height: 417.317px;
    top: 903px;
  }
  .decor_1-2::after {
    width: 275.78px;
    height: 254.077px;
    left: 0;
    bottom: 300px;
  }
  .sec-2 .lp_main--title::before {
    width: 360px;
    height: 246.763px;
    bottom: -108px;
  }
  .sec-2 .decor_1-1::before {
    width: 292px;
    height: 352.444px;
    top: 657px;
  }
}
/* Section2-plan */
.sec-2 {
  position: relative;
  background: linear-gradient(180deg, #baefd9 0%, #98d6bd 5.53%, #7ac0a3 12.95%, #1fa08a 51.44%);
  margin-top: -2px;
  z-index: 0;
}
.setup3 {
  margin-top: -1px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}
@media (min-width: 1023.98px) {
  .setup3 {
    margin-top: -2px;
  }
}
.sec-2 .lp_main--title {
  padding-top: 80px;
  color: var(--color-secondary);
  z-index: 1;
}
.grid-1 img {
  border-radius: 32px 32px 0px 0px;
  min-height: 293px;
}
.grid-1 .img4 {
  min-height: auto;
}
.fl_row .op_text {
  margin-top: 0 !important;
}
.op_tittle span {
  display: inline-flex;
  float: inline-end;
  text-align: right;
  flex-direction: column;
  color: var(--color-tertiary);
  font-size: 1.4rem;
  line-height: 1.6;
}
.dinner .op_tittle p:first-child {
  color: #0c6bb0 !important;
}
.dinner .op_tittle::before {
  background: #0c6bb0 !important;
}
.dinner .square {
  border: 1px solid #0c6bb0;
}

.dinner .square p:first-child {
  background: #0c6bb0;
}
.detail_bottom--additional {
  margin-top: 32px;
  border: 3px solid var(--color-primary);
  border-radius: 8px;
}
.detail_bottom--additional .right,
.detail_bottom--additional .left {
  font-family: var(--font-noto-san-cjk);
}
.detail_bottom--additional .left {
  text-align: center;
  color: var(--color-secondary);
  background: var(--color-primary);
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 2px;
}
.detail_bottom--additional .right {
  background: var(--color-secondary);
  color: var(--color-primary);
  padding: 16px;
  border-radius: 8px;
}
.detail_bottom--additional .right ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.detail_bottom--additional .right ul li {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.flower {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.6;
  padding-left: 32px;
}
.flower::before {
  position: absolute;
  content: "";
  display: inline-block;
  background: url(../img/svg/flow.svg) no-repeat;
  background-size: cover;
  width: 24px;
  height: 26px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.flower span {
  display: inline-block;
  margin-left: 32px;
}
.detail_bottom--additional .add_items--green {
  padding: 0;
  padding-bottom: 24px;
}
.detail_bottom--additional .add_items--green .right_img {
  padding: 24px;
  padding-bottom: 16px;
}
.detail_bottom--additional .add_items--green .right_img img {
  border-radius: 8px;
}
.detail_bottom--additional .add_items--green .text_bt {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 8px;
}
.text_bt .text p {
  color: #7ac0a3;
  font-family: var(--font-noto-san-cjk);
  line-height: 2;
  letter-spacing: 2px;
}
.add_items--green .text_bt .square {
  margin: 0;
}
.add_items--green .square {
  border-radius: 13px;
  margin: 0 8px;
}
.add_items--green .square p:first-child {
  background: #7ac0a3;
  color: var(--color-secondary);
  padding: 8px 16px;
}
.add_items--green .square p:last-child {
  color: #7ac0a3;
  text-align: center;
  font-family: var(--font-noto-san-cjk);
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 2px;
  padding: 0 16px;
}
.line-green-break {
  position: relative;
  margin-top: 64px;
}
.line-blue-break {
  position: relative;
}
.line-green-break::before,
.line-blue-break::before {
  content: "";
  position: absolute;
  background: url(../img/svg/line_dot-green.svg) no-repeat;
  width: 100%;
  height: 2px;
  left: 0;
  top: -32px;
}
.line-blue-break::before {
  background: url(../img/svg/line_dot-blue.svg) no-repeat;
}
.add_items--blue {
  border: 3px solid #57c3ea;
  margin-top: 64px;
}
.add_items--blue .left {
  background: #57c3ea;
  color: var(--color-white);
  font-weight: 500;
  padding: 0 16px;
  letter-spacing: 0;
}
.add_items--blue .right {
  background: #f5fffb;
  padding: 0;
  padding-bottom: 24px;
}
.add_items--blue .right .right_img {
  padding: 24px;
  padding-bottom: 16px;
}
.add_items--blue .square {
  border: 3px solid #57c3ea;
}
.add_items--blue .square p:first-child {
  background: #57c3ea;
  width: 50%;
}
.add_items--blue .square p:last-child {
  width: 50%;
  color: #57c3ea;
  align-content: space-evenly;
}
/* btn */
.btn {
  margin: 48px auto 0;
  max-width: 300px;
}
.btn a p {
  position: relative;
  color: var(--color-white);
  background: var(--color-primary);
  text-align: center;
  font-family: var(--font-noto-san-cjk);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  padding: 18px 24px;
  border-radius: 25px;
  transition: all 0.5s ease;
  padding-left: 0;
}
.btn a p::after {
  position: absolute;
  content: "";
  display: inline-block;
  background: url(../img/svg/arrow_right.svg) no-repeat;
  width: 16px;
  height: 16px;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.btn a:hover p {
  color: var(--color-primary);
  background: var(--color-secondary);
  padding-left: 20px;
}
.btn a:hover p::after {
  background: url(../img/svg/arrow_right-red.svg) no-repeat;
}
.content-1 .btn,
.content-3 .btn {
  margin: 0 0 0 auto;
}
.content-1 .btn a p,
.content-3 .btn a p {
  min-width: 300px;
}
@media (min-width: 424.98px) {
  .add_items--blue .left {
    letter-spacing: 2px;
  }
}
@media (min-width: 1079.98px) {
  .sec-2 .lp_main--title {
    padding-top: calc(128px + 208px);
  }
  .op_tittle span {
    font-size: 1.6rem;
  }
  .detail_bottom--additional .right ul li {
    flex-direction: row;
    gap: 32px;
  }
  .detail_bottom--additional .add_items--green {
    display: flex;
    padding: 24px;
    gap: 32px;
  }
  .detail_bottom--additional .add_items--green .right_img {
    width: 50%;
    padding: 0;
  }
  .detail_bottom--additional .add_items--green .text_bt {
    width: 50%;
  }
  .text_bt .text p {
    font-size: 2rem;
  }
  .detail_bottom--additional .add_items--green .square {
    margin: 0;
    height: fit-content;
  }
  .add_items--green .square p:last-child {
    padding: 16px;
  }
  .pc_right {
    display: flex;
  }
  .add_items--blue .right {
    flex-direction: column;
    gap: 16px;
  }
  .add_items--blue .right_img {
    width: 100% !important;
  }
  .add_items--blue .square {
    width: 100% !important;
    min-height: 108px;
  }
  .res-list {
    padding: 32px 80px;
  }
}
/* Section3-plan */
.sec-3 {
  position: relative;
  background: linear-gradient(180deg, #fffae2 0%, #f8efc1 19.72%, #f8efc1 100%);
  padding: 167px 0 156px;
  /* overflow: hidden; */
}
.lp_main--content {
  padding: 0 20px;
  display: flex;
  flex-direction: column-reverse;
  gap: 30px;
  max-width: 400px;
  margin: 0 auto;
}
.content-2,
.content-3 {
  margin-top: 100px !important;
}
.lp_main--content .content_left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.content_left .content_left--title {
  color: var(--color-primary);
  font-family: var(--font-noto-san-cjk);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
}
.content_left .content_left--title span {
  display: block;
  font-size: 1.8rem;
}
.content_left .content_left--text {
  color: var(--color-tertiary);
  font-family: var(--font-noto-san-cjk);
  font-size: 1.4rem;
  line-height: 1.6;
}
.content_left .content_left--table {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.content_left--table .table--col {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.content_left--table .table--col::after {
  content: "";
  position: absolute;
  display: block;
  background: url(../img/svg/line_dot.svg) no-repeat;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: -18px;
}
.content_left--table .table--col:last-child:after {
  content: none;
}
.content_left--table .table--col p:first-child,
.content_left--table .table--col p:last-child {
  font-family: var(--font-noto-san-cjk);
  line-height: 1.6;
}
.content_left--table .table--col p:first-child {
  color: var(--color-primary);
  font-weight: 700;
}
.content_left--table .table--col p:last-child {
  font-size: 1.4rem;
}
.content_left--table .table--col .table--col_link {
  display: flex;
  gap: 20px;
  align-items: center;
}
.content_left--table .table--col .table--col_link span {
  display: block;
  max-width: 49px;
}
.content_left--table .table--col .table--col_link span a {
  transition: opacity 0.5s ease;
}
.table--col_link span a:hover {
  opacity: 0.5;
}
.content_left .content_left--note {
  font-family: var(--font-noto-san-cjk);
  font-size: 1.2rem;
}
.lp_main--content .content_right {
  position: relative;
  max-width: 460px;
  height: 352px;
  margin: 0 auto;
}
.content-3 .content_right {
  height: auto;
}
.image-container_1,
.image-container_2 {
  position: relative;
}
.content-3 .content_right {
  height: 358px;
}

.image-container_1 img,
.image-container_2 img,
.image-container_3 img,
.image-container_4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.image-container_1 {
  width: 335px;
  height: 238px;
}
.image-container_1 img {
  clip-path: path(
    "M11.1427 108.96C43.7114 12.7352 163.271 -28.2252 282.187 20.7888C409.023 73.0675 378.375 189.629 333.017 217.168C260.691 261.081 196.852 269.937 106.444 261.081C16.0354 252.224 -20.3615 202.039 11.1427 108.96Z"
  );
}
.image-container_2 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 225px;
  height: 176px;
}
.image-container_2 img {
  clip-path: path(
    "M10.1905 65.8747C29.4043 19.3394 92.1483 -14.9682 161.26 7.78857C258.807 39.9087 223.791 124.908 198.903 145.846C156.746 181.314 93.7705 184.267 44.5309 165.757C-4.70878 147.247 -6.03978 105.184 10.1905 65.8747Z"
  );
}
.image-container_3 {
  width: 335px;
  height: 257px;
}
.image-container_3 img {
  clip-path: path(
    "M0 148.334C-1.4148e-05 73.1139 118.319 -44.9778 276.692 19.5942C427.077 80.909 399.002 155.178 343.479 212.496C302.043 255.27 179.7 307.181 105.77 299.132C31.8397 291.084 1.69091e-05 238.233 0 148.334Z"
  );
}
.image-container_4 {
  width: 335px;
  height: 292px;
}
.image-container_4 img {
  clip-path: path(
    "M0 158.658C0 51.0772 87.4377 -15.7556 231.052 3.20693C369.196 21.4471 345.158 208.52 298.142 257.106C263.055 293.364 152.167 293.306 89.5641 286.484C26.9613 279.662 0 234.862 0 158.658Z"
  );
}
.only_img {
  height: auto !important;
}
.decor_3-1,
.decor_3-2,
.decor_3-3 {
  position: relative;
}
.decor_3-1::after,
.decor_3-2::before,
.decor_3-3::before {
  position: absolute;
  content: "";
}
.decor_3-1::after {
  background: url(../img/svg/top_decor10.svg) no-repeat;
  background-size: cover;
  width: 224.882px;
  height: 262.615px;
  right: 0;
  top: -200px;
}
.decor_3-2::before {
  background: url(../img/svg/top_decor11.svg) no-repeat;
  background-size: cover;
  width: 126.316px;
  height: 106px;
  left: -40px;
  top: 16px;
}
.decor_3-3::before {
  background: url(../img/svg/top_decor12.svg) no-repeat;
  background-size: cover;
  width: 83.738px;
  height: 150.165px;
  right: 0;
}
@media (min-width: 767.98px) {
  .lp_main--content {
    max-width: 500px;
    margin: auto;
  }
}
@media (min-width: 1079.98px) {
  .content-1 {
    padding-top: 166px !important;
  }
  .lp_main--content {
    max-width: 1080px;
    flex-direction: row;
    padding: 0;
  }
  .lp_main--content .content_left,
  .lp_main--content .content_right {
    width: 525px;
  }
  .content-2 {
    position: relative;
    flex-direction: row;
    margin-top: 80px;
    padding-bottom: 118px;
    z-index: 1;
  }
  .content-3 {
    flex-direction: row-reverse;
    z-index: 1;
  }
  .lp_main--content .content_right {
    max-width: none;
    height: 478px;
  }
  .image-container_1 {
    width: 504px;
    height: 358px;
    clip-path: path(
      "M15.3704 148.381C59.5 18 221.5 -37.5001 382.626 28.9122C554.485 99.7483 512.959 257.686 451.5 295C353.5 354.5 267 366.5 144.5 354.5C21.9999 342.5 -27.3167 274.5 15.3704 148.381Z"
    );
  }
  .image-container_1 img {
    clip-path: none;
  }
  .image-container_2 {
    width: 305px;
    height: 239px;
    clip-path: path(
      "M12.5852 88.4764C38.6192 25.4226 123.635 -21.0631 217.279 9.77157C349.453 53.2933 302.007 168.464 268.285 196.835C211.163 244.893 125.833 248.894 59.1152 223.814C-7.60289 198.734 -9.40636 141.74 12.5852 88.4764Z"
    );
  }
  .image-container_2 img {
    clip-path: none;
  }
  .image-container_3 {
    width: 524px;
    height: 404.514px;
    clip-path: path(
      "M0 199.374C-1.91071e-05 97.6098 159.791 -62.1553 373.677 25.2035C576.774 108.156 538.859 208.634 463.874 286.178C407.914 344.047 242.687 414.276 142.844 403.388C43 392.5 2.28361e-05 320.998 0 199.374Z"
    );
  }
  .image-container_3 img {
    clip-path: none;
  }
  .image-container_4 {
    width: 524.284px;
    height: 454.85px;
    clip-path: path("M0 253.223C0 81.521 139.452 -25.1464 368.5 5.11836C588.823 34.2303 550.485 332.805 475.5 410.349C419.541 468.219 242.687 468.126 142.844 457.238C43 446.349 0 374.847 0 253.223Z");
  }
  .image-container_4 img {
    clip-path: none;
  }
  .decor_3-1::after {
    width: 336.269px;
    height: 371.38px;
    top: -155px;
  }
  .decor_3-2::before {
    width: 266px;
    height: 241.856px;
  }
  .decor_3-3::before {
    width: 218.98px;
    height: 369.735px;
    bottom: 100px;
  }

  .content-3 .content_right {
    height: 572px;
  }
  .content-3 .content_right .image-container_2 {
    right: 30px;
  }
}

/*====================================*/
/* Footer */
/*====================================*/
footer {
  position: relative;
  background: #fffff6;
  padding: 80px 0;
}
footer::before,
footer::after {
  position: absolute;
  content: "";
  display: block;
  background: url(../img/svg/footer_line.svg) no-repeat;
  width: 100%;
  height: 20px;
}
footer::before {
  top: 0;
}
footer::after {
  bottom: 0;
}
.ft {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  text-align: center;
}
.ft .ft_logo {
  width: 160px;
}
.ft .collab,
.ft .ft_title,
.ft .ft_address,
.ft_cta a {
  color: #333;
  font-family: var(--font-noto-san-cjk);
  line-height: 1.5;
  font-weight: 500;
}
.ft .collab {
  text-align: left;
  font-weight: 700;
}
.ft .ft_title {
  font-size: 1.8rem;
  letter-spacing: 0.9px;
}
.ft .ft_address {
  letter-spacing: 0.8px;
}
.ft_cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 80px;
}
.ft_cta a {
  text-align: center;
  font-size: 1.6rem;
  /* letter-spacing: 0.8px; */
  border-left: 0.5px solid #333;
  border-right: 0.5px solid #333;
  padding: 0 16px;
  transition: color 0.3s ease;
}
.ft_cta a:hover {
  color: var(--color-primary);
}
/* copyright */
.copyright {
  padding: 24px 0;
  background: #1fa08a;
}
.copyright p {
  color: #fffff6;
  text-align: center;
  font-weight: 700;
  line-height: 1.7;
}
@media (min-width: 767.98px) {
  .ft {
    max-width: 900px;
    margin: auto;
  }
}
@media (min-width: 1079.98px) {
  .ft_cta {
    flex-direction: row;
    justify-content: center;
  }
  .ft_cta a:first-child {
    border-right: none;
    padding-right: 0;
  }
}
/* pageTop */
.pageTop a {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  rotate: 180deg;
  background-color: var(--color-white);
  transition: all 0.3s ease, filter 0.3s ease;
  opacity: 0.5;
}
.pageTop a:hover {
  background-color: var(--color-primary);
  filter: drop-shadow(0px 8px 5px #3d260488);
  rotate: 270deg;
  opacity: 1;
}
.pageTop a:hover svg path,
.pageTop a:hover svg circle {
  stroke: white;
  fill: var(--color-primary);
}
.pageTop a:hover svg circle {
  stroke: var(--color-primary);
}
.pageTop a svg {
  width: 80px;
}
