@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

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

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
html {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  color: #333;
  background-color: #cfe8ed;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

.l-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.c-btn {
  padding: 1.3125rem 3.3125rem 1.3125rem 2.0625rem;
  position: relative;
  text-align: center;
  display: inline-block;
  font-size: 0.75rem;
  line-height: normal;
  font-weight: 700;
  border-radius: 0.625rem;
  color: #fff;
  background-color: #5c9fd9;
  background-image: url(./../images/common/white-dot.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 96.5%;
  transition: 0.3s;
  min-width: 14.375rem;
}
@media screen and (min-width: 768px) {
  .c-btn {
    min-width: 21.875rem;
    font-size: 1rem;
    padding: 1.8125rem 5.25rem 1.875rem 4.625rem;
    background-image: url(./../images/common/white-arrow-pc.svg);
  }
}

@media screen and (min-width: 768px) {
  .c-btn.c-btn--map {
    min-width: 15.625rem;
    padding: 0.9375rem 5.125rem 1.0625rem 4.5rem;
    background-image: url(./../images/common/map-btn.svg);
  }
}

.c-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.25rem;
  width: 1.5625rem;
  height: 0.9375rem;
  display: inline-block;
  background-image: url(./../images/common/white-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-btn::before {
    width: 1.875rem;
    right: 2.8125rem;
  }
}

.c-btn.c-btn--map::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.25rem;
  width: 1.5625rem;
  height: 0.9375rem;
  display: inline-block;
  background-image: url(./../images/common/map.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-btn.c-btn--map::before {
    width: 1.875rem;
    right: 1.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .c-btn:hover {
    opacity: 1;
  }
}

@media screen and (min-width: 768px) {
  .c-btn:hover::before {
    right: 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .c-btn.c-btn--map:hover::before {
    right: 1.25rem;
  }
}

.c-btn.c-btn--white {
  color: #003197;
  background-color: #fff;
  background-image: url(./../images/common/blue-dot.svg);
  background-size: 96%;
}
@media screen and (min-width: 768px) {
  .c-btn.c-btn--white {
    background-image: url(./../images/common/blue-dot-pc.svg);
  }
}

.c-btn.c-btn--white::before {
  background-image: url(./../images/common/purple-arrow.svg);
}

.c-title {
  position: relative;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: normal;
  color: #003197;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-title {
    gap: 1.25rem;
    font-size: 2.125rem;
    line-height: 3.1875rem;
  }
}

.c-title.c-title--sub {
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-title.c-title--sub {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
}

.c-title.c-title.c-title.c-title--counselor {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-title.c-title.c-title.c-title--counselor {
    text-align: left;
  }
}

.c-title span {
  justify-content: center;
  margin-inline: auto;
  background-image: url(./../images/common/advice-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  bottom: 0;
  width: 1.875rem;
  height: 1.9375rem;
}
@media screen and (min-width: 768px) {
  .c-title span {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.c-title.c-title--psychology span {
  background-image: url(./../images/common/therapy-icon.svg);
  width: 1.875rem;
  height: 1.9375rem;
}
@media screen and (min-width: 768px) {
  .c-title.c-title--psychology span {
    width: 2.375rem;
    height: 2.3125rem;
  }
}

.c-title.c-title--guidance span {
  background-image: url(./../images/common/guidance-icon.svg);
  width: 1.75rem;
  height: 1.8125rem;
}
@media screen and (min-width: 768px) {
  .c-title.c-title--guidance span {
    width: 2.25rem;
    height: 2.3125rem;
  }
}

.c-title.c-title--bird span {
  background-image: url(./../images/common/introduction-icon.svg);
  width: 3.75rem;
  height: 3.75rem;
}
@media screen and (min-width: 768px) {
  .c-title.c-title--bird span {
    width: 3.75rem;
    height: 3.75rem;
  }
}

.c-title.c-title--counselor span {
  background-image: url(./../images/common/open-icon.svg);
  width: 1.875rem;
  height: 1.9375rem;
}
@media screen and (min-width: 768px) {
  .c-title.c-title--counselor span {
    display: none;
  }
}

.c-title.c-title--room span {
  background-image: url(./../images/common/room.svg);
  width: 1.875rem;
  height: 1.9375rem;
}
@media screen and (min-width: 768px) {
  .c-title.c-title--room span {
    width: 2.5rem;
    height: 2.5625rem;
  }
}

.c-title.c-title--flow span {
  background-image: url(./../images/common/flow.svg);
  width: 1.875rem;
  height: 1.9375rem;
}
@media screen and (min-width: 768px) {
  .c-title.c-title--flow span {
    width: 2.5rem;
    height: 2.5625rem;
  }
}

.c-title.c-title--price span {
  background-image: url(./../images/common/price.svg);
  width: 1.875rem;
  height: 1.9375rem;
}
@media screen and (min-width: 768px) {
  .c-title.c-title--price span {
    width: 2.5rem;
    height: 2.5625rem;
  }
}

.c-title.c-title--open span {
  background-image: url(./../images/common/open.svg);
  width: 1.875rem;
  height: 1.9375rem;
}
@media screen and (min-width: 768px) {
  .c-title.c-title--open span {
    width: 2.5rem;
    height: 2.5625rem;
  }
}

.c-title.c-title--contact span {
  background-image: url(./../images/common/contact.svg);
  width: 1.875rem;
  height: 1.9375rem;
}
@media screen and (min-width: 768px) {
  .c-title.c-title--contact span {
    width: 2.5rem;
    height: 2.5625rem;
  }
}

.p-access {
  background-color: #eaf8fb;
  padding-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-access {
    padding-top: 5.3125rem;
  }
}

.p-access__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-access__inner {
    padding: 0 1.5625rem;
    max-width: 65.625rem;
  }
}

.p-access__title {
  color: #003197;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8rem;
}
@media screen and (min-width: 768px) {
  .p-access__title {
    font-size: 1.5rem;
  }
}

.p-access__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 1.5625rem;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-access__info {
    align-items: initial;
    flex-direction: initial;
  }
}

.p-access__address {
  font-size: 1rem;
  line-height: 1.7rem;
  font-weight: 400;
  color: #091e4f;
  font-style: normal;
}

.p-access__btn-wrap {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-access__btn-wrap {
    margin-top: 0rem;
  }
}

.p-access__map-wrap {
  margin-top: 1.875rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-access__map-wrap {
    margin-top: 1.5625rem;
  }
}

.p-access__map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 48.5%;
}
@media screen and (min-width: 768px) {
  .p-access__map {
    padding-top: 34.5%;
  }
}

.p-access__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-access__company {
  padding-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-access__company {
    padding-top: 6.25rem;
  }
}

.p-access__company-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-access__company-flex {
    flex-direction: initial;
  }
}

.p-access__company-wrap {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-access__company-wrap {
    width: 59%;
  }
}

.p-access__company-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-bottom: 1.5625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-access__company-list {
    gap: 5rem;
    flex-direction: initial;
  }
}

.p-access__company-list::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background-image: url(./../images/common/dot.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-access__company-list::after {
    background-image: url(./../images/common/dot-pc.svg);
  }
}

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

.p-access__company-title {
  color: #091e4f;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7rem;
  max-width: 5.9375rem;
  width: 100%;
  padding-left: 0rem;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-access__company-title {
    padding-left: 2.34375rem;
  }
}

.p-access__company-text {
  color: #091e4f;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7rem;
}

.p-access__company-img {
  aspect-ratio: 380/405;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-access__company-img {
    width: 41%;
  }
}

.p-access__company-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-access__link {
  padding-top: 6.25rem;
}

.p-access__link-items {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  margin-top: 2.25rem;
}

.p-access__link-flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-access__link-flex {
    align-items: initial;
    flex-direction: initial;
  }
}

.p-access__link-name {
  font-size: 1rem;
  color: #091e4f;
  font-weight: 700;
  line-height: 1.7rem;
}

.p-access__link-text {
  font-size: 1rem;
  color: #091e4f;
  font-weight: 400;
  line-height: 1.7rem;
}

.p-access__link-btn {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-access__link-btn {
    margin-top: 0rem;
  }
}

.p-breadcrumb__inner {
  margin: auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-breadcrumb__inner {
    gap: 1.25rem;
  }
}

.p-breadcrumb span {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  line-height: normal;
  position: relative;
  display: inline-block;
}

.p-breadcrumb__icon {
  width: 1.5625rem;
  height: 0.0625rem;
  display: inline-block;
  background-image: url(./../images/common/breadcrumb.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.p-consultation {
  background-color: #cfe8ed;
  padding-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-consultation {
    padding-top: 11.25rem;
  }
}

.p-consultation__inner {
  margin: auto;
  padding: 0 2.1875rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-consultation__inner {
    padding-inline: 1.5625rem;
    max-width: 56.25rem;
  }
}

.p-consultation__text {
  text-align: center;
  color: #091e4f;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.275rem;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-consultation__text {
    margin-top: 1.25rem;
    font-size: 1rem;
    line-height: 2rem;
  }
}

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

.p-consultation__flex {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-consultation__flex {
    gap: 2.625rem;
    flex-direction: initial;
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .p-consultation__flex.p-consultation__flex--third {
    gap: 8.5625rem;
    padding-left: 6.25rem;
  }
}

.p-consultation__flex.p-consultation__flex--second::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(./../images/common/line01.webp);
  top: -20%;
  width: 6.5rem;
  height: 3.375rem;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .p-consultation__flex.p-consultation__flex--second::before {
    top: -10%;
    width: 9.8125rem;
    height: 5rem;
  }
}

.p-consultation__flex.p-consultation__flex--third::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(./../images/common/line02.webp);
  top: -14%;
  width: 4.8125rem;
  height: 1.8125rem;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .p-consultation__flex.p-consultation__flex--third::before {
    top: -10%;
    width: 7.0625rem;
    height: 2.6875rem;
  }
}

.p-consultation__flex.p-consultation__flex--four::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(./../images/common/line03.webp);
  top: -20%;
  width: 3.6875rem;
  height: 3.625rem;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .p-consultation__flex.p-consultation__flex--four::before {
    top: -10%;
    width: 5.8125rem;
    height: 5.6875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-consultation__flex:nth-of-type(even) {
    flex-direction: row-reverse;
  }
}

.p-consultation__flex + .p-consultation__flex {
  margin-top: 5.3125rem;
}
@media screen and (min-width: 768px) {
  .p-consultation__flex + .p-consultation__flex {
    margin-top: 1.875rem;
  }
}

.p-consultation__img {
  aspect-ratio: 240/172;
}
@media screen and (min-width: 768px) {
  .p-consultation__img {
    aspect-ratio: 385/292;
  }
}

.p-consultation__img.p-consultation__img--third {
  width: 7.25rem;
  margin-inline: auto;
  aspect-ratio: 116/172;
}
@media screen and (min-width: 768px) {
  .p-consultation__img.p-consultation__img--third {
    width: 100%;
    aspect-ratio: 196/290;
  }
}

.p-consultation__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-consultation__text-wrap {
  color: #091e4f;
  text-align: center;
  margin-top: 1.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-consultation__text-wrap {
    min-width: 27rem;
    width: 100%;
    text-align: left;
  }
}

.p-consultation__flex-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35rem;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-consultation__flex-title {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
}

.p-consultation__flex-text {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.275rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-consultation__flex-text {
    font-size: 1rem;
    line-height: 1.7rem;
  }
}

.p-consultation__text-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -1.25rem;
  width: 7.5625rem;
  height: 6.875rem;
  display: inline-block;
  background-image: url(./../images/common/bubble01.webp);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .p-consultation__text-wrap::after {
    right: 2.5rem;
    width: 10.5625rem;
    height: 9.625rem;
  }
}

