@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

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

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

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
body {
  font-size: 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  color: #2B1A12;
  background-color: #ECF3F5;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  body {
    overflow-x: hidden;
    font-size: 16px;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 1;
  }
}

/* SP時のみ表示：PC時非表示 */
.sp-only {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

/* PC時のみ表示：SP時非表示 */
.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

/* Oswald */
@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald-Bold.woff2") format("woff2"), url("../fonts/Oswald-Bold.woff") format("woff");
  font-weight: 700;
}
/* Zen Kaku Gothic New */
@font-face {
  font-family: "Zen Kaku Gothic New";
  src: url("../fonts/ZenKakuGothicNew-Regular.woff2") format("woff2"), url("../fonts/ZenKakuGothicNew-Regular.woff") format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "Zen Kaku Gothic New";
  src: url("../fonts/ZenKakuGothicNew-Medium.woff2") format("woff2"), url("../fonts/ZenKakuGothicNew-Medium.woff") format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "Zen Kaku Gothic New";
  src: url("../fonts/ZenKakuGothicNew-Bold.woff2") format("woff2"), url("../fonts/ZenKakuGothicNew-Bold.woff") format("woff");
  font-weight: 700;
}
/* Zen Old Mincho */
@font-face {
  font-family: "Zen Old Mincho";
  src: url("../fonts/ZenOldMincho-Bold.woff2") format("woff2"), url("../fonts/ZenOldMincho-Bold.woff") format("woff");
  font-weight: 700;
}
@font-face {
  font-family: "Zen Old Mincho";
  src: url("../fonts/ZenOldMincho-Black.woff2") format("woff2"), url("../fonts/ZenOldMincho-Black.woff") format("woff");
  font-weight: 900;
}
.l-header {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  left: 0;
}

.l-section__inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .l-section__inner {
    max-width: 78.125rem;
    padding: 0 25px;
  }
}

.l-page-top {
  position: fixed;
  right: 0.9375rem;
  bottom: 3.25rem;
  z-index: 100;
  transition: transform 0.2s ease-out, opacity 0.5s ease-in-out;
}
@media screen and (min-width: 768px) {
  .l-page-top {
    right: 0.9375rem;
    bottom: 0.9375rem;
  }
}

.c-title {
  color: red;
}

.c-section__title {
  display: inline-block;
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-size: 1.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-section__title {
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 1200px) {
  .c-section__title {
    font-size: 2.5rem;
  }
}

.c-section__title::after {
  content: "";
  display: inline-block;
  width: 3.125rem;
  height: 0.1875rem;
  background-color: #00BFFF;
  position: absolute;
  left: 50%;
  bottom: -0.625rem;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .c-section__title::after {
    width: 5.625rem;
    bottom: -0.75rem;
  }
}

.c-section__title.c-section__title--white::after {
  background-color: #ECF3F5;
}

.c-section__title.c-section__title--column::after {
  width: 12.5rem;
  height: 0.4375rem;
  background-color: rgba(0, 191, 255, 0.2);
  bottom: -0.4375rem;
}
@media screen and (min-width: 768px) {
  .c-section__title.c-section__title--column::after {
    width: 21.875rem;
    height: 0.9375rem;
    bottom: -0.9375rem;
  }
}
.c-section__title.c-section__title--column span {
  position: absolute;
  right: 50%;
  top: -50px;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 768px) {
  .c-section__title.c-section__title--column span {
    top: -120%;
  }
}
.c-section__title.c-section__title--column span::before {
  animation: scroll 1.5s infinite;
  background-color: #00BFFF;
  bottom: -50px;
  content: "";
  height: 50px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 2px;
}
@media screen and (min-width: 768px) {
  .c-section__title.c-section__title--column span::before {
    bottom: -95px;
    height: 80px;
    width: 3px;
  }
}

/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.c-button {
  background: #00BFFF;
  border: 2px solid #00BFFF;
  border-radius: 60px;
  color: #fff;
  display: block;
  font-weight: bold;
  letter-spacing: 0.05em;
  max-width: 300px;
  padding: 15px 40px;
  text-align: center;
  cursor: pointer;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}

.c-button.c-button--circle {
  background: #fff;
  color: #00BFFF;
  overflow: hidden;
  position: relative;
  transition-duration: 0.4s;
  z-index: 2;
}
@media screen and (max-width: 500px) {
  .c-button.c-button--circle {
    padding: 15px 20px;
  }
}

.c-button.c-button--circle::after {
  background: #00BFFF;
  border-radius: 50%;
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity 0.5s, transform 0s;
  transition-delay: 0s, 0.4s;
}

.c-button.c-button--circle:hover {
  color: #fff;
}

.c-button.c-button--circle:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity 0.8s, transform 0.6s ease-in-out;
}

.header {
  height: 3.125rem;
  background-color: #fff;
  box-shadow: 0px 4px 10px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .header {
    height: 5rem;
  }
}

.header__inner {
  padding-left: 0.9375rem;
  height: inherit;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 0 0 0 1.5625rem;
  }
}

.header__logo {
  max-width: 13.125rem;
  width: 100%;
  height: inherit;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  .header__logo {
    max-width: 18.75rem;
  }
}

.header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__nav {
  display: block;
  height: inherit;
}
@media screen and (max-width: 1150px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  height: inherit;
}

.header__nav-item {
  height: inherit;
}

.header__nav-item.header__nav-item--contact {
  margin-left: 0.625rem;
  display: flex;
  align-items: center;
}

.header__nav-item a {
  padding: 0 0.9375rem;
  height: inherit;
  display: flex;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
}

.header__nav-item span {
  color: #333;
  position: relative;
}
.header__nav-item span::after {
  position: absolute;
  content: "";
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: #00BFFF;
  transition: all 0.3s ease 0s;
}

.header__nav-item span:hover {
  color: #00BFFF;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}
.header__nav-item span:hover::after {
  width: 100%;
}

.header__nav-item.header__nav-item--contact a {
  padding: 1.25rem 1.25rem 0;
  position: relative;
  height: 100%;
  color: #fff;
  background-color: #FF4000;
  transition: 0.3s ease-in-out;
  overflow: hidden;
  cursor: pointer;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition-duration: 0.4s;
  z-index: 2;
}
.header__nav-item.header__nav-item--contact a::before {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url(./../images/svg/icon_mail1.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.header__nav-item.header__nav-item--contact a::after {
  background: #004dff;
  border-radius: 50%;
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  padding-top: 200%;
  height: 200%;
  z-index: -1;
  transform: translate(-50%, -50%) scale(0.1);
  transition: opacity 0.5s, transform 0s;
  transition-delay: 0s, 0.4s;
}

.header__nav-item.header__nav-item--contact a:hover::before {
  background-image: url(./../images/svg/icon_open_mail.svg);
}
.header__nav-item.header__nav-item--contact a:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity 0.8s, transform 0.6s ease-in-out;
}

.header__hamburger {
  display: none;
}
@media screen and (max-width: 1150px) {
  .header__hamburger {
    display: block;
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    position: relative;
    z-index: 999;
    width: 5rem;
    height: inherit;
    background-color: #004dff;
    cursor: pointer;
    transition: 0.3s;
  }
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    width: 2.5rem;
  }
}

.header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 1.875rem;
  height: 2px;
  background-color: #fff;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .header__hamburger span {
    width: 0.9375rem;
    height: 1px;
  }
}

