@charset "UTF-8";
/* リキッドレイアウト対応 */
/* 
    @include flex();
    */
/* 
    @include flex-center();
*/
.u-desktop {
  display: block;
}
@media screen and (max-width: 768px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-mobile {
    display: block;
  }
}

.u-small {
  display: none;
}
@media screen and (max-width: 480px) {
  .u-small {
    display: block;
  }
}

.u-mbs__120 {
  -webkit-margin-before: 120px;
          margin-block-start: 120px;
  -webkit-margin-before: 7.5rem;
          margin-block-start: 7.5rem;
}
@media screen and (max-width: 768px) {
  .u-mbs__120 {
    -webkit-margin-before: 5rem;
            margin-block-start: 5rem;
  }
}

.u-mbs__100 {
  -webkit-margin-before: 100px;
          margin-block-start: 100px;
  -webkit-margin-before: 6.25rem;
          margin-block-start: 6.25rem;
}
@media screen and (max-width: 768px) {
  .u-mbs__100 {
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
}

.u-mbs__35 {
  -webkit-margin-before: 35px;
          margin-block-start: 35px;
  -webkit-margin-before: 2.1875rem;
          margin-block-start: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .u-mbs__35 {
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
  }
}

.u-mbs__20 {
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}

.u-mbe__50 {
  -webkit-margin-after: 50px;
          margin-block-end: 50px;
  -webkit-margin-after: 3.125rem;
          margin-block-end: 3.125rem;
}
@media screen and (max-width: 768px) {
  .u-mbe__50 {
    -webkit-margin-after: 1.5625rem;
            margin-block-end: 1.5625rem;
  }
}

.u-mbe__35 {
  -webkit-margin-after: 35px;
          margin-block-end: 35px;
  -webkit-margin-after: 2.1875rem;
          margin-block-end: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .u-mbe__35 {
    -webkit-margin-after: 1.25rem;
            margin-block-end: 1.25rem;
  }
}

.u-mbe__20 {
  -webkit-margin-after: 20px;
          margin-block-end: 20px;
  -webkit-margin-after: 1.25rem;
          margin-block-end: 1.25rem;
}

.u-mbe__10 {
  -webkit-margin-after: 10px;
          margin-block-end: 10px;
  -webkit-margin-after: 0.625rem;
          margin-block-end: 0.625rem;
}

.u-pis__32 {
  -webkit-padding-start: 32px;
          padding-inline-start: 32px;
  -webkit-padding-start: 2rem;
          padding-inline-start: 2rem;
}
@media screen and (max-width: 768px) {
  .u-pis__32 {
    -webkit-padding-start: 0;
            padding-inline-start: 0;
  }
}

/* 画像の中央寄せ */
.aligncenter {
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}

/* figureタグで囲まれた画像の中央寄せ */
.aligncenter img {
  height: auto;
  max-width: 100%;
}

/* 画像右寄せ */
.alignright {
  height: auto;
  margin-left: auto;
  max-width: 100%;
}

/* figureタグで囲まれた画像右寄せ */
.alignright img {
  height: auto;
  max-width: 100%;
}

/* 位置指定のない画像 */
.alignnone {
  height: auto;
  max-width: 100%;
}

/* figureタグで囲まれた位置指定のない画像 */
.alignnone img {
  height: auto;
  max-width: 100%;
}

/* 自動折り返し有効化 */
pre {
  white-space: pre-wrap;
}

html {
  scroll-behavior: smooth;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
html {
  font-size: 16px;
}
@media (max-width: 1440px) {
  html {
    font-size: 1.1111111111vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-weight: bold;
  color: inherit;
  cursor: pointer;
}

/* ホバー 
a {
  text-decoration: none;
  transition: all 0.3s;
  color: inherit;
  cursor: pointer;
  transition: all 0.3s;
  &:hover {
    opacity: 0.8;
  }
}
*/
body {
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
          animation: fadeIn 2s ease 0s 1 normal;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  color: #111111;
  overflow-x: clip;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

fieldset,
legend,
button {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=date],
input[type=datetime-local],
input[type=month],
input[type=time] {
  margin: 0;
  padding: 4px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 16px;
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
input[type=number],
input[type=datetime],
input[type=week],
textarea,
select {
  margin-right: 0;
  margin-left: 0;
  padding: 4px;
  border: 1px solid #ccc;
  border-radius: 0;
  outline: none;
  background: none;
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  width: 100%;
  height: 100px;
  overflow: auto;
}

select {
  padding-right: 30px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALJJREFUeNrslssNgCAQRCmB0ijBEuyEEijBEijBEizBEnAPy0UBWVj8JDvJJB5w3gsXVUoikXwsBrpAPdRCNcOmxi2P2yZ3cIKGU9dOCY0b590pdXhPHOyRyMEDsi4JhVIlSvBYTRGgSNTAQ+pFyyBRC7e5AdchUQt3d1fYIsEGb5Fgh1MktlFwisQwOIeE4/pGuDfhLRLscIrEMHiNxHB4SeIxeMyMPxkenyUSyT9zCDAAj5btZ4c3zaUAAAAASUVORK5CYII=");
  background-repeat: no-repeat;
  background-size: 12px 12px;
  background-position: right 8px center;
}

.select {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.select select {
  width: 100%;
  padding-right: 24px;
  border: 1px solid #ccc;
  background: none;
  text-overflow: "";
  cursor: pointer;
}

.select::before {
  position: absolute;
  top: 13px;
  right: 8px;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666;
  pointer-events: none;
}

/* radio & checkbox */
input[type=radio],
input[type=checkbox] {
  display: none;
}

input[type=radio] + span,
input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  margin-left: 8px;
  padding: 10px 20px;
  color: #555;
  font-size: 22.4px;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1;
  cursor: pointer;
}

input[type=radio] + span::before,
input[type=checkbox] + span::before {
  position: absolute;
  top: 50%;
  left: -8px;
  width: 16px;
  height: 16px;
  content: "";
  margin-top: -8px;
  border: 1px solid #ccc;
  background: #fff;
}

/* fieldset */
fieldset {
  padding: 8px 16px;
  border: 1px solid #ccc;
}

legend {
  padding: 0 8px;
}

/* button */
input[type=submit],
input[type=reset],
input[type=button] {
  display: inline-block;
  margin: 0;
  padding: 10px 30px;
  border: 1px solid #999;
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  background: #efefef;
  color: #000;
  font-size: 20px;
  cursor: pointer;
}

/* ブラウザ対策
---------------------------------------------------------------------------- */
/* Firefox */
/* iOS */
input[type=submit]::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=search]::-webkit-search-decoration {
  display: none;
}

::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

input[type=search]::-webkit-search-decoration {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: textfield;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
          appearance: none;
  background: none;
  outline: none;
  font-size: 16px;
}

/* 挙動
---------------------------------------------------------------------------- */
/* hover */
input:hover,
textarea:hover,
select:hover {
  border-color: #666;
}

/* button */
input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover {
  border-color: #3498db;
  background: #3498db;
  color: #fff;
}

/* focus */
input:focus,
textarea:focus {
  border-color: #3498db;
}

input[type=submit]:focus,
input[type=reset]:focus,
input[type=button]:focus,
input[type=search]:focus {
  outline-offset: -2px;
}

/* disabled */
input:disabled,
input:disabled:hover,
textarea:disabled,
textarea:disabled:hover {
  border-color: #ccc;
  background: #eee;
  cursor: not-allowed;
}

input[type=radio]:disabled + span,
input[type=checkbox]:disabled + span {
  color: #ccc;
  cursor: not-allowed;
}

input[type=radio]:disabled + span::before,
input[type=checkbox]:disabled + span::before {
  border-color: #ccc;
  cursor: not-allowed;
}

/* バリデーション */
/* placeholder */
/***************************************
front
****************************************/
/***************************************
フッター
***************************************/
.footer {
  padding-block: 60px;
  padding-block: 3.75rem;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-block: 2.5rem;
  }
}

.footer__inner {
  width: min(100% - 40px, 750px);
  width: min(100% - 2.5rem, 46.875rem);
  margin-inline: auto;
}

.footer__button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 54px;
  min-height: 3.375rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFFFFF;
  gap: 10px;
  gap: 0.625rem;
  background-color: #304269;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
  border-radius: 1.875rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.footer__button:hover {
  opacity: 0.8;
}
.footer__button:hover img {
  -webkit-transform: translateX(0.3125rem);
          transform: translateX(0.3125rem);
}

.footer__button-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .footer__button-link {
    font-size: 0.875rem;
  }
}
.footer__button-link .text {
  display: block;
  -webkit-margin-after: 2px;
          margin-block-end: 2px;
  -webkit-margin-after: 0.125rem;
          margin-block-end: 0.125rem;
}

.footer__content-icon {
  width: 28px;
  width: 1.75rem;
  height: auto;
  aspect-ratio: 28/28;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.footer__content {
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer__content {
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
  }
}
.footer__content .text {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.6;
  color: #111111;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .footer__content .text {
    font-size: 0.625rem;
  }
}

.footer__copyright {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  color: #111111;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    font-size: 0.625rem;
  }
}
.footer__copyright .text {
  display: block;
}

/* -----------------------------------------------------------------
  ヘッダー
----------------------------------------------------------------- */
.header {
  width: 100%;
  height: 90px;
  height: 5.625rem;
}
@media screen and (max-width: 768px) {
  .header {
    height: 3.75rem;
  }
}

.header__inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo {
  width: 244px;
  width: 15.25rem;
  margin-inline: auto;
  height: 50px;
  height: 3.125rem;
  display: block;
  aspect-ratio: 244/50;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 9.375rem;
    height: auto;
  }
}