.p-consultation__text-wrap.p-consultation__text-wrap--second::after {
  background-image: url(./../images/common/bubble02.webp);
  left: 0;
  width: 10.3125rem;
  height: 7.125rem;
  bottom: -10%;
  top: 70%;
}
@media screen and (min-width: 768px) {
  .p-consultation__text-wrap.p-consultation__text-wrap--second::after {
    top: 50%;
    width: 13.9375rem;
    height: 9.625rem;
  }
}

.p-consultation__text-wrap.p-consultation__text-wrap--third::after {
  background-image: url(./../images/common/bubble03.webp);
  width: 16.875rem;
  height: 6rem;
  left: -0.625rem;
  top: 50%;
}
@media screen and (min-width: 768px) {
  .p-consultation__text-wrap.p-consultation__text-wrap--third::after {
    top: 75%;
    width: 30.875rem;
    height: 10.5rem;
  }
}

.p-consultation__text-wrap.p-consultation__text-wrap--four::after {
  background-image: url(./../images/common/bubble04.webp);
  left: 0;
  top: 90%;
  width: 6.6875rem;
  height: 5.1875rem;
}
@media screen and (min-width: 768px) {
  .p-consultation__text-wrap.p-consultation__text-wrap--four::after {
    width: 8.1875rem;
    height: 6.375rem;
  }
}

