@charset "UTF-8";
/**
 * mixin
 */
.hoverLayer {
  --btn-size: 280px;
  --mask-color: var(--blue-hover-color);
  will-change: transform;
  overflow: hidden;
}
.hoverLayer p {
  transition: all 0.32s cubic-bezier(0.39, 0.575, 0.565, 1);
}
@media only screen and (min-width: 768px) {
  .hoverLayer::before {
    --size: calc(var(--btn-size) * 1.2);
    content: "";
    position: absolute;
    top: calc(50% - max(var(--size)) / 2);
    left: calc(50% - max(var(--size)) / 2);
    width: max(var(--size));
    height: max(var(--size));
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
    background-color: var(--mask-color);
    transform: scale(0);
    transition: transform 0.32s cubic-bezier(0.39, 0.575, 0.565, 1);
  }
  .hoverLayer:hover::before {
    transform: scale(1);
  }
}

:root {
  --header-offset: 100px;
  --width-outer: 1440px;
  --width-inner: 1320px;
  --step: 1.06;
  --font-size: 16px;
  --line-height: 1.8;
  --trigger-size: 3em;
  --small: 0.6em;
  --large: 1.4em;
  --transition: 0.2s;
  --gap: 20px;
  --radius: 0.6em;
  --radius-inner: 0.3em;
  --width-limit: 1380px;
  --section-space: 40px;
  --margin: 1em;
  --padding: 20px;
  --shadow: -2px -2px 5px -4px rgba(3, 2, 2, 0.2),
      4px 4px 20px -4px rgba(3, 2, 2, 0.2), -4px 0px 20px -4px rgba(134, 134, 134, 0.4);
  --shadow-2: 0 0 50px rgba(3, 2, 2, 0.3);
  --shadow3: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  --transition: 0.2s;
  --transition-cubic: all .32s cubic-bezier(0.39, 0.575, 0.565, 1);
  --color-white: #ffffff;
  --color-red: #e73c53d2;
  --color-black: #373737;
  --color-gray-border: #858585;
  --color-hover: #930691;
  --blue-hover-color: #001f56;
  --gray-hover-color: #e6e6e6;
  --store-button-hover-color: #1f1f1f;
  --color-gray-input: #efefef;
  --color-gray-header: #f2f2f2;
  --color-gray-footer: #f1f1f1;
  --color-gray-bg: #707070;
  --primary-color: #9a3470;
  --text-pink: #b55e94;
  --bg-pink: #f9f0f6;
  --color-text: var(--color-black);
  --color-input: var(--color-gray-input);
  --color-border: var(--color-gray-border);
  --light-gray-border: var(--color-gray-input);
  --gray-title: #d0d0d0;
  --plan-1-color: var(--text-pink);
  --plan-2-color: #a94357;
  --plan-3-color: #612572;
  --color-light-glass: rgba(255, 254, 254, 0.8);
  --color-dark-glass: rgba(38, 32, 32, 0.8);
  --noto-sans: "Noto Sans JP",
      sans-serif;
  --noto-serif: "Noto Serif JP",
      serif;
  --concert-one: "Concert One",
      "Noto Sans JP",
      serif;
  --shippori-mincho: "Shippori Mincho",
      serif;
  --roboto: "Roboto",
      sans-serif;
  --yuGothic: "Yu Gothic Medium",
      "游ゴシック Medium",
      YuGothic,
      "游ゴシック体",
      "ヒラギノ角ゴ Pro W3",
      "メイリオ",
      "yuGothic-b",
      "yu-gothic-pr6n",
      "Noto Sans JP",
      sans-serif;
}

