@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 {
  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", sans-serif;
  font-weight: 400;
  color: #373B3E;
  max-width: 390px;
  margin: 0 auto;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

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 {
  margin: 0 auto;
  max-width: 390px;
  padding: 0 10px;
  overflow: hidden;
}

.c-section-title {
  position: relative;
  padding-bottom: 0.625rem;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  text-align: center;
}
.c-section-title::before {
  content: "";
  position: absolute;
  width: 4.625rem;
  height: 3px;
  background: #E66D3E;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* modal */
.layer {
  /* background: rgba(0, 0, 0, 0.5); */
  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__button-wrap {
  position: absolute;
  right: 10px;
  top: 10px;
  display: inline-flex;
  z-index: 9999;
}

.close-button {
  position: relative;
  width: 36px;
  height: 36px;
  background: #273F4F;
  border-radius: 50%;
  padding: 0;
  border: transparent;
  cursor: pointer;
}

.close-button span {
  width: 25px;
  height: 2px;
  background: #fff;
  display: inline-block;
  position: absolute;
  left: calc(50% - 12px);
  top: 50%;
  border-radius: 20px;
}

.close-button span:nth-child(1) {
  transform: rotate(45deg) translate(-1px, -1px);
}

.close-button span:nth-child(2) {
  transform: rotate(-45deg) translate(1px, -1px);
}

.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: 95%;
  max-width: 350px;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.7s linear, opacity 0.7s linear;
}

.modal__inner {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  box-shadow: 10px 10px 13px 2px rgba(0, 0, 0, 0.25);
  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: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 96%;
}
@media screen and (min-width: 370px) {
  .modal__contents-btn {
    width: 337px;
    bottom: 28px;
  }
}

.modal__contents-text {
  position: absolute;
  bottom: 32%;
  right: 36%;
  font-weight: 700;
  font-size: 4.5rem;
  line-height: 1;
  color: #E66D3E;
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: #fff;
}
@media screen and (min-width: 370px) {
  .modal__contents-text {
    font-size: 72px;
  }
}

.p-company {
  padding: 1.875rem 0;
}

.p-company__inner {
  margin: 0 auto;
  max-width: 340px;
  padding: 0 10px;
}

.p-company__wrap {
  margin-top: 2.375rem;
}

.p-company__wrap dl {
  padding: 1.25rem 0;
  display: flex;
  gap: 1.375rem;
  border-bottom: 1px solid #E66D3E;
}

.p-company__wrap dt {
  width: 3.75rem;
  font-weight: 800;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
}

.p-company__wrap dd {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.25;
}

.p-company__wrap dd.small {
  font-size: 0.75rem;
}

.p-cv {
  background-color: #273F4F;
  padding: 0.75rem 0 1.875rem;
  color: #FFF;
}

.p-cv__text {
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.35;
  letter-spacing: 0;
  text-align: center;
}

.p-cv__img {
  margin-top: 0.3125rem;
  max-width: 15.625rem;
  margin: 0 auto;
}

.p-cv__text02 {
  position: relative;
  margin-top: -5.5rem;
  padding: 0.5625rem 0;
  font-weight: 800;
  font-size: 1.6875rem;
  line-height: 1;
  background-color: #E66D3E;
  text-align: center;
}

.p-cv__img02 {
  margin-top: 0.3125rem;
}

.p-cv__line {
  margin-top: 0.8125rem;
}

.p-cv__phone {
  margin-top: 1rem;
}

.p-faq {
  position: relative;
  background-color: #FFF9E0;
  padding: 3.125rem 0 1.875rem;
}
.p-faq::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.625rem;
  background: #273F4F;
  top: 0;
  left: 0;
}

.p-faq__inner {
  margin: 0 auto;
  max-width: 370px;
  padding: 0 10px;
}

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

.p-faq-list__item {
  padding: 0.625rem 0.9375rem 0.9375rem;
  background-color: #fff;
  -moz-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.16));
  -ms-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.16));
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.16));
}

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

.faq-list__item-question {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
}

.faq-list__item-question span {
  display: block;
  max-width: 1.0625rem;
}

.faq-list__item-answer {
  margin-top: 0.625rem;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.4285714286;
}

.p-fixed {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 390px;
  padding: 5px 10px;
}

.p-flow {
  position: relative;
  background-color: #F0FFFD;
  padding: 3.125rem 0 2.8125rem;
}
.p-flow::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.625rem;
  background: #273F4F;
  top: 0;
  left: 0;
}

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

.p-flow-list__item {
  padding: 1.4375rem 1.5625rem 1.5625rem;
  border-radius: 1.375rem;
  box-shadow: inset -3px -3px 6px rgba(0, 0, 0, 0.09), inset 3px 3px 6px rgba(0, 0, 0, 0.09);
}

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

.p-flow-list__item-img img {
  margin: 0 auto;
}

.p-flow-list__item-flex {
  margin-top: 0.3125rem;
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  color: #E66D3E;
}

.p-flow-list__item-number {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
}