.p-consultation__btn {
  text-align: center;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-consultation__btn {
    margin-top: 3.46875rem;
  }
}

.p-contact {
  background-color: #eaf8fb;
  padding-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-contact {
    padding-top: 8.125rem;
  }
}

.p-contact__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-contact__inner {
    padding: 0 1.5625rem;
    max-width: 59.375rem;
  }
}

.p-contact__text {
  margin-top: 1.25rem;
  color: #091e4f;
  font-size: 1rem;
  line-height: 2rem;
  font-weight: 400;
  text-align: center;
}

.p-contact__message {
  margin-top: 2.5rem;
  padding-inline: 0rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7rem;
  color: #091e4f;
}
@media screen and (min-width: 768px) {
  .p-contact__message {
    padding-inline: 2rem;
  }
}

.p-contact__message span {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7rem;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  color: #003197;
}

.p-contact__wrap.p-contact__wrap--confirm {
  padding-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact__wrap.p-contact__wrap--confirm {
    padding-top: 8.125rem;
  }
}

.p-contact.p-contact--entry {
  padding-bottom: 0rem;
}

.p-contact__thanks {
  padding-top: 10.9375rem;
}
@media screen and (min-width: 768px) {
  .p-contact__thanks {
    padding-top: 16.25rem;
  }
}

.p-contact__description {
  color: #091e4f;
  text-align: left;
  line-height: 2.25rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8rem;
}
@media screen and (min-width: 768px) {
  .p-contact__description {
    text-align: center;
    font-size: 1.25rem;
    line-height: 2.25rem;
  }
}

.p-contact__apply {
  display: flex;
  align-items: center;
  gap: 3.125rem;
  font-weight: 500;
  color: #091e4f;
  padding-bottom: 0.625rem;
  border-bottom: 0.0625rem solid #cfcfcf;
  font-size: 1.25rem;
  line-height: 1.875rem;
}

.p-contact__apply span {
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 500;
}

.p-contact__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact__content {
    align-items: center;
    gap: 4.8125rem;
    flex-direction: initial;
  }
}

.p-contact__content.p-contact__content--start {
  align-items: stretch;
}

.p-contact__contents {
  background-color: #eaf8fb;
  border-radius: 0.625rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact__contents {
    margin-top: 3.75rem;
  }
}

.p-contact__head {
  width: 16rem;
  color: #091e4f;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-contact__head {
    font-size: 1rem;
    line-height: 1.7rem;
  }
}

.p-contact__item {
  flex: 1;
}

.p-contact__item-example {
  margin-top: 0.375rem;
  color: gray;
}

.p-contact__required {
  background-color: #01b6e5;
  border-radius: 0.3125rem;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 0.975rem;
  padding-block: 0.3125rem;
  padding-inline: 0.375rem;
  margin-right: 1.5625rem;
}

.p-contact__content {
  margin: 2.1875rem 0;
}

.p-contact__policy {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact__policy {
    margin-top: 1.875rem;
  }
}

.p-contact__btn {
  margin-top: 0.9375rem;
}

.p-contact__policy-link {
  color: #091e4f;
  transition: all 0.3s;
  border-bottom: 0.0625rem solid #003197;
  font-weight: 500;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-contact__policy-link {
    font-size: 1rem;
  }
}

.p-contact__btn-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-contact__btn-wrap {
    flex-direction: row;
    gap: 2.5rem;
  }
}

.p-contact__btn {
  display: inline-block;
  text-align: center;
}