main.plans {
  --plan-color: var(--plan-1-color);
  --header-image: url("../img/simple-plan/header-img.jpg");
}
@media screen and (min-width: 751px) {
  main.plans {
    min-width: var(--width-inner);
  }
  main.plans::before {
    min-width: var(--width-inner);
  }
}
main.plans header {
  all: unset;
  height: 100%;
  width: 100%;
}
main.plans header .headerTitle {
  color: var(--plan-color);
}
main.plans header .headerImage {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: max(250px, 70vw);
  background-color: var(--plan-color);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: var(--header-image);
}
@media screen and (min-width: 751px) {
  main.plans header .headerImage {
    min-height: 400px;
    height: min(700px, 30vw);
  }
}
main.plans article {
  --spacer: 100px;
  padding: 0 var(--padding);
  max-width: 1100px;
  margin: 0 auto;
}
main.plans article h4 {
  font-weight: 700;
  font-size: 19px;
  font-family: ten-mincho, "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 400;
  font-style: normal;
}
main.plans article ul {
  display: flex;
  flex-flow: row wrap;
  -moz-column-gap: 4%;
       column-gap: 4%;
  margin-top: 1em;
}
main.plans article ul li {
  flex: 1;
}
main.plans article ul li .img {
  width: 100%;
}
main.plans article ul li .img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3;
}
main.plans article ul li p,
main.plans article ul li span {
  font-size: 16px;
}
main.plans article .planHeader {
  margin-top: var(--spacer);
}
main.plans article .planHeader h2 {
  color: var(--plan-color);
  font-size: 32px;
  font-family: ten-mincho, "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 400;
  font-style: normal;
}
main.plans article .planHeader p {
  margin-top: 2em;
  font-weight: 700;
}
main.plans article .price {
  margin-top: var(--spacer);
  display: flex;
  -moz-column-gap: 1em;
       column-gap: 1em;
  flex-direction: column;
}
@media screen and (min-width: 751px) {
  main.plans article .price {
    flex-direction: row;
  }
}
main.plans article .price_title {
  width: 200px;
}
main.plans article .price_title h4 {
  color: var(--plan-color);
  border: 2px solid var(--plan-color);
  display: inline-block;
  width: 200px;
  text-align: center;
}
main.plans article .price_values {
  display: inline-block;
  margin-top: 1em;
}
@media screen and (min-width: 751px) {
  main.plans article .price_values {
    margin-top: 0;
  }
}
main.plans article .price_values p {
  font-weight: 700;
}
main.plans article .price_values p:nth-of-type(1) {
  padding-bottom: 0;
  color: var(--plan-color);
}
main.plans article .price_values p:nth-of-type(1) {
  font-size: 21px;
}
@media screen and (min-width: 320px) {
  main.plans article .price_values p:nth-of-type(1) {
    font-size: calc(21px + 24 * ((100vw - 320px) / 980));
  }
}
@media screen and (min-width: 1300px) {
  main.plans article .price_values p:nth-of-type(1) {
    font-size: 45px;
  }
}
main.plans article .price_values p:nth-of-type(1) span {
  font-size: 19px;
}
@media screen and (min-width: 320px) {
  main.plans article .price_values p:nth-of-type(1) span {
    font-size: calc(19px + 13 * ((100vw - 320px) / 980));
  }
}
@media screen and (min-width: 1300px) {
  main.plans article .price_values p:nth-of-type(1) span {
    font-size: 32px;
  }
}
@media screen and (min-width: 751px) {
  main.plans article .price_values p:nth-of-type(1) {
    font-size: 45px;
  }
  main.plans article .price_values p:nth-of-type(1) span {
    font-size: 32px;
  }
}
main.plans article .price_values p:nth-of-type(2) {
  padding-top: 5px;
}
main.plans article .price_values p:nth-of-type(2) {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  main.plans article .price_values p:nth-of-type(2) {
    font-size: calc(18px + 10 * ((100vw - 320px) / 980));
  }
}
@media screen and (min-width: 1300px) {
  main.plans article .price_values p:nth-of-type(2) {
    font-size: 28px;
  }
}
main.plans article .price_values p:nth-of-type(2) span {
  font-size: 15px;
}
@media screen and (min-width: 320px) {
  main.plans article .price_values p:nth-of-type(2) span {
    font-size: calc(15px + 6 * ((100vw - 320px) / 980));
  }
}
@media screen and (min-width: 1300px) {
  main.plans article .price_values p:nth-of-type(2) span {
    font-size: 21px;
  }
}
@media screen and (min-width: 751px) {
  main.plans article .price_values p:nth-of-type(2) {
    font-size: 28px;
  }
  main.plans article .price_values p:nth-of-type(2) span {
    font-size: 21px;
  }
}
main.plans article .price_values p:nth-of-type(3) {
  margin-top: 10px;
  text-align: center;
  color: var(--color-white);
  border-radius: 20px;
  background-color: var(--plan-color);
  letter-spacing: normal;
  display: inline-block;
  padding: 4px 2em;
}
main.plans article .price_values p:nth-of-type(3) {
  font-size: 15px;
}
@media screen and (min-width: 320px) {
  main.plans article .price_values p:nth-of-type(3) {
    font-size: calc(15px + 1 * ((100vw - 320px) / 980));
  }
}
@media screen and (min-width: 1300px) {
  main.plans article .price_values p:nth-of-type(3) {
    font-size: 16px;
  }
}
@media screen and (min-width: 751px) {
  main.plans article .price_values p:nth-of-type(3) {
    display: block;
    padding: 0;
    font-size: 16px;
  }
}
main.plans article .chosenBy {
  margin-top: var(--spacer);
}
main.plans article .chosenBy ul li {
  flex-basis: 100%;
  border: 1px solid var(--plan-color);
  padding: var(--padding);
  text-align: center;
  font-weight: 700;
  margin-bottom: 1em;
}
main.plans article .chosenBy ul li p {
  color: var(--plan-color);
}
main.plans article .chosenBy ul li .chosenBy_item {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
main.plans article .chosenBy ul li:last-child .chosenBy_item {
  padding: 13.5px 0;
}
@media screen and (min-width: 751px) {
  main.plans article .chosenBy ul li {
    flex-basis: unset;
    margin-bottom: 0;
  }
  main.plans article .chosenBy ul li:last-child .chosenBy_item {
    padding: 0;
  }
}
main.plans article .features {
  margin-top: var(--spacer);
}
main.plans article .features p {
  margin-top: 5px;
  font-weight: 700;
  color: var(--plan-color);
}
main.plans article .features ul li {
  min-width: 320px;
  max-width: 430px;
  margin-bottom: 2em;
  flex: 1;
}
@media screen and (min-width: 751px) {
  main.plans article .features ul li {
    min-width: unset;
    max-width: unset;
    margin-bottom: 0;
    flex: 1;
  }
}
main.plans article .flow {
  margin-top: var(--spacer);
  --size: 100px;
}
@media screen and (min-width: 751px) {
  main.plans article .flow {
    --size: 160px;
  }
}
main.plans article .flow_list {
  margin-top: 2em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  -moz-column-gap: 5%;
       column-gap: 5%;
  position: relative;
}
main.plans article .flow_list:not(:first-child) {
  margin-top: 4em;
}
main.plans article .flow_list::after {
  content: "";
  width: 1.2px;
  height: 80%;
  top: calc(var(--size) / 2);
  left: var(--padding);
  position: absolute;
  background-color: var(--color-black);
  z-index: -1;
}
main.plans article .flow_list:last-child::after {
  width: 1.2px;
  height: 70%;
}
main.plans article .flow_list:last-child ul li:nth-of-type(2), main.plans article .flow_list:last-child ul li:nth-of-type(3) {
  margin-bottom: 0;
}
@media screen and (min-width: 751px) {
  main.plans article .flow_list {
    flex-direction: row;
  }
  main.plans article .flow_list::after {
    width: 100%;
    height: 1.2px;
    top: calc(var(--size) / 2);
    left: 0;
  }
  main.plans article .flow_list:last-child::after {
    width: 70%;
    height: 1px;
  }
}
main.plans article .flow_list_header {
  width: var(--size);
  height: var(--size);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.1px solid currentColor;
  text-align: center;
  font-weight: 700;
  background-color: #fff;
}
@media screen and (min-width: 751px) {
  main.plans article .flow_list_header {
    border-radius: var(--size);
  }
}
main.plans article .flow_list_body {
  flex: 1;
}
main.plans article .flow_list_body ul {
  -moz-column-gap: 5%;
       column-gap: 5%;
  display: flex;
  flex-direction: column;
  margin-top: 2em;
}
main.plans article .flow_list_body ul li {
  margin-bottom: 4em;
}
@media screen and (min-width: 751px) {
  main.plans article .flow_list_body ul li {
    margin-bottom: 2em;
  }
}
main.plans article .flow_list_body ul h5,
main.plans article .flow_list_body ul p {
  margin-left: calc(var(--padding) * 2);
}
main.plans article .flow_list_body ul h5 {
  font-weight: 700;
  font-size: 19px;
  color: var(--plan-color);
  padding: 10px 0 0;
}
main.plans article .flow_list_body ul p {
  font-weight: 700;
  font-size: 16px;
}
@media screen and (min-width: 751px) {
  main.plans article .flow_list_body ul {
    margin-top: 0;
    flex-direction: row;
  }
  main.plans article .flow_list_body ul h5,
  main.plans article .flow_list_body ul p {
    margin-left: 0;
  }
}
main.plans article .included {
  margin-top: var(--spacer);
}
main.plans article .included table {
  margin-top: 1em;
  text-align: center;
  width: 100%;
  border: none;
}
main.plans article .included table tr td {
  background-color: #f3ecf1;
  color: #000;
  font-weight: 500;
  padding: 10px 0;
  border: none;
  width: 33%;
}
main.plans article .options {
  margin: var(--spacer) 0;
}
@media screen and (min-width: 751px) {
  main.plans article .options {
    border: 2px solid var(--plan-color);
    padding: 2em;
    padding-bottom: 0;
  }
}
main.plans article .options h4,
main.plans article .options p {
  color: var(--plan-color);
}
main.plans article .options ul {
  margin-top: 2em;
  flex-wrap: wrap;
}
main.plans article .options ul li {
  flex-basis: 48%;
  margin-bottom: 2em;
}
main.plans article .options ul li p {
  margin-top: 5px;
  font-weight: 700;
}
@media screen and (min-width: 751px) {
  main.plans article .options ul li {
    min-width: unset;
    flex: unset;
    flex-basis: 22%;
  }
}

#standard_plan {
  --plan-color: var(--plan-2-color);
  --header-image: url("../img/standard-plan/header-img.jpg");
}

#luxury_plan {
  --plan-color: var(--plan-3-color);
  --header-image: url("../img/luxury-plan/header-img.jpg");
}

body#immediate_action .fastButtonForSp {
  display: none;
}

