@charset "UTF-8";
/* =============================================
   BASE
============================================= */
* {
  box-sizing: border-box;
}

html {
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  scroll-behavior: smooth;
}

body {
  color: #353535;
  font-family: "Noto Sans JP", sans-serif !important;
  margin: 0;
  padding-top: 80px;
  line-height: 2;
}

#restaurant {
  --default-color: #353535;
  --black-color: #000000;
  --white-color: #ffffff;
  --dark-blue-color: #1f4e94;
  --blue-color: #3d76cc;
  --light-blue-color: #8192b8;
  --magenta-color: #cf0083;
  --syan-color: #cce5ff;
  --light-syan-color: #eef4ff;
  --light-gray-color: #eceff2;
  --gray-color: #808080;
  --form-underline-color: #dddbdb;
  --form-red-color: #d7101b;
  --form-bg-color: #eef3fa;
}

img,
picture {
  max-width: none;
}

a {
  text-decoration: none;
  transition: 0.5s;
}

a:hover {
  opacity: 0.7;
  transition: 0.5s;
}

.anchor {
  padding-top: 80px;
  margin-top: -80px;
}

h2 {
  font-size: clamp(24px, calc(36 / 1440 * 100vw), 36px);
  letter-spacing: 0.25rem;
  font-weight: 600;
  margin: 0;
  margin-bottom: 0.5rem;
  color: var(--dark-blue-color);
}

/* 下線付き見出し */
h2.underline {
  font-size: min(calc(32 / 1440 * 100vw), 32px);
  letter-spacing: normal;
  position: relative;
  display: block;
  margin-bottom: min(calc(70 / 1440 * 100vw), 70px);
  line-height: 1.4;
  text-align: center;
}
h2.underline span {
  font-size: min(calc(24 / 1440 * 100vw), 24px);
  display: block;
  color: var(--default-color);
}

h2.underline::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: min(calc(-20 / 1440 * 100vw), -20px);
  display: block;
  width: min(calc(50 / 1440 * 100vw), 50px);
  height: 4px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: var(--dark-blue-color);
  border-radius: 2px;
}
@media screen and (max-width: 768px) {
  h2.underline {
    font-size: calc(24 / 430 * 100vw);
    margin-bottom: calc(70 / 430 * 100vw);
  }

  h2.underline span {
    font-size: min(calc(24 / 430 * 100vw), 24px);
  }

  h2.underline::before {
    bottom: calc(-20 / 430 * 100vw);
    display: inline-block;
    width: calc(50 / 430 * 100vw);
  }
}
/* 下線付き見出しここまで */

h3 {
  font-size: min(calc(32 / 1440 * 100vw), 32px);
  color: var(--dark-blue-color);
}

h4 {
  font-size: clamp(18px, calc(24 / 1440 * 100vw), 24px);
}

p {
  font-size: min(calc(18 / 1440 * 100vw), 18px);
  margin-top: 0;
  margin-bottom: 0;
}
.notes {
  font-size: min(calc(18 / 1440 * 100vw), 18px);
}
@media screen and (max-width: 768px) {
  .notes {
    font-size: min(calc(16 / 430 * 100vw), 16px);
  }
}

.notice_text {
  font-size: clamp(14px, 1.17vw, 16px);
}

@media screen and (max-width: 768px) {
  p {
    line-height: 1.6;
    font-size: min(calc(16 / 430 * 100vw), 16px);
  }
}

section {
  max-width: none;
  width: 100%;
}
.section__inner {
  max-width: 1240px;
  margin: 0 auto 7rem;
  padding: min(calc(115 / 1440 * 100vw), 115px) 0 0 0;
}
.section__inner--narrow {
  max-width: 1000px;
  margin: 0 auto 7rem;
  padding: min(calc(115 / 1440 * 100vw), 115px) 0 0 0;
}

.section__inner--wide {
  max-width: 1440px;
  margin: 0 auto 7rem;
  padding: min(calc(115 / 1440 * 100vw), 115px) 0 0 0;
}

.section__inner.full_width {
  max-width: none;
  width: 100%;
}

@media screen and (max-width: 768px) {
  h3 {
    font-size: calc(24 / 430 * 100vw);
  }
  section {
    max-width: none;
    width: 100%;
    padding: 0;
  }
  .section__inner,
  .section__inner--narrow,
  .section__inner--wide {
    max-width: none;
    width: calc(358 / 430 * 100vw);
    padding: 0;
    margin: 0 auto 3rem;
  }
  .section__inner--wide {
    max-width: none;
    width: 100%;
    padding: 0;
    margin: 0 auto 3rem;
  }
}

/* =============================================
   調整
============================================= */
.disp-pc {
  display: block;
}
.disp-sp {
  display: none;
}

@media screen and (width <= 767px) {
  .disp-pc {
    display: none;
  }
  .disp-sp {
    display: block;
  }
}

.mb1r {
  margin-bottom: 1rem !important;
}
.mb4r {
  margin-bottom: 4rem !important;
}
.mt0 {
  margin-top: 0 !important;
}
.mb0 {
  margin-bottom: 0 !important;
}
.pt0 {
  padding-top: 0 !important;
}

.text__bold {
  font-weight: bold !important;
}

/* =============================================
   header
============================================= */

header {
  display: flex;
  position: fixed;
  top: 0;
  width: 100%;
  margin: 0;
  height: 80px;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.5);
}

header h1 {
  margin: 0;
  display: inline-block;
  font-size: 0;
}

header h1 img {
  height: 44px;
}

header .header__inner {
  display: flex;
  max-width: 1240px;
  width: 100%;
  height: 80px;
  justify-content: space-between;
  align-items: center;
}
.header__inner--inquiry {
  background-color: var(--dark-blue-color);
  color: var(--white-color);
  font-size: calc(14 / 1440 * 100vw);
  display: flex;
  align-items: center;
  height: 80px;
  padding: 0 28px;
}
.header__inner--inquiry img {
  height: 32px;
  margin-right: 14px;
}

@media screen and (max-width: 768px) {
  header .header__inner {
    width: 100%;
    padding-left: calc(26 / 430 * 100vw);
  }
  .header__inner--inquiry {
    font-size: calc(12 / 430 * 100vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: calc(10 / 430 * 100vw) calc(20 / 430 * 100vw);
  }
  .header__inner--inquiry img {
    margin: 0 0 calc(5 / 430 * 100vw) 0;
  }
}

/* =============================================
   ボタン
============================================= */

a.inquiry__button {
  display: flex;
  justify-content: center;
  border-radius: 100px;
  width: min(calc(376 / 1440 * 100vw), 376px);
  font-size: min(calc(22 / 1440 * 100vw), 22px);
  font-weight: bold;
  text-align: center;
  padding: min(calc(22 / 1440 * 100vw), 22px) 0;
  text-decoration: none;
  background: var(--dark-blue-color);
  color: var(--white-color);
  border: 3px solid var(--dark-blue-color);
  transition: 0.5s all ease-in-out;
  letter-spacing: 0.05em;
}

.inquiry__button:hover {
  background: var(--white-color);
  color: var(--dark-blue-color);
  transition-delay: 0s;
}

/* .inquiry__button.hover {
} */

.inquiry__button img {
  height: min(calc(43 / 1440 * 100vw), 43px);
  margin-right: min(calc(27 / 1440 * 100vw), 27px);
}

.inquiry__button img {
  opacity: 1;
}

.inquiry__button:hover img {
  opacity: 0;
}

.inquiry__button span {
  position: relative;
}

.inquiry__button span::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: url("../images/icon_inquiry-hover.webp") no-repeat left center;
  background-size: contain;
  display: block;
  transition: 0.5s all ease-in-out;
}

.inquiry__button:hover span::after {
  opacity: 1;
}

.btn__area {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: min(calc(50 / 1440 * 100vw), 50px) 0;
}

@media screen and (max-width: 768px) {
  a.inquiry__button {
    width: calc(340 / 430 * 100vw);
    font-size: calc(20 / 430 * 100vw);
    padding: calc(17 / 430 * 100vw) 0;
  }
  .inquiry__button img {
    height: calc(40 / 430 * 100vw);
    margin-right: calc(24 / 430 * 100vw);
  }

  .btn__area {
    width: 100%;
    padding: calc(50 / 430 * 100vw) 0;
  }
}