.header__hamburger span:nth-of-type(1) {
  top: -0.5rem;
}
@media screen and (max-width: 767px) {
  .header__hamburger span:nth-of-type(1) {
    top: -0.25rem;
  }
}

.header__hamburger span:nth-of-type(2) {
  top: 0;
}

.header__hamburger span:nth-of-type(3) {
  top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .header__hamburger span:nth-of-type(3) {
    top: 0.25rem;
  }
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-of-type(3) {
  top: -0.25rem;
  transform: translateX(-50%) rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .header__hamburger.is-open span:nth-of-type(3) {
    top: -0.125rem;
  }
}

.header__drawer {
  padding: 0.625rem 1.25rem 0;
  display: none;
  position: absolute;
  z-index: 900;
  top: 50px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 50px);
  background-color: #fff;
  overflow-y: scroll;
  scrollbar-width: none;
  transition: 0.3s;
  box-shadow: inset 0 10px 20px -10px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 768px) {
  .header__drawer {
    top: 80px;
    height: calc(100vh - 80px);
  }
}

.header__drawer.is-open {
  display: block;
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-item a {
  padding: 1.25rem 0.625rem 0.9375rem;
  display: block;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #D9D9D9;
  text-transform: uppercase;
  position: relative;
}
@media screen and (min-width: 768px) {
  .header__drawer-item a {
    padding: 1.25rem 1.25rem 0.9375rem;
    font-size: 1.125rem;
  }
}
.header__drawer-item a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 55%;
  right: 0.3125rem;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: url("./../images/svg/icon-arrow_black.svg") center/15px 15px no-repeat;
}
@media screen and (min-width: 768px) {
  .header__drawer-item a::after {
    width: 20px;
    height: 20px;
    background: url("./../images/svg/icon-arrow_black.svg") center/20px 20px no-repeat;
  }
}

/* ドロワー開いてる時は背景スクロール禁止 */
html.drawer-open,
body.drawer-open {
  overflow: hidden;
}

.header__drawer-call-wrap {
  display: flex;
  gap: 1.875rem;
  margin: 1.875rem -1.25rem 0;
  padding: 2.5rem 2.5rem;
  background-color: #FF6430;
}
@media screen and (max-width: 630px) {
  .header__drawer-call-wrap {
    flex-direction: column;
    gap: 0.9375rem;
    margin: 1.25rem -1.25rem 0;
    padding: 2.5rem 1.875rem;
  }
}

.header__drawer-call-text {
  line-height: 64px;
  font-size: 1rem;
}
@media screen and (max-width: 630px) {
  .header__drawer-call-text {
    font-size: 0.9375rem;
    font-weight: 700;
    max-width: 18.75rem;
    line-height: 1;
    text-align: center;
  }
}

.header__drawer-call-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("./../images/svg/icon-call_black.svg") center/20px 20px no-repeat;
}

.header__drawer-call-number {
  max-width: 300px;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #fff;
  border: 2px solid #876352;
  border-radius: 60px;
  color: #876352;
  font-size: 1.25rem;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-align: center;
  cursor: pointer;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  overflow: hidden;
  position: relative;
  transition-duration: 0.4s;
  z-index: 2;
}
.header__drawer-call-number::after {
  background: #00BFFF;
  border-radius: 50%;
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity 0.5s, transform 0s;
  transition-delay: 0s, 0.4s;
}

.header__drawer-call-number:hover {
  color: #fff;
}
.header__drawer-call-number:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity 0.8s, transform 0.6s ease-in-out;
}

.header__drawer-info-wrap {
  display: flex;
  justify-content: center;
  max-width: 18.75rem;
  gap: 10px;
  font-size: 14px;
  margin: 0.4375rem 0 0;
}

.footer {
  position: relative;
}

.footer__background {
  padding: 0.625rem 0;
  background-color: #2B1A12;
}

.footer__background small {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 0.75rem;
}

.page-top {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 1;
  background-color: rgba(43, 26, 18, 0.7);
  cursor: pointer;
}

.page-top::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 50%;
  width: 0.9375rem;
  height: 0.9375rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: translateX(-50%) rotate(-45deg);
}

.form__wrap + .form__wrap {
  margin-top: 1.875rem;
}