.immediate_action_header {
  padding: 6em var(--padding);
  text-align: center;
}
@media screen and (min-width: 751px) {
  .immediate_action_header {
    padding: 130px var(--padding);
  }
}
.immediate_action_header h2,
.immediate_action_header h4 {
  font-weight: 700;
}
.immediate_action_header h4 {
  font-size: 19px;
}
@media screen and (min-width: 320px) {
  .immediate_action_header h4 {
    font-size: calc(19px + 5 * ((100vw - 320px) / 980));
  }
}
@media screen and (min-width: 1300px) {
  .immediate_action_header h4 {
    font-size: 24px;
  }
}
.immediate_action_header h4:nth-of-type(2) {
  margin-top: 4em;
}
@media screen and (min-width: 751px) {
  .immediate_action_header h4:nth-of-type(2) {
    margin-top: 100px;
  }
}
.immediate_action_header h2 {
  padding: 1em 0;
  color: var(--text-pink);
  line-height: 1.6;
}
.immediate_action_header h2 {
  font-size: 24px;
}
@media screen and (min-width: 320px) {
  .immediate_action_header h2 {
    font-size: calc(24px + 22 * ((100vw - 320px) / 980));
  }
}
@media screen and (min-width: 1300px) {
  .immediate_action_header h2 {
    font-size: 46px;
  }
}
.immediate_action_header p {
  font-weight: 500;
}
.immediate_action_header p {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .immediate_action_header p {
    font-size: calc(16px + 3 * ((100vw - 320px) / 980));
  }
}
@media screen and (min-width: 1300px) {
  .immediate_action_header p {
    font-size: 19px;
  }
}
.immediate_action_header p:nth-of-type(2) {
  margin-top: 1em;
}
@media screen and (min-width: 751px) {
  .immediate_action_header p:nth-of-type(2) {
    margin-top: 2em;
  }
}
.immediate_action_call {
  padding-bottom: 100px;
}
@media screen and (min-width: 751px) {
  .immediate_action_call {
    padding: 0 var(--padding);
    padding-bottom: 130px;
  }
}
.immediate_action_call .inner {
  background-color: var(--primary-color);
  max-width: 900px;
  margin: 0 auto;
}
.immediate_action_call .inner a div {
  padding: 4em var(--padding);
}
.immediate_action_call .inner a div p {
  color: var(--color-white);
  line-height: 1.4;
  text-align: center;
}
.immediate_action_call .inner a div p:nth-of-type(1) strong {
  display: block;
}
.immediate_action_call .inner a div p:nth-of-type(1) {
  font-size: 21px;
}
@media screen and (min-width: 320px) {
  .immediate_action_call .inner a div p:nth-of-type(1) {
    font-size: calc(21px + 3 * ((100vw - 320px) / 980));
  }
}
@media screen and (min-width: 1300px) {
  .immediate_action_call .inner a div p:nth-of-type(1) {
    font-size: 24px;
  }
}
@media screen and (min-width: 751px) {
  .immediate_action_call .inner a div p:nth-of-type(1) {
    font-size: 32px;
  }
  .immediate_action_call .inner a div p:nth-of-type(1) strong {
    display: inline;
  }
}
.immediate_action_call .inner a div p:nth-of-type(2) {
  font-size: 31px;
}
@media screen and (min-width: 320px) {
  .immediate_action_call .inner a div p:nth-of-type(2) {
    font-size: calc(31px + 11 * ((100vw - 320px) / 980));
  }
}
@media screen and (min-width: 1300px) {
  .immediate_action_call .inner a div p:nth-of-type(2) {
    font-size: 42px;
  }
}
@media screen and (min-width: 751px) {
  .immediate_action_call .inner a div p:nth-of-type(2) {
    font-size: 54px;
  }
}
.immediate_action_call .inner a div p svg {
  width: 21px;
}
.immediate_action_call .inner a div p svg path {
  fill: var(--color-white);
}
@media screen and (min-width: 751px) {
  .immediate_action_call .inner a div p svg {
    width: 40px;
  }
}
@media screen and (min-width: 751px) {
  .immediate_action_body {
    padding: 0 var(--padding);
  }
}
.immediate_action_body h3 {
  font-family: ten-mincho, "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  padding-bottom: 3em;
}
.immediate_action_body h3 {
  font-size: 19px;
}
@media screen and (min-width: 320px) {
  .immediate_action_body h3 {
    font-size: calc(19px + 5 * ((100vw - 320px) / 980));
  }
}
@media screen and (min-width: 1300px) {
  .immediate_action_body h3 {
    font-size: 24px;
  }
}
@media screen and (min-width: 751px) {
  .immediate_action_body h3 {
    font-size: 26px;
  }
}
.immediate_action_body .inner {
  max-width: 1200px;
  padding: 4%;
  background-color: var(--bg-pink);
  padding-top: 4em;
}
.immediate_action_body .inner .flow2 {
  margin-top: 100px;
}
.immediate_action_body .inner .flow2 ul li {
  margin-bottom: 5em;
}
.immediate_action_body .inner .flow2 ul li h4 {
  font-weight: 700;
  color: var(--text-pink);
  padding: 1em 0 0.6em;
}
.immediate_action_body .inner .flow2 ul li h4 {
  font-size: 19px;
}
@media screen and (min-width: 320px) {
  .immediate_action_body .inner .flow2 ul li h4 {
    font-size: calc(19px + 5 * ((100vw - 320px) / 980));
  }
}
@media screen and (min-width: 1300px) {
  .immediate_action_body .inner .flow2 ul li h4 {
    font-size: 24px;
  }
}
.immediate_action_body .inner .flow2 ul li p {
  font-weight: 700;
}
@media screen and (min-width: 751px) {
  .immediate_action_body .inner .flow2 ul li .list_item {
    display: flex;
    flex-direction: row;
  }
  .immediate_action_body .inner .flow2 ul li .list_item .img {
    width: 50%;
    flex: 1;
  }
  .immediate_action_body .inner .flow2 ul li .list_item .txt {
    width: 50%;
    flex: 1;
    padding-left: 4%;
  }
  .immediate_action_body .inner .flow2 ul li .list_item .txt h4 {
    font-size: 24px;
  }
}
.immediate_action_footer {
  margin: 100px 0 200px;
}
@media screen and (min-width: 751px) {
  .immediate_action_footer {
    margin: 130px 0;
    padding: 0 var(--padding);
  }
}
.immediate_action_footer h3 {
  font-weight: 700;
  text-align: center;
  padding-bottom: 2em;
  color: var(--text-pink);
  line-height: 1.4;
}
.immediate_action_footer h3 {
  font-size: 19px;
}
@media screen and (min-width: 320px) {
  .immediate_action_footer h3 {
    font-size: calc(19px + 13 * ((100vw - 320px) / 980));
  }
}
@media screen and (min-width: 1300px) {
  .immediate_action_footer h3 {
    font-size: 32px;
  }
}
@media screen and (min-width: 751px) {
  .immediate_action_footer h3 {
    font-size: 32px;
  }
  .immediate_action_footer h3 br {
    display: none;
  }
}
.immediate_action_footer ul {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
  row-gap: 2em;
}
@media screen and (min-width: 751px) {
  .immediate_action_footer ul {
    flex-direction: row;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
.immediate_action_footer ul li {
  border: 2px solid var(--text-pink);
  padding: 20px;
}
.immediate_action_footer ul li h4 {
  color: var(--text-pink);
  font-weight: 700;
  padding: 10px 0 25px;
  text-align: center;
}
.immediate_action_footer ul li h4 {
  font-size: 19px;
}
@media screen and (min-width: 320px) {
  .immediate_action_footer ul li h4 {
    font-size: calc(19px + 5 * ((100vw - 320px) / 980));
  }
}
@media screen and (min-width: 1300px) {
  .immediate_action_footer ul li h4 {
    font-size: 24px;
  }
}
@media screen and (min-width: 751px) {
  .immediate_action_footer ul li h4 {
    font-size: 24px;
  }
}

#contact form .buttons,
#contact form .button {
  display: flex;
  justify-content: center;
  padding: var(--trigger-size) 0;
  gap: 1em;
}
#contact form input[type=submit],
#contact form input[type=reset] {
  padding: 16px;
  font-size: 1em;
  width: 300px;
  transition: color 0.32s cubic-bezier(0.39, 0.575, 0.565, 1), transform 0.32s cubic-bezier(0.39, 0.575, 0.565, 1);
  color: var(--color-white);
  border-radius: 10px;
  background-color: var(--primary-color);
  border: none;
  max-width: 200px;
}
#contact form input[type=submit],
#contact form input[type=reset] {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  #contact form input[type=submit],
  #contact form input[type=reset] {
    font-size: calc(16px + 2 * ((100vw - 320px) / 980));
  }
}
@media screen and (min-width: 1300px) {
  #contact form input[type=submit],
  #contact form input[type=reset] {
    font-size: 18px;
  }
}
#contact form input[type=submit]::before,
#contact form input[type=reset]::before {
  z-index: -1;
}
#contact form input[type=submit]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid var(--primary-color);
  z-index: 99;
  transition: all 0.32s cubic-bezier(0.39, 0.575, 0.565, 1);
}
@media only screen and (min-width: 768px) {
  #contact form input[type=submit]:hover {
    opacity: 0.9;
  }
}
#contact form input[type=submit] {
  background: var(--primary-color);
}
#contact form input[type=reset] {
  background-color: #797979;
}
#contact form input[type=reset]:hover {
  background-color: #b7b7b7;
}