/* =============================================
   mv
============================================= */
.mv__area {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: min(calc(672 / 1440 * 100vw), 672px);
  color: var(--white-color);
  background-image: url(../images/bg_mv_pc.webp);
  background-size: cover;
}

.mv__area p {
  font-size: min(calc(20 / 1440 * 100vw), 20px);
  text-align: center;
  font-weight: bold;
  margin-bottom: 0;
}

.mv__area--inner {
  display: flex;
  flex-direction: column;
  margin-bottom: min(calc(30 / 1440 * 100vw), 30px);
}

.mv__area--head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  align-items: center;
}

.mv__area--head h2 span {
  font-feature-settings: "palt";
  display: block;
  color: var(--dark-blue-color);
  background-color: var(--white-color);
  white-space: nowrap;
  padding: 0 30px;
  margin: auto;
  border-radius: 0px 0px 25px 0px;
  margin-bottom: min(calc(10 / 1440 * 100vw), 10px);
}

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

.mv__area--img img {
  width: min(calc(400 / 1440 * 100vw), 400px);
}
.mv__area--btn {
  display: flex;
  justify-content: center;
  padding: min(calc(60 / 1440 * 100vw), 60px) 0;
}

@media screen and (max-width: 768px) {
  .mv__area {
    height: calc(982 / 430 * 100vw);
    padding-top: calc(158 / 430 * 100vw);
    background-image: url(../images/bg_mv_sp.webp);
    background-size: cover;
    margin-bottom: 0;
  }

  .mv__area--btn {
    display: flex;
    justify-content: center;
    padding: calc(60 / 430 * 100vw) 0;
  }

  .mv__area p {
    text-align: left;
    width: 90%;
    font-size: calc(20 / 430 * 100vw);
    font-weight: 500;
    line-height: 2;
  }

  .mv__area--inner {
    flex-direction: column;
  }

  .mv__area--img img {
    width: calc(286 / 430 * 100vw);
    height: auto;
    margin: calc(20 / 430 * 100vw) 0;
  }

  .mv__area--head h2 span {
    color: var(--dark-blue-color);
    background-color: var(--white-color);
    font-size: calc(33 / 430 * 100vw);
    white-space: nowrap;
    border-radius: 0px 0px calc(22 / 375 * 100vw) 0px;
    margin: 0;
    margin-bottom: calc(8 / 430 * 100vw);
  }
}

/* =============================================
   困りごと〜変化を起こせます　まで
============================================= */

#change_1 {
  background-color: #eceff2;
}

#change_1 .section__inner {
  padding-bottom: 7rem;
  margin-bottom: 0;
}

.change__area {
  padding: min(calc(50 / 1440 * 100vw), 50px) 0 0 0;
  margin: 0;
}

.change__area p {
  font-size: min(calc(18 / 1440 * 100vw), 18px);
  text-align: center;
  line-height: 1.6;
  color: var(--dark-blue-color);
  margin-bottom: min(calc(10 / 1440 * 100vw), 10px);
}

.change__area--change p {
  color: var(--white-color);
}

.change__area h3 {
  margin-bottom: min(calc(40 / 1440 * 100vw), 40px);
  line-height: 1.4;
}

.change__area--problem {
  background-color: var(--white-color);
  /*background-image: url(../images/bg_problem_pc.png);*/
  background-size: cover;
  border-radius: 30px 30px 0px 0px;
}
.change__area--problem h3 {
  text-align: center;
  width: 100%;
  color: var(--dark-blue-color);
  margin-bottom: min(calc(30 / 1440 * 100vw), 30px);
}

.change__area--change {
  background-color: var(--blue-color);
  /*background-image: url(../images/bg_change_pc.png);*/
  background-size: cover;
  border-radius: 0px 0px 30px 30px;
}

.change__area--change h3 {
  text-align: center;
  width: 100%;
  color: var(--white-color);
  margin-bottom: calc(25 / 430 * 100vw);
}

.change__area--inner {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: stretch;
}

.change__area--inner--item {
  position: relative;
  width: calc(1240px / 3);
  border-right: solid 1px #fff;
  background-image: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: min(calc(40 / 1440 * 100vw), 40px);
}

.change__area--problem .change__area--inner--item {
  border-right: solid 1px var(--dark-blue-color);
}
.change__area--problem .change__area--inner--item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: min(calc(48 / 1440 * 100vw), 48px)
    min(calc(48 / 1440 * 100vw), 48px) 0 min(calc(48 / 1440 * 100vw), 48px);
  border-color: var(--white-color) transparent transparent;
  translate: -50% 100%;
}
.change__area--inner--item:last-child {
  border-right: none;
}

.change__area img {
  width: min(calc(180 / 1440 * 100vw), 180px);
  margin-bottom: min(calc(40 / 1440 * 100vw), 40px);
}

.change__area--problem .change__area--inner--item img,
.change__area--change .change__area--inner--item img {
  filter: drop-shadow(8px 8px 8px rgba(0, 104, 182, 0.2));
}

@media screen and (max-width: 768px) {
  #change_1 {
    border-radius: 30px 30px 0 0;
  }

  #change_1 .section__inner {
    padding-bottom: 0;
    margin-bottom: 0;
    width: 100%;
  }

  .change__area {
    padding: calc(54 / 430 * 100vw) 0;
  }

  .change__area h3 {
    margin-bottom: calc(25 / 430 * 100vw);
  }

  .change__area--inner--item {
    position: relative;
    background-image: url(../images/bg_chabge_text_sp.png);
    background-position: 85% 50%;
    background-size: calc(320 / 430 * 100vw) calc(152 / 430 * 100vw);
    background-repeat: no-repeat;
  }

  .change__area--problem .change__area--inner--item {
    border: none;
  }

  .change__area--inner--item.bgleft {
    background-position: 20% 50%;
  }

  .change__area .order_1 {
    order: 1;
  }
  .change__area .order_2 {
    order: 2;
  }
  .change__area p {
    width: 100%;
    font-size: calc(18 / 430 * 100vw);
    padding-left: calc(12 / 430 * 100vw);
    text-align: left;
    line-height: 1.6;
    color: var(--default-color);
  }

  .change__area.change__area--change {
    padding-top: calc(75 / 430 * 100vw);
    margin-bottom: calc(50 / 430 * 100vw);
  }

  .change__area.change__area--change p {
    color: var(--dark-blue-color);
  }

  .change__area h3 {
    font-size: calc(32 / 430 * 100vw);
  }

  .change__area--problem {
    position: relative;
    background-image: none;
    border-radius: 30px 30px 0px 0px;
  }

  .change__area--problem::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: calc(40 / 430 * 100vw) calc(215 / 430 * 100vw) 0
      calc(215 / 430 * 100vw);
    border-color: var(--white-color) transparent transparent;
    translate: -50% 100%;
  }

  .change__area--inner {
    flex-direction: column;
  }

  .change__area--inner--item {
    width: 100%;
    border-right: none;
    padding: 0 calc(20 / 430 * 100vw);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .change__area img {
    width: calc(190 / 430 * 100vw);

    filter: drop-shadow(8px 8px 8px rgba(0, 104, 182, 0.2));
  }
}

/* =============================================
   困りごと〜変化を起こせます〜結果部分
============================================= */
.top_logo_area {
  display: flex;
  justify-content: center;
  align-items: center;
}

.top_logo_area img {
  height: 60px;
  margin-right: 2rem;
}

.top_logo_area img:last-child {
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  .top_logo_area {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 1rem;
  }
  .top_logo_area img {
    height: 60px;
    margin-right: 0;
    margin-bottom: 2rem;
  }
  .top_logo_area img:last-child {
    margin-bottom: 0;
  }
}

.top_copy_area {
  display: flex;
  align-items: center;
  width: 80%;
  margin: auto;
}

.top_copy_area img {
  width: 48%;
}

@media screen and (max-width: 768px) {
  .top_copy_area {
    width: 100%;
    flex-direction: column;
  }
  .top_copy_area img {
    width: 100%;
    margin-bottom: 2rem;
  }
}

.change__area.change__area--results {
  padding: 0;
}