/* -----------------------------------------------------------------
    メインコンテンツ
----------------------------------------------------------------- */
.mv {
  width: 100%;
}

.mv__img-wrapper {
  width: 100%;
  display: block;
}
.mv__img-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.trouble {
  width: 100%;
  position: relative;
  padding-top: 40px;
  padding-top: 2.5rem;
}
.trouble::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#2FB7FF), to(#86F1FF));
  background: linear-gradient(to bottom, #2FB7FF, #86F1FF);
  z-index: -1;
}

.trouble__inner {
  width: 100%;
  max-width: 1000px;
  max-width: 62.5rem;
  margin-inline: auto;
  padding-inline: 20px;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 768px) {
  .trouble__inner {
    max-width: 100%;
    padding-inline: 0.9375rem;
  }
}

.trouble__title {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.4;
  font-weight: 900;
  color: #FFFFFF;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .trouble__title {
    font-size: 1.6875rem;
  }
}
@media screen and (max-width: 480px) {
  .trouble__title {
    font-size: 1.25rem;
  }
}

.trouble__img-wrapper {
  display: block;
  width: min(100%, 880px);
  width: min(100%, 55rem);
  margin-inline: auto;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .trouble__img-wrapper {
    width: 100%;
    margin-inline: auto;
  }
}
.trouble__img-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.trouble__item {
  width: 160px;
  width: 10rem;
  aspect-ratio: 160/160;
  margin-inline: auto;
  margin-top: -30px;
  margin-top: -1.875rem;
}
@media screen and (max-width: 768px) {
  .trouble__item {
    width: 6.25rem;
    aspect-ratio: 100/100;
    margin-top: -1.25rem;
  }
}
.trouble__item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/***************************************
タイミング
****************************************/
.timing__title {
  -webkit-margin-before: 10px;
          margin-block-start: 10px;
  -webkit-margin-before: 0.625rem;
          margin-block-start: 0.625rem;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  color: #304269;
}
@media screen and (max-width: 768px) {
  .timing__title {
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .timing__title {
    font-size: 0.875rem;
  }
}
.timing__title .text {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
.timing__title .text::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: #FFD25A;
}
@media screen and (max-width: 768px) {
  .timing__title .text::before {
    height: 5px;
  }
}
.timing__title .u-light-blue {
  color: #36BCFF;
  font-size: 60px;
  font-size: 3.75rem;
  line-height: 1.45;
}
@media screen and (max-width: 768px) {
  .timing__title .u-light-blue {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 480px) {
  .timing__title .u-light-blue {
    font-size: 1.25rem;
  }
}

.timing__content {
  width: min(100% - 40px, 1440px);
  width: min(100% - 2.5rem, 90rem);
  margin-inline: auto;
  background-color: #F2F0E7;
  border-radius: 11.25rem;
  -webkit-padding-before: 90px;
          padding-block-start: 90px;
  -webkit-padding-before: 5.625rem;
          padding-block-start: 5.625rem;
}
@media screen and (max-width: 768px) {
  .timing__content {
    width: 100%;
    -webkit-padding-before: 3.75rem;
            padding-block-start: 3.75rem;
    border-radius: 0;
  }
}

.timing__content-balloon {
  width: 51%;
  aspect-ratio: 744/107;
  margin-inline: auto;
  -webkit-margin-before: 60px;
          margin-block-start: 60px;
  -webkit-margin-before: 3.75rem;
          margin-block-start: 3.75rem;
  -webkit-margin-after: -50px;
          margin-block-end: -50px;
  -webkit-margin-after: -3.125rem;
          margin-block-end: -3.125rem;
}
@media screen and (max-width: 768px) {
  .timing__content-balloon {
    width: 80%;
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
    -webkit-margin-after: -1.875rem;
            margin-block-end: -1.875rem;
  }
}
.timing__content-balloon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.timing__content-items {
  width: min(100% - 40px, 750px);
  width: min(100% - 2.5rem, 46.875rem);
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  gap: 1.125rem;
}
@media screen and (max-width: 768px) {
  .timing__content-items {
    width: calc(100% - 1.875rem);
  }
}

.timing__content-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  gap: 1.25rem;
  background-color: #FFFFFF;
  padding: 30px;
  padding: 1.875rem;
  border-radius: 0.9375rem;
  border: 3px solid #304269;
}
@media screen and (max-width: 768px) {
  .timing__content-item {
    width: 80%;
    margin-inline: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  .timing__content-item {
    padding: 0.9375rem;
    gap: 0.625rem;
  }
}

.timing__content-item-img-wrapper {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 120px;
  width: 7.5rem;
  aspect-ratio: 120/120;
}
@media screen and (max-width: 480px) {
  .timing__content-item-img-wrapper {
    width: 5rem;
    aspect-ratio: 80/80;
  }
}
.timing__content-item-img-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.timing__content-item-body-title {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1;
  color: #304269;
}
@media screen and (max-width: 768px) {
  .timing__content-item-body-title {
    font-size: 1.25rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    line-height: 1.25;
  }
}
@media screen and (max-width: 480px) {
  .timing__content-item-body-title {
    font-size: 1.125rem;
  }
}
.timing__content-item-body-title .text {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 3px dashed #F26101;
}

.timing__content-item-body-text {
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #111111;
}
@media screen and (max-width: 768px) {
  .timing__content-item-body-text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .timing__content-item-body-text {
    font-size: 0.875rem;
  }
}

.comment-item {
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .comment-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 80%;
    margin-inline: auto;
  }
}

.comment__text {
  position: relative;
  display: inline-block;
  margin-right: 20px;
  padding: 20px 24px;
  padding: 1.25rem 1.5rem;
  border-radius: 0.9375rem;
  background-color: #ffd25a;
  text-align: left;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  color: #304269;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .16);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, .16);
}
@media screen and (max-width: 768px) {
  .comment__text {
    font-size: 1.125rem;
    -webkit-margin-after: 0.5rem;
            margin-block-end: 0.5rem;
  }
}
@media screen and (max-width: 480px) {
  .comment__text {
    font-size: 0.875rem;
    padding: 0.9375rem;
  }
}
.comment__text .u-strong {
  font-size: 24px;
  font-size: 1.5rem;
  color: #F20101;
  line-height: 0.7;
  border-bottom: 3px solid #F20101;
}
@media screen and (max-width: 768px) {
  .comment__text .u-strong {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .comment__text .u-strong {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 480px) {
  .comment__text .u-strong {
    font-size: 0.875rem;
  }
}

.comment__text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  border-style: solid;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent #ffd25a;
  translate: 100% -50%;
}
@media screen and (max-width: 768px) {
  .comment__text::after {
    bottom: 0;
    left: 50%;
    right: auto;
    top: auto;
    border-style: solid;
    border-width: 15px 10px 0 10px;
    border-color: #ffd25a transparent transparent;
    translate: -50% 100%;
  }
}

.comment__img {
  position: relative;
  z-index: 2;
  width: 180px;
  width: 11.25rem;
}
@media screen and (max-width: 768px) {
  .comment__img {
    width: 7.5rem;
  }
}
.comment__img img {
  display: block;
  width: 100%;
  height: auto;
}

.timing__second-content {
  width: min(100% - 40px, 1440px);
  width: min(100% - 2.5rem, 90rem);
  margin-inline: auto;
  -webkit-margin-before: 96px;
          margin-block-start: 96px;
  -webkit-margin-before: 6rem;
          margin-block-start: 6rem;
  background-color: #D9E8F5;
  border-radius: 11.25rem;
  padding-block: 96px 60px;
  padding-block: 6rem 3.75rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .timing__second-content {
    width: 100%;
    -webkit-margin-before: 5rem;
            margin-block-start: 5rem;
    border-radius: 0;
    padding-block: 2.5rem 1.25rem;
  }
}

.timing__second-content-img-wrapper {
  position: absolute;
  top: -45px;
  top: -2.8125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 526px;
  width: 32.875rem;
  aspect-ratio: 526/111;
}
@media screen and (max-width: 768px) {
  .timing__second-content-img-wrapper {
    width: 80%;
    top: -1.875rem;
  }
}
@media screen and (max-width: 480px) {
  .timing__second-content-img-wrapper {
    width: 90%;
  }
}
.timing__second-content-img-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.timing__second-content-card-wrapper {
  width: min(100% - 40px, 750px);
  width: min(100% - 2.5rem, 46.875rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  gap: 1.125rem;
}
@media screen and (max-width: 768px) {
  .timing__second-content-card-wrapper {
    width: calc(100% - 1.875rem);
    grid-template-columns: 1fr;
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
  }
}

.timing__second-content-card {
  width: 100%;
  background-color: #FFFFFF;
  padding: 25px 20px;
  padding: 1.5625rem 1.25rem;
  border-radius: 0.9375rem;
  border: 3px solid #304269;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  gap: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .timing__second-content-card {
    width: 70%;
    margin-inline: auto;
    padding: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .timing__second-content-card {
    width: 90%;
    padding: 0.9375rem;
  }
}

.timing__second-content-card-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 110px;
  width: 6.875rem;
  aspect-ratio: 110/110;
  margin-inline: auto;
}

.timing__second-content-card-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  color: #304269;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .timing__second-content-card-title {
    font-size: 1.125rem;
  }
}

