html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #434548;
  line-height: 1.6;
  letter-spacing: 0.3em;
  scroll-behavior: smooth;
}

body {
  font-size: 1.4rem;
}

a:hover {
  text-decoration: none;
}

@media screen and (min-width: 769px) {
  html {
    line-height: 2;
  }
  body {
    font-size: 1.6rem;
  }
}
.l-header {
  width: 100%;
  position: fixed;
  z-index: 9;
  background: #fff;
}
.l-header__inner {
  padding: 16px 16px;
  box-shadow: 0 4px 7px -7px gray;
}
.l-header___logo-img {
  width: 227px;
}
.l-header__nav {
  height: calc(100svh - 30px);
  width: 100%;
  z-index: 10;
  display: none;
}
.l-header__item {
  padding-top: 8px;
  border-bottom: 1px solid #FFEDCF;
}
.l-header__item a {
  padding: 20px 40px;
  display: block;
}
.l-header__button-box {
  text-align: center;
  margin-top: 8rem;
}
.l-header__button-box a {
  width: 100%;
}
.l-header__hamburger {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
  width: 32px;
  height: 16px;
  z-index: 10;
}
.l-header__hamburger span {
  transition: all 0.3s;
  position: absolute;
  height: 1px;
  background-color: #E36A3F;
  width: 100%;
  z-index: 10;
}
.l-header__hamburger span:nth-of-type(1) {
  top: 4px;
}
.l-header__hamburger span:nth-of-type(2) {
  top: 12px;
}
.l-header__hamburger span:nth-of-type(3) {
  top: 20px;
}
.l-header__hamburger.open span:nth-of-type(1) {
  top: 10px;
  transform: translateY(6px) rotate(-45deg);
}
.l-header__hamburger.open span:nth-of-type(2) {
  opacity: 0;
}
.l-header__hamburger.open span:nth-of-type(3) {
  top: 22px;
  transform: translateY(-6px) rotate(45deg);
}

@media screen and (min-width: 769px) {
  .l-header__inner {
    padding: 1.6rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 0.5vw;
  }
  .l-header___logo-img {
    width: 392px;
    object-fit: contain;
  }
  .l-header__nav {
    height: initial;
    width: 800px;
    display: flex;
    gap: 8rem;
    align-items: baseline;
  }
  .l-header__list {
    display: flex;
    gap: 4rem;
  }
  .l-header__item {
    padding-top: 0;
    border-bottom: 0;
  }
  .l-header__item a {
    padding: 0.4rem;
  }
  .l-header__item a:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: #E36A3F;
    text-underline-offset: 5px;
    transition: color 0.1s;
  }
  .l-header__button-box {
    margin-top: initial;
    text-align: left;
  }
  .l-header__hamburger {
    display: none;
  }
}
.disabled-scroll {
  overflow: hidden;
}

.l-main {
  padding-top: 10.2rem;
}

.p-mv {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.6rem;
  gap: 1.6rem;
}
.p-mv__logo {
  flex-shrink: 0;
}
.p-mv__logo img {
  width: 100%;
}
.p-mv__box {
  padding-top: 3.2rem;
  text-align: right;
}
.p-mv__img {
  max-width: 100%;
  width: 320px;
}