.p-contact__item-text,
.p-contact__item-tel,
.p-contact__item-email,
.p-contact__item-textarea {
  margin: 0;
  padding-block: 0.625rem;
  padding-inline: 1.5625rem;
  outline: none;
  line-height: 1.5rem;
  background: none;
  background-color: #fff;
  border: none;
  border-radius: 0.625rem;
  font-size: 1rem;
  color: inherit;
  font-family: inherit;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.p-contact__item-text:focus,
.p-contact__item-tel:focus,
.p-contact__item-email:focus,
.p-contact__item-textarea:focus,
.p-contact__item-select:focus {
  border: 1px solid rgba(0, 0, 0, 0.7);
  box-shadow: none;
  outline: none;
}

.p-contact__item-textarea {
  height: 6.875rem;
  resize: none;
  overflow: auto;
}

.p-contact__textarea-message {
  color: #091e4f;
  line-height: 1.3rem;
  font-weight: 400;
  margin-top: 0.625rem;
}

.p-contact__item-message {
  white-space: pre-wrap;
}

.p-contact__item-radio input[type=radio],
.p-contact__item-checkbox input[type=checkbox] {
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.p-contact__item-radio input[type=radio] + span,
.p-contact__item-checkbox input[type=checkbox] + span {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding: 0rem 0rem 0rem 1.875rem;
  color: #091e4f;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 1.25rem;
  line-height: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact__item-radio input[type=radio] + span,
  .p-contact__item-checkbox input[type=checkbox] + span {
    margin-top: 0rem;
  }
}

.p-contact__item-radio input[type=radio]:focus + span,
.p-contact__item-checkbox input[type=checkbox]:focus + span {
  opacity: 0.7;
}

.p-contact__item-radio input[type=radio] + span::before,
.p-contact__item-checkbox input[type=checkbox] + span::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 0.3125rem;
  content: "";
  background: white;
}
@media screen and (min-width: 768px) {
  .p-contact__item-radio input[type=radio] + span::before,
  .p-contact__item-checkbox input[type=checkbox] + span::before {
    top: 50%;
    transform: translateY(-50%);
  }
}

.p-contact__item-checkbox input[type=checkbox]:checked + span::before {
  background: #008dd5;
}

.p-contact__item-checkbox input[type=checkbox] + span::after {
  border-bottom: 2px solid white;
  border-left: 2px solid white;
  content: "";
  display: block;
  height: 0.3em;
  left: 0.2em;
  margin-top: 0.2em;
  opacity: 0;
  position: absolute;
  top: 10%;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.3s ease 0s;
  width: 0.6em;
}
@media screen and (min-width: 768px) {
  .p-contact__item-checkbox input[type=checkbox] + span::after {
    margin-top: -0.1em;
    top: 50%;
  }
}

.p-contact__item-checkbox input[type=checkbox]:checked + span::after,
.p-contact__item-radio input[type=radio]:checked + span::after {
  opacity: 1;
}

.p-contact__btn {
  position: relative;
  display: inline-block;
}
.p-contact__btn::after {
  content: "";
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  right: 30%;
  width: 1.5625rem;
  height: 0.9375rem;
  background-image: url(./../images/common/white-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  transition: 0.3s;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-contact__btn::after {
    width: 1.875rem;
    right: 2.8125rem;
  }
}

/* button */
.p-contact__btn input[type=submit],
.p-contact__btn input[type=button] {
  margin: 0;
  padding-block: 1.5625rem;
  align-items: center;
  justify-content: center;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  background-color: #5c9fd9;
  color: #fff;
  -moz-appearance: button;
       appearance: button;
  border-radius: 0.625rem;
  cursor: pointer;
  font-size: 1rem;
  line-height: normal;
  font-weight: 700;
  border: none;
  transition: all 0.3s;
  position: relative;
  text-align: center;
  background-image: url(./../images/common/white-dot.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 96.5%;
}
@media screen and (min-width: 768px) {
  .p-contact__btn input[type=submit],
  .p-contact__btn input[type=button] {
    padding-block: 1.5625rem;
  }
}

.p-contact__btn.p-contact__btn--thanks {
  margin-top: 2.5rem;
  margin-inline: auto;
  padding-block: 1.25rem;
  align-items: center;
  background-color: #008dd5;
  color: #fff;
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
  border: 0.0625rem solid #116a66;
  border-radius: 3.75rem;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1.875rem;
  font-weight: 500;
  border: none;
  transition: all 0.3s;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-contact__btn.p-contact__btn--thanks {
    margin-top: 4.375rem;
    max-width: 18.75rem;
  }
}

.p-contact__btn input[type=submit]:hover,
.p-contact__btn input[type=button]:hover,
.p-contact__btn input[type=submit]:focus,
.p-contact__btn input[type=button]:focus {
  outline: none;
  opacity: 0.7;
}

.p-contact__item,
.p-contact__btn-submit {
  min-width: 12.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact__item,
  .p-contact__btn-submit {
    min-width: 15.625rem;
  }
}

.wpcf7-spinner {
  position: absolute;
}

.p-contact__name-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-contact__name-wrapper {
    gap: 5.625rem;
    display: flex;
    flex-direction: initial;
  }
}

.p-contact__name-field {
  position: relative;
  flex: 1;
}
.p-contact__name-field .p-contact__item-text {
  width: 100%;
}

.p-contact__name-label {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-contact__name-label {
    display: block;
    position: absolute;
    top: 50%;
    left: -20%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #091e4f;
    font-weight: 700;
  }
}

.p-contact__preferred-datetime {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-contact__preferred-datetime {
    gap: 0.9375rem;
  }
}

.p-contact__preferred-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.625rem;
  position: relative;
  width: 100%;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-contact__preferred-row {
    margin-top: 0rem;
    flex-direction: initial;
  }
}

.p-contact__preferred-label {
  content: "";
  position: absolute;
  top: -40%;
  left: 0;
  font-weight: 700;
  color: #091e4f;
  font-size: 1rem;
  line-height: 1.7rem;
}
@media screen and (min-width: 768px) {
  .p-contact__preferred-label {
    top: 50%;
    transform: translateY(-50%);
    left: -15%;
  }
}

.p-contact__preferred-input {
  flex: 1;
  position: relative;
  width: 100%;
}

.p-contact__preferred-input::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-image: url(./../images/common/contact-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.p-contact__calendar-btn {
  position: absolute;
  right: 0.625rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
}

.p-contact__preferred-time {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-contact__preferred-time {
    min-width: 16.875rem;
  }
}

.datepicker {
  cursor: pointer;
  background-color: #fff;
  width: 100%;
  padding-inline: 3.75rem;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .datepicker {
    min-width: 16.875rem;
  }
}

.p-contact__item-text.datepicker::-moz-placeholder {
  color: #091e4f;
  opacity: 1;
}

.p-contact__item-text.datepicker::placeholder {
  color: #091e4f;
  opacity: 1;
}

.p-counselor {
  background-color: #eaf8fb;
  padding-top: 5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-counselor {
    padding-top: 11.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-counselor__inner::before {
    content: "";
    position: absolute;
    background-image: url(./../images/common/counselor-green.webp);
    top: 0;
    left: 0;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    width: 10.5625rem;
    height: 3.8125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-counselor__inner::after {
    content: "";
    position: absolute;
    background-image: url(./../images/common/counselor-green.webp);
    bottom: 25%;
    right: -10%;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    width: 10.5625rem;
    height: 3.8125rem;
  }
}

.p-counselor__inner {
  margin: auto;
  padding: 0 2.1875rem;
  max-width: 37.5rem;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-counselor__inner {
    padding-inline: 1.5625rem;
    max-width: 59.375rem;
  }
}

.p-counselor__wrap {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-counselor__wrap {
    margin-top: 1.875rem;
  }
}

.p-counselor__flex {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-counselor__flex {
    flex-direction: initial;
    gap: 4.0625rem;
    padding-inline: 6.25rem;
  }
}

.p-counselor__img {
  margin-inline: auto;
  width: 6.25rem;
  aspect-ratio: 100/117;
}
@media screen and (min-width: 768px) {
  .p-counselor__img {
    aspect-ratio: 143/168;
    width: 20%;
  }
}

.p-counselor__img img {
  border-radius: 0.625rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-counselor__img img {
    height: auto;
  }
}

@media screen and (min-width: 768px) {
  .p-counselor__text-wrap {
    flex: 1;
  }
}

.p-counselor__name {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: normal;
  color: #003197;
}
@media screen and (min-width: 768px) {
  .p-counselor__name {
    text-align: left;
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
}

.p-counselor__text {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  line-height: 1.275rem;
  font-weight: 400;
  color: #091e4f;
}
@media screen and (min-width: 768px) {
  .p-counselor__text {
    margin-top: 0.9375rem;
  }
}

.p-counselor__profile {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-counselor__profile {
    margin-top: 1.875rem;
  }
}

.p-counselor__profile-list {
  color: #091e4f;
}

.p-counselor__profile-title {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.275rem;
}
@media screen and (min-width: 768px) {
  .p-counselor__profile-title {
    font-size: 1rem;
    line-height: 1.7rem;
  }
}

.p-counselor__profile-text {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.275rem;
}
@media screen and (min-width: 768px) {
  .p-counselor__profile-text {
    font-size: 1rem;
    line-height: 1.7rem;
  }
}

.p-counselor__guidance {
  color: #091e4f;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-counselor__guidance {
    margin-top: 3.3125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-counselor__guidance-flex {
    display: flex;
    align-items: end;
    justify-content: space-between;
  }
}

.p-counselor__guidance-date {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.275rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-counselor__guidance-date {
    font-size: 1rem;
    line-height: 1.7rem;
  }
}

.p-counselor__guidance-text {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.275rem;
  margin-top: 1.25rem;
  padding-inline: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-counselor__guidance-text {
    margin-top: 0.625rem;
    font-size: 1rem;
    line-height: 1.7rem;
    padding-inline: 0rem;
  }
}

.p-counselor__btn {
  text-align: center;
  margin-top: 1.25rem;
}

.p-flow {
  background-color: #eaf8fb;
  padding-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-flow {
    padding-top: 5.3125rem;
  }
}

.p-flow__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-flow__inner {
    padding-inline: 1.5625rem;
    max-width: 65.625rem;
  }
}

.p-flow__list {
  margin-top: 2.5rem;
}

.p-flow-list {
  counter-reset: number;
}

.p-flow-list__item {
  position: relative;
}

.p-flow-list__item:last-child::after {
  display: none;
}

.p-flow-list__item::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  bottom: -15%;
  width: 3rem;
  height: 1.5525625rem;
  background-image: url(./../images/common/triangle.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-flow-list__item::after {
    bottom: -23%;
  }
}

.p-flow-list__item + .p-flow-list__item {
  margin-top: 5.625rem;
}

.p-flow-list__item-title {
  color: #091e4f;
  font-size: 0.875rem;
  line-height: 1.8rem;
  font-weight: 700;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-flow-list__item-title {
    font-size: 1.5rem;
  }
}

.p-flow-list__item-white {
  background-color: #fff;
  padding: 1.25rem 1.25rem 1.25rem 1.125rem;
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-flow-list__item-white {
    padding: 2.5rem 2.5rem 2.5rem 2.1875rem;
    flex-direction: initial;
  }
}

.p-flow-list__item-img {
  width: 100%;
  width: 6.25rem;
  margin-inline: auto;
  aspect-ratio: 50/50;
}
@media screen and (min-width: 768px) {
  .p-flow-list__item-img {
    aspect-ratio: 100/100;
    width: 10%;
  }
}

.p-flow-list__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-flow-list__item-text {
  width: 100%;
  font-size: 0.875rem;
  color: #091e4f;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-flow-list__item-text {
    width: 90%;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7rem;
  }
}

.p-footer {
  padding: 5rem 0rem 0rem 0rem;
  background-color: #eaf8fb;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding: 12.1875rem 0rem 0rem 0rem;
  }
}

@media screen and (min-width: 768px) {
  .p-footer::before {
    content: "";
    position: absolute;
    top: 25%;
    left: 3%;
    background-image: url(./../images/common/contact-bg-left.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 27.3125rem;
    height: 16.8125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-footer::after {
    content: "";
    position: absolute;
    top: 25%;
    right: 3%;
    background-image: url(./../images/common/contact-bg-right.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 27.3125rem;
    height: 16.8125rem;
  }
}

.p-footer__inner {
  margin: auto;
}
.p-footer__text {
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.275rem;
  font-weight: 700;
  color: #003197;
}
@media screen and (min-width: 768px) {
  .p-footer__text {
    font-size: 1.25rem;
    line-height: normal;
  }
}

.p-footer__btn {
  text-align: center;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-footer__btn {
    margin-top: 2.5rem;
  }
}

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

.p-footer__logo {
  margin-inline: auto;
  max-width: 14.375rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-footer__logo {
    max-width: 21.875rem;
  }
}

.p-footer__logo a {
  padding: 0.625rem 0;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-footer__logo a {
    padding: 0.9375rem 0;
  }
}

.p-footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer__address {
  margin-top: 0.625rem;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.9rem;
  color: #091e4f;
}
@media screen and (min-width: 768px) {
  .p-footer__address {
    margin-top: 0.625rem;
    font-size: 0.875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__address span {
    display: block;
    margin-top: 1rem;
  }
}

.p-footer__copyright {
  padding-block: 0.5rem;
  margin-top: 1.25rem;
  display: block;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 0.9rem;
  text-align: center;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright {
    padding-block: 1.125rem;
    font-size: 1rem;
    line-height: 1.2rem;
    margin-top: 1.625rem;
  }
}

.p-footer__copyright span {
  color: #091e4f;
}

.p-guidance {
  background-color: #eaf8fb;
  padding-top: 5rem;
  position: relative;
  border-top-left-radius: 45%;
  border-top-right-radius: 45%;
  margin-left: -6.25rem;
  margin-right: -6.25rem;
  padding-left: 6.25rem;
  padding-right: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-guidance {
    border-top-left-radius: 45%;
    border-top-right-radius: 45%;
    margin-left: -6.25rem;
    margin-right: -6.25rem;
    padding-left: 6.25rem;
    padding-right: 6.25rem;
    padding-top: 11.25rem;
  }
}

.p-guidance__wrap {
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .p-guidance::before {
    content: "";
    position: absolute;
    background-image: url(./../images/common/flower-left.webp);
    bottom: 0;
    left: 10%;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    width: 5.75rem;
    height: 16.375rem;
  }
}
@media screen and (min-width: 1000px) {
  .p-guidance::before {
    left: 10%;
  }
}
@media screen and (min-width: 1200px) {
  .p-guidance::before {
    left: 15%;
  }
}

@media screen and (min-width: 768px) {
  .p-guidance::after {
    content: "";
    position: absolute;
    background-image: url(./../images/common/flower-right.webp);
    bottom: 0;
    right: 10%;
    width: 7.625rem;
    height: 18.1875rem;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
@media screen and (min-width: 1000px) {
  .p-guidance::after {
    right: 10%;
  }
}
@media screen and (min-width: 1200px) {
  .p-guidance::after {
    right: 15%;
  }
}

.p-guidance__inner {
  margin: auto;
  padding: 0 2.8125rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-guidance__inner {
    padding-inline: 1.5625rem;
    max-width: 59.375rem;
  }
}

.p-guidance__items {
  display: grid;
  gap: 1.3125rem;
  margin-top: 1.25rem;
  grid-template-columns: repeat(1, 14.375rem);
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-guidance__items {
    grid-template-columns: repeat(3, 17.5rem);
    margin-top: 2.5rem;
    gap: 1.875rem;
  }
}

.p-guidance__item {
  display: inline-block;
  position: relative;
  border-radius: 0.625rem;
  color: #fff;
  background-color: #5c9fd9;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  justify-content: center;
  padding-block: 1.3125rem;
  background-image: url(./../images/common/guidance-dot.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 95%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-guidance__item {
    gap: 0.875rem;
    background-size: 94%;
    padding-bottom: 1.5rem;
    padding-top: 1.75rem;
    justify-content: initial;
    background-image: url(./../images/common/guidance-pc.svg);
  }
}

.p-guidance__item.p-guidance__item--second {
  gap: 0.875rem;
  padding-block: 1.875rem;
}

.p-guidance__img {
  width: 2.375rem;
  margin-inline: auto;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  .p-guidance__img {
    width: 3.125rem;
  }
}

.p-guidance__img.p-guidance__img--second {
  width: 2.75rem;
}
@media screen and (min-width: 768px) {
  .p-guidance__img.p-guidance__img--second {
    width: 4.125rem;
  }
}

.p-guidance__img.p-guidance__img--third {
  width: 2.75rem;
}
@media screen and (min-width: 768px) {
  .p-guidance__img.p-guidance__img--third {
    width: 3.75rem;
  }
}

.p-guidance__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-guidance__text {
  font-size: 0.75rem;
  line-height: normal;
  font-weight: 700;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-guidance__text {
    font-size: 1.25rem;
    line-height: 1.375rem;
  }
}

.p-guidance__text::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.875rem;
  width: 1.5625rem;
  height: 0.9375rem;
  display: inline-block;
  background-image: url(./../images/common/white-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-guidance__text::after {
    width: 1.875rem;
    right: 1.5625rem;
    top: 80%;
  }
}

.p-guidance__text.p-guidance__text--star::after {
  top: 50%;
}
@media screen and (min-width: 768px) {
  .p-guidance__text.p-guidance__text--star::after {
    top: 120%;
  }
}

.p-header {
  height: 3.125rem;
  background-color: transparent;
}
@media screen and (min-width: 768px) {
  .p-header {
    height: 6.25rem;
  }
}

.p-header__inner {
  padding-inline: 0.625rem;
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    align-items: initial;
    padding-inline: 2.5rem;
  }
}

.p-header__logo {
  max-width: 10.9375rem;
  width: 100%;
  height: inherit;
  position: relative;
  z-index: 901;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    max-width: 18.75rem;
  }
}

.p-header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

.p-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-header__nav {
  display: none;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .p-header__nav {
    display: block;
  }
}

.p-header__nav-list {
  display: flex;
  height: inherit;
}

.p-header__nav-item {
  height: inherit;
}

.p-header__nav-item.p-header__nav-item--contact {
  margin-left: 0.9375rem;
  display: flex;
  align-items: center;
}

.p-header__nav-item a {
  padding: 0 1.875rem;
  height: inherit;
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7rem;
  color: #fff;
}

.p-header__nav-item.p-header__nav-item--contact a {
  padding: 0.75rem 2.1875rem;
  position: relative;
  height: initial;
  color: #fff;
  background-color: #008dd5;
  border-radius: 0.625rem;
}

.p-header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 2.125rem;
  height: 2.125rem;
  background-color: #e9f8fb;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-header__hamburger {
    display: none;
  }
}

.p-header__hamburger.is-open {
  background-color: transparent;
}

.p-header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 1rem;
  height: 2px;
  border-radius: 0.3125rem;
  background-color: #091e4f;
  transition: 0.5s;
}

.p-header__hamburger span:nth-of-type(1) {
  top: -0.25rem;
}

.p-header__hamburger span:nth-of-type(2) {
  top: 0;
}

.p-header__hamburger span:nth-of-type(3) {
  top: 0.25rem;
}

.p-header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.p-header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.p-header__hamburger.is-open span:nth-of-type(3) {
  top: -0.25rem;
  transform: translateX(-50%) rotate(-45deg);
}

.p-header__drawer {
  padding: 5rem 0;
  display: none;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #eaf8fb;
  overflow-y: scroll;
  scrollbar-width: none;
}

.p-header__drawer::-webkit-scrollbar {
  display: none;
}

.p-header__drawer-item a {
  padding: 1.5625rem 0;
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: normal;
  color: #091e4f;
  text-align: center;
  position: relative;
}

.p-header__drawer-item a::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background-image: url(./../images/common/dot.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.p-header__drawer-item--contact {
  text-align: center;
  margin-top: 1.5625rem;
}

.p-header__drawer-item--contact a {
  display: inline-block;
  padding: 0.75rem 2.1875rem;
  height: initial;
  color: #fff;
  font-weight: 700;
  background-color: #008dd5;
  border-radius: 0.625rem;
}

body:not(.home) .p-header {
  background-color: #eaf8fb;
}
body:not(.home) .p-header__nav-item a {
  color: #091e4f;
}
body:not(.home) .p-header__nav-item.p-header__nav-item--contact a {
  color: #fff;
}

.p-mv {
  position: relative;
  height: 100vh;
  min-height: 25rem;
}

.p-mv__inner {
  height: inherit;
  min-height: inherit;
}

.p-mv__title-wrap {
  position: absolute;
  z-index: 2;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: #fff;
  text-align: center;
}

.p-mv__text-img {
  display: inline-block;
}

.p-mv__sub-title {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  line-height: 1.1375rem;
  text-align: center;
  font-weight: 400;
  color: #003197;
}
@media screen and (min-width: 768px) {
  .p-mv__sub-title {
    margin-top: 2.5rem;
    font-size: 1.375rem;
    line-height: 1.925rem;
  }
}

.p-mv__text-wrap {
  position: absolute;
  z-index: 2;
  top: 79%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: #fff;
  padding-inline: 1.25rem;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-mv__text-wrap {
    top: 85%;
    justify-content: space-between;
    padding-inline: 9.375rem;
    flex-direction: initial;
  }
}

.p-mv__text {
  font-size: 0.75rem;
  line-height: 1.5rem;
  color: #003197;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-mv__text {
    font-size: 1.125rem;
    line-height: 2.8125rem;
  }
}

.p-mv__contact {
  margin-left: auto;
}

.p-mv__img,
.p-mv__img {
  height: inherit;
  min-height: inherit;
}

.p-mv__img picture {
  display: block;
  height: inherit;
  min-height: inherit;
}

.p-mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-open {
  background-color: #eaf8fb;
  padding-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-open {
    padding-top: 6.25rem;
  }
}

.p-open__inner {
  margin: auto;
  padding: 0 2.8125rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-open__inner {
    padding-inline: 1.5625rem;
    max-width: 56.25rem;
  }
}

.p-open__flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.1875rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-open__flex {
    gap: 4.375rem;
    margin-top: 2.5rem;
    flex-direction: initial;
  }
}

.p-open__img {
  aspect-ratio: 428/267;
}

.p-open__img img {
  border-radius: 0.625rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-open__date {
  color: #091e4f;
  font-weight: 700;
  line-height: 1.7rem;
  font-size: 1rem;
}

.p-open__text {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7rem;
  color: #091e4f;
}
@media screen and (min-width: 768px) {
  .p-open__text {
    font-size: 1rem;
  }
}

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

.p-price {
  background-color: #eaf8fb;
  padding-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-price {
    padding-top: 6.25rem;
  }
}

.p-price__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-price__inner {
    padding-inline: 1.5625rem;
    max-width: 50rem;
  }
}

.p-price__white {
  background-color: #fff;
  margin-top: 2.5rem;
  border-radius: 0.625rem;
  padding-block: 0.875rem;
  padding-inline: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-price__white {
    gap: 3.5rem;
    padding-inline: 7.71875rem;
    padding-block: 1.75rem;
  }
}

.p-price__white::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 0.125rem;
  background-image: url(./../images/common/price-dot02.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.p-price__list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-price__list {
    flex-direction: initial;
  }
}

@media screen and (min-width: 768px) {
  .p-price__list::after {
    content: "";
    width: 0.125rem;
    height: 2.8125rem;
    background-image: url(./../images/common/price-dot01.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: -25%;
    left: 50%;
    transform: translateX(-50%);
  }
}

.p-price__list-title {
  color: #091e4f;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .p-price__list-title {
    font-size: 1.25rem;
  }
}

.p-price__list-text {
  color: #091e4f;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: normal;
}

.p-price__text-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.3rem;
  font-weight: 400;
  color: #091e4f;
}

.p-privacy-policy {
  background-color: #eaf8fb;
  padding-top: 5.3125rem;
  color: #091e4f;
}

.p-privacy-policy__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-privacy-policy__inner {
    padding: 0 1.5625rem;
    max-width: 65.625rem;
  }
}

.p-privacy-policy__introduction {
  font-size: 1rem;
  line-height: 1.7rem;
}

.p-privacy-policy__items {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-privacy-policy__items {
    margin-top: 3.125rem;
  }
}

.p-privacy-policy__item + .p-privacy-policy__item {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-privacy-policy__item + .p-privacy-policy__item {
    margin-top: 3.125rem;
  }
}

.p-privacy-policy__term {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-privacy-policy__term {
    font-size: 1.25rem;
  }
}

.p-privacy-policy__description {
  margin-top: 0.9375rem;
  font-size: 1rem;
  line-height: 1.7rem;
  font-weight: 400;
}

.p-privacy-policy__description-numbers {
  counter-reset: number;
}

.p-privacy-policy__description-text + .p-privacy-policy__description-numbers,
.p-privacy-policy__description-text + .p-privacy-policy__description-items {
  margin-top: 0.3125rem;
}

.p-privacy-policy__description-number {
  padding-left: 0.9375rem;
  text-indent: -0.9375rem;
}

.p-privacy-policy__en {
  padding-left: 1.875rem;
}

.p-privacy-policy__en-number {
  padding-left: 1.875rem;
}

.p-privacy-policy__description-number + .p-privacy-policy__description-number,
.p-privacy-policy__description-item + .p-privacy-policy__description-item {
  margin-top: 0.3125rem;
}

.p-privacy-policy__description-number::before {
  content: counter(number) ". ";
  counter-increment: number;
}

.p-privacy-policy__description-items {
  padding-left: 1.25rem;
  list-style: disc;
}

.p-privacy-policy__end {
  text-align: right;
  margin-top: 3.125rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7rem;
}

.p-psychology {
  background-color: #cfe8ed;
  padding-top: 11.25rem;
  padding-bottom: 12.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-psychology {
    padding-top: 11.25rem;
  }
}

.p-psychology::before {
  content: "";
  position: absolute;
  background-image: url(./../images/common/left-leaf.webp);
  top: 4%;
  left: 2%;
  width: 10.3125rem;
  height: 6.75rem;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .p-psychology::before {
    width: 26.1875rem;
    height: 17.125rem;
    left: 5%;
    top: 10%;
  }
}

.p-psychology::after {
  content: "";
  position: absolute;
  background-image: url(./../images/common/right-leaf.webp);
  bottom: 3%;
  right: 3%;
  width: 10.3125rem;
  height: 7.8125rem;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .p-psychology::after {
    width: 23.75rem;
    height: 14.25rem;
    bottom: 5%;
    right: 3%;
  }
}

.p-psychology__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-psychology__inner {
    padding-inline: 1.5625rem;
    max-width: 62.5rem;
  }
}

