@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関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 1300px) {
  html {
    font-size: 1.2307692308vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #444;
  line-height: 1.5;
}

picture {
  width: 100%;
  display: block;
}

img {
  width: 100%;
  height: auto;
}

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

button {
  transition: opacity 0.3s;
}

button:hover,
a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  button:hover,
  a:hover {
    opacity: 1;
  }
}

.swiper-slide img {
  height: auto;
  width: 100%;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

address {
  font-style: initial;
}

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

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

.l-inner {
  max-width: 1300px;
  padding: 0 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 600px;
    padding: 0 20px;
  }
}

.l-second-inner {
  max-width: 1200px;
  padding: 0 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-second-inner {
    max-width: 600px;
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .c-sub-template__content .l-sub-content {
    margin-top: 6.25rem;
  }
}

@media screen and (max-width: 767px) {
  .l-sub-content {
    margin-top: 3.125rem;
  }
}

.l-sub-inner {
  max-width: 60rem;
  padding: 0 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-sub-inner {
    max-width: 600px;
    padding: 0 20px;
  }
}

.l-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.c-breadcrumb {
  color: #444;
  font-weight: 400;
  font-size: 0.6875rem;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    margin-top: 3.125rem;
  }
}

.c-breadcrumb__wrapper {
  text-align: right;
}

@media screen and (max-width: 767px) {
  .post.current-item {
    display: inline-block;
    max-width: 10em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: bottom;
  }
}

.c-btn {
  width: 100%;
  max-width: 18.75rem;
  background-color: #317EE6;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  padding: 1.375rem 1.875rem;
  display: flex;
  align-items: center;
  transition: all 0.3s;
  border-radius: 2.5rem;
}

.c-btn.c-btn--middle {
  max-width: 25rem;
}

.c-btn.c-btn--large {
  max-width: 35.4375rem;
}

/*ボタン用 view more テキスト*/
.c-btn-more {
  color: #FFF;
  font-size: 0.8125rem;
  font-family: "Readex Pro", sans-serif;
  font-weight: 400;
  margin-left: 1rem;
}

/*ボタン用 アイコン*/
.c-btn-icon {
  position: relative;
  display: inline-block;
  min-width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  background-color: #FFF;
  margin-left: auto;
}

.c-btn-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-btn-icon.c-btn-icon--arrow::after {
  width: 0.625rem;
  height: 0.4375rem;
  background: url("../images/common/button-arrow-right.svg") no-repeat center center/contain;
}

.c-btn-icon.c-btn-icon--return::after {
  width: 0.625rem;
  height: 0.4375rem;
  background: url("../images/common/button-arrow-left.svg") no-repeat center center/contain;
}

.c-btn-icon.c-btn-icon--more::after {
  width: 0.625rem;
  height: 0.625rem;
  background: url("../images/common/button-more-icon.svg") no-repeat center center/contain;
}

.c-btn-icon.c-btn-icon--link::after {
  width: 0.625rem;
  height: 0.625rem;
  background: url("../images/common/button-link.svg") no-repeat center center/contain;
}

.c-btn-icon.c-btn-icon--download::after {
  width: 0.625rem;
  height: 0.625rem;
  background: url("../images/common/button-download.svg") no-repeat center center/contain;
}

.c-btn-icon.c-btn-icon--arrow-down::after {
  width: 0.625rem;
  height: 0.625rem;
  background: url("../images/common/button-arrow-down.svg") no-repeat center center/contain;
}

/*ボタン用 アイコン モデルコース*/
.c-btn-icon.c-btn-icon--arrow-down-light::after {
  width: 0.625rem;
  height: 0.625rem;
  background: url("../images/model-course/model-course-arrow.svg") no-repeat center center/contain;
}

.c-company-info__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 5.75rem;
}
@media screen and (max-width: 767px) {
  .c-company-info__list {
    gap: 3.125rem 0;
    grid-template-columns: repeat(1, 1fr);
  }
}

.c-company-info__list li {
  max-width: 27.0625rem;
}
@media screen and (max-width: 767px) {
  .c-company-info__list li {
    max-width: 100%;
  }
}

.c-company-info__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3333333333;
  padding-bottom: 1rem;
  border-bottom: 1px solid transparent;
  -o-border-image: linear-gradient(to right, #317EE6 0 5.5rem, #CCC 5.5rem 100%) 1;
     border-image: linear-gradient(to right, #317EE6 0 5.5rem, #CCC 5.5rem 100%) 1;
}

.c-company-info__list iframe {
  width: 100%;
  margin-top: 1.875rem;
}

.c-company-info__wrap {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-company-info__wrap {
    margin-top: 0.625rem;
  }
}

.c-company-info__address-title {
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: "Readex Pro", sans-serif;
  color: #317EE6;
  text-transform: uppercase;
}

.c-company-info__tel {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
}

.c-company-info__wrap address {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
}

.c-company-info__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
}

.c-heading__ja-title.c-heading__ja-title--blue {
  color: #317EE6;
}

.c-heading__ja-title.c-heading__ja-title--white {
  color: #FFF;
}

.c-heading__ja-title {
  font-size: clamp(17px, -11px + 3.64vw, 40px);
  font-weight: 700;
  color: #444;
}
@media screen and (max-width: 767px) {
  .c-heading__ja-title {
    font-size: 1.75rem;
  }
}

.c-heading__en-title {
  display: block;
  position: relative;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "Readex Pro", sans-serif;
  color: #317EE6;
  text-transform: uppercase;
  padding-left: 0.5rem;
  margin-top: 0.1875rem;
}

.c-heading__en-title::before {
  content: "";
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #317EE6;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0%;
  left: -0.25rem;
  border-radius: 50%;
}

.c-model-course-custom {
  margin-top: 5.625rem;
}
@media screen and (max-width: 767px) {
  .c-model-course-custom {
    margin-top: 3.125rem;
  }
}

.c-model-course-custom .l-sub-inner {
  padding: 0;
}

@media screen and (max-width: 767px) {
  .c-model-course-custom__inner.l-sub-inner {
    padding: 0;
  }
}

.c-sub-heading-side.c-model-course-custom__heading {
  font-size: 1.625rem;
}
@media screen and (max-width: 767px) {
  .c-sub-heading-side.c-model-course-custom__heading {
    font-size: 1.125rem;
  }
}

.c-model-course-custom__slide {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-model-course-custom__slide {
    margin-top: 0.625rem;
  }
}

/*スライダー*/
.c-model-course-custom__slide {
  position: relative;
}

.c-model-course-custom__slide-img {
  width: 100%;
  height: auto;
  aspect-ratio: 960/480;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-model-course-custom__slide .c-model-course-custom__slide-pagination {
  width: 100%;
  position: absolute;
  bottom: -1.4375rem;
  left: 0;
  text-align: left;
}

.c-model-course-custom__slide .c-model-course-custom__slide-pagination .swiper-pagination-bullet {
  margin: 0 0.125rem;
}

.c-model-course-custom__schedule {
  margin-top: 6.5625rem;
}
@media screen and (max-width: 767px) {
  .c-model-course-custom__schedule {
    margin-top: 3.125rem;
  }
}

.c-model-course-custom__schedule-inner {
  display: flex;
  justify-content: space-between;
  gap: 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .c-model-course-custom__schedule-inner {
    gap: 0.625rem;
    flex-direction: column;
  }
}

.c-model-course-custom__schedule-title {
  width: 20%;
  font-size: 1.3125rem;
  font-weight: 600;
  font-family: "Readex Pro", sans-serif;
  color: #317EE6;
}
@media screen and (max-width: 767px) {
  .c-model-course-custom__schedule-title {
    width: 100%;
    font-size: 1.125rem;
  }
}

.c-model-course-custom__schedule-list {
  width: 75%;
  border-top: solid 1px #CCC;
  border-bottom: solid 1px #CCC;
}
@media screen and (max-width: 767px) {
  .c-model-course-custom__schedule-list {
    width: 100%;
  }
}

.c-model-course-custom__schedule-list li {
  display: flex;
  align-items: center;
  gap: 0 0.625rem;
  padding: 0.59375rem 1.625rem;
}
@media screen and (max-width: 767px) {
  .c-model-course-custom__schedule-list li {
    padding: 0.625rem;
  }
}

.c-model-course-custom__schedule-list li:nth-child(odd) {
  background-color: #FFF;
}

.c-model-course-custom__schedule-list li:nth-child(even) {
  background-color: #F0F0F2;
}

.c-model-course-custom__schedule-time,
.c-model-course-custom__schedule-area-title {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .c-model-course-custom__schedule-time,
  .c-model-course-custom__schedule-area-title {
    width: 100%;
  }
}

.c-model-course-custom__schedule-time-area,
.c-model-course-custom__schedule-area-text {
  width: 75%;
}
@media screen and (max-width: 767px) {
  .c-model-course-custom__schedule-time-area,
  .c-model-course-custom__schedule-area-text {
    width: 100%;
  }
}

.c-model-course-custom__schedule-time {
  display: flex;
  align-items: center;
  gap: 0 0.625rem;
  font-size: 1rem;
  color: #317EE6;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .c-model-course-custom__schedule-time {
    font-size: clamp(0.875rem, 0.7855rem + 0.4474vw, 1rem);
  }
}

.c-model-course-custom__schedule-time span {
  width: 5.5rem;
  display: grid;
  place-content: center;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #317EE6;
  font-family: "Readex Pro", sans-serif;
  background-color: #C9FF4E;
  border-radius: 1.25rem;
  padding: 0.125rem 0.625rem;
}

.c-model-course-custom__schedule-time-area {
  font-size: 1rem;
  color: #317EE6;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .c-model-course-custom__schedule-time-area {
    font-size: clamp(0.875rem, 0.7855rem + 0.4474vw, 1rem);
  }
}

.c-model-course-custom__schedule-area-title {
  font-size: 1rem;
  line-height: 2;
  margin-left: 26.3%;
}
@media screen and (max-width: 767px) {
  .c-model-course-custom__schedule-area-title {
    font-size: clamp(0.875rem, 0.7855rem + 0.4474vw, 1rem);
    margin-left: 10%;
    width: 80%;
  }
}

.c-model-course-custom__schedule-area-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .c-model-course-custom__schedule-area-text {
    font-size: clamp(0.875rem, 0.7855rem + 0.4474vw, 1rem);
  }
}

.c-model-course-custom__plan {
  margin-top: 3.375rem;
}
@media screen and (max-width: 767px) {
  .c-model-course-custom__plan {
    margin-top: 3.125rem;
  }
}

.c-model-course-custom__plan-title {
  font-size: 1rem;
  color: #317EE6;
  font-weight: 700;
  background-color: #C9FF4E;
  padding: 0.375rem 0.9375rem;
}

.c-model-course-custom__plan-list-basis {
  background-color: #EDF5FD;
}

.c-model-course-custom__plan-list,
.c-model-course-custom__plan-list-basis {
  display: flex;
  gap: 0 0.625rem;
  border-bottom: solid 1px #CCC;
  padding: 1.65625rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-model-course-custom__plan-list,
  .c-model-course-custom__plan-list-basis {
    flex-direction: column;
    gap: 0.625rem;
  }
}

.c-model-course-custom__plan-list dt,
.c-model-course-custom__plan-list-basis dt {
  display: flex;
  align-items: flex-start;
  width: 30%;
  position: relative;
  font-size: 1.3125rem;
  margin-left: 1.625rem;
  margin-top: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .c-model-course-custom__plan-list dt,
  .c-model-course-custom__plan-list-basis dt {
    width: 100%;
    font-size: 1.125rem;
  }
}

.c-model-course-custom__plan-list-basis dt {
  color: #317EE6;
  margin-left: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .c-model-course-custom__plan-list-basis dt {
    margin-left: initial;
  }
}

.c-model-course-custom__plan-list dt::before {
  content: "";
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #317EE6;
  position: absolute;
  top: 1rem;
  transform: translateY(-50%);
  left: 0;
  left: -0.75rem;
  border-radius: 50%;
}

.c-model-course-custom__plan-list dd,
.c-model-course-custom__plan-list-basis dd {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .c-model-course-custom__plan-list dd,
  .c-model-course-custom__plan-list-basis dd {
    width: 100%;
  }
}

.c-model-course-custom__plan-price,
.c-model-course-custom__plan-distance {
  font-size: 2.375rem;
  font-weight: 600;
  font-family: "Readex Pro", sans-serif;
  color: #317EE6;
}

.c-model-course-custom__plan-price span {
  font-size: 1rem;
  color: #317EE6;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  margin-left: 1.625rem;
}

.c-model-course-custom__plan-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
}

.c-model-course-custom__plan-basis {
  font-size: 1.1875rem;
  font-weight: 400;
  line-height: 1.6842105263;
}
@media screen and (max-width: 767px) {
  .c-model-course-custom__plan-basis {
    font-size: 1rem;
  }
}

.c-model-course-tab {
  max-width: 81.25rem;
  display: flex;
  justify-content: space-between;
  /*grid-template-columns: repeat(3,1fr);*/
  gap: 1.25rem;
  list-style: none;
  margin-block: 2.5rem 0;
  padding: 0 1.5625rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .c-model-course-tab {
    max-width: 37.5rem;
    gap: 0.625rem;
    padding: 0 1.25rem;
  }
}

.c-model-course-tab__link {
  flex: 1;
  min-width: 0;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  padding: 0.875rem 1.5rem;
  background: #e7f3ff;
  color: #7EAAE5;
  transition: all 0.3s ease;
  border-radius: 0.625rem 0.625rem 0 0;
}
@media screen and (max-width: 767px) {
  .c-model-course-tab__link {
    font-size: clamp(0.6875rem, 0.2107rem + 1.9074vw, 1.125rem);
    flex-direction: column;
    justify-content: center;
    gap: 0.3125rem 0;
    padding: 0.375rem;
    word-break: keep-all;
  }
}