.form__label {
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .form__label {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .form__wrap.form__wrap--textarea .form__label {
    margin-top: 0.625rem;
  }
}

.form__label span {
  margin-left: 0.625rem;
  padding: 0.3125rem;
  display: inline-block;
  font-size: 0.75rem;
  color: #fff;
  background-color: #D00000;
}

.form__input,
.form__select,
.form__radio,
.form__checkbox,
.form__textarea {
  margin-top: 0.625rem;
}

.form__input,
.form__textarea {
  flex-grow: 1;
}

.form__submit {
  margin-top: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .form__submit {
    margin-top: 2.5rem;
  }
}

.form-input input {
  padding: 0.5rem 0.9375rem;
  width: 100%;
  font-size: 0.9375rem;
  line-height: 1;
  border-radius: 0;
  border: 1px solid #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  background-image: none;
}

.form-input input:focus {
  border: 1px solid #ACACAC;
  box-shadow: none;
  outline: none;
}

.form-input input::-moz-placeholder {
  letter-spacing: 0.05em;
  color: #ACACAC;
}

.form-input input::placeholder {
  letter-spacing: 0.05em;
  color: #ACACAC;
}

.form-select select {
  padding: 0.71875rem 3.125rem 0.71875rem 0.9375rem;
  width: 100%;
  max-width: 18.75rem;
  font-size: 0.9375rem;
  line-height: 1;
  border-radius: 0;
  border: 1px solid #fff;
  background-image: url(./../images/svg/icon-arrow_down_black.svg);
  background-repeat: no-repeat;
  background-size: 0.9375rem;
  background-position: right 0.9375rem top 0.75rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

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

.form-select select:focus {
  border: 1px solid #ACACAC;
  box-shadow: none;
  outline: none;
}

.form-radio label {
  display: block;
}
@media screen and (min-width: 768px) {
  .form-radio label {
    display: inline-block;
  }
}

.form-radio label:not(:first-of-type) {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .form-radio label:not(:first-of-type) {
    margin-top: 0;
    margin-left: 1.875rem;
  }
}

.form-radio input {
  display: none;
}

.form-radio input + span {
  padding: 0 0 0 1.5625rem;
  position: relative;
  display: block;
  font-size: 0.9375rem;
  line-height: 1.5;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .form-radio input + span {
    display: inline-block;
  }
}

.form-radio input + span::before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ACACAC;
  border-radius: 50%;
}

.form-radio input + span::after {
  content: "";
  padding: 0.125rem;
  width: 0.625rem;
  height: 0.625rem;
  position: absolute;
  top: 50%;
  left: 0.3125rem;
  transform: translateY(-50%);
  border: 1px solid transparent;
  border-radius: 50%;
  background: #00BFFF;
  opacity: 0;
  transition: 0.3s;
}

.form-radio input:checked + span::after {
  opacity: 1;
}

.form-textarea textarea {
  padding: 0.5rem 0.9375rem;
  width: 100%;
  height: 9.375rem;
  font-size: 0.9375rem;
  border-radius: 0;
  border: 1px solid #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  background-image: none;
}

.form-textarea textarea:focus {
  border: 1px solid #ACACAC;
  box-shadow: none;
  outline: none;
}

.form-textarea textarea::-moz-placeholder {
  letter-spacing: 0.05em;
  color: #ACACAC;
}

.form-textarea textarea::placeholder {
  letter-spacing: 0.05em;
  color: #ACACAC;
}

.form-submit__button {
  padding: 1.0625rem 6.25rem;
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  color: #2B1A12;
  line-height: 1;
  background-color: #fff;
  background-image: none;
  border: 1px solid #2B1A12;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .form-submit__button {
    padding: 1.375rem 7.75rem;
    font-size: 1.125rem;
  }
}
.form-submit__button::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  background: #00BFFF;
  width: 100%;
  height: 4px;
  transition: all 0.2s ease-in-out;
}

.form-submit__button:hover {
  outline: none;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .form-submit__button:hover {
    opacity: 0.8;
  }
}
.form-submit__button:hover::after {
  height: 100%;
}

.form-submit__button:focus {
  outline: none;
}

.form-submit__button::-moz-foucus-inner {
  padding: 0;
  border: none;
}

.sp-bottom-tab {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 800;
}

.sp-bottom-tab ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: skyblue;
}

.sp-bottom-tab li + li {
  border-left: 1px solid #D9D9D9;
}

.sp-bottom-tab.is-show {
  transform: translateY(0);
}

.sp-bottom-tab__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 10px 20px;
}

.sp-bottom-tab__icon--form {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #2B1A12;
  position: relative;
}
.sp-bottom-tab__icon--form::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 17px;
  height: 17px;
  background: url("./../images/svg/icon-web_white-bold.svg") center/17px 17px no-repeat;
}

.sp-bottom-tab__icon--call {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #2B1A12;
  position: relative;
}
.sp-bottom-tab__icon--call::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  background: url("./../images/svg/icon-call_white.svg") center/15px 15px no-repeat;
}

.sp-bottom-tab__link-text {
  letter-spacing: 0.08em;
  font-size: 15px;
}

.tel-modal {
  display: none;
  /* 初期非表示 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  .tel-modal {
    display: none;
  }
}

.tel-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.tel-modal__content {
  max-width: 300px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 40px 20px;
  border-radius: 8px;
  text-align: center;
}

.tel-modal__number {
  display: block;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.1em;
  color: #FF4000;
  margin: 0.625rem 0 0;
}

.tel-modal__info {
  margin: 0.625rem 0 0;
  font-size: 0.8125rem;
}
.tel-modal__info span {
  display: block;
}

.tel-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 18px;
  color: #333;
  cursor: pointer;
}

.tel-modal.is-active {
  display: block;
}

/* 下からふわっと表示 */
.js-fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ディレイをかけたいとき(親にfade-sectionを付与) */
.fade-item {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-item.show {
  opacity: 1;
  transform: translateY(0);
}

.fv {
  position: relative;
}

.fv_inner {
  position: relative;
  width: 100vw;
  height: 70vh;
  display: flex;
  justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .fv_inner {
    height: 100vh;
  }
}

.fv__container {
  width: 100%;
  max-width: 22.1875rem;
  padding: 1.25rem 0.9375rem;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .fv__container {
    max-width: 31.25rem;
    padding: 3.4375rem 2.1875rem;
    left: 0;
    bottom: 10%;
  }
}
@media screen and (min-width: 1000px) {
  .fv__container {
    left: 5%;
  }
}

.fv__main-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.125rem;
  line-height: 1.375rem;
}
@media screen and (min-width: 768px) {
  .fv__main-title {
    font-size: 1.875rem;
    line-height: 2.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .fv__main-title {
    font-size: 2.5rem;
    line-height: 3.125rem;
  }
}

.fv__sub-title {
  margin: 1.25rem 0 0;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .fv__sub-title {
    margin: 1.5625rem 0 0;
    font-size: 1rem;
  }
}

.fv__image {
  width: 90%;
  height: 100%;
  background: url(./../images/jpg/Fv.jpg) no-repeat center bottom/cover;
}
@media screen and (min-width: 768px) {
  .fv__image {
    background: url(./../images/jpg/Fv.jpg) no-repeat center/cover;
  }
}

.fv__call-wrap {
  display: none;
}
@media screen and (min-width: 768px) {
  .fv__call-wrap {
    width: 100%;
    max-width: 240px;
    height: 100%;
    max-height: 240px;
    padding: 1.4375rem 0;
    background-color: rgba(255, 64, 0, 0.8);
    border-radius: 50%;
    position: absolute;
    right: 3%;
    bottom: 2%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.fv__call-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.25);
  position: relative;
}
.fv__call-icon::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: url("./../images/svg/icon-call_blue.svg") center/20px 20px no-repeat;
}

.fv__call-text {
  text-align: center;
  font-size: 1rem;
  line-height: 1.25;
  margin: 0.5rem 0 0;
}

.fv__call-number {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
}

.fv__call-time {
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 0.4375rem 0 0;
}

.fv__call-holiday {
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 0.3125rem 0 0;
}

.fv__backbround {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 18.75rem;
  height: 31.25rem;
  background-color: rgba(0, 191, 255, 0.5);
}
@media screen and (min-width: 768px) {
  .fv__backbround {
    height: 50rem;
    bottom: -40%;
  }
}
@media screen and (min-width: 1000px) {
  .fv__backbround {
    width: 25rem;
  }
}

.top-about__container {
  padding: 5rem 0 0rem;
}
@media screen and (min-width: 768px) {
  .top-about__container {
    padding: 7.5rem 0 0rem;
  }
}

.top-about__media {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-about__media {
    flex-direction: row;
  }
}

.top-about__media--reverse {
  margin: 2.8125rem 0 3.125rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-about__media--reverse {
    flex-direction: row;
    margin: 4.6875rem 0 3.125rem;
  }
}

.top-about__media .top-about__image-wrap {
  margin: 1.25rem -20px 0;
  position: relative;
  width: 80%;
  height: 18.75rem;
}
@media screen and (min-width: 768px) {
  .top-about__media .top-about__image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 50vw;
    height: 100%;
    margin: 0 0 0 calc(50% - 50vw);
  }
}
.top-about__media .top-about__image-wrap .top-about__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background: url(./../images/jpg/about_01.jpg) no-repeat center/cover;
}
@media screen and (min-width: 768px) {
  .top-about__media .top-about__image-wrap .top-about__image {
    background: url(./../images/jpg/about_01.jpg) no-repeat center top/cover;
  }
}