.change__area.change__area--results p {
  font-size: min(calc(18 / 1440 * 100vw), 18px);
  text-align: left;
  line-height: 1.8;
  color: var(--default-color);
  margin: min(calc(40 / 1440 * 100vw), 40px) min(calc(60 / 1440 * 100vw), 60px);
  height: min(calc(100 / 1440 * 100vw), 100px);
}

.change__area.change__area--results p span {
  color: var(--dark-blue-color);
  font-weight: bold;
}

.change__area.change__area--results .change__area--inner--item {
  width: calc(1240px / 3);
  border-right: solid 1px var(--dark-blue-color);
}
.change__area.change__area--results .change__area--inner--item:last-child {
  border-right: none;
}

.change__area.change__area--results .imgbox {
  width: min(calc(352 / 1440 * 100vw), 352px);
  height: min(calc(435 / 1440 * 100vw), 435px);
  position: relative;
}

.change__area.change__area--results .imgbox img {
  width: 100%;
}

.change__area.change__area--results .imgbox__text {
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  border-radius: 25px;
  top: max(calc(-170 / 1440 * 100vw), -170px);
  padding: min(calc(100 / 1440 * 100vw), 110px)
    min(calc(40 / 1440 * 100vw), 40px) min(calc(30 / 1440 * 100vw), 30px);
  right: 0;
  left: 0;
  margin: auto;
  width: min(calc(320 / 1440 * 100vw), 320px);
  height: min(calc(290 / 1440 * 100vw), 290px);
  background-color: var(--white-color);
}

.change__area.change__area--results .imgbox__text p {
  font-size: min(calc(18 / 1440 * 100vw), 18px);
  line-height: 1.8;
  color: var(--default-color);
  margin: 0;
  height: auto;
}

.change__area.change__area--results .imgbox__text p span {
  color: var(--magenta-color);
  font-weight: bold;
}
.change__area.change__area--results .imgbox__text p span.large {
  font-size: min(calc(24 / 1440 * 100vw), 24px);
}

.change__area.change__area--results .imgbox__text .star__top {
  position: absolute;
  width: min(calc(30 / 1440 * 100vw), 30px);
  left: min(calc(-10 / 1440 * 100vw), -10px);
  top: min(calc(60 / 1440 * 100vw), 60px);
}
.change__area.change__area--results .imgbox__text .star__bottom {
  position: absolute;
  width: min(calc(52 / 1440 * 100vw), 52px);
  right: min(calc(-15 / 1440 * 100vw), -15px);
  top: min(calc(220 / 1440 * 100vw), 220px);
}

.results__bubble {
  position: relative;
  top: max(calc(-100 / 1440 * 100vw), -80px);
  right: 0;
  left: 0;
  margin: auto;
  width: min(calc(258 / 1440 * 100vw), 258px);
  height: min(calc(110 / 1440 * 100vw), 110px);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background-color: var(--blue-color);
  text-align: center;
  font-size: min(calc(16 / 1440 * 100vw), 16px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--white-color);
  z-index: 3;
}

.results__bubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 12px 6px 0 6px;
  border-color: var(--blue-color) transparent transparent;
  translate: -50% 100%;
}

@media screen and (max-width: 768px) {
  .change__area--results .change__area--inner--item {
    background-image: none;
    flex-direction: column;
  }

  .change__area.change__area--results .change__area--inner--item {
    width: 100%;
    border-right: none;
  }

  /* SPのみ表示 case1〜3 h3見出し*/
  .problem__head--sp {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .problem__head--sp img {
    width: calc(76 / 430 * 100vw);
    position: absolute;
    /* top: calc(-3 / 430 * 100vw); */
    left: 0;
    margin: 0;
  }
  .problem__head--sp h3 {
    position: relative;
    font-size: calc(16 / 430 * 100vw);
    width: calc(350 / 430 * 100vw);
    border-radius: calc(10 / 430 * 100vw);
    color: var(--white-color);
    background-color: var(--light-blue-color);
    padding: calc(12 / 430 * 100vw) calc(12 / 430 * 100vw)
      calc(12 / 430 * 100vw) calc(60 / 430 * 100vw);
    margin: 0;
  }
  /* SPのみ表示 case1〜3 h3見出し ここまで*/

  .change__area.change__area--results p {
    font-size: calc(18 / 430 * 100vw);
    margin: calc(20 / 430 * 100vw) calc(40 / 430 * 100vw);
    padding: 0 calc(10 / 430 * 100vw) calc(10 / 430 * 100vw);
    height: auto;
  }

  .change__area.change__area--results p.case__text {
    padding: calc(10 / 430 * 100vw) calc(30 / 430 * 100vw)
      calc(20 / 430 * 100vw);
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
    line-break: strict;
  }

  .change__area.change__area--results .change__area--inner--item {
    width: 100%;
    border-right: none;
  }

  .change__area.change__area--results .imgbox {
    width: calc(406 / 430 * 100vw);
    height: calc(460 / 430 * 100vw);
    margin-bottom: calc(50 / 430 * 100vw);
    position: relative;
  }

  .change__area.change__area--results .imgbox img {
    width: 100%;
  }

  .change__area.change__area--results .imgbox__text {
    width: calc(359 / 430 * 100vw);
    height: auto;
    border-radius: calc(25 / 430 * 100vw);
    top: calc(-125 / 430 * 100vw);
    padding: calc(60 / 430 * 100vw) calc(30 / 430 * 100vw)
      calc(30 / 430 * 100vw) calc(30 / 430 * 100vw);
    right: 0;
    left: 0;
    margin: auto;
    background-color: var(--white-color);
  }

  .change__area.change__area--results .imgbox__text p {
    font-size: calc(18 / 430 * 100vw);
    line-height: 1.8;
    color: var(--default-color);
    margin: 0;
    height: auto;
  }

  .change__area.change__area--results .imgbox__text p span {
    font-weight: bold;
  }
  .change__area.change__area--results .imgbox__text p span.large {
    font-size: calc(24 / 430 * 100vw);
  }
  .change__area.change__area--results .imgbox__text .star__top {
    position: absolute;
    width: calc(30 / 430 * 100vw);
    left: calc(10 / 430 * 100vw);
    top: calc(10 / 430 * 100vw);
  }
  .change__area.change__area--results .imgbox__text .star__bottom {
    position: absolute;
    width: calc(52 / 430 * 100vw);
    right: calc(-15 / 430 * 100vw);
    top: calc(175 / 430 * 100vw);
  }

  .results__bubble {
    top: calc(-85 / 430 * 100vw);
    width: calc(264 / 430 * 100vw);
    height: calc(96 / 430 * 100vw);
    border-radius: 8px;
    text-align: center;
    font-size: calc(16 / 430 * 100vw);
  }

  .results__bubble::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 12px 6px 0 6px;
    border-color: var(--blue-color) transparent transparent;
    translate: -50% 100%;
  }
}

/* =============================================
   CVエリア
============================================= */
.cv__area {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cv__area .inquiry__button {
  margin-bottom: min(calc(50 / 1440 * 100vw), 50px);
}
.cv__area .section__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cv__area .section__inner img {
  margin-right: min(calc(50 / 1440 * 100vw), 50px);
}

.cv__area--logo {
  width: min(calc(294 / 1440 * 100vw), 294px);
  margin-bottom: min(calc(50 / 1440 * 100vw), 50px);
}
.cv__area .section__inner .cv__area--logo {
  margin: 0 0 min(calc(30 / 1440 * 100vw), 30px) 0;
}

.cv__area--inner {
  display: flex;
  flex-direction: row;
}

.cv__area--inner img {
  width: min(calc(445 / 1440 * 100vw), 445px);
}

.cv__area--inner-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.cv__area--inner-text h2 {
  line-height: 1.4;
}

.cv__area::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 100%;
  height: min(calc(120 / 1440 * 100vw), 120px);
  background-image: url("../images/bg_cv_area_top_pc.webp");
  background-position: center;
  background-size: cover;
}