@media screen and (min-width: 769px) {
  .p-mv {
    padding: 0 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .p-mv__logo img {
    width: 620px;
  }
  .p-mv__box {
    padding-top: 0;
    text-align: center;
  }
  .p-mv__img {
    width: 690px;
  }
}
.p-about {
  scroll-margin: 120px;
  width: 100%;
  margin-top: 4rem;
  padding: 0 1.6rem;
}
.p-about__inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.p-about__block {
  background-image: url(/images/about_bg.png);
  background-size: contain;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: right;
  order: 1;
}
.p-about__title {
  font-size: 1.8rem;
  font-weight: 500;
}
.p-about__text {
  margin-top: 1.6rem;
  line-height: 1.8;
}
.p-about__img {
  width: 300px;
  display: block;
  order: 2;
  margin-top: 2.4rem;
}

@media screen and (min-width: 769px) {
  .p-about {
    width: 100%;
    max-width: 1280px;
    margin: 14rem auto 0;
  }
  .p-about__inner {
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 10rem;
  }
  .p-about__block {
    max-width: 480px;
    order: 2;
  }
  .p-about__img {
    height: 100%;
    width: 600px;
    order: 1;
    margin-top: 0;
  }
  .p-about__title {
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.8;
  }
  .p-about__text {
    line-height: 2.4;
  }
}
.p-service {
  scroll-margin: 80px;
  width: 100%;
  padding-top: 4rem;
}
.p-service__inner {
  background-color: #F2F5ED;
  border-radius: 2rem 2rem 0 0;
  padding: 4rem 1.6rem;
}
.p-service__container {
  padding-top: 4rem;
  display: flex;
  flex-wrap: wrap;
}
.p-service__text {
  margin-top: 1.6rem;
}
.p-service__img-box {
  width: 100%;
  padding-top: 3.2rem;
}
.p-service__img {
  width: 343px;
}
.p-service__block {
  max-width: 994px;
  margin: 0 auto;
  padding-top: 3.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  align-items: center;
  justify-content: center;
}
.p-service__counseling--list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.4rem;
}
.p-service__counseling--item {
  background: #fff;
  padding: 2rem 0.8rem;
  text-align: center;
  border-radius: 1rem;
}
.p-service__counseling--img {
  width: 120px;
}
.p-service__counseling--text {
  width: 143px;
  height: 32px;
  padding-top: 0.8rem;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #70B562;
  font-weight: 500;
}
.p-service__counseling--case-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  justify-content: center;
}
.p-service__counseling--case-item {
  background: #fff;
  padding: 2rem 0.8rem;
  border-radius: 1rem;
  width: 343px;
  height: 284px;
}
.p-service__counseling--case-text {
  font-size: 1.2rem;
  padding-top: 1.6rem;
}
.p-service__counseling--case-box {
  display: flex;
}
.p-service__counseling--case-box figcaption {
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: 0;
}
.p-service__counseling--case-box-text {
  position: relative;
  background-color: #FFEDCF;
  padding: 1.8rem 1.4rem;
  font-size: 1.2rem;
  width: 245px;
  border-radius: 20px;
  text-align: center;
  margin-left: 1rem;
  display: inline-block;
}
.p-service__counseling--case-box-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.8rem;
  margin-top: -1rem;
  border: 1rem solid transparent;
  border-right: 1rem solid #FFEDCF;
}
.p-service__counseling--case-img {
  width: 70px;
}
.p-service__img-box-second {
  order: 2;
}
.p-service__text-box-second {
  order: 1;
}

@media screen and (min-width: 769px) {
  .p-service {
    background-color: #F2F5ED;
    border-radius: 10rem 10rem 0 0;
    margin-top: 8rem;
  }
  .p-service__inner {
    max-width: 1280px;
    border-radius: 10rem 10rem 0 0;
    margin: 0 auto;
    padding: 8rem inherit 12rem;
  }
  .p-service__container {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 4rem;
    display: flex;
    flex-wrap: nowrap;
    gap: 12rem;
  }
  .p-service__img {
    max-width: 696px;
    width: 100%;
  }
  .p-service__block {
    margin-top: 8rem;
    flex-direction: column;
  }
  .p-service__block:has(.p-service__counseling--list) {
    flex-wrap: nowrap;
    align-items: flex-start;
    flex-direction: row;
  }
  .p-service__block:has(.p-service__counseling--case-list) {
    column-gap: 3.2rem;
  }
  .p-service__block:has(.p-service__counseling--case-list) h4 {
    width: 100%;
    text-align: left;
    writing-mode: initial;
    padding: 0 0 0 1.6rem;
  }
  .p-service__block:has(.p-service__counseling--case-list) h4:before {
    left: 0;
    top: 50%;
  }
  .p-service__counseling--list {
    display: grid;
    grid-template-columns: repeat(auto-fit, 276px);
    row-gap: 4rem;
    column-gap: 3.2rem;
  }
  .p-service__counseling--img {
    width: 174px;
  }
  .p-service__counseling--text {
    width: 100%;
    font-size: 1.4rem;
    font-weight: bold;
  }
  .p-service__counseling--case-list {
    flex-wrap: nowrap;
    gap: 3.2rem;
    margin-top: 8rem;
  }
  .p-service__counseling--case-item {
    width: 100%;
    height: auto;
    padding: 8rem 4rem 4rem;
    position: relative;
  }
  .p-service__counseling--case-box {
    position: absolute;
    top: -51px;
    right: 16px;
  }
  .p-service__counseling--case-box img {
    width: 90px;
  }
  .p-service__counseling--case-box figcaption {
    font-size: 1.4rem;
  }
  .p-service__counseling--case-box-text {
    font-size: 1.4rem;
    font-weight: 500;
    width: 100%;
    max-width: 367px;
  }
  .p-service__counseling--case-text {
    font-size: 1.4rem;
    font-weight: 500;
  }
  .p-service__container-second {
    margin-top: 16rem;
    gap: 8rem;
  }
  .p-service__text-box {
    width: 100%;
  }
  .p-service__img-box-second {
    order: 1;
  }
}
.p-faq {
  scroll-margin: 80px;
  width: 100%;
  background: #FFEDCF;
  padding: 0 1.6rem;
}
.p-faq__inner {
  padding: 4rem 0;
}
.p-faq__box {
  background: #fff;
  border-radius: 10px;
  padding: 1.6rem;
}
.p-faq__definition-list {
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.p-faq__definition-item {
  display: flex;
}
.p-faq__definition-item span {
  color: #70B562;
  margin-right: 2.4rem;
}
.p-faq__definition-description {
  display: none;
  background: #F2F5ED;
  border-radius: 20px;
  margin: 1.2rem auto 0;
  padding: 3rem 1.6rem;
  font-weight: 500;
}
.p-faq__definition-button {
  width: 100%;
  padding-right: 1.6rem;
  position: relative;
}
.p-faq__definition-button::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 10px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("/images/icon/arrorw.svg");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 12px;
  transition: 0.5s;
}
.p-faq__definition-button.active::before {
  transform: rotate(180deg) translateY(50%);
}