.top-about__media--reverse .top-about__image-wrap {
  margin: 1.25rem -20px 0;
  position: relative;
  margin-left: auto;
  width: 80%;
  height: 18.75rem;
}
@media screen and (min-width: 768px) {
  .top-about__media--reverse .top-about__image-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100%;
    margin: 0 calc(50% - 50vw) 0 0;
  }
}
.top-about__media--reverse .top-about__image-wrap .top-about__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background: url(./../images/jpg/about_02.jpg) no-repeat center top/cover;
}

.top-about__media .top-about__text-wrap {
  padding: 0 0.625rem;
}
@media screen and (min-width: 768px) {
  .top-about__media .top-about__text-wrap {
    padding: 0 0 0 2.5rem;
    margin-left: auto;
    width: 50%;
    max-width: 600px;
  }
}
@media screen and (min-width: 1200px) {
  .top-about__media .top-about__text-wrap {
    padding: 0 0 0 5rem;
  }
}

.top-about__media--reverse .top-about__text-wrap {
  padding: 0 0.625rem;
}
@media screen and (min-width: 768px) {
  .top-about__media--reverse .top-about__text-wrap {
    padding: 0 2.5rem 0 0;
    margin-right: auto;
    width: 50%;
    max-width: 600px;
  }
}
@media screen and (min-width: 1200px) {
  .top-about__media--reverse .top-about__text-wrap {
    padding: 0 5rem 0 0;
  }
}

.top-about__sub-title {
  font-size: 1rem;
  font-weight: 700;
  color: #876352;
  margin: 1.875rem 0 0;
}
@media screen and (min-width: 768px) {
  .top-about__sub-title {
    font-size: 1.25rem;
    margin: 2.8125rem 0 0;
  }
}

.top-about__text {
  margin: 0.625rem 0 0;
}
@media screen and (min-width: 768px) {
  .top-about__text {
    margin: 1.5625rem 0 0;
  }
}

.top-about__strength {
  margin: 5rem 0 0;
  background-color: #76D9FA;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-about__strength {
    margin: 15.625rem 0 0;
  }
}

.top-about__strength-background {
  width: 100%;
  height: 15rem;
  background-image: url(./../images/svg/wave_blue.svg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  bottom: 100%;
  z-index: -1;
  transform: translateY(1px);
}

.top-about__strength .c-section__title {
  display: flex;
  justify-content: center;
}

.top-about__strength-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 1.875rem;
  margin: 1.875rem 0 0;
}
@media screen and (max-width: 650px) {
  .top-about__strength-container {
    flex-direction: column;
    gap: 0.625rem;
    margin: 3.125rem 0 0;
  }
}
@media screen and (min-width: 1000px) {
  .top-about__strength-container {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1.25rem;
    margin: 2.8125rem 0 0;
  }
}
@media screen and (min-width: 1200px) {
  .top-about__strength-container {
    gap: 2.5rem;
  }
}

.top-about__strength-item {
  display: flex;
  background-color: #fff;
  border-radius: 50%;
  width: 40%;
  max-width: 25rem;
  position: relative;
}
@media screen and (max-width: 650px) {
  .top-about__strength-item {
    width: 80%;
    max-width: 15.625rem;
  }
}
@media screen and (min-width: 1000px) {
  .top-about__strength-item {
    width: 33.3333333333%;
  }
}

.top-about__strength-item::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.top-about__strength-item > * {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.top-about__strength-item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  padding: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-about__strength-item-inner {
    gap: 0.625rem;
    padding: 0.3125rem;
  }
}
@media screen and (min-width: 1000px) {
  .top-about__strength-item-inner {
    gap: 1.25rem;
    padding: 1.25rem;
  }
}

.top-about__strength-icon1 {
  display: inline-block;
  position: relative;
  width: 70px;
  height: 54px;
  background: url("./../images/png/strength_01.png") center/70px 54px no-repeat;
}
@media screen and (min-width: 1000px) {
  .top-about__strength-icon1 {
    width: 70px;
    height: 54px;
    background: url("./../images/png/strength_01.png") center/70px 54px no-repeat;
  }
}
@media screen and (min-width: 1200px) {
  .top-about__strength-icon1 {
    width: 88px;
    height: 68px;
    background: url("./../images/png/strength_01.png") center/88px 68px no-repeat;
  }
}
.top-about__strength-icon1::after {
  content: "";
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(0, 191, 255, 0.1);
  border-radius: 50%;
  position: absolute;
  top: -15%;
  right: 0;
}

.top-about__strength-icon2 {
  display: inline-block;
  position: relative;
  width: 48px;
  height: 54px;
  background: url("./../images/png/strength_02.png") center/48px 54px no-repeat;
}
@media screen and (min-width: 1000px) {
  .top-about__strength-icon2 {
    width: 48px;
    height: 54px;
    background: url("./../images/png/strength_02.png") center/48px 54px no-repeat;
  }
}
@media screen and (min-width: 1200px) {
  .top-about__strength-icon2 {
    width: 79px;
    height: 88px;
    background: url("./../images/png/strength_02.png") center/79px 88px no-repeat;
  }
}
.top-about__strength-icon2::after {
  content: "";
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(0, 191, 255, 0.1);
  border-radius: 50%;
  position: absolute;
  bottom: -7%;
  right: -15%;
}

