@charset "UTF-8";
/* A Modern CSS Reset */
* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  border-style: solid;
  box-sizing: border-box;
  border-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
  text-decoration-skip-ink: auto;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

input,
button,
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 0;
  background: transparent;
  font: inherit;
  outline: none;
}

textarea {
  resize: none;
}

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

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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

body {
  color: #1B2128;
}

html {
  font-size: 16px;
}
@media (max-width: 390px) {
  html {
    font-size: 4.1025641026vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.28vw;
  }
}
@media (min-width: 1250px) {
  html {
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  a {
    transition: 0.3s;
  }
  a:hover {
    opacity: 0.7;
  }
}

html.fixed {
  overflow: hidden;
}

main {
  margin-top: 4rem;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: #FF9B7A;
}

.header-inner {
  width: 100%;
  padding: 0 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  z-index: 500;
  background-color: #FF9B7A;
}
@media screen and (min-width: 768px) {
  .header-inner {
    padding: 0 1.5625rem 0.5rem;
    max-width: 78.125rem;
    margin: 0 auto;
  }
}

.header-logo {
  width: 6.25rem;
  position: relative;
  z-index: 500;
}
@media screen and (min-width: 768px) {
  .header-logo {
    width: 9.375rem;
  }
}

.header-btn__area {
  width: 100%;
  max-width: 26.25rem;
  margin: 2.5rem auto 0;
}
@media screen and (min-width: 768px) {
  .header-btn__area {
    display: flex;
    justify-content: center;
    margin: 0 0 0 auto;
    gap: 1.25rem;
  }
}

.header-btn {
  width: 100%;
  max-width: 18.75rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .header-btn {
    margin: 0;
    max-width: 12.5rem;
  }
}

.header-btn a {
  display: block;
  width: 100%;
  background-color: #fff;
  border: 2.8px solid #FF561E;
  border-radius: 25px;
  background-color: #FDFDFD;
  text-align: center;
  font-weight: 700;
  line-height: 1.75;
  font-size: 1rem;
  padding: 0.5rem;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .header-btn a {
    padding: 0.4375rem 0;
    font-size: 1rem;
  }
}

.header-btn__contact a {
  background-color: #FF561E;
  color: #fff;
}

.header-btn__download {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .header-btn__download {
    margin-top: 0;
  }
}

.header-btn__contact:hover a {
  background-color: #fff;
  color: #1B2128;
}

.header-btn__download:hover a {
  background-color: #FF561E;
  color: #fff;
}

.inner {
  width: 100%;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 78.125rem;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.header-hamberger {
  position: relative;
  z-index: 500;
}
@media screen and (min-width: 768px) {
  .header-hamberger {
    display: none;
  }
}

.hamberger {
  position: relative;
  z-index: 500;
  width: 1.875rem;
  height: 1.5rem;
  transition: transform 0.5s ease 0s;
  cursor: pointer;
  margin-left: auto;
}
.open .open-img {
  display: none;
}

.close-img {
  display: none;
}

.open .close-img {
  display: block;
}

.hamberger-bar {
  position: absolute;
  left: 50%;
  width: 100%;
  z-index: 500;
  height: 0.125rem;
  background: #1B2128;
  transition: 0.3s;
  transform: translate(-50%, -50%);
}

.hamberger-bar:nth-of-type(1) {
  top: 0%;
}

.hamberger-bar:nth-of-type(2) {
  top: 50%;
}

.hamberger-bar:nth-of-type(3) {
  top: 100%;
}

/* オープン時の動き */
.open .hamberger-bar {
  width: 2.3125rem;
  transition: 0.3s;
}

.open .hamberger-bar:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50%;
}

.open .hamberger-bar:nth-of-type(2) {
  transform: translate(-50%, -50%);
  opacity: 0;
}

.open .hamberger-bar:nth-of-type(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50%;
}

.header-nav {
  width: 100%;
  height: 100vh;
  height: calc(100vh - 4rem);
  position: fixed;
  top: 4rem;
  left: 0;
  z-index: 10;
  background-color: #FF9B7A;
  padding: 2.25rem 0.9375rem 2rem;
  overflow-y: auto;
  transform: translateX(150%);
  transition: 0.5s;
}
@media screen and (min-width: 768px) {
  .header-nav {
    width: initial;
    height: initial;
    position: initial;
    display: flex;
    flex-direction: column-reverse;
    overflow-y: initial;
    background-color: initial;
    padding: 0 0.625rem 0 0;
    transform: translateX(0);
    margin-top: 0.75rem;
  }
}

.header-nav.open {
  transform: translateX(0);
}

@media screen and (min-width: 768px) {
  .header-nav__items {
    justify-content: right;
    align-items: center;
    gap: 0.625rem;
    margin-top: 0.375rem;
  }
}

.header-nav__item {
  font-weight: 700;
  font-size: 1.5rem;
  color: #173E5F;
  line-height: 1;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header-nav__item {
    width: initial;
    font-size: 1.5rem;
  }
}

.header-nav__item::after {
  content: "";
  display: block;
  background-image: url("../img/nav-line.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 0.125rem;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .header-nav__item::after {
    display: none;
  }
}

.header-nav__item:nth-child(n+2) {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .header-nav__item:nth-child(n+2) {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .header-nav__item a {
    display: flex;
    position: relative;
    padding: 0.3125rem;
  }
}

.btn {
  width: 100%;
  max-width: 18.125rem;
  transition: 0.3s;
}
.btn:hover {
  transform: translateY(-5px);
}

.btn a {
  display: block;
  background-color: #FDFDFD;
  border-radius: 26px;
  border: 4px solid #FF561E;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  font-size: 1.25rem;
  padding: 0.75rem;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .btn a {
    border-radius: 38px;
    padding: 1rem;
  }
}

.btn__contact a {
  background-color: #FF561E;
  color: #fff;
}

.btn__contact:hover a {
  background-color: #fff;
  color: #1B2128;
}

.btn__download:hover a {
  background-color: #FF561E;
  color: #fff;
}

.section-title {
  text-align: center;
  font-weight: 700;
  line-height: 1.4;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.mv {
  background: -moz-linear-gradient(25deg, #FFF3D2, #FFE4E4);
  background: -webkit-linear-gradient(25deg, #FFF3D2, #FFE4E4);
  background: linear-gradient(140deg, #FFF3D2, #FFE4E4);
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .mv {
    background: -moz-linear-gradient(25deg, #FFF3D2, #FFE4E4);
    background: -webkit-linear-gradient(25deg, #FFF3D2, #FFE4E4);
    background: linear-gradient(130deg, #FFF3D2, #FFE4E4);
  }
}

.mv-bg {
  width: 100%;
  max-width: 34.375rem;
  margin: 1.25rem auto;
}
@media screen and (min-width: 768px) {
  .mv-bg {
    max-width: initial;
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
    width: 55.55%;
  }
}

.mv-bg img {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .mv-bg img {
    aspect-ratio: 375/352;
    aspect-ratio: initial;
  }
}

.mv__inner {
  position: relative;
  z-index: 1;
  padding: 1.25rem 1.25rem 0;
  max-width: 34.375rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .mv__inner {
    width: 100%;
    max-width: 74.375rem;
    padding: 5rem 1.5625rem;
  }
}

.mv-subtitle {
  font-weight: 700;
  line-height: 1.4;
  font-size: 1.09375rem;
}
@media screen and (min-width: 768px) {
  .mv-subtitle {
    font-size: 1.625rem;
  }
}

.mv-maintitle {
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: 0.02em;
  font-size: 1.75rem;
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .mv-maintitle {
    font-size: 3.375rem;
    margin-top: 1.5rem;
  }
}

.mv-maintitle span {
  font-size: 2.4375rem;
}
@media screen and (min-width: 768px) {
  .mv-maintitle span {
    font-size: 4rem;
  }
}

.mv-text {
  font-size: 1rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .mv-text {
    font-size: 1.25rem;
    margin-top: 1.5rem;
  }
}

.mv-awords {
  width: 100%;
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .mv-awords {
    gap: 1.625rem;
    max-width: 38.4375rem;
    margin-top: 0.625rem;
  }
}

.mv-awords img {
  width: calc((100% - 1rem) / 3);
}
@media screen and (min-width: 768px) {
  .mv-awords img {
    width: calc((100% - 3.25rem) / 3);
  }
}

.mv-cta {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .mv-cta {
    margin-top: 0.625rem;
    max-width: 38.4375rem;
  }
}

.mv-cta__top {
  text-align: center;
  font-size: 1.25rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .mv-cta__top {
    font-size: 1.5rem;
  }
}

.mv-cta__top::before,
.mv-cta__top::after {
  display: inline;
  font-weight: 700;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .mv-cta__top::before,
  .mv-cta__top::after {
    font-size: 1.5rem;
  }
}

.mv-cta__top::before {
  content: "＼";
}

.mv-cta__top::after {
  content: "／";
}

.mv-cta__top .num {
  font-size: 1.625rem;
}
@media screen and (min-width: 768px) {
  .mv-cta__top .num {
    font-size: 2rem;
  }
}

.mobile-top {
  display: block;
}
@media screen and (min-width: 768px) {
  .mobile-top {
    display: inline;
  }
}

.mv-btn__area {
  margin-top: 1.25rem;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 1.75rem;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .mv-btn__area {
    flex-direction: row;
    padding: 0;
  }
}

.mv__btm-text {
  padding: 0 1.25rem;
  font-size: 0.625rem;
}
@media screen and (min-width: 768px) {
  .mv__btm-text {
    padding: 0;
    margin-top: 1.5rem;
    font-size: 0.75rem;
  }
}

.about {
  background-color: #FFECE6;
  padding: 3.75rem 0 2.5rem;
}
@media screen and (min-width: 768px) {
  .about {
    padding: 5.625rem 0 5rem;
  }
}

.about__top-text {
  margin-top: 2rem;
  letter-spacing: 0.2px;
  line-height: 1.8;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .about__top-text {
    line-height: 1.6;
    line-height: 1.8;
    text-align: center;
    margin-top: 5rem;
    font-size: 1.25rem;
  }
}

.about__card {
  margin: 2.5rem auto 0;
  max-width: 28.125rem;
}
@media screen and (min-width: 768px) {
  .about__card {
    max-width: initial;
    margin-top: 4.25rem;
    justify-content: center;
    gap: 1.5rem;
  }
}

.about__card--item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .about__card--item {
    width: calc((100% - 3rem) / 3);
  }
}

.about__card--item:nth-child(n+2) {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .about__card--item:nth-child(n+2) {
    margin-top: 0;
  }
}

.about__card--item-img img {
  border-radius: 6px;
}

.about__card--item-text {
  margin-top: 1.25rem;
  line-height: 1.5;
  font-size: 0.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about__card--item-text {
    margin-top: 2rem;
    font-size: 1rem;
  }
}

.reason {
  padding: 3rem 0 3.75rem;
  background-color: #FDFDFD;
}
@media screen and (min-width: 768px) {
  .reason {
    padding: 5rem 0 6.875rem;
  }
}

.reason-top_text {
  margin-top: 2rem;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .reason-top_text {
    text-align: center;
    margin-top: 3.75rem;
    font-size: 1.5rem;
  }
}

.reason-card {
  margin: 2.25rem auto 0;
  max-width: 31.25rem;
}
@media screen and (min-width: 768px) {
  .reason-card {
    margin-top: 3.25rem;
    max-width: 49.375rem;
  }
}

.reason-card__item {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .reason-card__item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 17.1875rem;
  }
}

@media screen and (min-width: 768px) {
  .reason-card__item:nth-child(2n) {
    flex-direction: row-reverse;
  }
}

.reason-card__item:nth-child(n+2) {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .reason-card__item:nth-child(n+2) {
    margin-top: 2.25rem;
  }
}

.reason-card__item--texts {
  margin-top: 0.75rem;
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .reason-card__item--texts {
    margin-top: 0;
    margin-right: 1.5rem;
    width: 100%;
    width: 24rem;
  }
}

.reason-card__item--texts .title {
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
  .reason-card__item--texts .title {
    font-size: 1.5rem;
  }
}

.reason-card__item--texts .text {
  margin-top: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .reason-card__item--texts .text {
    font-size: 1.5rem;
    margin-top: 1rem;
  }
}

.reason-card__item--img {
  margin: 0 auto;
  width: 80%;
}
@media screen and (min-width: 768px) {
  .reason-card__item--img {
    margin: 0;
    width: 100%;
    max-width: 24rem;
  }
}

.reason-card__item--img img {
  object-fit: contain;
  margin: 0 auto;
}
.reason-card__item:nth-of-type(1) .reason-card__item--img img {
  width: 75%;
}
@media screen and (min-width: 768px) {
  .reason-card__item:nth-of-type(1) .reason-card__item--img img {
    width: 100%;
    height: 16rem;
  }
}

@media screen and (min-width: 768px) {
  .reason-card__item:nth-of-type(2) .reason-card__item--img img {
    width: 100%;
    height: 16.5625rem;
  }
}

.reason-card__item:nth-of-type(3) .reason-card__item--img img {
  width: 80%;
}
@media screen and (min-width: 768px) {
  .reason-card__item:nth-of-type(3) .reason-card__item--img img {
    width: 100%;
    height: 14.0625rem;
  }
}

.reason-card__item:nth-of-type(4) .reason-card__item--img img {
  width: 60%;
}
@media screen and (min-width: 768px) {
  .reason-card__item:nth-of-type(4) .reason-card__item--img img {
    width: 100%;
    height: 15.125rem;
  }
}

.cta {
  background-color: #FF9B7A;
  padding-top: 1.5rem;
  padding-bottom: 2rem;
  padding: 2rem 0;
}
@media screen and (min-width: 768px) {
  .cta {
    padding: 3.375rem 0 3rem;
  }
}

@media screen and (min-width: 768px) {
  .cta .inner {
    display: flex;
    flex-direction: column;
  }
}

.cta-img {
  width: 90%;
  max-width: 26.875rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .cta-img {
    width: 100%;
  }
}

.cta-main {
  text-align: center;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .cta-main {
    margin-top: 1.75rem;
  }
}

.cta-main__title {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #FDFDFD;
}

.cta-main__title h2 {
  color: #FDFDFD;
  font-weight: 700;
  font-size: 1.5625rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .cta-main__title h2 {
    font-size: 2.5rem;
  }
}

.cta-main__title::before,
.cta-main__title::after {
  display: inline;
  font-weight: 700;
  font-size: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .cta-main__title::before,
  .cta-main__title::after {
    font-size: 2.5rem;
  }
}

.cta-main__title::before {
  content: "＼";
}

.cta-main__title::after {
  content: "／";
}

.cta-main__title .num {
  font-size: 2.25rem;
}
@media screen and (min-width: 768px) {
  .cta-main__title .num {
    font-size: 3.625rem;
  }
}

.cta-main__btn-area {
  width: 100%;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .cta-main__btn-area {
    margin-top: 1.75rem;
    justify-content: center;
    gap: 1.875rem;
  }
}

.cta-main__btn-area .btn {
  margin: 1.25rem auto 0;
}
@media screen and (min-width: 768px) {
  .cta-main__btn-area .btn {
    margin: 0;
  }
}

.consultant {
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .consultant {
    padding: 5rem 0 4rem;
  }
}

.consultant-contents {
  margin: 1.25rem auto 0;
  max-width: 28.125rem;
}
@media screen and (min-width: 768px) {
  .consultant-contents {
    margin-top: 3.875rem;
    max-width: initial;
  }
}

.consultant-contents__top {
  border-radius: 6px;
  background: -moz-linear-gradient(top, #9F813A, #CFAF6C 50%, #9A7A32);
  background: -webkit-linear-gradient(top, #9F813A, #CFAF6C 50%, #9A7A32);
  background: linear-gradient(to bottom, #9F813A, #CFAF6C 50%, #9A7A32);
  padding: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .consultant-contents__top {
    padding: 0.625rem;
    max-width: 63.75rem;
    margin: 0 auto;
  }
}

.consultant-contents__top--inner {
  background-color: #FDFDFD;
  padding: 1.125rem 0.75rem 1.75rem;
}
@media screen and (min-width: 768px) {
  .consultant-contents__top--inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 2rem 2rem 4.75rem;
  }
}

.consultant-contents__top--inner .title {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .consultant-contents__top--inner .title {
    width: 100%;
    max-width: 25rem;
    font-size: 1.5rem;
    line-height: 1.9;
  }
}

.consultant-contents__top--inner .image {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .consultant-contents__top--inner .image {
    margin-top: 0;
    width: 100%;
    max-width: 28.125rem;
    margin: 0 auto;
  }
}

.consultant-contents__top--inner .image img {
  border-radius: 6px;
}
@media screen and (min-width: 768px) {
  .consultant-contents__top--inner .image img {
    max-width: 20.625rem;
    margin: 0 auto;
  }
}

.consultant-contents__top--inner .image .image-text {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .consultant-contents__top--inner .image .image-text {
    margin-top: 2rem;
    font-size: 1rem;
  }
}

.consultant-contents__btm {
  gap: 0.625rem;
  margin-top: 1.5rem;
  position: relative;
  padding: 1rem 0;
}
@media screen and (min-width: 768px) {
  .consultant-contents__btm {
    width: 100%;
    padding: 0;
    margin-top: 2.5rem;
  }
}

.consultant-contents__btm--line {
  width: 0.3125rem;
  height: 100%;
  background-color: #FF561E;
  position: absolute;
  top: 0;
  left: 0.46875rem;
}
@media screen and (min-width: 768px) {
  .consultant-contents__btm--line {
    left: 50%;
    transform: translateX(-50%);
  }
}

.consultant-contents__btm--list {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .consultant-contents__btm--list {
    padding: 3.5rem 3.625rem 4.5rem;
  }
}

.consultant-contents__btm--list li {
  padding-left: 1.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .consultant-contents__btm--list li {
    padding-left: 0;
    width: calc(50% + 1.25rem);
  }
}

.consultant-contents__btm--list li:nth-child(n+2) {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .consultant-contents__btm--list li:nth-child(n+2) {
    margin-top: 3.625rem;
  }
}

@media screen and (min-width: 768px) {
  .consultant-contents__btm--list li:nth-child(2n) {
    margin-left: auto;
    padding-left: 3.75rem;
  }
}

.consultant-contents__btm--list li::before {
  content: "";
  display: block;
  background-color: #FF561E;
  width: 1.25rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .consultant-contents__btm--list li::before {
    width: 2.5rem;
  }
}

.consultant-contents__btm--list li::before {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .consultant-contents__btm--list li:nth-child(2n+1)::before {
    left: initial;
    right: 0;
  }
}

.consultant-contents__btm--list .label {
  font-weight: 700;
  color: #FF561E;
  font-size: 1rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .consultant-contents__btm--list .label {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.consultant-contents__btm--list .text {
  margin-top: 0.3125rem;
  line-height: 1.5;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .consultant-contents__btm--list .text {
    margin-top: 1rem;
    font-size: 1rem;
  }
}

.case {
  padding: 3rem 0 2.25rem;
  background-color: #FFECE6;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .case {
    padding: 5rem 0;
  }
}

.case-contents {
  max-width: 28.125rem;
  margin: 2.0625rem auto 0;
}
@media screen and (min-width: 768px) {
  .case-contents {
    max-width: initial;
    margin-top: 3.875rem;
  }
}

.case-card {
  margin: 0 -0.9375rem;
}
@media screen and (min-width: 768px) {
  .case-card {
    width: 105rem;
  }
}

.case-card__item {
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 1rem 0.625rem;
  background-color: #fff;
  margin: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .case-card__item {
    width: calc((100% - 6.25rem) / 3);
    padding: 0.9375rem 2rem;
    margin: 0 1rem 1rem;
  }
}

@media screen and (min-width: 768px) {
  .case-card__item--inner {
    display: flex;
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .case-card__item--img {
    width: 100%;
    max-width: 21.5625rem;
  }
}

.case-card__item--textswrap {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .case-card__item--textswrap {
    margin-top: 0rem;
    width: 100%;
    max-width: 23.125rem;
    margin-left: 2rem;
  }
}

.case-card__item--title {
  text-align: center;
  font-weight: 700;
  color: #111827;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .case-card__item--title {
    font-size: 1.5rem;
  }
}

.case-card__item--text {
  color: #1B2128;
  line-height: 1.7;
  font-size: 0.875rem;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .case-card__item--text {
    line-height: 1.7;
    font-size: 1rem;
    margin-top: 1rem;
  }
}

.case-card__item--text .text__line {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.case-card__item--text .btm-text {
  text-align: center;
}

.date {
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .date {
    padding: 5rem 0 5.9375rem;
  }
}

.date-table {
  width: 100%;
  overflow-x: auto;
}
@media screen and (min-width: 768px) {
  .date-table {
    overflow-x: initial;
  }
}

.date-table table {
  width: 35rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .date-table table {
    width: 100%;
  }
}

.date-table table tr {
  width: 100%;
  display: flex;
}
.date-table table tr th,
.date-table table tr td {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  font-weight: 700;
  text-align: center;
  padding: 0 0.125rem;
  color: #173E5F;
  width: 28%;
}
@media screen and (min-width: 768px) {
  .date-table table tr th,
  .date-table table tr td {
    width: 25%;
    padding: 0 0.375rem;
    height: 7.125rem;
  }
}

.date-table table tr th:nth-of-type(1),
.date-table table tr td:nth-of-type(1) {
  width: 18%;
}
@media screen and (min-width: 768px) {
  .date-table table tr th:nth-of-type(1),
  .date-table table tr td:nth-of-type(1) {
    width: 25%;
  }
}

.date-table table tr th:nth-child(n+2),
.date-table table tr td:nth-child(n+2) {
  border-left: 2px solid #FFDEDE;
}
@media screen and (min-width: 768px) {
  .date-table table tr th:nth-child(n+2),
  .date-table table tr td:nth-child(n+2) {
    border-left: 4px solid #FFDEDE;
  }
}

.date-table table tr th {
  background-color: #FF9B7A;
  color: #fff;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .date-table table tr th {
    font-size: 1.625rem;
  }
}

.date-table table tr td {
  background-color: #FDFDFD;
  color: #173E5F;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .date-table table tr td {
    font-size: 1.25rem;
  }
}

.date-table table tr td p {
  height: 5rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .date-table table tr td p {
    height: 7.125rem;
  }
}

.date-table table tr:nth-child(2n+1) td {
  background-color: #FFECE6;
}

.date-table table tr td:nth-of-type(2) p {
  color: #FF561E;
  background-image: url("../img/table-maru.png");
}

.date-table table .bad p {
  background-image: url("../img/table-batu.png");
}

.date-table table .normal p {
  background-image: url("../img/table-sankaku.png");
}

.flow {
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .flow {
    padding: 5rem 0 9.75rem;
  }
}

.flow-list {
  margin: 3.75rem auto 0;
  width: 100%;
  max-width: 28.125rem;
}
@media screen and (min-width: 768px) {
  .flow-list {
    max-width: 75rem;
    margin: 5rem auto 0;
    justify-content: center;
    gap: 0.5rem;
  }
}

.flow-list__item {
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .flow-list__item {
    width: calc((100% - 1rem) / 3);
  }
}

.flow-list__item:nth-child(n+2) {
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .flow-list__item:nth-child(n+2) {
    margin-top: 0;
  }
}

.flow-list__item--step {
  font-weight: 700;
  line-height: 1.5;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .flow-list__item--step {
    font-size: 2rem;
  }
}

.flow-list__item--img {
  width: 8.125rem;
  margin: 0.75rem auto 0;
}
@media screen and (min-width: 768px) {
  .flow-list__item--img {
    width: 6.25rem;
    margin-top: 1.5rem;
  }
}

.flow-list__item--title {
  font-weight: 700;
  font-size: 1.625rem;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .flow-list__item--title {
    font-size: 2rem;
    margin-top: 1.5rem;
  }
}

.flow-list__item--text {
  line-height: 1.5;
  font-size: 1.125rem;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .flow-list__item--text {
    margin-top: 1rem;
    font-size: 1.25rem;
  }
}

.faq {
  padding: 2.5rem 0;
  background-color: #FFECE6;
}
@media screen and (min-width: 768px) {
  .faq {
    padding: 5rem 0;
  }
}

.faq-contents {
  width: 100%;
  max-width: 31.25rem;
  margin: 2.5rem auto 0;
}
@media screen and (min-width: 768px) {
  .faq-contents {
    margin-top: 5rem;
    max-width: 50rem;
  }
}

.accordion-item {
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  overflow: hidden;
}
.accordion-item-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #FF9B7A;
  color: #FDFDFD;
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 0.75rem 0.375rem;
  gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .accordion-item-q {
    cursor: pointer;
    font-size: 1.125rem;
    padding: 1.25rem 2rem;
    gap: 2rem;
  }
}

.accordion-item-q img {
  width: 1rem;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .accordion-item-q img {
    width: 1.5rem;
  }
}

.accordion-item-q.close img {
  transform: rotate(180deg);
}

.accordion-item-a {
  background-color: #FDFDFD;
  line-height: 1.5;
  font-size: 0.8125rem;
  padding: 0.75rem;
  display: none;
}
@media screen and (min-width: 768px) {
  .accordion-item-a {
    font-size: 1rem;
    padding: 1.25rem 2rem;
  }
}

.contact {
  background: -moz-linear-gradient(135deg, #FFE5EA, #FFF3D2);
  background: -webkit-linear-gradient(135deg, #FFE5EA, #FFF3D2);
  background: linear-gradient(45deg, #FFE5EA, #FFF3D2);
  padding: 2.5rem 0 1.125rem;
}
@media screen and (min-width: 768px) {
  .contact {
    padding: 5rem 0 1.125rem;
  }
}

.thanks {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: -moz-linear-gradient(135deg, #FFE5EA, #FFF3D2);
  background: -webkit-linear-gradient(135deg, #FFE5EA, #FFF3D2);
  background: linear-gradient(45deg, #FFE5EA, #FFF3D2);
  padding: 1.25rem 0 1.125rem;
}
@media screen and (min-width: 768px) {
  .thanks {
    padding: 5rem 0 1.125rem;
  }
}

.contact-form {
  background-color: #fff;
  width: 100%;
  max-width: 34.375rem;
  padding: 1.5625rem 1.25rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .contact-form {
    max-width: 63.75rem;
    padding: 2rem 0 2rem;
  }
}

.contact-title {
  text-align: center;
  font-weight: 700;
  line-height: 1.4;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .contact-title {
    font-size: 3rem;
  }
}

.contact-form form {
  margin: 3rem auto 0;
  max-width: 48.75rem;
}
@media screen and (min-width: 768px) {
  .contact-form form {
    margin-top: 6.75rem;
  }
}

.form-block:nth-child(n+2) {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .form-block:nth-child(n+2) {
    margin-top: 2.5rem;
  }
}

.form-block__label {
  color: #173E5F;
  font-weight: 700;
  line-height: 1.5;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .form-block__label {
    font-size: 1.5rem;
  }
}

.form-block__input {
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .form-block__input {
    margin-top: 1.25rem;
  }
}

.form-block__input.radio {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .form-block__input.radio {
    gap: 4.5rem;
  }
}

.form-block__input label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #173E5F;
  font-weight: 700;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .form-block__input label {
    gap: 1rem;
    font-size: 1.5rem;
  }
}

.form-block__input input {
  width: 100%;
  background-color: #FFECE6;
  border-radius: 0.9375rem;
  padding: 0.25rem 0.5rem;
  font-size: 1rem;
  height: 2.5rem;
}
@media screen and (min-width: 768px) {
  .form-block__input input {
    height: 3.5rem;
  }
}

.form-block__input input[type=radio] {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: #FFECE6;
}
@media screen and (min-width: 768px) {
  .form-block__input input[type=radio] {
    width: 2.875rem;
    height: 2.875rem;
  }
}

.form-block__input input[type=radio]:checked {
  background-color: initial;
  background-image: url("../img/radio-check.png");
  background-size: contain;
  background-repeat: no-repeat;
  border: 2px solid #FF561E;
}

.form-btn {
  display: block;
  background-color: #FF561E;
  color: #FDFDFD;
  border-radius: 45px;
  width: 100%;
  max-width: 16.25rem;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 3.625rem auto 0;
  height: 4.125rem;
}
@media screen and (min-width: 768px) {
  .form-btn {
    margin-top: 3.5rem;
    font-size: 1.5rem;
  }
}

.form-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FF561E;
  color: #FDFDFD;
  border-radius: 45px;
  width: 100%;
  max-width: 16.25rem;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 3.625rem auto 0;
  height: 4.125rem;
}
@media screen and (min-width: 768px) {
  .form-btn {
    margin-top: 3.5rem;
    font-size: 1.5rem;
  }
}

.copyright {
  text-align: center;
  line-height: 1.5;
  font-size: 0.75rem;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .copyright {
    font-size: 1.25rem;
  }
}

#thank-you {
  text-align: center;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  #thank-you {
    font-size: 1.5rem;
    padding: 2.5rem 0;
  }
}

.privacy {
  margin: 2rem auto 0;
  width: 100%;
  max-width: 25rem;
  padding: 0.75rem;
  border: 1px solid #1B2128;
  height: 12.5rem;
  overflow-y: auto;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .privacy {
    font-size: 0.875rem;
    margin-top: 3rem;
    max-width: initial;
    height: 15rem;
    padding: 1.5rem 1rem;
  }
}

.privacy-check {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .privacy-check {
    margin-top: 2rem;
    gap: 0.75rem;
    font-size: 1rem;
  }
}

.privacy-check input {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 4px;
  border: 2px solid #173E5F;
}
@media screen and (min-width: 768px) {
  .privacy-check input {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.privacy-check input:checked {
  background-image: url("../img/icon-check.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

.u-d_flex {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-d_flex {
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

.u-mobile_flex {
  display: flex;
}
@media screen and (min-width: 768px) {
  .u-mobile_flex {
    display: none;
  }
}

.u-disp-flex {
  display: flex;
}

.u-disp-flex-dt {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-disp-flex-dt {
    display: flex;
  }
}

.u-disp-flex-sp {
  display: flex;
}
@media screen and (min-width: 768px) {
  .u-disp-flex-sp {
    display: block;
  }
}

.u-disp-flex__c {
  display: flex;
  justify-content: center;
}

.u-disp-flex__cc {
  display: flex;
  justify-content: center;
  align-items: center;
}

.u-disp-flex-dt__c {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-disp-flex-dt__c {
    display: flex;
    justify-content: center;
  }
}

.u-disp-flex-dt__cc {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-disp-flex-dt__cc {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.u-posi-rela {
  position: relative;
}

.u-posi-abso {
  position: absolute;
}

.u-posi-fixed {
  position: fixed;
  box-shadow: 2px 0 6px rgba(0, 0, 0, 0.3);
}

.white-text {
  color: #fff;
}

.naby-text {
  color: #173E5F;
}

.orange-text {
  color: #FF561E;
}

.bold {
  font-weight: 700;
}

/*# sourceMappingURL=style.css.map */
