@charset "UTF-8";

body {
  overflow-x: hidden;
  /* 横スクロールを無効化 */
}

html {
  font-size: 2.1333333333vw;
}

@media screen and (min-width: 768px) {
  html {
    font-size: 1.5384615385vw;
  }
}

@media (min-width: 1040px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
}

@media screen and (min-width: 768px) {

  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }

  a:hover,
  button:hover {
    opacity: 0.3;
    cursor: pointer;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  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;
  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]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* 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;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.l-inner {
  width: 100%;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1040px;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

/* ぼかしから出現 */
.blur {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
  filter: blur(10px);
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.blur.displayed {
  -webkit-animation-name: blurAnime;
  animation-name: blurAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes blurAnime {
  from {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
    -webkit-filter: blur(10px);
    filter: blur(10px);
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
  }

  to {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes blurAnime {
  from {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
    -webkit-filter: blur(10px);
    filter: blur(10px);
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
  }

  to {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* 左へ */
.flipLeft {
  opacity: 0;
}

.flipLeft.displayed {
  -webkit-animation-name: flipLeftAnime;
  animation-name: flipLeftAnime;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-perspective-origin: left center;
  perspective-origin: left center;
  opacity: 1;
}

@-webkit-keyframes flipLeftAnime {
  from {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(80deg);
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(80deg);
    opacity: 0;
  }

  to {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipLeftAnime {
  from {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(80deg);
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(80deg);
    opacity: 0;
  }

  to {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}

.flipRightTop {
  opacity: 0;
}

.flipRightTop.displayed {
  -webkit-animation-name: flipRightTopAnime;
  animation-name: flipRightTopAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 1;
}

@-webkit-keyframes flipRightTopAnime {
  0% {
    -webkit-transform: translate(-1.25rem, 5rem);
    transform: translate(-1.25rem, 5rem);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate(0, 1) rotate(0deg);
    transform: translate(0, 1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes flipRightTopAnime {
  0% {
    -webkit-transform: translate(-1.25rem, 5rem);
    transform: translate(-1.25rem, 5rem);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate(0, 1) rotate(0deg);
    transform: translate(0, 1) rotate(0deg);
    opacity: 1;
  }
}

/* 拡大 */
.zoomIn {
  -webkit-transform: scale(0.6);
  transform: scale(0.6);
}

.zoomIn.displayed {
  -webkit-animation-name: zoomInAnime;
  animation-name: zoomInAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-transform: scale(1);
  transform: scale(1);
}

@-webkit-keyframes zoomInAnime {
  from {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoomInAnime {
  from {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.c-btn-cv {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: bold;
  letter-spacing: 0.028em;
  border-radius: 0.9375rem;
  
  border: 0.1875rem solid #11224E;
  color: #11224E;
  background: white;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(32%, rgb(200, 200, 200)), color-stop(71%, rgb(255, 255, 255)), to(rgb(200, 200, 200)));
  background: linear-gradient(0deg, rgb(200, 200, 200) 32%, rgb(255, 255, 255) 71%, rgb(200, 200, 200) 100%);

  padding: 1.75rem 2rem 2rem 2.75rem;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  /* スムーズな変化を追加 */
}

@media screen and (min-width: 768px) {
  .c-btn-cv {
    height: 4.75rem;
    font-size: 1.375rem;
    padding: 0.4375rem 2.5rem 0.625rem 3.375rem;
  }
}

.c-btn-cv:hover {
  color: white;
  border: 0.1875rem solid white;
  background: linear-gradient(0deg, #11224E 30%, #677285 70%, #11224E 100%);
  background: -webkit-gradient(linear, left bottom, left top,
      color-stop(30%, #11224E),
      color-stop(70%, #677285),
      to(#11224E));
  opacity: 1;
}

.c-btn-cv:hover span {
  background-color: white;
}

.c-btn-cv:hover span::after {
  border-left-color: #11224E;
}

.c-btn-cv span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: top;
  margin-top: 0.3125rem;
  margin-left: 0.625rem;
  background-color: #11224E;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  /* スムーズな変化を追加 */
}

@media screen and (min-width: 768px) {
  .c-btn-cv span {
    margin-top: 0.3125rem;
    width: 1.375rem;
    height: 1.375rem;
  }
}

.c-btn-cv span::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.4375rem solid transparent;
  border-bottom: 0.4375rem solid transparent;
  border-left: 0.5625rem solid white;
  border-right: 0;
  top: 53%;
  left: 58%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 768px) {
  .c-btn-cv span::after {
    top: 50%;
    border-left: 0.5625rem solid white;
    border-top: 0.375rem solid transparent;
    border-bottom: 0.375rem solid transparent;
  }
}

.c-btn-reservation01 {
  display: inline-block;
  font-size: 1.75rem;
  font-weight: bold;
  letter-spacing: 0.035em;
  color: white;
  background-color: #F87B1B;
  border-radius: 3.125rem;
  padding-top: 1.0625rem;
  padding-bottom: 1.125rem;
  padding-left: 2.375rem;
  padding-right: 1.875rem;
  border: 0.25rem solid white;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (min-width: 768px) {
  .c-btn-reservation01 {
    width: 14.375rem;
    font-size: 1.25rem;
    padding: 0;
    line-height: 3.125rem;
    text-align: center;
    padding-left: 0.625rem;
  }
}

.c-btn-reservation01:hover {
  color: #F87B1B;
  background-color: color-mix(in srgb, #F87B1B, white 80%);
  border: 0.1875rem solid #F87B1B;
  opacity: 1;
}

.c-btn-reservation01:hover span {
  background-color: #F87B1B;
}

.c-btn-reservation01:hover span::after {
  border-left-color: color-mix(in srgb, #F87B1B, white 80%);
}

.c-btn-reservation01 span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
  margin-bottom: 0.3125rem;
  background-color: white;
  width: 1.9375rem;
  height: 1.9375rem;
  border-radius: 50%;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (min-width: 768px) {
  .c-btn-reservation01 span {
    width: 1.5rem;
    height: 1.5rem;
    padding-bottom: 0.3125rem;
  }
}

.c-btn-reservation01 span::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.5625rem solid transparent;
  border-bottom: 0.5625rem solid transparent;
  border-left: 0.875rem solid #F87B1B;
  border-right: 0;
  top: 0.9375rem;
  left: 1.125rem;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 768px) {
  .c-btn-reservation01 span::after {
    top: 50%;
    left: 58%;
    border-left: 0.5625rem solid #F87B1B;
    border-top: 0.375rem solid transparent;
    border-bottom: 0.375rem solid transparent;
  }
}

.c-btn-reservation02 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2.9333333333vw;
  /* 750px幅で16px相当のフォントサイズを基準に計算 */
  font-size: 1.375rem;
  /* 750px幅で16px相当のフォントサイズを基準に計算 */
  font-weight: bold;
  color: white;
  letter-spacing: 0.01em;
  background-color: #F87B1B;
  border: 0.25rem solid white;
  -webkit-box-shadow: 3px 3px 20px 3px rgba(0, 0, 0, .25);
  box-shadow: 3px 3px 20px 3px rgba(0, 0, 0, .25);
  position: relative;
  padding-top: 6.375rem;
  padding-bottom: 0.9375rem;
  padding-left: 0.75rem;
  padding-right: 0.25rem;
  border-radius: 0.625rem;
  aspect-ratio: 202/164;
  width: 12.625rem;
  height: auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (min-width: 768px) {
  .c-btn-reservation02 {
    aspect-ratio: 205/164;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    border: 0.1875rem solid white;
    width: 12.875rem;
    padding-top: 6.875rem;
    padding-bottom: 1.375rem;
  }
}

.c-btn-reservation02:before {
  position: absolute;
  content: "";
  background-image: url("../images/header/calender.webp");
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 87/84;
  width: 46.7741935484%;
  top: 10%;
  left: 50%;
  -webkit-transform: translateX(-44%);
  transform: translateX(-44%);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

@media screen and (min-width: 768px) {
  .c-btn-reservation02:before {
    width: 5.25rem;
    top: 16%;
  }
}

.c-btn-reservation02 span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 0.1875rem;
  margin-left: 0.125rem;
  -ms-flex-item-align: center;
  align-self: center;
  background-color: white;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (min-width: 768px) {
  .c-btn-reservation02 span {
    width: 1.375rem;
    height: 1.375rem;
    margin-left: 0.3125rem;
    margin-top: 0;
  }
}

.c-btn-reservation02 span::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.4375rem solid transparent;
  border-bottom: 0.4375rem solid transparent;
  border-left: 0.625rem solid #F87B1B;
  border-right: 0;
  top: 50%;
  left: 58%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 768px) {
  .c-btn-reservation02 span::after {
    border-left: 0.5625rem solid #F87B1B;
    border-top: 0.375rem solid transparent;
    border-bottom: 0.375rem solid transparent;
  }
}

.c-btn-reservation02:hover {
  color: #F87B1B;
  background-color: color-mix(in srgb, #F87B1B, white 80%);
  border: 3px solid #F87B1B;
  opacity: 1;
}

.c-btn-reservation02:hover span {
  background-color: #F87B1B;
}

.c-btn-reservation02:hover::before {
  background-image: url("../images/header/calender_orange.webp");
  background-color: color-mix(in srgb, #F87B1B, white 80%);
}

.c-btn-reservation02:hover span::after {
  border-left-color: white;
  border-left-color: color-mix(in srgb, #F87B1B, white 80%);
}

.c-card01 {
  aspect-ratio: 1/1;
  background-color: #11224E;
  width: 12.5rem;
  height: 12.5rem;
  border-radius: 50%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .c-card01 {
    width: 11.625rem;
    height: 11.625rem;
  }
}

.c-card01::before {
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 0.125rem solid white;
  width: 11.875rem;
  width: 11.75rem;
  height: 11.75rem;
  border-radius: 50%;
  position: absolute;
}

@media screen and (min-width: 768px) {
  .c-card01::before {
    width: 94%;
    height: 94%;
  }
}

.c-card01__text {
  font-size: 1.5625rem;
  font-weight: bold;
  letter-spacing: 0.068em;
  line-height: 1.33;
  color: white;
}

@media screen and (min-width: 768px) {
  .c-card01__text {
    font-size: 1.5rem;
  }
}

.c-card01__text--lh {
  line-height: 1.5;
}

.c-card02 {
  margin-top: 1.25rem;
  padding-right: 0.625rem;
  padding-left: 1.875rem;
  padding-top: 2.1875rem;
  padding-bottom: 2.1875rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.9375rem;
  border-radius: 0.9375rem;
  background-color: #ECEFF1;
}

@media screen and (min-width: 768px) {
  .c-card02 {
    margin-top: 0;
    padding-top: 1.5625rem;
    padding-bottom: 1.875rem;
    padding-right: 0.625rem;
    padding-left: 0.625rem;
    width: 23%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.c-card02__image {
  width: 33%;
  height: auto;
  /* アスペクト比を維持 */
  display: block;
  /* インラインスペースを削除 */
  -ms-flex-item-align: center;
  align-self: center;
}

@media screen and (min-width: 768px) {
  .c-card02__image {
    width: 78%;
    padding-left: 0;
  }
}

.c-card02__image img {
  aspect-ratio: 160/118;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  /* デザイン要件に応じて追加 */
}

@media screen and (min-width: 768px) {
  .c-card02__image img {
    aspect-ratio: 170/140;
    margin-inline: auto;
    width: 100%;
    height: auto;
  }
}

.c-card02__text {
  width: 65%;
  font-size: 2.25rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  -ms-flex-item-align: center;
  align-self: center;
  white-space: nowrap;
  word-wrap: break-word;
  /* 長い単語を折り返す */
  word-wrap: break-word;
  /* 長い単語を折り返す（モダンブラウザ向け） */
  white-space: normal;
  /* テキストが折り返されるように */
}

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

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

.c-card03__no1 {
  position: relative;
  width: 29.75rem;
  height: 29.75rem;
  border-radius: 50%;
  background-image: conic-gradient(#3D5A98 0deg 29deg, #ebaf7b 29deg 230deg, #3D5A98 230deg 330deg, #D1E3E3 180deg 360deg);
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .c-card03__no1 {
    width: 20.375rem;
    height: 20.375rem;
  }
}

.c-card03__no1::before {
  content: "年齢";
  position: absolute;
  top: 50%;
  left: 50%;
  bottom: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 14.625rem;
  height: 14.625rem;
  border-radius: 50%;
  background-color: white;
  font-size: 2.3125rem;
  font-weight: bold;
  letter-spacing: 0.075em;
  text-align: center;
  line-height: 14.625rem;
  color: #11224E;
}

@media screen and (min-width: 768px) {
  .c-card03__no1::before {
    width: 10rem;
    height: 10rem;
    line-height: 10rem;
    font-size: 1.625rem;
  }
}

.c-card03__age {
  font-size: 2.375rem;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .c-card03__age {
    font-size: 1.625rem;
  }
}

.c-card03__unit {
  font-size: 3.125rem;
}

@media screen and (min-width: 768px) {
  .c-card03__unit {
    font-size: 2.125rem;
  }
}

.c-card03__text-on-graph1,
.c-card03__text-on-graph2 {
  font-size: 3.625rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.03em;
  color: white;
  text-align: center;
}

@media screen and (min-width: 768px) {

  .c-card03__text-on-graph1,
  .c-card03__text-on-graph2 {
    font-size: 2.5rem;
  }
}

.c-card03__text-on-graph1 {
  position: absolute;
  top: 53%;
  right: 1%;
  text-shadow: 0.1875rem 0.1875rem 0.1875rem #F87B1B, -0.1875rem -0.1875rem 0.1875rem #F87B1B, -0.1875rem 0.1875rem 0.1875rem #F87B1B, 0.1875rem -0.1875rem 0.1875rem #F87B1B, 0.1875rem 0rem 0.1875rem #F87B1B, -0.1875rem 0rem 0.1875rem #F87B1B, 0rem 0.1875rem 0.1875rem #F87B1B, 0rem -0.1875rem 0.1875rem #F87B1B, 0rem 0.1875rem 0.1875rem #F87B1B, 0rem -0.1875rem 0.1875rem #F87B1B, 0.1875rem 0.1875rem 0.1875rem #F87B1B, -0.1875rem -0.1875rem 0.1875rem #F87B1B, -0.1875rem 0.1875rem 0.1875rem #F87B1B, 0.1875rem -0.1875rem 0.1875rem #F87B1B, 0.1875rem 0rem 0.1875rem #F87B1B, -0.1875rem 0rem 0.1875rem #F87B1B, 0rem 0.1875rem 0.1875rem #F87B1B, 0rem -0.1875rem 0.1875rem #F87B1B;
}

.c-card03__text-on-graph2 {
  position: absolute;
  top: 34.5%;
  left: -2%;
  text-shadow: 0.1875rem 0.1875rem 0.1875rem #3D5A98, -0.1875rem -0.1875rem 0.1875rem #3D5A98, -0.1875rem 0.1875rem 0.1875rem #3D5A98, 0.1875rem -0.1875rem 0.1875rem #3D5A98, 0.1875rem 0rem 0.1875rem #3D5A98, -0.1875rem 0rem 0.1875rem #3D5A98, 0rem 0.1875rem 0.1875rem #3D5A98, 0rem -0.1875rem 0.1875rem #11224E, 0rem 0.1875rem 0.1875rem #3D5A98, 0rem -0.1875rem 0.1875rem #3D5A98, 0.1875rem 0.1875rem 0.1875rem #3D5A98, -0.1875rem -0.1875rem 0.1875rem #3D5A98, -0.1875rem 0.1875rem 0.1875rem #3D5A98, 0.1875rem -0.1875rem 0.1875rem #3D5A98, 0.1875rem 0rem 0.1875rem #3D5A98, -0.1875rem 0rem 0.1875rem #3D5A98, 0rem 0.1875rem 0.1875rem #3D5A98, 0rem -0.1875rem 0.1875rem #3D5A98;
}

.c-card03__text {
  margin-top: 0.75rem;
  margin-left: 0.625rem;
  font-size: 2.375rem;
  letter-spacing: 0.07em;
  line-height: 1.35;
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .c-card03__text {
    margin-top: 0.375rem;
    font-size: 1.625rem;
  }
}

.c-card03__no2 {
  margin-top: 4.0625rem;
  position: relative;
  width: 29.75rem;
  height: 29.75rem;
  border-radius: 50%;
  background-image: conic-gradient(#3D5A98 0deg 118deg, #ebaf7b 118deg 225deg, #3D5A98 225deg 310deg, #D1E3E3 310deg 360deg);
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .c-card03__no2 {
    width: 20.375rem;
    height: 20.375rem;
    margin-top: 0;
  }
}

.c-card03__no2::before {
  content: "年収";
  position: absolute;
  top: 50%;
  left: 50%;
  bottom: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 16.4375rem;
  height: 16.4375rem;
  border-radius: 50%;
  background-color: white;
  font-size: 2.375rem;
  font-weight: bold;
  text-align: center;
  line-height: 16.4375rem;
  color: #11224E;
}

@media screen and (min-width: 768px) {
  .c-card03__no2::before {
    width: 11.25rem;
    height: 11.25rem;
    line-height: 11.25rem;
    font-size: 1.625rem;
  }
}

.c-card03__on-graph1--no2 {
  top: 72%;
  right: 15%;
}

.c-card03__on-graph2--no2 {
  top: 40%;
  left: -13%;
}

.c-card04 {
  background-color: #ECEFF1;
}

.c-card04__image {
  width: 100%;
  position: relative;
}

.c-card04__image img {
  aspect-ratio: 425/283;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  overflow: hidden;
  z-index: -1;
}

.c-card04__number {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 2.375rem;
  font-weight: bold;
  text-align: center;
  line-height: 4rem;
  letter-spacing: 0.07em;
  width: 9.1875rem;
  height: 4rem;
  background-color: #11224E;
  color: white;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .c-card04__number {
    width: 5rem;
    height: 2.1875rem;
    font-size: 1.375rem;
    line-height: 2.1875rem;
  }
}

.c-card04-text-area {
  width: 100%;
  padding-top: 1.375rem;
  padding-inline: 1.375rem;
  padding-bottom: 1.875rem;
}

@media screen and (min-width: 768px) {
  .c-card04-text-area {
    width: 14.375rem;
    width: 100%;
    padding: 0.8125rem 1.125rem 0.9375rem;
  }
}

.c-card04-text-area__top {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.09em;
}

@media screen and (min-width: 768px) {
  .c-card04-text-area__top {
    font-size: 1.125rem;
    letter-spacing: 0.075em;
  }
}

.c-card04-text-area__bottom {
  margin-top: 1.125rem;
  font-size: 1.75rem;
  letter-spacing: 0.003em;
  line-height: 1.45;
}

@media screen and (min-width: 768px) {
  .c-card04-text-area__bottom {
    margin-top: 0.325rem;
    font-size: 1rem;
    letter-spacing: 0.005em;
    line-height: 1.65;
  }
}

.swiper-container {
  width: 100%;
  height: auto;
  cursor: -webkit-grab;
  cursor: grab;
  /* 通常時のカーソル */
  overflow: hidden;
  pointer-events: auto;
}

.swiper-container:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
  /* スワイプ中のカーソル */
}

.swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  /* 均一な動きに変更 */
}

.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  /* 必要に応じて調整 */
  width: auto;
}

/* 余分なスクロールバー要素が存在する場合 */
.swiper-scrollbar {
  display: none;
}

.p-reason__list {
  margin-inline: auto;
  counter-reset: heading-counter;
  /* カウンター名を指定 */
}

@media screen and (min-width: 768px) {
  .p-reason__list {
    margin-inline: auto;
  }
}

@media screen and (min-width: 768px) {
  .c-card05 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: calc(50% - 50vw);
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .c-card05:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    margin-right: calc(50% - 50vw);
    margin-left: auto;
  }
}

@media screen and (min-width: 768px) {
  .c-card05__wrapper {
    background-color: white;
    width: 71%;
    margin-right: -9.6875rem;
    margin-bottom: 6.875rem;
  }
}

@media screen and (min-width: 768px) {
  .c-card05:nth-child(even) .c-card05__wrapper {
    margin-right: 0;
    margin-left: -10rem;
  }
}

.c-card05__text-area {
  position: relative;
  background-color: white;
  margin-right: 3.4375rem;
  padding-top: 2.8125rem;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
  padding-bottom: 16.375rem;
  /* 旧ブラウザ用 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .c-card05__text-area {
    background-color: transparent;
    margin-right: 0;
    padding-top: 1.875rem;
    padding-right: 11.25rem;
    padding-bottom: 1.875rem;
    padding-left: 25%;
    z-index: 1;
  }
}

.c-card05:nth-child(even) .c-card05__text-area {
  margin-left: 3.4375rem;
  margin-right: 0;
}

@media screen and (min-width: 768px) {
  .c-card05:nth-child(even) .c-card05__text-area {
    margin-left: 0;
    margin-right: 0;
    padding-right: 23.5%;
    padding-left: 12.1875rem;
  }
}

.c-card05__title {
  position: relative;
  font-size: 2.75rem;
  margin-left: 8.4375rem;
  line-height: 1.4;
  letter-spacing: 0.035em;
}

@media screen and (min-width: 768px) {
  .c-card05__title {
    font-size: 1.5rem;
    margin-left: 6.5625rem;
  }
}

.c-card05__title::before {
  counter-increment: heading-counter;
  /* カウンターをインクリメント */
  content: "0" counter(heading-counter);
  /* カウンターの値を表示 */
  position: absolute;
  top: -15%;
  left: -28%;
  font-family: "Lato", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13.3vw;
  color: #D1E3E3;
}

@media screen and (min-width: 768px) {
  .c-card05__title::before {
    font-size: 4rem;
    top: -0.625rem;
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .c-card05__title::before {
    left: -41%;
  }
}

@media screen and (min-width: 768px) and (min-width: 1000px) {
  .c-card05__title::before {
    left: -6.875rem;
  }
}

@media screen and (min-width: 768px) and (min-width: 1440px) {
  .c-card05__title::before {
    left: -6.5625rem;
  }
}

.c-card05__text {
  font-size: 2rem;
  margin-top: 0.9375rem;
  line-height: 1.59;
  letter-spacing: -0.02em;
}

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

.c-card05__image {
  -webkit-transform: translate(10%, -47%);
  transform: translate(10%, -47%);
  width: 40.75rem;
  height: auto;
  margin-bottom: -20%;
}

@media screen and (min-width: 768px) {
  .c-card05__image {
    width: 25%;
    max-width: 22.4375rem;
    height: 100%;
    margin-top: 2.8125rem;
    margin-bottom: 0;
    -webkit-transform: none;
    transform: none;
    z-index: 1;
  }
}

.c-card05:nth-child(even) .c-card05__image {
  -webkit-transform: translate(5%, -47%);
  transform: translate(5%, -47%);
}

@media screen and (min-width: 768px) {
  .c-card05:nth-child(even) .c-card05__image {
    height: 100%;
    -webkit-transform: none;
    transform: none;
    margin-left: 9.6875rem;
  }
}

.c-card05__image img {
  aspect-ratio: 650/457;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-box-shadow: 0px 0px 18px 0px rgba(4, 0, 0, .25);
  box-shadow: 0px 0px 18px 0px rgba(4, 0, 0, .25);
}

@media screen and (min-width: 768px) {
  .c-card05__image img {
    aspect-ratio: 359/253;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.c-card06 {
  margin-top: 4.0625rem;
  padding-inline: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.625rem;
}

@media screen and (min-width: 768px) {
  .c-card06 {
    margin-top: 0;
    padding-inline: 0;
    width: 10.75rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.9375rem;
  }
}

.c-card06__image {
  aspect-ratio: 1/1;
  width: 13.625rem;
  height: 13.625rem;
  background-color: #ECEFF1;
  border-radius: 50%;
  position: relative;
}

@media screen and (min-width: 768px) {
  .c-card06__image {
    width: 10.75rem;
    height: 10.75rem;
  }
}

.c-card06__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (min-width: 768px) {
  .c-card06__image img {
    width: 100%;
  }
}

.c-card06__image--img01 img {
  aspect-ratio: 92/138;
  width: 7rem;
  height: auto;
  -webkit-transform: translate(-50%, -45%);
  transform: translate(-50%, -45%);
}

@media screen and (min-width: 768px) {
  .c-card06__image--img01 img {
    aspect-ratio: 74/109;
    width: 4.625rem;
    height: auto;
  }
}

.c-card06__image--img02 img {
  aspect-ratio: 96/64;
  width: 9rem;
  height: auto;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 768px) {
  .c-card06__image--img02 img {
    aspect-ratio: 76/51;
    width: 6rem;
    height: auto;
  }
}

.c-card06__image--img03 img {
  aspect-ratio: 115/96;
  width: 8rem;
  height: auto;
  -webkit-transform: translate(-47%, -50%);
  transform: translate(-47%, -50%);
}

@media screen and (min-width: 768px) {
  .c-card06__image--img03 img {
    aspect-ratio: 93/78;
    width: 5rem;
    height: auto;
  }
}

.c-card06__image--img04 img {
  aspect-ratio: 144/75;
  width: 10rem;
  height: auto;
  -webkit-transform: translate(-47%, -53%);
  transform: translate(-47%, -53%);
}

@media screen and (min-width: 768px) {
  .c-card06__image--img04 img {
    aspect-ratio: 115/60;
    width: 7.2rem;
    height: auto;
  }
}

.c-card06__image--img05 img {
  aspect-ratio: 106/106;
  width: 14.1vw;
  width: 7.5rem;
  height: auto;
  -webkit-transform: translate(-52%, -53%);
  transform: translate(-52%, -53%);
}

@media screen and (min-width: 768px) {
  .c-card06__image--img05 img {
    aspect-ratio: 85/85;
    width: 5.3125rem;
    height: auto;
  }
}

.c-card06__text-area {
  width: 28.25rem;
}

@media screen and (min-width: 768px) {
  .c-card06__text-area {
    width: 100%;
  }
}

.c-card06__title {
  font-size: 2.375rem;
  font-weight: bold;
  color: #11224E;
  letter-spacing: 0.048em;
  position: relative;
}

@media screen and (min-width: 768px) {
  .c-card06__title {
    font-size: 1.375rem;
    text-align: center;
  }
}

.c-card06__title:after {
  position: absolute;
  display: block;
  content: "";
  background-color: #11224E;
  width: 3.5rem;
  height: 0.1875rem;
  bottom: -34%;
  bottom: -0.875rem;
}

@media screen and (min-width: 768px) {
  .c-card06__title:after {
    width: 2.1875rem;
    height: 0.125rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.c-card06__text {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  letter-spacing: -0.08em;
  letter-spacing: -0.04em;
  line-height: 1.45;
}

@media screen and (min-width: 768px) {
  .c-card06__text {
    font-size: 1rem;
    text-align: center;
    margin-top: 1.5625rem;
    line-height: 1.6;
    letter-spacing: -0.02em;
    -webkit-line-clamp: 4;
    line-clamp: 4;
  }
}

.c-card07 {
  background-color: #ECEFF1;
  margin-top: 3.75rem;
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(3, auto);
  grid-column-gap: 1.5625rem;
  grid-row-gap: 0.3125rem;
}

@media screen and (min-width: 768px) {
  .c-card07 {
    display: grid;
    grid-template-columns: repeat(4, auto);
    grid-template-rows: repeat(2, auto);
    grid-column-gap: 0.0625rem;
    grid-row-gap: 0.3125rem;
    margin-top: 0.3125rem;
  }
}

.c-card07__date {
  grid-area: 1/1/2/2;
  width: 10.625rem;
  padding-left: 1.125rem;
  padding-right: 1.0625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  color: white;
  background-color: #3D5A98;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .c-card07__date {
    grid-area: 1/1/3/2;
    width: 8.75rem;
    padding-top: 1.125rem;
    padding-bottom: 0;
    padding-inline: 0;
    padding-left: 1.25rem;
    font-size: 1.25rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.c-card07__time {
  grid-area: 2/1/3/2;
  width: 10.625rem;
  padding-top: 2.875rem;
  padding-bottom: 3.75rem;
  padding-left: 1.5rem;
  padding-right: 1.0625rem;
  font-size: 2rem;
  letter-spacing: 0.06em;
  line-height: 1.3;
  font-weight: bold;
  color: white;
  background-color: #688ADE;
}

@media screen and (min-width: 768px) {
  .c-card07__time {
    grid-area: 1/2/3/3;
    width: 8.5625rem;
    margin-top: 0;
    padding-top: 1.25rem;
    padding-bottom: 0;
    padding-inline: 0;
    padding-left: 1.125rem;
    font-size: 1.125rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .c-schedule__seminar {
    width: 35rem;
  }
}

.c-card07__seminar-title {
  grid-area: 1/2/2/3;
  margin-top: 1rem;
  margin-bottom: 0.625rem;
  padding-left: 0.3125rem;
  padding-right: 0.6875rem;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.035em;
  line-height: 1.25;
}

@media screen and (min-width: 768px) {
  .c-card07__seminar-title {
    grid-area: 1/3/2/4;
    width: 34.0625rem;
    margin-top: 1.125rem;
    margin-bottom: 0;
    padding-left: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.4;
    letter-spacing: 0.03em;
  }
}

.c-card07__seminar-details {
  grid-area: 2/2/3/3;
  margin-top: 0.75rem;
  padding-right: 1.1875rem;
  margin-bottom: 0.625rem;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: -0.04em;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}

@media screen and (min-width: 768px) {
  .c-card07__seminar-details {
    grid-area: 2/3/3/4;
    width: 34.0625rem;
    margin-top: 0rem;
    margin-bottom: 0.9375rem;
    padding-left: 1.25rem;
    font-size: 1rem;
    line-height: 1.6;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}

.c-card07__application-container {
  grid-area: 3/1/4/3;
  padding-top: 1.375rem;
  padding-bottom: 2.5rem;
  padding-inline: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.625rem;
}

@media screen and (min-width: 768px) {
  .c-card07__application-container {
    width: 9.6875rem;
    grid-area: 1/4/3/5;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.625rem;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-top: 1.125rem;
    padding-bottom: 0;
    padding-inline: 0;
  }
}

.c-card07__application {
  display: inline;
  width: 18.75rem;
  padding: 1.125rem 1.25rem 1.5rem 1.4375rem;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: white;
  background-color: #3D5A98;
  border-radius: 12.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .c-card07__application {
    padding: 0.375rem 1.25rem 0.625rem 1.4375rem;
    width: 8.5625rem;
    font-size: 1rem;
  }
}

.c-card07__info {
  padding: 1.125rem 1.25rem 1.5rem 3.9375rem;
  display: inline-block;
  width: 18.75rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  letter-spacing: 1.2em;
  color: white;
  background-color: black;
  border-radius: 12.5rem;
}

@media screen and (min-width: 768px) {
  .c-card07__info {
    padding: 0.375rem 1.25rem 0.625rem 2.5rem;
    width: 8.5625rem;
    height: auto;
    font-size: 1rem;
  }
}

.c-card07__application:hover,
.c-card07__info:hover {
  opacity: 0.3;
}

.c-title {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.0013em;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .c-title {
    font-size: 2.625rem;
  }
}

.c-title::before,
.c-title--white::before {
  content: attr(date-en);
  font-size: 1.375rem;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.022em;
  color: #11224E;
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {

  .c-title::before,
  .c-title--white::before {
    margin-bottom: 0.8125rem;
    font-size: 1.25rem;
  }
}

.c-title--white {
  color: white;
}

.c-title--white::before {
  color: white;
}

.p-contact {
  background-color: #1c345c;
}

.p-contact__wrapper {
  padding-top: 7rem;
  padding-bottom: 7.5rem;
  padding-inline: 1.875rem;
}

@media screen and (min-width: 768px) {
  .p-contact__wrapper {
    padding-inline: 0;
    max-width: 62.5rem;
    padding-top: 5.625rem;
    padding-bottom: 5.625rem;
    margin-inline: auto;
  }
}

.p-contact__container {
  background-color: white;
  border-radius: 0.9375rem;
  padding-top: 1.5625rem;
  padding-bottom: 3.875rem;
  padding-left: 2.5rem;
  padding-right: 1.875rem;
  margin-top: 5.875rem;
}

@media screen and (min-width: 768px) {
  .p-contact__container {
    padding-top: 3.9375rem;
    padding-bottom: 3.125rem;
    padding-left: 3.375rem;
    padding-right: 2.1875rem;
    margin-top: 4.125rem;
  }
}



.p-contact__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 1.875rem;
}

@media screen and (min-width: 768px) {
  .p-contact__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 0.875rem;
  }
}

.p-contact-item input {
  background-color: #ECEFF1;
}

.p-contact-item__label {
  width: 40%;
}

@media screen and (min-width: 768px) {
  .p-contact-item__label {
    width: 19%;
  }
}

.p-contact-item__input,
.p-contact-item-year-month__select,
.p-contact-item__textarea {
  background: #ECEFF1;
  border: none;
  border-radius: 0.5rem;
  font-size: 2rem;
  padding: 1.6875rem;
  margin-top: 0.875rem;
  color: black;
  cursor: pointer;
}

@media screen and (min-width: 768px) {

  .p-contact-item__input,
  .p-contact-item-year-month__select,
  .p-contact-item__textarea {
    font-size: 1rem;
    width: 81%;
    padding: 0.8125rem;
    padding-top: 0.5625rem;
    padding-bottom: 0.6875rem;
    padding-inline: 0.875rem;
    margin-top: 0;
  }
}



.p-contact-item__input::-webkit-input-placeholder,
.p-contact-item-year-month__select::-webkit-input-placeholder,
.p-contact-item__textarea::-webkit-input-placeholder,
.p-contact-item-year-month__select,
.p-contact-item-year-month__month {
  color: #a8a8a8;
}

.p-contact-item__input::-moz-placeholder,
.p-contact-item-year-month__select::-moz-placeholder,
.p-contact-item__textarea::-moz-placeholder,
.p-contact-item-year-month__select,
.p-contact-item-year-month__month {
  color: #a8a8a8;
}

.p-contact-item__input::-ms-input-placeholder,
.p-contact-item-year-month__select::-ms-input-placeholder,
.p-contact-item__textarea::-ms-input-placeholder,
.p-contact-item-year-month__select,
.p-contact-item-year-month__month {
  color: #a8a8a8;
}

.p-contact-item__input::placeholder,
.p-contact-item-year-month__select::placeholder,
.p-contact-item__textarea::placeholder,
.p-contact-item-year-month__select,
.p-contact-item-year-month__month {
  color: #a8a8a8;
}

@media screen and (min-width: 768px) {
  .p-contact-item__input--short {
    width: 29%;
  }
}

@media screen and (min-width: 768px) {
  .p-contact-item__input--middle {
    width: 47%;
  }
}

.p-contact-item__input:focus,
.p-contact-item-year-month__select:focus,
.p-contact-item__textarea:focus {
  outline: 0;
  border: 2px solid #3D5A98;
}

.p-contact-item__label {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.075em;
}

@media screen and (min-width: 768px) {
  .p-contact-item__label {
    font-size: 1.125rem;
    line-height: 2;
  }
}

.p-contact-item__label--letter-spacing {
  letter-spacing: 1.2em;
}

@media screen and (min-width: 768px) {
  .p-contact-item__label--required {
    position: relative;
  }
}

.p-contact-item__label--required::after {
  content: "※";
  color: #da0000;
  font-size: 1.375rem;
  font-weight: bold;
  vertical-align: top;
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  .p-contact-item__label--required::after {
    position: absolute;
    top: 0.1875rem;
    font-size: 0.75rem;
  }
}

.p-contact-item__label--letter-spacing.p-contact-item__label--required::after {
  margin-left: -2.125rem;
}

@media screen and (min-width: 768px) {
  .p-contact-item__label--letter-spacing.p-contact-item__label--required::after {
    margin-left: -1.25rem;
  }
}

.u-katakana-letter-spacing.p-contact-item__label--required::after {
  margin-left: 0.5rem;
}

@media screen and (min-width: 768px) {
  .u-katakana-letter-spacing.p-contact-item__label--required::after {
    margin-left: 0.25rem;
  }
}

.p-contact-item__year-month-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 768px) {
  .p-contact-item__year-month-wrapper {
    width: 45%;
  }
}

.p-contact-item-year-month__year {
  width: 43%;
}

.p-contact-item-year-month__select-year {
  width: 71%;
}

.p-contact-item-year-month__label {
  margin-left: 0.875rem;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.075em;
}

@media screen and (min-width: 768px) {
  .p-contact-item-year-month__label {
    font-size: 1.125rem;
    margin-left: 0.5rem;
  }
}

.p-contact-item-year-month__month {
  width: 57%;
}

.p-contact-item-year-month__select-month {
  width: 38%;
}

@media screen and (min-width: 768px) {
  .p-contact-item-year-month__select-month {
    width: 28%;
  }
}

.p-contact-item__textarea {
  height: 13.4375rem;
}

@media screen and (min-width: 768px) {
  .p-contact-item__textarea {
    height: 9.0625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-contact-privacy-policy__checkbox {
    margin-left: 18%;
  }
}

input[type=checkbox] {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media screen and (min-width: 768px) {
  .p-contact-privacy-policy__checkbox input {
    width: 1.125rem;
    height: 1.125rem;
    margin-top: 2.8125rem;
    border-radius: 0.1875rem;
  }
}

input[type=checkbox] {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid black;
  border-radius: 0.1875rem;
  vertical-align: top;
  margin-top: 3.875rem;
}

@media screen and (min-width: 768px) {
  input[type=checkbox] {
    width: 1.125rem;
    height: 1.125rem;
    margin-top: 2.5rem;
  }
}

input[type=checkbox]:checked:before {
  position: absolute;
  -webkit-transform: rotate(50deg);
  transform: rotate(50deg);
  top: -0.625rem;
  left: 0rem;
  width: 1.125rem;
  height: 1.5rem;
  border-right: 0.5rem solid #11224E;
  border-bottom: 0.375rem solid #11224E;
  content: "";
}

@media screen and (min-width: 768px) {
  input[type=checkbox]:checked:before {
    top: -0.375rem;
    width: 0.875rem;
    height: 1.125rem;
    border-right: 0.375rem solid #11224E;
    border-bottom: 0.25rem solid #11224E;
  }
}

.p-contact-privacy-policy__check {
  margin-top: 2.75rem;
  display: inline-block;
  font-size: 1.75rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 2.1;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .p-contact-privacy-policy__check {
    font-size: 1rem;
    margin-top: 2rem;
  }
}

.p-contact-privacy-policy__red-text {
  color: #da0000;
  border-bottom: 2px solid #da0000;
  padding-bottom: 0.3125rem;
}

.p-contact__btn {
  margin-top: 2.8125rem;
  width: 72.5806451613%;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .p-contact__btn {
    width: 41.7582417582%;
    max-width: 23.75rem;
    margin-top: 2.5rem;
  }
}

/* チェックが入る前のボタンスタイル */
.p-contact__submit-btn {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.075em;
  width: 100%;
  background-color: #11224E;
  color: white;
  cursor: not-allowed;
  /* 押せない状態のカーソル */
  opacity: 0.3;
  /* 半透明 */
  padding-block: 1.5625rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (min-width: 768px) {
  .p-contact__submit-btn {
    font-size: 1.125rem;
    padding-block: 1.4375rem;
  }
}

/* チェックが入った後のボタンスタイル */
.p-contact__submit-btn:enabled {
  background-color: #11224E;
  /* アクティブなボタン色（青など） */
  cursor: pointer;
  opacity: 1;
  /* 通常表示 */
}

.p-contact-item-year-month__month,
.p-contact-item-year-month__year {
  position: relative;
}

.p-contact-item-year-month__month::after,
.p-contact-item-year-month__year::after {
  position: absolute;
  content: "";
  top: 47%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.5rem 0.875rem 0 0.875rem;
  border-color: #000000 transparent transparent transparent;
  pointer-events: none;
  /* クリックイベントを無効化 */
}

@media screen and (min-width: 768px) {

  .p-contact-item-year-month__month::after,
  .p-contact-item-year-month__year::after {
    top: 43%;
    border-width: 0.625rem 0.375rem 0 0.375rem;
  }
}

.p-contact-item-year-month__year::after {
  left: 53%;
}

@media screen and (min-width: 768px) {
  .p-contact-item-year-month__year::after {
    left: 59%;
  }
}

.p-contact-item-year-month__month::after {
  left: 26%;
}

@media screen and (min-width: 768px) {
  .p-contact-item-year-month__month::after {
    left: 19%;
  }
}

select {
  color: #a8a8a8;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* 選択後のスタイル */
select.selected {
  color: #000;
  /* 選択後の文字色 */
}

/* オプションの文字色を設定 */
select option {
  color: #000;
  /* ドロップダウンで表示される文字の色 */
}

.p-cta {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url(../images/cta/cta-btn-bg01_sp.webp);
  aspect-ratio: 750/424;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-cta {
    background-image: url(../images/cta/cta-btn-bg01_pc.webp);
    aspect-ratio: 1440/402;
  }
}

.p-cta::before {
  position: absolute;
  content: "";
  background-color: #ECEFF1;
  width: 100%;
  top: 4%;
  left: 0;
  bottom: 4%;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .p-cta::before {
    top: 7%;
    bottom: 7%;
  }
}

.p-cta--ver2 {
  background-image: url(../images/cta/cta-btn-bg02_sp.webp);
}

@media screen and (min-width: 768px) {
  .p-cta--ver2 {
    background-image: url(../images/cta/cta-btn-bg02_pc.webp);
  }
}

.l-cta {
  margin-top: 7.25rem;
}

@media screen and (min-width: 768px) {
  .l-cta {
    margin-top: 4.0625rem;
  }
}

.l-cta--ver2 {
  margin-top: -1.25rem;
}

@media screen and (min-width: 768px) {
  .l-cta--ver2 {
    margin-top: -8.75rem;
  }
}

.p-cta__text {
  position: relative;
  margin-left: 1.75rem;
  font-size: 2.0625rem;
  font-weight: bold;
  letter-spacing: 0.008em;
  line-height: 1.3;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-cta__text {
    margin-left: 0;
    font-size: 1.375rem;
    letter-spacing: -0.008em;
  }
}

.p-cta__text-yellow {
  font-size: 2.4375rem;
  font-weight: bold;
  color: #f7fe2f;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .p-cta__text-yellow {
    font-size: 1.625rem;
  }
}

.p-cta__text::before,
.p-cta__text::after {
  position: absolute;
  content: "";
  background-color: black;
  width: 0.125rem;
  height: 5.375rem;
  top: 3%;
}

@media screen and (min-width: 768px) {

  .p-cta__text::before,
  .p-cta__text::after {
    height: 1.75rem;
  }
}

.p-cta__text::before {
  left: -5.5%;
  -webkit-transform: rotate(-28deg);
  transform: rotate(-28deg);
}

@media screen and (min-width: 768px) {
  .p-cta__text::before {
    top: 20%;
    left: -3%;
    -webkit-transform: rotate(-32deg);
    transform: rotate(-32deg);
  }
}

.p-cta__text::after {
  left: auto;
  right: -2%;
  -webkit-transform: rotate(28deg);
  transform: rotate(28deg);
}

@media screen and (min-width: 768px) {
  .p-cta__text::after {
    top: 20%;
    right: -3%;
    -webkit-transform: rotate(32deg);
    transform: rotate(32deg);
  }
}

.p-cta__btn {
  margin-top: 1.5rem;
}

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

.l-flow {
  margin-top: 6.75rem;
}

@media screen and (min-width: 768px) {
  .l-flow {
    margin-top: 4.375rem;
  }
}

.p-flow__items {
  margin-top: -0.625rem;
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-flow__items {
    margin-top: 3.125rem;
    max-width: 62.5rem;
    margin-inline: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.p-flow__items::after {
  content: "";
  display: block;
  width: 0.1875rem;
  height: 100%;
  background-color: #ECEFF1;
  position: absolute;
  top: 100%;
  top: 0;
  left: 19%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .p-flow__items::after {
    width: 100%;
    height: 4px;
    top: 5.375rem;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

.p-footer {
  width: 100%;
  padding-left: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-footer {
    max-width: 63.75rem;
    margin-inline: auto;
  }
}

.p-footer__top {
  margin-top: 5.625rem;
}

@media screen and (min-width: 768px) {
  .p-footer__top {
    margin-top: 3.125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-footer__logo {
  font-size: 3.375rem;
  font-weight: bold;
  letter-spacing: 0.075em;
  color: #11224E;
}

@media screen and (min-width: 768px) {
  .p-footer__logo {
    width: 39.5%;
    font-size: 2.125rem;
    line-height: 4.375rem;
    letter-spacing: 0.07em;
  }
}

.p-footer__logo a {
  display: inline-block;
  padding-bottom: 1rem;
  padding-inline: 0.625rem;
  margin-top: 1.25rem;
}

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

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

@media screen and (min-width: 768px) {
  .p-footer-menu {
    width: 60.5%;
  }
}

@media screen and (min-width: 768px) {
  .p-footer-menu__list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-footer-menu__item {
    margin-right: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-footer-menu__item:first-child {
    width: 32.2314049587%;
  }
}

@media screen and (min-width: 768px) {
  .p-footer-menu__item:nth-child(2) {
    width: 26.1157024793%;
  }
}

@media screen and (min-width: 768px) {
  .p-footer-menu__item:last-child {
    width: 26.1157024793%;
    margin-right: 0;
  }
}

.p-footer-menu__link {
  padding-top: 1.5rem;
  margin-top: 1.375rem;
  margin-inline: 0.625rem;
  font-size: 2.25rem;
  display: block;
  font-weight: bold;
  letter-spacing: 0.06em;
  line-height: 2.1;
  color: #11224E;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 43.125rem;
  border-bottom: 2px solid #11224E;
}

@media screen and (min-width: 768px) {
  .p-footer-menu__link {
    margin-top: 0;
    padding-top: 0;
    font-size: 1.125rem;
    letter-spacing: 0.035em;
    color: #11224E;
    width: 100%;
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
    position: relative;
    text-decoration: none;
    border-bottom: 1px solid #11224E;
  }
}

@media screen and (min-width: 768px) {
  .p-footer-menu__link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    bottom: 20%;
    width: 0;
    height: 0.125rem;
    background-color: #11224E;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}

.p-footer-menu__link span {
  display: inline-block;
  content: "";
  background-color: #11224E;
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 50%;
  -ms-flex-item-align: center;
  align-self: center;
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-footer-menu__link span {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.625rem;
    margin-bottom: 0.5rem;
    margin-right: -0.125rem;
  }
}

.p-footer-menu__link span::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.625rem solid transparent;
  border-bottom: 0.625rem solid transparent;
  border-left: 1rem solid white;
  border-right: 0;
  top: 50%;
  left: 57%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  /* アニメーション効果を追加 */
}

@media screen and (min-width: 768px) {
  .p-footer-menu__link span::after {
    border-top: 0.3125rem solid transparent;
    border-bottom: 0.3125rem solid transparent;
    border-left: 0.4375rem solid white;
  }
}

.p-footer-submenu__list {
  margin-top: 1rem;
}

@media screen and (min-width: 768px) {
  .p-footer-submenu__list {
    margin-top: 0.25rem;
    width: 100%;
  }
}

.p-footer__submenu-link {
  display: block;
  font-size: 2rem;
  padding-left: 3.125rem;
  letter-spacing: 0.03em;
  line-height: 3;
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-footer__submenu-link {
    display: block;
    font-size: 1rem;
    line-height: 2.4;
    padding-inline: 0.625rem;
    margin-right: -0.625rem;
    margin-top: 0.125rem;
  }
}

.p-footer__submenu-link::before,
.p-footer__submenu-link::after {
  display: block;
  content: "";
  position: absolute;
  width: 1.375rem;
  height: 0.125rem;
  background-color: black;
}

@media screen and (min-width: 768px) {

  .p-footer__submenu-link::before,
  .p-footer__submenu-link::after {
    width: 0.6875rem;
    height: 0.0625rem;
  }
}

.p-footer__submenu-link::before {
  rotate: 30deg;
  top: 43.5%;
  right: 3.75rem;
}

@media screen and (min-width: 768px) {
  .p-footer__submenu-link::before {
    top: 40%;
    right: 0.125rem;
  }
}

.p-footer__submenu-link::after {
  rotate: -30deg;
  top: 53%;
  right: 3.75rem;
}

@media screen and (min-width: 768px) {
  .p-footer__submenu-link::after {
    right: 0.125rem;
  }
}

.p-footer__bottom {
  margin-top: 7.8125rem;
}

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

@media screen and (min-width: 768px) {
  .p-footer-bottom {
    margin-inline: auto;
    width: 44.4444444444%;
  }
}

.p-footer-bottom__items {
  display: grid;
  grid-template-columns: 42% 44%;
  text-align: center;
  padding-inline: 1.875rem;
}

@media screen and (min-width: 768px) {
  .p-footer-bottom__items {
    grid-template-columns: 36% 39%;
    padding-inline: 0;
  }
}

.p-footer-bottom__item {
  position: relative;
}

.p-footer-bottom__item:not(:last-child)::after {
  content: "";
  position: absolute;
  display: block;
  width: 0.0625rem;
  height: 1.875rem;
  background-color: black;
  top: 50%;
  left: 87%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .p-footer-bottom__item:not(:last-child)::after {
    height: 0.9375rem;
  }
}

.p-footer-bottom__link {
  font-size: 1.75rem;
  padding: 0.375rem;
}

@media screen and (min-width: 768px) {
  .p-footer-bottom__link {
    font-size: 1rem;
  }
}

.p-footer-bottom__copy {
  margin-top: 3.125rem;
  margin-bottom: 3.125rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-footer-bottom__copy {
    margin-top: 4rem;
    margin-bottom: 0.75rem;
  }
}

.p-footer-bottom__copy small {
  font-size: 1.375rem;
  letter-spacing: 0.075em;
}

@media screen and (min-width: 768px) {
  .p-footer-bottom__copy small {
    font-size: 0.75rem;
  }
}

.p-fv {
  position: relative;
  background-image: url("../images/fv/fv_sp.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 749/1023;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .p-fv {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-image: url("../images/fv/fv_pc.webp");
    background-size: cover;
    width: 100%;
    aspect-ratio: 1440/682;
    min-height: 42.625rem;
  }
}

.p-fv__inner {
  margin-inline: auto;
  padding-inline: 1.875rem;
}

@media screen and (min-width: 768px) {
  .p-fv__inner {
    margin-top: -1.875rem;
    padding-top: 0;
    padding-inline: 0;
    max-width: 62.5rem;
  }
}

.p-fv__text-image {
  position: absolute;
  top: 26%;
  right: 3%;
  width: 33.4666666667%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .p-fv__text-image {
    top: 34.5%;
    width: 22%;
    max-width: 18.875rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1299px) {
  .p-fv__text-image {
    top: 23%;
    width: 20%;
    max-width: 18.875rem;
  }
}

.p-fv__text-image img {
  aspect-ratio: 251/96;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .p-fv__text-image img {
    aspect-ratio: 302/117;
  }
}

.p-fv-text-area {
  text-align: center;
  font-weight: bold;
  padding-top: 16.375rem;
  padding-top: 23.25rem;
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-fv-text-area {
    margin-top: 4.875rem;
    padding-top: 0;
  }
}

.p-fv-text-area::before {
  content: "";
  position: absolute;
  top: 58%;
  left: 50.5%;
  display: block;
  width: 0.125rem;
  height: 4.125rem;
  background-color: #11224E;
}

@media screen and (min-width: 768px) {
  .p-fv-text-area::before {
    height: 45%;
    top: -47%;
    left: 50%;
  }
}

.p-fv-text-area__sub-text {
  font-size: 2.375rem;
  color: #11224E;
  letter-spacing: 0.05em;
  margin-left: 0.75rem;
}

.p-fv-text-area__main-text {
  font-size: 4.25rem;
  letter-spacing: 0.075em;
  margin-top: 0.125rem;
  line-height: 1.3;
}

.p-fv-circles {
  margin-top: 2.1875rem;
}

@media screen and (min-width: 768px) {
  .p-fv-circles {
    margin-top: 1.625rem;
  }
}

.p-fv-circles__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.875rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .p-fv-circles__list {
    gap: 1.875rem;
  }
}

.p-fv__cv {
  text-align: center;
  margin-top: 13.75rem;
  position: absolute;
  bottom: -5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-fv__cv {
    margin-top: 0;
    bottom: -4%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.p-header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-left: 1.25rem;
  height: 6.875rem;
  background-image: url(../images/header/header-bg_sp.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

@media screen and (min-width: 768px) {
  .p-header {
    background-image: url(../images/header/header-bg_pc.webp);
    height: 4.375rem;
    padding-left: 0;
    top: 0;
    left: 0;
    background-color: transparent;
    /* 初期は透明背景 */
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
    /* スムーズに変化 */
  }
}

.p-header__logo {
  font-size: 2.25rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  color: white;
}

@media screen and (min-width: 768px) {
  .p-header__logo {
    font-size: 1.75rem;
    line-height: 4.375rem;
    letter-spacing: 0.07em;
    margin-left: 5.875rem;
  }
}

.p-header__logo a {
  display: inline-block;
  padding-block: 1rem;
  padding-inline: 0.625rem;
  margin-top: 0.625rem;
}

@media screen and (min-width: 768px) {
  .p-header__logo a {
    padding-block: 0;
    margin-top: 0;
  }
}

.p-header__hamburger {
  margin-left: auto;
  padding-inline: 1.5625rem;
  width: 6.875rem;
  height: 6.875rem;
  cursor: pointer;
  position: relative;
}

/* 線のスタイル */
.p-header__hamburger span {
  display: block;
  background-color: white;
  width: 3.4375rem;
  /* ボタンの幅 */
  height: 0.2rem;
  /* 線の太さ */
  border-radius: 1px;
  /* 角を丸くする */
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  /* アニメーション */
}

.p-header__hamburger span:nth-child(1) {
  position: absolute;
  top: 35%;
}

.p-header__hamburger span:nth-child(2) {
  position: absolute;
  top: 55%;
}

/* 開閉時のアニメーション */
.close.p-header__hamburger span:nth-child(1) {
  -webkit-transform: translateY(1.6vw) rotate(45deg);
  transform: translateY(1.6vw) rotate(45deg);
  /* 上の線が×の左上に変化 */
}

.close.p-header__hamburger span:nth-child(2) {
  -webkit-transform: translateY(-1.4vw) rotate(-45deg);
  transform: translateY(-1.4vw) rotate(-45deg);
  /* 上の線が×の左上に変化 */
}

.p-header__menu {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 0;
  /* 初期状態: 透明 */
  visibility: hidden;
  /* アニメーション後もフォーカスされないように */
  -webkit-transition: right 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  transition: right 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  z-index: 100;
}

@media screen and (min-width: 768px) {
  .p-header__menu {
    position: static;
    opacity: 1;
    /* PC時には常に表示 */
    visibility: visible;
    background-color: transparent;
    -webkit-transition: none;
    transition: none;
    /* PCではアニメーションを無効化 */
  }
}

/* メニューが開いている時 */
.p-header__menu.is-open {
  right: 0;
  /* 画面内にスライド */
  opacity: 1;
  /* 表示状態 */
  visibility: visible;
  /* 表示可能に */
}

.l-header__menu {
  position: absolute;
  top: 6.875rem;
  left: 0;
}

@media screen and (min-width: 768px) {
  .l-header__menu {
    position: static;
    width: 64.3055555556%;
    margin-left: auto;
  }
}

.p-header-menu__list {
  margin-top: 3.125rem;
  padding-inline: 1.875rem;
  background-color: white;
  height: 100vh;
}

@media screen and (min-width: 768px) {
  .p-header-menu__list {
    background-color: transparent;
    height: auto;
    margin: 0;
    display: grid;
    grid-template-columns: 28.5% 25% 25% 21.5%;
    padding-inline: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-header-menu__item:first-child:hover .p-header-submenu {
    opacity: 1;
    visibility: visible;
  }
}

@media screen and (min-width: 768px) {
  .p-header-menu__item {
    position: relative;
  }
}

@media screen and (min-width: 768px) {

  .p-header-menu__item:first-child::after,
  .p-header-menu__item:nth-child(2)::after {
    position: absolute;
    content: "";
    width: 0.0625rem;
    height: 1.125rem;
    background-color: white;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.p-header-menu__link {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  font-size: 2.375rem;
  display: block;
  font-weight: bold;
  letter-spacing: 0.06em;
  line-height: 2.1;
  color: #11224E;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 43.125rem;
  border-bottom: 2px solid #11224E;
}

@media screen and (min-width: 768px) {
  .p-header-menu__link {
    margin-top: 0;
    padding-top: 0;
    font-size: 1.125rem;
    color: white;
    width: 100%;
    line-height: 4.375rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-bottom: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
  }
}

@media screen and (min-width: 768px) {
  .p-header-menu__link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 20%;
    width: 0;
    height: 0.125rem;
    background-color: #11224E;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}

@media screen and (min-width: 768px) {
  .p-header-menu__link--contact {
    font-size: 1.0625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-header-menu__link--contact::after {
    background-color: transparent;
  }
}

@media screen and (min-width: 768px) {
  .p-header-menu__link:hover {
    color: #11224E;
    background-color: color-mix(in srgb, white 100%, white 10%);
    opacity: 0.7;
  }
}

@media screen and (min-width: 768px) {
  .p-header-menu__link:hover::after {
    max-width: 10.6875rem;
    bottom: 20%;
  }
}

@media screen and (min-width: 768px) {
  .p-header-menu__link--short-under-bar:hover::after {
    max-width: 8.3125rem;
    bottom: 20%;
  }
}

.p-header-menu__item--contact .p-header-menu__link:hover span:last-child::after {
  /* ここにスタイルを記述 */
}

.p-header-menu__link span {
  display: inline-block;
  content: "";
  background-color: #11224E;
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 50%;
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin-top: 1.5rem;
  margin-right: 0.125rem;
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-header-menu__link span {
    display: none;
  }
}

.p-header-menu__link span::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.625rem solid transparent;
  border-bottom: 0.625rem solid transparent;
  border-left: 1rem solid white;
  border-right: 0;
  top: 50%;
  left: 57%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  /* アニメーション効果を追加 */
}

.p-header-menu__link.is-open span::after {
  top: 53%;
  left: 52%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
  /* 三角形を下向きに回転 */
}

.p-header-menu__accordion-item {
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-header-menu__accordion-item:hover {
    opacity: 1;
    visibility: visible;
  }
}

.p-header-submenu {
  width: 100%;
  padding-top: 0.5rem;
  padding-inline: 2.375rem;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease;
  transition: max-height 0.5s ease;
}

@media screen and (min-width: 768px) {
  .p-header-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 25rem;
    padding-inline: 2.5rem;
    padding-bottom: 1.25rem;
    margin-top: 0;
    margin-bottom: 0.375rem;
    border-radius: 0 0 0.5rem 0.5rem;
    background-color: rgba(255, 255, 255, .9);
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    opacity: 0;
    visibility: hidden;
  }
}

.p-header-submenu.is-open {
  background-color: white;
  height: 100%;
  max-height: 62.5rem;
}

.p-header-submenu__list {
  width: 100%;
  margin-top: 0.625rem;
}

.p-header__submenu-link {
  display: block;
  width: 100%;
  font-size: 2rem;
  letter-spacing: 0.03em;
  line-height: 3;
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-header__submenu-link {
    font-size: 1.125rem;
    text-align: center;
    border-bottom: 0.125rem solid #11224E;
  }
}

.p-header__submenu-link::before,
.p-header__submenu-link::after {
  display: block;
  content: "";
  position: absolute;
  width: 1.375rem;
  height: 0.125rem;
  background-color: black;
}

@media screen and (min-width: 768px) {

  .p-header__submenu-link::before,
  .p-header__submenu-link::after {
    display: none;
  }
}

.p-header__submenu-link::before {
  rotate: 30deg;
  top: 2.5rem;
  right: -0.25rem;
}

.p-header__submenu-link::after {
  rotate: -30deg;
  top: 3.125rem;
  right: -0.25rem;
}

@media screen and (min-width: 768px) {
  .p-header-menu__item--contact {
    background-color: #11224E;
  }
}

@media screen and (min-width: 768px) {
  .p-header-menu__item--contact a:hover {
    opacity: 1;
    color: white;
    background-color: color-mix(in srgb, #11224E 100%, white 30%);
  }
}

@media screen and (min-width: 768px) {
  .p-header-menu__item--contact img {
    aspect-ratio: 29/24;
    width: 15%;
    max-width: 1.8125rem;
    height: auto;
    -ms-flex-item-align: center;
    align-self: center;
    margin-top: 0.125rem;
    margin-right: 3%;
    margin-left: 3%;
  }
}

@media screen and (min-width: 768px) {

  .p-header__logo.scrolled,
  .p-header-menu__link.scrolled {
    color: #11224E;
  }
}

@media screen and (min-width: 768px) {
  .p-header.scrolled {
    background-color: rgba(255, 255, 255, .5);
    /* スクロール後の背景色 */
    background-image: none;
    /* 背景画像を削除 */
  }
}

/* p-header-menu__link--contact を除外 */
@media screen and (min-width: 768px) {
  .p-header-menu__link--contact.scrolled {
    color: white;
    /* もしくは、contactリンクの色を変更したい場合は、適切な色を指定 */
  }
}

@media screen and (min-width: 768px) {

  .p-header-menu__item:first-child.scrolled::after,
  .p-header-menu__item:nth-child(2).scrolled::after {
    background-color: #11224E;
  }
}

.l-learn {
  margin-top: 10.125rem;
}

@media screen and (min-width: 768px) {
  .l-learn {
    margin-top: 6rem;
  }
}

.p-learn__list-container {
  margin-top: 3.75rem;
}

@media screen and (min-width: 768px) {
  .p-learn__list-container {
    margin-top: 2.5rem;
  }
}

.p-learn__list {
  padding-inline: 1.875rem;
}

@media screen and (min-width: 768px) {
  .p-learn__list {
    padding-inline: 0;
    max-width: 62.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-inline: auto;
  }
}

.p-learn-promo {
  position: relative;
  margin-top: 2.125rem;
}

@media screen and (min-width: 768px) {
  .p-learn-promo {
    margin-inline: auto;
    margin-top: 2.375rem;
    max-width: 62.5rem;
  }
}

.p-learn-promo::before,
.p-learn-promo::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -18%;
}

.p-learn-promo::before {
  background-image: url("../images/learn/learn_left-leaf.webp");
  aspect-ratio: 207/390;
  left: 3.5%;
  width: 12%;
}

@media screen and (min-width: 768px) {
  .p-learn-promo::before {
    left: 14%;
    width: 5rem;
    bottom: -8%;
  }
}

.p-learn-promo::after {
  background-image: url("../images/learn/learn_right-leaf.webp");
  aspect-ratio: 207/390;
  left: auto;
  right: 4%;
  width: 12%;
}

@media screen and (min-width: 768px) {
  .p-learn-promo::after {
    width: 5rem;
    right: 13%;
    bottom: -8%;
  }
}

.p-learn-promo__title-top,
.p-learn-promo__title-bottom {
  text-align: center;
  color: #11224E;
}

.p-learn-promo__title-top {
  font-size: 2.375rem;
  font-weight: bold;
  letter-spacing: 0.09em;
  line-height: 1.2;
}

@media screen and (min-width: 768px) {
  .p-learn-promo__title-top {
    font-size: 2.375rem;
  }
}

.p-learn-promo__title-bottom {
  font-size: 2.125rem;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .p-learn-promo__title-bottom {
    margin-left: 1.25rem;
    font-size: 2.125rem;
  }
}

.p-promo__number {
  font-family: "Noto Serif JP", serif;
  font-style: italic;
  font-size: 6.375rem;
  font-weight: bold;
  letter-spacing: -0.03em;
  margin-left: -1.875rem;
}

@media screen and (min-width: 768px) {
  .p-promo__number {
    margin-left: -1.25rem;
    font-size: 6.375rem;
    letter-spacing: 0em;
  }
}

.p-promo__number::after {
  content: "%";
  font-size: 4.5rem;
}

.l-participant {
  margin-top: 7rem;
}

@media screen and (min-width: 768px) {
  .l-participant {
    margin-top: 4.375rem;
  }
}

.p-participant__items {
  margin-top: 5rem;
  margin-left: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .p-participant__items {
    margin-top: 2.25rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 3.75rem;
  }
}

.p-reason {
  background-color: #ECEFF1;
  padding-top: 7.875rem;
  padding-bottom: 4.125rem;
}

@media screen and (min-width: 768px) {
  .p-reason {
    padding-top: 5.875rem;
    padding-bottom: 10%;
  }
}

.l-reason {
  margin-top: 7.5rem;
}

@media screen and (min-width: 768px) {
  .l-reason {
    margin-top: 6.875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-reason__title {
    max-width: 62.5rem;
    margin-inline: auto;
  }
}

.p-reason__list {
  margin-top: 2.75rem;
}

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

.p-header-reservation01 {
  position: fixed;
  top: 7.8125rem;
  right: 4%;
  z-index: 5;
}

@media screen and (min-width: 768px) {
  .p-header-reservation01 {
    top: 7.8125rem;
  }
}

.p-header-reservation02 {
  position: fixed;
  top: 49.375rem;
  right: 1%;
  z-index: 5;
}

@media screen and (min-width: 768px) {
  .p-header-reservation02 {
    top: 29.0625rem;
    right: 1.25rem;
  }
}

.p-header-reservation01,
.p-header-reservation02 {
  opacity: 0;
  /* 初期状態では非表示 */
  pointer-events: none;
  /* 初期状態ではユーザー操作を無効化 */
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  /* アニメーションをスムーズに */
}

.p-header-reservation01.is-visible,
.p-header-reservation02.is-visible {
  opacity: 1;
  /* 表示状態 */
  pointer-events: auto;
  /* ユーザー操作を有効化 */
}

.p-schedule {
  padding-top: 10rem;
  padding-bottom: 3.75rem;
  padding-bottom: 7.5rem;
  background-color: #f6f6f6;
}

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

.l-schedule {
  margin-top: 3.75rem;
}

@media screen and (min-width: 768px) {
  .l-schedule {
    margin-top: 6.25rem;
  }
}

.p-schedule__title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-schedule__title::before {
  position: absolute;
  top: -88%;
}

.p-schedule__list {
  margin-inline: auto;
  padding-inline: 1.875rem;
}

@media screen and (min-width: 768px) {
  .p-schedule__list {
    margin-top: 3.4375rem;
    padding-inline: 0;
    max-width: 62.5rem;
  }
}

.l-voice {
  margin-top: 7.125rem;
}

@media screen and (min-width: 768px) {
  .l-voice {
    margin-top: 4.625rem;
  }
}

.p-voice__container {
  margin-top: 4rem;
}

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

.u-desktop {
  display: none;
}

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

.u-katakana-letter-spacing {
  letter-spacing: -0.19em;
  letter-spacing: -0.05em;
}

.u-katakana-letter-spacing__schedule,
.u-katakana-letter-spacing__learn,
.u-katakana-letter-spacing__fv {
  letter-spacing: -0.05em;
}

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

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  white-space: nowrap;
}

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