.top-about__strength-icon3 {
  display: inline-block;
  position: relative;
  width: 60px;
  height: 54px;
  background: url("./../images/png/strength_03.png") center/60px 54px no-repeat;
}
@media screen and (min-width: 1000px) {
  .top-about__strength-icon3 {
    width: 60px;
    height: 54px;
    background: url("./../images/png/strength_03.png") center/60px 54px no-repeat;
  }
}
@media screen and (min-width: 1200px) {
  .top-about__strength-icon3 {
    width: 83px;
    height: 75px;
    background: url("./../images/png/strength_03.png") center/83px 75px no-repeat;
  }
}
.top-about__strength-icon3::after {
  content: "";
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(0, 191, 255, 0.1);
  border-radius: 50%;
  position: absolute;
  top: 10%;
  left: -10%;
}

.top-about__strength-heading {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.96px;
}
@media screen and (min-width: 768px) {
  .top-about__strength-heading {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}
@media screen and (min-width: 1000px) {
  .top-about__strength-heading {
    font-size: 2rem;
    line-height: 2.25rem;
    letter-spacing: 0.96px;
  }
}

.top-company {
  padding: 6.25rem 0 1.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-company {
    padding: 8.125rem 0 4.0625rem;
  }
}

.top-company__backbround {
  width: 100%;
  height: 300px;
  background: linear-gradient(rgba(0, 191, 255, 0.5), rgba(0, 199, 255, 0));
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateY(-1px);
}

.top-company .c-section__title {
  margin: 0 0 1.25rem;
  padding: 0 0.625rem;
}
@media screen and (min-width: 768px) {
  .top-company .c-section__title {
    margin: 0 0 6.25rem;
    padding: 0 1.25rem;
  }
}

.top-company__title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  max-width: 52.5rem;
}

.top-company__list-container {
  max-width: 52.5rem;
  margin: 0 auto;
}

.top-company__list {
  display: grid;
  grid-template-columns: 6.25rem 1fr;
}
@media screen and (min-width: 768px) {
  .top-company__list {
    grid-template-columns: 9.375rem 1fr;
  }
}

.top-company__list-title {
  font-weight: 700;
  color: #00BFFF;
  padding: 1.875rem 0.9375rem;
  border-bottom: 1px solid #00BFFF;
}

.top-company__list-text {
  padding: 1.875rem 0.9375rem;
  border-bottom: 1px solid #D9D9D9;
}
.top-company__list-text dl {
  line-height: 1.5rem;
}
.top-company__list-text dl + dl {
  margin: 1.25rem 0 0;
}
.top-company__list-text dt {
  color: #876352;
}
.top-company__list-text span {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  margin: 0.3125rem 0 0;
}
.top-company__list-text > ul li {
  position: relative;
  display: flex;
  align-items: flex-start;
}
.top-company__list-text > ul li::before {
  content: "・";
  width: 1.15em;
  display: inline-block;
}
.top-company__list-text > ul li p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.top-company__text-medium {
  font-weight: 500;
}

.top-company__coment-container {
  max-width: 80%;
  margin: 1.875rem auto 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-company__coment-container {
    margin: 3.4375rem auto 0;
  }
}

.top-company__coment-wrap {
  display: flex;
  justify-content: center;
  border-radius: 1.875rem;
  background-color: #FF6430;
  position: relative;
}
.top-company__coment-wrap::before {
  content: "";
  position: absolute;
  top: 90%;
  right: 15%;
  margin-left: -20px;
  border: 10px solid transparent;
  border-top: 26px solid #FF6430;
  transform: rotate(-20deg);
}
@media screen and (min-width: 768px) {
  .top-company__coment-wrap::before {
    top: 93%;
    right: 10%;
    border: 14px solid transparent;
    border-top: 26px solid #FF6430;
  }
}

.top-company__coment-wrap p {
  padding: 1.25rem 2.1875rem 1.25rem 1.25rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .top-company__coment-wrap p {
    padding: 1.875rem 3.75rem 1.875rem 1.875rem;
    font-size: 1.125rem;
  }
}

.top-company__coment-image {
  max-width: 5rem;
  position: absolute;
  right: -10%;
  bottom: -30px;
}
@media screen and (min-width: 768px) {
  .top-company__coment-image {
    max-width: 7.3125rem;
    right: -8%;
    bottom: -65px;
  }
}

.top-service {
  background-color: #fff;
  padding: 2.5rem 0 0;
}

.top-service__image {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0rem;
  padding: 5rem 0 1.875rem;
  background-image: url(./../images/png/service-PC_background.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .top-service__image {
    gap: 1.25rem;
    padding: 5rem 0 3.125rem;
    background-size: cover;
  }
}
@media screen and (min-width: 1000px) {
  .top-service__image {
    padding: 6.875rem 0 4.375rem;
    background-size: contain;
  }
}

.top-service__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.05em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .top-service__title {
    flex-direction: row;
    font-size: 2.25rem;
    letter-spacing: 0.15em;
  }
}
@media screen and (min-width: 1200px) {
  .top-service__title {
    font-size: 3rem;
  }
}

.top-service__title--blue {
  color: #00BFFF;
  text-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
  transform: rotate(-3deg) translateY(-2px);
}

.top-service__image picture {
  max-width: 56.25rem;
  margin: 0 auto;
}