@media screen and (min-width: 769px) {
  .p-faq__inner {
    max-width: 790px;
    width: 100%;
    margin: 0 auto;
    padding: 8rem 0 10rem;
    display: flex;
    flex-direction: column;
  }
  .p-faq .c-heading {
    align-self: center;
  }
  .p-faq .o-heading-center {
    display: grid;
    place-items: center;
  }
  .p-faq__definition-list {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }
  .p-faq__box {
    padding: 3.2rem;
  }
  .p-faq__definition-description {
    margin-top: 2.4rem;
    padding: 4rem 1.6rem 5.6rem;
    max-width: 444px;
  }
  .p-faq__definition-button {
    background-size: auto;
  }
}
.p-message {
  width: 100%;
  background: #F2F5ED;
  padding: 0 1.6rem;
}
.p-message__inner {
  padding: 4rem 0;
}
.p-message__box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.4rem;
}
.p-message__img {
  width: 256px;
}
.p-message__img-box {
  order: 2;
}
.p-message__text-box {
  order: 1;
}
.p-message__text-box p {
  padding-top: 2.4rem;
}
.p-message__video-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4rem;
}
.p-message__video-box iframe {
  width: 343px;
  height: 194px;
}
.p-message__video-box p {
  text-align: center;
  color: #70B562;
  font-size: 1.2rem;
  padding-top: 0.8rem;
}

@media screen and (min-width: 769px) {
  .p-message__inner {
    padding: 8rem 0;
    max-width: 1280px;
    margin: 0 auto;
  }
  .p-message__box {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 7.2rem;
  }
  .p-message__img-box {
    width: 100%;
    order: 1;
    text-align: right;
  }
  .p-message__text-box {
    width: 100%;
    font-size: 2rem;
  }
  .p-message__text-box p {
    padding-top: 4rem;
  }
  .p-message__img {
    max-width: 437px;
    width: 100%;
  }
  .p-message__video-box {
    padding-top: 8rem;
  }
  .p-message__video-box p {
    font-size: 1.4rem;
    padding-top: 2.4rem;
  }
  .p-message__video-box iframe {
    max-width: 584px;
    height: 369px;
    width: 100%;
  }
}
.p-info {
  scroll-margin: 40px;
  width: 100%;
  padding: 4rem 1.6rem;
  background: #F2F5ED;
}
.p-info__inner {
  background: #FFEDCF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 1.6rem;
  border-radius: 1rem;
}
.p-info__text {
  text-align: center;
  margin-top: 3.2rem;
}
.p-info__text-box {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.6rem;
}
.p-info__text-box span {
  font-family: "Lato";
  font-weight: 500;
}
.p-info__data-box {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 2.4rem;
}
.p-info__data-text {
  padding-left: 2rem;
  font-family: "Lato";
  font-size: 1.6rem;
  font-weight: 500;
  background: url(/images/info_icon01.png) no-repeat;
  background-size: 16px;
  background-position: left top 50%;
}
.p-info__data-second-text {
  background: url(/images/info_icon02.png) no-repeat;
  background-size: 18px;
  background-position: left top 50%;
}