.c-model-course-tab__link-text {
  flex: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-model-course-tab__link-text {
    display: flex;
    align-items: center;
    white-space: normal;
    word-break: break-word;
    line-height: 1.3;
  }
}

.c-model-course-tab__link .c-btn-icon {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .c-model-course-tab__link .c-btn-icon {
    margin-left: initial;
  }
}

.c-model-course-tab__link:is(:hover, :focus-visible) {
  background: #EDF5FD;
}

.c-model-course-tab__link.is-active {
  background: #C9FF4E;
  color: #444;
  font-weight: 700;
  cursor: default;
}

.c-model-course-tab__link.is-active .c-btn-icon.c-btn-icon--arrow-down-light::after {
  background: url("../images/common/button-arrow-down.svg") no-repeat center center/contain;
}

.c-model-course__tab-border {
  border-top: solid 1px #F0F0F2;
}

.c-model-course__tab-title-wrap {
  text-align: center;
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .c-model-course__tab-title-wrap {
    margin-top: 1.875rem;
  }
}

.c-model-course__tab-icon {
  display: inline-block;
  max-width: 1.1875rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-model-course__tab-title {
  font-size: 1.875rem;
  color: #317EE6;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .c-model-course__tab-title {
    font-size: 1.5rem;
  }
}

.c-model-course__tab-text {
  font-size: 1rem;
  line-height: 2;
  margin-top: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .c-model-course__tab-text {
    margin-top: 0.625rem;
    text-align: left;
  }
}

.c-news-list li {
  border-bottom: solid 1px #CCC;
  padding: 1.9375rem 0;
}

.c-news-list li:first-child {
  padding-top: 0;
}

.c-news-list__information {
  display: flex;
  gap: 0 0.75rem;
  align-items: center;
}

.c-news-list__date {
  font-size: 0.8125rem;
  font-weight: 700;
}

.c-news-list__category {
  min-width: 7.25rem;
  padding: 0.3125rem 1rem;
  font-size: 0.75rem;
  background-color: #EDF4FF;
  color: #3465B4;
  text-align: center;
  border-radius: 0.25rem;
}

.c-news-list__category.category-information {
  background-color: #E5F8F1;
  color: #34B483;
}

.c-news-list__category.category-event {
  background-color: #F2EDFF;
  color: #5634B4;
}

.c-news-list__category.category-notice {
  background-color: #FFEBD8;
  color: #FF9B3C;
}

.c-news-list__title {
  font-size: 1rem;
  margin-top: 0.9375rem;
}

.c-page-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 4.6875rem;
  height: 4.6875rem;
  background-color: #C9FF4E;
  border-radius: 50%;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0.375rem rgba(26, 42, 85, 0.15);
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  .c-page-top {
    right: 2%;
    bottom: 4%;
    width: 3.75rem;
    height: 3.75rem;
  }
}

.c-page-top:hover {
  cursor: pointer;
  opacity: 0.8;
}

.c-page-top__img {
  max-width: 0.6875rem;
  height: auto;
  margin-bottom: 0.5rem;
}

.c-page-top__text {
  color: #1A2A55;
  font-family: "Readex Pro", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-page-top__text {
    font-size: 0.6875rem;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 0.3125rem;
  margin-top: 3.25rem;
}

.c-pagination__icon {
  display: inline-block;
  position: relative;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  background-color: #EDF5FD;
}

.prev .c-pagination__icon::before,
.next .c-pagination__icon::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.625rem;
  height: 0.5rem;
}

.prev .c-pagination__icon::before {
  background: url("../images/common/button-arrow-left.svg") no-repeat center center/contain;
}

.next .c-pagination__icon::before {
  background: url("../images/common/button-arrow-right.svg") no-repeat center center/contain;
}

.c-pagination__label {
  font-size: 0.90625rem;
  color: #317EE6;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.125rem;
  height: 3.125rem;
  font-size: 1.125rem;
  font-weight: 400;
  font-family: "Readex Pro", sans-serif;
  color: #317EE6;
  border-radius: 0.375rem;
  border: solid 1px #CCC;
}
@media screen and (max-width: 767px) {
  .page-numbers {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.prev.page-numbers,
.next.page-numbers {
  width: auto;
  border: none;
}

.prev.page-numbers {
  margin-right: 2.6875rem;
}

.next.page-numbers {
  margin-left: 2.6875rem;
}

.page-numbers.current {
  color: #FFF;
  background-color: #317EE6;
  border: none;
}

.c-sub-heading-large {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .c-sub-heading-large {
    font-size: 2rem;
  }
}

.c-sub-heading-side {
  font-weight: 700;
  padding: 0.3125rem 0 0.3125rem 1.125rem;
  border-left: solid 0.1875rem #317EE6;
}
@media screen and (max-width: 767px) {
  .c-sub-heading-side {
    margin-bottom: 1.875rem;
  }
}

.c-sub-heading-under {
  font-weight: 700;
  padding-bottom: 1.0625rem;
  border-bottom: 1px solid transparent;
  -o-border-image: linear-gradient(to right, #317EE6 0 5.53125rem, #CCC 5.53125rem 100%) 1;
     border-image: linear-gradient(to right, #317EE6 0 5.53125rem, #CCC 5.53125rem 100%) 1;
}

.c-sub-heading {
  position: relative;
  font-size: 2.125rem;
  font-weight: 700;
  padding-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-sub-heading {
    font-size: 1.625rem;
  }
}

.c-sub-heading::before {
  content: "";
  width: 1.75rem;
  height: 0.3125rem;
  position: absolute;
  top: 0rem;
  left: 0.25rem;
  background-color: #317EE6;
}

.c-sub-mv {
  position: relative;
  background-color: #EDF4FC;
}
@media screen and (max-width: 767px) {
  .c-sub-mv {
    min-height: 18.75rem;
  }
}

.c-sub-mv__bg {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-sub-mv__inner {
  position: relative;
  z-index: 2;
  padding: 16rem 7.25rem 9.5rem 7.8125rem;
}
@media screen and (max-width: 767px) {
  .c-sub-mv__inner {
    padding: 6.25rem 1.25rem 0;
  }
}

.c-sub-mv__en-title {
  font-size: 5rem;
  font-weight: 600;
  font-family: "Readex Pro", sans-serif;
  color: #317EE6;
  text-transform: uppercase;
  word-break: keep-all;
  overflow-wrap: anywhere;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .c-sub-mv__en-title {
    font-size: clamp(1.6875rem, 0.211rem + 7.3826vw, 3.75rem);
    line-height: 1.2;
  }
}

.c-sub-mv__ja-title {
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-sub-mv__ja-title {
    font-size: 1.125rem;
  }
}

.c-sub-sidebar {
  position: sticky;
  top: 0;
  width: 25%;
  max-width: 12.5rem;
  flex: 0 0 auto;
  align-self: flex-start;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-sub-sidebar {
    display: none;
  }
}

.c-sub-sidebar li img {
  max-width: 0.625rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 0.875rem;
}

.c-sub-sidebar__toc {
  list-style: none;
  padding: 0;
}

.c-sub-sidebar__toc span {
  width: 74%;
}

.c-sub-sidebar__toc .js-accordion__content li:nth-of-type(n + 2) {
  margin-top: 0.5rem;
}

.c-sub-sidebar__toc .js-accordion__content {
  background: #EDF5FD;
  padding: 1.25rem 1.375rem;
  border-radius: 0.5rem;
}

/* アコーディオン付き見出し */
.c-sub-sidebar__toc li button {
  display: block;
  width: 100%;
  position: relative;
  font-size: 0.875rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 0;
  margin-bottom: 1.5rem;
}

.js-accordion__content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.js-accordion__content a {
  font-size: 0.8125rem;
  color: #317EE6;
}

li.js-accordion__item:nth-of-type(n + 2) {
  margin-top: 1.5rem;
}

/* 子なし */
.c-sub-sidebar__toc > li:not(.js-accordion__item) a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: #1A2A55;
  text-decoration: none;
  padding: 0.75rem 0;
  margin-top: 0.75rem;
}

/* 横線 */
.c-sub-sidebar__toc li button span::after {
  content: "";
  position: absolute;
  top: 55%;
  right: 0.8125rem;
  width: 0.75rem;
  height: 1px;
  background: #317EE6;
  transform: translateY(-50%);
}

/* 縦線 is-openの時だけ表示 */
.c-sub-sidebar__toc li button span::before {
  content: "";
  position: absolute;
  top: 52%;
  right: 0.875rem;
  width: 0.75rem;
  height: 1px;
  background: #317EE6;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  rotate: 0deg;
}

/* is-open（開いている状態）→ 縦線を表示して “プラス” */
.c-sub-sidebar__toc li button.is-open span::before {
  rotate: 90deg;
}

.c-sub-template__inner {
  display: flex;
  justify-content: space-between;
  gap: 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-sub-template__inner {
    flex-direction: column;
    gap: 3.125rem 0;
  }
}

.c-sub-template__content {
  width: 76.4%;
}
@media screen and (max-width: 767px) {
  .c-sub-template__content {
    width: 100%;
  }
}

.p-404__inner {
  margin-top: 8.125rem;
}
@media screen and (max-width: 767px) {
  .p-404__inner {
    margin-top: 6.25rem;
  }
}

.p-404__section-course {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-404__section-course {
    margin-top: 3.125rem;
  }
}

.p-404__title {
  font-size: 1.625rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-404__title {
    font-size: clamp(0.9375rem, 0.6243rem + 1.566vw, 1.375rem);
  }
}

.p-404__section-course .p-404__title {
  font-size: 2rem;
  font-weight: 700;
  color: #317EE6;
}
@media screen and (max-width: 767px) {
  .p-404__section-course .p-404__title {
    font-size: clamp(1.0625rem, 0.8388rem + 1.1186vw, 1.375rem);
  }
}

.p-404__btn {
  margin: 3.125rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-404__btn {
    margin: 1.875rem auto 0;
  }
}

.p-404__btn-text {
  flex: 1;
  text-align: center;
}

.p-404__section-course .p-404__btn {
  color: #317EE6;
  background-color: #C9FF4E;
}

.p-circle {
  position: absolute;
  right: 8.5rem;
  bottom: 3.25rem;
  width: 88px;
  height: 88px;
  z-index: 80;
}
@media screen and (max-width: 767px) {
  .p-circle {
    width: 62px;
    height: 62px;
    bottom: -1.8vh;
    right: 2.125rem;
  }
}

.p-circle__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-circle__img {
    max-width: 10px;
  }
}

.p-circle__text {
  position: relative;
  width: 100%;
  height: 100%;
  animation: rotate-circle 18s linear infinite;
  border-radius: 50%;
  background-color: #C9FF4E;
}

.p-circle__text span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 0 0;
  font-size: 0.625rem;
  color: #444;
  white-space: pre;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-circle__text span {
    font-size: 0.375rem;
  }
}

@keyframes rotate-circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.p-clause__wrap:nth-of-type(n + 2) {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-clause__wrap:nth-of-type(n + 2) {
    margin-top: 3.125rem;
  }
}

.p-clause__link-wrap {
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-clause__link-wrap {
    margin-top: 1.875rem;
  }
}

.p-clause__link-wrap a {
  margin-top: 0.75rem;
}

.p-company__wrap:nth-of-type(n + 2) {
  margin-top: 8.125rem;
}
@media screen and (max-width: 767px) {
  .p-company__wrap:nth-of-type(n + 2) {
    margin-top: 6.25rem;
  }
}

.p-company__flex {
  display: flex;
  gap: 3.5625rem;
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-company__flex {
    flex-direction: column-reverse;
    margin-top: 3.125rem;
  }
}

.p-company__flex-left {
  width: 59%;
}
@media screen and (max-width: 767px) {
  .p-company__flex-left {
    width: 100%;
  }
}

.p-company__title {
  font-size: 1.5rem;
  color: #317EE6;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-company__title {
    font-size: 1.25rem;
  }
}

.p-company__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-company__text {
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }
}

.p-company__text:nth-of-type(n + 2) {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-company__text:nth-of-type(n + 2) {
    margin-top: 0.625rem;
  }
}

.p-company__flex-right {
  width: 36%;
}
@media screen and (max-width: 767px) {
  .p-company__flex-right {
    width: 100%;
  }
}

.p-company__img {
  max-width: 21.375rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-company__img {
    max-width: 50%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 374px) {
  .p-company__img {
    max-width: 70%;
  }
}

.p-company__ceo {
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-company__ceo {
    margin-top: 0.625rem;
  }
}

.p-company__ceo-title {
  font-size: 1rem;
  font-weight: 400;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-company__ceo-title {
    font-size: 0.875rem;
  }
}

.p-company__ceo-text {
  font-size: 2.0625rem;
  font-weight: 700;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-company__ceo-text {
    font-size: 1.25rem;
  }
}

.p-company__list {
  margin-top: 4.5625rem;
}
@media screen and (max-width: 767px) {
  .p-company__list {
    margin-top: 3.125rem;
  }
}

.p-company__list dl {
  width: 100%;
  display: flex;
  gap: 0 0.625rem;
}

.p-company__list dt {
  width: 12.8%;
  font-size: 1rem;
  color: #1A2A55;
  font-weight: 500;
  line-height: 2;
  padding: 0.90625rem 0;
  border-bottom: solid 1px #317EE6;
}
@media screen and (max-width: 767px) {
  .p-company__list dt {
    width: 30%;
    font-size: 0.875rem;
  }
}

.p-company__list dl:nth-of-type(1) dt {
  border-top: solid 1px #317EE6;
}

.p-company__list dd {
  width: 75%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  padding: 0.90625rem 0.625rem;
  border-bottom: solid 1px #CCC;
}
@media screen and (max-width: 767px) {
  .p-company__list dd {
    width: 70%;
    font-size: 0.875rem;
  }
}

.p-company__list dd:nth-of-type(1) {
  border-top: solid 1px #CCC;
}

.p-company__map {
  margin-top: 2.6875rem;
}
@media screen and (max-width: 767px) {
  .p-company__map {
    margin-top: 1.875rem;
  }
}

.p-company__address-wrap address {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-company__address-wrap address {
    font-size: 0.875rem;
  }
}

.p-contact__title {
  font-size: 1rem;
  line-height: 2;
}

.p-contact__wrap {
  margin-top: 4.625rem;
  border-radius: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-contact__wrap {
    margin-top: 3.125rem;
  }
}

.p-contact__links {
  margin-top: 2rem;
  box-shadow: 0 0.125rem 0.625rem rgba(204, 204, 204, 0.56);
  background-color: #FFF;
  padding: 3.1875rem 1.25rem 2.875rem;
  margin-top: 2rem;
}

.p-contact__links-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 0.875rem;
  color: #317EE6;
  font-size: 2.375rem;
  font-family: "Readex Pro", sans-serif;
  line-height: 1.4;
}