.timing__second-content-card-text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.75;
  color: #111111;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .timing__second-content-card-text {
    font-size: 0.875rem;
  }
}

.timing__third-content {
  width: min(100% - 40px, 1440px);
  width: min(100% - 2.5rem, 90rem);
  margin-inline: auto;
  -webkit-margin-before: 96px;
          margin-block-start: 96px;
  -webkit-margin-before: 6rem;
          margin-block-start: 6rem;
  background-color: #F2F0E7;
  border-radius: 11.25rem;
  -webkit-padding-before: 96px;
          padding-block-start: 96px;
  -webkit-padding-before: 6rem;
          padding-block-start: 6rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .timing__third-content {
    width: 100%;
    -webkit-margin-before: 7.5rem;
            margin-block-start: 7.5rem;
    border-radius: 0;
    -webkit-padding-before: 5.625rem;
            padding-block-start: 5.625rem;
  }
}
@media screen and (max-width: 480px) {
  .timing__third-content {
    -webkit-margin-before: 3.75rem;
            margin-block-start: 3.75rem;
    -webkit-padding-before: 3.75rem;
            padding-block-start: 3.75rem;
  }
}

.timing__third-content-img-wrapper {
  width: 608px;
  width: 38rem;
  aspect-ratio: 608/111;
  margin-inline: auto;
  position: absolute;
  top: -45px;
  top: -2.8125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .timing__third-content-img-wrapper {
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  .timing__third-content-img-wrapper {
    width: 90%;
    top: -1.875rem;
  }
}
.timing__third-content-img-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.timing__third-content-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: min(100% - 40px, 750px);
  width: min(100% - 2.5rem, 46.875rem);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .timing__third-content-items {
    width: calc(100% - 1.875rem);
    gap: 1.875rem;
  }
}