.cv__area::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 100%;
  height: min(calc(120 / 1440 * 100vw), 120px);
  background-image: url("../images/bg_cv_area_bottom_pc.webp");
  background-position: center;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .cv__area {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .cv__area .section__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(340 / 430 * 100vw);
    padding: 0;
    margin-bottom: calc(50 / 430 * 100vw);
  }
  .cv__area--logo {
    width: calc(280 / 430 * 100vw);
  }

  .cv__area .section__inner img {
    width: calc(285 / 430 * 100vw);
    margin: calc(30 / 430 * 100vw) auto;
  }

  .cv__area .section__inner .cv__area--logo {
    margin: 0 0 0 0;
  }
  .cv__area--inner {
    display: flex;
    flex-direction: column;
  }

  .cv__area--inner img {
    width: (285 / 430 * 100vw);
  }

  .cv__area--inner-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .cv__area--inner-text h2 {
    line-height: 1.4;
    text-align: center;
    margin-bottom: calc(30 / 430 * 100vw);
  }
  .cv__area--inner-text p {
    line-height: 1.8;
    text-align: center;
  }

  .cv__area .inquiry__button {
    margin-bottom: calc(30 / 430 * 100vw);
  }

  .cv__area::before {
    width: 100%;
    height: calc(120 / 430 * 100vw);
    background-image: url("../images/bg_cv_area_top_sp.webp");
  }
  .cv__area::after {
    width: 100%;
    height: calc(120 / 430 * 100vw);
    background-image: url("../images/bg_cv_area_bottom_sp.webp");
  }
}

/* =============================================
   ファンくるの特徴
============================================= */
section#feature {
  text-align: center;
  padding: min(calc(115 / 1440 * 100vw), 115px) 0 0 0;
}

.feature__area {
  position: relative;
}

.feature__area img {
  width: 100%;
}

.feature__inner {
  max-width: 1240px;
  position: relative;
  margin: auto;
  top: min(calc(-100 / 1440 * 100vw), -100px);
  display: flex;
  justify-content: space-between;
}

.feature__inner--item {
  display: flex;
  flex-direction: column;
  width: min(calc(280 / 1220 * 100vw), 280px);
}

.feature__inner--item p {
  text-align: left;
  font-size: min(calc(16 / 1440 * 100vw), 16px);
  padding-top: min(calc(75 / 1440 * 100vw), 75px);
}
.feature__inner--item p span {
  color: var(--magenta-color);
  font-weight: bold;
}
.point__box {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: min(calc(30 / 1440 * 100vw), 30px);
  height: min(calc(216 / 1440 * 100vw), 216px);
  border-radius: 10px;
  background-color: var(--syan-color);
}

.point__box p {
  text-align: left;
}

.point__box--head {
  display: flex;
  align-items: flex-start;
}

.point__box--fig {
  position: absolute;
  left: 0;
  right: 0;
  height: min(calc(105 / 1440 * 100vw), 105px);
  bottom: min(calc(-50 / 1440 * 100vw), -50px);
}

.point__box--head p {
  white-space: nowrap;
  color: var(--dark-blue-color);
  font-weight: bold;
  line-height: 1.5;
  font-size: min(calc(20 / 1440 * 100vw), 20px);
  border-left: solid 2px var(--magenta-color);
  padding-left: 0.5rem;
  padding-top: 0;
}

.feature__area .feature__inner .point__box--head img {
  width: min(calc(50 / 1440 * 100vw), 50px);
  padding-right: min(calc(12 / 1440 * 100vw), 12px);
  padding-top: min(calc(5 / 1440 * 100vw), 5px);
}

@media screen and (max-width: 768px) {
  section#feature {
    text-align: center;
    padding: calc(80 / 430 * 100vw) 0 0 0;
  }

  #feature h3 {
    font-size: calc(32 / 430 * 100vw);
    margin-bottom: calc(70 / 430 * 100vw);
  }

  #feature h3 span {
    font-size: min(calc(24 / 430 * 100vw), 24px);
  }

  #feature h3::before {
    bottom: calc(-20 / 430 * 100vw);
    display: inline-block;
    width: calc(50 / 430 * 100vw);
  }

  .feature__area .feature__area--bg {
    margin-bottom: calc(50 / 430 * 100vw);
  }

  .feature__inner {
    max-width: none;
    position: static;
    display: flex;
    flex-direction: column;
  }

  .feature__inner--item {
    width: calc(408 / 430 * 100vw);
    margin: auto;
  }

  .feature__inner--item p {
    width: calc(312 / 430 * 100vw);
    margin: 0 auto calc(50 / 430 * 100vw);
    font-size: calc(16 / 430 * 100vw);
    padding-top: calc(50 / 430 * 100vw);
  }

  .feature__inner--item p span {
    color: var(--magenta-color);
    font-weight: bold;
  }
  .point__box {
    padding: calc(30 / 430 * 100vw);
    height: calc(180 / 430 * 100vw);
  }

  .point__box--fig {
    height: calc(105 / 430 * 100vw);
    bottom: calc(-40 / 430 * 100vw);
  }

  .point__box--head p {
    font-size: calc(20 / 430 * 100vw);
    padding-left: 0.5rem;
    padding-top: 0;
    padding-bottom: calc(15 / 430 * 100vw);
  }

  .feature__area .feature__inner .point__box--head img {
    width: calc(50 / 430 * 100vw);
    padding-right: calc(12 / 430 * 100vw);
    padding-top: calc(5 / 430 * 100vw);
  }
}

/* =============================================
   ファンくるはここがちがう！
============================================= */
#different {
  background-color: var(--light-gray-color);
  position: relative;
}

#different::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: min(calc(116 / 1440 * 100vw), 116px);
  background-image: url(../images/bg_different_pc.webp);
  background-position: center;
  background-size: cover;
}
#different::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: min(calc(116 / 1440 * 100vw), 116px);
  background-image: url(../images/bg_different_pc.webp);
  background-position: center;
  background-size: cover;
  transform: scaleY(-1);
}

#different .section__inner {
  margin: 0 auto;
  padding: 0 0 1rem 0;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #different::before {
    height: calc(47 / 430 * 100vw);
    background-image: url(../images/bg_different_sp.webp);
  }
  #different::after {
    height: calc(47 / 430 * 100vw);
    background-image: url(../images/bg_different_sp.webp);
    transform: scaleY(-1);
  }

  #different .section__inner {
    margin: 0 auto min(calc(80 / 430 * 100vw), 115px);
    padding: 0 0 3rem 0;
    text-align: center;
  }
}

/* =============================================
   ファンくるはここがちがう！　table
============================================= */

.table-scroll {
  overflow-x: scroll;
}

.container {
  margin-inline: auto;
  overflow-x: auto; /* tableタグのはみ出た要素を隠す */
  white-space: nowrap; /* テキストの折り返しなし */
  width: min(calc(1240 / 1440 * 100vw), 1240px);
}

table {
  width: min(calc(1240 / 1440 * 100vw), 1240px);
  border-collapse: collapse;
  line-height: 1.4;
  margin-bottom: min(calc(150 / 1440 * 100vw), 150px);
  font-size: min(calc(18 / 1440 * 100vw), 18px);
}

.scroll-hint-text {
  margin-top: 0;
}

th {
  color: var(--white-color);
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
  height: min(calc(90 / 1440 * 100vw), 90px);
  text-align: center;
}
th[scope="col"] {
  background-color: var(--blue-color);
}
th[scope="col"]:nth-child(2) {
  border-radius: 10px 0px 0px 0px;
}
th[scope="col"]:last-child {
  border-radius: 0px 10px 0px 0px;
}
th[scope="row"] {
  background-color: var(--gray-color);
  height: min(calc(118 / 1440 * 100vw), 118px);
}
tr:first-child th[scope="col"]:first-child {
  background-color: var(--light-gray-color);
}
tr:first-child th[scope="col"]:first-child {
  background-color: var(--light-gray-color);
}

td {
  border-bottom: solid 1px #a3b2cc;
  border-right: solid 1px #a3b2cc;
  font-size: min(calc(16 / 1440 * 100vw), 16px);
  background-color: #fff;
}
td:last-child {
  border-right: none;
}

tr:nth-child(2) th[scope="row"] {
  background-color: var(--dark-blue-color);
  border-radius: 10px 0px 0px 0px;
}
tr:last-child th[scope="row"] {
  border-radius: 0px 0px 0px 10px;
}
tr:nth-child(2) td {
  background-color: var(--light-syan-color);
  font-size: min(calc(18 / 1440 * 100vw), 18px);
  font-weight: bold;
  color: var(--dark-blue-color);
}
tr:nth-child(2) td {
  border-bottom: none;
}
tr:last-child td {
  border-bottom: none;
}
tr:last-child td:last-child {
  border-radius: 0px 0px 10px 0px;
}