.p-contact__links-item span {
  min-width: 7.75rem;
  color: #1A2A55;
  font-size: 0.875rem;
  font-weight: 700;
  background-color: #C9FF4E;
  padding: 0.4375rem 1.25rem;
  border-radius: 1.0625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-contact__mail-wrap {
  display: flex;
  justify-content: center;
  margin-top: 0.9375rem;
  gap: 0 2.6875rem;
}
@media screen and (max-width: 767px) {
  .p-contact__mail-wrap {
    flex-direction: column;
    gap: 0.625rem 0;
    align-items: center;
  }
}

.p-contact__mail-text {
  font-size: 0.875rem;
  font-weight: 400;
}

.p-contact__mail-link {
  font-size: 0.875rem;
  font-weight: 400;
  font-family: "Readex Pro", sans-serif;
}

.p-contact__form-area {
  padding: 4.5625rem 3rem 2.3125rem;
  margin-top: 2.625rem;
  box-shadow: 0 0.125rem 0.625rem rgba(204, 204, 204, 0.56);
}
@media screen and (max-width: 767px) {
  .p-contact__form-area {
    padding: 1.5625rem;
    margin-top: 1.875rem;
  }
}

.p-form__wrap {
  display: flex;
  justify-content: space-between;
  gap: 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-form__wrap {
    flex-direction: column;
  }
}

.p-form__wrap dt {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 0.625rem;
  font-size: 1rem;
  color: #1A2A55;
  line-height: 2;
  padding: 2rem 0;
  border-bottom: 1px solid #1A2A55;
}
@media screen and (max-width: 767px) {
  .p-form__wrap dt {
    width: 100%;
    padding: 1.25rem 0;
  }
}

.p-form__wrap:nth-of-type(1) dt {
  border-top: 1px solid #1A2A55;
}

.p-form__icon {
  width: 3.1875rem;
  color: #ADADAD;
  font-size: 0.8125rem;
  background-color: #E7E7EA;
  text-align: center;
  border-radius: 0.1875rem;
}

.p-form__icon-required {
  width: 3.1875rem;
  color: #FFF;
  font-size: 0.8125rem;
  background-color: #EF5050;
  text-align: center;
  border-radius: 0.1875rem;
}

.p-form__wrap.p-form__wrap--textarea .p-form__label {
  margin-top: 0.625rem;
}

.p-form__wrap dd {
  width: 68%;
  padding: 1.75rem 0;
  border-bottom: 1px solid #D5D5D5;
}
@media screen and (max-width: 767px) {
  .p-form__wrap dd {
    width: 100%;
    padding: 1.25rem 0;
  }
}

.p-form__wrap:nth-of-type(1) dd {
  border-top: 1px solid #D5D5D5;
}

.p-form__wrap dd input,
.p-form__wrap dd textarea {
  width: 85%;
  font-size: 1rem;
  line-height: 1.875;
  border: solid 1px #ADADAD;
  border-radius: 0.125rem;
  padding: 0.5rem 1rem;
}
@media screen and (max-width: 767px) {
  .p-form__wrap dd input,
  .p-form__wrap dd textarea {
    width: 100%;
  }
}

.p-form__wrap dd .p-form__input-email-check {
  margin-top: 0.875rem;
}

.p-form__wrap dd input::-moz-placeholder, .p-form__wrap dd textarea::-moz-placeholder {
  color: #ACA9A9;
  font-size: 1rem;
  line-height: 1.875;
  font-weight: 400;
}

.p-form__wrap dd input::placeholder,
.p-form__wrap dd textarea::placeholder {
  color: #ACA9A9;
  font-size: 1rem;
  line-height: 1.875;
  font-weight: 400;
}

.p-form__wrap .p-form__input-small input {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-form__wrap .p-form__input-small input {
    width: 100%;
  }
}

.p-form__input input {
  padding: 0.5rem 0.9375rem;
  width: 100%;
  font-size: 0.9375rem;
  line-height: 1;
  border: 1px solid #FFF;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #FFF;
  background-image: none;
  border-radius: 0.625rem;
}

.p-form-input input:focus {
  border: 1px solid #317EE6;
  box-shadow: none;
  outline: none;
}

/*ラジオボタン*/
.p-form-radio label {
  font-size: 1rem;
  color: #1A2A55;
  font-weight: 400;
  line-height: 2;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-form-radio label {
    display: inline-block;
  }
}

.p-form-radio label:not(:first-of-type) {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-form-radio label:not(:first-of-type) {
    margin-top: 0;
    margin-left: 1.875rem;
  }
}

.p-form-radio input {
  display: none;
}

.p-form-radio input + span {
  display: inline-block;
  padding: 0 0 0 1.5625rem;
  position: relative;
  font-size: 0.9375rem;
  line-height: 1;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-form-radio input + span {
    display: block;
  }
}

.p-form-radio input + span::before {
  content: "";
  width: 1.0625rem;
  height: 1.0625rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #FFF;
  border: 1px solid #A3A3A3;
  border-radius: 50%;
}

.p-form-radio input + span::after {
  content: "";
  padding: 0.125rem;
  width: 0.5625rem;
  height: 0.5625rem;
  position: absolute;
  top: 50%;
  left: 0.25rem;
  transform: translateY(-50%);
  border: 1px solid transparent;
  border-radius: 50%;
  background: #1A2A55;
  opacity: 0;
  transition: 0.3s;
}

.p-form-radio input:checked + span::after {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .p-form-radio .wpcf7-radio {
    display: flex;
    flex-direction: column;
    gap: 0.625rem 0;
  }
}

.wpcf7-radio .wpcf7-list-item {
  display: inline;
  margin: 0;
}

/*textarea*/
.p-form-textarea textarea {
  padding: 0.5rem 0.9375rem;
  width: 100%;
  height: 21.875rem;
  font-size: 0.9375rem;
  border-radius: 0.625rem;
  border: 1px solid #FFF;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #FFF;
  background-image: none;
}

.p-form-textarea textarea:focus {
  border: 1px solid #317EE6;
  box-shadow: none;
  outline: none;
}

/*checkbox*/
.p-contact__form-privacy {
  margin: 3.5625rem auto 0;
  text-align: center;
  font-size: 0.9375rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-contact__form-privacy {
    margin: 1.875rem auto 0;
  }
}

.p-contact__form-privacy-inner {
  position: relative;
}

.p-contact__form-privacy input {
  display: none;
}

.p-contact__form-privacy span {
  color: #6C6B6B;
  font-size: 0.75rem;
  font-weight: 400;
}

.p-contact__form-privacy a {
  font-size: 0.75rem;
  font-weight: 400;
  color: #317EE6;
  text-decoration: underline;
}

.p-contact__form-privacy input + span::before {
  content: "";
  position: absolute;
  top: 0rem;
  left: -0.875rem;
  background: #FFF;
  border: 1px solid #A3A3A3;
  border-radius: 0.125rem;
  display: block;
  width: 1.125rem;
  height: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-contact__form-privacy input + span::before {
    top: 0.125rem;
    left: -0.625rem;
  }
}

.p-contact__form-privacy input + span::after {
  content: "";
  position: absolute;
  top: 0.4375rem;
  left: -0.5625rem;
  display: block;
  width: 0.625rem;
  height: 0.4375rem;
  background: url("../images/contact/contact-check.svg") no-repeat center center/contain;
  transition: 0.3s;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-contact__form-privacy input + span::after {
    top: 0.425rem;
    left: -0.475rem;
  }
}

.p-contact__form-privacy input:checked + span::after {
  opacity: 1;
}

.p-contact__form-privacy input + a {
  text-decoration: underline;
}

.p-contact__form-privacy input {
  border: solid 1px #444;
}

/*submit*/
.p-form-submit {
  position: relative;
  max-width: 18.75rem;
  width: 21.43vw;
  margin: 1.5625rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-form-submit {
    width: 50vw;
  }
}

.p-form-submit input {
  font-size: clamp(0.625rem, 0.4302rem + 0.4058vw, 0.9375rem);
  color: #FFF;
  width: 100%;
  background-color: #317EE6;
  border: none;
  border-radius: 2.5rem;
  padding: 1.4375rem 3.36vw;
  text-align: left;
  position: relative;
  display: inline-block;
  background-image: none;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-form-submit input {
    font-size: 3.1vw;
    padding: 1.4375rem 4.36vw;
  }
}

.p-form-submit-text {
  position: absolute;
  top: 1.4375rem;
  left: 52%;
  transform: translateX(-50%);
  z-index: 10;
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .p-form-submit-text {
    font-size: 2.63vw;
    top: 27%;
    left: 22.5vw;
  }
}

.p-form-submit-icon {
  position: absolute;
  top: 18%;
  right: 9%;
}
@media screen and (max-width: 767px) {
  .p-form-submit-icon {
    top: 3.5vw;
    right: 3.7vw;
  }
}

.p-form-submit .c-btn.c-btn--white {
  padding: 0.75rem 2.625rem;
  border: solid 1px #317EE6;
}

.p-form-submit .wpcf7-spinner {
  display: block;
  margin: 0 auto;
}

.p-form-submit input:hover,
.p-form-submit input:focus {
  outline: none;
}

.p-form-submit input:hover {
  opacity: 0.8;
}

.p-form-submit input::-moz-foucus-inner {
  padding: 0;
  border: none;
}

/*エラー時のスタイル*/
.wpcf7-not-valid-tip {
  font-size: 1rem;
  line-height: 1.875;
}

.p-fixed-contact-button {
  position: fixed;
  top: 21.25rem;
  right: 0;
  z-index: 2000;
  padding: 1.25rem;
  writing-mode: vertical-rl;
  font-size: 1rem;
  font-weight: 700;
  color: #FFF;
  background: linear-gradient(#1462cc 0%, #7bebff 100%);
  border-radius: 0.25rem 0 0 0.25rem;
  border: none;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-fixed-contact-button {
    display: none;
  }
}

.p-fixed-contact-button::before {
  display: inline-block;
  content: "";
  width: 1.125rem;
  height: 1.25rem;
  background: url("../images/common/side-tab-icon.svg") no-repeat center/contain;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-fixed-contact-button::before {
    margin-bottom: 0;
    width: 1.25rem;
    height: 1.375rem;
  }
}

.p-fixed-header {
  position: fixed;
  top: -5rem;
  left: 0;
  z-index: 900;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
}

.p-fixed-header.is-show {
  top: 0;
  visibility: visible;
}

.p-flow__wrap {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-flow__wrap {
    margin-top: 1.875rem;
  }
}

.p-flow__sub-title {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  margin-top: 0.625rem;
}

.p-flow__content:nth-of-type(n + 2) {
  margin-top: 5.3125rem;
}
@media screen and (max-width: 767px) {
  .p-flow__content:nth-of-type(n + 2) {
    margin-top: 3.125rem;
  }
}

.p-flow__content h2:nth-of-type(n + 2) {
  margin-top: 10.6875rem;
}
@media screen and (max-width: 767px) {
  .p-flow__content h2:nth-of-type(n + 2) {
    margin-top: 6.25rem;
  }
}

.p-flow__content h2 + p {
  margin-top: 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-flow__content h2 + p {
    margin-top: 0.625rem;
  }
}

.p-flow__content h3:nth-of-type(1) {
  margin-top: 2.6875rem;
}
@media screen and (max-width: 767px) {
  .p-flow__content h3:nth-of-type(1) {
    margin-top: 3.125rem;
  }
}

.p-flow__content h3 {
  font-size: 1.875rem;
  font-weight: 700;
  padding-left: 1.5rem;
  margin-top: 7.5rem;
  border-left: solid 0.1875rem #317EE6;
}
@media screen and (max-width: 767px) {
  .p-flow__content h3 {
    font-size: clamp(1.0625rem, 0.7493rem + 1.566vw, 1.5rem);
    margin-top: 3.125rem;
  }
}

.p-flow__content h3 + p {
  margin-top: 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-flow__content h3 + p {
    margin-top: 0.625rem;
  }
}

.p-flow__content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  padding-bottom: 1rem;
  border-bottom: 1px solid transparent;
  -o-border-image: linear-gradient(to right, #317EE6 0 120px, #CCC 120px 100%) 1;
     border-image: linear-gradient(to right, #317EE6 0 120px, #CCC 120px 100%) 1;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-flow__content h4 {
    font-size: 1.25rem;
    margin-top: 1.875rem;
  }
}

.p-flow__content h4 + p {
  margin-top: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-flow__content h4 + p {
    margin-top: 1.25rem;
  }
}

.p-flow__text-wrap {
  margin-top: 2.625rem;
}
@media screen and (max-width: 767px) {
  .p-flow__text-wrap {
    margin-top: 0.625rem;
  }
}

.p-flow__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-flow__text {
    margin-top: 1.25rem;
  }
}

.p-flow__contact-link.p-footer__top-contact-link {
  max-width: 35.9375rem;
  margin-top: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-flow__contact-link.p-footer__top-contact-link {
    font-size: clamp(0.75rem, 0.571rem + 0.8949vw, 1rem);
    gap: 0 0.625rem;
    margin-top: 1.25rem;
  }
}

.p-flow__tel-link.p-footer__top-tel-link {
  justify-content: flex-start;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-flow__tel-link.p-footer__top-tel-link {
    font-size: 1.5rem;
    margin-top: 1.25rem;
  }
}

.p-flow__title {
  font-size: 1.25rem;
  color: #317EE6;
  font-weight: 700;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-flow__title {
    font-size: clamp(0.9375rem, 0.7138rem + 1.1186vw, 1.25rem);
    margin-top: 1.875rem;
  }
}

.p-flow__title + p {
  margin-top: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-flow__title + p {
    margin-top: 0.625rem;
  }
}

.p-flow__list {
  margin-top: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .p-flow__list {
    margin-top: 0.625rem;
  }
}

.p-flow__list li {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
  margin-left: 0.875rem;
}

.p-flow__list li::before {
  content: "";
  position: absolute;
  top: 0.8125rem;
  left: -0.9375rem;
  width: 0.3125rem;
  height: 0.3125rem;
  background-color: #444;
  border-radius: 50%;
}

.p-flow__table-wrap + p {
  margin-top: 3.625rem;
}
@media screen and (max-width: 767px) {
  .p-flow__table-wrap + p {
    margin-top: 0.625rem;
  }
}

@media screen and (max-width: 767px) {
  .p-flow__content h3 + .p-flow__title {
    margin-top: 1.875rem;
  }
}

/* ---------------------------------
    取消料金テーブル：ベーススタイル
---------------------------------- */
.p-flow__table-wrap {
  margin-top: 3.125rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 767px) {
  .p-flow__table-wrap {
    margin-top: 1.875rem;
  }
}

.p-flow__table {
  width: 100%;
  min-width: 37.5rem;
  border-collapse: collapse;
  font-size: 1rem;
  line-height: 1.6;
}

.p-flow__table th {
  background-color: #C9FF4E;
  border-top: 1px solid #CCC;
}
@media screen and (max-width: 767px) {
  .p-flow__table th {
    border-right: 1px solid #CCC;
  }
}

.p-flow__table th,
.p-flow__table td {
  width: 50%;
  font-size: 1.0625rem;
  font-weight: 500;
  padding: 1.125rem 2.0625rem;
  border-left: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  text-align: left;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-flow__table th,
  .p-flow__table td {
    font-size: 0.875rem;
  }
}

.p-flow__table th:last-child,
.p-flow__table td:last-child {
  border-right: 1px solid #CCC;
}

.p-flow__table tr {
  width: 50%;
}

.p-footer {
  margin-top: 9.6875rem;
}
@media screen and (max-width: 767px) {
  .p-footer {
    margin-top: 6.25rem;
  }
}

/*--------------------
フッター上部
--------------------*/
.p-footer__top {
  position: relative;
  background-color: #EDF4FC;
  padding: 4.75rem 0;
}
@media screen and (max-width: 767px) {
  .p-footer__top {
    padding: 3.125rem 0;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__top-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem 0;
  }
}

.p-footer__top-img {
  position: absolute;
  top: 13.125rem;
  left: 0;
  max-width: 37.375rem;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-right-radius: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__top-img {
    display: none;
  }
}

.p-footer__top-wrap {
  width: 80%;
  margin-left: auto;
}
@media screen and (max-width: 1999px) {
  .p-footer__top-wrap {
    width: 49.6%;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__top-wrap {
    width: 100%;
  }
}

.p-footer__top-text {
  font-size: 1rem;
  margin-top: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-footer__top-text {
    margin-top: 0.625rem;
  }
}

.p-footer__top-tel-wrap {
  margin-top: 3.25rem;
}
@media screen and (max-width: 767px) {
  .p-footer__top-tel-wrap {
    margin-top: 1.875rem;
  }
}

.p-footer__top-title {
  font-size: 1.1875rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-footer__top-title {
    font-size: 1rem;
  }
}

.p-footer__top-tel-links {
  background-color: #FFF;
  padding: 1.5rem 1.25rem;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-footer__top-tel-links {
    padding: 1.5625rem;
    margin-top: 0.625rem;
  }
}

.p-footer__top-tel-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 0.875rem;
  color: #317EE6;
  font-size: 2.375rem;
  font-family: "Readex Pro", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-footer__top-tel-link {
    font-size: 1.75rem;
    flex-wrap: wrap;
  }
}

.p-footer__top-tel-link span {
  min-width: 7.75rem;
  color: #1A2A55;
  font-size: 0.875rem;
  font-weight: 700;
  background-color: #C9FF4E;
  padding: 0.4375rem 1.25rem;
  border-radius: 1.0625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-footer__top-mail-wrap {
  display: flex;
  justify-content: center;
  margin-top: 0.9375rem;
  gap: 0 2.6875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__top-mail-wrap {
    flex-direction: column;
    gap: 0.625rem 0;
    align-items: center;
  }
}

.p-footer__top-mail-text {
  font-size: 0.875rem;
  font-weight: 400;
}

.p-footer__top-mail-link {
  font-size: 0.875rem;
  font-weight: 400;
  font-family: "Readex Pro", sans-serif;
}

.p-footer__top-contact-wrap {
  margin-top: 2.6875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__top-contact-wrap {
    margin-top: 1.875rem;
  }
}

.p-footer__top-contact-link {
  display: flex;
  align-items: center;
  gap: 0 1.375rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #FFF;
  background: linear-gradient(to left, #317ee6 0%, #15c4cc 44.88%, #0dcbc3 100%);
  padding: 1.625rem 1.25rem 1.625rem 1.5625rem;
  margin-top: 1rem;
  border-radius: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-footer__top-contact-link {
    gap: 0 0.625rem;
    margin-top: 0.625rem;
    font-size: 1rem;
  }
}

.p-footer__top-contact-link::before {
  display: inline-block;
  content: "";
  width: 1.125rem;
  height: 1.25rem;
  background: url("../images/common/header-icon4.svg") no-repeat center/contain;
}

.p-footer__top-contact-link span {
  position: relative;
  display: inline-block;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  background-color: #FFF;
  margin-left: auto;
}

.p-footer__top-contact-link span img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 0.625rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

/*--------------------
フッター下部
--------------------*/
.p-footer__bottom {
  background-color: #1A2A55;
  padding: 12.5625rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__bottom {
    padding: 3.125rem 0;
  }
}

.p-footer__wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-footer__wrap {
    gap: 3.125rem 0;
    flex-direction: column-reverse;
  }
}

/*左側*/
.p-footer__logo {
  display: grid;
  width: 100%;
  max-width: 17.375rem;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    max-width: 100%;
  }
}

.p-footer__logo a {
  display: flex;
  align-items: center;
  gap: 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__logo a {
    padding: 0.5rem 0;
  }
}

.p-footer__logo-icon {
  max-width: 5.1875rem;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer__logo-text {
  max-width: 11.4375rem;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer__logo-wrap {
  margin-top: 0.75rem;
}

.p-footer__address-wrap {
  margin-top: 1.875rem;
}

.p-footer__address-item:nth-of-type(n + 2) {
  margin-top: 1.75rem;
}

.p-footer__address-title {
  color: #FFF;
  font-size: 0.875rem;
  font-weight: 700;
}

.p-footer__address {
  color: #FFF;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 0.5rem;
}

.p-footer__info {
  display: flex;
  align-items: center;
  gap: 0 0.5rem;
}

.p-footer__tel {
  color: #FFF;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 0.5rem;
}

.p-footer__fax {
  color: #FFF;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 0.5rem;
}

.p-footer__copyright {
  color: #95989A;
  font-size: 0.6875rem;
  font-family: "Readex Pro", sans-serif, "Noto Sans JP", sans-serif;
  font-weight: 300;
  display: block;
  line-height: 1;
  margin-top: 5.8125rem;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    margin-top: 1.5625rem;
    text-align: center;
  }
}

/*右側*/
.p-footer__right {
  max-width: 39.375rem;
  width: 100%;
}

.p-footer__nav-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem 0.78125rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-footer__nav-item a {
  color: #FFF;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 1.4375rem 1.5625rem 1.3125rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem 0;
  line-height: 1;
  background-color: #26396C;
  border-radius: 0.25rem;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item a {
    font-size: clamp(0.625rem, 0.2671rem + 1.7897vw, 1.125rem);
    padding: 0.9375rem;
  }
}

.p-footer__nav-item a .c-heading__en-title {
  font-size: 0.6875rem;
}

.p-footer__bottom-nav {
  margin-top: 1.875rem;
}

.p-footer__bottom-nav-items {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-footer__bottom-nav-items {
    gap: 1.25rem 0.625rem;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 374px) {
  .p-footer__bottom-nav-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .p-header__bottom-nav-item {
    min-width: 20%;
  }
}

.p-footer__bottom-nav-item a {
  display: flex;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #FFF;
  padding: 0 0.5625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__bottom-nav-item a {
    padding: 0.75rem 0;
    justify-content: center;
  }
}

.p-header__bottom-nav-item a:nth-of-type(1) {
  padding-left: 0;
}

.p-footer__button-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3.25rem;
}
@media screen and (max-width: 767px) {
  .p-footer__button-area {
    flex-direction: column;
    gap: 1.25rem 0;
    margin-top: 1.875rem;
  }
}

.p-footer__button-area-inner {
  display: flex;
  align-items: center;
  gap: 0 1rem;
}
@media screen and (max-width: 767px) {
  .p-footer__button-area-inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
  }
}

.p-footer__button-area .p-footer__top-contact-link {
  max-width: 18.25rem;
  font-size: 1rem;
  padding: 1.3125rem;
  margin-top: 0;
}

.p-footer__policy {
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  padding: 0.625rem 0;
}
@media screen and (max-width: 767px) {
  .p-footer__policy {
    font-size: 0.75rem;
  }
}

.p-fv {
  position: relative;
}

.p-fv__slide {
  position: relative;
}

.p-fv__slide-text {
  color: #FFF;
  font-size: 0.875rem;
  position: absolute;
  bottom: 6.25rem;
  left: 11.5625rem;
  text-shadow: 0px 0.125rem 0.25rem rgba(0, 0, 0, 0.75);
}
@media screen and (max-width: 767px) {
  .p-fv__slide-text {
    display: none;
  }
}

.p-fv__swipe {
  position: relative;
}

.p-fv__swiper,
.p-fv__swiper .p-fv__slide-img {
  height: inherit;
  min-height: inherit;
}

.p-fv__swiper .p-fv__slide-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 33.4375rem;
}
@media screen and (max-width: 767px) {
  .p-fv__swiper .p-fv__slide-img {
    aspect-ratio: initial;
  }
}