.confirmFormWrapper {
  display: none;
  max-width: 1000px;
  margin: 4em auto 4em;
  padding: 0 var(--padding);
}
.confirmFormWrapper h2,
.confirmFormWrapper span {
  text-align: center;
  padding: 2em var(--padding);
  font-size: 32px;
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.4;
}
.confirmFormWrapper span {
  font-size: 21px;
  width: 100%;
  margin: 0 auto;
  display: block;
}
.confirmFormWrapper form {
  margin-top: 2em;
}
.confirmFormWrapper form ul {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.confirmFormWrapper form ul li {
  display: flex;
  flex-direction: row;
}
.confirmFormWrapper form ul li:nth-of-type(odd) {
  background-color: var(--color-input);
  padding: 0;
}
.confirmFormWrapper form ul li label {
  flex-basis: 50%;
  padding: 1em;
  text-align: right;
  font-weight: 700;
  color: var(--primary-color);
}
.confirmFormWrapper form ul li label {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .confirmFormWrapper form ul li label {
    font-size: calc(16px + 2 * ((100vw - 320px) / 980));
  }
}
@media screen and (min-width: 1300px) {
  .confirmFormWrapper form ul li label {
    font-size: 18px;
  }
}
.confirmFormWrapper form ul li p {
  flex-basis: 50%;
  padding: 1em;
  font-size: 16px;
  text-align: justify;
}
@media only screen and (max-width: 640px) {
  .confirmFormWrapper form ul li {
    flex-direction: column;
    margin-bottom: 1em;
  }
  .confirmFormWrapper form ul li:nth-of-type(odd) {
    background-color: transparent;
  }
  .confirmFormWrapper form ul li label {
    text-align: left;
    background-color: var(--color-input);
    padding: 0.5em;
  }
  .confirmFormWrapper form ul li p {
    padding: 0.5em;
  }
}

.formBody form {
  margin-top: 4em;
}
.formBody form .fieldGroup {
  padding: var(--padding) 0;
  border-bottom: 1px solid var(--color-border);
}
.formBody form .fieldGroup:nth-of-type(5) {
  border-bottom: none;
}
.formBody form .fieldGroup .formField {
  display: flex;
  flex-direction: row;
  margin: var(--padding) 0;
}
.formBody form .fieldGroup .formField label {
  flex: 1;
  max-width: 200px;
  font-weight: 700;
  color: var(--primary-color);
}
.formBody form .fieldGroup .formField label {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .formBody form .fieldGroup .formField label {
    font-size: calc(16px + 2 * ((100vw - 320px) / 980));
  }
}
@media screen and (min-width: 1300px) {
  .formBody form .fieldGroup .formField label {
    font-size: 18px;
  }
}
.formBody form .fieldGroup .formField label span {
  color: var(--color-red);
  border: 1px solid var(--color-red);
  padding: 2px 3px;
  border-radius: 4px;
  margin-left: 0.5em;
  font-weight: 500;
}
.formBody form .fieldGroup .formField label span {
  font-size: 14px;
}
@media screen and (min-width: 320px) {
  .formBody form .fieldGroup .formField label span {
    font-size: calc(14px + 2 * ((100vw - 320px) / 980));
  }
}
@media screen and (min-width: 1300px) {
  .formBody form .fieldGroup .formField label span {
    font-size: 16px;
  }
}
.formBody form .fieldGroup .formField input {
  flex: 1;
  background-color: var(--color-input);
  border: transparent;
  padding: var(--padding);
  font-size: 1em;
  border-radius: 4px;
}
.formBody form .fieldGroup .formField input.widthLimiter {
  max-width: min(50%, 300px);
}
.formBody form .fieldGroup .formField select {
  flex: 1;
  max-width: min(50%, 300px);
  background-color: var(--color-input);
  border: transparent;
  font-size: 1em;
  text-indent: 1em;
  height: 58px;
}
.formBody form .fieldGroup .formField textarea {
  flex: 1;
  background-color: var(--color-input);
  border: transparent;
  padding: 1em;
  font-size: 1em;
}
.formBody form .fieldGroup .formField .error-border {
  border: 1px solid red;
}
@media only screen and (max-width: 640px) {
  .formBody form .fieldGroup .formField {
    flex-direction: column;
  }
  .formBody form .fieldGroup .formField label {
    max-width: 100%;
    padding-bottom: 0.5em;
  }
  .formBody form .fieldGroup .formField select {
    padding: 1em 0;
  }
}

.confirmFormBody {
  margin: 0em auto -6em;
}
.confirmFormBody .thanksMessage {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30vh;
}

/**
 * variables
 */
/**
 * init
 */
* {
  list-style: none;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

p,
span,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
th,
td,
a {
  color: var(--color-text);
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
dt,
dd,
p {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  word-break: break-all;
}

img {
  max-width: 100%;
  vertical-align: top;
}

@media screen and (min-width: 300px) {
  img.lg {
    display: none !important;
  }
  img.sm {
    display: inline !important;
  }
  br.sm {
    display: inline !important;
  }
}
@media screen and (min-width: 751px) {
  img.sm {
    display: none !important;
  }
  img.lg {
    display: inline !important;
  }
  br.sm {
    display: none !important;
  }
}
/**
 * blocks
 */
html {
  font-size: 9px;
}
@media screen and (min-width: 751px) {
  html {
    font-size: 10px;
  }
}

body {
  margin: 0;
  padding: 0;
  color: var(--color-text);
  line-height: 3rem;
  font-size: 1.6rem;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "小塚ゴシック Pro", "Kozuka Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  font-weight: 400;
  font-style: normal;
}
body header {
  overflow-x: hidden;
}
body main {
  margin-top: 80px;
}
@media screen and (min-width: 751px) {
  body {
    font-size: 1.7rem;
    letter-spacing: 0.15rem;
  }
  body header {
    overflow-x: visible;
  }
  body main {
    margin-top: 0;
  }
}

body.navOpen header {
  overflow-x: visible;
}

/**
 * common
 */
.font-serif {
  font-family: ten-mincho, "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 400;
  font-style: normal;
}

.outer {
  margin: 0 auto;
}
@media screen and (min-width: 751px) {
  .outer {
    width: 1440px;
  }
}

.inner {
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 751px) {
  .inner {
    width: 1320px;
    padding: 0;
  }
}

ul.pagination {
  text-align: center;
  font-size: 1.4rem;
}
ul.pagination li {
  display: inline-block;
  margin: 0 4px;
}
ul.pagination li span,
ul.pagination li a {
  display: inline-block;
  border-radius: 8px;
  width: 30px;
  height: 30px;
}
ul.pagination li span {
  border: 1px solid #797979;
  background: #797979;
  color: #fff;
}
ul.pagination li a {
  border: 1px solid var(--color-text);
}

ul#flow_list_element {
  --icon-size: 100px;
  display: flex;
  flex-flow: column;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 751px) {
  ul#flow_list_element {
    --icon-size: 150px;
    flex-flow: row;
  }
}
ul#flow_list_element::after {
  content: "";
  width: 2px;
  height: calc(100% - 120px);
  margin: 0 auto;
  position: absolute;
  left: calc(var(--icon-size) / 2);
  top: calc(var(--icon-size) / 2);
  background-color: var(--color-black);
  z-index: -1;
}
@media screen and (min-width: 751px) {
  ul#flow_list_element::after {
    width: calc(100% - 120px);
    height: 2px;
    left: 50%;
    transform: translateX(-50%);
  }
}
ul#flow_list_element li {
  flex: 1;
  margin-bottom: 2em;
}
ul#flow_list_element li .list_item {
  display: flex;
  flex-flow: row;
  align-items: center;
}
@media screen and (min-width: 751px) {
  ul#flow_list_element li .list_item {
    flex-direction: column;
    justify-content: center;
  }
}
ul#flow_list_element li .list_item h4,
ul#flow_list_element li .list_item p {
  font-weight: 700;
  letter-spacing: normal;
}
ul#flow_list_element li .list_item_icon {
  border: 2px solid var(--color-black);
  border-radius: 50%;
  width: var(--icon-size);
  height: var(--icon-size);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  margin-right: 20px;
}
@media screen and (min-width: 751px) {
  ul#flow_list_element li .list_item_icon {
    margin: 0 auto;
  }
}
ul#flow_list_element li .list_item_icon picture {
  display: flex;
  align-items: center;
  justify-content: center;
}
ul#flow_list_element li .list_item_icon img {
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  width: 60%;
  min-width: 60px;
}
@media screen and (min-width: 751px) {
  ul#flow_list_element li .list_item_icon img {
    min-width: 80px;
  }
}
ul#flow_list_element li .list_item p {
  text-align: center;
  color: var(--text-pink);
  font-weight: 700;
  line-height: 1.8;
  padding: 10px 0;
}
ul#flow_list_element li .list_item p {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  ul#flow_list_element li .list_item p {
    font-size: calc(16px + 2 * ((100vw - 320px) / 980));
  }
}
@media screen and (min-width: 1300px) {
  ul#flow_list_element li .list_item p {
    font-size: 18px;
  }
}
ul#flow_list_element li .list_item p br {
  display: none;
}
@media screen and (min-width: 751px) {
  ul#flow_list_element li .list_item p br {
    display: block;
  }
}

