@charset "UTF-8";
.header {
  width: 100%;
  position: fixed;
  top: 0;
  background-color: #fbf5f0;
  z-index: 10;
}
.header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.header .header-contaier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 5px 6px 20px;
}
.header .header-logo {
  width: 50px;
  height: 50px;
}
.header .header-logo img {
  width: 100%;
  height: auto;
}
.header .navigation .navigation-lists {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 20px;
  background: #fff;
  border: 2px solid #594944;
  border-radius: 50px;
}
.header .navigation .navigation-lists > li {
  margin: 0 10px;
  font-family: "Zen Maru Gothic", "MS Pゴシック", "sans-serif";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
}
.header .navigation .navigation-lists > li a {
  color: #594944;
}

.footer {
  height: 284px;
  background-color: #594944;
  padding: 48px 20px 72px 120px;
}
@media screen and (max-width: 480px) {
  .footer {
    padding: 24px 20px 0;
  }
}
.footer .footer-contaier {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .footer-logo {
  text-align: center;
}
.footer .footer-logo img {
  width: 120px;
  height: 120px;
}
@media screen and (max-width: 940px) {
  .footer .navigation .navigation-lists {
    padding: 10px 13px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer .navigation .navigation-lists > li {
  font-family: "Zen Maru Gothic", "MS Pゴシック", "sans-serif";
}
@media screen and (max-width: 940px) {
  .footer .navigation .navigation-lists > li {
    font-size: 10px;
    font-weight: bold;
  }
}
.footer .footer-legal {
  text-align: center;
}
.footer .footer-legal .legal-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 480px) {
  .footer .footer-legal .legal-links {
    gap: 15px;
  }
}
.footer .footer-legal .legal-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s ease;
}
.footer .footer-legal .legal-links li a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 480px) {
  .footer .footer-legal .legal-links li a {
    font-size: 12px;
  }
}

.btn {
  width: 275px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Zen Maru Gothic", "MS Pゴシック", "sans-serif";
  font-weight: bold;
  font-size: 18px;
  line-height: 30px;
}
@media screen and (max-width: 480px) {
  .btn {
    max-width: 245px;
    width: 100%;
  }
}
.btn.btn-l {
  width: 408px;
}
@media screen and (max-width: 480px) {
  .btn.btn-l {
    max-width: 328px;
    width: 100%;
    font-size: 14px;
  }
}
.btn.btn-primary > a {
  color: #fff;
  background-color: #5c78a2;
  font-weight: normal;
}
.btn.btn-primary > a:hover {
  opacity: 0.8;
  cursor: pointer;
  top: -3px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
  opacity: 0.8;
}
.btn.btn-secondary {
  font-family: "Zen Maru Gothic", "MS Pゴシック", "sans-serif";
  font-size: 18px;
}
.btn.btn-secondary > a {
  color: #5c78a2;
  background-color: #fbf5f0;
}
.btn.btn-secondary > a:hover {
  opacity: 0.8;
  cursor: pointer;
  top: -3px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
  opacity: 0.8;
}
.btn > a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  transition: all 0.3s;
}

.navigation .navigation-lists {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 20px;
  margin: 0;
  background: #fff;
  border: 2px solid #594944;
  border-radius: 30px;
}
@media screen and (min-width: 1080px) {
  .navigation .navigation-lists {
    visibility: visible;
  }
}
.navigation .navigation-lists > li {
  margin: 0 10px;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
}
.navigation .navigation-lists > li a {
  color: #594944;
  display: block;
  position: relative;
}
.navigation .navigation-lists > li a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #594944;
  bottom: -2px;
  transform: scale(0, 1);
  transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.8s; /*変形の時間*/
}
.navigation .navigation-lists > li a:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}
.navigation input {
  display: none;
}