.p-fv__swiper .swiper-slide.swiper-slide-active .p-fv__slide-img,
.p-fv__swiper .swiper-slide.swiper-slide-duplicate-active .p-fv__slide-img,
.p-fv__swiper .swiper-slide.swiper-slide-prev .p-fv__slide-img {
  animation: scale 8s linear 0s normal both;
}

@keyframes scale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.p-fv__flame {
  width: 100%;
  height: inherit;
  min-height: 33.4375rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  aspect-ratio: 1400/802;
}
@media screen and (max-width: 767px) {
  .p-fv__flame {
    aspect-ratio: initial;
  }
}

.p-fv__flame-inner {
  width: 94%;
  position: absolute;
  right: 0;
  bottom: -2vh;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: right;
}
@media screen and (max-width: 767px) {
  .p-fv__flame-inner {
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    top: 6.25rem;
    bottom: initial;
  }
}

.p-fv__flame-text {
  max-width: 35.9vw;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-fv__flame-text {
    max-width: 20.625rem;
    margin: 0 auto;
  }
}

.p-fv__flame-img {
  max-width: 56.1vw;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-fv__flame-img {
    max-width: 19rem;
    margin: 2rem auto 0;
  }
}

.p-fv__flame-bg {
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 16.75rem;
  aspect-ratio: 1400/268;
  background: url("../images/top/fv-flame-bg.svg") no-repeat center bottom/cover;
}
@media screen and (max-width: 767px) {
  .p-fv__flame-bg {
    height: auto;
    aspect-ratio: 375/100;
    background: url("../images/top/fv-flame-bg-sp.svg") no-repeat center bottom/cover;
  }
}

.p-fv__flame-decoration {
  max-width: 17.625rem;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 4;
  background: url("../images/top/fv-flame-decoration.svg") repeat-y right top/100% auto;
}
@media screen and (max-width: 767px) {
  .p-fv__flame-decoration {
    max-width: 8.5rem;
    background: url("../images/top/fv-flame-decoration-sp.svg") repeat-y right top/100% auto;
  }
}

/*ページネーション*/
.p-fv__slide .swiper-pagination {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem 0;
  position: absolute;
  top: 67%;
  transform: translateY(-50%);
  left: 0;
  padding-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-fv__slide .swiper-pagination {
    top: 73%;
    padding-left: 0.5rem;
  }
}

.p-fv__slide .swiper-pagination-bullet {
  width: 0.375rem;
  height: 0.375rem;
  background-color: #CCC;
  opacity: 1;
}