.top-service__text-wrap {
  margin: 1.875rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-service__text-bubble {
  display: inline-flex;
  justify-content: center;
  color: #fff;
  height: 3.125rem;
  padding: 1.0625rem 1.875rem;
  font-size: 1.125rem;
  line-height: 1;
  background-color: #2B1A12;
  border-radius: 3.125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-service__text-bubble {
    height: 4.375rem;
    padding: 1.0625rem 2.5rem;
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
.top-service__text-bubble::after {
  content: "";
  position: absolute;
  top: 95%;
  left: 50%;
  margin-left: -9px;
  border: 7px solid transparent;
  border-top: 13px solid #2B1A12;
}
@media screen and (min-width: 768px) {
  .top-service__text-bubble::after {
    top: 97%;
    margin-left: -15px;
    border: 10px solid transparent;
    border-top: 18px solid #2B1A12;
  }
}

.top-service__text-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  margin: 0.625rem 0 0;
}
@media screen and (min-width: 768px) {
  .top-service__text-main {
    margin: 0;
  }
}

.top-service__text-main > span {
  color: #FF4000;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .top-service__text-main > span {
    font-size: 2.5rem;
    letter-spacing: 0.15em;
  }
}
@media screen and (min-width: 1000px) {
  .top-service__text-main > span {
    font-size: 3rem;
  }
}

.top-service__text-main span span {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 3.84px;
  margin: 0 0.5rem 0 0;
}
@media screen and (min-width: 768px) {
  .top-service__text-main span span {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1000px) {
  .top-service__text-main span span {
    font-size: 4rem;
  }
}

.top-service__container {
  padding: 0rem 0 6.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-service__container {
    padding: 0rem 0 8.75rem;
  }
}

.top-service__background {
  width: 100%;
  height: 50rem;
  background-image: url(./../images/svg/wave_white.svg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  transform: translateY(1px);
}
@media screen and (min-width: 768px) {
  .top-service__background {
    height: 50rem;
  }
}
@media screen and (min-width: 1200px) {
  .top-service__background {
    height: 15rem;
  }
}

.top-service__inner {
  max-width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  .top-service__inner {
    max-width: 81.25rem;
  }
}

.top-service__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .top-service__list {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
  }
}
@media screen and (min-width: 1200px) {
  .top-service__list {
    justify-content: space-between;
  }
}

.top-service__item {
  width: 60%;
  padding: 1.25rem 0.9375rem;
  background-color: #fff;
  border: 1px solid #ACACAC;
  border-radius: 0.9375rem;
  box-shadow: 0.625rem 0.625rem 1.25rem 0 rgba(0, 191, 255, 0.2);
}
@media screen and (min-width: 768px) {
  .top-service__item {
    width: calc(33.333% - 1.25rem);
  }
}
@media screen and (min-width: 1200px) {
  .top-service__item {
    width: calc(20% - 1.25rem);
    height: -moz-fit-content;
    height: fit-content;
    flex-direction: column;
    align-items: center;
    gap: 0rem;
    padding: 1.25rem 0.9375rem;
  }
}

.top-service__list li:nth-child(even) {
  position: relative;
}
@media screen and (min-width: 1200px) {
  .top-service__list li:nth-child(even) {
    top: 100px;
  }
}

.top-service__heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 1.5rem;
  color: #00BFFF;
  font-weight: 700;
}

.top-service__item-image {
  max-width: 10rem;
  width: 100%;
  height: 106px;
  margin: 0.9375rem auto 0;
}

.top-service__text {
  margin: 1.25rem 0 0;
  text-align: justify;
  text-justify: distribute;
  -moz-text-align-last: left;
       text-align-last: left;
}

.top-works {
  padding: 2.5rem 0 3.75rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .top-works {
    padding: 0rem 0 3.75rem;
  }
}

.top-works__background {
  width: 100%;
  margin: 0;
  padding: 100px 0 800px;
  position: relative;
  top: -2.5rem;
  overflow: hidden;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .top-works__background {
    padding: 500px 0 800px;
    top: -2rem;
  }
}
.top-works__background::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 2rem;
  left: 0;
  right: 0;
  background-color: #ECF3F5;
  transform: skewY(-7deg) translateY(-90px);
}
@media screen and (min-width: 768px) {
  .top-works__background::before {
    bottom: 2rem;
  }
}

.top-works .l-section__inner {
  position: relative;
  z-index: 2;
  margin: -880px auto 0;
}
@media screen and (min-width: 768px) {
  .top-works .l-section__inner {
    margin: -75rem auto 0;
  }
}

.top-works .c-section__title {
  display: flex;
  justify-content: center;
  padding: 0.9375rem 0 0;
}

.top-works__container {
  margin: 4.6875rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 4.375rem;
}

.top-works__item {
  display: flex;
  gap: 1.25rem;
}

.top-works__item-left {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 37.2%;
}

.top-works__item-right {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  width: 62%;
}

.top-works__item-title {
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .top-works__item-title {
    font-size: 2rem;
  }
}

.top-cta {
  height: 100%;
  padding: 3.4375rem 0 1.25rem;
  color: #fff;
  background-image: url(./../images/jpg/contact.jpg);
  background-position: bottom 40% right 0%;
  background-size: cover;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .top-cta {
    padding: 3.4375rem 0 3.75rem;
  }
}
.top-cta::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(1, 147, 196, 0.6);
  z-index: -1;
}

.top-cta__main-heading {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-cta__main-heading {
    font-size: 2.5rem;
  }
}

.top-cta__sub-heading {
  font-size: 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-cta__sub-heading {
    font-size: 1.125rem;
    margin: 0.3125rem 0 0;
  }
}

.top-cta__way-container {
  display: flex;
  flex-direction: column;
  margin: 2.5rem 0 0;
}
@media screen and (min-width: 768px) {
  .top-cta__way-container {
    margin: 3.75rem 0 0;
    flex-direction: row;
    justify-content: center;
  }
}

.top-cta__web-wrap,
.top-cta__tel-wrap {
  width: 100%;
  padding: 1.875rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-cta__web-wrap,
  .top-cta__tel-wrap {
    padding: 0 1.25rem;
    justify-content: space-between;
  }
}

.top-cta__web-wrap::before {
  content: "";
  display: inline-block;
  width: 35%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 50%;
  transform: translateX(50%);
}
@media screen and (min-width: 768px) {
  .top-cta__web-wrap::before {
    display: none;
  }
}

.top-cta__web-wrap::after {
  content: "";
  display: inline-block;
  width: 50%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 100%;
  right: 50%;
  transform: translateX(50%);
}
@media screen and (min-width: 768px) {
  .top-cta__web-wrap::after {
    width: 1px;
    height: 110%;
    top: -8px;
    right: 0;
  }
}

.top-cta__web-icon,
.top-cta__tel-icon {
  width: 2.8125rem;
  height: 2.8125rem;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  box-shadow: 0 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.25);
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-cta__web-icon,
  .top-cta__tel-icon {
    width: 3.75rem;
    height: 3.75rem;
  }
}

.top-cta__web-icon::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: url("./../images/svg/icon-web_white-bold.svg") center/24px 24px no-repeat;
}
@media screen and (min-width: 768px) {
  .top-cta__web-icon::before {
    width: 34px;
    height: 34px;
    background: url("./../images/svg/icon-web_white-bold.svg") center/34px 34px no-repeat;
  }
}

.top-cta__text {
  margin: 0.3125rem 0 0;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .top-cta__text {
    margin: 0.9375rem 0 0;
  }
}

.top-cta__button {
  width: 17.8125rem;
  height: 2.8125rem;
  padding: 0 1.25rem 0 0.625rem;
  margin: 0.3125rem auto 0;
  text-align: center;
  font-size: 0.875rem;
  line-height: 2.8125rem;
  background-color: #fff;
  color: #2B1A12;
  box-shadow: 0 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition-duration: 0.4s;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .top-cta__button {
    margin: 0;
    font-size: 0.9375rem;
  }
}
.top-cta__button::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0.9375rem;
  transform: translateY(-50%);
  transition: 0.15s ease-in-out;
  width: 15px;
  height: 15px;
  background: url("./../images/svg/icon-arrow_black.svg") center/15px 15px no-repeat;
}
.top-cta__button::after {
  background: #ff701e;
  border-radius: 50%;
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity 0.5s, transform 0s;
  transition-delay: 0s, 0.4s;
}