@media screen and (max-width: 768px) {
  .table-scroll {
    margin-bottom: calc(50 / 430 * 100vw);
  }

  .container {
    margin-inline: auto;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
  }

  .container::-webkit-scrollbar {
    background-image: url(../images/bg_scrollbar_img.webp);
    background-size: cover;
    background-color: var(--light-gray-color);
    width: 15px;
    height: 20px;
    border-radius: 5px;
  }
  .container::-webkit-scrollbar-thumb {
    background-color: var(--white-color);
    border: solid 5px var(--blue-color);
    border-radius: 5px;
  }

  table {
    width: calc(1240 / 430 * 100vw);
    font-size: calc(18 / 430 * 100vw);
    padding-left: 50rem;
    margin-bottom: calc(30 / 430 * 100vw);
  }

  th {
    color: var(--white-color);
    border-right: solid 1px #fff;
    border-bottom: solid 1px #fff;
    height: calc(90 / 430 * 100vw);
  }

  th[scope="row"] {
    height: calc(118 / 430 * 100vw);
  }

  td {
    font-size: calc(16 / 430 * 100vw);
  }
  tr:nth-child(2) td {
    font-size: calc(18 / 430 * 100vw);
  }
}

/* =============================================
   ファンくるCR 改善ストーリー
============================================= */
#improvement {
  padding-top: min(calc(100 / 1440 * 100vw), 100px);
}

/* スライダーがない場合 */
#improvement .section__inner--narrow {
  max-width: 640px;
}
/* スライダーがない場合 */

#improvement p {
  font-size: min(calc(16 / 1440 * 100vw), 16px);
}

#improvement ul {
  width: 100%;
  margin-top: 0;
  border-bottom: solid 1px var(--dark-blue-color);
  padding-bottom: 2rem;
}

#improvement li {
  line-height: 1.6;
  max-width: 1000px;
  width: 90%;
}

#improvement li::marker {
  color: var(--dark-blue-color);
  font-size: min(calc(20 / 1440 * 100vw), 20px);
  margin: 0;
}

#improvement h3 {
  margin-bottom: min(calc(20 / 1440 * 100vw), 20px);
}

#improvement .section__inner--narrow h3 {
  color: var(--default-color);
}

#improvement h4 {
  color: var(--dark-blue-color);
  margin-bottom: 0;
  padding-right: 1rem;
}

#improvement h4::before {
  content: "";
  display: inline-block;
  background-image: url("../images/icon_circle.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: min(calc(21 / 1440 * 100vw), 21px);
  height: min(calc(21 / 1440 * 100vw), 21px);
  margin-right: 0.5rem;
}

.improvement__case {
  margin-bottom: min(calc(20 / 1440 * 100vw), 20px);
}

.improvement__case--head {
  font-weight: 400;
  margin-bottom: 0;
}
.improvement__case--head span {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  color: var(--dark-blue-color);
  padding-right: 1rem;
  margin-right: 1rem;
  border-right: solid 1px var(--dark-blue-color);
}

.improvement__case--name {
  font-weight: bold;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  #improvement p {
    font-size: calc(16 / 430 * 100vw);
  }

  #improvement li {
    font-size: calc(16 / 430 * 100vw);
  }

  #improvement li::marker {
    font-size: calc(20 / 430 * 100vw);
  }

  #improvement h3 {
    margin-bottom: calc(20 / 430 * 100vw);
    line-height: 1.4;
  }

  #improvement h4 {
    margin-bottom: 0;
    padding-right: 1rem;
  }

  #improvement h4::before {
    width: calc(21 / 430 * 100vw);
    height: calc(21 / 430 * 100vw);
    margin-right: 0.5rem;
  }

  .improvement__case {
    width: calc(358 / 430 * 100vw);
    margin: 0 auto calc(20 / 430 * 100vw);
  }
}

/* =============================================
   価格
============================================= */
#price {
  position: relative;
  background-image: url(../images/bg_price_pc.webp);
  background-size: cover;
  background-position: center;
  text-align: center;
  display: flex;
  justify-content: center;
}

#price::before {
  content: "";
  display: inline-block;
  width: 100%;
  position: absolute;
  bottom: 0;
  height: MAX(calc(116 / 1440 * 100vw), 116px);
  background-image: url(../images/bg_circle_pc.webp);
  background-position: center;
  background-size: cover;
}

#price .section__inner {
  padding: min(calc(115 / 1440 * 100vw), 115px) 0
    min(calc(50 / 1440 * 100vw), 50px) 0;
}

#price .section__inner img {
  width: min(calc(465 / 1440 * 100vw), 465px);
  margin: 0 auto min(calc(50 / 1440 * 100vw), 50px);
}

#price .section__inner p {
  color: var(--white-color);
  text-align: center;
  background-color: var(--blue-color);
  white-space: nowrap;
  width: min(calc(520 / 1440 * 100vw), 520px);
  font-size: min(calc(20 / 1440 * 100vw), 20px);
  padding: min(calc(10 / 1440 * 100vw), 10px) min(calc(20 / 1440 * 100vw), 20px);
  border-radius: 0px 0px 25px 0px;
  margin-bottom: min(calc(10 / 1440 * 100vw), 10px);
}

#price .section__inner p span {
  font-size: min(calc(14 / 1440 * 100vw), 14px);
  margin-left: 0.25rem;
}

#price .section__inner p.notice__text {
  background: none;
  text-align: right;
  font-size: min(calc(14 / 1440 * 100vw), 14px);
  color: var(--default-color);
}

@media screen and (max-width: 768px) {
  #price {
    position: relative;
    background-image: url(../images/bg_price_sp.webp);
    background-size: cover;
    background-position: center;
    text-align: center;
    display: flex;
    justify-content: center;
  }

  #price::before {
    content: "";
    display: inline-block;
    width: 100%;
    position: absolute;
    bottom: 0;
    height: calc(47 / 430 * 100vw);
    background-image: url(../images/bg_circle_sp.webp);
    background-position: center;
    background-size: cover;
  }
  #price .section__inner {
    width: 100%;
    padding: calc(80 / 430 * 100vw) calc(20 / 430 * 100vw)
      calc(10 / 430 * 100vw) calc(20 / 430 * 100vw);
  }

  #price .section__inner img {
    width: calc(293 / 430 * 100vw);
    margin: 0 auto calc(50 / 430 * 100vw);
  }

  #price .section__inner p {
    color: var(--white-color);
    background-color: var(--blue-color);
    white-space: nowrap;
    width: calc(320 / 430 * 100vw);
    font-size: calc(14 / 430 * 100vw);
    padding: calc(10 / 430 * 100vw) calc(20 / 430 * 100vw);
    border-radius: 0px 0px 25px 0px;
    margin: auto;
    margin-bottom: calc(10 / 430 * 100vw);
  }

  #price .section__inner p span {
    font-size: calc(14 / 430 * 100vw);
  }

  #price .section__inner p.notice__text {
    font-size: calc(14 / 430 * 100vw);
  }
}

/* =============================================
   FAQ
============================================= */
#faq {
  background-color: var(--light-gray-color);
}

#faq .section__inner--narrow {
  padding: 0 0 0 0;
  margin: 0 auto 2rem;
}

.accordion-content {
  display: none;
}
.accordion-header {
  background-color: #fff;
  border-radius: 10px;
  padding: 0 45px 0 0;
  margin: 20px 0 0;
  transition: background 0.3s ease;
  cursor: pointer;
  position: relative;
}

.accordion-header::before,
.accordion-header::after {
  position: absolute;
  content: "";
  top: 1px;
  right: 20px;
  bottom: 0;
  width: 12px;
  height: 2px;
  margin: auto;
  background: #151e2f;
}
.accordion-header::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}
.accordion-header.active {
  border-radius: 10px 10px 0 0;
  border-bottom: dotted 1px var(--dark-blue-color);
}

.accordion-header.active::after {
  transform: rotate(0deg);
}