.p-fv__slide .swiper-pagination-bullet-active {
  background: linear-gradient(#EF5050 0%, #FF7E7E 100%);
}

.p-guide__title {
  font-size: 1rem;
  line-height: 2;
  margin-top: 2.6875rem;
}
@media screen and (max-width: 767px) {
  .p-guide__title {
    margin-top: 1.25rem;
  }
}

.p-guide__wrap {
  margin-top: 8.125rem;
}
@media screen and (max-width: 767px) {
  .p-guide__wrap {
    margin-top: 6.25rem;
  }
}

.p-guide__wrap:nth-of-type(1) {
  margin-top: 0;
}

.p-guide__model-link-wrap {
  width: 82%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 1.875rem;
  margin-top: 4.875rem;
}
@media screen and (max-width: 767px) {
  .p-guide__model-link-wrap {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1rem;
    margin-top: 3.125rem;
  }
}

.p-guide__model-link {
  font-size: 0.90625rem;
  font-weight: 500;
}

.p-guide__model-link.c-sub-heading-under {
  position: relative;
  display: flex;
  padding: 1rem 0.625rem;
  font-size: 0.90625rem;
  -o-border-image: linear-gradient(to right, #317EE6 0 3.25rem, #CCC 3.25rem 100%) 1;
     border-image: linear-gradient(to right, #317EE6 0 3.25rem, #CCC 3.25rem 100%) 1;
}

.p-guide__model-link .c-btn-icon {
  background-color: #EDF5FD;
}

.p-guide__model-wrap {
  margin-top: 3.3125rem;
}

.p-guide__model-wrap:nth-of-type(n + 2) {
  margin-top: 9.5rem;
}
@media screen and (max-width: 767px) {
  .p-guide__model-wrap:nth-of-type(n + 2) {
    margin-top: 6.25rem;
  }
}

.p-guide__model-wrap h3 {
  font-size: 2.125rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-guide__model-wrap h3 {
    font-size: 1.5rem;
  }
}

.p-guide__model-content {
  margin-top: 2.625rem;
}
@media screen and (max-width: 767px) {
  .p-guide__model-content {
    margin-top: 1.875rem;
  }
}

.p-guide__model-content-list {
  width: 100%;
  margin-top: 1.375rem;
}

.p-guide__model-content-list .p-guide__model-content-list-item {
  border-radius: 0.3125rem;
  box-shadow: 0px 0.125rem 0.625rem rgba(204, 204, 204, 0.56);
}

.p-guide__model-content-list .p-guide__model-content-list-item:nth-of-type(n + 2) {
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-guide__model-content-list .p-guide__model-content-list-item:nth-of-type(n + 2) {
    margin-top: 3.125rem;
  }
}

.p-guide__model-content-jaTitle {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.2307692308;
}
@media screen and (max-width: 767px) {
  .p-guide__model-content-jaTitle {
    font-size: 1.25rem;
  }
}

.p-guide__model-content-title-wrap {
  padding: 1.6875rem 3rem;
}
@media screen and (max-width: 767px) {
  .p-guide__model-content-title-wrap {
    padding: 1.25rem 1.875rem;
  }
}

.p-guide__model-content-enTitle {
  display: block;
  position: relative;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "Readex Pro", sans-serif;
  color: #317EE6;
  padding-left: 0.5rem;
  margin-top: 0.5rem;
}

.p-guide__model-content-enTitle::before {
  content: "";
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #317EE6;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0%;
  left: -0.25rem;
  border-radius: 50%;
}

/*スライダー*/
.p-guide__model-content-slide {
  position: relative;
}

.p-guide__model-content-slide-item {
  position: relative;
}

.p-guide__model-content-slide-img {
  max-width: 100%;
  height: auto;
  aspect-ratio: 960/526;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-guide__model-content-slide-text {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  color: #FFF;
  font-size: 0.84375rem;
  letter-spacing: 0.02em;
  text-align: center;
  background: linear-gradient(transparent 0%, #1A2A55 100%);
  padding: 1rem 0 0.875rem;
}

/*スライダー サムネイル*/
.p-guide__slider-thumbnail {
  display: flex;
  position: relative;
  width: 100%;
  margin: 0;
}

.p-guide__slider-thumbnail .swiper-wrapper {
  width: 90%;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-guide__slider-thumbnail .swiper-wrapper {
    width: 84%;
  }
}

.p-guide__slider-thumbnail .swiper-slide {
  width: 9%;
  opacity: 0.5;
  transition: opacity 0.3s;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-guide__slider-thumbnail .swiper-slide {
    width: 16.8%;
    max-height: 5.8125rem;
  }
}

.p-guide__slider-thumbnail .swiper-slide:hover {
  opacity: 1;
  cursor: pointer;
}

.p-guide__slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.p-guide__slider-thumbnail .swiper-slide .p-guide__slider-thumbnail-img {
  max-width: 100%;
  height: auto;
  aspect-ratio: 86/47;
  -o-object-fit: cover;
     object-fit: cover;
}

/*スライダーのサムネイル OS標準の選択機能でハイライトされるのを防止*/
.p-guide__slider-thumbnail .swiper-slide {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none; /* テキスト選択を無効 */
  -webkit-user-drag: none; /* 画像のドラッグを無効 (Safari) */
  -webkit-tap-highlight-color: transparent; /* タップ時のハイライトも消す (Safari/Chrome モバイル) */
}

/*スライダーの矢印*/
.p-guide__slider-button-wrap {
  width: 10%;
  position: absolute;
  top: 0;
  right: 0;
  aspect-ratio: 96/52;
  height: auto;
  max-height: 3.1875rem;
}
@media screen and (max-width: 767px) {
  .p-guide__slider-button-wrap {
    width: 17%;
    max-height: 5.8125rem;
  }
}

.p-guide__model-content-slide .swiper-button-prev,
.p-guide__model-content-slide .swiper-button-next {
  top: initial;
  width: 50%;
  height: 100%;
  background-color: #C9FF4E;
  bottom: 0;
  transition: opacity 0.3s;
}

.p-guide__model-content-slide .swiper-button-prev:hover,
.p-guide__model-content-slide .swiper-button-next:hover {
  opacity: 0.8;
}

.p-guide__model-content-slide .swiper-button-prev {
  left: 0;
}

.p-guide__model-content-slide .swiper-button-next {
  right: 0;
}

.p-guide__model-content-slide .swiper-button-prev::after,
.p-guide__model-content-slide .swiper-button-next::after {
  content: "";
  width: 0.8125rem;
  height: 0.625rem;
}

.p-guide__model-content-slide .swiper-button-prev::after {
  background: url("../images/common/slide-arrow-left.svg") no-repeat center center/contain;
}

.p-guide__model-content-slide .swiper-button-next::after {
  background: url("../images/common/slide-arrow-right.svg") no-repeat center center/contain;
}

.p-guide__model-content-slide .swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

/*スペック*/
.p-guide__model-info {
  width: 83%;
  margin: 3.9375rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-guide__model-info {
    width: 100%;
    margin: 3.125rem auto 0;
  }
}

.p-guide__model-spec,
.p-guide__model-equipment {
  display: flex;
  gap: 0 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-guide__model-spec,
  .p-guide__model-equipment {
    flex-direction: column;
    gap: 1.875rem 0;
  }
}

.p-guide__model-spec-title,
.p-guide__model-equipment-title {
  min-width: 7.1875rem;
  color: #317EE6;
  font-size: 1.25rem;
  font-weight: 700;
  padding-right: 2.1875rem;
  border-right: solid 1px #CCC;
}
@media screen and (max-width: 767px) {
  .p-guide__model-spec-title,
  .p-guide__model-equipment-title {
    font-size: 1rem;
    border-right: none;
    border-bottom: solid 1px #CCC;
    padding-right: 0;
    padding-left: 1.25rem;
    padding-bottom: 1.25rem;
  }
}

.p-guide__model-spec-wrap,
.p-guide__model-equipment-wrap {
  width: 69%;
}
@media screen and (max-width: 767px) {
  .p-guide__model-spec-wrap,
  .p-guide__model-equipment-wrap {
    width: 100%;
    padding: 0 1.25rem;
  }
}

.p-guide__model-spec-wrap dl {
  display: flex;
  justify-content: space-between;
  gap: 0 0.625rem;
}

.p-guide__model-spec-wrap dl:nth-of-type(n + 2) {
  margin-top: 0.75rem;
}

.p-guide__model-spec-wrap dt {
  width: 35%;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-guide__model-spec-wrap dt {
    font-size: 0.875rem;
    width: 45%;
  }
}

.p-guide__model-spec-wrap dd {
  width: 65%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-guide__model-spec-wrap dd {
    font-size: 0.875rem;
    width: 55%;
  }
}

/*装備品*/
.p-guide__model-equipment {
  margin-top: 6.125rem;
}
@media screen and (max-width: 767px) {
  .p-guide__model-equipment {
    margin-top: 3.125rem;
  }
}

.p-guide__model-equipment-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6875rem 0.875rem;
}
@media screen and (max-width: 374px) {
  .p-guide__model-equipment-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*PDF*/
.p-guide__model-links {
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 6.6875rem;
}
@media screen and (max-width: 767px) {
  .p-guide__model-links {
    flex-direction: column;
    margin-top: 3.125rem;
  }
}

.p-guide__model-links li {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-guide__model-links li {
    width: 100%;
  }
}

.p-guide__model-links li a,
.p-guide__model-links li button {
  display: flex;
}

.p-guide__model-links li button {
  width: 100%;
  border: none;
  padding-inline: 0;
  padding-block: 0;
}

.p-guide__print-btn {
  cursor: pointer;
}

.p-guide__model-links-pdf-left,
.p-guide__model-links-print-left {
  width: 15%;
  min-width: 5.625rem;
  display: grid;
  place-content: center;
  padding: 1.8125rem 0;
}

.p-guide__model-links-pdf-left {
  background-color: #226ED5;
}

.p-guide__model-links-print-left {
  background-color: #EDFFC3;
}

.p-guide__model-links-pdf-icon {
  max-width: 1.875rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-guide__model-links-print-icon {
  max-width: 1.875rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-guide__model-links-pdf-right,
.p-guide__model-links-print-right {
  display: flex;
  align-self: stretch;
  width: 85%;
  padding: 1.3125rem 1.6875rem;
}
@media screen and (max-width: 767px) {
  .p-guide__model-links-pdf-right,
  .p-guide__model-links-print-right {
    padding: 0.625rem;
  }
}

.p-guide__model-links-pdf-text-wrap,
.p-guide__model-links-print-text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.p-guide__model-links .c-btn-icon {
  margin-top: auto;
  margin-bottom: auto;
}

.p-guide__model-links-pdf-right {
  background-color: #317EE6;
}

.p-guide__model-links-print-right {
  align-items: stretch;
  background-color: #C9FF4E;
}

.p-guide__model-links-pdf-title,
.p-guide__model-links-print-title {
  font-size: 1.3125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-guide__model-links-pdf-title,
  .p-guide__model-links-print-title {
    font-size: clamp(0.6875rem, 0.2401rem + 2.2371vw, 1.3125rem);
  }
}

.p-guide__model-links-pdf-text,
.p-guide__model-links-print-text {
  font-size: 0.75rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-guide__model-links-pdf-text,
  .p-guide__model-links-print-text {
    font-size: clamp(0.6875rem, 0.598rem + 0.4474vw, 0.8125rem);
  }
}

.p-guide__model-links-pdf-title,
.p-guide__model-links-pdf-text {
  color: #FFF;
}

.p-guide__model-links-print-title,
.p-guide__model-links-print-text {
  color: #317EE6;
}

.p-guide__model-links-print-text {
  display: block;
  text-transform: uppercase;
  text-align: left;
}

/*料金表*/
.p-guide__price-wrap {
  display: flex;
  justify-content: space-between;
  gap: 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-guide__price-wrap {
    flex-direction: column;
    gap: 0.625rem 0;
  }
}

.p-guide__price-sub-heading {
  font-size: 1.5rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-guide__price-sub-heading {
    margin-top: 1.875rem;
  }
}

.p-guide__price-title {
  position: relative;
  width: 30%;
  font-size: 1.1875rem;
  font-weight: bold;
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-guide__price-title {
    width: 100%;
  }
}

.p-guide__price-title::before {
  content: "";
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #317EE6;
  position: absolute;
  top: 0.8125rem;
  left: -1.25rem;
  border-radius: 50%;
}

.p-guide__price-wrap {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-guide__price-wrap {
    margin-top: 1.25rem;
  }
}

.p-guide__price-wrap:nth-of-type(n + 2) {
  margin-top: 4.625rem;
}
@media screen and (max-width: 767px) {
  .p-guide__price-wrap:nth-of-type(n + 2) {
    margin-top: 3.125rem;
  }
}

.p-guide__price-table {
  width: 57.4%;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .p-guide__price-table {
    width: 100%;
  }
}

.p-guide__price-table th,
.p-guide__price-table td {
  font-size: 1.0625rem;
  width: 50%;
  border: 1px solid #CCC;
  padding: 1.125rem 2.0625rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-guide__price-table th,
  .p-guide__price-table td {
    font-size: 0.9375rem;
  }
}

.p-guide__price-table .p-guide__price-table-regular {
  font-weight: 400;
}

.p-guide__price-text {
  width: 55%;
  font-size: 1.0625rem;
  line-height: 1.8823529412;
}
@media screen and (max-width: 767px) {
  .p-guide__price-text {
    font-size: 0.9375rem;
    width: 100%;
  }
}

.p-guide__price-table thead th {
  background-color: #C9FF4E;
  font-size: 1.0625rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-guide__price-table thead th {
    font-size: 0.9375rem;
  }
}

/*投稿がない時*/
.p-guide__no-post {
  margin-top: 1.875rem;
}

/* 貸切バス印刷用スタイル */
.p-guide__print-image {
  display: none;
  margin-bottom: 1.5rem;
}

/* TOP以外ヘッダー背景色 */
body:not(.home) .p-header {
  background-color: transparent;
}

/* TOP以外追従ヘッダー背景色 */
body:not(.home) .p-header.js-fixed-header {
  background-color: #FFF;
}

/* TOP ヘッダー背景色 */
body.home .p-header {
  background-color: #FFF;
}

.p-header__inner {
  padding-left: 1.09375rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    display: block;
    padding: 0 0 0 0.625rem;
  }
}

.p-header__wrap {
  width: 100%;
}

/*--------------------
ヘッダー上部
--------------------*/
.p-header__top {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-header__top {
    display: none;
  }
}

.p-header__top-text {
  font-size: 0.6875rem;
  font-weight: 400;
  margin-top: 0.5rem;
}

/*電話番号*/
.p-header__info {
  display: flex;
  align-items: center;
}

.p-header__info-item {
  min-width: 16.25rem;
  flex: 1;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-header__info-item {
    min-width: 11.25rem;
    width: 50%;
  }
}

.p-header__info-item-link {
  display: flex;
  flex: 1;
}

.p-header__info-item-text {
  width: 32%;
  font-size: 0.8125rem;
  font-weight: 700;
  font-family: "Readex Pro", "Noto Sans JP", sans-serif;
  color: #FFF;
  background-color: #317EE6;
  padding: 0.3125rem 0.9375rem;
  white-space: nowrap;
  flex-shrink: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-header__info-item-text {
    font-size: 0.75rem;
    width: 18%;
    padding: 0.3125rem;
  }
}

.p-header__info-item-number {
  display: flex;
  align-items: center;
  gap: 0 0.25rem;
  font-size: 1rem;
  font-family: "Readex Pro", sans-serif;
  color: #317EE6;
  background-color: #F8F8F8;
  padding: 0.3125rem 1.25rem;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-header__info-item-number {
    font-size: 0.875rem;
    padding: 0.3125rem;
  }
}

.p-header__info-item-number img {
  max-width: 1rem;
  width: 100%;
  height: auto;
}

.p-header__info-item-number span {
  flex-grow: 1;
}

/*--------------------
ヘッダー下部
--------------------*/
.p-header__bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 1.875rem;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-header__bottom {
    align-items: initial;
    margin-top: 0;
    gap: 0 10px;
    padding-right: 0;
  }
}

.p-header__logo {
  display: grid;
  width: 100%;
  max-width: 13.6875rem;
}
@media screen and (max-width: 374px) {
  .p-header__logo {
    max-width: 7.5rem;
  }
}

.p-header__logo a {
  display: flex;
  align-items: center;
  gap: 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo a {
    gap: 0 0.3125rem;
    padding: 1rem 0;
  }
}

.p-header__logo-icon {
  max-width: 4.125rem;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-header__logo-icon {
    max-width: 2.8125rem;
  }
}

.p-header__logo-text {
  max-width: 9rem;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-header__logo-text {
    max-width: 5.8125rem;
  }
}
@media screen and (max-width: 374px) {
  .p-header__logo-text {
    max-width: 4.75rem;
  }
}

.p-header__logo-wrap {
  margin-top: 0.75rem;
}

.p-header__nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 0.875rem;
  margin-right: 1.8125rem;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__nav-inner {
  width: 100%;
}

.p-header__nav-list-top,
.p-header__nav-list-bottom {
  display: flex;
  justify-content: right;
}

.p-header__nav-list-bottom {
  margin-top: 0.375rem;
}

.p-header__nav-item a {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  color: #1A2A55;
}

.p-header__nav-list-top .p-header__nav-item a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #1A2A55;
  padding: 0 0.75rem;
}

.p-header__nav-list-top .p-header__nav-item:last-child a {
  padding: 0 0 0 0.75rem;
}

.p-header__nav-list-bottom .p-header__nav-item a {
  padding: 0 1.25rem;
}

.p-header__nav-list-bottom .p-header__nav-item:last-child a {
  padding: 0 0 0 1.25rem;
}

/*--------------------
ヘッダー問い合わせ・ハンバーガーメニュー
--------------------*/
.p-header__responsive-wrap {
  display: flex;
  justify-content: space-between;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-header__responsive-wrap {
    flex: 1;
    gap: 0 0.625rem;
    justify-content: right;
  }
}

.p-header__button-wrap {
  width: 10%;
  height: 100%;
  max-width: 7.9375rem;
}
@media screen and (max-width: 767px) {
  .p-header__button-wrap {
    max-width: 8.125rem;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
}

/*ハンバーガーメニュー*/
body.is-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  overflow: hidden;
}

.p-header__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    position: relative;
    display: block;
    padding: 1.25rem 0.625rem;
    outline: none;
    border: none;
    z-index: 999;
    max-width: 5.125rem;
    min-width: 3.625rem;
    width: 100%;
    background-color: #317EE6;
    cursor: pointer;
    transition: 0.3s;
  }
}
@media screen and (max-width: 374px) {
  .p-header__hamburger {
    min-width: 3.625rem;
  }
}

.p-header__hamburger.is-open {
  border-bottom-left-radius: 50%;
}

.p-header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 0.9375rem;
  height: 1px;
  background-color: #FFF;
  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.125rem;
  transform: translateX(-50%) rotate(-45deg);
}

/*ドロワーメニュー*/
.p-header__drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 20rem;
  height: 100vh;
  background-color: #EDF5FD;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  overflow-y: auto;
  z-index: 900;
}