.p-psychology__text {
  padding-inline: 0.875rem;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.275rem;
  color: #091e4f;
  text-align: center;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-psychology__text {
    font-size: 1rem;
    line-height: 2rem;
  }
}

.p-psychology__wrap {
  padding: 1.5625rem;
  margin-top: 3.125rem;
  background-color: #e9f8fb;
  border-radius: 0.625rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-psychology__wrap {
    padding: 3.125rem;
  }
}

.p-psychology__item {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  position: relative;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-psychology__item {
    gap: 0rem;
    flex-direction: initial;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}

.p-psychology__item::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background-image: url(./../images/common/dot.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .p-psychology__item::after {
    background-image: url(./../images/common/dot-pc.svg);
  }
}

.p-psychology__item-title {
  font-size: 1.125rem;
  color: #091e4f;
  font-weight: 700;
  line-height: perm(21.6);
  display: flex;
  justify-content: center;
  gap: 0.4375rem;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-psychology__item-title {
    gap: 1.875rem;
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
}

.p-psychology__item-img {
  aspect-ratio: 360/360;
}

.p-psychology__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-psychology__item-text {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.275rem;
  color: #091e4f;
}
@media screen and (min-width: 768px) {
  .p-psychology__item-text {
    font-size: 1rem;
    line-height: 1.7rem;
    width: 60%;
  }
}

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

.p-room {
  background-color: #eaf8fb;
  padding-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-room {
    padding-top: 6.25rem;
  }
}

.p-room__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-room__inner {
    padding-inline: 1.5625rem;
    max-width: 65.625rem;
  }
}

.p-room__items {
  display: grid;
  gap: 1.875rem;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-room__items {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-room__img {
  aspect-ratio: 300/230;
}

.p-room__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sub-counseling {
  background-color: #eaf8fb;
  padding-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-sub-counseling {
    padding-top: 5.3125rem;
  }
}

.p-sub-counseling__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-sub-counseling__inner {
    padding-inline: 1.5625rem;
    max-width: 63.125rem;
  }
}

.p-sub-counseling__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2rem;
  text-align: center;
  color: #091e4f;
  margin-top: 1.25rem;
}

.p-sub-counseling__wrap {
  margin-top: 5rem;
}

.p-sub-counseling__flex {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-sub-counseling__flex {
    gap: 4.375rem;
    flex-direction: initial;
  }
}

.p-sub-counseling__flex + .p-sub-counseling__flex {
  margin-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-sub-counseling__flex + .p-sub-counseling__flex {
    margin-top: 5.625rem;
  }
}

.p-sub-counseling__left {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-sub-counseling__left {
    width: 36%;
  }
}

.p-sub-counseling__left-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #091e4f;
  line-height: 1.8rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-sub-counseling__left-title {
    text-align: initial;
    font-size: 1.5rem;
  }
}