.media-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .media-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .media-item.--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .media-item.--reverse .media__img-wrapper {
    position: relative;
    z-index: 5;
  }
}

.media__img-wrapper {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 185px;
  width: 11.5625rem;
  -webkit-padding-end: 10px;
          padding-inline-end: 10px;
  -webkit-padding-end: 0.625rem;
          padding-inline-end: 0.625rem;
}
@media screen and (max-width: 768px) {
  .media__img-wrapper {
    width: 9.375rem;
    position: relative;
    z-index: 2;
  }
}
.media__img-wrapper.--reverse {
  -webkit-padding-end: 0;
          padding-inline-end: 0;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}
.media__img-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 185/230;
  -o-object-fit: contain;
     object-fit: contain;
}

.media__body {
  position: relative;
  display: inline-block;
  margin-right: 25px;
  margin-right: 1.5625rem;
  padding: 30px;
  padding: 1.875rem;
  border-radius: 0.9375rem;
  background-color: #FFFFFF;
  text-align: left;
  -webkit-box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, .15);
          box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, .15);
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .media__body {
    width: 80%;
    margin-inline: auto;
    margin-right: auto;
    margin-bottom: 0;
    padding: 0.9375rem;
    -webkit-margin-after: 0.625rem;
            margin-block-end: 0.625rem;
  }
}
.media__body::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -25px;
  right: -1.5625rem;
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-width: 0.9375rem 0 0.9375rem 1.5625rem;
  border-color: transparent transparent transparent #FFFFFF;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .media__body::after {
    top: auto;
    bottom: -0.9375rem;
    left: 50%;
    right: auto;
    border-width: 0.9375rem 0.9375rem 0 0.9375rem;
    border-color: #FFFFFF transparent transparent transparent;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.media__body::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -27px;
  right: -1.6875rem;
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-width: 0.9375rem 0 0.9375rem 1.5625rem;
  border-color: transparent transparent transparent rgba(0, 0, 0, .1);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="3" /></filter></svg>#filter');
  -webkit-filter: blur(3px);
          filter: blur(3px);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .media__body::before {
    top: auto;
    bottom: -1.0625rem;
    left: 50%;
    right: auto;
    border-width: 0.9375rem 0.9375rem 0 0.9375rem;
    border-color: rgba(0, 0, 0, .1) transparent transparent transparent;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.media__body.--reverse {
  margin-left: 25px;
  margin-left: 1.5625rem;
  margin-right: 0;
  -webkit-box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, .15);
          box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, .15);
}
@media screen and (max-width: 768px) {
  .media__body.--reverse {
    margin-left: 0;
    width: 80%;
    margin-inline: auto;
  }
}
.media__body.--reverse::after {
  left: -25px;
  left: -1.5625rem;
  right: auto;
  border-width: 15px 25px 15px 0;
  border-width: 0.9375rem 1.5625rem 0.9375rem 0;
  border-color: transparent #FFFFFF transparent transparent;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .media__body.--reverse::after {
    top: auto;
    bottom: -0.9375rem;
    left: 50%;
    right: auto;
    border-width: 0.9375rem 0.9375rem 0 0.9375rem;
    border-color: #FFFFFF transparent transparent transparent;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.media__body.--reverse::before {
  left: -27px;
  left: -1.6875rem;
  right: auto;
  border-width: 15px 25px 15px 0;
  border-width: 0.9375rem 1.5625rem 0.9375rem 0;
  border-color: transparent rgba(0, 0, 0, .1) transparent transparent;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="3" /></filter></svg>#filter');
  -webkit-filter: blur(3px);
          filter: blur(3px);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .media__body.--reverse::before {
    top: auto;
    bottom: -1.0625rem;
    left: 50%;
    right: auto;
    border-width: 0.9375rem 0.9375rem 0 0.9375rem;
    border-color: rgba(0, 0, 0, .1) transparent transparent transparent;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.media__title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.4;
  color: #304269;
}
@media screen and (max-width: 768px) {
  .media__title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .media__title {
    font-size: 1.25rem;
  }
}

.media__text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #111111;
  font-weight: 500;
  -webkit-margin-before: 15px;
          margin-block-start: 15px;
  -webkit-margin-before: 0.9375rem;
          margin-block-start: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .media__text {
    font-size: 1rem;
  }
}