@media screen and (max-width: 1050px) {
  .header .navigation input#hamburger {
    display: none;
  }
  .header .navigation input#hamburger:checked + label .menu {
    transform: scale(1.23) rotate(180deg);
  }
  .header .navigation input#hamburger:checked + label .menu .menu_part:nth-of-type(1) {
    transform: rotate(45deg);
    width: 25px !important;
    top: calc(50% - 1px) !important;
  }
  .header .navigation input#hamburger:checked + label .menu .menu_part:nth-of-type(2) {
    left: 9px !important;
    opacity: 0;
  }
  .header .navigation input#hamburger:checked + label .menu .menu_part:nth-of-type(3) {
    transform: rotate(-45deg);
    width: 25px !important;
    top: calc(50% - 1px) !important;
  }
  .header .navigation input#hamburger:checked ~ .navigation-lists {
    opacity: 1;
    z-index: 1;
    visibility: visible;
  }
  .header .navigation input#hamburger:checked ~ .navigation-lists > li {
    margin-top: 40px;
  }
  .header .navigation .menu {
    transition: all 0.5s;
    position: relative;
    width: 45px;
    height: 45px;
    border-radius: 100%;
    cursor: pointer;
  }
  .header .navigation .menu .menu_part {
    width: 25px;
    height: 2px;
    position: absolute;
    background: #313d44;
    right: 0;
    margin: auto;
    left: 0;
    border-radius: 1px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1.5);
    width: 25;
    top: calc(50% - 4px - 1px);
  }
  .header .navigation .menu .menu_part:nth-of-type(1) {
    top: calc(50% - 4px - 3px);
    width: 25px;
  }
  .header .navigation .menu .menu_part:nth-of-type(2) {
    top: calc(50% - 4px + 4px);
    width: 25px;
  }
  .header .navigation .menu .menu_part:nth-of-type(3) {
    top: calc(50% - 4px + 11px);
    width: 25px;
  }
  .header .navigation label {
    position: relative;
    z-index: 10;
  }
  .header .navigation .navigation-lists {
    flex-direction: column;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    border-radius: 0;
    border: none;
    background-color: rgba(217, 217, 217, 0.8);
    transition: opacity 0.8s cubic-bezier(0.175, 0.885, 1, 1);
    visibility: hidden;
  }
  .header .navigation .navigation-lists > li {
    margin: 0;
    font-weight: bold;
    font-size: 20px;
    transition: margin 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.25);
  }
  .header .navigation .navigation-lists > li a {
    display: block;
    position: relative;
  }
  .header .navigation .navigation-lists > li a::after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background: #000;
    bottom: -8px;
    transform: scale(0, 1);
    transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
    transition: transform 0.8s; /*変形の時間*/
  }
  .header .navigation .navigation-lists > li a:hover::after {
    transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
  }
}
.header .navigation .navigation-lists > li a {
  display: block;
  position: relative;
}
.header .navigation .navigation-lists > li a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #594944;
  bottom: -2px;
  transform: scale(0, 1);
  transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.8s; /*変形の時間*/
}
.header .navigation .navigation-lists > li a:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}

.sns-lists {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 146px;
  height: 40px;
}
.sns-lists > li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50px;
}
.sns-lists > li a.sns-tiktok img {
  width: 44px;
  height: 44px;
}
.sns-lists > li a.sns-line img {
  width: 40px;
  height: 40px;
}
.sns-lists > li a.sns-instagram img {
  width: 25px;
  height: 25px;
}
.sns-lists > li a.sns-twitter img {
  width: 25px;
  height: 25px;
}

.accordion {
  background-color: #ffffff;
  border-radius: 30px;
  margin-bottom: 18px;
  font-size: 14px;
  font-family: "Noto sans JP", "MS Pゴシック", "sans-serif";
}
@media screen and (min-width: 1080px) {
  .accordion {
    font-size: 16px;
  }
}
.accordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 20px 30px 20px 60px;
  border-radius: 25px;
  background-color: #fff;
  color: #594944;
  cursor: pointer;
  font-family: "Noto sans JP", "MS Pゴシック", "sans-serif";
}
.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion summary::before {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  margin-left: 10px;
  content: "Q";
  font-weight: bold;
  background-color: #fbf5f0;
  border-radius: 50px;
}
.accordion summary::after {
  transform: translateY(-25%) rotate(45deg);
  transition: transform 0.5s;
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #594944;
  border-right: 3px solid #594944;
  content: "";
}
.accordion p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 20px 30px 20px 60px;
  color: #594944;
  transition: transform 1s ease, opacity 1s ease;
  font-family: "Noto sans JP", "MS Pゴシック", "sans-serif";
}
.accordion p::before {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  margin-left: 10px;
  content: "A";
  font-weight: bold;
  background-color: #fbf5f0;
  border-radius: 50px;
}