.p-flow-list__item-number span {
  display: inline-block;
  margin-top: -0.1875rem;
  font-size: 2.625rem;
  letter-spacing: -0.05em;
}

.p-flow-list__item-title {
  font-weight: 700;
  font-size: 1.6875rem;
  line-height: 1;
}

.p-flow-list__item-text {
  margin-top: 0.625rem;
  font-weight: 500;
  line-height: 1.5625;
}

.p-footer {
  margin-bottom: 144px;
  padding: 2.1875rem 0 0.625rem;
  background-color: #273F4F;
}

.p-footer__logo {
  max-width: 10.625rem;
  margin: 0 auto;
}

.p-footer__nav {
  margin-top: 2.375rem;
  text-align: center;
}

.p-footer__nav-link:not(:first-of-type) {
  margin-top: 1.25rem;
  line-height: 1;
}

.p-footer__nav-link a {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  color: #FFF;
}

.p-footer__copy {
  margin-top: 3.125rem;
  text-align: center;
}

.p-footer__copy small {
  font-weight: 300;
  font-size: 0.75rem;
  color: #FFF;
}

.p-fv {
  position: relative;
}

.p-fv__line {
  position: absolute;
  bottom: 12.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  width: 94.87%;
}
@media screen and (min-width: 370px) {
  .p-fv__line {
    bottom: 200px;
  }
}

.p-header {
  width: 100%;
  position: absolute;
  top: 0.5rem;
  left: 0;
  z-index: 999;
}

.p-header__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-header__logo {
  width: 10.5rem;
}

.p-header__line {
  // max-width: 8.8125rem;
}

.p-price {
  position: relative;
  padding: 3.125rem 0 2.8125rem;
  background-color: #F0FFFD;
}
.p-price::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.625rem;
  background: #273F4F;
  top: 0;
  left: 0;
}

.p-price__inner {
  margin: 0 auto;
  max-width: 340px;
  padding: 0 10px;
}

.p-price-list {
  margin-top: 1.875rem;
}

.p-price-list__item {
  padding: 1.125rem 0.625rem;
  background-color: #fff;
  border-radius: 0.75rem;
  border: 2px solid #273F4F;
  -moz-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.3));
  -ms-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.3));
}

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

.p-price-list__item.p-price-list__item--sub {
  margin-top: 1.75rem;
  background-color: #273F4F;
  border: 2px solid #FFF;
}

.p-price-list__item-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8125rem;
}

.p-price-list__item-flex p {
  padding: 0.4375rem 0.75rem;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #FFF;
  background-color: #273F4F;
  text-align: center;
  border-radius: 0.1875rem;
}

