@charset "UTF-8";
/* ==========================
   Foundation
   ==========================*/
/*
html5doctor.com Reset Stylesheet
v1.4
2009-07-27
Author: Richard Clark - http://richclarkdesign.com
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1.25;
}

article, aside, dialog, figure, footer, header,
hgroup, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

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

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*--メインカラー--*/
:root {
  /* 基本色 */
  --primary-color: #E46479; /* メインカラー */
  --secondary-color: #FCA519; /* サブカラー */
  --accent-color: #F38F00; /* アクセントカラー */
  /* 薄めたバリエーション */
  --primary-color-light: #FCEAED; /* メインカラー（薄め） */
  --secondary-color-light: #FFECD2; /* サブカラー（薄め） */
  --accent-color-light: #FCE8CB; /* アクセントカラー（薄め） */
  /* 濃いバリエーション */
  --primary-color-dark: #E36082; /* メインカラー（薄め） */
  --secondary-color-dark: #55731F; /* サブカラー（薄め） */
  --accent-color-dark: #FFFBEB; /* アクセントカラー（薄め） */
  /* フォント */
  --ttl-font: "Noto Sans JP", sans-serif;
  /* フォントサイズ */
  --font-size-lg: 3.2rem; /* タイトル */
  --font-size-md: 2rem; /* サブタイトル */
  --font-size-sm: 1.8rem; /* 通常テキスト */
}

/* スマホ向けのフォントサイズ */
@media (max-width: 1000px) {
  :root {
    --font-size-lg: 2.6rem; /* タイトル */
    --font-size-md: 1.8rem; /* サブタイトル */
    --font-size-sm: 1.6rem; /* 通常テキスト */
  }
}
html {
  width: 100%;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background-color: #FAFAFA;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 500;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-text-size-adjust: 100%;
  min-width: 320px;
}

body.is-open {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

a {
  text-decoration: none;
  color: #464646;
  font-size: inherit;
  line-height: inherit;
}

input[type=submit]:hover,
a,
button {
  -webkit-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}

input[type=submit]:hover,
a:hover,
button:hover {
  opacity: 0.7;
}

strong,
em {
  font-style: normal;
  font-weight: 300;
}

ul,
li {
  list-style: none;
  word-wrap: break-word;
}

p {
  word-wrap: break-word;
}

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

address {
  font-style: normal;
}

button,
input[type=submit],
input[type=reset] {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
}

/* ==========================
   Layout
   ==========================*/
.l-footer {
  padding: 75px 0;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  background-color: #fff;
  width: 100%;
  height: 55px;
  padding: 0 0 0 20px;
  -webkit-transition: height 0.3s;
  transition: height 0.3s;
}
@media screen and (max-width: 1000px) {
  .l-header {
    padding: 5px 3% 5px 3%;
  }
}
@media screen and (min-width: 1001px) {
  .l-header {
    height: 70px;
  }
}
.l-header__inr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: bold;
  gap: 15px;
  max-width: 1920px;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .l-header__inr {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1001px) {
  .l-header__inr {
    font-size: 2.5rem;
  }
}

.l-contents {
  position: relative;
  padding-top: 55px;
}
@media screen and (min-width: 1001px) {
  .l-contents {
    padding-top: 70px;
  }
}

.l-inr {
  width: 100%;
  margin: 0 auto;
  padding: 0 5vw;
  max-width: 1040px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 1001px) {
  .l-inr {
    padding: 0 20px;
  }
}

.l-inr-form {
  max-width: 578px;
  margin: 0 auto;
}

/* ==========================
   Object
   ==========================*/
.c-btn {
  display: block;
  font-size: 1.9rem;
  line-height: 1.5;
  font-weight: bold;
  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;
  padding: 1.0925em 1em 1.0925em 2.9em;
  border-radius: 0.895em;
  color: #fff;
  background: url(../images/common/icon_document.svg) no-repeat;
  background-size: 26px 32px;
  background-position: 29px center;
  background-color: var(--primary-color);
  cursor: pointer;
  position: relative;
}

.c-btn.c-btn--white {
  background-image: url(../images/common/icon_document02.svg);
  color: var(--primary-color);
  background-color: #fff;
}

.c-btn.c-btn--mail {
  background-image: url(../images/common/icon_mail.svg);
  background-size: 32px 24px;
  background-position: 24px center;
  background-color: var(--secondary-color);
}

.c-ttl {
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
}
.c-ttl__logo {
  margin-bottom: 4px;
}
.c-ttl__sub {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 29px;
}
.c-ttl__sub span:nth-of-type(odd) {
  color: var(--primary-color);
}
.c-ttl__sub span:nth-of-type(even) {
  color: var(--secondary-color);
}

.c-ttl-border {
  font-size: min(8vw, 3.6rem);
  font-weight: 600;
  text-align: center;
  padding: 60px 0 12px;
  position: relative;
}
.c-ttl-border::before {
  content: "";
  background: url(../images/common/logo02.svg) no-repeat;
  background-size: contain;
  display: block;
  width: 93px;
  height: 52px;
  position: absolute;
  top: 0%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.c-ttl-border::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 395px;
  height: 5px;
  position: absolute;
  bottom: 0%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, var(--secondary-color)), color-stop(50%, var(--primary-color)));
  background: linear-gradient(to right, var(--secondary-color) 50%, var(--primary-color) 50%);
}