.top-cta__button:hover {
  color: #fff;
}
.top-cta__button:hover::before {
  right: 0.3125rem;
  transition: 0.15s ease-in-out;
  width: 15px;
  height: 15px;
  background: url("./../images/svg/icon-arrow_white.svg") center/15px 15px no-repeat;
}
.top-cta__button:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity 0.8s, transform 0.6s ease-in-out;
}

.top-cta__tel-icon::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: url("./../images/svg/icon-call_white.svg") center/20px 20px no-repeat;
}
@media screen and (min-width: 768px) {
  .top-cta__tel-icon::before {
    width: 28px;
    height: 28px;
    background: url("./../images/svg/icon-call_white.svg") center/28px 28px no-repeat;
  }
}

.top-cta__tel-detail {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  letter-spacing: 0.07em;
  margin: -4px 0 0;
}
@media screen and (min-width: 768px) {
  .top-cta__tel-detail {
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin: 0;
  }
}

.top-cta__tel-detail span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  padding-right: 0.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-cta__tel-detail span {
    font-size: 0.9375rem;
  }
}
.top-cta__tel-detail span::after {
  content: "：";
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .top-cta__tel-detail span::after {
    right: -3px;
  }
}

.top-cta__tel-info {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 1.56px;
  margin-top: -0.3125rem;
}
@media screen and (min-width: 768px) {
  .top-cta__tel-info {
    font-size: 0.8125rem;
  }
}

.top-cta__tel-info span + span {
  margin-left: 1.25rem;
}

.top-daily {
  padding: 5rem 0 1.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-daily {
    padding: 11.25rem 0 1.875rem;
  }
}

.top-daily__title-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .top-daily__title-wrap {
    gap: 2.5rem;
  }
}

.top-daily__title-wrap .c-section__title {
  margin: 0 auto;
}

.top-daily__sub-title {
  text-align: center;
}

.top-daily__item-wrap {
  margin: 1.5625rem 0 0;
}
@media screen and (min-width: 768px) {
  .top-daily__item-wrap {
    margin: 3.125rem 0 0;
  }
}

/* インスタ埋め込みの上書き用 */
.elfsight-app-02aa9c42-9f9f-45e4-97f0-d9ea39666a1d {
  overflow-x: hidden;
  position: relative;
}

.eapps-instagram-feed-posts-slider-nav {
  left: 0 !important;
  right: 0 !important;
  box-sizing: border-box;
}

.top-faq {
  padding: 6.25rem 0 1.875rem;
}
@media screen and (min-width: 768px) {
  .top-faq {
    padding: 8.125rem 0 6.25rem;
  }
}

.top-faq__container {
  padding: 2.5rem 1.875rem 3.125rem;
  background-color: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 0.25rem 0.4375rem 0 rgba(43, 26, 18, 0.1);
}
@media screen and (max-width: 400px) {
  .top-faq__container {
    padding: 2.5rem 1.25rem 3.125rem;
  }
}
@media screen and (min-width: 768px) {
  .top-faq__container {
    padding: 3.125rem 4.6875rem 5rem;
    border-radius: 1.875rem;
  }
}

.top-faq__container .c-section__title {
  display: flex;
  justify-content: center;
}

.top-faq__item-wrap {
  margin: 1.875rem 0 0;
  border-top: 1px solid #D9D9D9;
}
@media screen and (min-width: 768px) {
  .top-faq__item-wrap {
    margin: 2.5rem 0 0;
  }
}

.top-faq__item {
  padding: 1.25rem 0;
  border-bottom: 1px solid #D9D9D9;
}
@media screen and (min-width: 768px) {
  .top-faq__item {
    padding: 1.875rem 0 1.25rem;
  }
}

.top-faq__item-Q {
  display: flex;
  gap: 0.625rem;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .top-faq__item-Q {
    gap: 1.25rem;
    font-size: 1.25rem;
  }
}

.top-faq__item-Q span {
  line-height: 0.8;
  font-size: 1.75rem;
  font-weight: 700;
  color: #00BFFF;
}
@media screen and (min-width: 768px) {
  .top-faq__item-Q span {
    line-height: 0.5;
    font-size: 3rem;
  }
}

.top-faq__item-A {
  margin: 0.9375rem 0 0 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .top-faq__item-A {
    margin: 1.5625rem 0 0 1.875rem;
    gap: 0.9375rem;
  }
}

.top-faq__item-A span {
  align-self: flex-start;
  line-height: 1;
  font-size: 1.75rem;
  font-weight: 700;
  color: #876352;
}
@media screen and (min-width: 768px) {
  .top-faq__item-A span {
    font-size: 3rem;
  }
}

.top-faq__coment-container {
  max-width: 80%;
  margin: -1.25rem auto 0;
  position: relative;
}
@media screen and (max-width: 400px) {
  .top-faq__coment-container {
    max-width: 90%;
  }
}
@media screen and (min-width: 768px) {
  .top-faq__coment-container {
    margin: -1.875rem auto 0;
  }
}

.top-faq__coment-container .top-company__coment-wrap::before {
  right: 10%;
}
@media screen and (min-width: 768px) {
  .top-faq__coment-container .top-company__coment-wrap::before {
    right: 15%;
  }
}

.top-faq__coment-container .top-company__coment-image {
  right: -8%;
  bottom: -35px;
}
@media screen and (min-width: 768px) {
  .top-faq__coment-container .top-company__coment-image {
    right: -5%;
    bottom: -100px;
  }
}

.top-contact {
  margin: 1.875rem 0 3.625rem;
}
@media screen and (min-width: 768px) {
  .top-contact {
    margin: 1.875rem 0 0;
  }
}

.top-contact__title-container {
  height: 100%;
  padding: 4.0625rem 0 5rem;
  background-image: url(./../images/jpg/about_01.jpg);
  background-position: top 20% center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .top-contact__title-container {
    padding: 7.5rem 0 9.375rem;
  }
}
.top-contact__title-container::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 191, 255, 0.6);
  z-index: -1;
}

.top-contact__main-title {
  color: #fff;
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-contact__main-title {
    font-size: 3rem;
  }
}

.top-contact__sub-title {
  color: #fff;
  font-size: 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-contact__sub-title {
    margin: 0.3125rem 0 0;
    font-size: 1.5rem;
  }
}

.top-contact__tel-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 31.25rem;
  padding: 1.25rem;
  margin: 1.875rem auto 0;
  background-color: #fff;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .top-contact__tel-wrap {
    flex-direction: row;
    justify-content: center;
    gap: 5.3125rem;
    max-width: 49.0625rem;
    padding: 2.1875rem;
    margin: 2.5rem auto 0;
  }
}

.top-contact__tel-wrap > p {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .top-contact__tel-wrap > p {
    font-weight: 700;
    font-size: 1.25rem;
  }
}

.top-contact__tel-number {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  letter-spacing: 0.07em;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-contact__tel-number {
    font-size: 3rem;
    letter-spacing: 1.75px;
    text-align: left;
  }
}
.top-contact__tel-number::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 1.125rem;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background: url("./../images/svg/icon-call_blue.svg") center/25px 25px no-repeat;
}
@media screen and (min-width: 768px) {
  .top-contact__tel-number::before {
    left: -2.5rem;
    width: 32px;
    height: 32px;
    background: url("./../images/svg/icon-call_blue.svg") center/32px 32px no-repeat;
  }
}

.top-contact__tel-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.875rem;
  letter-spacing: 1px;
}

.top-contact__tel-info span + span {
  margin: 0 0 0 0.9375rem;
}

.top-contact__container {
  margin: 3.75rem 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .top-contact__container {
    margin: 5rem 0 1.875rem;
  }
}

.top-contact__container-inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top-contact__container-inner {
    padding: 0 1.5625rem;
    max-width: 52.1875rem;
  }
}

.top-contact__background {
  position: relative;
  width: 100%;
  height: 70px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-contact__background {
    height: 100px;
  }
}
.top-contact__background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background-image: url(./../images/png/contact_background.png);
  background-repeat: repeat-x;
  background-size: contain;
  animation: scrollBackground 50s linear infinite;
}

/* 背景の街並み画像横スライド */
@keyframes scrollBackground {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* フォームのCSS上書きに使用 */
.smf-progress-tracker__item[aria-current=true] .smf-progress-tracker__item__number {
  background-color: #00BFFF;
}

.smf-progress-tracker__item__number {
  width: 40px;
  height: 40px;
}

.smf-progress-tracker__item:after,
.smf-progress-tracker__item:before {
  top: 18px;
}

.smf-progress-tracker__item[aria-current=true] .smf-progress-tracker__item__text {
  color: #2B1A12;
}

.smf-form--letter .smf-item__col--label {
  padding-bottom: 0.625rem;
}

.smf-form--letter .smf-text-control__control {
  padding: 0.5rem 0.9375rem;
  width: 100%;
  font-size: 0.9375rem;
  line-height: 1;
  border-radius: 0;
  border: 1px solid #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  background-image: none;
}

.smf-form--letter .smf-text-control__control:focus {
  border: 1px solid #ACACAC;
  box-shadow: none;
  outline: none;
}

.smf-form--letter .smf-text-control__control::-moz-placeholder {
  letter-spacing: 0.05em;
  color: #ACACAC;
}

.smf-form--letter .smf-text-control__control::placeholder {
  letter-spacing: 0.05em;
  color: #ACACAC;
}

.smf-form .smf-select-control {
  width: 15.625rem;
}

.smf-form .smf-select-control__control {
  width: 100%;
}

.smf-form .form-select {
  padding: 0.71875rem 3.125rem 0.71875rem 0.9375rem;
  width: 100%;
  font-size: 0.9375rem;
  line-height: 1;
  border-radius: 0;
  border: 1px solid #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

.smf-form .form-select::-ms-expand {
  display: none;
}

.smf-form .form-select:focus {
  border: 1px solid #ACACAC;
  box-shadow: none;
  outline: none;
}

.smf-form .smf-textarea-control__control {
  padding: 0.5rem 0.9375rem;
  width: 100%;
  height: 9.375rem;
  font-size: 0.9375rem;
  border-radius: 0;
  border: 1px solid #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  background-image: none;
}

.smf-form .smf-textarea-control__control:focus {
  border: 1px solid #ACACAC;
  box-shadow: none;
  outline: none;
}

.smf-form .smf-textarea-control__control::-moz-placeholder {
  letter-spacing: 0.05em;
  color: #ACACAC;
}

.smf-form .smf-textarea-control__control::placeholder {
  letter-spacing: 0.05em;
  color: #ACACAC;
}

.smf-item__description {
  margin-top: 0.3125rem;
}

.policy-wrap {
  width: 100%;
  margin: 0rem auto 3.125rem;
  padding: 0.625rem;
  border: 1px dotted #666;
}
@media screen and (min-width: 768px) {
  .policy-wrap {
    max-width: 40.625rem;
  }
}

.policy-title {
  padding: 0 0.625rem;
  background-color: rgba(0, 191, 255, 0.5);
}

.policy-list {
  margin: 0.625rem 0 0;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .policy-list {
    font-size: 14px;
  }
}
.policy-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
}
.policy-list li::before {
  content: "・";
  display: inline-block;
}

.smf-action .smf-button-control__control {
  width: 37%;
  padding: 1.0625rem 1.25rem;
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #2B1A12;
  line-height: 1;
  background-color: #fff;
  background-image: none;
  border: 1px solid #2B1A12;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .smf-action .smf-button-control__control {
    padding: 1.25rem;
    font-size: 1.0625rem;
  }
}
.smf-action .smf-button-control__control::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  background: #00BFFF;
  width: 100%;
  height: 4px;
  transition: all 0.2s ease-in-out;
}

.smf-action .smf-button-control__control:hover {
  outline: none;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .smf-action .smf-button-control__control:hover {
    opacity: 0.8;
  }
}
.smf-action .smf-button-control__control:hover::after {
  height: 100%;
}

.smf-action .smf-button-control__control:focus {
  outline: none;
}

.smf-action .smf-button-control__control::-moz-foucus-inner {
  padding: 0;
  border: none;
}

[data-screen=confirm] .smf-placeholder {
  color: #00BFFF;
  font-weight: 700;
}

[data-screen=confirm] .smf-button-control__control[data-action=back]::after {
  background: #ACACAC;
}

.smf-complete-content {
  margin: 5rem 0;
}

.smf-complete-content p:nth-of-type(1) {
  font-weight: 700;
}

.smf-complete-content .text-red {
  color: #e00;
  font-weight: 500;
  margin: 1.5625rem 0 0;
  position: relative;
}
.smf-complete-content .text-red::before {
  content: "※";
  display: inline-block;
  color: #e00;
  position: absolute;
  top: 0;
  left: -1.2em;
}
/*# sourceMappingURL=style.css.map */