/**
 * blocks
 */
main > h1 {
  background: #eeeeee;
  text-align: center;
  font-family: ten-mincho, "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 3rem;
  padding: 3em 0;
}
@media screen and (min-width: 751px) {
  main > h1 {
    height: 344px;
    padding-top: 140px;
  }
}
main > h1 span {
  font-size: 1.6rem;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "小塚ゴシック Pro", "Kozuka Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  margin-top: 4px;
}
main > h1 span:before, main > h1 span:after {
  content: "─";
}

ul.fixed {
  display: none;
  position: fixed;
  right: 0;
  bottom: 20%;
  z-index: 10;
}
ul.fixed li {
  box-shadow: 0px 8px 12px #777777;
}
ul.fixed li.contact {
  background: #680000;
}
ul.fixed li.message {
  background: #956f07;
}
ul.fixed li a {
  display: flex;
  width: 80px;
  height: 80px;
  flex-basis: 100%;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 751px) {
  ul.fixed li a {
    width: 120px;
    height: 120px;
  }
}
ul.fixed li a img {
  width: 50px;
}
@media screen and (min-width: 751px) {
  ul.fixed li a img {
    width: auto;
  }
}

.fadein {
  transition: 2s;
  opacity: 0;
}
.fadein.animated {
  opacity: 1;
}

.image,
.img {
  box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.2);
}

.slick-slider .slick-dots {
  bottom: -40px;
}
.slick-slider .slick-dots * {
  cursor: default;
}
.slick-slider .slick-dots button::before {
  transition: var(--transition);
  transform-origin: center center;
}
.slick-slider .slick-dots button:hover::before {
  opacity: 0.2;
}
.slick-slider .slick-dots button:focus::before {
  opacity: 0.2;
}
.slick-slider .slick-dots .slick-active button::before {
  opacity: 1;
  font-size: 10px;
  color: var(--primary-color);
  filter: drop-shadow(0 0 1px var(--primary-color));
}

.about-slide {
  padding-top: 20px;
  box-shadow: unset;
}
.about-slide .slick-track {
  display: flex;
  flex-direction: row;
}
.about-slide .slick-track .slick-slide {
  padding: 0 10px;
}
@media screen and (min-width: 751px) {
  .about-slide {
    padding-top: calc(var(--padding) * 2);
  }
  .about-slide .slick-track .slick-slide {
    padding: 0 calc(var(--padding) * 1);
  }
}

/**
 * pages
 */