.p-header__drawer-inner {
  padding: 6.25rem 1.25rem;
}

/* 表示時にスライドイン */
.p-header__drawer.is-open {
  transform: translateX(0);
}

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

.p-header__drawer-sub-list .p-header__drawer-item a {
  font-size: 0.875rem;
  font-weight: 500;
}

.p-header__drawer-item {
  border-bottom: solid 1px #FFF;
}

.p-header__drawer-item a {
  padding: 0.9375rem 0.9375rem 0.5rem;
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #317EE6;
  text-transform: uppercase;
}

.p-header__drawer-item a:hover {
  background-color: rgba(197, 221, 250, 0.7);
}

.p-header__drawer-info {
  width: 80%;
  background-color: #FFF;
  padding: 0.625rem;
  margin: 1.25rem auto 0;
  border-radius: 0.625rem;
}

.p-header__drawer-info-number {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.875rem 0.625rem;
}

.p-header__drawer-info-tel-number a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.875rem 0.625rem;
}

.p-header__drawer-info-number img,
.p-header__drawer-info-tel-number img {
  max-width: 0.75rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-header__drawer-info-number span,
.p-header__drawer-info-tel-number span {
  font-family: "Readex Pro", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: #317EE6;
}

@media screen and (max-width: 767px) {
  .p-header__mail-wrap {
    display: flex;
    margin-top: 0.75rem;
    flex-direction: column;
    gap: 0.5rem 0;
    align-items: center;
  }
}

.p-header__mail-text {
  font-size: 0.875rem;
  font-weight: 400;
}

.p-header__mail-link {
  font-size: 0.875rem;
  font-weight: 400;
  font-family: "Readex Pro", sans-serif;
}

.p-header__drawer-contact {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 0.625rem;
  color: #FFF;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.625rem 0.3125rem;
  margin: 1.875rem auto 0;
  background: linear-gradient(to left, #317ee6 0%, #15c4cc 44.88%, #0dcbc3 100%);
  border-radius: 0.25rem;
}

.p-header__drawer-contact img {
  max-width: 1.375rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-header__drawer .p-header__language-wrap {
  width: 80%;
  margin: 1.875rem auto 0;
}

/*言語切り替えボタン*/
.p-header__language-button::before {
  display: block;
  width: 0.875rem;
  height: 0.875rem;
  content: "";
  background: url("../images/common/header-icon5.svg") no-repeat center/contain;
}

.p-header__language-button::after {
  display: block;
  width: 0.5625rem;
  height: 0.3125rem;
  content: "";
  background: url("../images/common/header-language-arrow.svg") no-repeat center/contain;
}

.p-header__language-wrap {
  margin: auto 0;
}

.p-header__language-button {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0 0.625rem;
  font-size: 0.875rem;
  font-weight: 300;
  font-family: "Readex Pro", sans-serif;
  color: #317EE6;
  text-transform: capitalize;
  border: solid 1px #CCC;
  border-radius: 1.5625rem;
  background-color: #F8F8F8;
  padding: 0.4375rem 0.6875rem;
}

/*お問い合わせ*/
.p-header__contact {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 700;
  color: #FFF;
  line-height: 1.375;
  background-color: #317EE6;
  text-align: center;
  padding: 1.625rem 0.3125rem 1.1875rem;
}
@media screen and (max-width: 767px) {
  .p-header__contact {
    display: none;
  }
}

.p-header__contact img {
  max-width: 2.0625rem;
  width: 100%;
  height: auto;
  margin: 0 auto 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-header__contact img {
    max-width: 1.625rem;
  }
}

.p-links__title {
  font-size: 1rem;
  line-height: 2;
}

.p-links__wrap {
  margin-top: 10.9375rem;
}
@media screen and (max-width: 767px) {
  .p-links__wrap {
    margin-top: 6.25rem;
  }
}

.p-links__list {
  width: 40%;
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.875rem;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-links__list {
    width: 100%;
    gap: 1.25rem 1.875rem;
    margin-top: 1.875rem;
  }
}

.p-links__list-item {
  color: #317EE6;
  font-size: 1.125rem;
  line-height: 1.7777777778;
}

.p-links__text {
  font-size: 1rem;
  line-height: 2;
  margin-top: 2.5625rem;
}
@media screen and (max-width: 767px) {
  .p-links__text {
    margin-top: 1.25rem;
  }
}

.p-links__content h3 {
  font-size: 1.875rem;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-links__content h3 {
    margin-top: 1.5rem;
    margin-top: 1.875rem;
  }
}

.p-links__content h4 {
  font-size: 1.5rem;
  margin-top: 2.5625rem;
  line-height: 1.3333333333;
}
@media screen and (max-width: 767px) {
  .p-links__content h4 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
  }
}

.p-links__content-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.875rem 1.125rem;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-links__content-list {
    grid-template-columns: repeat(auto-fill, minmax(12.5rem, 1fr));
  }
}
@media screen and (max-width: 374px) {
  .p-links__content-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-links__content-list-item {
  position: relative;
  grid-row: span 3;
  display: grid;
  grid-template-rows: subgrid;
  gap: 0;
}

.p-links__content-list-img {
  width: 100%;
  background-color: #EDF5FD;
  aspect-ratio: 308/202;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-links__content-list-decoration {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(transparent 0%, #ffffff 50%);
}

.p-links__content-inner {
  position: relative;
  z-index: 10;
  margin-top: -2.875rem;
  padding: 0 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-links__content-inner {
    padding: 0 0.625rem;
    margin-top: -1.875rem;
  }
}

.p-links__content-list-title {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.p-links__content-list-title p {
  font-size: 1.125rem;
  line-height: 1.7777777778;
}
@media screen and (max-width: 767px) {
  .p-links__content-list-title p {
    font-size: 1rem;
  }
}

.p-links__content-list-title img {
  max-width: 0.8125rem;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: 0.6875rem;
}

.p-links__content-list-text {
  font-size: 0.8125rem;
  line-height: 1.9230769231;
  font-weight: 400;
  margin-top: 0.8125rem;
}

.p-links__content-list-map {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.0625rem;
  border: solid 1px #F0F0F2;
  border-radius: 0.8125rem;
  padding: 0.1875rem 0.4375rem;
  margin-top: 0.75rem;
}

.p-links__content-list-map span {
  font-size: 0.78125rem;
  font-family: "Readex Pro", sans-serif;
  color: #EF5050;
  letter-spacing: 0.2em;
  margin-left: 0.3125rem;
}

.p-links__content-list-map img {
  max-width: 0.8125rem;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-model-course__title {
  font-size: 1rem;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-model-course__title {
    text-align: left;
  }
}

.c-heading__ja-title.p-model-course__heading {
  text-align: center;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-heading__ja-title.p-model-course__heading {
    margin-top: 1.875rem;
  }
}

.p-model-course__content {
  margin-top: 5.5rem;
}
@media screen and (max-width: 767px) {
  .p-model-course__content {
    margin-top: 3.125rem;
  }
}

.p-course-empty {
  text-align: center;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-course-empty {
    margin-top: 3.125rem;
  }
}

.p-news-single__title {
  color: #317EE6;
  font-size: 2rem;
  font-weight: 700;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__title {
    font-size: 1.875rem;
  }
}

.p-news-single__content {
  max-width: 45rem;
  margin: 7.25rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-news-single__content {
    max-width: 600px;
    margin: 6.25rem auto 0;
  }
}

.p-news-single__content:first-child {
  margin-top: 0;
}

.p-news-single__content h1 {
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.26;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__content h1 {
    margin-top: 1.875rem;
  }
}

.p-news-single__content h1::before {
  content: "";
  width: 1.75rem;
  height: 0.3125rem;
  position: absolute;
  top: -0.5rem;
  left: 0.25rem;
  background-color: #317EE6;
}

.p-news-single__content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  padding-bottom: 1.0625rem;
  margin-top: 5.0625rem;
  border-bottom: 1px solid transparent;
  -o-border-image: linear-gradient(to right, #317EE6 0 5.53125rem, #CCC 5.53125rem 100%) 1;
     border-image: linear-gradient(to right, #317EE6 0 5.53125rem, #CCC 5.53125rem 100%) 1;
}
@media screen and (max-width: 767px) {
  .p-news-single__content h2 {
    margin-top: 1.875rem;
  }
}

.p-news-single__content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.77;
  padding: 0.3125rem 0 0.3125rem 1.125rem;
  border-left: solid 0.1875rem #317EE6;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__content h3 {
    margin-top: 1.875rem;
  }
}

.p-news-single__content h4 {
  color: #317EE6;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.77;
  margin-top: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__content h4 {
    margin-top: 1.25rem;
  }
}

.p-news-single__content h5 {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.77;
  margin-top: 0.125rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__content h5 {
    margin-top: 0.625rem;
  }
}

.p-news-single__content h6 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  margin-top: 0.125rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__content h6 {
    margin-top: 0.625rem;
  }
}

.p-news-single__content p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__content p {
    margin-top: 0.625rem;
  }
}

.p-news-single__content ul {
  margin-top: 2.5625rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__content ul {
    margin-top: 1.875rem;
  }
}

.p-news-single__content li {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.75;
  margin-top: 0.625rem;
  margin-left: 1.25rem;
}

.p-news-single__content li::before {
  content: "";
  position: absolute;
  top: 0.78125rem;
  left: -1.25rem;
  width: 0.3125rem;
  height: 0.3125rem;
  background-color: #444;
  border-radius: 50%;
}

.p-news-single__content img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 720/397;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__content img {
    margin-top: 1.875rem;
  }
}

.p-news-single__content .wp-block-buttons {
  max-width: 18.75rem;
  margin: 3.0625rem auto 0;
}

.p-news-single__content .wp-block-button {
  width: 100%;
}

.p-news-single__content .wp-block-button__link {
  width: 100%;
  font-size: 1rem;
  font-weight: 700;
  background-color: #1A2A55;
  border-radius: 2.5rem;
  padding: 1.4375rem 0.875rem;
  text-align: center;
}

.p-news-single__btn-text {
  flex: 1;
  text-align: center;
}

.c-btn.p-news-single__btn .c-btn-icon {
  margin-left: 0;
}

.p-news-single__return-btn {
  margin: 4.5rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-news-single__return-btn {
    margin: 6.25rem auto 0;
  }
}

.p-principle__title {
  font-size: 1rem;
  line-height: 2;
}

.p-principle__wrap {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-principle__wrap {
    margin-top: 3.125rem;
  }
}

.p-principle__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  margin-top: 2.625rem;
}
@media screen and (max-width: 767px) {
  .p-principle__text {
    margin-top: 1.25rem;
  }
}

.p-principle__btn-wrap {
  margin-top: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-principle__btn-wrap {
    margin-top: 1.875rem;
  }
}

.p-principle__btn-wrap a:nth-of-type(n + 2) {
  margin-top: 0.4375rem;
}

.p-principle__btn-wrap .c-btn {
  gap: 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-principle__btn-wrap .c-btn {
    padding: 0.75rem 1.25rem;
  }
}

.p-principle__transportation-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3333333333;
  margin-top: 4.0625rem;
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  .p-principle__transportation-title {
    font-size: 1.375rem;
    margin-left: 0;
    margin-top: 1.875rem;
  }
}

