@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@500;700&display=swap");
/*
* reset
-----------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%; /*for iPhone*/
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

video,
img {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: #66563c;
}

ul,
ol {
  list-style-type: none;
}

/**
 * プレイスホルダー
 */
.ph--01 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
  background: #f7f7f7;
}
@media screen and (max-width: 750px) {
  .ph--01 {
    min-height: 150.9333333333vw;
  }
}
.ph--02 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
  background: #e8e8e8;
}
@media screen and (max-width: 750px) {
  .ph--02 {
    min-height: 150.9333333333vw;
  }
}

/**
 * 汎用inner
 */
.inner {
  padding: 0 4vw;
}
@media screen and (min-width: 751px) {
  .inner {
    padding: 0 20px;
  }
}

/**
 * インナーからはみ出す
 */
.full {
  margin: 0 calc(50% - 50vw);
}
@media screen and (min-width: 751px) {
  .full {
    margin: 0 -20px;
  }
}

/**
 * タイトル
 */
.ttl--01 {
  position: relative;
  width: 78.6666666667vw;
  background-color: #393b80;
  margin-inline: auto;
  color: #fff;
  text-align: center;
  padding: 3.7333333333vw 0;
  font-size: 4.8vw;
  font-weight: 700;
}
@media screen and (min-width: 751px) {
  .ttl--01 {
    width: 389px;
    padding: 18px 0;
    font-size: 24px;
  }
}
.ttl--01::before {
  content: "";
  display: inline-block;
  width: calc(100% - 1.6vw);
  height: calc(100% - 1.6vw);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 0.2666666667vw solid #fff;
}
@media screen and (min-width: 751px) {
  .ttl--01::before {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border-width: 1px;
  }
}
.ttl--01 span::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.8) * 0.5em);
  content: "";
}
.ttl--01 span::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.8) * 0.5em);
  content: "";
}

/**
 * 破線
 */