/***************************************
解決事例
***************************************/
.case__inner {
  width: min(100% - 40px, 1280px);
  width: min(100% - 2.5rem, 80rem);
  margin-inline: auto;
  -webkit-margin-before: 120px;
          margin-block-start: 120px;
  -webkit-margin-before: 7.5rem;
          margin-block-start: 7.5rem;
}
@media screen and (max-width: 768px) {
  .case__inner {
    width: calc(100% - 1.875rem);
    -webkit-margin-before: 3.75rem;
            margin-block-start: 3.75rem;
  }
}

.case__img-wrapper {
  width: 558px;
  width: 34.875rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .case__img-wrapper {
    width: 80%;
  }
}
.case__img-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 558/108;
  -o-object-fit: contain;
     object-fit: contain;
}

.case__items {
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
}

.case__item {
  width: min(100%, 1015px);
  width: min(100%, 63.4375rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 35px;
  gap: 2.1875rem;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}
.case__item:not(:first-child) {
  -webkit-margin-before: 64px;
          margin-block-start: 64px;
  -webkit-margin-before: 4rem;
          margin-block-start: 4rem;
}
@media screen and (max-width: 768px) {
  .case__item:not(:first-child) {
    -webkit-margin-before: 2.5rem;
            margin-block-start: 2.5rem;
  }
}
.case__item.--reverse {
  -webkit-margin-start: 0;
          margin-inline-start: 0;
  -webkit-margin-end: auto;
          margin-inline-end: auto;
}
@media screen and (max-width: 768px) {
  .case__item.--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 80%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .case__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 80%;
    margin-inline: auto;
    gap: 1.25rem;
  }
}

.case__title {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.4;
  color: #304269;
}
@media screen and (max-width: 768px) {
  .case__title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .case__title {
    font-size: 1.25rem;
  }
}

.case__text {
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #111111;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .case__text {
    font-size: 1rem;
  }
}
.case__text .text {
  display: block;
}
.case__text .text:not(:first-child) {
  -webkit-margin-before: 15px;
          margin-block-start: 15px;
  -webkit-margin-before: 0.9375rem;
          margin-block-start: 0.9375rem;
}

.case__item-img-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
@media screen and (max-width: 768px) {
  .case__item-img-wrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.case__item-img-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.case__comment {
  -webkit-margin-before: 60px;
          margin-block-start: 60px;
  -webkit-margin-before: 3.75rem;
          margin-block-start: 3.75rem;
}

.case__comment-img {
  display: block;
  width: 245px;
  width: 15.3125rem;
  position: relative;
  z-index: 1;
  -webkit-margin-start: -50px;
          margin-inline-start: -50px;
  -webkit-margin-start: -3.125rem;
          margin-inline-start: -3.125rem;
}
@media screen and (max-width: 768px) {
  .case__comment-img {
    width: 7.5rem;
    aspect-ratio: 120/120;
    -webkit-margin-start: -1.25rem;
            margin-inline-start: -1.25rem;
  }
}
.case__comment-img img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/***************************************
費用セクション
***************************************/
.fee {
  width: min(100% - 40px, 1440px);
  width: min(100% - 2.5rem, 90rem);
  margin-inline: auto;
  -webkit-margin-before: 120px;
          margin-block-start: 120px;
  -webkit-margin-before: 7.5rem;
          margin-block-start: 7.5rem;
  background-color: #F2F0E7;
  -webkit-padding-before: 80px;
          padding-block-start: 80px;
  -webkit-padding-before: 5rem;
          padding-block-start: 5rem;
  position: relative;
  border-radius: 11.25rem;
}
@media screen and (max-width: 768px) {
  .fee {
    width: 100%;
    -webkit-margin-before: 6.25rem;
            margin-block-start: 6.25rem;
    border-radius: 0;
  }
}
@media screen and (max-width: 480px) {
  .fee {
    -webkit-padding-before: 3.75rem;
            padding-block-start: 3.75rem;
  }
}

.fee__inner {
  width: min(100%, 750px);
  width: min(100%, 46.875rem);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .fee__inner {
    width: calc(100% - 1.875rem);
  }
}

.fee__title-img {
  display: block;
  width: 605px;
  width: 37.8125rem;
  height: auto;
  aspect-ratio: 605/108;
  margin-inline: auto;
  position: absolute;
  top: -40px;
  top: -2.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .fee__title-img {
    width: 80%;
    top: -1.875rem;
  }
}
.fee__title-img img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.fee__subtitle {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.1;
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
  color: #304269;
}
@media screen and (max-width: 768px) {
  .fee__subtitle {
    font-size: 1.125rem;
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
}

.fee__flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  gap: 1.125rem;
  -webkit-margin-before: 40px;
          margin-block-start: 40px;
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
}
@media screen and (max-width: 768px) {
  .fee__flow {
    gap: 0.3125rem;
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
  }
}

.fee__flow-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  gap: 0.9375rem;
  padding: 30px;
  padding: 1.875rem;
  background-color: #FFFFFF;
  border-radius: 0.9375rem;
  border: 3px solid #304269;
  border: 0.1875rem solid #304269;
  position: relative;
}
@media screen and (max-width: 768px) {
  .fee__flow-item {
    padding: 0.625rem;
    gap: 0.625rem;
  }
}