.p-principle__info {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-principle__info {
    margin-top: 1.875rem;
  }
}

.p-principle__transportation-list {
  list-style: none;
  counter-reset: number;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-principle__transportation-list {
    margin-top: 1.25rem;
  }
}

.p-principle__transportation-list li {
  counter-increment: number;
  position: relative;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  padding-left: 1.625rem;
}

.p-principle__transportation-list li::before {
  content: counter(number) ". ";
  position: absolute;
  left: 0;
}

.p-principle__info {
  margin-top: 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-principle__info {
    margin-top: 1.25rem;
  }
}

.p-principle__info p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  text-align: right;
  margin-right: 10.6875rem;
}
@media screen and (max-width: 767px) {
  .p-principle__info p {
    margin-right: 0;
  }
}

.p-principle__info-company {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-principle__info-company {
    margin-top: 0.625rem;
  }
}

.p-principle__safety-title {
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.6842105263;
  margin-top: 3.3125rem;
}
@media screen and (max-width: 767px) {
  .p-principle__safety-title {
    margin-top: 1.875rem;
  }
}

.p-principle__accordion {
  margin-top: 2.0625rem;
}
@media screen and (max-width: 767px) {
  .p-principle__accordion {
    margin-top: 0.9375rem;
  }
}

.p-principle__accordion-item:hover {
  cursor: pointer;
}

.p-principle__accordion-title {
  display: flex;
  justify-content: space-between;
  font-size: 1.125rem;
  line-height: 2;
  padding: 0.84375rem 0.625rem 0.84375rem 0;
  border-bottom: 1px solid transparent;
  -o-border-image: linear-gradient(to right, #317EE6 0 3.25rem, #CCC 3.25rem 100%) 1;
     border-image: linear-gradient(to right, #317EE6 0 3.25rem, #CCC 3.25rem 100%) 1;
}

.p-principle__accordion-title span {
  position: relative;
  display: block;
  width: 1.875rem;
  height: 1.875rem;
  background-color: #EDF5FD;
  border-radius: 50%;
}

.p-principle__accordion-content {
  display: none;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  background-color: #F8F8F8;
  padding: 2.5rem 2.1875rem;
}

/* タイトル横のプラスマーク縦線 */
.p-principle__accordion-title span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  width: 0.6875rem;
  height: 1px;
  background-color: #317EE6;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-principle__accordion-title span::before {
    right: 1.25rem;
  }
}

/* タイトル横のプラスマーク横線 */
.p-principle__accordion-title span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.6875rem;
  height: 1px;
  background-color: #317EE6;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-principle__accordion-title span::after {
    right: 1.25rem;
  }
}

/* アコーディオンが開いたとき縦線の変化 */
.p-principle__accordion-title.is-open span::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

/* アコーディオンが開いたとき横線の変化 */
.p-principle__accordion-title.is-open span::after {
  opacity: 0;
}

.p-privacy-policy__content {
  margin-top: 8rem;
}

.p-privacy-policy__wrap {
  margin-top: 5.1875rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__wrap {
    margin-top: 3.125rem;
  }
}

@media screen and (max-width: 767px) {
  .p-privacy-policy__wrap .c-sub-heading {
    font-size: clamp(1.375rem, 1.196rem + 0.8949vw, 1.625rem);
  }
}

.p-privacy-policy__content h2 {
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__content h2 {
    margin-bottom: 1.875rem;
  }
}

.p-privacy-policy__content ul {
  margin-top: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__content ul {
    margin-top: 1.25rem;
  }
}

.p-privacy-policy__content p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  margin-top: 1.875rem;
}

.p-privacy-policy__content li {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.86;
  margin-left: 1.25rem;
  margin-top: 0.375rem;
}

.p-privacy-policy__content li::before {
  content: "";
  position: absolute;
  top: 0.78125rem;
  left: -1.25rem;
  width: 0.3125rem;
  height: 0.3125rem;
  background-color: #444;
  border-radius: 50%;
}

.p-privacy-policy__content a {
  word-break: keep-all;
  overflow-wrap: anywhere;
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  margin-top: 1.875rem;
}

.p-privacy-policy__content dl {
  margin-top: 3.875rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__content dl {
    margin-top: 1.875rem;
  }
}

.p-privacy-policy__content dt {
  font-size: 1.1875rem;
  font-weight: 700;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__content dt {
    font-size: 1.125rem;
    margin-top: 1.25rem;
  }
}

.p-privacy-policy__content dd {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
}

.p-privacy-policy__title,
.p-privacy-policy__date {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
}

.p-privacy-policy__date {
  text-align: right;
  margin-top: 4.875rem;
}

.p-rental__title-wrap {
  margin-top: 2.0625rem;
}

.p-rental__title {
  font-size: 1rem;
  line-height: 2;
}

.p-rental__title:nth-of-type(n + 2) {
  margin-top: 2.125rem;
}
@media screen and (max-width: 767px) {
  .p-rental__title:nth-of-type(n + 2) {
    margin-top: 1.25rem;
  }
}

.p-rental__about-wrap {
  margin-top: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .p-rental__about-wrap {
    margin-top: 3.125rem;
  }
}

.p-rental__about-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-rental__about-list {
    flex-direction: column;
    gap: 1.875rem 0;
  }
}

.p-rental__about-list li {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .p-rental__about-list li {
    width: 100%;
  }
}

.p-rental__about-list-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3333333333;
}
@media screen and (max-width: 767px) {
  .p-rental__about-list-title {
    font-size: 1.25rem;
  }
}

.p-rental__about-list-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-rental__about-list-text {
    margin-top: 0.625rem;
  }
}

.p-rental__wrap:nth-of-type(n + 2) {
  margin-top: 8.125rem;
}
@media screen and (max-width: 767px) {
  .p-rental__wrap:nth-of-type(n + 2) {
    margin-top: 6.25rem;
  }
}

.p-rental__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-rental__text {
    margin-top: 1.875rem;
  }
}

.p-rental__reservation-wrap {
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-rental__reservation-wrap {
    margin-top: 1.875rem;
  }
}

.p-rental__reservation-wrap .c-company-info__wrap {
  margin-top: 1rem;
}

.p-rental__reservation-text {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.6923076923;
  margin-top: 3.1875rem;
}
@media screen and (max-width: 767px) {
  .p-rental__reservation-text {
    margin-top: 1.875rem;
  }
}

.p-rental__model-link-wrap {
  width: 82%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 1.875rem;
  margin-top: 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-rental__model-link-wrap {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1rem;
    margin-top: 1.875rem;
  }
}

.p-rental__model-link.c-sub-heading-under {
  position: relative;
  display: flex;
  padding: 0.8125rem 0.625rem;
  font-size: 0.90625rem;
  font-weight: 500;
}

.p-rental__model-link .c-btn-icon {
  background-color: #EDF5FD;
}

.p-rental__model-wrap {
  margin-top: 8.125rem;
}
@media screen and (max-width: 767px) {
  .p-rental__model-wrap {
    margin-top: 3.125rem;
  }
}

.p-rental__model-wrap h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #317EE6;
}
@media screen and (max-width: 767px) {
  .p-rental__model-wrap h3 {
    font-size: 1.5rem;
  }
}

.p-rental__model-content {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-rental__model-content {
    margin-top: 1.875rem;
  }
}

.p-rental__model-wrap h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #317EE6;
}
@media screen and (max-width: 767px) {
  .p-rental__model-wrap h4 {
    font-size: 1.125rem;
  }
}

.p-rental__model-content-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(21rem, 1fr));
  gap: 2.125rem;
  margin-top: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-rental__model-content-list {
    grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
    gap: 1.875rem 0.625rem;
  }
}

.p-rental__model-content-list li {
  max-width: 28.75rem;
  border-radius: 0.3125rem;
  box-shadow: 0px 0.125rem 0.625rem rgba(204, 204, 204, 0.56);
}
@media screen and (max-width: 767px) {
  .p-rental__model-content-list li {
    max-width: 100%;
  }
}

.p-rental__model-content-jaTitle {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.2307692308;
}
@media screen and (max-width: 767px) {
  .p-rental__model-content-jaTitle {
    font-size: 1.25rem;
  }
}

.p-rental__model-content-title-wrap {
  padding: 1.6875rem 3rem;
}
@media screen and (max-width: 767px) {
  .p-rental__model-content-title-wrap {
    padding: 1.25rem 1.875rem;
  }
}

.p-rental__model-content-enTitle {
  display: block;
  position: relative;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "Readex Pro", sans-serif;
  color: #317EE6;
  padding-left: 0.5rem;
  margin-top: 0.5rem;
}

.p-rental__model-content-enTitle::before {
  content: "";
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #317EE6;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0%;
  left: -0.25rem;
  border-radius: 50%;
}

/*スライダー*/
.p-rental__model-content-slide {
  position: relative;
}

.p-rental__model-content-slide-img {
  max-width: 100%;
  height: auto;
  aspect-ratio: 460/362;
  -o-object-fit: cover;
     object-fit: cover;
}

/*スライダーのサムネイル*/
.p-rental__slider-thumbnail {
  display: flex;
  position: relative;
  width: 100%;
  margin: 0;
}

.p-rental__slider-thumbnail .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
}

.p-rental__slider-thumbnail .swiper-slide {
  width: 25%;
  opacity: 0.5;
  transition: opacity 0.5s;
  margin: 0;
  opacity: 0.5;
  transition: opacity 0.5s;
}

.p-rental__slider-thumbnail .swiper-slide:hover {
  opacity: 1;
  cursor: pointer;
}

.p-rental__slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.p-rental__slider-thumbnail-img {
  max-width: 100%;
  height: auto;
  aspect-ratio: 91/47;
  -o-object-fit: cover;
     object-fit: cover;
}

/*スライダーのサムネイル OS標準の選択機能でハイライトされるのを防止*/
.p-rental__slider-thumbnail .swiper-slide {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none; /* テキスト選択を無効 */
  -webkit-user-drag: none; /* 画像のドラッグを無効 (Safari) */
  -webkit-tap-highlight-color: transparent; /* タップ時のハイライトも消す (Safari/Chrome モバイル) */
}

/*スライダーの矢印*/
.p-rental__swiper-button-wrap {
  width: 20%;
  position: absolute;
  top: 0;
  right: 0;
  height: auto;
  aspect-ratio: 96/50;
}

.p-rental__model-content-slide .swiper-button-prev,
.p-rental__model-content-slide .swiper-button-next {
  top: initial;
  width: 50%;
  height: 100%;
  background-color: #C9FF4E;
  bottom: 0;
  transition: opacity 0.3s;
}

.p-rental__model-content-slide .swiper-button-prev:hover,
.p-rental__model-content-slide .swiper-button-next:hover {
  opacity: 0.7;
  cursor: pointer;
}

.p-rental__model-content-slide .swiper-button-prev {
  left: 0;
}

.p-rental__model-content-slide .swiper-button-next {
  right: 0;
}

.p-rental__model-content-slide .swiper-button-prev::after,
.p-rental__model-content-slide .swiper-button-next::after {
  content: "";
  width: 0.8125rem;
  height: 0.625rem;
}

.p-rental__model-content-slide .swiper-button-prev::after {
  background: url("../images/common/slide-arrow-left.svg") no-repeat center center/contain;
}

.p-rental__model-content-slide .swiper-button-next::after {
  background: url("../images/common/slide-arrow-right.svg") no-repeat center center/contain;
}

.p-rental__model-content-slide .swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

/*料金表*/
.p-rental__model-table-content {
  margin-top: 1.25rem;
}

.p-rental__model-table-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-rental__model-table-title {
    font-size: 1rem;
  }
}

.p-rental__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.p-rental__model-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  margin-top: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-rental__model-table {
    min-width: 37.5rem;
  }
}