.dashed-line {
  display: block;
  width: 53.8666666667vw;
  height: 0.5333333333vw;
  margin-inline: auto;
  background-image: url("../img/line-dotted_dark-blue.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
}
@media screen and (min-width: 751px) {
  .dashed-line {
    width: 267px;
    height: 3px;
  }
}

/**
 * テキストパターン（注意書き）
 */
.notes {
  font-size: 3.2vw;
  letter-spacing: 0;
  line-height: 1.6;
}
@media screen and (min-width: 751px) {
  .notes {
    font-size: 16px;
  }
}
.notes__indent {
  text-indent: -1em;
  padding-left: 1em;
}

/**
 * テキスト点滅
 */
/* --- 応用1：カクカク点滅 --- */
/**
@keyframes blink-simple {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.blink-simple {
  animation: blink-simple 1.6s step-start infinite;
}
*/
@keyframes blink-simple {
  0%, 70% {
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.blink-simple {
  animation: blink-simple 1.8s cubic-bezier(1, 0, 0.2, 1) infinite;
}

/**
 * アイコン（+-パターン）
 */
.icon-wrap {
  position: absolute;
  right: 1.6vw;
  top: 50%;
  transform: translateY(-50%);
  width: 8vw;
  height: 8vw;
}
@media screen and (min-width: 751px) {
  .icon-wrap {
    right: 6px;
    width: 36px;
    height: 36px;
  }
}

.icon {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  background: url("../../img/icon_arrow_dark-brown_down.webp") no-repeat;
  background-position: center center;
  background-size: 3.4666666667vw;
  transition: all 0.4s;
}
@media screen and (min-width: 751px) {
  .icon {
    background-size: 13px;
  }
}

.icon.open {
  transform: rotate(180deg);
}

/**
 * コンテンツスクロールフェードイン
 * 下からふわっと
 */
.fadein {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.scrollin {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/**
 * テキスト強調
 */
strong {
  color: #d64760;
  font-weight: 700;
}

/**
 * 表示非表示の切り替え
 */
@media screen and (max-width: 750px) {
  .none-sp {
    display: none;
  }
}

@media screen and (min-width: 751px) {
  .none-pc {
    display: none;
  }
}

/**
 * テキスト自動改行禁止
 */
.no-wrap {
  white-space: nowrap;
}

/**
 * CVエリア-ボタン（立体処理ボタン）
 */
.cta__read {
  text-align: center;
  font-size: 4.2666666667vw;
  line-height: 1;
  color: #d64760;
  letter-spacing: 0;
}
@media screen and (min-width: 751px) {
  .cta__read {
    font-size: 21px;
  }
}
.cta__btn {
  width: 84vw;
  height: 13.3333333333vw;
  font-weight: 700;
  font-size: 4.8vw;
  margin-inline: auto;
  position: relative;
  letter-spacing: 0;
}
@media screen and (min-width: 751px) {
  .cta__btn {
    width: 416px;
    height: 66px;
    font-size: 24px;
  }
}
.cta__btn::before {
  content: "";
  display: block;
  height: inherit;
  width: 100%;
  position: absolute;
  top: 0.8vw;
  left: 0;
  background-color: #892d3d;
  border-radius: 9999px;
}
@media screen and (min-width: 751px) {
  .cta__btn::before {
    top: 4px;
  }
}
.cta__btn::after {
  content: "";
  display: inline-block;
  width: 5.8666666667vw;
  height: 5.8666666667vw;
  position: absolute;
  top: 50%;
  right: 5.3333333333vw;
  transform: translateY(-50%);
  background-image: url("../img/circle_arrow.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
@media screen and (min-width: 751px) {
  .cta__btn::after {
    width: 29px;
    height: 29px;
    right: 26px;
  }
}
.cta__btn a {
  display: flex;
  width: 100%;
  height: inherit;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  background-color: #d64760;
  color: #fff;
  text-indent: -2.9333333333vw;
  line-height: 1;
}
@media screen and (min-width: 751px) {
  .cta__btn a {
    text-indent: -15px;
  }
}

/**
 * テキストマーカー
 */
.line-marker--01 {
  background: linear-gradient(#f6efc2 0%, #f6efc2 100%);
  display: inline;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 1.5s;
  padding-bottom: 0vw;
}
@media screen and (min-width: 751px) {
  .line-marker--01 {
    padding-bottom: 0;
  }
}
.line-marker--01.on {
  background-size: 100% 100%;
}
.line-marker--01.fast {
  transition: background-size 1s !important;
}

.line-marker--02 {
  background: linear-gradient(#fce7eb 0%, #fce7eb 100%);
  display: inline;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 1.5s;
  padding: 0vw;
}
@media screen and (min-width: 751px) {
  .line-marker--02 {
    padding: 0;
  }
}
.line-marker--02.on {
  background-size: 100% 100%;
}
.line-marker--02.fast {
  transition: background-size 0.7s !important;
}

/**
 * テキストズームインアウト
 */
.txt-zoom-in {
  transform: scale(0.7);
  transition: 0.5s;
}
.txt-zoom-in.in {
  transform: scale(1);
}

/**
 * 画像ズームアウト
 */
.zoom-out,
.zoom-in {
  width: inherit;
  height: inherit;
  position: relative;
  overflow: hidden;
}
.zoom-out img,
.zoom-in img {
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 1;
}

.zoom-out img {
  transform: translate(-50%, -50%) scale(1.3);
}

.zoom-in img {
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
}

.zoom-out.out img {
  animation: zoomOut 1.2s ease-in-out forwards;
}

.zoom-out.in img {
  animation: zoomOut-in 1.2s ease-in-out forwards;
}

.zoom-in.out img {
  animation: zoomIn-out 0.7s ease-in-out forwards;
}

.zoom-in.in img {
  animation: zoomIn 0.7s ease-in-out forwards;
}

@keyframes zoomOut {
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
@keyframes zoomOut-in {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 1;
  }
}
@keyframes zoomIn {
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
@keyframes zoomIn-out {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
  }
}
/**
 * プロジェクトごと固有ページのスタイル
 * Path: 202603_202605_b/index.html
 */
#prj_2510-2512 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 3.7333333333vw;
  color: #393b80;
  letter-spacing: 0.075rem;
  line-height: 1.8;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 {
    font-size: 18px;
    background-color: #f7eee0;
  }
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main {
    max-width: 500px;
    margin-inline: auto;
    background-color: #fff;
  }
}
#prj_2510-2512 main .term__list li {
  display: flex;
}
#prj_2510-2512 main .term__list li:not(:last-child) {
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .term__list li:not(:last-child) {
    margin-bottom: 13px;
  }
}
#prj_2510-2512 main .term__list li .label {
  width: 38.6666666667vw;
  margin-right: 2vw;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .term__list li .label {
    width: 191px;
    margin-right: 14px;
  }
}
#prj_2510-2512 main .term__list li .label span {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f6efc2;
  min-height: 6.6666666667vw;
  width: 100%;
  border-radius: 9999px;
  font-size: 3.2vw;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .term__list li .label span {
    min-height: 33px;
    font-size: 16px;
  }
}
#prj_2510-2512 main .term__list li .detail {
  flex: 1;
  white-space: nowrap;
}
#prj_2510-2512 main .term__list li .detail span {
  display: flex;
  align-items: center;
  min-height: 6.6666666667vw;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 4.2666666667vw;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .term__list li .detail span {
    min-height: 33px;
    font-size: 21px;
  }
}
#prj_2510-2512 main .term .cta {
  position: relative;
}
#prj_2510-2512 main .term .cta__btn {
  height: 16vw;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .term .cta__btn {
    height: 79px;
  }
}
#prj_2510-2512 main .term .cta__btn::before {
  top: 1.3333333333vw;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .term .cta__btn::before {
    top: 6px;
  }
}
#prj_2510-2512 main .term .cta::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 10.6666666667vw;
  background-color: #f7eee0;
  position: absolute;
  left: 0;
  bottom: -2.6666666667vw;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .term .cta::before {
    height: 52px;
    bottom: -13px;
  }
}
#prj_2510-2512 main .tokuten {
  background-color: #f7eee0;
}
#prj_2510-2512 main .tokuten__unit {
  position: relative;
  width: 100%;
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .tokuten__unit {
    margin-bottom: 66px;
  }
}
#prj_2510-2512 main .tokuten__unit:last-of-type {
  margin-bottom: 0;
}
#prj_2510-2512 main .tokuten__unit__inner {
  position: relative;
  width: 100%;
  background-color: #fff;
  border: 0.2666666667vw solid #393b80;
  border-radius: 2.6666666667vw;
  z-index: 1;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .tokuten__unit__inner {
    border-radius: 13px;
    border-width: 2px;
  }
}
#prj_2510-2512 main .tokuten__unit__inner::before {
  content: "";
  display: inline-block;
  height: 0.2666666667vw;
  background-color: #fff;
  width: 44vw;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -0.2666666667vw;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .tokuten__unit__inner::before {
    top: -2px;
    height: 2px;
    width: 218px;
  }
}
#prj_2510-2512 main .tokuten__unit::after {
  content: "";
  display: inline-block;
  border: 0.2666666667vw solid #393b80;
  border-radius: 2.6666666667vw;
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  top: 1.0666666667vw;
  left: 1.0666666667vw;
  z-index: 0;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .tokuten__unit::after {
    top: 5px;
    left: 5px;
    border-radius: 13px;
    border-width: 2px;
  }
}
#prj_2510-2512 main .tokuten__unit__ttl {
  position: relative;
  z-index: 1;
  margin-top: -7.7333333333vw;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .tokuten__unit__ttl {
    margin-top: -38px;
  }
}
#prj_2510-2512 main .tokuten__unit__body {
  text-align: center;
}
#prj_2510-2512 main .tokuten__unit--01 .txt--01::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.8) * 0.5em);
  content: "";
}
#prj_2510-2512 main .tokuten__unit--01 .txt--01::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.8) * 0.5em);
  content: "";
}
#prj_2510-2512 main .tokuten__unit--01 .txt--01 span {
  font-size: 4.2666666667vw;
  font-weight: 700;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .tokuten__unit--01 .txt--01 span {
    font-size: 21px;
  }
}
#prj_2510-2512 main .tokuten__unit--02 .txt--01 {
  line-height: 1;
}
#prj_2510-2512 main .tokuten__unit--02 .txt--01 span {
  display: block;
}
#prj_2510-2512 main .tokuten__unit--02 .txt--01 .price img {
  width: 70.8vw;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .tokuten__unit--02 .txt--01 .price img {
    width: 350px;
  }
}
#prj_2510-2512 main .tokuten__result {
  margin-top: 9.0666666667vw;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .tokuten__result {
    margin-top: 45px;
  }
}
#prj_2510-2512 main .present__read p {
  text-align: center;
}
#prj_2510-2512 main .present__read p::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.8) * 0.5em);
  content: "";
}
#prj_2510-2512 main .present__read p::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.8) * 0.5em);
  content: "";
}
#prj_2510-2512 main .present__read p strong {
  font-size: 4.8vw;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .present__read p strong {
    font-size: 24px;
  }
}
#prj_2510-2512 main .present__detail__ttl {
  position: relative;
}
#prj_2510-2512 main .present__detail__list li {
  position: relative;
}
#prj_2510-2512 main .present__detail__list li:nth-child(1) {
  z-index: 5;
}
#prj_2510-2512 main .present__detail__list li:nth-child(1) p {
  text-align: center;
  line-height: 1;
  font-size: 4.8vw;
  font-weight: 700;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .present__detail__list li:nth-child(1) p {
    font-size: 24px;
  }
}
#prj_2510-2512 main .present__detail__list li:nth-child(2) {
  z-index: 4;
}
#prj_2510-2512 main .present__detail__list li:nth-child(3) {
  z-index: 3;
}
#prj_2510-2512 main .present__detail__list li:nth-child(4) {
  z-index: 2;
}
#prj_2510-2512 main .present__detail__list li:nth-child(5) {
  z-index: 1;
}
#prj_2510-2512 main .present__detail .rev-triangle::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 29.3333333333vw;
  height: 10.6666666667vw;
  background-color: #393b80;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .present__detail .rev-triangle::before {
    width: 145px;
    height: 53px;
  }
}
#prj_2510-2512 main .present__detail .special {
  border: 0.8vw solid #d64760;
  border-radius: 2.6666666667vw;
  position: relative;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .present__detail .special {
    border-width: 4px;
    border-radius: 13px;
  }
}
#prj_2510-2512 main .present__detail .special__badge {
  position: absolute;
  width: 23.7333333333vw;
  top: -4.8vw;
  left: -3.3333333333vw;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .present__detail .special__badge {
    width: 117px;
    top: -24px;
    left: -17px;
  }
}
#prj_2510-2512 main .present__detail .special__read {
  text-align: center;
}
#prj_2510-2512 main .present__detail .special__read__upper {
  line-height: 1;
  font-size: 4.5333333333vw;
  font-weight: 700;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .present__detail .special__read__upper {
    font-size: 22px;
  }
}
#prj_2510-2512 main .present__detail .special__benefit {
  position: relative;
  width: 78.6666666667vw;
  margin-inline: auto;
  background-color: #fce7eb;
  border-radius: 2.6666666667vw;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .present__detail .special__benefit {
    width: 389px;
    border-radius: 1.7333333333vw;
  }
}
#prj_2510-2512 main .present__detail .special__benefit__ttl {
  line-height: 1;
  height: 6.6666666667vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 9999px;
  border: 0.2666666667vw solid #393b80;
  letter-spacing: 0.6rem;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .present__detail .special__benefit__ttl {
    height: 33px;
    border-width: 2px;
  }
}
#prj_2510-2512 main .present__detail .special__benefit__result {
  text-align: center;
  line-height: 1;
  color: #d64760;
  font-family: "Shippori Mincho", serif;
}
#prj_2510-2512 main .present__detail .special__benefit__result .price {
  display: block;
}
#prj_2510-2512 main .present__detail .special__benefit__result .price__num {
  display: inline-block;
  font-size: 16vw;
  letter-spacing: -0.05rem;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .present__detail .special__benefit__result .price__num {
    font-size: 79px;
  }
}
#prj_2510-2512 main .present__detail .special__benefit__result .price__unit {
  font-size: 4.8vw;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .present__detail .special__benefit__result .price__unit {
    font-size: 24px;
  }
}
#prj_2510-2512 main .present__detail .special__benefit__result .method {
  display: block;
  font-size: 8vw;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .present__detail .special__benefit__result .method {
    font-size: 40px;
  }
}
#prj_2510-2512 main .present__detail .special__benefit .fig--01 {
  width: 13.8666666667vw;
  position: absolute;
  top: -5.3333333333vw;
  right: -2.6666666667vw;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .present__detail .special__benefit .fig--01 {
    width: 69px;
    top: -26px;
    right: -13px;
  }
}
#prj_2510-2512 main .flow__ttl {
  letter-spacing: 0;
  line-height: 1.4;
}
#prj_2510-2512 main .flow__ttl span::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.4) * 0.5em);
  content: "";
}
#prj_2510-2512 main .flow__ttl span::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.4) * 0.5em);
  content: "";
}
#prj_2510-2512 main .flow__list {
  width: 84vw;
  margin-inline: auto;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .flow__list {
    width: 416px;
  }
}
#prj_2510-2512 main .flow__list dt, #prj_2510-2512 main .flow__list dd {
  padding: 0 2.6666666667vw;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .flow__list dt, #prj_2510-2512 main .flow__list dd {
    padding: 0 13px;
  }
}
#prj_2510-2512 main .flow__list dt {
  font-size: 4.8vw;
  display: flex;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .flow__list dt {
    font-size: 24px;
    margin-bottom: 26px;
  }
}
#prj_2510-2512 main .flow__list dt .num {
  display: inline-block;
  font-family: "Shippori Mincho", serif;
  font-size: 7.2vw;
  font-weight: 700;
  letter-spacing: 0;
  color: #d64760;
  margin-right: 3.3333333333vw;
  line-height: 1;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .flow__list dt .num {
    font-size: 35px;
    margin-right: 16px;
  }
}
#prj_2510-2512 main .flow__list dt .ttl {
  flex: 1;
  display: inline-block;
  font-weight: 700;
}
#prj_2510-2512 main .flow__list dd {
  margin-bottom: 8vw;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .flow__list dd {
    margin-bottom: 40px;
  }
}
#prj_2510-2512 main .flow__list dd:last-of-type {
  margin-bottom: 0;
}
#prj_2510-2512 main .flow__list .cta {
  padding: 0;
}
#prj_2510-2512 main .flow__list .cta__btn {
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .flow__list .cta__btn {
    font-size: 21px;
  }
}
#prj_2510-2512 main .service {
  background-color: #f7eee0;
}
#prj_2510-2512 main .service .fig--01 {
  width: 78.6666666667vw;
  margin-inline: auto;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .service .fig--01 {
    width: 389px;
  }
}
#prj_2510-2512 main .service__list li {
  margin-bottom: 8vw;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .service__list li {
    margin-bottom: 40px;
  }
}
#prj_2510-2512 main .service .cta__btn {
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .service .cta__btn {
    font-size: 21px;
  }
}
#prj_2510-2512 main .service .line-shindan__read {
  text-align: center;
  font-size: 4.5333333333vw;
  font-weight: 700;
  color: #d64760;
  line-height: 1.6;
}
#prj_2510-2512 main .service .line-shindan__read::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.6) * 0.5em);
  content: "";
}
#prj_2510-2512 main .service .line-shindan__read::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.6) * 0.5em);
  content: "";
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 main .service .line-shindan__read {
    font-size: 22px;
  }
}
#prj_2510-2512 .separator {
  background-color: #f7eee0;
}
#prj_2510-2512 .separator .dashed-line {
  width: 62.4vw;
  background-image: url("../img/line-dotted_dark-blue_long.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 .separator .dashed-line {
    width: 309px;
  }
}
#prj_2510-2512 .footer {
  background-color: #f7eee0;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 .footer {
    max-width: 500px;
    margin-inline: auto;
  }
}
#prj_2510-2512 .footer .admin {
  text-align: center;
  line-height: 1;
  font-size: 3.2vw;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 .footer .admin {
    font-size: 16px;
  }
}
#prj_2510-2512 .footer .attempt {
  width: 78.6666666667vw;
  margin-inline: auto;
  display: flex;
  gap: 4vw;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 .footer .attempt {
    width: 389px;
    gap: 20px;
  }
}
#prj_2510-2512 .footer .attempt__pmark {
  width: 16vw;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 .footer .attempt__pmark {
    width: 79px;
  }
}
#prj_2510-2512 .footer .attempt__jpx {
  width: 16vw;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 .footer .attempt__jpx {
    width: 79px;
  }
}
#prj_2510-2512 .footer .attempt__txt {
  flex: 1;
  font-size: 3.2vw;
}
#prj_2510-2512 .footer .attempt__txt::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.8) * 0.5em);
  content: "";
}
#prj_2510-2512 .footer .attempt__txt::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.8) * 0.5em);
  content: "";
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 .footer .attempt__txt {
    font-size: 16px;
  }
}
#prj_2510-2512 .footer small {
  display: block;
  text-align: center;
  line-height: 1;
  font-size: 3.2vw;
}
@media screen and (min-width: 751px) {
  #prj_2510-2512 .footer small {
    font-size: 16px;
  }
}