.p-sub-counseling__img {
  aspect-ratio: 283/215;
  margin-top: 1.25rem;
}

.p-sub-counseling__img.p-sub-counseling__img--tree {
  width: 8rem;
  aspect-ratio: 128/188;
  margin-inline: auto;
  margin-top: 4.15625rem;
}

.p-sub-counseling__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sub-counseling__right {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-sub-counseling__right {
    width: 64%;
  }
}

.p-sub-counseling__right-text {
  font-size: 1rem;
  color: #091e4f;
  line-height: 1.7rem;
  font-weight: 400;
}

.p-sub-counseling__white {
  background-color: #fff;
  border-radius: 0.625rem;
  padding-block: 1.25rem;
  padding-inline: 1.5625rem;
  margin-top: 1.5rem;
}

.p-sub-counseling__white.p-sub-counseling__white--margin {
  margin-top: 4rem;
}

.p-sub-counseling__lists {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 768px) {
  .p-sub-counseling__lists {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.3125rem;
  }
}

.p-sub-counseling__lists + .p-sub-counseling__lists {
  margin-top: 0.625rem;
}

.p-sub-counseling__list {
  padding-left: 1.3125rem;
  position: relative;
  font-size: 1rem;
  color: #091e4f;
  line-height: 1.7rem;
  font-weight: 400;
  display: flex;
  align-items: flex-start;
}

