@charset "UTF-8";
/*-------------------------
  カラー[s] sass_module
-------------------------*/
/*---カラー[e]--*/
/*-------------------------
  メディアクエリ[s] sass_module
-------------------------*/
/*---メディアクエリ[e]--*/
/* 変数 */
:root {
  /* フォーム */
  --c-form-parts__border: #ff6e93;
  --c-form-parts__border-radius: 4px;
  --c-form-parts__color: #fffbfc;
  --form-parts__color-hover: #fff1f4;
  --form-parts__color-focus: #ff4373;
}

/*-------------------------
  フォント
-------------------------*/
/*-------------------------
  pc-only, sp-only
-------------------------*/
@media screen and (min-width: 769px) {
  .is-pc-only {
    display: block;
  }
  .is-sp-only {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .is-sp-only {
    display: block;
  }
  .is-pc-only {
    display: none;
  }
}
/*-------------------------
  TOPに戻るボタン
-------------------------*/
/* ノーマルテキスト 18px */
.c-text-regular {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .c-text-regular {
    font-size: 16px;
  }
}

.c-text-small {
  font-size: 16px;
}
.c-text-small.--noto {
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .c-text-small {
    font-size: 12px;
  }
}

.c-text-bold {
  font-weight: 700;
}

/* CTAボタン */
.c-cta-button {
  /* フォントサイズを元にした計算用変数 */
  --fontsize-calc: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
  max-width: 335px;
  min-width: 270px;
  min-height: 56px;
  position: relative;
  background-color: #ff6e93;
  padding-inline: 52px;
  padding-block: 12px;
  border-radius: 8px;
  font-size: var(--fontsize-calc);
  font-family: "heisei-kaku-gothic-std", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  text-decoration: none;
  box-shadow: calc(var(--fontsize-calc) * 0.0833333333) calc(var(--fontsize-calc) * 0.1666666667) calc(var(--fontsize-calc) * 0.2083333333) 0px rgba(255, 110, 147, 0.25);
  transition: background-color 0.4s;
  white-space: pre-wrap;
  word-break: keep-all;
}
.c-cta-button:hover {
  background-color: #0899b2;
  box-shadow: calc(var(--fontsize-calc) * 0.0833333333) calc(var(--fontsize-calc) * 0.1666666667) calc(var(--fontsize-calc) * 0.2083333333) 0px rgba(23, 168, 192, 0.25);
}
.c-cta-button:focus-visible {
  outline: 7px solid #0852b2;
}
.c-cta-button.--outline {
  background-color: #fff;
  border: solid 2px #ff6e93;
  color: #ff6e93;
  transition: all 0.4s;
}
.c-cta-button.--outline:hover {
  color: #0899b2;
  border: solid 2px #0899b2;
  box-shadow: calc(var(--fontsize-calc) * 0.0833333333) calc(var(--fontsize-calc) * 0.1666666667) calc(var(--fontsize-calc) * 0.2083333333) 0px rgba(23, 168, 192, 0.25);
}
@media screen and (max-width: 768px) {
  .c-cta-button {
    --fontsize-calc: 16px;
  }
}

/* 矢印付きボタン */
.c-button-arrow {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  text-decoration: none;
  border: solid 2px #ff4373;
  border-radius: 8px;
  height: 90px;
  min-width: 200px;
  max-width: 335px;
  transition: all 0.4s;
  font-size: 18px;
}
.c-button-arrow .c-button-rect__text {
  font-weight: 700;
  color: #ff4373;
  padding: 14px 20px;
  transition: color 0.4s;
  white-space: pre-wrap;
  word-break: keep-all;
  text-align: left;
}
.c-button-arrow .c-button-rect__arrow {
  flex-shrink: 0;
  width: 52px;
  display: grid;
  place-content: center;
  color: #ff4373;
  transition: color 0.4s;
}
.c-button-arrow:hover {
  border: solid 2px #0553c9;
}
.c-button-arrow:hover .c-button-rect__arrow, .c-button-arrow:hover .c-button-rect__text {
  color: #0553c9;
}
@media screen and (max-width: 768px) {
  .c-button-arrow {
    font-size: 16px;
    height: 80px;
  }
  .c-button-arrow .c-button-rect__text {
    padding: 12px 16px;
  }
}

.c-heading-icon__circle {
  --font-size: 32px;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-size: var(--font-size);
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.2em;
}
.c-heading-icon__circle::before {
  content: "";
  width: calc(var(--font-size) * 0.68); /* SVG の表示サイズ */
  aspect-ratio: 1/1;
  background-image: url("../img/icon_circle.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: calc(var(--font-size) / 2);
}
@media screen and (max-width: 768px) {
  .c-heading-icon__circle {
    --font-size: 24px;
  }
}

.c-heading-icon__flower {
  --font-size: 24px;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-size: var(--font-size);
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.2em;
}
.c-heading-icon__flower::before {
  content: "";
  width: calc(var(--font-size) * 0.68); /* SVG の表示サイズ */
  aspect-ratio: 1/1;
  background-image: url("../img/icon_flower.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: calc(var(--font-size) / 2);
}
@media screen and (max-width: 768px) {
  .c-heading-icon__flower {
    --font-size: 20px;
  }
}

/* 下矢印見出し */
.c-heading-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.1em;
}
.c-heading-arrow::after {
  content: "";
  width: 200px;
  height: 20px;
  background-color: #049eb8;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.c-heading-arrow .c-heading-arrow__shaft {
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 52px;
  font-size: 18px;
  line-height: 1;
  white-space: nowrap; /* ← 改行させない */
  background-color: #049eb8;
  color: #fff;
}

/* 見出し - 太字 */
.c-heading-bold {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 500;
  font-size: 24px;
  white-space: pre-wrap;
  word-break: keep-all;
}
@media screen and (max-width: 768px) {
  .c-heading-bold {
    font-size: 18px;
  }
}

.c-headline-bottom-line-short {
  --color-01: #17a8c0;
  --color-02: #3bc4db;
  display: inline;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  text-align: center;
  padding-bottom: 0.8em;
}
.c-headline-bottom-line-short::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--color-01) 0%, var(--color-02) 100%);
}
@media screen and (max-width: 768px) {
  .c-headline-bottom-line-short {
    font-size: 18px;
  }
}