/**
 * プロジェクトごと固有ページのスタイル
 * Path: entry/corp2602-2604_b/index.html
 */
#corp2602-2604_b {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 3.7333333333vw;
  color: #393b80;
  letter-spacing: 0.075rem;
  line-height: 1.8;
}
@media screen and (min-width: 751px) {
  #corp2602-2604_b {
    font-size: 18px;
    background-color: #f7eee0;
  }
}
@media screen and (min-width: 751px) {
  #corp2602-2604_b main {
    max-width: 500px;
    margin-inline: auto;
    background-color: #fff;
  }
}
#corp2602-2604_b main .header {
  margin-bottom: 11.4666666667vw;
}
@media screen and (min-width: 751px) {
  #corp2602-2604_b main .header {
    margin-bottom: 57px;
  }
}
#corp2602-2604_b main .entry .ttl--01 {
  width: 80vw;
  background-color: #EF858C;
}
@media screen and (min-width: 751px) {
  #corp2602-2604_b main .entry .ttl--01 {
    width: 396px;
  }
}
#corp2602-2604_b main .entry__body form {
  width: 80vw;
}
@media screen and (min-width: 751px) {
  #corp2602-2604_b main .entry__body form {
    width: 396px;
  }
}
#corp2602-2604_b main .entry__body form #label-inquirer-955868e9-9a07-458c-ae97-90c2b334fac6 + .input > .inputs-list {
  display: flex;
  gap: 2.6666666667vw;
}
@media screen and (min-width: 751px) {
  #corp2602-2604_b main .entry__body form #label-inquirer-955868e9-9a07-458c-ae97-90c2b334fac6 + .input > .inputs-list {
    gap: 13px;
  }
}
#corp2602-2604_b main .entry__body form #label-inquirer-955868e9-9a07-458c-ae97-90c2b334fac6 + .input > .inputs-list li {
  width: 50%;
}
#corp2602-2604_b main .entry__body form #label-inquirer-955868e9-9a07-458c-ae97-90c2b334fac6 + .input > .inputs-list li label {
  background-color: #fff;
  border: 0.2666666667vw solid #393B80;
  border-radius: 1.3333333333vw;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 10.6666666667vw;
  position: relative;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (min-width: 751px) {
  #corp2602-2604_b main .entry__body form #label-inquirer-955868e9-9a07-458c-ae97-90c2b334fac6 + .input > .inputs-list li label {
    border-width: 1px;
    border-radius: 7px;
    min-height: 53px;
  }
}
#corp2602-2604_b main .entry__body form #label-inquirer-955868e9-9a07-458c-ae97-90c2b334fac6 + .input > .inputs-list li label input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
}
#corp2602-2604_b main .entry__body form #label-inquirer-955868e9-9a07-458c-ae97-90c2b334fac6 + .input > .inputs-list li label:has(input[type=radio]:checked) {
  background-color: #393B80;
  color: #fff;
}
#corp2602-2604_b main .entry__body form #label-inquirer-955868e9-9a07-458c-ae97-90c2b334fac6 + .input > .inputs-list li label span {
  padding: 0;
}
#corp2602-2604_b main .entry__body form #label-inquirer-955868e9-9a07-458c-ae97-90c2b334fac6 + .input > .inputs-list li label::before, #corp2602-2604_b main .entry__body form #label-inquirer-955868e9-9a07-458c-ae97-90c2b334fac6 + .input > .inputs-list li label::after {
  display: none;
}
#corp2602-2604_b main .entry__body form .hs_wedding_desired_time {
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 751px) {
  #corp2602-2604_b main .entry__body form .hs_wedding_desired_time {
    margin-bottom: 33px;
  }
}
#corp2602-2604_b main .entry__body form .hs_wds_counter_interestservices,
#corp2602-2604_b main .entry__body form .hs_wds_smakon_campaign_howtoreceive,
#corp2602-2604_b main .entry__body form .hs_alliance {
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 751px) {
  #corp2602-2604_b main .entry__body form .hs_wds_counter_interestservices,
  #corp2602-2604_b main .entry__body form .hs_wds_smakon_campaign_howtoreceive,
  #corp2602-2604_b main .entry__body form .hs_alliance {
    margin-bottom: 33px;
  }
}
#corp2602-2604_b main .entry__body form .hs_wds_counter_interestservices > label,
#corp2602-2604_b main .entry__body form .hs_wds_smakon_campaign_howtoreceive > label,
#corp2602-2604_b main .entry__body form .hs_alliance > label {
  margin-bottom: 4vw;
}
@media screen and (min-width: 751px) {
  #corp2602-2604_b main .entry__body form .hs_wds_counter_interestservices > label,
  #corp2602-2604_b main .entry__body form .hs_wds_smakon_campaign_howtoreceive > label,
  #corp2602-2604_b main .entry__body form .hs_alliance > label {
    margin-bottom: 20px;
  }
}
#corp2602-2604_b main .entry__body form ul.inputs-list li:not(:last-child) {
  margin-bottom: 3.4666666667vw;
}
@media screen and (min-width: 751px) {
  #corp2602-2604_b main .entry__body form ul.inputs-list li:not(:last-child) {
    margin-bottom: 14px;
  }
}
#corp2602-2604_b main .entry__body form label.hs-form-checkbox-display::before,
#corp2602-2604_b main .entry__body form label.hs-form-booleancheckbox-display::before {
  top: -0.2666666667vw;
}
@media screen and (min-width: 751px) {
  #corp2602-2604_b main .entry__body form label.hs-form-checkbox-display::before,
  #corp2602-2604_b main .entry__body form label.hs-form-booleancheckbox-display::before {
    top: -2px;
  }
}
#corp2602-2604_b main .entry__body form label.hs-form-checkbox-display::after,
#corp2602-2604_b main .entry__body form label.hs-form-booleancheckbox-display::after {
  top: 1.7333333333vw;
}
@media screen and (min-width: 751px) {
  #corp2602-2604_b main .entry__body form label.hs-form-checkbox-display::after,
  #corp2602-2604_b main .entry__body form label.hs-form-booleancheckbox-display::after {
    top: 8px;
  }
}
#corp2602-2604_b main .service {
  background-color: #f7eee0;
}
#corp2602-2604_b main .service .fig--01 {
  width: 78.6666666667vw;
  margin-inline: auto;
}
@media screen and (min-width: 751px) {
  #corp2602-2604_b main .service .fig--01 {
    width: 389px;
  }
}
#corp2602-2604_b main .service__list li {
  margin-bottom: 8vw;
}
@media screen and (min-width: 751px) {
  #corp2602-2604_b main .service__list li {
    margin-bottom: 40px;
  }
}
#corp2602-2604_b main .service .cta__btn {
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 751px) {
  #corp2602-2604_b main .service .cta__btn {
    font-size: 21px;
  }
}
#corp2602-2604_b main .service .line-shindan__read {
  text-align: center;
  font-size: 4.5333333333vw;
  font-weight: 700;
  color: #d64760;
  line-height: 1.6;
}
#corp2602-2604_b main .service .line-shindan__read::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.6) * 0.5em);
  content: "";
}
#corp2602-2604_b main .service .line-shindan__read::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.6) * 0.5em);
  content: "";
}
@media screen and (min-width: 751px) {
  #corp2602-2604_b main .service .line-shindan__read {
    font-size: 22px;
  }
}
#corp2602-2604_b .separator {
  background-color: #f7eee0;
}
#corp2602-2604_b .separator .dashed-line {
  width: 62.4vw;
  background-image: url("../img/line-dotted_dark-blue_long.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
}
@media screen and (min-width: 751px) {
  #corp2602-2604_b .separator .dashed-line {
    width: 309px;
  }
}
#corp2602-2604_b .footer {
  background-color: #f7eee0;
}
@media screen and (min-width: 751px) {
  #corp2602-2604_b .footer {
    max-width: 500px;
    margin-inline: auto;
  }
}
#corp2602-2604_b .footer .admin {
  text-align: center;
  line-height: 1;
  font-size: 3.2vw;
}
@media screen and (min-width: 751px) {
  #corp2602-2604_b .footer .admin {
    font-size: 16px;
  }
}
#corp2602-2604_b .footer .attempt {
  width: 78.6666666667vw;
  margin-inline: auto;
  display: flex;
  gap: 4vw;
}
@media screen and (min-width: 751px) {
  #corp2602-2604_b .footer .attempt {
    width: 389px;
    gap: 20px;
  }
}
#corp2602-2604_b .footer .attempt__pmark {
  width: 16vw;
}
@media screen and (min-width: 751px) {
  #corp2602-2604_b .footer .attempt__pmark {
    width: 79px;
  }
}
#corp2602-2604_b .footer .attempt__jpx {
  width: 16vw;
}
@media screen and (min-width: 751px) {
  #corp2602-2604_b .footer .attempt__jpx {
    width: 79px;
  }
}
#corp2602-2604_b .footer .attempt__txt {
  flex: 1;
  font-size: 3.2vw;
}
#corp2602-2604_b .footer .attempt__txt::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.8) * 0.5em);
  content: "";
}
#corp2602-2604_b .footer .attempt__txt::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.8) * 0.5em);
  content: "";
}
@media screen and (min-width: 751px) {
  #corp2602-2604_b .footer .attempt__txt {
    font-size: 16px;
  }
}
#corp2602-2604_b .footer small {
  display: block;
  text-align: center;
  line-height: 1;
  font-size: 3.2vw;
}
@media screen and (min-width: 751px) {
  #corp2602-2604_b .footer small {
    font-size: 16px;
  }
}

