@charset "UTF-8";
/* リキッドレイアウト対応 */
html {
  font-size: 10px;
}
@media screen and (max-width: 1600px) {
  html {
    font-size: 0.625vw;
  }
}
@media screen and (max-width: 1100px) {
  html {
    font-size: 0.7vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2vw;
  }
}
@media screen and (max-width: 600px) {
  html {
    font-size: 2.551020408vw;
  }
}

body {
  background: #fff;
  color: #000;
  font-family: "游ゴシック体", sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  scroll-behavior: smooth;
}

body.noscroll {
  overflow: hidden;
}

a {
  display: block;
}

@media screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
dt {
  font-weight: 400;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
}

b {
  font-family: futura-pt, sans-serif;
  font-weight: 600;
  line-height: 1;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

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

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* 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 {
  display: block;
  max-width: 100%;
  width: 100%;
}

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

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

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

/* ホバー */
a {
  -webkit-text-decoration: none;
  text-decoration: none;
}

/* 
 * border-double
 * -------------------------------------------------------------
 */
.border-double {
  display: inline-block;
  line-height: 1;
  padding-bottom: 0.8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .border-double {
    padding-bottom: 0.5rem;
  }
}

.border-double::before,
.border-double::after {
  background: #F66735;
  content: "";
  display: block;
  height: 0.4rem;
  position: absolute;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .border-double::before,
  .border-double::after {
    height: 0.2rem;
  }
}

.border-double::before {
  bottom: 0;
  left: 0;
}

.border-double::after {
  bottom: -0.8rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .border-double::after {
    bottom: -0.4rem;
  }
}

/* 
 * br
 * -------------------------------------------------------------
 */
.br-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .br-sp {
    display: block;
  }
}

/* 
 * btn-animation
 * -------------------------------------------------------------
 */
@media screen and (max-width: 767px) {
  .btn-animation {
    animation: btn-animation 2s infinite;
    border-radius: 3rem;
    box-shadow: 0 0.4rem 0 rgba(0, 0, 0, 0.2);
    position: relative;
  }
}

@keyframes btn-animation {
  0% {
    box-shadow: 0 0.4rem 0 rgba(0, 0, 0, 0.2);
    top: 0px;
  }
  10% {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
    top: 0.3rem;
  }
  20% {
    box-shadow: 0 0.4rem 0 rgba(0, 0, 0, 0.2);
    top: 0px;
  }
  30% {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
    top: 0.3rem;
  }
  40% {
    box-shadow: 0 0.4rem 0 rgba(0, 0, 0, 0.2);
    top: 0px;
  }
}
/* 
 * btn
 * -------------------------------------------------------------
 */
.btn {
  align-items: center;
  background: #F66735;
  border-radius: 5rem;
  box-shadow: 0 0.6rem 0 rgba(0, 0, 0, 0.2);
  color: #fff;
  cursor: pointer;
  display: grid;
  font-size: 4.5rem;
  height: min(100%, 12rem);
  justify-items: center;
  letter-spacing: 0;
  line-height: 1;
  margin: auto;
  place-items: center;
  position: relative;
  width: min(100%, 74rem);
}

.btn:hover {
  box-shadow: 0 0.2rem 0 rgba(0, 0, 0, 0.2);
  position: relative;
  top: 0.4rem;
}

.micro_copy {
  text-align: center;
  font-size: 24px;
  margin-bottom: 10px;
  color:#F66735;
}

@media screen and (max-width: 767px) {
  .btn:hover {
    box-shadow: 0 0.5rem 0 rgba(0, 0, 0, 0.2);
    top: auto;
    top: initial;
  }
}

.btn--sm {
  box-shadow: 0 0.5rem 0 rgba(0, 0, 0, 0.2);
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .btn--sm {
    box-shadow: none;
    font-size: 1.6rem;
  }
}

.btn--sm:hover {
  box-shadow: 0 0.1rem 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .btn--sm:hover {
    box-shadow: none;
    position: relative;
    top: 0.2rem;
  }
}