.accordion-content {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  padding: min(calc(10 / 1440 * 100vw), 10px) 0
    min(calc(10 / 1440 * 100vw), 10px) 0;
}

.content__box {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 min(calc(50 / 1440 * 100vw), 50px) 0 0;
}
.content__box p {
  margin: 0;
  padding: 0;
  font-size: min(calc(16 / 1440 * 100vw), 16px);
}

.content__box p.faq__head {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: min(calc(30 / 1440 * 100vw), 30px);
  color: var(--dark-blue-color);
  padding: 0 min(calc(15 / 1440 * 100vw), 15px) 0
    min(calc(30 / 1440 * 100vw), 30px);
}

/* hover */
.accordion-header:hover {
  background-color: #f2f2f2;
}

/* 最下段の半円は普通に画像処理しました */
.bottomimg__box {
  width: 100%;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

.bottomimg__box img {
  width: 100%;
  margin: 0;
  padding: 0;
  transform: scale(1, -1);
}

@media screen and (max-width: 768px) {
  #faq .section__inner--narrow {
    padding: 0 0 0 0;
  }

  .accordion-header {
    padding: 0 45px 0 0;
    margin: 15px 0 0;
  }

  .accordion-header::before,
  .accordion-header::after {
    position: absolute;
    content: "";
    top: 1px;
    right: 20px;
    bottom: 0;
    width: 12px;
    height: 2px;
  }

  .accordion-header.active {
    border-radius: 10px 10px 0 0;
  }

  .accordion-content {
    border-radius: 0 0 10px 10px;
    padding: calc(10 / 430 * 100vw) 0 calc(10 / 430 * 100vw) 0;
  }

  .content__box {
    padding: calc(10 / 430 * 100vw) 0;
  }
  .content__box p {
    font-size: calc(16 / 430 * 100vw);
  }
  .accordion-content p:last-child {
    padding-right: calc(26 / 430 * 100vw);
  }

  .content__box p.faq__head {
    font-size: calc(30 / 430 * 100vw);
    padding: 0 calc(15 / 430 * 100vw);
  }
}

/* =============================================
   導入フロー
============================================= */
.flow__inner {
  position: relative;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: min(calc(1240 / 1440 * 100vw), 1240px);
  height: min(calc(528 / 1440 * 100vw), 528px);
  padding-right: min(calc(40 / 1440 * 100vw), 40px);
  background-image: url(../images/bg_flow_pc.svg);
  background-size: cover;
  background-position: center;
}
.flow__box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: min(calc(370 / 1440 * 100vw), 352px);
  height: min(calc(483 / 1440 * 100vw), 483px);
  padding: min(calc(70 / 1440 * 100vw), 70px) 0 0 0;
}
.flow__box h3 {
  font-size: min(calc(24 / 1440 * 100vw), 24px);
}
.flow__box p {
  font-size: min(calc(16 / 1440 * 100vw), 16px);
  width: min(calc(270 / 1440 * 100vw), 270px);
}

.flow__box img {
  height: min(calc(105 / 1440 * 100vw), 105px);
  margin-bottom: min(calc(40 / 1440 * 100vw), 40px);
}

@media screen and (max-width: 768px) {
  #flow .section__inner {
    width: 100%;
    padding-top: calc(86 / 430 * 100vw);
  }

  .flow__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    padding: 0 calc(45 / 430 * 100vw) calc(70 / 430 * 100vw)
      calc(45 / 430 * 100vw);
    height: calc(1253 / 430 * 100vw);
    background-image: url(../images/bg_flow_sp.svg);
    background-size: cover;
    background-position: center;
  }
  .flow__box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: auto;
    padding-top: calc(60 / 430 * 100vw);
  }
  .flow__box h3 {
    font-size: calc(24 / 430 * 100vw);
  }
  .flow__box p {
    font-size: calc(16 / 430 * 100vw);
    width: calc(264 / 430 * 100vw);
  }

  .flow__box img {
    height: calc(100 / 430 * 100vw);
    margin-bottom: calc(30 / 430 * 100vw);
  }
}

/* =============================================
   こんな変化も生まれます
============================================= */
#introduced {
  padding-top: min(calc(115 / 1440 * 100vw), 115px);
  padding-bottom: min(calc(115 / 1440 * 100vw), 115px);
  background-image: linear-gradient(transparent 10%, #b9dcfa);
  position: relative;
}

#introduced::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: MAX(calc(116 / 1440 * 100vw), 116px);
  background-image: url(../images/bg_different_pc.webp);
  background-position: center;
  background-size: cover;
  transform: scaleY(-1);
}

#introduced h2.underline {
  margin-bottom: min(calc(100 / 1440 * 100vw), 100px);
  position: relative;
}

#introduced h3 {
  line-height: 1.4;
  margin-bottom: min(calc(20 / 1440 * 100vw), 20px);
}

.introduced__top img {
  width: 100%;
}

.introduced__box {
  width: min(calc(1240 / 1440 * 100vw), 1240px);
  height: min(calc(384 / 1440 * 100vw), 384px);
  background-color: var(--white-color);
  margin: min(calc(60 / 1440 * 100vw), 60px) auto
    min(calc(100 / 1440 * 100vw), 100px);
  padding-bottom: min(calc(50 / 1440 * 100vw), 50px);
  position: relative;
  display: flex;
  align-items: center;
}
.introduced__box picture img {
  width: min(calc(696 / 1440 * 100vw), 696px);
  position: absolute;
  top: min(calc(-40 / 1440 * 100vw), -40px);
}

.introduced__box.introduced__box--left picture img {
  left: max(calc(-100 / 1440 * 100vw), -100px);
}
.introduced__box.introduced__box--right picture img {
  /* right: max(calc(-100 / 1440 * 100vw), -100px); */
  right: max(calc(-100 / 1440 * 92vw), -100px);
}

.icon__quotation {
  width: min(calc(40 / 1440 * 100vw), 40px);
  position: absolute;
  top: min(calc(-20 / 1440 * 100vw), -20px);
}

.introduced__box--left {
  border-radius: 0px 0px 100px 0px;
  padding-left: min(calc(667 / 1440 * 100vw), 667px);
}
.introduced__box--right {
  border-radius: 0px 0px 0px 100px;
  padding-left: min(calc(190 / 1440 * 100vw), 190px);
}

.introduced__box--left .icon__quotation {
  left: min(calc(667 / 1440 * 100vw), 667px);
}

.introduced__box--right .icon__quotation {
  left: min(calc(190 / 1440 * 100vw), 190px);
}

@media screen and (max-width: 768px) {
  #introduced {
    padding-top: min(calc(115 / 1440 * 100vw), 115px);
    padding-bottom: min(calc(115 / 1440 * 100vw), 115px);
    background-image: linear-gradient(transparent 10%, #b9dcfa);
    position: relative;
  }

  #introduced .section__inner {
    width: 100%;
    padding: 0 1rem;
  }

  #introduced::after {
    height: calc(47 / 430 * 100vw);
    background-image: url(../images/bg_different_sp.webp);
  }

  #introduced h2.underline {
    margin-bottom: calc(100 / 430 * 100vw);
  }

  #introduced h3 {
    line-height: 1.4;
    margin-bottom: calc(20 / 430 * 100vw);
  }

  .introduced__top img {
    width: 100%;
    margin-bottom: calc(40 / 430 * 100vw);
  }

  .introduced__box {
    width: 100%;
    height: calc(415 / 430 * 100vw);
    height: auto;
    background-color: var(--white-color);
    margin: calc(60 / 430 * 100vw) auto calc(100 / 430 * 100vw);
    padding-top: calc(220 / 430 * 100vw);
    padding-bottom: calc(30 / 430 * 100vw);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .introduced__box p {
    width: calc(310 / 430 * 100vw);
  }

  .introduced__box picture img {
    width: 100%;
    position: absolute;
    top: calc(-20 / 430 * 100vw);
  }

  .introduced__box.introduced__box--left picture img,
  .introduced__box.introduced__box--right picture img {
    left: -1rem;
  }

  .icon__quotation {
    width: calc(40 / 430 * 100vw);
    position: absolute;
    top: calc(170 / 430 * 100vw);
    z-index: 3;
  }

  .introduced__box--left,
  .introduced__box--right {
    border-radius: 0px 0px 0px 50px;
    padding-left: 0;
    margin-left: 1rem;
  }

  .introduced__box--left .icon__quotation,
  .introduced__box--right .icon__quotation {
    left: calc(40 / 430 * 100vw);
  }
}