#index .image,
#index .img {
  box-shadow: unset;
}
#index .visual {
  background-image: url("../img/top/header-bg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: max(320px, 70vmin);
}
@media screen and (min-width: 751px) {
  #index .visual {
    height: max(480px, 40vw);
  }
}
#index .inner {
  margin-top: 180px;
}
#index .inner .title {
  text-align: center;
  font-family: ten-mincho, "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 60px;
}
#index .inner .title {
  font-size: 26px;
}
@media screen and (min-width: 320px) {
  #index .inner .title {
    font-size: calc(26px + 5 * ((100vw - 320px) / 980));
  }
}
@media screen and (min-width: 1300px) {
  #index .inner .title {
    font-size: 31px;
  }
}
@media screen and (min-width: 751px) {
  #index .inner .title {
    font-size: 2.9rem;
  }
}
#index .inner .button {
  text-align: center;
}
#index .inner .button a {
  background: #797979;
  display: inline-block;
  border-radius: 12px;
  color: #fff;
  padding: 12px 40px;
  font-size: 1.4rem;
}
#index .inner .intro {
  margin-bottom: 136px;
}
@media screen and (min-width: 751px) {
  #index .inner .intro {
    margin-bottom: 272px;
  }
}
#index .inner .intro .title {
  margin-bottom: 32px;
}
@media screen and (min-width: 751px) {
  #index .inner .intro .title {
    margin-bottom: 60px;
  }
}
#index .inner .intro_image {
  /*display: flex;*/
  margin-bottom: 112px;
  max-width: 1080px;
  margin: 0 auto 132px;
}
#index .inner .intro_image div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 751px) {
  #index .inner .intro_image div {
    height: 600px;
  }
}
#index .inner .intro p.lead {
  text-align: center;
  line-height: 4.3rem;
  font-family: ten-mincho, "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 48px;
}
#index .inner .intro p.lead {
  font-size: 21px;
}
@media screen and (min-width: 320px) {
  #index .inner .intro p.lead {
    font-size: calc(21px + 5 * ((100vw - 320px) / 980));
  }
}
@media screen and (min-width: 1300px) {
  #index .inner .intro p.lead {
    font-size: 26px;
  }
}
@media screen and (min-width: 751px) {
  #index .inner .intro p.lead {
    margin-bottom: 60px;
    font-size: 2.4rem;
    font-weight: 400;
  }
}
#index .inner .intro p.text {
  margin: 0 auto 60px;
  line-height: 1.8;
  padding: 10px 0;
  font-weight: 500;
}
#index .inner .intro p.text {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  #index .inner .intro p.text {
    font-size: calc(16px + 2 * ((100vw - 320px) / 980));
  }
}
@media screen and (min-width: 1300px) {
  #index .inner .intro p.text {
    font-size: 18px;
  }
}
@media screen and (min-width: 751px) {
  #index .inner .intro p.text {
    margin: 0 auto 88px;
    width: 530px;
  }
}
#index .inner .points {
  margin-bottom: 180px;
}
@media screen and (min-width: 751px) {
  #index .inner .points {
    padding: 0 4%;
  }
}
#index .inner .points .title {
  margin-bottom: 40px;
}
@media screen and (min-width: 751px) {
  #index .inner .points .title {
    margin-bottom: 60px;
  }
}
#index .inner .points ul {
  display: flex;
  flex-flow: row wrap;
  --gap: 20px;
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
}
@media screen and (min-width: 751px) {
  #index .inner .points ul {
    --gap: 100px;
  }
}
#index .inner .points ul li {
  margin-bottom: 4em;
  flex-basis: 100%;
}
@media screen and (min-width: 751px) {
  #index .inner .points ul li {
    margin-bottom: 2em;
    flex-basis: calc((100% - var(--gap)) / 2);
  }
}
#index .inner .points ul li .list_item h4,
#index .inner .points ul li .list_item p {
  letter-spacing: normal;
}
#index .inner .points ul li .list_item h4 {
  font-weight: 700;
  line-height: 1.5;
  color: var(--text-pink);
  padding: 15px 0 10px;
}
#index .inner .points ul li .list_item h4 {
  font-size: 17px;
}
@media screen and (min-width: 320px) {
  #index .inner .points ul li .list_item h4 {
    font-size: calc(17px + 2 * ((100vw - 320px) / 980));
  }
}
@media screen and (min-width: 1300px) {
  #index .inner .points ul li .list_item h4 {
    font-size: 19px;
  }
}
#index .inner .points ul li .list_item p {
  line-height: 1.8;
}
#index .inner .points ul li .list_item p {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  #index .inner .points ul li .list_item p {
    font-size: calc(16px + 2 * ((100vw - 320px) / 980));
  }
}
@media screen and (min-width: 1300px) {
  #index .inner .points ul li .list_item p {
    font-size: 18px;
  }
}
#index .inner .plans {
  margin-bottom: 180px;
}
@media screen and (min-width: 751px) {
  #index .inner .plans {
    padding: 0 4%;
  }
}
#index .inner .plans .title {
  margin-bottom: 40px;
}
@media screen and (min-width: 751px) {
  #index .inner .plans .title {
    margin-bottom: 60px;
  }
}
#index .inner .plans ul {
  display: flex;
  flex-flow: row wrap;
  --gap: 20px;
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
}
#index .inner .plans ul li {
  flex-basis: 100%;
  margin-bottom: 2em;
  border: 2px solid var(--color-black);
  padding: 25px;
  border-radius: 20px;
}
@media screen and (min-width: 751px) {
  #index .inner .plans ul li {
    flex-basis: calc((100% - var(--gap) * 2) / 3);
  }
}
#index .inner .plans ul li .list_item h4,
#index .inner .plans ul li .list_item p {
  letter-spacing: normal;
}
#index .inner .plans ul li .list_item_title h4 {
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  color: var(--color-white);
  padding: 20px 0;
}
#index .inner .plans ul li .list_item_title h4 {
  font-size: 19px;
}
@media screen and (min-width: 320px) {
  #index .inner .plans ul li .list_item_title h4 {
    font-size: calc(19px + 2 * ((100vw - 320px) / 980));
  }
}
@media screen and (min-width: 1300px) {
  #index .inner .plans ul li .list_item_title h4 {
    font-size: 21px;
  }
}
#index .inner .plans ul li .list_item p {
  line-height: 1.8;
  padding: 10px 0;
}
#index .inner .plans ul li .list_item p {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  #index .inner .plans ul li .list_item p {
    font-size: calc(16px + 2 * ((100vw - 320px) / 980));
  }
}
@media screen and (min-width: 1300px) {
  #index .inner .plans ul li .list_item p {
    font-size: 18px;
  }
}
#index .inner .plans ul li .list_item_price p {
  font-weight: 700;
  line-height: 1;
}
#index .inner .plans ul li .list_item_price p:first-child {
  padding-top: 20px;
  padding-bottom: 0;
}
#index .inner .plans ul li .list_item_price p:first-child {
  font-size: 21px;
}
@media screen and (min-width: 320px) {
  #index .inner .plans ul li .list_item_price p:first-child {
    font-size: calc(21px + 24 * ((100vw - 320px) / 980));
  }
}
@media screen and (min-width: 1300px) {
  #index .inner .plans ul li .list_item_price p:first-child {
    font-size: 45px;
  }
}
#index .inner .plans ul li .list_item_price p:first-child span {
  font-size: 19px;
}
@media screen and (min-width: 320px) {
  #index .inner .plans ul li .list_item_price p:first-child span {
    font-size: calc(19px + 13 * ((100vw - 320px) / 980));
  }
}
@media screen and (min-width: 1300px) {
  #index .inner .plans ul li .list_item_price p:first-child span {
    font-size: 32px;
  }
}
#index .inner .plans ul li .list_item_price p:last-child {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  #index .inner .plans ul li .list_item_price p:last-child {
    font-size: calc(18px + 10 * ((100vw - 320px) / 980));
  }
}
@media screen and (min-width: 1300px) {
  #index .inner .plans ul li .list_item_price p:last-child {
    font-size: 28px;
  }
}
#index .inner .plans ul li .list_item_price p:last-child span {
  font-size: 15px;
}
@media screen and (min-width: 320px) {
  #index .inner .plans ul li .list_item_price p:last-child span {
    font-size: calc(15px + 6 * ((100vw - 320px) / 980));
  }
}
@media screen and (min-width: 1300px) {
  #index .inner .plans ul li .list_item_price p:last-child span {
    font-size: 21px;
  }
}
#index .inner .plans ul li:nth-of-type(1) .list_item_title {
  background-color: var(--plan-1-color);
}
#index .inner .plans ul li:nth-of-type(1) .list_item_price p:first-child {
  color: var(--plan-1-color);
}
#index .inner .plans ul li:nth-of-type(2) .list_item_title {
  background-color: var(--plan-2-color);
}
#index .inner .plans ul li:nth-of-type(2) .list_item_price p:first-child {
  color: var(--plan-2-color);
}
#index .inner .plans ul li:nth-of-type(3) .list_item_title {
  background-color: var(--plan-3-color);
}
#index .inner .plans ul li:nth-of-type(3) .list_item_price p:first-child {
  color: var(--plan-3-color);
}
#index .inner .flow {
  margin-bottom: 180px;
}
@media screen and (min-width: 751px) {
  #index .inner .flow {
    padding: 0 4%;
  }
}
#index .inner .flow .title {
  margin-bottom: 40px;
}
@media screen and (min-width: 751px) {
  #index .inner .flow .title {
    margin-bottom: 60px;
  }
}
#index .inner .about {
  margin-bottom: 200px;
}
#index .inner .about p {
  line-height: 1.8;
}
#index .inner .about p {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  #index .inner .about p {
    font-size: calc(16px + 2 * ((100vw - 320px) / 980));
  }
}
@media screen and (min-width: 1300px) {
  #index .inner .about p {
    font-size: 18px;
  }
}
#index .inner .about .title {
  margin-bottom: 40px;
}
@media screen and (min-width: 751px) {
  #index .inner .about .title {
    margin-bottom: 60px;
  }
}
#index .inner .about div.image {
  margin-bottom: 80px;
}
@media screen and (min-width: 751px) {
  #index .inner .about div.image {
    width: calc(100vw - 16px);
    margin: 0 calc(50% - 50vw) 120px;
  }
}
#index .inner .about p.lead {
  text-align: center;
  line-height: 4.3rem;
  font-family: ten-mincho, "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 40px;
}
#index .inner .about p.lead {
  font-size: 21px;
}
@media screen and (min-width: 320px) {
  #index .inner .about p.lead {
    font-size: calc(21px + 5 * ((100vw - 320px) / 980));
  }
}
@media screen and (min-width: 1300px) {
  #index .inner .about p.lead {
    font-size: 26px;
  }
}
@media screen and (min-width: 751px) {
  #index .inner .about p.lead {
    margin-bottom: 60px;
    font-size: 2.4rem;
    font-weight: 400;
  }
}
#index .inner .about p.text {
  margin: 0 auto 60px;
}
@media screen and (min-width: 751px) {
  #index .inner .about p.text {
    margin: 0 auto 40px;
    width: 512px;
  }
}
#index .inner .about section.spot p.image {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (min-width: 751px) {
  #index .inner .about section.spot p.image {
    margin-bottom: 60px;
  }
}
#index .inner .about section.spot h3 {
  text-align: center;
  font-size: 2.4rem;
  line-height: 4.3rem;
  font-family: ten-mincho, "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 40px;
}
@media screen and (min-width: 751px) {
  #index .inner .about section.spot h3 {
    margin-bottom: 40px;
  }
}