.fee__flow-number {
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  background-color: #304269;
  color: #FFFFFF;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.3;
  position: absolute;
  top: -15px;
  top: -0.9375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .fee__flow-number {
    width: 1.875rem;
    height: 1.875rem;
    font-size: 1rem;
  }
}

.fee__flow-content {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  color: #304269;
}
@media screen and (max-width: 768px) {
  .fee__flow-content {
    font-size: 1rem;
  }
}

.fee__required {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
  font-weight: bold;
  color: #304269;
}
@media screen and (max-width: 768px) {
  .fee__required {
    font-size: 1rem;
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
  }
}

.fee__dots {
  text-align: center;
  font-size: 30px;
  font-size: 1.875rem;
  margin-block: 20px;
  margin-block: 1.25rem;
  color: #304269;
}
@media screen and (max-width: 768px) {
  .fee__dots {
    font-size: 1.5rem;
    margin-block: 0.3125rem;
  }
}

.fee__section-icon {
  display: block;
  margin-inline: auto;
  width: 140px;
  width: 8.75rem;
}
.fee__section-icon img {
  display: block;
  margin-inline: auto;
  width: 100%;
  aspect-ratio: 140/140;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}

.fee__section-number {
  width: 42px;
  width: 2.625rem;
  margin-inline: auto;
  height: 43px;
  height: 2.6875rem;
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 1.2;
  background-color: #304269;
  display: grid;
  place-items: center;
  border-radius: 0.625rem;
}
@media screen and (max-width: 768px) {
  .fee__section-number {
    width: 1.875rem;
    height: 1.875rem;
    font-size: 1rem;
  }
}

.fee__section-title {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  color: #304269;
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
}
@media screen and (max-width: 768px) {
  .fee__section-title {
    font-size: 1.25rem;
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
  }
}

.fee__basic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  gap: 0.625rem;
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
}
@media screen and (max-width: 768px) {
  .fee__basic {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
  }
}

.fee__basic-label {
  background-color: #86ABD4;
  color: #FFFFFF;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 10px 15px;
  padding: 0.625rem 0.9375rem;
  border-radius: 0.625rem;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .fee__basic-label {
    font-size: 1rem;
    padding: 0.5rem 1.25rem;
  }
}

.fee__basic-price {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #111111;
}
@media screen and (max-width: 768px) {
  .fee__basic-price {
    font-size: 1.75rem;
  }
}

.fee__basic-tax {
  font-size: 18px;
  font-size: 1.125rem;
  color: #111111;
}
@media screen and (max-width: 768px) {
  .fee__basic-tax {
    font-size: 1rem;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
  }
}

.fee__additional {
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .fee__additional {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.625rem;
  }
}

.fee__additional-label {
  background-color: #86ABD4;
  color: #FFFFFF;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 10px 15px;
  padding: 0.625rem 0.9375rem;
  border-radius: 0.625rem;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .fee__additional-label {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
}

.fee__additional-note {
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .fee__additional-note {
    font-size: 1rem;
  }
}

.fee__additional-items {
  -webkit-margin-before: 25px;
          margin-block-start: 25px;
  -webkit-margin-before: 1.5625rem;
          margin-block-start: 1.5625rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .fee__additional-items {
    grid-template-columns: 1fr;
    gap: 0.9375rem;
    -webkit-margin-before: 3.125rem;
            margin-block-start: 3.125rem;
  }
}

.fee__additional-item {
  border: 3px solid #86ABD4;
  border: 0.1875rem solid #86ABD4;
  background-color: #fff;
  border-radius: 0.625rem;
  padding: 30px 20px 20px;
  padding: 1.875rem 1.25rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .fee__additional-item {
    padding: 1.25rem 0.625rem;
    width: 75%;
    margin-inline: auto;
  }
}

.fee__additional-item-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  gap: 0.625rem;
}

.fee__additional-item-label {
  background-color: #86ABD4;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  margin-inline: auto;
  -webkit-margin-before: -50px;
          margin-block-start: -50px;
  -webkit-margin-before: -3.125rem;
          margin-block-start: -3.125rem;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 768px) {
  .fee__additional-item-label {
    font-size: 1rem;
    padding: 0.5rem;
  }
}

.fee__additional-item-content {
  padding: 20px;
  padding: 1.25rem;
}
@media screen and (max-width: 768px) {
  .fee__additional-item-content {
    padding: 0.9375rem;
  }
}

.fee__additional-item-title {
  font-size: 18px;
  font-size: 1.125rem;
  color: #304269;
  font-weight: bold;
  line-height: 1.3;
  -webkit-margin-before: 10px;
          margin-block-start: 10px;
  -webkit-margin-before: 0.625rem;
          margin-block-start: 0.625rem;
}
@media screen and (max-width: 768px) {
  .fee__additional-item-title {
    font-size: 1rem;
  }
}