.btn--md {
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .btn--md {
    box-shadow: 0 0.4rem 0 rgba(0, 0, 0, 0.2);
    font-size: 2.4rem;
  }
  .micro_copy {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.btn--lg {
  border-radius: 6rem;
  box-shadow: none;
  font-size: 4rem;
  padding: 4.1rem 0 3.9rem;
}
@media screen and (max-width: 767px) {
  .btn--lg {
    border-radius: 3rem;
    box-shadow: none;
    font-size: 2.4rem;
    padding: 1.9rem 0 1.7rem;
  }
}

.btn--lg:hover {
  box-shadow: none;
  position: static;
}

.btn--xl {
  border-radius: 5.5rem;
  box-shadow: 0 0.6rem 0 rgba(0, 0, 0, 0.2);
  font-size: 4.8rem;
}
@media screen and (max-width: 767px) {
  .btn--xl {
    box-shadow: 0 0.4rem 0 rgba(0, 0, 0, 0.2);
    font-size: 2.4rem;
  }
}

.btn--xl:hover {
  box-shadow: 0 0.1rem 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .btn--xl:hover {
    box-shadow: 0 0.4rem 0 rgba(0, 0, 0, 0.2);
  }
}

/* 
 * campaign-set
 * -------------------------------------------------------------
 */
.campaign-set {
  align-items: center;
  color: #fff;
  display: flex;
  font-family: futura-pt, sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .campaign-set {
    justify-content: center;
  }
}

.campaign-set__price-out {
  font-size: 11.8rem;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .campaign-set__price-out {
    font-size: 5.6rem;
    top: 0.8rem;
  }
}

.campaign-set__price-out::before {
  background: #F66735;
  content: "";
  display: inline-block;
  height: 0.9rem;
  left: 0;
  position: absolute;
  top: 46%;
  transform: matrix(-0.99, 0.16, -0.16, -0.99, 0, 0);
  width: 45.471rem;
}
@media screen and (max-width: 767px) {
  .campaign-set__price-out::before {
    height: 0.3rem;
    width: 21.261rem;
  }
}

.campaign-set__price-out::after {
  background: url(./../images/arrow.svg) no-repeat center;
  background-size: 100%;
  content: "";
  display: inline-block;
  height: 4.472rem;
  margin-left: 1.5rem;
  position: relative;
  top: -1.5rem;
  width: 2.464rem;
}
@media screen and (max-width: 767px) {
  .campaign-set__price-out::after {
    height: 2.193rem;
    margin-left: 0;
    top: -0.7rem;
    width: 1.208rem;
  }
}

.campaign-set__price-out .small {
  font-size: 9.1rem;
  margin-right: 0.5rem;
}
@media screen and (max-width: 767px) {
  .campaign-set__price-out .small {
    font-size: 4.3rem;
  }
}

.campaign-set__price-zero {
  font-size: 16.4rem;
  line-height: 1;
  margin-left: 3.66rem;
  text-shadow: 0.5rem 0.6rem 0 #F66735;
}
@media screen and (max-width: 767px) {
  .campaign-set__price-zero {
    font-size: 7.9rem;
    letter-spacing: 0.03em;
    margin-left: 1.47rem;
    text-shadow: 0.2rem 0.3rem 0 #F66735;
  }
}

@media screen and (max-width: 600px) {
  _::-webkit-full-page-media, _:future, :root .campaign-set__price-zero {
    margin-left: 1rem;
  }
}

.campaign-set__price-zero .small {
  font-size: 12.6rem;
}
@media screen and (max-width: 767px) {
  .campaign-set__price-zero .small {
    font-size: 6.1rem;
  }
}

.campaign-set--center {
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .campaign-set--center {
    margin-top: 1.6rem;
  }
}

.campaign-set__price-out--lg {
  font-size: 18.3rem;
}
@media screen and (max-width: 767px) {
  .campaign-set__price-out--lg {
    font-size: 5.6rem;
  }
}

.campaign-set__price-out--lg::before {
  left: 0;
  top: 47%;
  width: 71.033rem;
}
@media screen and (max-width: 767px) {
  .campaign-set__price-out--lg::before {
    width: 21.261rem;
  }
}

.campaign-set__price-out--lg::after {
  height: 6.985rem;
  margin-left: 3rem;
  position: relative;
  top: -0.5rem;
  width: 3.85rem;
}
@media screen and (max-width: 767px) {
  .campaign-set__price-out--lg::after {
    height: 2.193rem;
    margin-left: 0.5rem;
    top: -0.8rem;
    width: 1.208rem;
  }
}

.campaign-set__price-out--lg .small {
  font-size: 14.1rem;
}
@media screen and (max-width: 767px) {
  .campaign-set__price-out--lg .small {
    font-size: 4.3rem;
    margin-right: 0;
  }
}

.campaign-set__price-zero--lg {
  font-size: 25.6rem;
  margin-left: 5.7rem;
  text-shadow: 0.6rem 0.7rem 0 #F66735;
}
@media screen and (max-width: 767px) {
  .campaign-set__price-zero--lg {
    font-size: 7.9rem;
    margin-left: 1.47rem;
    text-shadow: 0.2rem 0.35rem 0 #F66735;
  }
}

@media screen and (max-width: 600px) {
  _::-webkit-full-page-media, _:future, :root .campaign-set__price-zero--lg {
    font-size: 6.9rem;
  }
}

.campaign-set__price-zero--lg .small {
  font-size: 19.7rem;
}
@media screen and (max-width: 767px) {
  .campaign-set__price-zero--lg .small {
    font-size: 6.1rem;
  }
}

@media screen and (max-width: 600px) {
  _::-webkit-full-page-media, _:future, :root .campaign-set__price-zero--lg .small {
    font-size: 5.1rem;
  }
}

.campaign-set__price-zero--lg .note {
  text-shadow: none;
}

/* 
 * inner
 * -------------------------------------------------------------
 */
.inner {
  margin-left: auto;
  margin-right: auto;
  width: min(100% - 8rem, 144rem);
}
@media screen and (max-width: 767px) {
  .inner {
    width: min(100% - 3.2rem, 144rem);
  }
}

/* 
 * note
 * -------------------------------------------------------------
 */
.note {
  display: block;
  font-size: 1.8rem;
  font-weight: 400;
  margin-top: 1rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .note {
    font-size: 1rem;
    margin-top: 0.58rem;
  }
}

.note--center {
  margin-top: 0;
  text-align: center;
}

.note--example {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .note--example {
    margin-top: 1.2rem;
    text-align: center;
  }
}

/* 
 * section-btn
 * -------------------------------------------------------------
 */
.section-btn {
  border-radius: 6rem;
  box-shadow: 0 0.6rem 0 rgba(0, 0, 0, 0.2);
  height: 100%;
  position: relative;
  width: 61rem;
}
@media screen and (max-width: 767px) {
  .section-btn {
    border-radius: 3rem;
    box-shadow: 0 0.4rem 0 rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    width: 29.4rem;
  }
}

.section-btn:hover {
  box-shadow: 0 0.2rem 0 rgba(0, 0, 0, 0.2);
  position: relative;
  top: 0.4rem;
}
@media screen and (max-width: 767px) {
  .section-btn:hover {
    box-shadow: 0 0.4rem 0 rgba(0, 0, 0, 0.2);
    top: auto;
    top: initial;
  }
}

.section-btn__text {
  align-items: center;
  background: #fff;
  border: 0.3rem solid #F66735;
  border-radius: 2.5rem;
  color: #F66735;
  cursor: pointer;
  display: block;
  display: grid;
  font-size: 2.2rem;
  height: 5rem;
  justify-items: center;
  margin-left: auto;
  margin-right: auto;
  place-items: center;
  position: relative;
  top: 2.5rem;
  width: 40.7rem;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .section-btn__text {
    border: 0.2rem solid #F66735;
    border-radius: 1.6rem;
    font-size: 1.3rem;
    height: 3.2rem;
    padding-top: 0.3rem;
    top: 1.2rem;
    width: 22rem;
  }
}

.section-btn__text::after {
  border-color: #fff transparent transparent transparent;
  border-style: solid;
  border-width: 1.2rem 1.3rem 0 1.3rem;
  bottom: -0.9rem;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 0);
  width: 0;
}
@media screen and (max-width: 767px) {
  .section-btn__text::after {
    border-width: 1.2rem 1.3rem 0 1.3rem;
    bottom: -0.7rem;
  }
}

/* 
 * section-header
 * -------------------------------------------------------------
 */
.section-header {
  text-align: center;
}

.section-header__title {
  font-size: 4.8rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .section-header__title {
    font-size: 2.8rem;
    line-height: 1.2;
  }
}

.section-header__title b {
  font-family: futura-pt, sans-serif;
  font-size: 10.2rem;
  font-weight: 600;
  margin: 0 0.5rem 0 1.5rem;
  position: relative;
  top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .section-header__title b {
    font-size: 4.5rem;
    vertical-align: text-bottom;
  }
}

.test {
  font-size: 5rem;
}
@media screen and (max-width: 767px) {
  .test {
    font-size: 2rem;
  }
}

.jikken {
  font-size: 10rem;
}
@media screen and (max-width: 767px) {
  .jikken {
    align-items: center;
    display: block;
    font-size: 3rem;
    position: relative;
  }
}

/* 
 * about
 * -------------------------------------------------------------
 */
.about {
  background: #fff;
  padding: 10rem 0 13rem;
}
@media screen and (max-width: 767px) {
  .about {
    padding: 5rem 0 7rem;
  }
}

.about__header-title {
  align-items: center;
  display: flex;
  justify-content: center;
}

.about__header-title img {
  margin-right: 1.7rem;
  width: 38.54rem;
}
@media screen and (max-width: 767px) {
  .about__header-title img {
    margin-right: 0.75rem;
    width: 21.051rem;
  }
}

.about__lead {
  font-size: 3.2rem;
  letter-spacing: 0;
  line-height: 1.5;
  margin-top: 5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about__lead {
    font-size: 1.6rem;
    line-height: 1.75;
    margin-top: 3rem;
  }
}

.about__contents {
  align-items: center;
  display: flex;
  gap: 0 7rem;
  justify-content: center;
  margin-top: 6rem;
  margin-left: 3rem;
  margin-right: 3rem;
}
@media screen and (max-width: 767px) {
  .about__contents {
    flex-direction: column;
    gap: 2.1rem 0;
    margin-top: 3.4rem;
    margin-left: auto;
  margin-right: auto;
  }
}

.about__img {
  width: 57.2rem;
}
@media screen and (max-width: 767px) {
  .about__img {
    margin: 0 auto;
    width: 31.1rem;
  }
}

@media screen and (max-width: 767px) {
  .about__content {
    text-align: center;
    width: 100%;
  }
}

.about__text {
  font-size: 4.8rem;
  line-height: 1.56;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .about__text {
    font-size: 2.4rem;
  }
}

.about__text b {
  color: #F66735;
  font-size: 8.1rem;
}
@media screen and (max-width: 767px) {
  .about__text b {
    font-size: 4rem;
  }
}

.about__btn {
  margin:0 auto;
}
@media screen and (max-width: 767px) {
  .about__btn {
    margin-top: 0.25rem;
  }
}

/* 
 * campaign
 * -------------------------------------------------------------
 */
.campaign {
  background: #43B9D5;
  padding: 10rem 0 12rem;
}
@media screen and (max-width: 767px) {
  .campaign {
    padding: 5rem 0 8rem;
  }
}

.campaign__contents {
  color: #fff;
  margin: 5rem 10rem 0;
  max-width: 136.3rem;
  text-align: center;
}
.pc-campaign img{
  max-width: 80%;
  margin:auto
}
@media screen and (max-width: 767px) {
  .campaign__contents {
    margin: 3.1rem auto 0;
    max-width: 100%;
  }
}

.campaign__header-title {
  line-height: 1;
  margin-left: auto;
  margin-right: auto;
  width: 41.35rem;
}
@media screen and (max-width: 767px) {
  .campaign__header-title {
    width: 23.373rem;
  }
}

.campaign__title {
  margin-left: auto;
  margin-right: auto;
  width: 93.125rem;
}
@media screen and (max-width: 767px) {
  .campaign__title {
    width: 35.8rem;
  }
}

.campaign__lead {
  font-size: 4.8rem;
  line-height: 1;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .campaign__lead {
    font-size: 3rem;
    line-height: 1.15;
    margin-top: 3rem;
  }
}

.campaign__price {
  position: relative;
}

.campaign__price::before {
  background: url(./../images/object_left.svg) no-repeat center;
  background-size: 100%;
  content: "";
  display: inline-block;
  height: 5.25rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 4.62rem;
}
@media screen and (max-width: 767px) {
  .campaign__price::before {
    height: 3.165rem;
    left: -0.5rem;
    top: -9rem;
    width: 2.784rem;
  }
}

.campaign__price::after {
  background: url(./../images/object_right.svg) no-repeat center;
  background-size: 100%;
  bottom: 3.8rem;
  content: "";
  display: inline-block;
  height: 5.25rem;
  position: absolute;
  right: 0;
  width: 4.62rem;
}
@media screen and (max-width: 767px) {
  .campaign__price::after {
    bottom: -2rem;
    height: 3.165rem;
    width: 2.784rem;
  }
}

.campaign__text {
  font-size: 3.6rem;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .campaign__text {
    font-size: 1.6rem;
    margin-top: 4.57rem;
  }
}

.campaign__btn {
  height: 11rem;
  margin: 1.5rem auto 0;
  width: 74rem;
}
@media screen and (max-width: 767px) {
  .campaign__btn {
    height: 6rem;
    margin: 1rem auto 0;
    width: 29.4rem;
  }
}

.campaign__note {
  font-weight: bold;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .campaign__note {
    display: none;
  }
}

.sp-campaign__note {
  display: block;
  display: none;
  font-weight: bold;
  margin-top: 0.6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sp-campaign__note {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .pc-campaign{
    display: none;
  }
}

/* 
 * contact
 * -------------------------------------------------------------
 */
.contact {
  background: #fff;
  padding: 11.6rem 0 13.7rem;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 5rem 0 5.6rem;
  }
}

.contact__form {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__form {
    margin-left: auto;
    margin-right: auto;
    width: 95%;
  }
}

/* 
 * cost
 * -------------------------------------------------------------
 */
.cost {
  background: #FEF7F4;
  padding: 8rem 0 15rem;
}
@media screen and (max-width: 767px) {
  .cost {
    padding: 5rem 0 7rem;
  }
}

.cost__header-title {
  letter-spacing: 0.3em;
}

.cost__lead {
  font-size: 3.6rem;
  line-height: 1.5;
  margin-top: 7rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cost__lead {
    font-size: 1.6rem;
    line-height: 1.75;
    margin-top: 3rem;
  }
}

.cost__contents {
  margin-left: auto;
  margin-right: auto;
  margin-top: 8.5rem;
  width: min(100%, 120rem);
}
@media screen and (max-width: 767px) {
  .cost__contents {
    margin-top: 3.4rem;
    width: 100%;
  }
}

.cost__items {
  align-items: center;
  display: flex;
  gap: 0 4.58rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .cost__items {
    flex-direction: column;
    gap: 3rem 0;
  }
}

.cost__item {
  border: 0.2rem solid #E4E4E4;
  border-radius: 2rem;
  overflow: hidden;
  text-align: center;
  width: 56.358rem;
}
@media screen and (max-width: 767px) {
  .cost__item {
    border-radius: 1rem;
    border-width: 0.1rem;
    width: 100%;
  }
}

.cost__title {
  background: #43B9D5;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-size: 3.6rem;
  height: 10.43rem;
  justify-content: center;
  line-height: 1;
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .cost__title {
    font-size: 2rem;
    height: 5.5rem;
    letter-spacing: 0.1em;
    padding: 1.8rem;
  }
}

.cost__price {
  background: #fff;
  font-size: 6.8rem;
  padding: 2.7rem 2rem;
}
@media screen and (max-width: 767px) {
  .cost__price {
    font-size: 4rem;
    padding: 1.4rem 1.4rem 1.6rem;
  }
}

.cost__price b {
  font-size: 15rem;
}
@media screen and (max-width: 767px) {
  .cost__price b {
    font-size: 9rem;
  }
}

.cost__items .plus {
  background: url(./../images/cost_+.svg) no-repeat center;
  background-size: 100%;
  display: inline-block;
  height: 5.7rem;
  width: 5.7rem;
}
@media screen and (max-width: 767px) {
  .cost__items .plus {
    height: 3.5rem;
    width: 3.5rem;
  }
}

.cost__note {
  display: block;
  font-size: 2rem;
  margin-top: 0.63rem;
}
@media screen and (max-width: 767px) {
  .cost__note {
    font-size: 1rem;
    margin-top: 0.47rem;
  }
}

.cost__table-wrap {
  margin-top: 15rem;
}
@media screen and (max-width: 767px) {
  .cost__table-wrap {
    margin-top: 5rem;
  }
}

.cost__table-title {
  font-size: 4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cost__table-title {
    font-size: 2rem;
  }
}

.cost__table {
  line-height: 1;
  margin-top: 5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .cost__table {
    border-collapse: inherit;
    margin-top: 2rem;
  }
}

.cost__table tr:not(:first-child) {
  border-bottom: 0.1rem solid #707070;
  border-top: 0.1rem solid #707070;
}
@media screen and (max-width: 767px) {
  .cost__table tr:not(:first-child) {
    border-top: none;
  }
}

.cost__table th {
  font-size: 2.4rem;
  padding: 3.3rem 0;
}
@media screen and (max-width: 767px) {
  .cost__table th {
    font-size: 1.1rem;
    padding: 1rem 0 0.6rem;
  }
}

.table__head {
  border-radius: 1rem 1rem 0 0;
}

.table__head th {
  font-size: 3.2rem;
  padding: 4.8rem 2rem;
  text-align: center;
  width: 32rem;
}
@media screen and (max-width: 767px) {
  .table__head th {
    font-size: 1.3rem;
    padding: 2.2rem 0;
    width: 11.4rem;
  }
}

.table__head th:nth-of-type(1) {
  background: #e4e4e4;
  border-radius: 1rem 0 0 0;
}

.table__head th:nth-of-type(2) {
  background: #43B9D5;
  color: #fff;
}

.table__head th:nth-of-type(3) {
  background: #e4e4e4;
  border-radius: 0 1rem 0 0;
}

@media screen and (max-width: 767px) {
  .table__head .space {
    display: none;
  }
}

.cost__table td {
  padding: 3.3rem 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cost__table td {
    padding: 1.6rem 0 1.45rem;
  }
}

.cost__table td:nth-child(2),
.cost__table td:nth-child(4) {
  background: #fff;
  color: #ABAAAC;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .cost__table td:nth-child(2),
  .cost__table td:nth-child(4) {
    font-size: 1.5rem;
  }
}

.cost__table td:nth-child(3) {
  background: #ecf7fa;
  color: #43B9D5;
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .cost__table td:nth-child(3) {
    font-size: 1.7rem;
  }
}

.cost__table td small {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .cost__table td small {
    font-size: 1rem;
  }
}

.cost__table td:nth-child(3) small {
  font-size: 1.9rem;
}
@media screen and (max-width: 767px) {
  .cost__table td:nth-child(3) small {
    font-size: 1.1rem;
  }
}

.cost__table td span {
  display: inline-block;
  height: 3.9rem;
  width: 3.9rem;
}
@media screen and (max-width: 767px) {
  .cost__table td span {
    height: 2.2rem;
    width: 2.1rem;
  }
}

.cost__table td span.is {
  background: url(./../images/table_is-gray.svg) no-repeat center;
  background-size: 100%;
}

.cost__table td:nth-child(3) span.is {
  background: url(./../images/table_is-blue.svg) no-repeat center;
  background-size: 100%;
}

.cost__table td span.isnot {
  background: url(./../images/table_isnot.svg) no-repeat center;
  background-size: 100%;
}

.cost__table tr.sp-table__label {
  border: none;
  display: none;
}
@media screen and (max-width: 767px) {
  .cost__table tr.sp-table__label {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .pc-table__label {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .cost__table td.is-not {
    padding: 1.2rem 0 1.15rem;
  }
}

/* 
 * example
 * -------------------------------------------------------------
 */
.example {
  background: #fff;
  padding: 7.7rem 0 15rem;
}
@media screen and (max-width: 767px) {
  .example {
    padding: 5rem 0 6.8rem;
  }
}

.example__contents {
  margin-left: auto;
  margin-right: auto;
  /*width: min(100%, 127.587rem);*/
  width: min(100%, 120rem);
}

.example__heading {
  border-bottom: 0.3rem solid #707070;
  margin-top: 6.5rem;
}
@media screen and (max-width: 767px) {
  .example__heading {
    border-bottom: 0.2rem solid #000;
    margin-top: 4rem;
  }
}

.example__heading-title {
  align-items: center;
  display: flex;
  font-size: 3.6rem;
  gap: 0 2.64rem;
  justify-content: center;
  line-height: 1;
  padding-bottom: 2.2rem;
}
@media screen and (max-width: 767px) {
  .example__heading-title {
    flex-direction: column;
    font-size: 2rem;
    gap: 2rem 0;
    padding-bottom: 1.4rem;
  }
}

.example__heading-title::before {
  background: url(./../images/example_icon01.svg) no-repeat center;
  background-size: 100%;
  content: "";
  display: inline-block;
  height: 4.8rem;
  width: 5.336rem;
}

.example__item {
  text-align: center;
  margin-bottom: 5rem;
}

.example__title {
  font-size: 3.6rem;
  margin-top: 5.7rem;
}
@media screen and (max-width: 767px) {
  .example__title {
    font-size: 1.8rem;
    line-height: 1.88;
    margin-top: 3rem;
  }
}

.example__title-big {
  font-size: 7.4rem;
  line-height: 1;
  margin-top: 4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .example__title-big {
    font-size: 4rem;
    margin-top: 1.8rem;
    padding-bottom: 0.3rem;
  }
}

.example__title-big b {
  color: #F66735;
  font-family: futura-pt, sans-serif;
  font-size: 18.7rem;
  font-weight: 600;
  margin-right: 1.2rem;
  position: relative;
  top: 0.8rem;
}
@media screen and (max-width: 767px) {
  .example__title-big b {
    font-size: 10rem;
    margin-right: 0.5rem;
    top: 0.3rem;
  }
}

.example__title-big::before,
.example__title-big::after {
  display: inline-block;
  height: 7rem;
  position: absolute;
  width: 7.5rem;
}
@media screen and (max-width: 767px) {
  .example__title-big::before,
  .example__title-big::after {
    height: 3.632rem;
    width: 3.896rem;
  }
}

.example__title-big::before {
  background: url(./../images/example_object_left.svg) no-repeat center;
  background-size: 100%;
  bottom: 1rem;
  content: "";
  left: 25rem;
}
@media screen and (max-width: 767px) {
  .example__title-big::before {
    bottom: -3.2rem;
    left: 0;
  }
}

.example__title-big::after {
  background: url(./../images/example_object_right.svg) no-repeat center;
  background-size: 100%;
  content: "";
  right: 25rem;
  top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .example__title-big::after {
    right: 0;
    top: 0;
  }
}

.example__lists-first {
  display: flex;
  gap: 0 3.9rem;
  margin-top: 4.8rem;
}
@media screen and (max-width: 767px) {
  .example__lists-first {
    flex-direction: column;
    gap: 2rem 0;
    margin-top: 6.2rem;
  }
}

.example__list-first {
  align-items: center;
  aspect-ratio: 5/4;
  background: #fef1eb;
  border-radius: 2.9rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 4rem;
  width: 40rem;
}
@media screen and (max-width: 767px) {
  .example__list-first {
    aspect-ratio: unset;
    border-radius: 1rem;
    padding: 3rem 2rem;
    width: 100%;
  }
}

.example__list-title {
  font-size: 2.8rem;
  line-height: 1.42;
}
@media screen and (max-width: 767px) {
  .example__list-title {
    font-size: 2rem;
    line-height: 1.3;
  }
}

.example__list-data {
  color: #F66735;
  font-size: 4rem;
  margin-top: 2.2rem;
}
@media screen and (max-width: 767px) {
  .example__list-data {
    font-size: 3.6rem;
  }
}

.example__list-data b {
  font-size: 9rem;
  margin-right: 1rem;
}
@media screen and (max-width: 767px) {
  .example__list-data b {
    font-size: 7.2rem;
  }
}

/* 
 * 利用プラン内容
---------------------------------------------------- */
.example__item-second {
  border: 0.5rem solid #E4E4E4;
  border-radius: 2.7rem;
  margin-top: 9.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .example__item-second {
    border-radius: 1.5rem;
    border-width: 0.3rem;
    margin-top: 6rem;
  }
}

.example__title-second {
  background: #fff;
  display: inline-block;
  left: 50%;
  padding: 2.3rem 2.7rem 1.6rem;
  position: absolute;
  top: -5rem;
  transform: translate(-50%, -5rem);
}
@media screen and (max-width: 767px) {
  .example__title-second {
    font-size: 2rem;
    padding: 0.5rem 1.1rem 1.2rem;
    top: -5.5rem;
    transform: translate(-50%, 0);
  }
}

.example__lists-second {
  display: flex;
  padding: 4.67rem 0 2.64rem;
}
@media screen and (max-width: 767px) {
  .example__lists-second {
    flex-direction: column;
    padding: 1rem 1.25rem 0;
  }
}

.example__list-second {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 4.5rem 0;
  justify-content: center;
  padding: 4.4rem 3rem 1.56rem;
  width: 33.3333333333%;
}
@media screen and (max-width: 767px) {
  .example__list-second {
    flex-direction: row;
    gap: 0 2.87rem;
    justify-content: flex-start;
    padding: 4.5rem 0 3.8rem 2.4rem;
    width: 100%;
  }
}

.example__list-second:nth-child(2),
.example__list-second:nth-child(3) {
  background-image: linear-gradient(to bottom, #E4E4E4 0.4rem, transparent 0.4rem);
  background-position: left;
  background-repeat: repeat-y;
  background-size: 0.3rem 0.8rem;
}
@media screen and (max-width: 767px) {
  .example__list-second:nth-child(2),
  .example__list-second:nth-child(3) {
    background-image: linear-gradient(to right, #E4E4E4 0.4rem, transparent 0.4rem);
    background-position: top;
    background-repeat: repeat-x;
    background-size: 0.8rem 0.4rem;
  }
}

.example__list-second:nth-child(1) img {
  width: 13.84rem;
}
@media screen and (max-width: 767px) {
  .example__list-second:nth-child(1) img {
    width: 8.027rem;
  }
}

.example__list-second:nth-child(2) img {
  padding-bottom: 1.45rem;
  width: 17.043rem;
}
@media screen and (max-width: 767px) {
  .example__list-second:nth-child(2) img {
    padding-bottom: 0;
    width: 7.79rem;
  }
}

.example__list-second:nth-child(3) img {
  padding-bottom: 0.7rem;
  width: 16.614rem;
}
@media screen and (max-width: 767px) {
  .example__list-second:nth-child(3) img {
    padding-bottom: 0;
    width: 7.827rem;
  }
}

@media screen and (max-width: 767px) {
  .example__item-second .example__list-title {
    font-size: 1.8rem;
    line-height: 1.6;
  }
}

/* 
 * footer
 * -------------------------------------------------------------
 */
.footer {
  background: #000;
  color: #fff;
  font-size: 1.8rem;
  padding: 3.5rem 0 4rem;
}
@media screen and (max-width: 767px) {
  .footer {
    font-size: 1.2rem;
    padding: 2.7rem 0 3rem;
  }
}

.footer__nav-items {
  display: flex;
  gap: 0 2rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .footer__nav-items {
    gap: 0 1.3rem;
  }
}

.footer__copyright {
  margin-top: 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    margin-top: 1.5rem;
  }
}

/* 
 * fv
 * -------------------------------------------------------------
 */
.fv__contents {
  align-items: center;
  display: flex;
  gap: 0 9.08rem;
  margin: 0 10rem;
  max-width: 134.5rem;
  /*padding-top: 5.7rem;*/
}
@media screen and (max-width: 767px) {
  .fv__contents {
    flex-direction: column;
    gap: 0;
    margin: 0 auto;
    padding-top: 3rem;
  }
}

.fv__content {
  width: 61.7rem;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .fv__content {
    width: 100%;
  }
}

.fv__text {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .fv__text {
    width: max(34.1rem, 95%);
    margin: 0 auto;
  }
}

.fv__img {
  width: 63.715rem;
}
@media screen and (max-width: 767px) {
  .fv__img {
    width: 32.7rem;
  }
}

.fv__btn {
  height: 10rem;
  margin: 3rem auto 0;
  width: 51rem;
}
@media screen and (max-width: 767px) {
  .fv__btn {
    height: 6rem;
    margin: 2.2rem auto 0;
    width: 29.4rem;
  }
}

.fv__campaign {
  background: #43B9D5;
  margin: 0 calc(50% - 50vw);
  /*padding: 1.6rem 0;*/
  width: 100vw;
}
@media screen and (max-width: 767px) {
  .fv__campaign {
    margin-top: -4.1rem;
    padding: 1rem;
    position: relative;
  }
}

.fv__campaign-flex {
  align-items: center;
  display: flex;
  gap: 0 2rem;
  margin: 0 auto;
  max-width: 138rem;
  position: relative;
  right: -1rem;
}
@media screen and (max-width: 767px) {
  .fv__campaign-flex {
    flex-direction: column;
    right: auto;
    right: initial;
  }
}

.fv__campaign-flex::before {
  background: url(./../images/object_left.svg) no-repeat center;
  background-size: 100%;
  content: "";
  display: inline-block;
  height: 5.25rem;
  left: -3rem;
  position: absolute;
  top: 0;
  width: 4.62rem;
}
@media screen and (max-width: 767px) {
  .fv__campaign-flex::before {
    height: 2.662rem;
    left: 0;
    top: 4.8rem;
    width: 2.342rem;
  }
}

.fv__campaign-flex::after {
  background: url(./../images/object_right.svg) no-repeat center;
  background-size: 100%;
  bottom: 0.3rem;
  content: "";
  display: inline-block;
  height: 5.25rem;
  position: absolute;
  right: 0;
  width: 4.62rem;
}
@media screen and (max-width: 767px) {
  .fv__campaign-flex::after {
    bottom: -0.53rem;
    height: 2.662rem;
    width: 2.342rem;
  }
}

.fv__campaign-left {
  position: relative;
  text-align: center;
  width: 51rem;
}
@media screen and (max-width: 767px) {
  .fv__campaign-left {
    width: 100%;
  }
}

.fv__campaign-left::after {
  background: url(./../images/separator.svg) no-repeat center;
  background-size: 100% 100%;
  content: "";
  display: inline-block;
  height: 13.515rem;
  position: absolute;
  right: -3rem;
  top: 0;
  width: 1.215rem;
}
@media screen and (max-width: 767px) {
  .fv__campaign-left::after {
    display: none;
  }
}

.fv__campaign-title {
  color: #fff;
  font-size: 4.6rem;
  letter-spacing: 0;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .fv__campaign-title {
    font-size: 2.8rem;
  }
}

.fv__campaign-title span {
  display: block;
  font-size: 1.8rem;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .fv__campaign-title span {
    display: none;
  }
}

.fv__campaign-right {
  margin-left: auto;
  width: 79.873rem;
}
@media screen and (max-width: 767px) {
  .fv__campaign-right {
    margin-top: -0.5rem;
    width: 100%;
  }
}

.sp-fv__campaign-note {
  color: #fff;
  display: block;
  display: none;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  margin-top: 0.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sp-fv__campaign-note {
    display: block;
  }
}

/* 
 * header
 * -------------------------------------------------------------
 */
.header {
  background: #fff;
  box-shadow: 0px 0.3rem 0.6rem rgba(0, 0, 0, 0.1607843137);
  height: 9.1rem;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .header {
    height: 5.6rem;
  }
}

.header__inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: flex-end;
  padding: 0 5.6rem;
}
@media screen and (max-width: 1100px) {
  .header__inner {
    padding: 0 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 0 1.6rem;
  }
}

.header__logo {
  margin-right: auto;
  width: 25.4rem;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 14.3rem;
  }
}

.header__menu {
  align-items: center;
  display: flex;
  justify-content: flex-end;
}

.header__nav {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__nav-items {
  display: flex;
}

.header__nav-item {
  margin-right: 4rem;
}
@media screen and (max-width: 1100px) {
  .header__nav-item {
    margin-right: 3rem;
  }
}

.header__nav-link {
  font-size: 2.1rem;
  letter-spacing: 0;
}

.header__btn {
  height: 6rem;
  margin-left: auto;
  width: 24rem;
}
@media screen and (max-width: 767px) {
  .header__btn {
    height: 3.7rem;
    width: 18rem;
  }
}

/* 
 * introduction
 * -------------------------------------------------------------
 */
.introduction {
  background: #ecf7fa;
  padding: 8rem 0 14rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .introduction {
    padding: 5rem 0 6.2rem;
  }
}

.introduction__contents{
  margin: 0 8rem;
}

@media screen and (max-width: 767px) {
  .introduction__contents {
    margin: 0 auto;
  }
}

.introduction__items {
  display: flex;
  gap: 0 3.3rem;
  margin-top: 9.6rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .introduction__items {
    flex-wrap: wrap;
    gap: 1.7rem;
    justify-content: center;
    margin-top: 2.8rem;
  }
}

.introduction__item {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  height: 28rem;
  width: 28rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .introduction__item {
    height: 16.9rem;
    width: 16.9rem;
  }
}

@media screen and (max-width: 600px) {
  _::-webkit-full-page-media, _:future, :root .introduction__item {
    height: 15.9rem;
    width: 15.9rem;
  }
}

.introduction__text {
  font-size: 1.8rem;
  line-height: 1.33;
}
@media screen and (max-width: 767px) {
  .introduction__text {
    font-size: 1.2rem;
  }
}

.introduction__item:nth-child(1) img {
  margin-top: 3rem;
  width: 8.924rem;
}
@media screen and (max-width: 767px) {
  .introduction__item:nth-child(1) img {
    margin-top: 1.84rem;
    width: 4.854rem;
  }
}

.introduction__item:nth-child(2) img {
  margin-top: 3.3rem;
  width: 10.694rem;
}
@media screen and (max-width: 767px) {
  .introduction__item:nth-child(2) img {
    margin-left: 1rem;
    margin-top: 1.84rem;
    width: 5.816rem;
  }
}

.introduction__item:nth-child(3) img {
  margin-top: 5.34rem;
  width: 19.176rem;
}
@media screen and (max-width: 767px) {
  .introduction__item:nth-child(3) img {
    margin-top: 3.06rem;
    width: 10.43rem;
  }
}

.introduction__item:nth-child(4) img {
  margin-top: 3rem;
  width: 13rem;
}
@media screen and (max-width: 767px) {
  .introduction__item:nth-child(4) img {
    margin-top: 1.8rem;
    width: 7.068rem;
  }
}

.introduction__content {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .introduction__content {
    margin-top: 1.8rem;
  }
}

.introduction__content::before {
  background: url(./../images/arrow02.svg) no-repeat center;
  background-size: 100%;
  content: "";
  display: inline-block;
  height: 10.724rem;
  width: 6.373rem;
}
@media screen and (max-width: 767px) {
  .introduction__content::before {
    width: 5.113rem;
  }
}

.introduction__lead {
  font-size: 4.2rem;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .introduction__lead {
    font-size: 2rem;
    margin-top: 2rem;
  }
}

.introduction__lead span {
  display: inline-block;
  margin-top: 1.8rem;
  padding-bottom: 0.3rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .introduction__lead span {
    margin-top: 1.5rem;
    padding-bottom: 0.2rem;
  }
}

@media screen and (max-width: 767px) {
  .introduction__lead span:nth-of-type(2) {
    margin-top: 2.1rem;
  }
}

.introduction__lead span::before,
.introduction__lead span::after {
  background: #F66735;
  content: "";
  display: block;
  height: 0.4rem;
  position: absolute;
  width: 63.5rem;
}
@media screen and (max-width: 767px) {
  .introduction__lead span::before,
  .introduction__lead span::after {
    height: 0.2rem;
    width: 100%;
  }
}

.introduction__lead span::before {
  bottom: 0;
  left: 1.4rem;
}
@media screen and (max-width: 767px) {
  .introduction__lead span::before {
    left: 0;
  }
}

.introduction__lead span::after {
  bottom: -0.8rem;
  left: 1.4rem;
}
@media screen and (max-width: 767px) {
  .introduction__lead span::after {
    bottom: -0.4rem;
    left: 0;
  }
}

.introduction__lead strong {
  font-size: 6rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .introduction__lead strong {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 767px) {
  .pc-introduction__lead {
    display: none;
  }
}

.sp-introduction__lead {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-introduction__lead {
    display: block;
  }
}

/* 
 * main
 * -------------------------------------------------------------
 */
.main {
  margin-top: 8.1rem;
}
@media screen and (max-width: 767px) {
  .main {
    margin-top: 5.6rem;
  }
}

/* 
 * reason
 * -------------------------------------------------------------
 */
.reason {
  background: #ecf7fa;
  padding: 12rem 0 15rem;
}
@media screen and (max-width: 767px) {
  .reason {
    padding: 5rem 0 7rem;
  }
}

@media screen and (max-width: 767px) {
  .reason__header-title {
    line-height: 1;
  }
}

.reason__items {
  display: flex;
  flex-direction: column;
  gap: 22rem 0;
  margin-top: 16rem;
  margin-left: 10rem;
  margin-right: 10rem;
  margin-bottom: 5rem;
}

@media screen and (max-width: 767px) {
  .reason__items {
    gap: 7.7rem 0;
    margin-top: 7.7rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.reason__item {
  align-items: center;
  background: #fff;
  border-radius: 5rem;
  /*display: flex;*/
  flex-direction: column;
  padding: 13rem 15rem 7rem;
}
@media screen and (max-width: 767px) {
  .reason__item {
    border-radius: 2rem;
    padding: 6.8rem 2rem 4.74rem;
  }
}

.reason__heading {
  position: relative;
}

.reason__number {
  align-items: center;
  background: #43B9D5;
  border-radius: 50%;
  color: #fff;
  display: block;
  display: grid;
  font-family: futura-pt, sans-serif;
  font-size: 10rem;
  font-weight: 600;
  height: 17rem;
  justify-items: center;
  left: 50%;
  margin: 0 auto;
  place-items: center;
  position: absolute;
  top: -21.5rem;
  transform: translate(-50%, 0);
  width: 17rem;
}
@media screen and (max-width: 767px) {
  .reason__number {
    font-size: 4.4rem;
    height: 7.637rem;
    top: -10.618rem;
    width: 7.637rem;
  }
}

.reason__title {
  font-size: 6rem;
  line-height: 1.25;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .reason__title {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

.reason__title b {
  font-size: 10rem;
  margin: 0 0.8rem;
}
@media screen and (max-width: 767px) {
  .reason__title b {
    font-size: 4rem;
    margin: 0 0.3rem;
  }
}

.reason__text {
  font-size: 3.6rem;
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .reason__text {
    font-size: 1.6rem;
    margin-bottom: 1.6rem;
  }
}

.reason__main {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .reason__main {
    margin-top: 3rem;
  }
}

.reason__lists {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 1.37rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .reason__lists {
    gap: 0.9rem 1rem;
    justify-content: flex-start;
  }
}

.reason__list {
  background: rgba(245, 103, 53, 0.1);
  border-radius: 0.3rem;
  /*flex: auto;*/
  font-size: 2.1rem;
  line-height: 1;
  padding: 0.87rem 1.55rem 1rem;
}
@media screen and (max-width: 767px) {
  .reason__list {
    flex: initial;
    font-size: 1.6rem;
    padding: 0.55rem 1rem 0.65rem 1.07rem;
  }
}

.reason__list::before {
  background: url(./../images/check.svg) no-repeat center;
  background-size: 100%;
  content: "";
  display: inline-block;
  height: 1.53rem;
  margin-right: 1.3rem;
  width: 1.83rem;
}
@media screen and (max-width: 767px) {
  .reason__list::before {
    background: url(./../images/check_sp.svg) no-repeat center;
    background-size: 100%;
    height: 1.255rem;
    margin-right: 0.7rem;
    width: 1.465rem;
  }
}

/* 01 */
.reason__lists-01 .reason__list:nth-child(n+5):nth-child(-n+6) {
  flex: inherit;
  padding: 0.87rem 3.2rem 1rem 1.55rem;
}
@media screen and (max-width: 767px) {
  .reason__lists-01 .reason__list:nth-child(n+5):nth-child(-n+6) {
    padding: 0.55rem 1rem 0.65rem 1.07rem;
  }
}

/* 02 */
.reason__lists-02 .reason__list {
  flex: initial;
  padding: 0.87rem 3.2rem 1rem 1.55rem;
}
@media screen and (max-width: 767px) {
  .reason__lists-02 .reason__list {
    padding: 0.55rem 1rem 0.65rem 1.07rem;
  }
}

/* 03 */
.reason__lists-03 .reason__list {
  flex: initial;
}

.reason__img {
  margin-top: 2.55rem;
}
@media screen and (max-width: 767px) {
  .reason__img {
    margin-top: 1.5rem;
  }
}

.reason__lead {
  font-size: 3.2rem;
  line-height: 1.5;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .reason__lead {
    font-size: 1.8rem;
    line-height: 1.55;
  }
}

.reason__lead::before {
  background: url(./../images/reason_separator.png) no-repeat center;
  background-size: 100% 100%;
  content: "";
  display: block;
  height: 2.45rem;
  margin: 4rem auto 3.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .reason__lead::before {
    background: url(./../images/reason_separator_sp.png) no-repeat center;
    background-size: 100% 100%;
    height: 1rem;
    margin: 2rem auto;
    width: 100%;
  }
}

.reason__btn {
  margin: 1.5rem auto 0;
}
@media screen and (max-width: 767px) {
  .reason__btn {
    margin: 0 auto;
  }
}

.reason__flex {
  align-items: center;
  display: flex;
  gap: 0 4.6rem;
  margin-top: 4rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .reason__flex {
    flex-direction: column;
    gap: 3.06rem 0;
    margin-top: 2.3rem;
    width: auto;
  }
}

.reason__flex-left {
  background: #f7f7f7;
  border: 0.1rem solid #E4E4E4;
  border-radius: 2rem;
  padding: 4rem 3rem 0;
  width: 67.8rem;
}
@media screen and (max-width: 767px) {
  .reason__flex-left {
    border-radius: 0.5rem;
    padding: 1.35rem 1.1rem 0;
    width: 32rem;
  }
}

.reason__flex-right {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 38rem;
}
@media screen and (max-width: 767px) {
  .reason__flex-right {
    width: 100%;
  }
}

.reason__flex-right .point {
  background: #F66735;
  border-radius: 1rem;
  color: #fff;
  display: block;
  font-family: futura-pt, sans-serif;
  font-size: 3rem;
  font-weight: 600;
  padding: 0.8rem 1rem 0.7rem;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .reason__flex-right .point {
    border-radius: 0.7rem;
    font-size: 2.4rem;
    padding: 0.5rem 1rem 0.5rem;
  }
}

.reason__flex-text {
  font-size: 2.4rem;
  line-height: 1.33;
  margin-top: 3.15rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .reason__flex-text {
    font-size: 1.6rem;
    line-height: 1.68;
    margin-top: 1.5rem;
  }
}

.reason__flex-img {
  margin-top: 2.5rem;
  width: 32rem;
}
@media screen and (max-width: 767px) {
  .reason__flex-img {
    margin-top: 2.3rem;
    width: 25.478rem;
  }
}
/*# sourceMappingURL=style.css.map */