#about {
  background-position: left 700px;
}
#about:before {
  margin-top: 700px;
}
#about .about-header-slide .slick-track .slick-slide img {
  height: 60vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 751px) {
  #about .about-header-slide .slick-track .slick-slide {
    width: 1320px !important;
    margin: 0;
  }
  #about .about-header-slide .slick-track .slick-slide img {
    height: auto;
  }
}
#about div.spot {
  margin-top: 100px;
}
#about div.spot > section {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
@media screen and (min-width: 751px) {
  #about div.spot > section {
    padding: 0 40px;
    flex-wrap: nowrap;
  }
}
#about div.spot > section p.image {
  margin-bottom: 44px;
  border-radius: 50%;
}
@media screen and (min-width: 751px) {
  #about div.spot > section p.image {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 751px) {
  #about div.spot > section > div {
    margin-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
#about div.spot > section > div h2 {
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text-pink);
}
#about div.spot > section > div h2 {
  font-size: 19px;
}
@media screen and (min-width: 320px) {
  #about div.spot > section > div h2 {
    font-size: calc(19px + 2 * ((100vw - 320px) / 980));
  }
}
@media screen and (min-width: 1300px) {
  #about div.spot > section > div h2 {
    font-size: 21px;
  }
}
@media screen and (min-width: 751px) {
  #about div.spot > section > div h2 {
    font-size: 1.5em;
  }
}
#about div.spot > section > div p {
  font-size: 1em;
  font-weight: 700;
  line-height: 3.4rem;
}
@media screen and (min-width: 751px) {
  #about div.spot > section:nth-of-type(1) p.image, #about div.spot > section:nth-of-type(2) p.image {
    flex-basis: 457px;
  }
}
@media screen and (min-width: 751px) {
  #about div.spot > section:nth-of-type(1) p.image img, #about div.spot > section:nth-of-type(2) p.image img {
    max-width: none;
  }
}
@media screen and (min-width: 751px) {
  #about div.spot > section:nth-of-type(1) {
    margin-bottom: -60px;
  }
}
#about div.spot > section:nth-of-type(2) {
  justify-content: flex-end;
}
@media screen and (min-width: 751px) {
  #about div.spot > section:nth-of-type(2) {
    margin-bottom: -60px;
  }
  #about div.spot > section:nth-of-type(2) p.image {
    order: 2;
  }
  #about div.spot > section:nth-of-type(2) > div {
    order: 1;
    margin: 0 40px 0 64px;
  }
}
@media screen and (min-width: 751px) {
  #about div.spot > section:nth-of-type(3) {
    padding-left: 0;
    margin-bottom: -48px;
  }
  #about div.spot > section:nth-of-type(3) > div {
    margin-left: 24px;
    flex-basis: 440px;
  }
}
#about div.spot > section:nth-of-type(4) {
  justify-content: flex-end;
}
@media screen and (min-width: 751px) {
  #about div.spot > section:nth-of-type(4) {
    padding-right: 0;
    margin-bottom: -48px;
  }
  #about div.spot > section:nth-of-type(4) p.image {
    order: 2;
  }
  #about div.spot > section:nth-of-type(4) > div {
    order: 1;
    flex-basis: 452px;
    margin-right: 16px;
  }
}
@media screen and (min-width: 751px) {
  #about div.spot > section:nth-of-type(5) {
    padding-left: 0;
    margin-bottom: 216px;
  }
  #about div.spot > section:nth-of-type(5) > div {
    margin-left: 24px;
    flex-basis: 470px;
  }
}
#about .access {
  position: relative;
}
@media screen and (min-width: 751px) {
  #about .access {
    padding: 0 var(--padding);
    margin-bottom: 188px;
  }
}
#about .access p {
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.8;
}
#about .access_header {
  margin-bottom: 2em;
}
#about .access_header h3 {
  font-size: 2rem;
  font-weight: 700;
}
#about .access_header h2 {
  color: var(--text-pink);
  font-size: 3rem;
  padding: 10px 0;
  font-weight: 700;
  margin-bottom: 1em;
}
#about .access_body {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 751px) {
  #about .access_body {
    flex-direction: row;
    justify-content: space-between;
    -moz-column-gap: 4%;
         column-gap: 4%;
    align-items: center;
  }
}
@media screen and (min-width: 751px) {
  #about .access_body_left {
    min-width: 462px;
  }
}
#about .access_body_left div {
  margin-bottom: 2em;
}
#about .access_body_left div:first-child {
  margin-top: 2em;
}
#about .access_body_right iframe {
  width: 100%;
  height: 400px;
  border: none;
}
@media screen and (min-width: 751px) {
  #about .access_body_right iframe {
    margin-top: 2em;
    width: 800px;
    height: 550px;
  }
}