/* 中黒テキスト */
.c-text-dot {
  font-size: 20px;
  display: flex;
  align-items: flex-start;
  gap: 0.2em;
}
.c-text-dot::before {
  content: "・";
}
@media screen and (max-width: 768px) {
  .c-text-dot {
    font-size: 16px;
  }
}

/* ※印付きテキスト */
.c-text-note {
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 0.1em;
}
.c-text-note.--white {
  color: #fff;
  letter-spacing: 0.05;
}
.c-text-note::before {
  content: "※";
}
@media screen and (max-width: 768px) {
  .c-text-note {
    font-size: 12px;
  }
}

/* テキストリンク */
.c-text-link {
  color: #078399;
  text-decoration: underline;
  font-weight: 500;
}
.c-text-link:hover {
  color: #ff4373;
}

/* 囲み文字 */
.c-text-label {
  display: inline-block;
  background-color: #ddf1f4;
  color: #0e879c;
  font-size: 18px;
  letter-spacing: 0.05em;
  padding: 0.7em 1.5em;
  border-radius: 999px;
}
@media screen and (max-width: 768px) {
  .c-text-label {
    padding: 0.3em 1.2em;
  }
}

/* 英単語区切りでの改行不可 */ 
.c-break-all {
  word-break: break-all;
}

/* フォーム中身 */
/* 一行フォーム */
.c-form-contents__01-line {
  background-color: var(--c-form-parts__color);
  border: solid 1px var(--c-form-parts__border);
  border-radius: var(--c-form-parts__border-radius);
  padding: 1em;
  font-size: 1em;
  line-height: 1.2;
  color: var(--c-form-text);
  flex: 1;
  min-width: 0;
}
.c-form-contents__01-line:focus, .c-form-contents__01-line:focus-visible {
  background-color: var(--form-parts__color-hover);
}
.c-form-contents__01-line:-webkit-autofill {
  box-shadow: 0 0 0 1000px #fffbfc inset;
}

/* 入力済みテキスト */
.c-form-contents__text {
  color: var(--c-form-text);
}

/* エラーテキスト */
.c-form-contents__error {
  color: #ff4373;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 0.2em;
  /* 1番目のみmargin-top付与 */
}
.c-form-contents__error:nth-of-type(1) {
  margin-top: 8px;
}
.c-form-contents__error::before {
  content: "・";
}

/* 共通レイアウト max-width:1200px */
.p-max-1200 {
  max-width: 1200px;
  width: calc(100% - 80px);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-max-1200 {
    width: calc(100% - 40px);
  }
}

/* 共通レイアウト margin-top */
.p-margin-top--M {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-margin-top--M {
    margin-top: 16px;
  }
}

.p-margin-top--L {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-margin-top--L {
    margin-top: 32px;
  }
}

.p-margin-top--XL {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .p-margin-top--XL {
    margin-top: 60px;
  }
}

/* CTAボタン */
.p-cta {
  width: 242px;
  position: fixed;
  top: 4px;
  right: 20px;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .p-cta {
    top: initial;
    bottom: 12px;
    right: initial;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* アイコン＆矢印つきボタンリンク */
.p-button-icon-and-arrow {
  display: flex;
  width: 100%;
  max-width: 480px;
  padding: 20px 40px;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border: solid 1px #5a6c7d;
  border-radius: 999px;
  color: #2d3748;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  transition: background-color 0.4s;
}
.p-button-icon-and-arrow .p-button-icon-and-arrow__icon-text {
  display: flex;
  align-items: center;
  gap: 0.6em;
}
.p-button-icon-and-arrow .p-button-icon-and-arrow__icon-text.--tel {
  font-family: "roboto", sans-serif;
  font-size: 28px;
}
.p-button-icon-and-arrow .p-button-icon-and-arrow__arrow-wrap {
  width: 64px;
  aspect-ratio: 1/1;
  border-radius: 999px;
  background-color: #f5f9fa;
  display: grid;
  place-items: center;
  transition: background-color 0.4s;
}
.p-button-icon-and-arrow .--icon-head {
  max-width: 64px;
  width: 6vw;
  aspect-ratio: 1/1;
}
.p-button-icon-and-arrow .--icon-arrow {
  max-width: 28px;
  width: 6vw;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .p-button-icon-and-arrow {
    padding: 16px 28px;
    width: 335px;
    font-size: 14px;
  }
  .p-button-icon-and-arrow .p-button-icon-and-arrow__icon-text.--tel {
    font-size: 20px;
  }
  .p-button-icon-and-arrow .p-button-icon-and-arrow__arrow-wrap {
    width: 40px;
  }
  .p-button-icon-and-arrow .--icon-head {
    width: 40px;
    aspect-ratio: 1/1;
  }
  .p-button-icon-and-arrow .--icon-arrow {
    width: 20px;
    aspect-ratio: 1/1;
  }
}
.p-button-icon-and-arrow:hover {
  background-color: #e7f7fa;
}
.p-button-icon-and-arrow:hover .p-button-icon-and-arrow__arrow-wrap {
  background-color: #fff;
}

/* ボタン横並び */
.p-button-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.p-button-group a,
.p-button-group button {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-button-group {
    flex-direction: column-reverse;
    gap: 28px;
  }
}

/* ヘッダーメニュ－ */
.p-menu__block {
  --text-color: #ff6e93;
  display: inline-flex;
  gap: 24px;
}
.p-menu__block .p-menu__list a {
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 8px;
}
.p-menu__block .p-menu__list a:hover {
  opacity: 0.8;
}
.p-menu__block .p-menu__icon {
  width: 36px;
  aspect-ratio: 1/1;
}
.p-menu__block .p-menu__text {
  display: block;
  font-size: 16px;
  font-weight: 700;
  font-family: "heisei-kaku-gothic-std", sans-serif;
  line-height: 1.4;
  color: var(--text-color);
}
.p-menu__block .p-menu__text.--blue {
  --text-color: #17a8c0;
}
.p-menu__block .p-menu__text.--pink {
  --text-color: #ff6e93;
}
@media screen and (max-width: 768px) {
  .p-menu__block {
    gap: 16px;
  }
  .p-menu__block .p-menu__list a {
    gap: 4px;
  }
  .p-menu__block .p-menu__icon {
    width: 26px;
  }
  .p-menu__block .p-menu__text {
    font-size: 10px;
  }
}

/* 対応案内 */
.p-info {
  max-width: 750px;
  margin-inline: auto;
  background-color: #fff;
  padding-block: 10px 12px;
  padding-inline: 12px;
  border-radius: 20px 12px 12px 36px;
  font-family: "heisei-maru-gothic-std", sans-serif;
  position: relative;
  filter: drop-shadow(0px 2px 8px rgba(23, 168, 192, 0.15));
}
.p-info::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -20px;
  background-image: url("../img/img_woman.png");
  background-size: contain;
  width: 158px;
  aspect-ratio: 158/233;
}
.p-info .p-info__leadtext {
  font-size: 24px;
  color: #ff4373;
  text-align: center;
  line-height: 1.8;
}
.p-info .p-info__subtext {
  font-size: 18px;
  color: #5a6c7d;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 12px;
}
.p-info .p-info__list-wrap {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.p-info .p-info__list {
  display: flex;
}
.p-info .p-info__list dt {
  margin-right: 1.4vw;
  flex-shrink: 0;
}
.p-info .p-info__list dd {
  min-width: 102px;
  flex: 1;
  text-align: center;
  font-size: 18px;
  color: #5a6c7d;
  position: relative;
}
.p-info .p-info__list dd:not(:first-child) {
  border-left: 2px solid #ddf1f4;
}
.p-info .p-info__list dd:first-child {
  padding-left: 12px;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .p-info {
    max-width: 400px;
    margin-top: 132px;
    padding-block: 20px;
    border-radius: 24px;
  }
  .p-info::after {
    top: -100px;
    right: 20px;
    background-size: cover;
    width: 100px;
    height: 100px;
  }
  .p-info .p-info__leadtext {
    font-size: 20px;
  }
  .p-info .p-info__list-wrap {
    margin-top: 16px;
    flex-direction: column;
    gap: 16px;
  }
  .p-info .p-info__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 12px;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .p-info .p-info__list dt {
    margin-right: 0;
  }
  .p-info .p-info__list dd {
    min-width: 102px;
    flex: 1;
    text-align: center;
    font-size: 18px;
    color: #5a6c7d;
    position: relative;
  }
  .p-info .p-info__list dd:not(:first-child) {
    border-left: none;
  }
  .p-info .p-info__list dd:first-child {
    padding-left: 0;
    padding-right: 0;
  }
}

/* ログアウトメッセージ */
.p-logout-message {
  margin-bottom: 40px;
  padding: 20px;
  background-color: #fff3f6;
  border: 1px solid #f02143;
  border-radius: 12px;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #f02143;
}
@media screen and (max-width: 768px) {
  .p-logout-message {
    font-size: 14px;
    margin-bottom: 32px;
    padding: 16px;
  }
}

/* 白背景コンテンツブロック */
.p-contents-block {
  background-color: #fff;
  padding-block: 80px;
  padding-inline: 40px;
}
.p-contents-block .p-contents-block__inner.--1col {
  text-align: center;
}
.p-contents-block .p-contents-block__inner.--2col {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}
.p-contents-block .p-contents-block__block {
  position: relative;
  flex: 1;
  text-align: center;
}
.p-contents-block .p-contents-block__block:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  height: 280%;
  border-left: 2px solid #ddf1f4;
}
.p-contents-block .p-contents-block__img {
  width: 120px;
  margin-inline: auto;
  margin-bottom: 52px;
}
.p-contents-block .p-contents-block__img > img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-contents-block {
    padding-block: 0;
    padding-inline: 16px;
  }
  .p-contents-block .p-contents-block__inner.--2col {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .p-contents-block .p-contents-block__block {
    border-top: 2px solid #ddf1f4;
    padding-block: 40px;
  }
  .p-contents-block .p-contents-block__block:nth-child(1) {
    border-top: none;
  }
  .p-contents-block .p-contents-block__block:nth-child(2)::before {
    border-left: none;
  }
  .p-contents-block .p-contents-block__img {
    width: 88px;
    margin-bottom: 40px;
  }
}

/* 箇条書きリスト */
.p-dot-list {
  display: grid;
  gap: 4px;
}

/* カード */
.p-card {
  max-width: 584px;
  background-color: #fff;
  border-radius: 24px;
  padding-block: 48px 56px;
  padding-inline: 48px;
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  gap: 4px;
}
.p-card .p-card__header {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  gap: 32px;
}
.p-card .p-card__title {
  font-size: 28px;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 700;
}
.p-card .p-card__thumbnail {
  width: 120px;
  aspect-ratio: 1/1;
}
.p-card .p-card__info-text-wrap {
  margin-top: 20px;
}
.p-card .p-card__info-text {
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-size: 18px;
  color: #5a6c7d;
  display: flex;
}
.p-card .p-card__info-text dt {
  flex-shrink: 0;
}
.p-card .p-card__table {
  margin-inline: auto;
  width: 100%;
  border: solid 2px #049eb8;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #049eb8;
  border-collapse: collapse;
  table-layout: fixed;
}
.p-card .p-card__table .col-time {
  width: 120px;
}
.p-card .p-card__table .col-day {
  width: calc((100% - 160px) / 6);
}
.p-card .p-card__table th,
.p-card .p-card__table td {
  border-left: solid 2px #049eb8;
  padding-block: 4px;
  vertical-align: middle;
}
.p-card .p-card__table th {
  background-color: #ddf1f4;
  height: 60px;
}
.p-card .p-card__table td {
  height: 100px;
}
.p-card .p-card__link {
  text-align: center;
}
.p-card .p-card__TEL-text {
  color: #ff4373;
  font-family: "heisei-kaku-gothic-std", sans-serif;
  font-weight: 700;
  font-size: 18px;
}
.p-card .p-card__TEL-number {
  color: #ff4373;
  font-family: "roboto", sans-serif;
  font-weight: 700;
  font-size: 38px;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color 0.2s;
  line-height: 1.3;
}
.p-card .p-card__TEL-number:hover {
  color: #0852b2;
}
.p-card .p-card__note {
  color: #049eb8;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-card .p-card__note {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .p-card {
    padding-block: 36px 40px;
    padding-inline: 16px;
  }
  .p-card .p-card__header {
    gap: 16px;
  }
  .p-card .p-card__title {
    font-size: 24px;
  }
  .p-card .p-card__thumbnail {
    width: 80px;
  }
  .p-card .p-card__info-text {
    font-size: 16px;
  }
  .p-card .p-card__table {
    width: 100%;
    max-width: 400px;
    font-size: 14px;
  }
  .p-card .p-card__table .col-time {
    width: 90px;
  }
  .p-card .p-card__table .col-day {
    width: calc((100% - 90px) / 6);
  }
  .p-card .p-card__table th,
  .p-card .p-card__table td {
    padding-block: 2px;
  }
  .p-card .p-card__table td {
    height: 80px;
  }
  .p-card .p-card__TEL-text {
    font-size: 16px;
  }
  .p-card .p-card__TEL-number {
    font-size: 34px;
  }
}

/* 緑囲みテキストエリア */
.p-textarea-border {
  background-color: rgba(255, 255, 255, 0.5);
  padding-block: 56px 40px;
  padding-inline: 40px;
  border: solid 4px #049eb8;
  border-radius: 20px;
  position: relative;
}
.p-textarea-border .p-textarea-border__heading {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -32px;
}
.p-textarea-border .p-textarea-border__button {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-textarea-border {
    padding-inline: 20px;
  }
  .p-textarea-border .p-textarea-border__text {
    text-align: left;
  }
}

/* ------------------------------------------------- */
/* フォーム */
.p-form {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 24px;
  margin-inline: auto;
  max-width: 400px;
  /* 項目名 */
}
.p-form .p-form__heading {
  color: #2d3748;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  min-width: 190px;
  line-height: 1.4;
}
.p-form {
  /* サブテキスト */
}
.p-form .p-form__subtext {
  color: #8b8b8b;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 8px;
}
.p-form {
  /* 注釈 */
}
.p-form .p-form__note {
  justify-content: flex-end;
  margin-top: 4px;
}
.p-form {
  /* フォーカスリング制御 */
}
.p-form * {
  outline: none;
}
.p-form *:focus-visible {
  outline: 2px solid var(--form-parts__color-focus);
}
.p-form {
  /* スマホ */
}
@media screen and (max-width: 768px) {
  .p-form {
    gap: 20px;
    /* 項目名 */
  }
  .p-form .p-form__heading {
    font-size: 16px;
  }
}

/* フォームコンテンツ */
.p-form__contents {
  color: #4c4c4c;
  margin-top: 12px;
}
.p-form__contents input::-moz-placeholder {
  color: #8f8185;
}
.p-form__contents input::placeholder {
  color: #8f8185;
}
.p-form__contents {
  /* 一行テキスト（＋小テキスト） */
}
.p-form__contents .p-form-contents__text {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  min-width: 0;
}
.p-form__contents {
  /* パスワード表示非表示 */
}
.p-form__contents .p-form-contents__password {
  position: relative;
}
.p-form__contents .p-form-contents__password i {
  font-size: 18px;
  color: #615d5f;
  width: 40px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  display: grid;
  place-items: center;
}
.p-form__contents .p-form-contents__password i:hover {
  color: #a59fa2;
}
.p-form__contents {
  /* スマホ */
}
@media screen and (max-width: 768px) {
  .p-form__contents {
    font-size: 16px;
  }
}

/* ------------------------------------------------- */
html {
  font-family: "Roboto", "Noto Sans JP", "Zen Kaku Gothic New", "Yu Gothic", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

body {
  background-color: #ffffff;
  color: #2d3748;
  overflow-x: hidden !important;
  position: relative;
  line-height: 1.7;
}

/* ヘッダー */
.l-header {
  padding: 16px 32px;
  line-height: 0;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.l-header picture img {
  max-width: 450px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.l-header .branch-info {
  max-width: 120px;
  position: absolute;
  width: 100%;
  z-index: 1000;
  right: 3%;
  top: 10px;
}
.l-header .branch-info .text {
  fill: #fff;
}
@media screen and (max-width: 768px) {
  .l-header {
    padding: 16px 20px;
  }
  .l-header picture img {
    max-width: 150px;
  }
}

/* メインセクション */
.l-main {
  background-color: #ddf1f4;
  padding-block: 100px;
}
.l-main .l-main__card {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.l-main .l-main__survey {
  max-width: 500px;
  margin-top: 108px;
  margin-inline: auto;
  text-align: center;
}
@media screen and (max-width: 1044px) {
  .l-main {
    padding-block: 64px;
  }
  .l-main .l-main__card {
    max-width: 584px;
    grid-template-columns: 1fr;
    margin-inline: auto;
    gap: 24px;
  }
  .l-main .l-main__survey {
    margin-top: 64px;
  }
}

/* Heroセクション */
.l-hero {
  width: 100%;
  background-color: #fff;
}
.l-hero .l-hero__img {
  display: block;
  max-width: 1200px;
  margin-inline: auto;
}
.l-hero .l-hero__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1200/377;
}
@media screen and (max-width: 768px) {
  .l-hero .l-hero__img {
    max-width: 500px;
  }
  .l-hero .l-hero__img img {
    aspect-ratio: 768/498;
  }
}

/* お問い合わせセクション */
.l-contact {
  background-color: #fff;
  padding-block: 80px 100px;
}
.l-contact .l-contact__text {
  margin-top: 40px;
}
.l-contact .l-contact__btn {
  margin-top: 52px;
}
.l-contact .l-contact__btn-wrap {
  display: flex;
  flex-wrap: wrap;
  row-gap: 40px;
  -moz-column-gap: 64px;
       column-gap: 64px;
}
.l-contact .l-contact__btn-wrap li {
  text-align: center;
}
.l-contact .l-contact__btn-sub-text {
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .l-contact {
    padding-block: 60px 68px;
  }
  .l-contact .l-contact__btn-wrap {
    justify-content: center;
    row-gap: 20px;
  }
  .l-contact .l-contact__btn-wrap li {
    text-align: center;
  }
}

/* フッター */
.l-footer {
  background-color: #5a6c7d;
  padding-block: 20px 56px;
  padding-inline: 20px;
}
.l-footer .l-footer__text {
  justify-content: flex-end;
}/*# sourceMappingURL=style.css.map */