/* =============================================
   資料請求
============================================= */

/* 先方のWP実装に合わせてhtml構造を変更 */
.formWrapper {
  display: flex;
  flex-direction: column;
  font-size: min(calc(16 / 1440 * 100vw), 16px);
}

.formWrapper dl {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  padding: min(calc(20 / 1440 * 100vw), 20px);
  border-bottom: solid 1px var(--form-underline-color);
}

.formWrapper dt {
  width: 24%;
}

.formWrapper dd {
  width: 76%;
  display: flex;
}

#inquiry__area .formWrapper dd p {
  text-align: left;
}

.formWrapper span.required {
  color: var(--form-red-color);
  padding-left: 0.25rem;
  font-weight: bold;
  padding-bottom: 9px;
}
.formWrapper span.notice {
  font-size: min(calc(14 / 1440 * 100vw), 14px);
}

.termsInput {
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: min(calc(50 / 1440 * 100vw), 50px);
}
.termsInput label {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  column-gap: 14px;
}
.formWrapper div:last-child {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .formWrapper {
    display: flex;
    font-size: calc(16 / 430 * 100vw);
  }

  .formWrapper dl {
    flex-direction: column;
    align-items: flex-start;
    padding: calc(20 / 430 * 100vw) 0;
  }

  .formWrapper dt {
    width: auto;
    padding-bottom: calc(6 / 430 * 100vw);
  }

  .formWrapper dd {
    width: 100%;
  }

  #inquiry__area .formWrapper dd p {
    text-align: left;
  }

  .formWrapper span.required {
    color: var(--form-red-color);
  }
  .formWrapper span.notice {
    font-size: calc(14 / 430 * 100vw);
  }

  .termsInput {
    width: 100%;
    padding: calc(50 / 430 * 100vw) 0;
  }

  .formWrapper div:last-child {
    display: flex;
    justify-content: center;
  }
}
/* 先方のWP実装に合わせてhtml構造を変更ここまで */

#inquiry__area p {
  text-align: center;
  margin-bottom: 0.5rem;
}

#inquiry__area form {
  display: flex;
  flex-direction: column;
  font-size: min(calc(16 / 1440 * 100vw), 16px);
}

#inquiry__area form p {
  font-size: 14px;
}

.form__row {
  width: 100%;
  display: flex;
  align-items: center;
  padding: min(calc(20 / 1440 * 100vw), 20px);
  border-bottom: solid 1px var(--form-underline-color);
}
.form__row--title {
  width: 24%;
}
.form__row--title span {
  color: var(--form-red-color);
}
.form__row--input {
  width: 76%;
  display: flex;
}
.form__row--input--narrow {
  width: 50%;
  display: flex;
}
.form__row--column {
  flex-direction: column;
}
#inquiry__area .form__row--input p {
  text-align: left;
}
.accept__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: min(calc(50 / 1440 * 100vw), 50px);
}

input,
textarea,
select {
  /* width: 100%; */
  width: 97%;
  font-size: min(calc(16 / 1440 * 100vw), 16px);
  color: var(--default-color);
  padding: min(calc(10 / 1440 * 100vw), 10px);
  margin-right: min(calc(10 / 1440 * 100vw), 10px) !important;
  border: solid 1px var(--form-underline-color);
  border-radius: 5px;
  background-color: var(--form-bg-color);
}

::placeholder {
  color: rgba(53, 53, 53, 0.6);
}

input:last-child,
textarea:last-child,
select:last-child {
  margin-right: 0;
}

select {
  width: 50%;
  -webkit-appearance: none;
  appearance: none;
  background-image: url(../images/form_arrow.svg);
  background-repeat: no-repeat;
  background-size: 12px auto; /* 画像のサイズ（幅 高さ）*/
  background-position: right 24px center; /* 画像の位置 */
}

select:has(option:checked[value=""]) {
  color: rgba(53, 53, 53, 0.6);
}
select option {
  color: var(--default-color);
  font-size: min(calc(14 / 1440 * 100vw), 14px);
}
select option:first-child {
  color: rgba(53, 53, 53, 0.6);
}

.checkboxItem.agreement {
  column-gap: 0;
}
.checkboxItem .wpcf7-list-item {
  display: flex;
  align-items: center;
  column-gap: 14px;
  width: fit-content;
  line-height: 1;
  cursor: pointer;
  margin: 0;
}

.checkboxItem .wpcf7-list-item:not(:last-of-type) {
  margin-bottom: 32px;
}

.checkboxStyle span input,
.agreeCheckStyle {
  appearance: none;
  position: relative;
  width: 40px;
  height: 40px;
  border: 1px solid #06b6d4;
  border-radius: 2px;
  background-color: #eef3fa;
  cursor: pointer;
}

.checkboxStyle span input:checked,
.agreeCheckStyle:checked {
  background-color: #568ddb;
}

.checkboxStyle span input:checked::after,
.agreeCheckStyle:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 24px;
  height: 24px;
  border-bottom: 4px solid #ffffff;
  border-left: 4px solid #ffffff;
  transform: rotate(-45deg);
}

.button {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  display: block;
  width: 300px;
  border-radius: 100px;
  border: solid 2px var(--dark-blue-color);
  font-size: 18pt;
  text-align: center;
  cursor: pointer;
  padding: 12px 12px;
  background: #ffffff;
  color: var(--dark-blue-color);
  line-height: 1em;
  transition: 0.3s;
}
.button:hover {
  color: #ffffff;
  background: var(--dark-blue-color);
}

@media screen and (max-width: 768px) {
  #inquiry__area {
    padding-top: calc(86 / 430 * 100vw);
  }

  #inquiry__area form {
    display: flex;
    flex-direction: column;
    font-size: calc(16 / 430 * 100vw);
  }

  #inquiry__area form p {
    font-size: 14px;
  }

  .form__row {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: calc(20 / 430 * 100vw) 0;
  }
  .form__row--title {
    width: auto;
    padding-bottom: calc(6 / 430 * 100vw);
  }
  .form__row--input {
    width: 100%;
  }
  .form__row--input--narrow {
    width: 100%;
  }
  .form__row--column {
    flex-direction: column;
  }
  .accept__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: calc(50 / 430 * 100vw) 0;
  }

  input,
  textarea,
  select {
    width: 100%;
    padding: calc(10 / 430 * 100vw);
    margin-right: calc(10 / 430 * 100vw);
    font-size: calc(14 / 430 * 100vw);
  }

  input:last-child,
  textarea:last-child,
  select:last-child {
    margin-right: 0;
  }

  select {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    background-image: url(../images/form_arrow.svg);
    background-repeat: no-repeat;
    background-size: 12px auto; /* 画像のサイズ（幅 高さ）*/
    background-position: right 24px center; /* 画像の位置 */
    font-size: calc(14 / 430 * 100vw);
  }
  select:has(option:checked[value=""]) {
    color: rgba(53, 53, 53, 0.6);
  }
  select option {
    color: var(--default-color);
    font-size: calc(14 / 430 * 100vw);
  }
  select option:first-child {
    color: rgba(53, 53, 53, 0.6);
  }

  .checkboxItem {
    display: flex;
    align-items: center;
    column-gap: 14px;
    width: fit-content;
    line-height: 1;
    cursor: pointer;
    margin-bottom: 2rem;
  }

  .checkboxItem:not(:last-of-type) {
    margin-bottom: 32px;
  }

  .checkboxStyle span input,
  .agreeCheckStyle {
    appearance: none;
    position: relative;
    width: 40px;
    height: 40px;
    border: 1px solid #06b6d4;
    border-radius: 2px;
    background-color: #eef3fa;
    cursor: pointer;
  }

  .checkboxStyle span input:checked,
  .agreeCheckStyle:checked {
    background-color: #568ddb;
  }

  .checkboxStyle span input:checked::after,
  .agreeCheckStyle:checked::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 6px;
    width: 24px;
    height: 24px;
    border-bottom: 4px solid #ffffff;
    border-left: 4px solid #ffffff;
    transform: rotate(-45deg);
  }

  .button {
    display: block;
    width: calc(300 / 430 * 100vw);
    border-radius: 100px; /* 角丸       */
    border: solid 2px var(--dark-blue-color);
    font-size: 18pt; /* 文字サイズ */
    text-align: center; /* 文字位置   */
    cursor: pointer; /* カーソル   */
    padding: 12px 12px; /* 余白       */
    background: #ffffff; /* 背景色     */
    color: #1f4e94; /* 文字色     */
    line-height: 1em; /* 1行の高さ  */
    transition: 0.3s; /* なめらか変化 */
  }
  .button:hover {
    color: #ffffff; /* 背景色     */
    background: var(--dark-blue-color); /* 文字色     */
  }
}