.accordion[open] summary::after {
  transform: rotate(225deg);
}

.accordion[open] p {
  transform: translateY(0);
  opacity: 1;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

ul {
  padding: 0;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  background-color: #fbf5f0;
  overflow: hidden;
}

h1 {
  color: #ccc;
  font-size: 2rem;
}

.main-content {
  padding-top: 22px;
}
@media screen and (min-width: 1080px) {
  .main-content {
    padding-top: 62px;
  }
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 100px 0;
}
@media screen and (max-width: 480px) {
  .container {
    padding: 60px 0;
  }
}

.section-top {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-top .section-label {
  font-size: 12px;
  font-weight: normal;
  font-family: "Fira Sans", "MS Pゴシック", "sans-serif";
  line-height: 30px;
  margin-bottom: 5px;
  padding: 0 15px;
  border-bottom: 1px solid #594944;
  text-align: center;
}
.section-top .section-title {
  font-size: 36px;
  font-weight: bold;
  font-family: "Kiwi Maru", "MS Pゴシック", "sans-serif";
  line-height: 30px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .section-top .section-title {
    font-size: 22px;
  }
}

.fixed-link {
  position: fixed;
  bottom: 30px;
  right: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.fixed-link.is-visible {
  opacity: 1;
}
.fixed-link a {
  position: relative;
  top: 0;
  display: grid;
  place-items: center;
  width: 65px;
  height: 65px;
  font-size: 10px;
  font-family: "Zen Maru Gothic", "MS Pゴシック", "sans-serif";
  text-align: center;
  background-color: #5c78a2;
  color: #fff;
  border: 1px solid #594944;
  border-radius: 100px;
  transition: all 0.3s;
}
@media screen and (min-width: 1080px) {
  .fixed-link a {
    width: 124px;
    height: 124px;
    font-size: 18px;
  }
}
.fixed-link a:hover {
  top: -3px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
  opacity: 0.8;
}
.fixed-link a:hover::before {
  content: "";
  position: absolute;
  left: calc(50% - 40px);
  top: calc(50% - 40px);
  border: 1px solid #333;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  opacity: 1;
  animation: 1s circleanime2 forwards;
}

/*波形が広がるアニメーション*/
@keyframes circleanime2 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
.mv {
  position: relative;
  width: 100vw;
  height: 854px;
  padding: 0 20%;
  margin: 0 auto;
  background-color: #fbf5f0;
  background-image: url("../img/bg_mv.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .mv {
    justify-content: center;
    align-items: flex-end;
    padding: 0;
    background-image: url("../img/bg_mv_sp.png");
    height: 1120px;
  }
}
@media screen and (max-width: 480px) {
  .mv {
    background-size: cover;
    height: 620px;
  }
}
.mv .mv-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 0 200px;
  font-family: "Zen Maru Gothic", "MS Pゴシック", "sans-serif";
}
@media screen and (max-width: 768px) {
  .mv .mv-inner {
    justify-content: center;
    align-items: flex-end;
    padding: 0 0 480px;
  }
}
@media screen and (max-width: 480px) {
  .mv .mv-inner {
    padding: 0 0 240px;
  }
}
.mv .mv-inner p {
  margin: 0;
  text-align: center;
  color: #fff;
  font-family: "Zen Maru Gothic", "MS Pゴシック", "sans-serif";
  font-size: 20px;
}
@media screen and (max-width: 480px) {
  .mv .mv-inner p {
    font-size: 14px;
  }
}
.mv .mv-inner p:nth-child(2) {
  font-size: 22px;
}
@media screen and (max-width: 480px) {
  .mv .mv-inner p:nth-child(2) {
    font-size: 18px;
    height: 44px;
  }
}
.mv .mv-inner .mv-campaign {
  position: relative;
  display: inline-block;
  padding: 0 60px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 480px) {
  .mv .mv-inner .mv-campaign {
    padding: 0 36px;
    font-size: 16px;
  }
}
.mv .mv-inner .mv-campaign::before, .mv .mv-inner .mv-campaign::after {
  content: "";
  position: absolute;
  top: 35%;
  width: 50px;
  height: 2px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 480px) {
  .mv .mv-inner .mv-campaign::before, .mv .mv-inner .mv-campaign::after {
    width: 40px;
  }
}
.mv .mv-inner .mv-campaign::before {
  left: 15px;
  transform-origin: left center;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 480px) {
  .mv .mv-inner .mv-campaign::before {
    left: 0;
  }
}
.mv .mv-inner .mv-campaign::after {
  right: 15px;
  transform-origin: right center;
  transform: translateY(-50%) rotate(-45deg);
}
@media screen and (max-width: 480px) {
  .mv .mv-inner .mv-campaign::after {
    right: 0;
  }
}
.mv .mv-title {
  position: absolute;
  bottom: -2px;
  right: 0;
  left: 0;
  max-width: 1000px;
  overflow: hidden;
  margin: 0 auto;
}
.mv .mv-title p {
  margin: 0;
  font-family: "Zen Maru Gothic", "MS Pゴシック", "sans-serif";
  font-weight: bold;
  color: rgba(255, 255, 255, 0.7);
  line-height: 0.9;
}
.mv .mv-title p:nth-child(1) {
  font-size: 60px;
  text-align: left;
}
@media screen and (max-width: 480px) {
  .mv .mv-title p:nth-child(1) {
    font-size: 24px;
  }
}
.mv .mv-title p:nth-child(2) {
  font-size: 140px;
  letter-spacing: 0.3em;
  text-align: right;
}
@media screen and (max-width: 480px) {
  .mv .mv-title p:nth-child(2) {
    font-size: 80px;
  }
}

.about {
  max-width: 925px;
}
.about .about-text {
  font-family: "Zen Maru Gothic", "MS Pゴシック", "sans-serif";
  font-size: 16px;
  font-weight: 400;
  line-height: 45px;
  text-align: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 480px) {
  .about .about-text {
    text-align: left;
    padding: 0 44px;
  }
}
.about .counselor-introduction {
  width: 100%;
  max-width: 440px;
  margin: 0 auto 60px;
  padding: 10px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
}
@media screen and (max-width: 480px) {
  .about .counselor-introduction {
    width: calc(100% - 94px);
    padding: 10px;
  }
}
.about .counselor-introduction-title {
  display: inline;
  font-size: 12px;
  font-weight: normal;
  font-family: "Fira Sans", "MS Pゴシック", "sans-serif";
  line-height: 30px;
  margin-bottom: 5px;
  padding: 0 15px;
  border-bottom: 1px solid #594944;
  text-align: center;
}
.about .counselor-introduction-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-items: flex-start;
}
.about .counselor-introduction-list li > p {
  font-size: 12px;
  font-family: "Noto sans JP", "MS Pゴシック", "sans-serif";
  margin: 2px 0px;
}
@media screen and (min-width: 1080px) {
  .about .counselor-introduction-list li > p {
    font-size: 14px;
  }
}

.nayami .section-top {
  margin-bottom: 50px;
}
@media screen and (min-width: 1080px) {
  .nayami .section-top {
    margin-bottom: 100px;
  }
}
.nayami .nayami-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1080px) {
  .nayami .nayami-list {
    margin-bottom: 50px;
  }
}
.nayami .nayami-list li {
  font-size: 16px;
  font-family: "Zen Maru Gothic", "MS Pゴシック", "sans-serif";
}
@media screen and (min-width: 1080px) {
  .nayami .nayami-list li {
    font-size: 18px;
  }
}
.nayami .nayami-introduction {
  width: 100%;
  max-width: 310px;
  margin: 0 auto 60px;
  padding: 30px 20px;
  font-size: 16px;
  font-family: "Noto sans JP", "MS Pゴシック", "sans-serif";
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (min-width: 1080px) {
  .nayami .nayami-introduction {
    max-width: 440px;
    padding: 30px 70px;
    font-size: 18px;
  }
}

.problem .problem-lists {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto 50px;
}
@media screen and (min-width: 1080px) {
  .problem .problem-lists {
    max-width: 1050px;
  }
}
.problem .problem-lists li {
  width: calc(50% - 10px);
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1080px) {
  .problem .problem-lists li {
    width: 33.333333%;
  }
  .problem .problem-lists li:nth-child(4), .problem .problem-lists li:nth-child(5) {
    width: 50%;
  }
}
.problem .problem-lists li > * {
  margin: 0;
}
.problem .problem-lists li .problem-text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-height: 130px;
  background-image: url("../img/bg_bubble.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  font-size: 12px;
}
@media screen and (min-width: 1080px) {
  .problem .problem-lists li .problem-text {
    width: 260px;
    height: 166px;
    max-width: none;
    font-size: 16px;
  }
}
.problem .problem-lists li .problem-image {
  text-align: center;
  width: 100%;
}
.problem .problem-lists li .problem-image img {
  max-width: 100%;
}
.problem .problem-lists li .problem-title {
  font-family: "Zen Maru Gothic", "MS Pゴシック", "sans-serif";
  font-size: 14px;
}
@media screen and (min-width: 1080px) {
  .problem .problem-lists li .problem-title {
    font-size: 22px;
  }
}

.counseling {
  max-width: 925px;
}
.counseling .section-top {
  margin-bottom: 50px;
}
@media screen and (min-width: 1080px) {
  .counseling .section-top {
    margin-bottom: 100px;
  }
}
.counseling .counseling-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding: 0 44px;
}
@media screen and (min-width: 1080px) {
  .counseling .counseling-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    padding: 0;
    gap: 80px;
  }
}
.counseling .counseling-content > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1080px) {
  .counseling .counseling-content > div {
    max-width: 480px;
  }
}
.counseling .counseling-content > div:nth-child(odd) {
  gap: 10px;
}
.counseling .counseling-content > div:nth-child(odd) > p {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 250px;
  height: 250px;
  background-color: #fbf5f0;
  border-radius: 200px;
}
@media screen and (min-width: 1080px) {
  .counseling .counseling-content > div:nth-child(odd) > p {
    width: 470px;
    height: 320px;
  }
}
.counseling .counseling-content > div:nth-child(odd) > p > span {
  position: absolute;
  top: 0px;
  left: 10px;
  transform: rotateZ(-14deg);
  font-family: "Homemade Apple", "MS Pゴシック", "sans-serif";
  font-size: 26px;
}
@media screen and (min-width: 1080px) {
  .counseling .counseling-content > div:nth-child(odd) > p > span {
    font-size: 46px;
  }
}
.counseling .counseling-content > div:nth-child(odd) .counseling-title {
  font-size: 22px;
  text-align: center;
  margin: 5px;
}
@media screen and (min-width: 1080px) {
  .counseling .counseling-content > div:nth-child(odd) .counseling-title {
    font-size: 32px;
  }
}
.counseling .counseling-content > div:nth-child(odd) .counseling-description {
  font-size: 18px;
  font-family: "Noto sans JP", "MS Pゴシック", "sans-serif";
}
.counseling .counseling-content > div:nth-child(even) .counseling-title {
  max-width: 200px;
  font-size: 16px;
  text-align: center;
  border: 1px solid #000;
  padding: 5px;
  border-radius: 4px;
}
@media screen and (min-width: 1080px) {
  .counseling .counseling-content > div:nth-child(even) .counseling-title {
    font-size: 18px;
  }
}
.counseling .counseling-content > div .counseling-item {
  font-family: "Noto sans JP", "MS Pゴシック", "sans-serif";
}
.counseling .counseling-content .counseling-menu {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
}
@media screen and (max-width: 480px) {
  .counseling .counseling-content .counseling-menu {
    margin: 20px auto 0;
    font-size: 14px;
    border-radius: 8px;
  }
}
.counseling .counseling-content .counseling-menu thead tr {
  border-bottom: 1px solid #000;
}
.counseling .counseling-content .counseling-menu thead th {
  padding: 10px 0;
  font-family: "Noto sans JP", "MS Pゴシック", "sans-serif";
  font-size: 13px;
  font-weight: normal;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .counseling .counseling-content .counseling-menu thead th {
    margin: 20px auto 0;
    font-size: 12px;
    border-radius: 8px;
  }
}
.counseling .counseling-content .counseling-menu tbody tr:nth-child(odd) td {
  border: none;
}
.counseling .counseling-content .counseling-menu tbody tr:nth-child(even) {
  border-bottom: 1px solid #000;
}
.counseling .counseling-content .counseling-menu tbody tr:last-child > td {
  text-align: left;
  padding: 10px 0;
}
.counseling .counseling-content .counseling-menu tbody td {
  padding: 10px 0;
  font-family: "Noto sans JP", "MS Pゴシック", "sans-serif";
  font-size: 16px;
  text-align: center;
  vertical-align: middle;
}
.counseling .counseling-content .counseling-menu tbody td:first-child {
  vertical-align: top;
}
.counseling .counseling-content .counseling-menu tbody td:first-child[rowspan] {
  text-align: left;
}