.p-rental__model-table thead th {
  width: 18%;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.6;
  background-color: #EDF5FD;
  border: 1px solid #F2F1F0;
  padding: 0.1875rem;
  white-space: normal;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .p-rental__model-table thead th {
    font-size: 0.8125rem;
  }
}

.p-rental__model-table tbody th {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3;
  background-color: #EDF5FD;
  text-align: center;
  padding: 0.75rem 0.625rem;
  border: 1px solid #F2F1F0;
  white-space: normal;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .p-rental__model-table tbody th {
    font-size: 0.8125rem;
  }
}

.p-rental__model-table td {
  font-size: 1rem;
  font-weight: 400;
  padding: 0 0.625rem;
  border: 1px solid #F2F1F0;
  white-space: normal;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .p-rental__model-table td {
    font-size: 0.8125rem;
  }
}

.p-rental__model-table-notice {
  font-size: 0.75rem;
  font-weight: 400;
  color: #EF5050;
}

.p-rental__table-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  margin-top: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .p-rental__table-text {
    font-size: clamp(0.8125rem, 0.6783rem + 0.6711vw, 1rem);
  }
}

/*レンタルの注意点*/
.p-rental__points-list {
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-rental__points-list {
    margin-top: 1.875rem;
  }
}

.p-rental__points-list li {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
}

.p-rental__points-list dl {
  display: flex;
  justify-content: flex-start;
  margin-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-rental__points-list dl {
    margin-left: 1.25rem;
  }
}

.p-rental__points-list dt {
  min-width: 9.25rem;
}
@media screen and (max-width: 767px) {
  .p-rental__points-list dt {
    min-width: 10.125rem;
  }
}
@media screen and (max-width: 374px) {
  .p-rental__points-list dt {
    width: 55%;
  }
}

.p-rental__points-list dd {
  width: 60%;
}
@media screen and (max-width: 374px) {
  .p-rental__points-list dd {
    width: 45%;
  }
}

/*投稿がない時*/
.p-rental__no-post {
  margin-top: 1.875rem;
}

.p-scroll-down {
  position: absolute;
  bottom: 10.9375rem;
  right: 3.5rem;
  width: 1.25rem;
  height: 4.4375rem;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .p-scroll-down {
    bottom: -3.25rem;
    right: -0.1875rem;
  }
}

.p-scroll-down__text {
  position: absolute;
  top: 1.25rem;
  left: -2.5rem;
  bottom: 5.4375rem;
  color: #FFF;
  font-size: 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  transform: rotate(-90deg);
  text-transform: uppercase;
}

.p-scroll-down::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -0.125rem;
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  background: #FFF;
  animation: circleMove 1.6s ease-in-out infinite, circleMoveHide 1.6s ease-out infinite;
}

@keyframes circleMove {
  0% {
    bottom: 71px;
  }
  100% {
    bottom: 0px;
  }
}
@keyframes circleMoveHide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.p-scroll-down::after {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #FFF;
}

.p-thanks__inner {
  margin-top: 8.125rem;
}
@media screen and (max-width: 767px) {
  .p-thanks__inner {
    margin-top: 6.25rem;
  }
}

.p-thanks h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-thanks h2 {
    font-size: clamp(1.25rem, 0.7131rem + 2.6846vw, 2rem);
  }
}

.p-thanks__btn {
  margin: 3.125rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-thanks__btn {
    margin: 1.875rem auto 0;
  }
}

.p-thanks__btn-text {
  flex: 1;
  text-align: center;
}

.p-thanks__text-wrap {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-thanks__text-wrap {
    margin-top: 1.875rem;
  }
}

.p-thanks__text-wrap p {
  font-size: 1rem;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-thanks__text-wrap p {
    font-size: clamp(0.875rem, 0.7855rem + 0.4474vw, 1rem);
    text-align: left;
  }
}

.p-top-company {
  position: relative;
  padding-bottom: 11.5625rem;
  margin-top: 6.5rem;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .p-top-company {
    padding-bottom: 6.25rem;
    margin-top: 6.25rem;
  }
}

.p-top-company__wrap {
  display: flex;
  gap: 0 1.25rem;
  justify-content: space-between;
  margin-left: 2.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-company__wrap {
    width: 100%;
    flex-direction: column;
    gap: 1.5625rem 0;
    margin-left: 0;
  }
}

.p-top-company__text-wrap {
  width: 53%;
}
@media screen and (max-width: 767px) {
  .p-top-company__text-wrap {
    width: 100%;
  }
}

.p-top-company__text-wrap .c-heading__ja-title {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .p-top-company__text-wrap .c-heading__ja-title {
    font-size: 1.625rem;
  }
}

.p-top-company__text {
  font-size: 1rem;
  line-height: 2;
  margin-top: 2.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-company__text {
    margin-top: 1.25rem;
  }
}

.p-top-company__img {
  max-width: 28.4375rem;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-company__img {
    max-width: 100%;
  }
}

.p-top-company__button {
  max-width: 18.75rem;
  margin-top: 3.375rem;
}
@media screen and (max-width: 767px) {
  .p-top-company__button {
    margin-top: 1.875rem;
  }
}

.p-top-company__decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-guide {
  position: relative;
  background-color: #EDF4FC;
}

.p-top-guide__wrap {
  display: flex;
  align-items: flex-end;
  gap: 0 1.25rem;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-top-guide__wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.875rem 1.25rem;
  }
}

.p-top-guide__title-area {
  display: flex;
  gap: 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-guide__title-area {
    flex-wrap: wrap;
  }
}

.p-top-guide__title-area .c-heading {
  margin-top: 0.625rem;
}

.p-top-guide__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.p-top-guide__list li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  color: #317EE6;
  text-align: center;
  background-color: #D6E8FE;
  padding: 0.5rem 1.6875rem;
  border-radius: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-top-guide__list li {
    font-size: 0.875rem;
    padding: 0.5rem;
  }
}

.p-top-guide__text {
  font-size: 1rem;
  line-height: 2;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-guide__text {
    margin-top: 1.25rem;
  }
}

.p-top-guide__img-wrap {
  position: relative;
  z-index: 1;
  margin-top: 4.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-guide__img-wrap {
    margin-top: 3.125rem;
  }
}

.p-top-guide__img-wrap-text {
  position: absolute;
  top: -5rem;
  left: 7rem;
  z-index: 2;
  max-width: 54.875rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-top-guide__img-wrap-bg {
  max-width: 90vw;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-top-guide__img-wrap-bg {
    max-width: 90%;
  }
}

.p-top-guide__img-wrap-img {
  position: absolute;
  top: -0.375rem;
  right: 10%;
  z-index: 3;
  max-width: 59.4vw;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-top-guide__img-wrap-img {
    max-width: 70%;
    top: 2.375rem;
    left: initial;
    right: 0;
    transform: initial;
  }
}

.p-top-guide__img-wrap-comment {
  position: absolute;
  bottom: 0.5625rem;
  right: 7%;
  z-index: 4;
  max-width: 10vw;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-top-guide__img-wrap-comment {
    max-width: 5.25rem;
    bottom: -4.125rem;
    right: 1.375rem;
  }
}

.p-top-guide__decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-news {
  margin-top: 11.375rem;
}
@media screen and (max-width: 767px) {
  .p-top-news {
    margin-top: 6.25rem;
  }
}

.p-top-news__wrap {
  display: flex;
  justify-content: space-between;
  gap: 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__wrap {
    flex-direction: column;
    gap: 3.125rem 0;
  }
}

.p-top-news__left {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .p-top-news__left {
    display: flex;
    flex-wrap: wrap;
    gap: 1.875rem 0.625rem;
    justify-content: space-between;
    width: 100%;
  }
}

.p-top-news__button {
  margin-top: 8.1875rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__button {
    margin-top: 0;
  }
}

.p-top-news__right {
  width: 65.5%;
  margin-top: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__right {
    width: 100%;
    margin-top: 0;
  }
}

.p-top-rental {
  margin-top: 8.3125rem;
}
@media screen and (max-width: 767px) {
  .p-top-rental {
    margin-top: 9.375rem;
  }
}

.p-top-rental__wrap {
  width: 100%;
  display: flex;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-rental__wrap {
    flex-direction: column;
    border-radius: 0.25rem;
  }
}

.p-top-rental__img-wrap {
  max-width: 36.25rem;
  width: 100%;
  aspect-ratio: auto;
  position: relative;
  border-radius: 0.25rem 0 0 0.25rem;
  background: url("../images/top/rental-bg.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top-rental__img-wrap {
    border-radius: 0.25rem 0.25rem 0 0;
    aspect-ratio: 580/425;
  }
}

.p-top-rental__img-bg {
  max-width: 36.25rem;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-rental__img {
  position: absolute;
  top: 6rem;
  left: 0.625rem;
  z-index: 3;
  max-width: 30.5625rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-top-rental__img {
    top: 7.5rem;
    max-width: 70%;
    left: 0;
  }
}

.p-top-rental__sub-img {
  position: absolute;
  top: 5.5625rem;
  right: -1.875rem;
  z-index: 2;
  max-width: 16.6875rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-top-rental__sub-img {
    max-width: 70%;
    right: 0;
  }
}

.p-top-rental__text-wrap {
  background-color: #EDF4FC;
  flex: 1;
  padding: 4.1875rem 3.75rem 3.9375rem 5.25rem;
  border-radius: 0 0.25rem 0.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-top-rental__text-wrap {
    padding: 0.9375rem;
    border-radius: 0 0 0.25rem 0.25rem;
  }
}

.p-top-rental__title-area {
  display: flex;
  gap: 0 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-rental__title-area {
    flex-wrap: wrap;
  }
}

.p-top-rental__title-area .c-heading {
  margin-top: 0.25rem;
}

.p-top-rental__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.p-top-rental__list li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  color: #317EE6;
  text-align: center;
  background-color: #D6E8FE;
  padding: 0.5rem 0.9375rem;
  border-radius: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-top-rental__list li {
    font-size: 0.875rem;
    padding: 0.5rem;
  }
}

.p-top-rental__text {
  font-size: 1rem;
  line-height: 2;
  margin-top: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-rental__text {
    margin-top: 1.25rem;
  }
}

.p-top-rental__button {
  margin-top: 2.3125rem;
}

.p-top-service {
  margin-top: 7.0625rem;
}

.p-top-service__card-top {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__card-top {
    grid-template-columns: repeat(1, 1fr);
    place-items: center;
  }
}

.p-top-service__card-top-img {
  max-width: 38.4375rem;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-service__card-top li {
  width: 100%;
  position: relative;
  border-radius: 0.25rem;
  overflow: hidden;
}

.p-top-service__card-top li::before {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  width: 6.25rem;
  height: 6.25rem;
  background-color: #317EE6;
  clip-path: circle(50% at 100% 100%);
}

.p-top-service__card-top li::after {
  display: block;
  content: "";
  position: absolute;
  z-index: 4;
  bottom: 0.8125rem;
  right: 0.6875rem;
  width: 0.9375rem;
  height: 0.6875rem;
  background: url("../images/common/arrow-white.svg") no-repeat center center/contain;
}

.p-top-service__card-top-bg::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: auto;
  background: url("../images/top/service-card-decoration.svg") no-repeat center bottom/contain;
  aspect-ratio: 615/360;
  mix-blend-mode: overlay;
}

.p-top-service__card-top-bg::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: auto;
  background: rgba(68, 68, 68, 0.7);
  aspect-ratio: 615/360;
  mix-blend-mode: multiply;
}

.p-top-service__card-title-wrap {
  position: absolute;
  top: 50%;
  left: 3.75rem;
  z-index: 4;
  transform: translateY(-50%);
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__card-title-wrap {
    margin-top: 0;
    left: 1.875rem;
  }
}

.p-top-service__card-title {
  color: #FFF;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-top-service__card-title {
    font-size: 1.75rem;
  }
}

.p-top-service__card-bottom {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__card-bottom {
    grid-template-columns: repeat(1, 1fr);
    place-items: center;
  }
}

.p-top-service__card-bottom li {
  position: relative;
  max-width: 25rem;
  background: #F0F0F2 url("../images/top/service-card-decoration2.svg") no-repeat;
  background-position: bottom;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-top-service__card-bottom li {
    max-width: 100%;
    width: 100%;
    background-position: 0 50%;
    background-size: cover;
  }
}

.p-top-service__card-bottom li::before {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  width: 2.25rem;
  height: 6.25rem;
  background-color: #317EE6;
  clip-path: circle(50% at 100% 100%);
}

.p-top-service__card-bottom li::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0.8125rem;
  right: 0.6875rem;
  z-index: 4;
  width: 0.6875rem;
  height: 0.5rem;
  background: url("../images/common/arrow-white.svg") no-repeat center center/contain;
}

.p-top-service__card-bottom-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4.5rem 0;
  height: 100%;
  padding: 2.9375rem 2.125rem 2.875rem;
}

.p-top-service__card-bottom-img {
  max-width: 4.1875rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-top-service__card-bottom li:nth-of-type(3) .p-top-service__card-bottom-img {
  max-width: 3.1875rem;
}

.p-top-service__card-bottom-title {
  font-size: 1.3125rem;
  font-weight: 700;
}

.u-no-image {
  width: 100%;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.u-no-image__text {
  font-size: 2.5rem;
  font-family: "Readex Pro", sans-serif;
  font-weight: 700;
  color: #CCC;
  text-transform: uppercase;
}

.u-no-image__sub-text {
  text-transform: capitalize;
}

.u-no-image-thumbnail {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #f5f5f5;
}

.u-no-image-thumbnail__text {
  font-size: 0.875rem;
  font-family: "Readex Pro", sans-serif;
  font-weight: 700;
  color: #CCC;
  text-transform: uppercase;
}

.u-no-image__slide-text {
  text-transform: capitalize;
}

@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

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