/* =============================================
   footer
============================================= */
#global__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  padding: 1rem;
  text-align: center;
  color: var(--white-color);
}

@media screen and (max-width: 768px) {
  #global__footer {
    height: calc(160 / 430 * 100vw);
  }
}

/* =============================================
   animation different distances
============================================= */
body {
  opacity: 0;
  transition: all 2.5s;
}

body.pageLoaded {
  opacity: 1;
}

.long-slide-up {
  transform: translateY(50px);
}

.animated.long-slide-up {
  transform: translateY(0);
}

.long-slide-left {
  transform: translateX(-50px);
}

/* .long-slide-left-w100 {
  transform: translateX(-100%);
} */

.animated.long-slide-left {
  transform: translateY(0);
}

.long-slide-right {
  transform: translateX(50px);
}

/* .long-slide-right-w100 {
  transform: translateX(-100%);
} */

/* .cv__area::before {
  transform: translateX(-100%);
}

.cv__area::after {
  transform: translateX(-100%);
}

.animated.long-slide-right {
  transform: translateY(0);
} */

.animate {
  transition: all ease-in 0.5s;
  opacity: 0;
}

.animated {
  opacity: 1;
}

.animate-delay-1 {
  transition-delay: 0.25s;
}

.animate-delay-2 {
  transition-delay: 0.5s;
}

/* =============================================
   スライダー
============================================= */

/*1枚しかない場合*/
#improvement .full_width {
  margin-bottom: min(calc(116 / 1440 * 100vw), 116px);
  position: relative;
}

#improvement .full_width .improvement__img {
  width: 100%;
}

#improvement .icon__quotation--improvement {
  width: min(calc(48 / 1440 * 100vw), 48px);
  position: absolute;
  bottom: min(calc(-20 / 1440 * 100vw), -20px);
  left: min(calc(40 / 1440 * 100vw), 40px);
}
/*1枚しかない場合ここまで*/

.slide-top {
  width: 100%;
  display: flex;
  margin: auto;
  border-bottom: none;
  border: none;
  padding-bottom: 2rem !important;
  /* position: relative; */
}

/* .slide-top::before {
    position: absolute;
    content: '';
    background: #fff;
    height: 49vw;
    display: block;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 25%;
}

.slide-top::after {
	position: absolute;
	content: '';
	background: #fff;
	height: 49vw;
	display: block;
	bottom: 0;
	right: 0;
	z-index: 1;
    width: 25%;
} */

.slide-top li {
  height: auto;
  margin-right: min(calc(5 / 1440 * 100vw), 5px);
  margin-left: min(calc(5 / 1440 * 100vw), 5px);
}

.slide-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-top.slick-initialized.slick-slider.slick-dotted {
  margin: 0;
  padding: 0;
}

.slide-top .slick-dots li button:before {
  font-family: "slick";
  font-size: min(calc(12 / 1440 * 100vw), 12px);
  line-height: min(calc(20 / 1440 * 100vw), 20px);
  position: absolute;
  top: 0;
  left: 0;
  width: min(calc(20 / 1440 * 100vw), 20px);
  height: min(calc(20 / 1440 * 100vw), 20px);
  content: "•";
  text-align: center;
  opacity: 1;
  color: #d1dce8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slide-top .slick-dots li.slick-active button:before {
  opacity: 1;
  color: var(--blue-color);
}
.slick-arrow {
  width: min(calc(60 / 1440 * 100vw), 60px);
  height: min(calc(60 / 1440 * 100vw), 60px);
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 0;
  position: absolute;
  /* top: 50%; */
  top: 20%;
  z-index: 1;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}

.slick-arrow::before {
  content: "";
  display: block;
  width: min(calc(12 / 1440 * 100vw), 12px);
  height: min(calc(12 / 1440 * 100vw), 12px);
  border: 1px solid var(--dark-blue-color);
  border-width: 3px 3px 0 0;
  position: absolute;
  top: min(calc(24 / 1440 * 100vw), 24px);
  transform: rotate(45deg);
}
.slick-dots {
  top: 28vw;
}
.slick-next {
  right: min(calc(330 / 1440 * 100vw), 330px);
}
.slick-prev {
  left: min(calc(330 / 1440 * 100vw), 330px);
}

.slick-prev:hover,
.slick-next:hover {
  opacity: 0.7;
  transition: all ease-in 0.3s;
}

.slick-prev,
.slick-next {
  transition: all ease-in 0.3s;
}

.slick-next::before {
  left: min(calc(20 / 1440 * 100vw), 20px);
}
.slick-prev::before {
  border-width: 0 0 3px 3px;
  right: min(calc(22 / 1440 * 100vw), 22px);
}

@media screen and (max-width: 768px) {
  /*1枚しかない場合*/
  #improvement .full_width {
    margin-bottom: calc(60 / 430 * 100vw);
  }

  #improvement .icon__quotation--improvement {
    width: calc(40 / 430 * 100vw);
    bottom: calc(-20 / 430 * 100vw);
    left: calc(24 / 430 * 100vw);
  }
  /*1枚しかない場合ここまで*/

  .slide-top {
    width: 100%;
    display: flex;
    margin: auto;
    border-bottom: none;
  }

  .slide-top li {
    height: auto;
    margin-right: min(calc(5 / 430 * 100vw), 5px);
    margin-left: min(calc(5 / 430 * 100vw), 5px);
  }

  .slide-top .slick-dots li button:before {
    font-size: min(calc(12 / 430 * 100vw), 12px);
    line-height: min(calc(20 / 430 * 100vw), 20px);
    width: min(calc(20 / 430 * 100vw), 20px);
    height: min(calc(20 / 430 * 100vw), 20px);
  }

  .slide-top .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--blue-color);
  }
  .slick-arrow {
    width: min(calc(60 / 430 * 100vw), 60px);
    height: min(calc(60 / 430 * 100vw), 60px);
    top: calc(100 / 430 * 100vw);
  }
  .slick-arrow::before {
    width: calc(12 / 430 * 100vw);
    height: calc(12 / 430 * 100vw);
    border-width: calc(3 / 430 * 100vw) calc(3 / 430 * 100vw) 0 0;
    top: calc(24 / 430 * 100vw);
  }
  .slick-dots {
    bottom: alc(-35 / 430 * 100vw);
  }
  .slick-next {
    right: 0;
  }
  .slick-prev {
    left: 0;
  }
  .slick-next::before {
    left: min(calc(22 / 430 * 100vw), 20px);
  }
  .slick-prev::before {
    border-width: 0 0 calc(3 / 430 * 100vw) calc(3 / 430 * 100vw);
    right: calc(22 / 430 * 100vw);
  }
}

.slick-slide {
  opacity: 0;
}

.slick-current.slick-slide {
  transition: all 0.5s;
  opacity: 1;
}

.slick-dots {
  max-width: 100px;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  left: calc(50% - 50px);
  top: 28vw;
}

@media screen and (max-width: 768px) {
  .slick-dots {
    top: 50vw;
  }
}

/*****************************************************************/
/* 追加
/*****************************************************************/
dd .wpcf7-form-control-wrap {
  width: 100%;
}
dd .wpcf7-form-control-wrap:not(:first-child) {
  margin-left: min(calc(10 / 1440 * 100vw), 10px);
}
section.thanks a,
.termsInput a {
  color: var(--dark-blue-color);
  text-decoration: underline;
}
/*****************************************************************/
/* thanks
/*****************************************************************/
.center-pc {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .center-pc {
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  section.thanks {
    margin-top: calc(70 / 430 * 100vw);
  }
}