.uservoice {
  background-color: #fff;
}
.uservoice .splide__list {
  margin-bottom: 30px;
}
@media screen and (min-width: 1080px) {
  .uservoice .splide__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1080px;
  }
}
.uservoice .splide__list li {
  max-width: 320px;
  height: 420px;
  min-height: 420px;
  padding: 45px 54px;
  background: #fbf5f0;
  border-radius: 30px;
}
@media screen and (max-width: 480px) {
  .uservoice .splide__list li {
    display: block !important;
    width: 80%;
    max-width: 250px;
    padding: 40px 30px;
    margin: 0 auto;
  }
}
.uservoice .splide__list li .uservoice-user {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.uservoice .splide__list li .uservoice-user > img {
  background-color: #fff;
  border-radius: 100px;
}
.uservoice .splide__list li .uservoice-user > span {
  font-family: "Noto sans JP", "MS Pゴシック", "sans-serif";
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #000;
}
.uservoice .splide__list li .uservoice-text {
  font-family: "Noto sans JP", "MS Pゴシック", "sans-serif";
}
.uservoice .splide__arrow {
  width: 30px;
  height: 30px;
  z-index: 10;
  background-image: url("../img/icon_arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: inherit;
}
.uservoice .splide__arrow:before {
  content: none;
}
.uservoice .splide__arrow svg {
  display: none;
}
.uservoice .splide__arrow--prev {
  left: 60px;
  transform: rotateZ(90deg);
}
.uservoice .splide__arrow--next {
  right: 60px;
  transform: rotateZ(-90deg);
}

.splide {
  margin: 0 auto 100px;
}
@media screen and (max-width: 480px) {
  .splide {
    margin-bottom: 50px;
  }
}

@media screen and (min-width: 1080px) {
  .splide.is-initialized:not(.is-active) .splide__track .splide__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto !important;
    display: flex !important;
  }
}

@media screen and (min-width: 1080px) {
  .splide:not(.is-initialized) .splide__track .splide__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto !important;
    display: flex !important;
  }
}

.faq {
  margin: 0 auto;
}
@media screen and (min-width: 1080px) {
  .faq {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1080px;
    align-items: flex-start;
  }
}
.faq .section-image {
  height: auto;
}
@media screen and (max-width: 480px) {
  .faq .section-image {
    width: 100%;
    max-width: 210px;
  }
}
.faq .section-image > img {
  width: 100%;
}
.faq .faq-lists {
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
  max-width: 656px;
}
@media screen and (min-width: 1080px) {
  .faq .faq-lists {
    padding: 0;
    margin-top: 100px;
  }
}

.contact {
  width: 800px;
  margin: 0 auto 100px;
  padding: 40px 0;
  background: #ffffff;
  border: 5px solid #ddd4cc;
}
@media screen and (max-width: 480px) {
  .contact {
    width: calc(100% - 50px);
    margin: 0 auto 50px;
    padding: 20px 0;
  }
}
.contact .contact-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact .contact-buttons p {
  margin: 5px 0;
}
.contact .contact-buttons p:not(.btn) {
  font-family: "Noto sans JP", "MS Pゴシック", "sans-serif";
}

.counseling-content-policy {
  margin-top: 100px;
  padding: 0 44px;
}
@media screen and (min-width: 1080px) {
  .counseling-content-policy {
    margin-top: 160px;
    padding: 0;
  }
}
.counseling-content-policy .policy-title {
  font-size: 18px;
  margin-bottom: 20px;
  font-family: "Noto sans JP", "MS Pゴシック", "sans-serif";
}
@media screen and (min-width: 1080px) {
  .counseling-content-policy .policy-title {
    font-size: 20px;
  }
}
.counseling-content-policy .policy-list {
  list-style: none;
  margin: 0;
}
.counseling-content-policy .policy-list li {
  font-family: "Noto sans JP", "MS Pゴシック", "sans-serif";
  padding: 8px 0;
  line-height: 1.6;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22../../src/scss/common/_header.scss%22,%22../../src/scss/utility/_usefull.scss%22,%22../../src/scss/utility/_variable.scss%22,%22../../src/scss/common/_footer.scss%22,%22../../src/scss/utility/_mixin.scss%22,%22../../src/scss/modules/_button.scss%22,%22../../src/scss/modules/_navigation.scss%22,%22../../src/scss/modules/_sns.scss%22,%22../../src/scss/modules/_accordion.scss%22,%22../../src/scss/style.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22;AAAA;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAGF;ECMA;EACA;EACA;EDNE;;AAGF;EACE;EACA;;AAEA;EACE;EACA;;AAKF;ECVF;EACA;EACA;EDUI;EACA;EACA;EACA;;AAEA;EACE;EACA,aEzBO;EF0BP;EACA;EACA;EACA;;AAEA;EACE,OE7CM;;;ACDhB;EACE;EACA,kBDDc;ECEd;;ACeA;EDlBF;IAOI;;;AAGF;EFUA;EACA;EACA;;AERA;EACE;;AACA;EACE;EACA;;ACMJ;EDFE;IAEI;IACA;IACA;;;AAEF;EACE,aDfO;;AEUb;EDII;IAGI;IACA;;;AAMR;EACE;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;;AC7BJ;EDuBE;IASI;;;AAIA;EACE;EACA;EACA;EACA;;AAEA;EACE;;AC3CV;EDoCM;IAWI;;;;AE/DZ;EACE;EACA;EACA;EJHA;EACA;EACA;EIIA,aHMa;EGLb;EACA;EACA;;ADOA;EChBF;IAYI;IACA;;;AAGF;EACE;;ADDF;ECAA;IAGI;IACA;IACA;;;AAKF;EACE,OHxBa;EGyBb,kBH3BW;EG4BX;;AAEA;EJkBJ;EACA;EAIA;EACA;EACA;;AIlBA;EACE,aH3BW;EG4BX;;AAEA;EACE;EACA,kBH5CY;;AG8CZ;EJGJ;EACA;EAIA;EACA;EACA;;AIHA;EJrDA;EACA;EACA;EIqDE;EACA;EACA;EACA;EACA;EACA;;;AC7DF;ELmBA;EACA;EACA;EKnBE;EACA;EACA;EACA;EACA;;AFDF;EELA;IASI;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE,OJrBQ;EIsBR;EACA;;AACA;EACE;EACA;EACA;EACA;EACA;EACA,YJ9BM;EI+BN;EACA;EACA;EACA;;AAEF;EACE;;AAMR;EACE;;;AFrBF;EEgCI;IACE;;EAEA;IACE;;EAEF;IACE;IACA;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAEA;IACE;;EAKN;IACE;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAKN;IACE;IACA;;EAGF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;IACA;IACA;IACA;;EAEA;IACE;IACA;;EACA;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAEF;IACE;;;AAaN;EACE;EACA;;AACA;EACE;EACA;EACA;EACA;EACA;EACA,YJ9LI;EI+LJ;EACA;EACA;EACA;;AAEF;EACE;;;ACtMZ;ENEE;EACA;EACA;EMFE;EACA;EACA;;AAGI;ENLN;EACA;EACA;EMKU;EACA;EACA;EACA;;AAGI;EACI;EACA;;AAIJ;EACI;EACA;;AAIJ;EACI;EACA;;AAIJ;EACI;EACA;;;ACnCpB;EACE;EACA;EACA;EACA;EACA,aNQU;;AEPV;EINF;IAQI;;;AAGF;EPSA;EACA;EACA;EOTE;EACA;EACA;EACA;EACA,ONhBY;EMiBZ;EACA,aNNQ;;AMQR;EACE;;AAGF;EPvBF;EACA;EACA;EOuBI;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBNhCY;EMiCZ;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA,ONtDY;EMuDZ;EACA,aN5CQ;;AM8CR;EPzDF;EACA;EACA;EOyDI;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBNlEY;EMmEZ;;;AAKN;EACE;;;AAGF;EACE;EACA;;;ACjEF;EACE;;;AAGF;EACE;;;AAEF;EACE;;;AAEF;EACE;;;AAGF;EACE;;;AAGF;EACE;EACA,kBPjCgB;EOkChB;;;AAGF;EACE;EACA;;;AAGF;EACE;;ALvCA;EKsCF;IAII;;;;AAQJ;EACE;EACA;EACA;EACA;;AL1CA;EKsCF;IAOI;;;;AAIJ;ERvBE;EACA;EACA;;AQuBA;EACE;EACA;EACA,aP7DQ;EO8DR;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA,aP1EQ;EO2ER;EACA;;ALnEF;EK8DA;IAQI;;;;AAKN;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA,aPlGW;EOmGX;EACA,kBP/Ga;EOgHb,OP9Ge;EO+Gf;EACA;EACA;;ALhHF;EKkGA;IAiBI;IACA;IACA;;;AAGF;ERtEF;EACA;EACA;;AQwEE;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAKN;AACA;EACE;IACE;;EAEF;IACE;IACA;;;AAQJ;EACE;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;ER7JA;EACA;EACA;EQ6JA;;ALjKA;EKoJF;IAgBI;IACA;IACA;IACA;IACA;;;ALlKF;EK8IF;IAwBI;IACA;;;AAGF;ERhJA;EACA;EACA;EQgJE;EACA;EACA,aPlLW;;AEFb;EKgLA;IAOI;IACA;IACA;;;ALnLJ;EK0KA;IAaI;;;AAGF;EACE;EACA;EACA,OP1Ma;EO2Mb,aPlMS;EOmMT;;AL/LJ;EK0LE;IAOI;;;AAEF;EACE;;ALpMN;EKmMI;IAGI;IACA;;;AAKN;EACE;EACA;EACA;EACA;EACA;EACA;;ALlNJ;EK4ME;IASI;IACA;;;AAGF;EAEE;EACA;EACA;EACA;EACA;EACA;EACA;;ALjON;EKyNI;IAUI;;;AAGJ;EACE;EACA;EACA;;ALzON;EKsOI;IAKI;;;AAGJ;EACE;EACA;EACA;;ALjPN;EK8OI;IAKI;;;AAKR;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA,aPvQS;EOwQT;EACA;EACA;;AAEA;EACE;EACA;;AL1QN;EKwQI;IAII;;;AAGJ;EACE;EACA;EACA;;ALlRN;EK+QI;IAKI;;;;AAWV;EACE;;AACA;EACE,aPtSW;EOuSX;EACA;EACA;EACA;EACA;;ALvSF;EKiSA;IASI;IACA;;;AAIJ;EACE;EACA;EACA;EACA;ERnUF;EACA;EACA;EQmUE;EACA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%22,%22file%22:%22style.css%22%7D */