#trailer_house h1 {
  margin-bottom: 112px;
}
@media screen and (min-width: 751px) {
  #trailer_house h1 {
    min-width: var(--width-inner);
  }
}
#trailer_house ul {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 128px;
}
@media screen and (min-width: 751px) {
  #trailer_house ul {
    margin-bottom: 80px;
    padding: var(--padding);
  }
}
#trailer_house ul li {
  flex-basis: 100%;
  margin-bottom: 60px;
}
#trailer_house ul li .list_item > .img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#trailer_house ul li .list_item > .txt h4 {
  color: var(--text-pink);
  padding: 10px 0;
  font-weight: 700;
}
#trailer_house ul li .list_item > .txt h4 {
  font-size: 19px;
}
@media screen and (min-width: 320px) {
  #trailer_house ul li .list_item > .txt h4 {
    font-size: calc(19px + 7 * ((100vw - 320px) / 980));
  }
}
@media screen and (min-width: 1300px) {
  #trailer_house ul li .list_item > .txt h4 {
    font-size: 26px;
  }
}
#trailer_house ul li .list_item > .txt p {
  margin-top: 10px;
  font-weight: 700;
  letter-spacing: normal;
}
#trailer_house ul li .list_item > .txt p {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  #trailer_house ul li .list_item > .txt p {
    font-size: calc(16px + 3 * ((100vw - 320px) / 980));
  }
}
@media screen and (min-width: 1300px) {
  #trailer_house ul li .list_item > .txt p {
    font-size: 19px;
  }
}
#trailer_house ul li .list_item > .txt p br {
  display: none;
}
@media screen and (min-width: 751px) {
  #trailer_house ul li .list_item {
    display: flex;
    flex-direction: row;
  }
  #trailer_house ul li .list_item > .img {
    flex-basis: 46%;
  }
  #trailer_house ul li .list_item > .txt {
    flex: 1;
    padding-left: 4%;
  }
}
@media screen and (min-width: 751px) {
  #trailer_house ul li {
    margin-bottom: 120px;
  }
  #trailer_house ul li:nth-of-type(even) .list_item {
    flex-direction: row-reverse;
  }
  #trailer_house ul li:nth-of-type(even) .list_item > .txt {
    padding-left: 0;
    padding-right: 4%;
  }
}

#contact {
  padding-bottom: 60px;
}
@media screen and (min-width: 751px) {
  #contact {
    padding-bottom: 100px;
  }
}
#contact h1 {
  margin-bottom: 60px;
}
@media screen and (min-width: 751px) {
  #contact h1 {
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 751px) {
  #contact form > div {
    padding: 0 124px;
  }
}
#contact form > div section.form dl {
  display: flex;
  flex-wrap: wrap;
  letter-spacing: 0;
}
#contact form > div section.form dl dt {
  flex-basis: 100%;
  position: relative;
  line-height: 40px;
}
@media screen and (min-width: 751px) {
  #contact form > div section.form dl dt {
    flex-basis: 256px;
    margin-bottom: 24px;
  }
}
#contact form > div section.form dl dt span {
  display: inline-block;
  background: var(--color-red);
  color: #fff;
  font-size: 1.4rem;
  border-radius: 12px;
  padding: 2px 6px;
  line-height: 1.8rem;
  margin-left: 10px;
}
#contact form > div section.form dl dd {
  flex-basis: 100%;
  margin-bottom: 12px;
}
@media screen and (min-width: 751px) {
  #contact form > div section.form dl dd {
    flex-basis: calc(100% - 256px);
    margin-bottom: 24px;
  }
}
#contact form > div section.form dl dd label {
  display: block;
}
#contact form > div section.form dl dd input[type=text],
#contact form > div section.form dl dd input[type=email],
#contact form > div section.form dl dd textarea,
#contact form > div section.form dl dd select {
border: 1px solid rgba(0, 0, 0, 0.5);
  font-size: 1.7rem;
  padding: 8px 16px;
  margin-bottom: 8px;
  margin-right: 12px;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "小塚ゴシック Pro", "Kozuka Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  font-weight: 400;
  font-style: normal;
}
#contact form > div section.form dl dd input[type=text].small,
#contact form > div section.form dl dd input[type=email].small,
#contact form > div section.form dl dd textarea.small,
#contact form > div section.form dl dd select.small {
  width: 40%;
}
@media screen and (min-width: 751px) {
  #contact form > div section.form dl dd input[type=text].small,
  #contact form > div section.form dl dd input[type=email].small,
  #contact form > div section.form dl dd textarea.small,
  #contact form > div section.form dl dd select.small {
    width: 180px;
  }
}
#contact form > div section.form dl dd input[type=text].middle,
#contact form > div section.form dl dd input[type=email].middle,
#contact form > div section.form dl dd textarea.middle,
#contact form > div section.form dl dd select.middle {
  width: 60%;
}
@media screen and (min-width: 751px) {
  #contact form > div section.form dl dd input[type=text].middle,
  #contact form > div section.form dl dd input[type=email].middle,
  #contact form > div section.form dl dd textarea.middle,
  #contact form > div section.form dl dd select.middle {
    width: 468px;
  }
}
#contact form > div section.form dl dd input[type=text].large,
#contact form > div section.form dl dd input[type=email].large,
#contact form > div section.form dl dd textarea.large,
#contact form > div section.form dl dd select.large {
  width: 96%;
}
@media screen and (min-width: 751px) {
  #contact form > div section.form dl dd input[type=text].large,
  #contact form > div section.form dl dd input[type=email].large,
  #contact form > div section.form dl dd textarea.large,
  #contact form > div section.form dl dd select.large {
    width: 544px;
  }
}
#contact form > div section.form dl dd span.error {
  color: #ff0000;
  font-weight: bold;
  display: inline-block;
}
#contact form > div section.form dl dd span.mwform-zip-field input:last-child {
  margin-right: 0;
  margin-left: 12px;
}
#contact form > div > section.privacy {
  border: 1px solid var(--color-text);
  border-radius: 12px;
  padding: 48px 20px 24px;
}
@media screen and (min-width: 751px) {
  #contact form > div > section.privacy {
    padding: 48px 16px 24px 48px;
  }
}
#contact form > div > section.privacy h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 60px;
}
@media screen and (min-width: 751px) {
  #contact form > div > section.privacy h2 {
    margin-bottom: 88px;
  }
}
#contact form > div > section.privacy dl {
  font-size: 1.8rem;
  letter-spacing: 0.02rem;
}
@media screen and (min-width: 751px) {
  #contact form > div > section.privacy dl {
    height: 36rem;
    overflow-y: scroll;
  }
}
#contact form > div > section.privacy dl dt {
  margin-bottom: 36px;
  font-weight: 500;
}
#contact form > div > section.privacy dl dd {
  margin-bottom: 64px;
}
@media screen and (min-width: 751px) {
  #contact form > div > section.privacy dl dd {
    padding-right: 32px;
  }
}