.p-price-list__item-flex img {
  max-width: 5.375rem;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-price-list__item-text {
  margin-top: 0.625rem;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.4285714286;
}

.p-price-list__item.p-price-list__item--sub .p-price-list__item-flex {
  gap: 0.5625rem;
}

.p-price-list__item.p-price-list__item--sub .p-price-list__item-flex p {
  color: #273F4F;
  background-color: #fff;
}

.p-price-list__item.p-price-list__item--sub .p-price-list__item-flex b {
  font-weight: 800;
  font-size: 1.5625rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #FFF;
}

.p-privacy {
  padding: 70px 0 20px;
}

.p-privacy__title {
  padding: 6px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: #FFF;
  background-color: #273F4F;
  text-align: center;
}

.p-privacy__text {
  margin-top: 14px;
  font-size: 12px;
  line-height: 1.9285714286;
  letter-spacing: 0.05em;
}

.p-privacy__wrap {
  margin-top: 24px;
}

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

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

.p-privacy__wrap dd {
  font-size: 12px;
}

.p-reason {
  background-color: #FFF9E0;
  padding: 2.625rem 0;
}

.p-reason-list {
  margin-top: 2.1875rem;
}

.p-reason-list__item {
  padding: 0.9375rem 1.5625rem 1.25rem;
  background-color: #fff;
  border-radius: 0.625rem;
  -moz-filter: drop-shadow(0px 0px 7px rgba(230, 109, 62, 0.45));
  -ms-filter: drop-shadow(0px 0px 7px rgba(230, 109, 62, 0.45));
  filter: drop-shadow(0px 0px 7px rgba(230, 109, 62, 0.45));
}

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

.p-reason-list__item-number {
  font-style: italic;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #E66D3E;
}

.p-reason-list__item-img {
  margin: 0.3125rem auto 0;
  max-width: 10.9375rem;
}

.p-reason-list__item-title {
  margin-top: 0.9375rem;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.3636363636;
  letter-spacing: 0.05em;
  color: #E66D3E;
  text-align: center;
}

.p-reason-list__item-text {
  margin-top: 1.25rem;
  font-weight: 500;
  line-height: 1.5625;
}

.p-voice {
  background: linear-gradient(#FFE7DE, #FDFAE3);
  padding: 2.5rem 0;
}

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

.p-voice-list__item {
  position: relative;
  padding: 1.4375rem 1.5625rem 1.5625rem;
  background-color: #fff;
}
.p-voice-list__item::before {
  content: "";
  position: absolute;
  width: 1.8125rem;
  height: 1.8125rem;
  background: linear-gradient(135deg, #E66D3E 0%, #E66D3E 50%, transparent 50%, transparent 100%);
  top: 0;
  left: 0;
}

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

.p-voice-list__item-title {
  display: flex;
  gap: 0.75rem;
}

.p-voice-list__item-title img {
  max-width: 3.75rem;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-voice-list__item-title .text {
  padding-top: 0.625rem;
}

.p-voice-list__item-title h3 {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5625;
  letter-spacing: 0.05em;
  color: #E66D3E;
}

.p-voice-list__item-title p {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.3571428571;
  color: #E66D3E;
}

.p-voice-list__item-tag {
  padding: 0.375rem 0;
  margin-top: 1.25rem;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #FFF;
  text-align: center;
  background-color: #373B3E;
}

.p-voice-list__item-text {
  margin-top: 0.9375rem;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5625;
}

.p-why {
  padding: 1.75rem 0 0.3125rem;
  background-color: #F0FFFD;
}

.p-why__box {
  position: relative;
  margin-top: 1.25rem;
  padding: 1.4375rem 1rem;
  background-color: #fff;
  -moz-filter: drop-shadow(0px 0px 2px rgba(230, 109, 62, 0.4));
  -ms-filter: drop-shadow(0px 0px 2px rgba(230, 109, 62, 0.4));
  filter: drop-shadow(0px 0px 2px rgba(230, 109, 62, 0.4));
}
.p-why__box::before {
  content: "";
  position: absolute;
  width: 1.8125rem;
  height: 1.8125rem;
  background: linear-gradient(135deg, #E66D3E 0%, #E66D3E 50%, transparent 50%, transparent 100%);
  top: 0;
  left: 0;
}
.p-why__box::after {
  content: "";
  position: absolute;
  width: 1.8125rem;
  height: 1.8125rem;
  background: linear-gradient(135deg, transparent 0%, transparent 50%, #E66D3E 50%, #E66D3E 100%);
  bottom: 0;
  right: 0;
}

.p-why__box-title {
  position: relative;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #E66D3E;
}
.p-why__box-title::before {
  content: "";
  position: absolute;
  width: 12.25rem;
  height: 1px;
  background: #E66D3E;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.p-why__box-text {
  margin-top: 1rem;
  font-weight: 500;
  line-height: 1.5625;
  letter-spacing: 0;
  color: #E66D3E;
}

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

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

.p-why-list__item-title {
  display: flex;
  align-items: center;
  gap: 0.5625rem;
}

.p-why-list__item-title img {
  display: block;
  max-width: 5.75rem;
}

.p-why-list__item-title p {
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1;
  color: #273F4F;
}

.p-why-list__item-text {
  position: relative;
  width: 88.6%;
  margin-left: auto;
  padding-left: 2.3125rem;
  font-weight: 500;
  line-height: 1.5625;
}
.p-why-list__item-text::before {
  position: absolute;
  display: inline-block;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1.8125rem;
  height: 1.8125rem;
  background-image: url(../images/top/why-list-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}

.p-why-list__item-text:not(:first-of-type) {
  margin-top: 0.75rem;
}

.p-why-list__item-text span {
  font-weight: 800;
  color: #E66D3E;
}

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

.p-why__img02 {
  margin-top: -0.1875rem;
}

.p-worries {
  margin-top: -0.4375rem;
  padding: 2.5rem 0 0;
  background-image: url(../images/top/worries-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #273F4F;
}

.p-worries-list {
  margin-top: 1.5rem;
}

.p-worries-list__item {
  position: relative;
  padding-left: 1.75rem;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
}
.p-worries-list__item::before {
  content: "";
  position: absolute;
  width: 1rem;
  height: auto;
  aspect-ratio: 1;
  background: #E66D3E;
  border-radius: 50%;
  top: 0.5625rem;
  left: 0;
}

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

.p-worries-list__item span {
  color: #E66D3E;
}

.p-worries__img {
  margin: 0 calc(50% - 50vw);
}
@media screen and (min-width: 370px) {
  .p-worries__img {
    margin: unset;
  }
}

.p-worries__wrap {
  margin: 0 calc(50% - 50vw);
  margin-top: -0.125rem;
  padding: 1.5625rem 0 0.5625rem;
  color: #FFF;
  background-color: #273F4F;
}

.p-worries__wrap-text {
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}

.p-worries__wrap-text02 {
  position: relative;
  margin-top: 0.625rem;
  padding-bottom: 0.5rem;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}
.p-worries__wrap-text02::before {
  content: "";
  position: absolute;
  width: 18.5625rem;
  height: 5px;
  background: #E66D3E;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.p-worries__wrap-img {
  margin-top: 1.5rem;
}
/*# sourceMappingURL=style.css.map */