.p-sub-counseling__list::before {
  content: "";
  position: absolute;
  top: 0.625rem;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #008dd5;
}

.p-sub-mv {
  position: relative;
  height: 26.25rem;
}
@media screen and (min-width: 768px) {
  .p-sub-mv {
    height: 17.5rem;
  }
}

.p-sub-mv__title {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  font-size: 1.25rem;
  line-height: 1;
  color: #fff;
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-sub-mv__title {
    top: 70%;
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
}

.p-sub-mv__img {
  height: inherit;
}

.p-sub-mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sub-mv__breadcrumb {
  content: "";
  position: absolute;
  bottom: 0.3125rem;
  left: 5%;
}

.p-sub-psychology {
  background-color: #eaf8fb;
  padding-top: 6.25rem;
}

.p-sub-psychology__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-sub-psychology__inner {
    padding-inline: 1.5625rem;
    max-width: 65.625rem;
  }
}

.p-sub-psychology__text {
  text-align: left;
  font-size: 1rem;
  color: #091e4f;
  font-weight: 400;
  line-height: 2rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-sub-psychology__text {
    text-align: center;
  }
}

.p-sub-psychology__wrap {
  background-color: #fff;
  border-radius: 0.625rem;
  padding-block: 1.25rem;
  padding-inline: 1.5625rem;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-sub-psychology__wrap {
    padding-inline: 3.125rem;
    padding-block: 2.5rem;
  }
}