.c-hamburger {
  display: block;
  width: 20px;
  height: 14px;
  position: relative;
  z-index: 2002;
  right: 0;
  cursor: pointer;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
}
@media screen and (min-width: 1001px) {
  .c-hamburger {
    display: none;
  }
}
.c-hamburger span {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 20px;
  height: 2px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  background: #273436;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-hamburger span:nth-of-type(1) {
  margin-top: 6px;
  width: 12px;
}
.c-hamburger span:nth-of-type(3) {
  margin-top: -6px;
}

.c-hamburger span:nth-child(1) {
  -webkit-animation: click-header-sp-bar-1-close 0.8s cubic-bezier(0.45, 0.12, 0.04, 0.96) forwards;
  animation: click-header-sp-bar-1-close 0.8s cubic-bezier(0.45, 0.12, 0.04, 0.96) forwards;
}

.c-hamburger span:nth-child(2) {
  -webkit-animation: click-header-sp-bar-2-close 0.8s cubic-bezier(0.45, 0.12, 0.04, 0.96) forwards;
  animation: click-header-sp-bar-2-close 0.8s cubic-bezier(0.45, 0.12, 0.04, 0.96) forwards;
}

.c-hamburger span:nth-child(3) {
  -webkit-animation: click-header-sp-bar-3-close 0.8s cubic-bezier(0.45, 0.12, 0.04, 0.96) forwards;
  animation: click-header-sp-bar-3-close 0.8s cubic-bezier(0.45, 0.12, 0.04, 0.96) forwards;
}

.is-open .c-hamburger span:nth-child(1) {
  margin-top: -5px;
  width: 25px;
  -webkit-animation: click-header-sp-bar-1-open 0.8s cubic-bezier(0.45, 0.12, 0.04, 0.96) forwards;
  animation: click-header-sp-bar-1-open 0.8s cubic-bezier(0.45, 0.12, 0.04, 0.96) forwards;
}

.is-open .c-hamburger span:nth-child(2) {
  -webkit-animation: click-header-sp-bar-2-open 0.8s cubic-bezier(0.45, 0.12, 0.04, 0.96) forwards;
  animation: click-header-sp-bar-2-open 0.8s cubic-bezier(0.45, 0.12, 0.04, 0.96) forwards;
}

.is-open .c-hamburger span:nth-child(3) {
  width: 25px;
  margin-top: 5px;
  -webkit-animation: click-header-sp-bar-3-open 0.8s cubic-bezier(0.45, 0.12, 0.04, 0.96) forwards;
  animation: click-header-sp-bar-3-open 0.8s cubic-bezier(0.45, 0.12, 0.04, 0.96) forwards;
}

.c-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.c-header__logo_img {
  width: 71px;
}
@media screen and (max-width: 1000px) {
  .c-header__logo_img {
    width: auto;
    height: 100%;
  }
}
.c-header__logo_img img {
  width: 100%;
  height: 100%;
}
.c-header__logo_txt {
  font-size: 1rem;
  font-weight: 600;
  padding: 9px 0 0 8px;
}
.c-header__menu {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  z-index: 2001;
  overflow: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1000px) {
  .c-header__menu {
    background-color: #fff;
    position: fixed;
    top: 55px;
    right: 0;
    bottom: 0;
    width: 100%;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
}
.c-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 3%;
}
@media screen and (max-width: 1000px) {
  .c-header__nav {
    display: block;
    overflow: auto;
    padding: 22px 5vw 60px;
  }
}
.c-header__nav ul {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 10px 5%;
  max-width: 1228px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1001px) {
  .c-header__nav ul {
    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;
    text-align: left;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0;
    padding-right: 3%;
  }
}
.c-header__nav li > a {
  font-size: 1.4rem;
  display: block;
  font-weight: 600;
}
@media screen and (max-width: 1000px) {
  .c-header__nav li > a {
    text-align: center;
    border-bottom: 1px solid #FCEAED;
    padding: 15px 0;
  }
}
.c-header__btn {
  font-size: 1.4rem;
  font-weight: 600;
  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;
  padding: 0.8em;
  width: 241px;
  color: #fff;
  margin: 0 auto;
  background-color: var(--primary-color);
}
@media screen and (min-width: 1001px) {
  .c-header__btn {
    height: 100%;
    margin: 0;
  }
}

.is-open .c-header__menu {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.c-footer {
  background-color: var(--primary-color-light);
}

.c-footer__content {
  padding: 45px 0 45px;
}

.c-footer__box:not(:last-of-type) {
  margin-bottom: 30px;
}

.c-footer__ttl {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.c-footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 25px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-footer__menu li {
  margin-left: -1px;
  color: #fff;
  padding: 0 20px;
  border-right: 1px solid #000;
  border-left: 1px solid #000;
  text-align: center;
  line-height: 1.4;
}

.c-footer__menu li a {
  color: #000;
}

.c-footer__copyright {
  color: #fff;
  background-color: #585858;
  padding: 8px 0;
  text-align: center;
  text-align: center;
}

@media screen and (min-width: 801px) {
  .c-footer__content {
    padding: 45px 0 75px;
  }
  .c-footer__box:not(:last-of-type) {
    margin-bottom: 60px;
  }
}
.c-info-card {
  padding: 7px;
  background-color: #F5F5F5;
  border: 1px solid #DEDEDE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3%;
}
@media screen and (min-width: 1001px) {
  .c-info-card {
    padding: 20px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 3%;
  }
}
.c-info-card__img {
  width: 38%;
}
@media screen and (min-width: 1001px) {
  .c-info-card__img {
    width: 28%;
  }
}
.c-info-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-info-card__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-bottom: 5px;
}
.c-info-card__ttl {
  font-size: min(3.5vw, 1.5rem);
  line-height: 1.66;
  margin-bottom: 5px;
  font-weight: bold;
}
@media screen and (min-width: 1001px) {
  .c-info-card__ttl {
    font-size: 2.2rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }
}
.c-info-card__link {
  text-align: right;
  font-size: 1.3rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 10px;
}
.c-info-card__link::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 2px #3B4043;
  border-right: solid 2px #3B4043;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-right: 5px;
}

.c-message-box {
  border: 10px solid var(--accent-color-light);
  padding: 25px 8%;
}
@media screen and (min-width: 1001px) {
  .c-message-box {
    padding: 25px 35px 30px;
  }
}
.c-message-box__label {
  color: var(--accent-color);
  font-weight: 500;
  font-size: 1.8rem;
}
.c-message-box__ttl {
  display: block;
  font-size: 1.5rem;
  line-height: 1.66;
  font-weight: bold;
}
.c-message-box__txt {
  font-size: 1.6rem;
  line-height: 1.875;
}

.c-message-box.c-message-box--secondary {
  border-color: var(--secondary-color-light);
}
.c-message-box.c-message-box--secondary .c-message-box__label {
  color: #B9CC44;
}

.c-page-nav {
  background-color: #FCF5DB;
  border-radius: 10px;
  padding: 19px;
}
.c-page-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 730px;
  margin: 0 auto;
}
.c-page-nav li {
  min-width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-page-nav li::before {
  content: "●";
  color: var(--accent-color);
  font-size: 1rem;
  margin-right: 7px;
}
.c-page-nav li a {
  text-decoration: underline;
}

.c-table th {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: bold;
  padding: 0.6em 1em;
  text-align: left;
}
.c-table td {
  padding: 0.694em 1em;
  text-align: left;
  line-height: 1.4;
}
.c-table th.c-table__th--gray {
  background-color: #F7F7F7;
}
.c-table--vertical th, .c-table--vertical td {
  border: 1px solid #EBE5CC;
}
.c-table--vertical th {
  background-color: var(--primary-color);
}
.c-table--horizontal th, .c-table--horizontal td {
  border: 1px solid #E3EBAB;
}
.c-table--horizontal th {
  background-color: var(--secondary-color-light);
}
.c-table--horizontal td {
  font-size: 1.6rem;
  padding: 0.5em 1em;
}
.c-table .c-table__price {
  font-size: 1.8rem;
  color: var(--accent-color);
  font-weight: bold;
}

.c-table.c-table--form {
  table-layout: fixed;
}
.c-table.c-table--form th {
  padding: 0.9em 1em;
}
@media screen and (min-width: 1001px) {
  .c-table.c-table--form th {
    width: 214px;
  }
}
.c-table.c-table--form th.c-table__sub {
  font-size: 1.3rem;
  line-height: 1.15;
  padding: 0.5em 1em;
  height: 50px;
}
.c-table.c-table--form td {
  padding: 0.6em 0.7em;
  font-size: 1.3rem;
  vertical-align: middle;
}
.c-table.c-table--form td .c-form__note {
  font-size: 1rem;
}
@media screen and (max-width: 1000px) {
  .c-table.c-table--form th, .c-table.c-table--form td {
    display: block;
  }
  .c-table.c-table--form th {
    padding: 0.5em 1em;
  }
  .c-table.c-table--form td {
    padding: 1em 0.7em;
    font-size: 1.3rem;
  }
}

.c-table-scroll {
  overflow-x: auto;
  width: 100%;
}

.c-list li {
  text-indent: -1em;
  padding-left: 1em;
}
.c-list li::before {
  content: "●";
  color: #B9CD44;
}

.c-form__required {
  color: #fff;
  background-color: var(--accent-color);
  font-size: 1.1rem;
  border-radius: 2px;
  padding: 0.03em 0.3em;
}
.c-form__label-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-form__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.c-form__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.c-form__note {
  font-size: 1.2rem;
  line-height: 1.66;
}
.c-form__note span {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--accent-color);
}

input[type=tel],
input[type=text],
input[type="email "],
input[type=email],
input[type=date],
input[type=number] {
  width: 100%;
  height: 30px;
  border: 1px solid #B4B7BB;
  border-radius: 4px;
  padding: 0px 10px;
}

.c-form__select {
  position: relative;
  display: inline-block;
}
.c-form__select::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 0;
  border-top: solid 2px #72B249;
  border-right: solid 2px #72B249;
  display: inline-block;
  width: 5px;
  height: 5px;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
  pointer-events: none;
}
.c-form__select select {
  width: 100%;
  height: 30px;
  border: 1px solid #B4B7BB;
  border-radius: 4px;
  padding: 0px 30px 0 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.c-form__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  cursor: pointer;
}

.c-form__radio:not(:last-of-type) {
  margin-bottom: 10px;
}

input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #C6C6C6;
  border-radius: 9999px;
  cursor: pointer;
}

input[type=radio]:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  border-radius: 9999px;
  background-color: var(--secondary-color-dark);
}

input[readonly] {
  background-color: #F2F0F0;
}

select:disabled {
  color: #000;
  background-color: #F2F0F0;
}

.c-error {
  background-color: #FFE5ED;
  border-radius: 10px;
  padding: 10px 18px;
}
.c-error__ttl {
  color: #FF5586;
  font-size: 1.5rem;
  font-weight: bold;
}
.c-error__list {
  color: #273436;
  font-size: 1.3rem;
  line-height: 2.07;
  max-width: 515px;
  margin: 0 auto;
}

.c-loading {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  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;
  padding: 20px;
}
.c-loading.is-loaded {
  opacity: 0;
  visibility: hidden;
}
.c-loading__inr {
  width: min(50vw, 200px);
}
.c-loading img {
  width: 100%;
}

.c-cta {
  color: #fff;
  background: url(../images/common/logo03.svg) no-repeat, url(../images/common/logo03.svg) no-repeat;
  background-position: calc(50% - 615px) 50%, calc(50% + 615px) 50%;
  background-color: var(--primary-color);
  padding: 30px 0 40px;
}
.c-cta__ttl {
  font-size: min(6vw, 3.5rem);
  font-weight: 600;
  text-align: center;
  padding-bottom: 0.8em;
  word-break: keep-all;
  position: relative;
}
.c-cta__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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 35px;
  max-width: 888px;
  margin: 20px auto 0;
}
@media screen and (min-width: 1001px) {
  .c-cta__body {
    margin: 0 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 1001px) {
  .c-cta__contact {
    width: 570px;
    margin-top: -7px;
  }
}
.c-cta__contact_label {
  font-size: 3rem;
  text-align: center;
  font-weight: 600;
}
.c-cta__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  max-width: 570px;
  margin: 0 auto;
}
.c-cta__btn > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 280px;
}
.c-cta__tel-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1000px) {
  .c-cta__tel-wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.c-cta__tel-wrap::before {
  content: "";
  display: block;
  background: url(../images/common/icon_tel.svg) no-repeat;
  background-size: contain;
  width: min(18vw, 68px);
  height: min(18vw, 68px);
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
@media screen and (min-width: 1001px) {
  .c-cta__tel-wrap::before {
    margin: 5px 15px 0 0;
  }
}
.c-cta__tel-label {
  font-size: 1.8rem;
  font-weight: 600;
}
.c-cta__tel-no a {
  color: #fff;
  font-size: min(10vw, 4.4rem);
  font-weight: 600;
  line-height: 1;
  display: block;
  text-align: left;
}
.c-cta__tel-no span {
  font-size: min(4vw, 1.7rem);
  display: block;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .c-cta__tel-no span {
    margin-top: 1vw;
  }
}
.c-cta__logo {
  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;
  width: min(50vw, 245px);
  height: min(50vw, 245px);
  background-color: #fff;
  border-radius: 50%;
  margin: 0 auto;
}
@media screen and (min-width: 1001px) {
  .c-cta__logo {
    margin: 0;
  }
}
@media screen and (max-width: 1000px) {
  .c-cta__logo img {
    width: 73%;
  }
}
.c-cta.c-cta--logo {
  background: var(--primary-color);
}
.c-cta.c-cta--logo .c-cta__body {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.c-cta.c-cta--logo .c-cta__ttl span {
  position: relative;
  display: inline-block;
  padding-bottom: 0.4em;
  border-bottom: 3px solid #FFFFFF;
}
.c-cta.c-cta--logo .c-cta__ttl span::after {
  content: "";
  position: absolute;
  width: 37px;
  height: 34px;
  background: url(../images/common/deco_balloon.png) no-repeat;
  background-size: contain;
  right: 27.5%;
  top: 100%;
}

.c-news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: 1px solid #9B9CA1;
  padding: 1em 0 1.5em;
  gap: 2.5em;
}
@media screen and (max-width: 1000px) {
  .c-news__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.c-news__item:last-of-type {
  border-bottom: none;
}
.c-news__date {
  color: #9A9CA2;
  font-weight: 600;
  padding-left: 20px;
  background: url(../images/common/icon_time.png) 0 50% no-repeat;
  background-size: 16px auto;
}
.c-news__ttl {
  line-height: 1.5;
  font-weight: 400;
}

.c-tab {
  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: 1000px) {
  .c-tab {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.c-tab__btn {
  color: #9D9EA3;
  font-size: min(5vw, 2.4rem);
  font-weight: 600;
  padding: 0 0.8em;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-tab__btn:hover {
  opacity: 0.7;
}
.c-tab__btn.is-active {
  color: var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
}

.p-top-mv {
  position: relative;
  background-color: #F9E8EB;
  overflow: hidden;
  padding: 80px 0 0;
}
@media screen and (min-width: 1001px) {
  .p-top-mv {
    height: 700px;
    padding: 48px 0 0;
  }
}
.p-top-mv__inr {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0 5vw;
  margin: 0 auto;
  max-width: 1380px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 1001px) {
  .p-top-mv__inr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0 20px;
  }
}
@media screen and (max-width: 1000px) {
  .p-top-mv__img {
    text-align: center;
  }
  .p-top-mv__img img {
    width: 100%;
    max-width: 400px;
  }
}
@media screen and (min-width: 1001px) {
  .p-top-mv__img {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-105%);
            transform: translateX(-105%);
  }
  .p-top-mv__img img {
    width: 719px;
    -o-object-fit: cover;
       object-fit: cover;
    max-width: none;
  }
}
.p-top-mv__content {
  position: relative;
  margin-bottom: 30px;
}
@media screen and (min-width: 1001px) {
  .p-top-mv__content {
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 718px;
    width: 64%;
  }
}
.p-top-mv__logo {
  text-align: center;
  margin-bottom: 3vw;
}
@media screen and (min-width: 1001px) {
  .p-top-mv__logo {
    margin-bottom: 9px;
  }
}
.p-top-mv__ttl {
  text-align: center;
  font-size: min(8vw, 6.1rem);
  font-weight: 600;
  line-height: 1.24;
  margin-bottom: 38px;
}
@media screen and (min-width: 1001px) {
  .p-top-mv__ttl {
    font-size: min(5vw, 6.1rem);
  }
}
.p-top-mv__chatch {
  font-size: min(5.5vw, 2.1rem);
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 5px;
  color: var(--primary-color);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
@media screen and (min-width: 1001px) {
  .p-top-mv__chatch {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-top-mv__chatch::before, .p-top-mv__chatch::after {
  content: "";
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--primary-color);
  margin: 0px 0px 2px;
}
.p-top-mv__chatch::before {
  -webkit-transform: rotate(50deg);
          transform: rotate(50deg);
}
.p-top-mv__chatch::after {
  -webkit-transform: rotate(-50deg);
          transform: rotate(-50deg);
}
@media screen and (max-width: 1000px) {
  .p-top-mv__chatch::before, .p-top-mv__chatch::after {
    margin: 0px 5px 2px;
  }
  .p-top-mv__chatch::before {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  .p-top-mv__chatch::after {
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}
.p-top-mv__function {
  background-color: #fff;
  border-radius: 18px;
  padding: 13px 20px 13px;
  margin-bottom: 37px;
}
@media screen and (max-width: 1000px) {
  .p-top-mv__function {
    display: grid;
    gap: 20px 0;
    padding: min(13px, 5%) min(20px, 3%);
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  }
}
@media screen and (min-width: 1001px) {
  .p-top-mv__function {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.p-top-mv__function li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-top-mv__function-ttl {
  font-size: 1.2rem;
  font-weight: 600;
  color: #101010;
  text-align: center;
}
.p-top-mv__function-img {
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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;
}
.p-top-mv__contact {
  position: relative;
  display: inline-block;
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 1001px) {
  .p-top-mv__contact {
    padding: 0 5%;
  }
}
.p-top-mv__contact-txt {
  font-size: 2.1rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 13px;
  word-break: keep-all;
}
@media screen and (min-width: 1001px) {
  .p-top-mv__contact-txt::after {
    content: "";
    position: absolute;
    background: url(../images/top/deco_operator.png) no-repeat;
    background-size: contain;
    width: 131px;
    height: 176px;
    bottom: 0;
    left: 96.5%;
  }
}
.p-top-mv__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.p-top-mv__btn > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .p-top-mv__btn > * {
    min-width: 280px;
  }
}
@media screen and (min-width: 1001px) {
  .p-top-mv__btn > * {
    width: 280px;
  }
}

.p-top-lead {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: justify;
}
@media screen and (min-width: 1001px) {
  .p-top-lead {
    text-align: center;
  }
}

.p-top-intro {
  padding: 110px 0 0;
  margin-top: -65px;
}
.p-top-intro__ttl {
  color: var(--primary-color);
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
}
.p-top-intro__txt {
  text-align: justify;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.7;
}
@media screen and (min-width: 1001px) {
  .p-top-intro__txt {
    text-align: center;
  }
}
.p-top-intro__txt span {
  font-size: 2.2rem;
}

.p-top-accomplishment {
  padding: 110px 0 120px;
}
.p-top-accomplishment__box {
  border: 1px solid #E56479;
  padding: 28px 20px;
  border-radius: 10px;
  position: relative;
}
.p-top-accomplishment__box-ttl {
  font-size: 2.6rem;
  font-weight: 600;
  padding: 0 20px;
  background-color: #fff;
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-top-accomplishment__box-txt {
  color: var(--primary-color);
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  background-color: #FEFACA;
  padding: 5px;
  word-break: keep-all;
}
@media screen and (min-width: 1001px) {
  .p-top-accomplishment__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 1001px) {
  .p-top-accomplishment__list li {
    width: 31%;
    margin-bottom: 0;
    max-width: 483px;
  }
}
@media screen and (max-width: 1000px) {
  .p-top-accomplishment__list li:not(:last-of-type) {
    margin-bottom: 40px;
  }
}
.p-top-accomplishment__img {
  margin-bottom: 15px;
  position: relative;
}
.p-top-accomplishment__img figcaption {
  font-size: 1.1rem;
  line-height: 1;
  padding: 0.806em 1.25em;
  color: #fff;
  font-weight: 600;
  background-color: var(--secondary-color);
  position: absolute;
  top: 0;
  left: 0;
}
.p-top-accomplishment__ttl {
  font-weight: 600;
  margin-bottom: 28px;
}

.p-top-about {
  padding: 110px 0 235px;
  margin-top: -5px;
}
.p-top-about__catch {
  color: var(--primary-color);
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 1001px) {
  .p-top-about__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 1000px) {
  .p-top-about__list li {
    max-width: 380px;
    margin: 0 auto 60px;
  }
}
@media screen and (min-width: 1001px) {
  .p-top-about__list li {
    width: 30%;
  }
}
.p-top-about__img {
  text-align: center;
  margin-bottom: 5px;
}
@media screen and (min-width: 1001px) {
  .p-top-about__img {
    height: 240px;
  }
}
.p-top-about li:nth-of-type(2) .p-top-about__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (min-width: 1001px) {
  .p-top-about li:nth-of-type(2) img {
    max-width: none;
  }
}
@media screen and (min-width: 1001px) {
  .p-top-about li:nth-of-type(3) .p-top-about__img {
    text-align: right;
  }
}
.p-top-about__ttl {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
}

.p-top-reasons {
  padding-top: 240px;
  margin-top: -240px;
}
.p-top-reasons__inr {
  background-color: var(--primary-color-light);
  padding: 0 0 200px;
}
.p-top-reasons .c-ttl {
  -webkit-transform: translateY(-162px);
          transform: translateY(-162px);
  margin-bottom: -110px;
}
.p-top-reasons__list {
  counter-reset: number 0;
}
@media screen and (min-width: 1001px) {
  .p-top-reasons__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
  }
}
@media screen and (min-width: 1001px) {
  .p-top-reasons__list li:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.p-top-reasons__list li:not(:last-of-type) {
  margin-bottom: 80px;
}
.p-top-reasons__img {
  max-width: 438px;
  margin: 0 auto;
}
@media screen and (min-width: 1001px) {
  .p-top-reasons__img {
    width: 43%;
    max-width: none;
  }
}
.p-top-reasons__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 30px;
}
@media screen and (min-width: 1001px) {
  .p-top-reasons__content {
    padding-top: 7px;
    margin-bottom: 0;
  }
}
.p-top-reasons__no {
  color: var(--primary-color);
  font-size: 3.1rem;
  font-weight: 800;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  position: relative;
  margin-bottom: 8px;
}
.p-top-reasons__no::after {
  font-size: 6.9rem;
  line-height: 1;
  counter-increment: number 1;
  content: counter(number);
  color: var(--secondary-color);
  font-weight: 600;
  margin-left: 14px;
}
.p-top-reasons__no::before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  background: url(../images/top/deco_reasons.png) no-repeat;
  background-size: contain;
  position: absolute;
  right: 34px;
  top: -18px;
}
.p-top-reasons__ttl {
  font-size: 2.5rem;
  font-weight: 600;
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 10px;
  margin-bottom: 24px;
}
@media screen and (min-width: 1001px) {
  .p-top-reasons__ttl {
    font-size: 2.7rem;
  }
}

.p-top-cost {
  padding: 60px 0 0;
  margin-top: -60px;
}
.p-top-cost__inr {
  background-color: var(--primary-color);
  padding: 65px 0;
}
.p-top-cost__box {
  padding: 40px 5vw 30px;
  background-color: #fff;
  border-radius: 19px;
}
@media screen and (min-width: 1001px) {
  .p-top-cost__box {
    padding: 40px 0 90px;
  }
}
.p-top-cost__box-inr {
  max-width: 960px;
  margin: 0 auto;
}
.p-top-cost__dl {
  margin-bottom: 10vw;
}
@media screen and (min-width: 1001px) {
  .p-top-cost__dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
  }
}
.p-top-cost__dl dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-top-cost__dl dt {
  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-size: 2.2rem;
  font-weight: 600;
  color: var(--secondary-color);
  background-color: var(--secondary-color-light);
  width: 28%;
  line-height: 1;
  padding: 1.0688em 0.5em;
}
@media screen and (max-width: 1000px) {
  .p-top-cost__dl dt {
    width: 100%;
  }
}
@media screen and (min-width: 1001px) {
  .p-top-cost__dl dt {
    width: 164px;
    margin: 0 6px 0 0;
  }
}
.p-top-cost__dl dd {
  color: #707070;
  font-size: min(4vw, 1.4rem);
  font-weight: 600;
}
@media screen and (max-width: 1000px) {
  .p-top-cost__dl dd {
    width: 100%;
    padding: 1em;
    text-align: center;
  }
}
.p-top-cost__dl-cost {
  display: inline-block;
  font-size: min(17vw, 8.9rem);
  line-height: 1;
  color: var(--primary-color);
  font-weight: bold;
}
@media screen and (min-width: 1001px) {
  .p-top-cost__dl-cost {
    font-size: 8.9rem;
  }
}
.p-top-cost__dl-cost span {
  font-size: 0.337em;
}
.p-top-cost__ttl {
  font-size: min(7vw, 3rem);
  font-weight: 600;
  text-align: center;
}
.p-top-cost__note {
  font-size: 1.8rem;
  display: block;
  text-align: center;
}
.p-top-cost__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-top-cost__btn > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .p-top-cost__btn > * {
    min-width: 280px;
  }
}
@media screen and (min-width: 1001px) {
  .p-top-cost__btn > * {
    max-width: 280px;
  }
}

.p-top-step {
  padding: 110px 0;
  background-color: var(--secondary-color-light);
}
.p-top-step__list {
  counter-reset: number 0;
}
.p-top-step__list li {
  position: relative;
}
@media screen and (min-width: 1001px) {
  .p-top-step__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.p-top-step__list li:not(:last-of-type) {
  padding-bottom: 55px;
}
.p-top-step__list li:not(:last-of-type)::after {
  content: "";
  width: 22px;
  height: 22px;
  border-top: solid 4px #000000;
  border-right: solid 4px #000000;
  position: absolute;
  left: 50%;
  bottom: 23px;
  -webkit-transform: translateX(-50%) rotate(135deg);
          transform: translateX(-50%) rotate(135deg);
}
.p-top-step__list li:last-of-type {
  border: 2px solid #F8C92D;
}
.p-top-step__img {
  margin-bottom: 30px;
  position: relative;
}
.p-top-step__img figcaption {
  font-size: 1.8rem;
  line-height: 1;
  padding: 0.806em 1.25em;
  color: #fff;
  font-weight: 600;
  background-color: var(--secondary-color);
  position: absolute;
  top: 0;
  left: 0;
}
.p-top-step__head {
  font-weight: 600;
  color: #000000;
  background-color: #F8C92D;
  position: relative;
  padding: 0.8em;
}
@media screen and (min-width: 1001px) {
  .p-top-step__head {
    padding: 1.875em 0.8em 2.5em 1.25em;
    width: 320px;
  }
}
.p-top-step__head::before {
  counter-increment: number 1;
  content: "0" counter(number);
  font-size: 2.4rem;
  font-weight: 600;
  border-bottom: 1px solid #000;
  line-height: 1.5;
  padding-bottom: 7px;
  margin-bottom: 10px;
  display: inline-block;
}
.p-top-step__head-ttl {
  font-size: min(7vw, 2.4rem);
  font-weight: 600;
}
.p-top-step__body {
  background-color: #fff;
  padding: 1.875em 1.25em 1.875em;
}
@media screen and (min-width: 1001px) {
  .p-top-step__body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 1.875em 1.25em 2.5em;
  }
}
.p-top-step__body-ttl {
  color: #F8C92D;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.p-top-step__head-img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}
.p-top-step__start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 10px;
}
@media screen and (min-width: 1001px) {
  .p-top-step__start {
    padding: 0 0 10px 5px;
  }
}
@media screen and (max-width: 1000px) {
  .p-top-step__start-logo {
    width: 30%;
    max-width: 135px;
  }
}
.p-top-step__start-ttl {
  font-size: min(6vw, 3.2rem);
  font-weight: 600;
  line-height: 1.3;
  padding-left: 10px;
}
@media screen and (min-width: 1001px) {
  .p-top-step__start-ttl {
    padding: 0 0 4px 21px;
  }
}
.p-top-step__start-ttl span {
  display: block;
  font-size: min(4vw, 1.6rem);
}
@media screen and (max-width: 1000px) {
  .p-top-step li:last-of-type .p-top-step__head {
    padding: 0;
  }
  .p-top-step li:last-of-type .p-top-step__head::before {
    content: none;
  }
  .p-top-step li:last-of-type .p-top-step__head-img {
    position: static;
  }
}
.p-top-step li:last-of-type .p-top-step__body {
  padding: 18px 20px 25px;
}

.p-top-function {
  padding: 110px 0 140px;
}
.p-top-function__list {
  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: 10vw;
}
@media screen and (min-width: 1001px) {
  .p-top-function__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 5%;
  }
}
@media screen and (min-width: 1001px) {
  .p-top-function__list li {
    max-width: 300px;
  }
}
@media screen and (max-width: 1000px) {
  .p-top-function__list li {
    -webkit-box-flex: 0;
        -ms-flex: 0 1;
            flex: 0 1;
    min-width: 300px;
  }
}
.p-top-function__list:not(:last-of-type) {
  margin-bottom: 10vw;
}
@media screen and (min-width: 1001px) {
  .p-top-function__list:not(:last-of-type) {
    margin-bottom: 55px;
  }
}
.p-top-function__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #FCE9ED;
  border-radius: 50%;
  max-width: 300px;
  aspect-ratio: 1/1;
  padding: 57px 0 0;
  margin: 0 auto 30px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .p-top-function__img {
    width: 90%;
  }
}
.p-top-function__img figcaption {
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.1;
  color: #E56478;
  font-weight: 600;
  margin-bottom: 25px;
}
.p-top-function__txt {
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width: 1001px) {
  .p-top-function__list--center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8.5%;
  }
}
.p-top-function__item--coming .p-top-function__img::after {
  content: "Coming Soon";
  color: #909090;
  font-size: 3rem;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-10deg);
          transform: translate(-50%, -50%) rotate(-10deg);
  width: 100%;
  text-align: center;
}
.p-top-function__item--coming img {
  opacity: 0.25;
}

.p-top-faq {
  padding: 110px 0;
  background-color: var(--primary-color-light);
}
.p-top-faq__list li:not(:last-of-type) {
  margin-bottom: 43px;
}
.p-top-faq__q, .p-top-faq__a-inr {
  width: 100%;
  text-align: left;
  padding: min(5vw, 2.25em) min(10vw, 3.75em);
  cursor: pointer;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  text-align: justify;
}
.p-top-faq__q {
  background: var(--primary-color-dark);
  color: #fff;
}
.p-top-faq__q::before {
  content: "Q.";
  position: absolute;
  top: 50%;
  left: 3vw;
  font-weight: 600;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1001px) {
  .p-top-faq__q::before {
    left: 22px;
  }
}
.p-top-faq__icon {
  width: 11px;
  height: 11px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  right: 3vw;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 1001px) {
  .p-top-faq__icon {
    right: 28px;
  }
}
.p-top-faq__a {
  display: none;
}
.p-top-faq__a-inr {
  background-color: #fff;
}
.p-top-faq__a-inr::before {
  content: "A.";
  position: absolute;
  top: 50%;
  left: 3vw;
  font-weight: 600;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1001px) {
  .p-top-faq__a-inr::before {
    left: 22px;
  }
}
.p-top-faq__item.is-open .p-top-faq__icon {
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}

.p-top-news {
  padding: 110px 0;
  background-color: #FAFAFA;
}
.p-top-news__box {
  background-color: #fff;
  border-radius: 19px;
  padding: 10% 5%;
}
@media screen and (min-width: 1001px) {
  .p-top-news__box {
    padding: 2.75em 2.6em;
  }
}

.p-top-service {
  padding: 110px 0;
  background-color: var(--primary-color-light);
}
.p-top-service__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 915px;
  margin: 0 auto;
}
.p-top-service__img {
  margin-bottom: 8px;
}
.p-top-service__img img {
  width: 100%;
}
.p-top-service__ttl {
  font-size: 2rem;
  font-weight: 600;
}

.u-main_calor {
  color: var(--main-color);
}

.u-bg_main_calor {
  background-color: var(--bg-main-color);
}

.u-bg_white {
  background-color: #fff;
}

.u-text-center {
  text-align: center;
}

.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.u-flex1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.u-text-primary {
  color: var(--accent-color);
}

.u-link {
  color: #0058FF;
  text-decoration: underline;
  font-weight: bold;
}

.u-ib {
  display: inline-block;
}

.u-indent {
  padding-left: 1em;
  text-indent: -1em;
}

.u-fw-bold {
  font-weight: bold;
}

.u-va-middle {
  vertical-align: middle;
}

.u-underline {
  text-decoration: underline;
}

.u-w100 {
  width: 100%;
}

.u-maxw-xs {
  max-width: 64px;
}

.u-maxw-sm {
  max-width: 86px;
}

.u-maxw-md {
  max-width: 120px;
}

.u-maxw-lg {
  max-width: 155px;
}

.u-maxw-xl {
  max-width: 640px;
}

.u-tab,
.u-tab-ib {
  display: none !important;
}

@media screen and (min-width: 1001px) and (max-width: 1000px) {
  .u-tab {
    display: block !important;
  }
  .u-tab-ib {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1001px) {
  .u-smt {
    display: none !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-pc {
    display: none !important;
  }
}
.u-mb5 {
  margin-bottom: 5px;
}

.u-mb10 {
  margin-bottom: 10px;
}

.u-mb15 {
  margin-bottom: 15px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-mb25 {
  margin-bottom: 25px;
}

.u-mb30 {
  margin-bottom: 30px;
}

.u-mb35 {
  margin-bottom: 35px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-mb45 {
  margin-bottom: 45px;
}

.u-mb50 {
  margin-bottom: 50px;
}

.u-mb55 {
  margin-bottom: 55px;
}

.u-mb60 {
  margin-bottom: 60px;
}

.u-mb65 {
  margin-bottom: 65px;
}

.u-mb70 {
  margin-bottom: 70px;
}

.u-mb75 {
  margin-bottom: 75px;
}

.u-mb80 {
  margin-bottom: 80px;
}

.u-mb85 {
  margin-bottom: 85px;
}

.u-mb90 {
  margin-bottom: 90px;
}

.u-mb95 {
  margin-bottom: 95px;
}

.u-mb100 {
  margin-bottom: 100px;
}

@-webkit-keyframes click-header-sp-bar-1-close {
  0% {
    -webkit-transform: translateY(5px) rotate(45deg);
    transform: translateY(5px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(5px) rotate(0);
    transform: translateY(5px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
}
@keyframes click-header-sp-bar-1-close {
  0% {
    -webkit-transform: translateY(5px) rotate(45deg);
    transform: translateY(5px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(5px) rotate(0);
    transform: translateY(5px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes click-header-sp-bar-2-close {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes click-header-sp-bar-2-close {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes click-header-sp-bar-3-close {
  0% {
    -webkit-transform: translateY(-5px) rotate(-45deg);
    transform: translateY(-5px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-5px) rotate(0);
    transform: translateY(-5px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
}
@keyframes click-header-sp-bar-3-close {
  0% {
    -webkit-transform: translateY(-5px) rotate(-45deg);
    transform: translateY(-5px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-5px) rotate(0);
    transform: translateY(-5px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes click-header-sp-bar-1-open {
  0% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(5px) rotate(0);
    transform: translateY(5px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(5px) rotate(45deg);
    transform: translateY(5px) rotate(45deg);
  }
}
@keyframes click-header-sp-bar-1-open {
  0% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(5px) rotate(0);
    transform: translateY(5px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(5px) rotate(45deg);
    transform: translateY(5px) rotate(45deg);
  }
}
@-webkit-keyframes click-header-sp-bar-2-open {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes click-header-sp-bar-2-open {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes click-header-sp-bar-3-open {
  0% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-5px) rotate(0);
    transform: translateY(-5px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-5px) rotate(-45deg);
    transform: translateY(-5px) rotate(-45deg);
  }
}
@keyframes click-header-sp-bar-3-open {
  0% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-5px) rotate(0);
    transform: translateY(-5px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-5px) rotate(-45deg);
    transform: translateY(-5px) rotate(-45deg);
  }
}
@-webkit-keyframes opacity {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes opacity {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.fadeUp {
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.showFadeUp {
  -webkit-animation-name: showFadeUp;
          animation-name: showFadeUp;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes showFadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes showFadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}/*# sourceMappingURL=style.css.map */