/**
 * プロジェクトごと固有ページのスタイル
 * Path: 202510_202512/index.html
 */
#prj_202603-202605_b {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 3.7333333333vw;
  color: #393b80;
  letter-spacing: 0.075rem;
  line-height: 1.8;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b {
    font-size: 18px;
    background-color: #fff;
  }
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main {
    max-width: 500px;
    margin-inline: auto;
    background-color: #fff;
  }
}
#prj_202603-202605_b main .term__list li {
  display: flex;
}
#prj_202603-202605_b main .term__list li:not(:last-child) {
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .term__list li:not(:last-child) {
    margin-bottom: 13px;
  }
}
#prj_202603-202605_b main .term__list li .label {
  width: 38.6666666667vw;
  margin-right: 2vw;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .term__list li .label {
    width: 191px;
    margin-right: 14px;
  }
}
#prj_202603-202605_b main .term__list li .label span {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f6efc2;
  min-height: 6.6666666667vw;
  width: 100%;
  border-radius: 9999px;
  font-size: 3.2vw;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .term__list li .label span {
    min-height: 33px;
    font-size: 16px;
  }
}
#prj_202603-202605_b main .term__list li .detail {
  flex: 1;
  white-space: nowrap;
}
#prj_202603-202605_b main .term__list li .detail span {
  display: flex;
  align-items: center;
  min-height: 6.6666666667vw;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 4.2666666667vw;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .term__list li .detail span {
    min-height: 33px;
    font-size: 21px;
  }
}
#prj_202603-202605_b main .term .cta {
  position: relative;
}
#prj_202603-202605_b main .term .cta__btn {
  height: 16vw;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .term .cta__btn {
    height: 79px;
  }
}
#prj_202603-202605_b main .term .cta__btn::before {
  top: 1.3333333333vw;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .term .cta__btn::before {
    top: 6px;
  }
}
#prj_202603-202605_b main .term .cta::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 10.6666666667vw;
  background-color: #f7eee0;
  position: absolute;
  left: 0;
  bottom: -2.6666666667vw;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .term .cta::before {
    height: 52px;
    bottom: -13px;
  }
}
#prj_202603-202605_b main .tokuten {
  background-color: #f7eee0;
}
#prj_202603-202605_b main .tokuten__unit {
  position: relative;
  width: 100%;
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .tokuten__unit {
    margin-bottom: 66px;
  }
}
#prj_202603-202605_b main .tokuten__unit:last-of-type {
  margin-bottom: 0;
}
#prj_202603-202605_b main .tokuten__unit__inner {
  position: relative;
  width: 100%;
  background-color: #fff;
  border: 0.2666666667vw solid #393b80;
  border-radius: 2.6666666667vw;
  z-index: 1;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .tokuten__unit__inner {
    border-radius: 13px;
    border-width: 2px;
  }
}
#prj_202603-202605_b main .tokuten__unit__inner::before {
  content: "";
  display: inline-block;
  height: 0.2666666667vw;
  background-color: #fff;
  width: 44vw;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -0.2666666667vw;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .tokuten__unit__inner::before {
    top: -2px;
    height: 2px;
    width: 218px;
  }
}
#prj_202603-202605_b main .tokuten__unit::after {
  content: "";
  display: inline-block;
  border: 0.2666666667vw solid #393b80;
  border-radius: 2.6666666667vw;
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  top: 1.0666666667vw;
  left: 1.0666666667vw;
  z-index: 0;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .tokuten__unit::after {
    top: 5px;
    left: 5px;
    border-radius: 13px;
    border-width: 2px;
  }
}
#prj_202603-202605_b main .tokuten__unit__ttl {
  position: relative;
  z-index: 1;
  margin-top: -7.7333333333vw;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .tokuten__unit__ttl {
    margin-top: -38px;
  }
}
#prj_202603-202605_b main .tokuten__unit__body {
  text-align: center;
}
#prj_202603-202605_b main .tokuten__unit--01 .txt--01::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.8) * 0.5em);
  content: "";
}
#prj_202603-202605_b main .tokuten__unit--01 .txt--01::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.8) * 0.5em);
  content: "";
}
#prj_202603-202605_b main .tokuten__unit--01 .txt--01 .online-txt {
  display: inline-block;
  font-weight: 700;
  font-size: 4vw;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .tokuten__unit--01 .txt--01 .online-txt {
    font-size: 20px;
  }
}
#prj_202603-202605_b main .tokuten__unit--01 .txt--01 span {
  font-size: 4.2666666667vw;
  font-weight: 700;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .tokuten__unit--01 .txt--01 span {
    font-size: 21px;
  }
}
#prj_202603-202605_b main .tokuten__unit--01 .list {
  margin-top: 4vw;
  text-align: left;
  width: 78.6666666667vw;
  margin-inline: auto;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .tokuten__unit--01 .list {
    margin-top: 20px;
    width: 389px;
  }
}
#prj_202603-202605_b main .tokuten__unit--01 .list li {
  padding-left: 5.3333333333vw;
  position: relative;
}
#prj_202603-202605_b main .tokuten__unit--01 .list li .line-marker--02 {
  font-weight: 700;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .tokuten__unit--01 .list li {
    padding-left: 26px;
  }
}
#prj_202603-202605_b main .tokuten__unit--01 .list li span::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.8) * 0.5em);
  content: "";
}
#prj_202603-202605_b main .tokuten__unit--01 .list li span::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.8) * 0.5em);
  content: "";
}
#prj_202603-202605_b main .tokuten__unit--01 .list li span {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .tokuten__unit--01 .list li span {
    font-size: 18px;
  }
}
#prj_202603-202605_b main .tokuten__unit--01 .list li::before {
  content: "";
  display: inline-block;
  width: 2.6666666667vw;
  height: 2.6666666667vw;
  background-color: #d64760;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 2vw;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .tokuten__unit--01 .list li::before {
    width: 13px;
    height: 13px;
    top: 10px;
  }
}
#prj_202603-202605_b main .tokuten__unit--01 .list li:not(:last-of-type) {
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .tokuten__unit--01 .list li:not(:last-of-type) {
    margin-bottom: 13px;
  }
}
#prj_202603-202605_b main .tokuten__unit--02 .txt--01 {
  line-height: 1;
}
#prj_202603-202605_b main .tokuten__unit--02 .txt--01 span {
  display: block;
}
#prj_202603-202605_b main .tokuten__unit--02 .txt--01 .price img {
  width: 70.8vw;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .tokuten__unit--02 .txt--01 .price img {
    width: 350px;
  }
}
#prj_202603-202605_b main .tokuten__result {
  margin-top: 9.0666666667vw;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .tokuten__result {
    margin-top: 45px;
  }
}
#prj_202603-202605_b main .present__read p {
  text-align: center;
}
#prj_202603-202605_b main .present__read p::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.8) * 0.5em);
  content: "";
}
#prj_202603-202605_b main .present__read p::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.8) * 0.5em);
  content: "";
}
#prj_202603-202605_b main .present__read p strong {
  font-size: 4.8vw;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .present__read p strong {
    font-size: 24px;
  }
}
#prj_202603-202605_b main .present__detail__ttl {
  position: relative;
}
#prj_202603-202605_b main .present__detail__list li {
  position: relative;
}
#prj_202603-202605_b main .present__detail__list li:nth-child(1) {
  z-index: 5;
}
#prj_202603-202605_b main .present__detail__list li:nth-child(1) p {
  text-align: center;
  line-height: 1;
  font-size: 4.8vw;
  font-weight: 700;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .present__detail__list li:nth-child(1) p {
    font-size: 24px;
  }
}
#prj_202603-202605_b main .present__detail__list li:nth-child(2) {
  z-index: 4;
}
#prj_202603-202605_b main .present__detail__list li:nth-child(3) {
  z-index: 3;
}
#prj_202603-202605_b main .present__detail__list li:nth-child(4) {
  z-index: 2;
}
#prj_202603-202605_b main .present__detail__list li:nth-child(5) {
  z-index: 1;
}
#prj_202603-202605_b main .present__detail .rev-triangle {
  position: relative;
}
#prj_202603-202605_b main .present__detail .rev-triangle::before, #prj_202603-202605_b main .present__detail .rev-triangle::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
#prj_202603-202605_b main .present__detail .rev-triangle::after {
  z-index: 1;
  width: calc(29.3333333333vw + 4px);
  height: calc(10.6666666667vw + 2px);
  background-color: #fff;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .present__detail .rev-triangle::after {
    width: 149px;
    height: 55px;
  }
}
#prj_202603-202605_b main .present__detail .rev-triangle::before {
  z-index: 2;
  width: 29.3333333333vw;
  height: 10.6666666667vw;
  background-color: #393b80;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .present__detail .rev-triangle::before {
    width: 145px;
    height: 53px;
  }
}
#prj_202603-202605_b main .present__detail .special {
  border: 0.8vw solid #d64760;
  border-radius: 2.6666666667vw;
  position: relative;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .present__detail .special {
    border-width: 4px;
    border-radius: 13px;
  }
}
#prj_202603-202605_b main .present__detail .special__badge {
  position: absolute;
  width: 23.7333333333vw;
  top: -4.8vw;
  left: -3.3333333333vw;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .present__detail .special__badge {
    width: 117px;
    top: -24px;
    left: -17px;
  }
}
#prj_202603-202605_b main .present__detail .special__read {
  text-align: center;
}
#prj_202603-202605_b main .present__detail .special__read__upper {
  line-height: 1.4;
  font-size: 4.5333333333vw;
  font-weight: 700;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .present__detail .special__read__upper {
    font-size: 22px;
  }
}
#prj_202603-202605_b main .present__detail .special__benefit {
  position: relative;
  width: 78.6666666667vw;
  margin-inline: auto;
  background-color: #fce7eb;
  border-radius: 2.6666666667vw;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .present__detail .special__benefit {
    width: 389px;
    border-radius: 1.7333333333vw;
  }
}
#prj_202603-202605_b main .present__detail .special__benefit__ttl {
  line-height: 1;
  height: 6.6666666667vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 9999px;
  border: 0.2666666667vw solid #393b80;
  letter-spacing: 0.6rem;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .present__detail .special__benefit__ttl {
    height: 33px;
    border-width: 2px;
  }
}
#prj_202603-202605_b main .present__detail .special__benefit__result {
  text-align: center;
  line-height: 1;
  color: #d64760;
  font-family: "Shippori Mincho", serif;
}
#prj_202603-202605_b main .present__detail .special__benefit__result .price {
  display: block;
}
#prj_202603-202605_b main .present__detail .special__benefit__result .price__num {
  display: inline-block;
  font-size: 16vw;
  letter-spacing: -0.05rem;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .present__detail .special__benefit__result .price__num {
    font-size: 79px;
  }
}
#prj_202603-202605_b main .present__detail .special__benefit__result .price__unit {
  font-size: 4.8vw;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .present__detail .special__benefit__result .price__unit {
    font-size: 24px;
  }
}
#prj_202603-202605_b main .present__detail .special__benefit__result .method {
  display: block;
  font-size: 8vw;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .present__detail .special__benefit__result .method {
    font-size: 40px;
  }
}
#prj_202603-202605_b main .present__detail .special__benefit .fig--01 {
  width: 13.8666666667vw;
  position: absolute;
  top: -5.3333333333vw;
  right: -2.6666666667vw;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .present__detail .special__benefit .fig--01 {
    width: 69px;
    top: -26px;
    right: -13px;
  }
}
#prj_202603-202605_b main .flow__ttl {
  letter-spacing: 0;
  line-height: 1.4;
}
#prj_202603-202605_b main .flow__ttl span::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.4) * 0.5em);
  content: "";
}
#prj_202603-202605_b main .flow__ttl span::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.4) * 0.5em);
  content: "";
}
#prj_202603-202605_b main .flow__list {
  width: 84vw;
  margin-inline: auto;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .flow__list {
    width: 416px;
  }
}
#prj_202603-202605_b main .flow__list dt, #prj_202603-202605_b main .flow__list dd {
  padding: 0 2.6666666667vw;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .flow__list dt, #prj_202603-202605_b main .flow__list dd {
    padding: 0 13px;
  }
}
#prj_202603-202605_b main .flow__list dt {
  font-size: 4.8vw;
  display: flex;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .flow__list dt {
    font-size: 24px;
    margin-bottom: 26px;
  }
}
#prj_202603-202605_b main .flow__list dt .num {
  display: inline-block;
  font-family: "Shippori Mincho", serif;
  font-size: 7.2vw;
  font-weight: 700;
  letter-spacing: 0;
  color: #d64760;
  margin-right: 3.3333333333vw;
  line-height: 1;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .flow__list dt .num {
    font-size: 35px;
    margin-right: 16px;
  }
}
#prj_202603-202605_b main .flow__list dt .ttl {
  flex: 1;
  display: inline-block;
  font-weight: 700;
}
#prj_202603-202605_b main .flow__list dd {
  margin-bottom: 8vw;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .flow__list dd {
    margin-bottom: 40px;
  }
}
#prj_202603-202605_b main .flow__list dd:last-of-type {
  margin-bottom: 0;
}
#prj_202603-202605_b main .flow__list .cta {
  padding: 0;
}
#prj_202603-202605_b main .flow__list .cta__btn {
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .flow__list .cta__btn {
    font-size: 21px;
  }
}
#prj_202603-202605_b main .service {
  background-color: #f7eee0;
}
#prj_202603-202605_b main .service .fig--01 {
  width: 78.6666666667vw;
  margin-inline: auto;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .service .fig--01 {
    width: 389px;
  }
}
#prj_202603-202605_b main .service__list li {
  margin-bottom: 8vw;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .service__list li {
    margin-bottom: 40px;
  }
}
#prj_202603-202605_b main .service .cta__btn {
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .service .cta__btn {
    font-size: 21px;
  }
}
#prj_202603-202605_b main .service .line-shindan__read {
  text-align: center;
  font-size: 4.5333333333vw;
  font-weight: 700;
  color: #d64760;
  line-height: 1.6;
}
#prj_202603-202605_b main .service .line-shindan__read::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.6) * 0.5em);
  content: "";
}
#prj_202603-202605_b main .service .line-shindan__read::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.6) * 0.5em);
  content: "";
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b main .service .line-shindan__read {
    font-size: 22px;
  }
}
#prj_202603-202605_b .separator {
  background-color: #f7eee0;
}
#prj_202603-202605_b .separator .dashed-line {
  width: 62.4vw;
  background-image: url("../img/line-dotted_dark-blue_long.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b .separator .dashed-line {
    width: 309px;
  }
}
#prj_202603-202605_b .footer {
  background-color: #f7eee0;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b .footer {
    max-width: 500px;
    margin-inline: auto;
  }
}
#prj_202603-202605_b .footer .admin {
  text-align: center;
  line-height: 1;
  font-size: 3.2vw;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b .footer .admin {
    font-size: 16px;
  }
}
#prj_202603-202605_b .footer .attempt {
  width: 78.6666666667vw;
  margin-inline: auto;
  display: flex;
  gap: 4vw;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b .footer .attempt {
    width: 389px;
    gap: 20px;
  }
}
#prj_202603-202605_b .footer .attempt__pmark {
  width: 16vw;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b .footer .attempt__pmark {
    width: 79px;
  }
}
#prj_202603-202605_b .footer .attempt__jpx {
  width: 16vw;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b .footer .attempt__jpx {
    width: 79px;
  }
}
#prj_202603-202605_b .footer .attempt__txt {
  flex: 1;
  font-size: 3.2vw;
}
#prj_202603-202605_b .footer .attempt__txt::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.8) * 0.5em);
  content: "";
}
#prj_202603-202605_b .footer .attempt__txt::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.8) * 0.5em);
  content: "";
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b .footer .attempt__txt {
    font-size: 16px;
  }
}
#prj_202603-202605_b .footer small {
  display: block;
  text-align: center;
  line-height: 1;
  font-size: 3.2vw;
}
@media screen and (min-width: 751px) {
  #prj_202603-202605_b .footer small {
    font-size: 16px;
  }
}