.p-sub-psychology__item {
  position: relative;
  padding-bottom: 2.5rem;
  width: 100%;
}

.p-sub-psychology__item:last-child {
  padding-bottom: 0rem;
}

.p-sub-psychology__item-wrap {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-sub-psychology__item-wrap {
    width: 65%;
  }
}

.p-sub-psychology__item-img {
  aspect-ratio: 285/212;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-sub-psychology__item-img {
    width: 35%;
  }
}

.p-sub-psychology__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sub-psychology__item.p-sub-psychology__item--flex {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-sub-psychology__item.p-sub-psychology__item--flex {
    flex-direction: initial;
  }
}

.p-sub-psychology__item + .p-sub-psychology__item {
  margin-top: 2.5rem;
}

.p-sub-psychology__item::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background-image: url(./../images/common/dot.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-sub-psychology__item::after {
    background-image: url(./../images/common/dot-pc.svg);
  }
}

.p-sub-psychology__item:last-child::after {
  background-image: none;
}

.p-sub-psychology__item-title {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 1.125rem;
  color: #003197;
  font-weight: 700;
  line-height: 1.8rem;
}
@media screen and (min-width: 768px) {
  .p-sub-psychology__item-title {
    font-size: 1.5rem;
  }
}

.p-sub-psychology__img {
  aspect-ratio: 70/60;
}

.p-sub-psychology__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sub-psychology__item-text {
  font-size: 1rem;
  color: #091e4f;
  font-weight: 400;
  line-height: 1.7rem;
  margin-top: 0.9375rem;
}

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

.u-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-sp {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */
