@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関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  background-color: #f4f4f4;
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #3e3a39;
  max-width: 450px;
  margin: 0 auto;
  background-color: #fff;
  padding-bottom: 5.25rem;
}

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

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

input[type=checkbox] {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.l-inner {
  max-width: 375px;
  margin: 0 auto;
  padding: 0 1.78125rem;
}

.c-btn {
  background-color: #007bff;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.625rem 1.25rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}

.c-btn:hover {
  background-color: #0056b3;
}

.c-section-title {
  font-weight: 700;
  font-size: 1.3125rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-align: center;
}

.c-section-title span {
  margin-bottom: 1rem;
  display: inline-block;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  color: #38a1db;
}

.c-section-title b {
  font-size: 1.0625rem;
}

.cv-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  max-width: 450px;
  padding: 0.625rem 1rem;
  background-color: #34365c;
}
@media screen and (min-width: 450px) {
  .cv-fixed {
    left: 50%;
    transform: translateX(-50%);
    width: 450px;
  }
}

.cv-fixed__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.p-back {
  position: relative;
  margin-top: 1.6875rem;
}

.p-back__title {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-align: center;
}

.p-back__img {
  margin-top: 3.4375rem;
}

.p-back__text {
  margin-top: 1.25rem;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.p-back__text span {
  color: #38a1db;
}

.p-back__wrap {
  margin-top: 1.75rem;
}

.p-back__wrap-tag {
  padding: 0.46875rem 0;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #FFF;
  background-color: #34365c;
  text-align: center;
}

.p-back__wrap-text {
  margin-top: 1.25rem;
  font-weight: 800;
  font-size: 1.1875rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #38a1db;
  text-align: center;
}

.p-back__wrap-img {
  margin-top: 1.25rem;
}

.p-back__wrap-text02 {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.9285714286;
  letter-spacing: 0.05em;
}

.p-back__banner {
  margin: 3.125rem calc(50% - 50vw) 0;
}
@media screen and (min-width: 768px) {
  .p-back__banner {
    margin: 3.125rem auto 0;
  }
}

.p-case {
  margin-top: 3.75rem;
}

.p-case__img {
  margin-top: 1.5625rem;
}

.p-company {
  padding: 2rem 0;
  background-color: #d7ecf8;
}

.p-company__info {
  margin-top: 1.25rem;
}

.p-company__info dl:not(:first-of-type) {
  margin-top: 0.5rem;
}

.p-company__info dt {
  font-weight: 700;
  color: #38a1db;
}

.p-company__info dd {
  margin-top: 0.25rem;
  font-size: 0.875rem;
}

.p-company__info dd a {
  text-decoration: underline;
}

.p-company__map {
  margin-top: 1.25rem;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 46%;
}

.p-company__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-concerns {
  position: relative;
  padding: 2.5rem 0 0.75rem;
  background-color: #d7ecf8;
}
.p-concerns::before {
  content: "";
  position: absolute;
  height: 3.4375rem;
  width: 100%;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: #d7ecf8;
  left: 0;
  bottom: -3.4375rem;
}

.p-concerns__img {
  margin-top: 1.5625rem;
}

.p-cv {
  padding: 1.75rem 0;
  background-color: #38a1db;
}

.p-cv__text {
  margin-top: 1rem;
  font-weight: 800;
  font-size: 0.75rem;
  line-height: 2.5;
  letter-spacing: 0.05em;
  color: #FFF;
  text-align: center;
}

.p-cv__text span {
  padding: 0.375rem;
  background-color: #34365c;
}

.p-cv__wrap {
  margin-top: 1rem;
  border-radius: 0.625rem;
  padding: 1.5rem 0;
  background-color: #80c3e8;
}

.p-cv__wrap .text {
  max-width: 10.5625rem;
  margin: 0 auto;
}

.p-cv__wrap .btn {
  margin-top: 0.4375rem;
  text-align: center;
}

.p-cv__wrap .btn a {
  display: inline-block;
  max-width: 15.1875rem;
  -moz-filter: drop-shadow(2px 2px 7px rgba(0, 0, 0, 0.2));
  -ms-filter: drop-shadow(2px 2px 7px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(2px 2px 7px rgba(0, 0, 0, 0.2));
}

.p-cv__wrap-text {
  font-weight: 700;
  font-size: 0.5625rem;
  letter-spacing: 0.05em;
  line-height: 1.6666666667;
  color: #FFF;
  text-align: center;
}

.p-cv__wrap-phone {
  margin-top: 0.75rem;
}

.p-faq {
  padding: 2.1875rem 0;
}

.p-faq-list {
  margin-top: 1.25rem;
}

.p-faq-list__item:not(:first-of-type) {
  margin-top: 1.875rem;
}

.faq-list__item-question {
  padding: 0.625rem 0.9375rem;
  height: 4.5625rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.09em;
  color: #38a1db;
  background-image: url(../images/common/faq-border.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.faq-list__item-question img {
  max-width: 0.9375rem;
}

.faq-list__item-answer {
  margin-top: 0.9375rem;
  font-size: 0.875rem;
  line-height: 1.9285714286;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}

.p-flow {
  padding: 2.5rem 0;
  background-color: #d7ecf8;
}

.p-flow-list {
  margin-top: 3.75rem;
}

.p-flow-list__item:not(:first-of-type) {
  position: relative;
  margin-top: 4.25rem;
}
.p-flow-list__item:not(:first-of-type)::before {
  position: absolute;
  display: inline-block;
  content: "";
  top: -3.125rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2rem;
  height: 1rem;
  background-image: url(../images/common/flow-list-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}

.p-flow-list__item-img {
  margin-top: 1.5625rem;
}

.p-flow-list__item-text {
  margin-top: 0.9375rem;
  font-size: 0.875rem;
  line-height: 1.9285714286;
  letter-spacing: 0.05em;
}

.p-footer {
  padding: 0.625rem 0;
  background-color: #34365c;
}

.p-footer__copy {
  display: block;
  font-size: 0.5625rem;
  letter-spacing: 0.05em;
  color: #FFF;
  text-align: center;
}

.p-fv {
  position: relative;
  margin-bottom: 1.5625rem;
}

.p-fv__logo {
  position: absolute;
  top: 0.75rem;
  left: 1.25rem;
  width: 10rem;
}
@media screen and (min-width: 768px) {
  .p-fv__logo {
    width: 200px;
  }
}

.p-header {
  height: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-header {
    height: 4.375rem;
  }
}

.p-header__inner {
  height: inherit;
  padding-left: 1.25rem;
  display: flex;
  align-items: center;
}

.p-nav {
  padding: 1.5625rem 0;
}

.p-nav__flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.p-nav__flex a {
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-decoration: underline;
}

.p-price {
  padding: 2.1875rem 0;
}

.p-price__list {
  margin-top: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6875rem;
}

.p-price__list-item {
  -moz-filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.2));
  -ms-filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.2));
}

.p-price__img {
  margin-top: 1.875rem;
}

.p-price__wrap {
  padding: 0.9375rem 0.75rem;
  margin-top: 1.5625rem;
  border: 1px solid #3e3a39;
  border-radius: 0.3125rem;
}

.p-price__wrap-text {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
  text-align: center;
}

.p-privacy {
  padding: 3.125rem 0;
}

.p-privacy__title {
  padding: 0.625rem;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  color: #FFF;
  background-color: #34365c;
  text-align: center;
}

.p-privacy__text {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.9285714286;
  letter-spacing: 0.05em;
}

.p-privacy__wrap {
  margin-top: 1.5rem;
}

.p-privacy__wrap dl:not(:first-of-type) {
  margin-top: 0.875rem;
}

.p-privacy__wrap dt {
  font-weight: 700;
}

.p-privacy__wrap dd {
  font-size: 0.875rem;
}

.p-privacy__btn {
  margin-top: 1.875rem;
  text-align: center;
}

.p-privacy__btn a {
  display: inline-block;
  width: 7.5rem;
  padding: 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  color: #FFF;
  background-color: #34365c;
  text-align: center;
}

.p-reason {
  margin-top: 3.4375rem;
}

.p-reason-list {
  margin: 2.8125rem auto 0;
  max-width: 285px;
}

.p-reason-list__item:not(:first-of-type) {
  margin-top: 2.3125rem;
}

.p-reason-list__item-number {
  max-width: 1.8125rem;
}

.p-reason-list__item-title {
  margin-top: 1.5625rem;
  font-weight: 700;
  font-size: 1.3125rem;
  line-height: 1.619047619;
  letter-spacing: 0.05em;
  color: #34365c;
}

.p-reason-list__item-img {
  margin-top: 1.5625rem;
}

.p-reason-list__item-text {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.9285714286;
  letter-spacing: 0.05em;
}

.p-voice {
  padding: 2.1875rem 0;
  background-color: #d7ecf8;
}

.p-voice-list {
  margin-top: 1.25rem;
}

.p-voice-list__item:not(:first-of-type) {
  margin-top: 1.875rem;
}

.p-voice-list__item-title {
  padding: 0.9375rem 0.5rem;
  background-color: #FFF;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.3125rem;
  -moz-filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.2));
  -ms-filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.2));
}

.p-voice-list__item-title img {
  width: 22.7%;
}

.p-voice-list__item-title p {
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.6666666667;
  letter-spacing: 0.03em;
  color: #34365c;
}

.p-voice-list__item-title b {
  margin-bottom: 0.625rem;
  padding-bottom: 0.3125rem;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1;
  color: #38a1db;
  border-bottom: 2px solid #38a1db;
}

.p-voice-list__item-text {
  margin-top: 1.125rem;
  font-size: 0.875rem;
  line-height: 1.9285714286;
  letter-spacing: 0.03em;
  font-feature-settings: "palt";
}
/*# sourceMappingURL=style.css.map */


/* モーダル */
.layer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s linear, visibility 1s linear, z-index 1s linear;
}

.layer.is-open {
  z-index: 999;
  opacity: 1;
  visibility: visible;
}

.layer.is-open .modal {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 101;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  margin-right: auto;
  margin-left: auto;
  width: 300px;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.7s linear, opacity 0.7s linear;
}
@media screen and (min-width: 768px) {
  .modal {
    width: 350px;
  }
}

.modal__inner {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  box-shadow: 10px 10px 13px 2px rgba(0, 0, 0, 0.25);
  border-radius: 13px;
  display: block;
  height: auto;
}

@media screen and (max-width: 500px) {
  .modal {
    top: 47%;
    max-height: none;
    overflow-y: inherit;
  }
}
.modal__contents {
  position: relative;
}

.modal__contents-btn {
  position: absolute;
  bottom: 17%;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
}

.modal__contents-btn a {
  display: inline-block;
  margin-top: 5px;
}