/**
 * お問合せフォーム
 */
.entry__body form {
  width: 80vw;
  margin-inline: auto;
  letter-spacing: 0;
  line-height: 1.6;
}
@media screen and (min-width: 751px) {
  .entry__body form {
    width: 396px;
  }
}
.entry__body form fieldset {
  max-width: 100% !important;
}
.entry__body form input[type=text],
.entry__body form input[type=email],
.entry__body form input[type=tel],
.entry__body form textarea {
  width: 100% !important;
  border-radius: 1.3333333333vw;
  border: 0.2666666667vw solid #393B80;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 3.7333333333vw;
  line-height: 1;
  padding: 2.1333333333vw;
  letter-spacing: 0.075rem;
}
@media screen and (min-width: 751px) {
  .entry__body form input[type=text],
  .entry__body form input[type=email],
  .entry__body form input[type=tel],
  .entry__body form textarea {
    border-radius: 7px;
    border-width: 1px;
    font-size: 18px;
    padding: 10px;
  }
}
.entry__body form input[type=button] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  /*for iPhone*/
}
.entry__body form textarea {
  min-height: 37.3333333333vw;
  vertical-align: bottom;
  line-height: 1.6;
  letter-spacing: 0.075rem;
}
@media screen and (min-width: 751px) {
  .entry__body form textarea {
    min-height: 185px;
  }
}
.entry__body form select {
  width: 100% !important;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  /*for iPhone*/
  background-image: url("../img/downward_triangle.webp");
  background-repeat: no-repeat;
  background-size: 3.7333333333vw auto;
  background-position: right 4.2666666667vw center;
  border-radius: 1.3333333333vw;
  border: 0.2666666667vw solid #393B80;
  background-color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 3.7333333333vw;
  padding: 2.1333333333vw 4.2666666667vw;
  letter-spacing: 0.075rem;
}
@media screen and (min-width: 751px) {
  .entry__body form select {
    background-size: 18px auto;
    background-position: right 21px center;
    border-radius: 7px;
    border-width: 1px;
    font-size: 18px;
    padding: 10px 21px;
  }
}
.entry__body form select:invalid {
  color: #AAA;
}
.entry__body form select option {
  color: black;
}
.entry__body form select option:first-child {
  color: #AAA;
}
.entry__body form .input {
  margin-right: 0 !important;
}
.entry__body form .hs-form-field {
  margin-bottom: 4.2666666667vw;
}
@media screen and (min-width: 751px) {
  .entry__body form .hs-form-field {
    margin-bottom: 21px;
  }
}
.entry__body form .hs-form-field > label {
  display: block;
  margin-bottom: 2.6666666667vw;
  font-weight: bold;
  line-height: 1.6;
}
.entry__body form .hs-form-field > label::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.6) * 0.5em);
  content: "";
}
.entry__body form .hs-form-field > label::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.6) * 0.5em);
  content: "";
}
@media screen and (min-width: 751px) {
  .entry__body form .hs-form-field > label {
    margin-bottom: 13px;
  }
}
.entry__body form .hs-form-field > label .hs-form-required {
  color: #D64760;
}
.entry__body form .hs-field-desc {
  margin-bottom: 2.6666666667vw;
  font-size: 3.2vw;
  font-weight: 700;
  line-height: 1.6;
}
.entry__body form .hs-field-desc::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.6) * 0.5em);
  content: "";
}
.entry__body form .hs-field-desc::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.6) * 0.5em);
  content: "";
}
@media screen and (min-width: 751px) {
  .entry__body form .hs-field-desc {
    margin-bottom: 13px;
    font-size: 16px;
  }
}
.entry__body form .hs_email .hs-field-desc {
  color: #D64760;
}
.entry__body form .form-columns-2 .hs-form-field {
  float: none !important;
  width: 100% !important;
}
.entry__body form .hs-error-msgs {
  color: #D64760;
}
.entry__body form .hs_error_rollup {
  text-align: center;
  margin-bottom: 2.6666666667vw;
  font-weight: 700;
}
@media screen and (min-width: 751px) {
  .entry__body form .hs_error_rollup {
    margin-bottom: 13px;
  }
}
.entry__body form #label-inquirer-5d8645a4-67aa-4ffa-a044-3dee99edb36a + .input > .inputs-list,
.entry__body form #label-inquirer-dec3f89d-9726-4081-893e-0bd0a41d397f + .input > .inputs-list {
  display: flex;
  gap: 2.6666666667vw;
}
@media screen and (min-width: 751px) {
  .entry__body form #label-inquirer-5d8645a4-67aa-4ffa-a044-3dee99edb36a + .input > .inputs-list,
  .entry__body form #label-inquirer-dec3f89d-9726-4081-893e-0bd0a41d397f + .input > .inputs-list {
    gap: 13px;
  }
}
.entry__body form #label-inquirer-5d8645a4-67aa-4ffa-a044-3dee99edb36a + .input > .inputs-list li,
.entry__body form #label-inquirer-dec3f89d-9726-4081-893e-0bd0a41d397f + .input > .inputs-list li {
  width: 50%;
}
.entry__body form #label-inquirer-5d8645a4-67aa-4ffa-a044-3dee99edb36a + .input > .inputs-list li label,
.entry__body form #label-inquirer-dec3f89d-9726-4081-893e-0bd0a41d397f + .input > .inputs-list li label {
  background-color: #fff;
  border: 0.2666666667vw solid #393B80;
  border-radius: 1.3333333333vw;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 10.6666666667vw;
  position: relative;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (min-width: 751px) {
  .entry__body form #label-inquirer-5d8645a4-67aa-4ffa-a044-3dee99edb36a + .input > .inputs-list li label,
  .entry__body form #label-inquirer-dec3f89d-9726-4081-893e-0bd0a41d397f + .input > .inputs-list li label {
    border-width: 1px;
    border-radius: 7px;
    min-height: 53px;
  }
}
.entry__body form #label-inquirer-5d8645a4-67aa-4ffa-a044-3dee99edb36a + .input > .inputs-list li label input[type=radio],
.entry__body form #label-inquirer-dec3f89d-9726-4081-893e-0bd0a41d397f + .input > .inputs-list li label input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
}
.entry__body form #label-inquirer-5d8645a4-67aa-4ffa-a044-3dee99edb36a + .input > .inputs-list li label:has(input[type=radio]:checked),
.entry__body form #label-inquirer-dec3f89d-9726-4081-893e-0bd0a41d397f + .input > .inputs-list li label:has(input[type=radio]:checked) {
  background-color: #393B80;
  color: #fff;
}
.entry__body form #label-inquirer-5d8645a4-67aa-4ffa-a044-3dee99edb36a + .input > .inputs-list li label span,
.entry__body form #label-inquirer-dec3f89d-9726-4081-893e-0bd0a41d397f + .input > .inputs-list li label span {
  padding: 0;
}
.entry__body form #label-inquirer-5d8645a4-67aa-4ffa-a044-3dee99edb36a + .input > .inputs-list li label::before, .entry__body form #label-inquirer-5d8645a4-67aa-4ffa-a044-3dee99edb36a + .input > .inputs-list li label::after,
.entry__body form #label-inquirer-dec3f89d-9726-4081-893e-0bd0a41d397f + .input > .inputs-list li label::before,
.entry__body form #label-inquirer-dec3f89d-9726-4081-893e-0bd0a41d397f + .input > .inputs-list li label::after {
  display: none;
}
.entry__body form ul.inputs-list li:not(:last-child) {
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 751px) {
  .entry__body form ul.inputs-list li:not(:last-child) {
    margin-bottom: 14px;
  }
}
.entry__body form label.hs-form-checkbox-display,
.entry__body form label.hs-form-booleancheckbox-display {
  display: block;
  position: relative;
  cursor: pointer;
}
.entry__body form label.hs-form-checkbox-display input[type=checkbox],
.entry__body form label.hs-form-booleancheckbox-display input[type=checkbox] {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.entry__body form label.hs-form-checkbox-display::before, .entry__body form label.hs-form-checkbox-display::after,
.entry__body form label.hs-form-booleancheckbox-display::before,
.entry__body form label.hs-form-booleancheckbox-display::after {
  content: "";
  display: inline-block;
  width: 6.6666666667vw;
  height: 6.6666666667vw;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 1.3333333333vw;
  border: 0.2666666667vw solid #393B80;
  cursor: pointer;
}
@media screen and (min-width: 751px) {
  .entry__body form label.hs-form-checkbox-display::before, .entry__body form label.hs-form-checkbox-display::after,
  .entry__body form label.hs-form-booleancheckbox-display::before,
  .entry__body form label.hs-form-booleancheckbox-display::after {
    width: 33px;
    height: 33px;
    border-radius: 7px;
    border-width: 1px;
  }
}
.entry__body form label.hs-form-checkbox-display::before,
.entry__body form label.hs-form-booleancheckbox-display::before {
  background-color: #fff;
}
.entry__body form label.hs-form-checkbox-display::after,
.entry__body form label.hs-form-booleancheckbox-display::after {
  z-index: 1;
  width: 3.2vw;
  height: 1.6vw;
  border-left: 0.6666666667vw solid #fff;
  border-bottom: 0.6666666667vw solid #fff;
  border-top: none;
  border-right: none;
  border-radius: 0;
  transform: rotate(-45deg);
  top: 2vw;
  left: 1.8666666667vw;
  opacity: 0;
}
@media screen and (min-width: 751px) {
  .entry__body form label.hs-form-checkbox-display::after,
  .entry__body form label.hs-form-booleancheckbox-display::after {
    width: 16px;
    height: 8px;
    border-left-width: 3px;
    border-bottom-width: 3px;
    top: 10px;
    left: 9px;
  }
}
.entry__body form label.hs-form-checkbox-display:has(input[type=checkbox]:checked)::before,
.entry__body form label.hs-form-booleancheckbox-display:has(input[type=checkbox]:checked)::before {
  background-color: #393B80;
}
.entry__body form label.hs-form-checkbox-display:has(input[type=checkbox]:checked)::after,
.entry__body form label.hs-form-booleancheckbox-display:has(input[type=checkbox]:checked)::after {
  opacity: 1;
}
.entry__body form label.hs-form-checkbox-display span,
.entry__body form label.hs-form-booleancheckbox-display span {
  display: inline-block;
  padding-left: 9.6vw;
  line-height: 1.6;
}
.entry__body form label.hs-form-checkbox-display span::before,
.entry__body form label.hs-form-booleancheckbox-display span::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.6) * 0.5em);
  content: "";
}
.entry__body form label.hs-form-checkbox-display span::after,
.entry__body form label.hs-form-booleancheckbox-display span::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.6) * 0.5em);
  content: "";
}
@media screen and (min-width: 751px) {
  .entry__body form label.hs-form-checkbox-display span,
  .entry__body form label.hs-form-booleancheckbox-display span {
    padding-left: 47px;
  }
}
.entry__body form label.hs-form-radio-display {
  display: block;
  position: relative;
  cursor: pointer;
}
.entry__body form label.hs-form-radio-display input[type=radio] {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.entry__body form label.hs-form-radio-display::before, .entry__body form label.hs-form-radio-display::after {
  content: "";
  display: inline-block;
  width: 6.6666666667vw;
  height: 6.6666666667vw;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  border: 0.2666666667vw solid #393B80;
  cursor: pointer;
}
@media screen and (min-width: 751px) {
  .entry__body form label.hs-form-radio-display::before, .entry__body form label.hs-form-radio-display::after {
    width: 33px;
    height: 33px;
    border-width: 1px;
  }
}
.entry__body form label.hs-form-radio-display::before {
  background-color: #fff;
}
.entry__body form label.hs-form-radio-display::after {
  background-color: #393B80;
  width: 4.5333333333vw;
  height: 4.5333333333vw;
  top: 1.0666666667vw;
  left: 1.0666666667vw;
  opacity: 0;
}
@media screen and (min-width: 751px) {
  .entry__body form label.hs-form-radio-display::after {
    width: 23px;
    height: 23px;
    top: 5px;
    left: 5px;
  }
}
.entry__body form label.hs-form-radio-display:has(input[type=radio]:checked)::after {
  opacity: 1;
}
.entry__body form label.hs-form-radio-display span {
  display: inline-block;
  padding-left: 9.6vw;
}
@media screen and (min-width: 751px) {
  .entry__body form label.hs-form-radio-display span {
    padding-left: 47px;
  }
}
.entry__body form .hs-richtext {
  font-size: 3.2vw;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 751px) {
  .entry__body form .hs-richtext {
    font-size: 16px;
    margin-bottom: 13px;
  }
}
.entry__body form .hs-richtext div {
  text-align: left !important;
}
.entry__body form .hs-richtext span {
  font-size: 3.2vw !important;
  color: #393B80 !important;
}
@media screen and (min-width: 751px) {
  .entry__body form .hs-richtext span {
    font-size: 16px !important;
  }
}
.entry__body form .hs-richtext a {
  font-weight: 700;
  text-decoration: underline;
  color: #393B80 !important;
}
.entry__body form .hs-privacy {
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 751px) {
  .entry__body form .hs-privacy {
    margin-bottom: 26px;
  }
}
.entry__body form label.hs-form-booleancheckbox-display span {
  font-size: 3.2vw;
  font-weight: 700;
  transform: translateY(-0.1333333333vw);
}
@media screen and (min-width: 751px) {
  .entry__body form label.hs-form-booleancheckbox-display span {
    font-size: 16px;
    padding-left: 47px;
    transform: translateY(-1px);
  }
}
.entry__body form label.hs-form-booleancheckbox-display span.hs-form-required {
  padding-left: 0;
  color: #D64760;
}
.entry__body form .hs-submit .actions {
  position: relative;
}
.entry__body form .hs-submit .actions input[type=submit].hs-button {
  cursor: pointer;
  border: none;
  border-radius: 9999px;
  padding: 3.3333333333vw;
  width: 84vw;
  transform: translateX(-1.8666666667vw);
  background-color: #D64760;
  color: #fff;
  font-size: 4.2666666667vw;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  box-shadow: 0 0.8vw 0 0 #892d3d;
}
@media screen and (min-width: 751px) {
  .entry__body form .hs-submit .actions input[type=submit].hs-button {
    font-size: 21px;
    padding: 18px;
    width: 416px;
    transform: translateX(-9px);
    box-shadow: 0 4px 0 0 #892d3d;
  }
}
.entry__body form .hs-submit .actions::before {
  content: "";
  display: inline-block;
  width: 5.8666666667vw;
  height: 5.8666666667vw;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3.3333333333vw;
  z-index: 1;
  background-image: url("../img/circle_arrow.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
@media screen and (min-width: 751px) {
  .entry__body form .hs-submit .actions::before {
    width: 29px;
    height: 29px;
    right: 17px;
  }
}
.entry__body form {
  /*---------------------------------------
  datepicker
  ---------------------------------------*/
}
.entry__body form .picker {
  position: absolute !important;
}
.entry__body form .picker__button--clear {
  background-color: #393b80;
  border: none;
  font-size: 1.5rem;
  white-space: nowrap;
  width: 100%;
  padding: 1.2rem;
  color: #fff;
  margin-bottom: 12px;
}
.entry__body form .picker__button--clear::before {
  top: 0;
  width: 0em;
  border-top: none;
}
.entry__body form .fn-date-picker.pika-single.is-bound {
  position: absolute;
  box-shadow: none;
  z-index: 10000;
}
.entry__body form .fn-date-picker.pika-single {
  z-index: 9999;
  display: block;
  position: relative;
  color: #333;
  background: #fff;
  border: none;
  border-bottom-color: none;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  *zoom: 1;
  border-radius: 6px;
}
.entry__body form .hs-dateinput.hs-datepicker-open .hs-datepicker {
  position: fixed !important;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
}
.entry__body form .hs-dateinput.hs-datepicker-open::before {
  display: block;
}
.entry__body form .hs-datepicker .pika-single {
  position: fixed;
  width: 90% !important;
  max-width: 350px !important;
  left: 0;
  right: 0;
  margin: auto;
  font-family: "acumin-pro-semi-condensed", "Yu Gothic Bold", "游ゴシック Bold", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif !important;
}
.entry__body form .fn-date-picker .pika-title {
  position: relative;
  padding: 0 0 min(4vw, 40px);
  display: flex;
  justify-content: center;
}
.entry__body form .fn-date-picker .pika-title::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  border-bottom: 1px solid #d9d9d9;
  bottom: min(1.6vw, 16px);
  left: 0;
}
.entry__body form .fn-date-picker .pika-prev {
  order: 1;
}
.entry__body form .fn-date-picker .pika-label {
  order: 2;
}
.entry__body form .fn-date-picker .pika-label + .pika-label {
  order: 3;
}
.entry__body form .fn-date-picker .pika-next {
  order: 4;
}
.entry__body form .fn-date-picker .pika-next,
.entry__body form .fn-date-picker .pika-prev {
  display: block;
  cursor: pointer;
  position: relative;
  outline: none;
  border: 0;
  padding: 0;
  width: 0 !important;
  height: 0 !important;
  text-indent: 20px;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 75% 75%;
  opacity: 1 !important;
  *position: absolute;
  top: 10px !important;
}
.entry__body form .fn-date-picker .is-rtl .pika-prev,
.entry__body form .fn-date-picker .pika-next {
  float: none !important;
  background-image: none !important;
  border-left: 10px solid #bc2c2b;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  right: -30px;
}
.entry__body form .fn-date-picker .is-rtl .pika-next,
.entry__body form .fn-date-picker .pika-prev {
  float: none !important;
  background-image: none !important;
  border-right: 10px solid #bc2c2b;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  left: -30px;
}
.entry__body form .hs-datepicker .pika-single .pika-lendar {
  margin: min(2vw, 20px) !important;
  width: calc(100% - 40px) !important;
  max-width: 600px !important;
}
.entry__body form .fn-date-picker .pika-table th {
  font-weight: normal !important;
  font-size: clamp(14px, 1.4vw, 16px) !important;
  color: #000;
  padding-bottom: min(1vw, 20px);
}
.entry__body form .fn-date-picker .pika-label {
  display: inline-block;
  *display: inline;
  position: relative;
  z-index: 9999;
  overflow: hidden;
  margin: 0;
  padding: 5px 3px;
  font-size: clamp(18px, 1.8vw, 20px) !important;
  line-height: 20px;
  font-weight: normal !important;
  background-color: #fff;
}
.entry__body form .fn-date-picker .pika-title select {
  font-size: clamp(18px, 1.8vw, 20px) !important;
  font-weight: normal !important;
}
.entry__body form .fn-date-picker .pika-button {
  cursor: pointer;
  display: block;
  box-sizing: border-box;
  outline: none;
  border: 0;
  width: calc(100% - 8px) !important;
  padding: 25% 0 !important;
  color: #000;
  margin: 4px !important;
  background: #d9d9d9;
  border-radius: 2px;
  font-size: clamp(16px, 1.6vw, 18px) !important;
  line-height: 15px;
  text-align: center !important;
}
.entry__body form .fn-date-picker .pika-table abbr {
  border-bottom: none;
  cursor: help;
  text-decoration: none;
}
.entry__body form .picker__nav--prev:hover,
.entry__body form .picker__nav--next:hover {
  cursor: pointer;
  color: #000;
  background: transparent;
}
.entry__body form {
  /*---------------------------------------
  pickadate.js
  ---------------------------------------*/
}
.entry__body form .picker--opened .picker__holder {
  transform: translateY(0);
  background: rgba(0, 0, 0, 0.7);
  transition: background 0.15s ease-out;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.entry__body form .picker__frame {
  transform: translateY(0) !important;
}
.entry__body form .picker__frame {
  margin-bottom: 0;
  transition: all 0.5s ease-out;
  bottom: 0 !important;
}
.entry__body form .picker--opened .picker__frame {
  width: 100%;
  height: 100%;
}
.entry__body form .picker__wrap {
  position: fixed;
  width: 90% !important;
  max-width: 350px !important;
  left: 0;
  right: 0;
  margin: auto;
  font-family: "acumin-pro-semi-condensed", "Yu Gothic Bold", "游ゴシック Bold", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif !important;
}
.entry__body form .picker__box {
  border: none;
  padding: min(1vw, 10px) min(2vw, 20px);
}
.entry__body form .picker__header {
  position: relative;
  padding: 0 0 min(3vw, 30px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.entry__body form .picker__header::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  border-bottom: 1px solid #d9d9d9;
  bottom: min(1.6vw, 16px);
  left: 0;
}
.entry__body form .picker__month,
.entry__body form .picker__year {
  font-size: 16px !important;
  color: #000;
  font-style: normal;
  font-weight: 700;
}
.entry__body form .picker__year::after {
  content: "年";
}
.entry__body form .picker__year {
  order: 1;
}
.entry__body form .picker__month {
  order: 2;
}
.entry__body form .picker__nav--prev::before,
.entry__body form .picker__nav--next::before {
  display: block;
  cursor: pointer;
  position: relative;
  outline: none;
  border: 0;
  padding: 0;
  width: 0 !important;
  height: 0 !important;
  text-indent: 20px;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 75% 75%;
  opacity: 1 !important;
  *position: absolute;
  top: 0 !important;
}
.entry__body form .picker__nav--next::before {
  float: none !important;
  background-image: none !important;
  border-left: 10px solid #393b80;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  right: 0;
}
.entry__body form .picker__nav--prev::before {
  float: none !important;
  background-image: none !important;
  border-right: 10px solid #393b80;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  left: 0;
}
.entry__body form .picker__weekday {
  font-weight: normal !important;
  font-size: 16px !important;
  color: #000;
  padding-bottom: min(1vw, 20px);
}
.entry__body form .picker__day {
  cursor: pointer;
  display: block;
  box-sizing: border-box;
  outline: none;
  border: 0;
  width: calc(100% - 8px) !important;
  padding: 25% 0 !important;
  color: #000;
  margin: 4px !important;
  border-radius: 2px;
  font-size: 20px !important;
  line-height: 15px;
  text-align: center !important;
}
.entry__body form .picker__day--highlighted:hover,
.entry__body form .picker--focused .picker__day--highlighted {
  cursor: pointer;
  color: #fff;
  background: #393b80;
}
.entry__body form .picker__day--today::before {
  display: none;
}
.entry__body form .picker__day--disabled,
.entry__body form .picker__day--disabled:hover,
.entry__body form .picker--focused .picker__day--disabled {
  background: #e8e8e8;
  border-color: #e8e8e8;
  color: #c9c9c9;
  cursor: default;
}
.entry__body form .picker__button--close {
  position: absolute;
  text-indent: -9999px;
  right: 0;
  border: none;
  background: transparent;
  padding: 0;
  display: block;
  width: 40px;
  height: 40px;
  top: -45px;
  cursor: pointer;
}
.entry__body form .picker__button--close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.entry__body form .picker__button--close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.entry__body form .picker__button--close::before,
.entry__body form .picker__button--close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 40px;
  background: #9a9a9a;
}
.entry__body form .picker__box {
  box-shadow: 0px 0px 22px -9px #cdcdcd;
}
.entry__body form .picker__select--year {
  width: 30%;
  height: auto;
  padding: 4px 10px;
  font-weight: bold;
  font-size: 16px !important;
  font-family: "acumin-pro-semi-condensed", "Yu Gothic Bold", "游ゴシック Bold", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif !important;
}
.entry__body form .picker__select--year + .picker__month {
  margin-top: -10px;
}

.mt120 {
  margin-top: 16vw !important;
}
.mt110 {
  margin-top: 14.6666666667vw !important;
}
.mt100 {
  margin-top: 13.3333333333vw !important;
}
.mt90 {
  margin-top: 12vw !important;
}
.mt80 {
  margin-top: 10.6666666667vw !important;
}
.mt70 {
  margin-top: 9.3333333333vw !important;
}
.mt60 {
  margin-top: 8vw !important;
}
.mt50 {
  margin-top: 6.6666666667vw !important;
}
.mt40 {
  margin-top: 5.3333333333vw !important;
}
.mt30 {
  margin-top: 4vw !important;
}
.mt20 {
  margin-top: 2.6666666667vw !important;
}
.mt10 {
  margin-top: 1.3333333333vw !important;
}
@media screen and (min-width: 751px) {
  .mt120 {
    margin-top: 79px !important;
  }
  .mt110 {
    margin-top: 73px !important;
  }
  .mt100 {
    margin-top: 66px !important;
  }
  .mt90 {
    margin-top: 59px !important;
  }
  .mt80 {
    margin-top: 53px !important;
  }
  .mt70 {
    margin-top: 46px !important;
  }
  .mt60 {
    margin-top: 40px !important;
  }
  .mt50 {
    margin-top: 33px !important;
  }
  .mt40 {
    margin-top: 26px !important;
  }
  .mt30 {
    margin-top: 20px !important;
  }
  .mt20 {
    margin-top: 13px !important;
  }
  .mt10 {
    margin-top: 7px !important;
  }
}

.mb180 {
  margin-bottom: 24vw !important;
}
.mb120 {
  margin-bottom: 16vw !important;
}
.mb110 {
  margin-bottom: 14.6666666667vw !important;
}
.mb100 {
  margin-bottom: 13.3333333333vw !important;
}
.mb90 {
  margin-bottom: 12vw !important;
}
.mb80 {
  margin-bottom: 10.6666666667vw !important;
}
.mb70 {
  margin-bottom: 9.3333333333vw !important;
}
.mb60 {
  margin-bottom: 8vw !important;
}
.mb50 {
  margin-bottom: 6.6666666667vw !important;
}
.mb40 {
  margin-bottom: 5.3333333333vw !important;
}
.mb30 {
  margin-bottom: 4vw !important;
}
.mb20 {
  margin-bottom: 2.6666666667vw !important;
}
.mb10 {
  margin-bottom: 1.3333333333vw !important;
}
@media screen and (min-width: 751px) {
  .mb180 {
    margin-bottom: 119px !important;
  }
  .mb120 {
    margin-bottom: 79px !important;
  }
  .mb110 {
    margin-bottom: 73px !important;
  }
  .mb100 {
    margin-bottom: 66px !important;
  }
  .mb90 {
    margin-bottom: 59px !important;
  }
  .mb80 {
    margin-bottom: 53px !important;
  }
  .mb70 {
    margin-bottom: 46px !important;
  }
  .mb60 {
    margin-bottom: 40px !important;
  }
  .mb50 {
    margin-bottom: 33px !important;
  }
  .mb40 {
    margin-bottom: 26px !important;
  }
  .mb30 {
    margin-bottom: 20px !important;
  }
  .mb20 {
    margin-bottom: 13px !important;
  }
  .mb10 {
    margin-bottom: 7px !important;
  }
}

.pt120 {
  padding-top: 16vw !important;
}
.pt110 {
  padding-top: 14.6666666667vw !important;
}
.pt100 {
  padding-top: 13.3333333333vw !important;
}
.pt90 {
  padding-top: 12vw !important;
}
.pt80 {
  padding-top: 10.6666666667vw !important;
}
.pt70 {
  padding-top: 9.3333333333vw !important;
}
.pt60 {
  padding-top: 8vw !important;
}
.pt50 {
  padding-top: 6.6666666667vw !important;
}
.pt40 {
  padding-top: 5.3333333333vw !important;
}
.pt30 {
  padding-top: 4vw !important;
}
.pt20 {
  padding-top: 2.6666666667vw !important;
}
.pt10 {
  padding-top: 1.3333333333vw !important;
}
@media screen and (min-width: 751px) {
  .pt120 {
    padding-top: 79px !important;
  }
  .pt110 {
    padding-top: 73px !important;
  }
  .pt100 {
    padding-top: 66px !important;
  }
  .pt90 {
    padding-top: 59px !important;
  }
  .pt80 {
    padding-top: 53px !important;
  }
  .pt70 {
    padding-top: 46px !important;
  }
  .pt60 {
    padding-top: 40px !important;
  }
  .pt50 {
    padding-top: 33px !important;
  }
  .pt40 {
    padding-top: 26px !important;
  }
  .pt30 {
    padding-top: 20px !important;
  }
  .pt20 {
    padding-top: 13px !important;
  }
  .pt10 {
    padding-top: 7px !important;
  }
}

.pb120 {
  padding-bottom: 16vw !important;
}
.pb110 {
  padding-bottom: 14.6666666667vw !important;
}
.pb100 {
  padding-bottom: 13.3333333333vw !important;
}
.pb90 {
  padding-bottom: 12vw !important;
}
.pb80 {
  padding-bottom: 10.6666666667vw !important;
}
.pb70 {
  padding-bottom: 9.3333333333vw !important;
}
.pb60 {
  padding-bottom: 8vw !important;
}
.pb50 {
  padding-bottom: 6.6666666667vw !important;
}
.pb40 {
  padding-bottom: 5.3333333333vw !important;
}
.pb30 {
  padding-bottom: 4vw !important;
}
.pb20 {
  padding-bottom: 2.6666666667vw !important;
}
.pb10 {
  padding-bottom: 1.3333333333vw !important;
}
@media screen and (min-width: 751px) {
  .pb120 {
    padding-bottom: 79px !important;
  }
  .pb110 {
    padding-bottom: 73px !important;
  }
  .pb100 {
    padding-bottom: 66px !important;
  }
  .pb90 {
    padding-bottom: 59px !important;
  }
  .pb80 {
    padding-bottom: 53px !important;
  }
  .pb70 {
    padding-bottom: 46px !important;
  }
  .pb60 {
    padding-bottom: 40px !important;
  }
  .pb50 {
    padding-bottom: 33px !important;
  }
  .pb40 {
    padding-bottom: 26px !important;
  }
  .pb30 {
    padding-bottom: 20px !important;
  }
  .pb20 {
    padding-bottom: 13px !important;
  }
  .pb10 {
    padding-bottom: 7px !important;
  }
}/*# sourceMappingURL=style.css.map */