.fee__additional-item-detail {
  font-size: 16px;
  font-size: 1rem;
  background-color: #86ABD4;
  color: #FFFFFF;
  font-weight: 500;
  padding: 10px 15px;
  padding: 0.625rem 0.9375rem;
  border-radius: 0.625rem;
  -webkit-margin-before: 15px;
          margin-block-start: 15px;
  -webkit-margin-before: 0.9375rem;
          margin-block-start: 0.9375rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .fee__additional-item-detail {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
  }
}

.fee__additional-item-price {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #111111;
  -webkit-margin-before: 10px;
          margin-block-start: 10px;
  -webkit-margin-before: 0.625rem;
          margin-block-start: 0.625rem;
}
@media screen and (max-width: 768px) {
  .fee__additional-item-price {
    font-size: 1rem;
  }
}

.fee__additional-item-tax {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .fee__additional-item-tax {
    font-size: 0.75rem;
  }
}

.fee__note {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}
@media screen and (max-width: 768px) {
  .fee__note {
    width: 75%;
    margin-inline: auto;
    font-size: 0.75rem;
    -webkit-margin-before: 0.625rem;
            margin-block-start: 0.625rem;
  }
}

.fee__deposit {
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  gap: 0.625rem;
  color: #111111;
}
@media screen and (max-width: 768px) {
  .fee__deposit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.fee__deposit-price {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .fee__deposit-price {
    font-size: 1.25rem;
  }
}

.fee__deposit-note {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .fee__deposit-note {
    font-size: 0.875rem;
  }
}

.fee__deposit-section {
  -webkit-margin-before: 40px;
          margin-block-start: 40px;
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
}
@media screen and (max-width: 768px) {
  .fee__deposit-section {
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
  }
}

/***************************************
選ばれる理由セクション
***************************************/
.reason {
  -webkit-margin-before: 120px;
          margin-block-start: 120px;
  -webkit-margin-before: 7.5rem;
          margin-block-start: 7.5rem;
  background-color: #D9E8F5;
  width: min(100% - 40px, 1440px);
  width: min(100% - 2.5rem, 90rem);
  margin-inline: auto;
  padding-block: 93px 70px;
  padding-block: 5.8125rem 4.375rem;
  border-radius: 11.25rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .reason {
    width: 100%;
    -webkit-margin-before: 3.75rem;
            margin-block-start: 3.75rem;
    padding-block: 3.75rem 2.5rem;
    border-radius: 0;
  }
}

.reason__inner {
  width: min(100%, 750px);
  width: min(100%, 46.875rem);
  margin-inline: auto;
}

.reason__title {
  position: absolute;
  top: -40px;
  top: -2.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 490px;
  width: 30.625rem;
  height: auto;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .reason__title {
    width: 18.75rem;
    top: -1.25rem;
  }
}

.reason__title-img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.reason__item {
  background-color: #FFFFFF;
  border-radius: 0.9375rem;
  padding: 30px;
  padding: 1.875rem;
  border: 3px solid #304269;
  border: 0.1875rem solid #304269;
}
.reason__item:not(:first-child) {
  -webkit-margin-before: 18px;
          margin-block-start: 18px;
  -webkit-margin-before: 1.125rem;
          margin-block-start: 1.125rem;
}
@media screen and (max-width: 768px) {
  .reason__item {
    width: 80%;
    margin-inline: auto;
    padding: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .reason__item {
    width: 90%;
  }
}

.reason__item-title {
  text-align: center;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.4;
  color: #304269;
}
@media screen and (max-width: 768px) {
  .reason__item-title {
    font-size: 1.5rem;
  }
}

.reason__item-body {
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .reason__item-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1.25rem;
  }
}

.reason__item-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.reason__item-text .text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #111111;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .reason__item-text .text {
    font-size: 1rem;
  }
}

.reason__item-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.reason__item-img img {
  display: block;
  width: 280px;
  width: 17.5rem;
  height: auto;
  border-radius: 0.625rem;
}
@media screen and (max-width: 768px) {
  .reason__item-img img {
    width: 12.5rem;
    margin-inline: auto;
  }
}

/***************************************
CTAセクション
***************************************/
.cta {
  -webkit-margin-before: 120px;
          margin-block-start: 120px;
  -webkit-margin-before: 7.5rem;
          margin-block-start: 7.5rem;
  background-color: #F2F0E7;
}
@media screen and (max-width: 768px) {
  .cta {
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
  }
}

.cta__header {
  background-color: #304269;
  position: relative;
  padding-block: 40px;
  padding-block: 2.5rem;
  position: relative;
}
.cta__header::before {
  content: "";
  position: absolute;
  bottom: -39px;
  bottom: -2.4375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 45px 30px 0px 30px;
  border-color: #304269 transparent transparent transparent;
}
@media screen and (max-width: 768px) {
  .cta__header::before {
    border-width: 30px 20px 0px 20px;
    bottom: -1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .cta__header {
    -webkit-margin-after: 1.25rem;
            margin-block-end: 1.25rem;
  }
}

.cta__header-icon {
  position: absolute;
  top: -60px;
  top: -3.75rem;
  left: 49%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.cta__header-icon img {
  display: block;
  width: 120px;
  width: 7.5rem;
  height: auto;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .cta__header-icon img {
    width: 6.25rem;
  }
}

.cta__header-buttons {
  position: relative;
  z-index: 1;
  width: calc(100% - 2.5rem);
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (max-width: 480px) {
  .cta__header-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.625rem;
  }
}

.cta__header-button {
  background-color: #FFD25A;
  color: #111111;
  padding: 12px 18px;
  padding: 0.75rem 1.125rem;
  border-radius: 0.625rem;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #304269;
}
@media screen and (max-width: 768px) {
  .cta__header-button {
    font-size: 1rem;
    width: 80%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 480px) {
  .cta__header-button {
    font-size: 0.875rem;
    padding: 0.625rem;
  }
}

.cta__header-title {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.4;
  color: #FFFFFF;
  text-align: center;
  -webkit-margin-before: 15px;
          margin-block-start: 15px;
  -webkit-margin-before: 0.9375rem;
          margin-block-start: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .cta__header-title {
    font-size: 1.25rem;
  }
}

.cta__header-highlight {
  display: inline-block;
  color: #FFD25A;
  line-height: 1.2;
  border-bottom: 5px solid #FFD25A;
  border-bottom: 0.3125rem solid #FFD25A;
}
@media screen and (max-width: 768px) {
  .cta__header-highlight {
    font-size: 1.5rem;
  }
}

.cta__content {
  padding-block: 61px 50px;
  padding-block: 3.8125rem 3.125rem;
}
@media screen and (max-width: 768px) {
  .cta__content {
    padding-block: 2.5rem;
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
  }
}
@media screen and (max-width: 480px) {
  .cta__content {
    -webkit-margin-before: 0;
            margin-block-start: 0;
    padding-block: 1.5625rem;
    width: calc(100% - 1.875rem);
    margin-inline: auto;
  }
}

.cta__phone {
  text-align: center;
}

.cta__phone-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  color: #304269;
  position: relative;
}
.cta__phone-text::before {
  content: "";
  position: absolute;
  top: 55%;
  left: -15px;
  left: -0.9375rem;
  width: 2px;
  width: 0.125rem;
  height: 28px;
  height: 1.75rem;
  background-color: #304269;
  display: inline-block;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.cta__phone-text::after {
  content: "";
  position: absolute;
  top: 55%;
  right: -15px;
  right: -0.9375rem;
  width: 2px;
  width: 0.125rem;
  height: 28px;
  height: 1.75rem;
  background-color: #304269;
  display: inline-block;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .cta__phone-text {
    font-size: 1.125rem;
  }
}

.cta__phone-label {
  font-size: 20px;
  font-size: 1.25rem;
  -webkit-margin-after: 30px;
          margin-block-end: 30px;
  -webkit-margin-after: 1.875rem;
          margin-block-end: 1.875rem;
  color: #111111;
  -webkit-margin-before: 15px;
          margin-block-start: 15px;
  -webkit-margin-before: 0.9375rem;
          margin-block-start: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .cta__phone-label {
    font-size: 1.125rem;
    -webkit-margin-before: 0.625rem;
            margin-block-start: 0.625rem;
    -webkit-margin-after: 0.625rem;
            margin-block-end: 0.625rem;
  }
}

.cta__phone-number {
  -webkit-margin-after: 20px;
          margin-block-end: 20px;
  -webkit-margin-after: 1.25rem;
          margin-block-end: 1.25rem;
  width: 378px;
  width: 23.625rem;
  height: auto;
  margin-inline: auto;
}
@media screen and (max-width: 480px) {
  .cta__phone-number {
    width: 18.75rem;
    -webkit-margin-after: 0;
            margin-block-end: 0;
  }
}
.cta__phone-number img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.cta__phone-hours {
  font-size: 20px;
  font-size: 1.25rem;
  color: #111111;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .cta__phone-hours {
    font-size: 1.125rem;
  }
}

.cta__form {
  -webkit-margin-before: 40px;
          margin-block-start: 40px;
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cta__form {
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
  }
}

.cta__form-label {
  font-size: 20px;
  font-size: 1.25rem;
  color: #111111;
}
@media screen and (max-width: 768px) {
  .cta__form-label {
    font-size: 1.125rem;
  }
}

.cta__form-button {
  width: 318px;
  width: 19.875rem;
  height: 64px;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-inline: auto;
  gap: 10px;
  gap: 0.625rem;
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
  background-color: #57B196;
  color: #FFFFFF;
  padding: 15px;
  padding: 0.9375rem;
  border-radius: 1.875rem;
  font-weight: bold;
  font-size: 16px;
  font-size: 1rem;
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.cta__form-button:hover {
  opacity: 0.8;
}
.cta__form-button:hover img {
  -webkit-transform: translateX(0.625rem);
          transform: translateX(0.625rem);
}
@media screen and (max-width: 768px) {
  .cta__form-button {
    -webkit-margin-before: 0.3125rem;
            margin-block-start: 0.3125rem;
    font-size: 1rem;
    padding: 0.9375rem 1.5625rem;
  }
}
.cta__form-button .text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .cta__form-button .text {
    font-size: 1.125rem;
  }
}
.cta__form-button img {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 30px;
  width: 1.875rem;
  height: auto;
  aspect-ratio: 30/34;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.cta__form-note {
  font-size: 16px;
  font-size: 1rem;
  color: #111111;
  -webkit-margin-before: 5px;
          margin-block-start: 5px;
  -webkit-margin-before: 0.3125rem;
          margin-block-start: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .cta__form-note {
    font-size: 0.875rem;
  }
}

/***************************************
詳細情報セクション
***************************************/
.detail {
  background-color: #D9E8F5;
  padding-block: 80px;
  padding-block: 5rem;
}
@media screen and (max-width: 768px) {
  .detail {
    padding-block: 2.5rem;
  }
}

.detail__inner {
  width: min(100% - 40px, 760px);
  width: min(100% - 2.5rem, 47.5rem);
  margin-inline: auto;
}

.detail__title {
  text-align: center;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: bold;
  color: #304269;
  line-height: 1.4;
}
@media only screen and (max-width: 1100px) {
  .detail__title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .detail__title {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .detail__title {
    font-size: 1.125rem;
  }
}

.detail__items {
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .detail__items {
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
  }
}

.detail__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
}
@media screen and (max-width: 768px) {
  .detail__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 70%;
            flex: 0 0 70%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 480px) {
  .detail__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 85%;
            flex: 0 0 85%;
  }
}

.detail__item-link {
  display: block;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.detail__item-link:hover {
  -webkit-transform: translateY(-0.3125rem);
          transform: translateY(-0.3125rem);
}
.detail__item-link img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.9375rem;
  -webkit-box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, .1);
          box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, .1);
}
/*# sourceMappingURL=style.css.map */