@media screen and (min-width: 769px) {
  .p-info {
    padding: 8rem 0;
  }
  .p-info__inner {
    max-width: 790px;
    width: 100%;
    margin: 0 auto;
  }
  .p-info__text {
    font-size: 1.8rem;
    word-break: break-word;
    font-weight: 500;
  }
  .p-info__text br {
    display: none;
  }
  .p-info__text-box {
    font-size: 1.6rem;
    font-weight: 500;
    align-items: baseline;
    gap: 1.6rem;
  }
  .p-info__text-box span {
    font-size: 1.8rem;
    font-weight: bold;
  }
  .p-info__data-box {
    gap: 1.6rem;
  }
  .p-info__data-text {
    font-size: 2.4rem;
    font-weight: bold;
    background-size: 24px;
    background-position: left top 50%;
    padding-left: 4rem;
  }
  .p-info__data-second-text {
    background-size: 28px;
  }
}
.p-access {
  scroll-margin: 80px;
  width: 100%;
  padding: 4rem 1.6rem;
}
.p-access__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-access__map {
  width: 100%;
  padding-top: 2.4rem;
  display: flex;
  justify-content: center;
}
.p-access__map iframe {
  width: 343px;
  height: 343px;
}
.p-access__block {
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: center;
}
.p-access__address-box {
  display: flex;
  flex-direction: column;
}
.p-access__address-text-box {
  display: flex;
  background: #F2F5ED;
  padding: 1.6rem;
  border-radius: 1rem;
  margin-top: 1.6rem;
  justify-content: center;
}
.p-access__address-data {
  background: url(/images/access_icon_top.png) no-repeat;
  background-size: 18px;
  background-position: left top 50%;
  padding-left: 2rem;
  line-height: 2rem;
}
.p-access__guide-box {
  position: relative;
  background: #F2F5ED;
  padding: 1.6rem;
  border-radius: 1rem;
}
.p-access__guide-title {
  position: absolute;
  width: 10rem;
  padding: 0.8rem 0;
  text-align: center;
  top: -2rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #FFEDCF;
  border-radius: 1rem;
}
.p-access__guide-text-box {
  padding-top: 1.6rem;
  font-size: 1.2rem;
}
.p-access__guide-text {
  padding-left: 2rem;
  background: url(/images/access_icon01.png) no-repeat;
  background-size: 1.6rem;
  background-position: left top 50%;
  line-height: 2.4rem;
}
.p-access__guide-text-second {
  background: url(/images/access_icon02.png) no-repeat;
  background-size: 1.6rem;
  background-position: left top 50%;
}
.p-access__guide-text-third {
  background: url(/images/access_icon03.png) no-repeat;
  background-size: 1.6rem;
  background-position: left top 50%;
}

@media screen and (min-width: 769px) {
  .p-access {
    padding: 4rem 1.6rem;
  }
  .p-access__inner {
    max-width: 996px;
    width: 100%;
    margin: 0 auto;
    gap: 4rem;
  }
  .p-access__map {
    padding-top: 0;
  }
  .p-access__map iframe {
    max-width: 994px;
    width: 100%;
  }
  .p-access__block {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 12rem;
  }
  .p-access__guide-box {
    max-width: 400px;
    width: 100%;
  }
  .p-access__guide-text-box {
    font-size: 1.6rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    padding-top: 3.2rem;
  }
  .p-access__guide-text {
    padding-left: 2.4rem;
  }
  .p-access__address-box {
    font-weight: 500;
  }
  .p-access__address-text-box {
    margin-top: 4rem;
    align-items: baseline;
    gap: 2.4rem;
  }
  .p-access__address-data {
    padding-left: 3.2rem;
  }
}
.c-heading {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.2;
}
.c-heading span {
  display: block;
  font-family: "Lato";
  color: #E36A3F;
  font-size: 1.8rem;
  font-weight: 600;
}

.c-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #70B562;
  line-height: 2;
}
.c-title span {
  font-family: "Lato";
  color: #fff;
  background: #70B562;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 1.6rem;
  letter-spacing: 0.1;
}

.c-sub-title {
  font-size: 1.6rem;
  font-weight: 600;
  padding: 0 0.4rem;
  position: relative;
  text-align: center;
  width: 110px;
}
.c-sub-title:before {
  content: "";
  display: inline-block;
  border: 2px solid #E36A3F;
  height: 2px;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

@media screen and (min-width: 769px) {
  .c-heading {
    font-size: 3.2rem;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
  }
  .c-heading span {
    font-size: 2.4rem;
  }
  .c-title {
    font-size: 3.2rem;
    letter-spacing: 0.4px;
  }
  .c-title span {
    font-size: 2.4rem;
  }
  .c-sub-title {
    font-size: 2.4rem;
    writing-mode: vertical-rl;
    padding-top: 1.6rem;
    width: fit-content;
  }
  .c-sub-title:before {
    content: "";
    display: inline-block;
    border: 5px solid #E36A3F;
    height: 10px;
    border-radius: 50%;
    left: 50%;
    top: 0;
    position: absolute;
  }
}
.c-button {
  display: inline-block;
  padding: 19px 32px 20px;
  background: #E36A3F;
  border-radius: 30px;
  color: #fff;
  line-height: 1.5;
}

.l-footer__inner {
  padding: 1.6rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.4rem;
}
.l-footer__img {
  width: 287px;
}
.l-footer__copyright {
  font-family: "Lato";
  font-size: 1.2rem;
  letter-spacing: 0;
  font-weight: 300;
}

@media screen and (min-width: 769px) {
  .l-footer__inner {
    padding: 6rem 0 1.6rem;
  }
  .l-footer__img {
    width: 580px;
  }
}

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