@charset "UTF-8";
/* -----------------------------------------------------------------
 Foundation
----------------------------------------------------------------- */
/*======================
  reset
======================*/
html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
p,
a,
img,
dl,
dt,
dd,
ol,
ul,
li,
label,
table,
tbody,
tr,
th,
td,
figure,
blockquote {
  padding: 0;
  margin: 0;
  border: 0;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

article,
aside,
figure,
footer,
header,
nav,
section {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

video {
  max-width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}

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

.submit-btn input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.wpcf7-form-control.wpcf7-previous {
  color: #24a580;
  font-weight: bold;
  background-color: #fff;
  border: none;
  /* padding: 16px 45px 16px 52px; */
  border-radius: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 50px;
  width: 240px;
  height: 64px;
  padding-left: 30px;
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7-form-control.wpcf7-submit {
  color: #24a580;
  font-weight: bold;
  background-color: #fff;
  /* padding: 16px 45px 16px 52px; */
  border-radius: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 50px;
  border: none;
  width: 240px;
  height: 64px;
  padding-left: 30px;
  z-index: 0;
}

.check-btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 520px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  .check-btn-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 auto;
  }
}
.submit-button-check {
  border-radius: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 240px;
  height: 64px;
}

.position-area {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: 1px solid #24a580;
  width: 240px;
  height: 64px;
  position: relative;
  margin-top: 40px;
  gap: 50px;
  border-radius: 50px;
  overflow: hidden;
  color: #fff !important;
}

@media screen and (max-width: 768px) {
  .position-area {
    margin-top: initial !important;
  }
}
.position-area:hover {
  color: #fff !important;
}

/*== 背景が流れる（左から右） */
.wpcf7-form-control.wpcf7-previous:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  /*色や形状*/
  background: #24a580; /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

/*hoverした際の形状*/
/* .position-area:hover:after {
  content: "戻る";
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 29.5px;
  z-index: 10;
  font-weight: 700;
  letter-spacing: 0;
} */
.position-area:hover .btn-text {
  color: #fff; /* 白色に変更 */
}

.position-area:hover .wpcf7-submit {
  z-index: 1000;
  background-color: initial;
}

.position-area:hover .wpcf7-previous {
  z-index: 1000;
  background-color: initial;
}

.btn-text {
  left: 30px;
  position: absolute;
  color: #24a580;
  text-align: center;
  font-family: "Outfit";
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}

/* .position-area2:hover:after {
  content: "送信する";
} */
.scv_img2 {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  z-index: 10;
}

/************************
　スクロールアニメーション用
*************************/
.fadeIn {
  opacity: 0;
  -webkit-transition: 800ms;
  transition: 800ms;
}

.fadeIn.is-scrolled {
  opacity: 1;
}

.fadeInUp {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: 800ms;
  transition: 800ms;
}

.fadeInUp.is-scrolled {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fadeInLeft {
  opacity: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  -webkit-transition: 800ms;
  transition: 800ms;
}

.fadeInLeft.is-scrolled {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.fadeInRight {
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  -webkit-transition: 800ms;
  transition: 800ms;
}

.fadeInRight.is-scrolled {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.fadeInZoomOut {
  opacity: 0;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: 800ms;
  transition: 800ms;
}

.fadeInZoomOut.is-scrolled {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.fadeInZoomIn {
  opacity: 0;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-transition: 800ms;
  transition: 800ms;
}

.fadeInZoomIn.is-scrolled {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* ----------------------
  keyframes
---------------------- */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes btnLineOne {
  from {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@keyframes btnLineOne {
  from {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@-webkit-keyframes btnLine {
  from {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  to {
    -webkit-transform: scale(2, 1);
            transform: scale(2, 1);
  }
}
@keyframes btnLine {
  from {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  to {
    -webkit-transform: scale(2, 1);
            transform: scale(2, 1);
  }
}
@-webkit-keyframes scrollLine {
  from {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
  }
  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@keyframes scrollLine {
  from {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
  }
  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
/*======================
  base
======================*/
body {
  color: #333;
  font-family: "Outfit", "YakuHanJP", "Hiragino Sans", "ヒラギノ角ゴシック", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "游ゴシック", "Yu Gothic", YuGothic, "源ノ角ゴシック JP", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow-x: hidden;
}

body.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/*==========================================================================================================================================
    しゃす記載 共通コード .s_〇〇
==============================================================================================================================================*/
/*===========================================================
  コンテナ幅
============================================================*/
.s_container {
  max-width: 1170px;
  margin-left: auto;
  padding: 64px 0px;
}

@media screen and (max-width: 1439px) {
  .s_container {
    max-width: 90%;
    margin-left: none;
    margin: 0 auto;
  }
}
@media screen and (max-width: 500px) {
  .s_container {
    padding: 60px 0px;
  }
}
@media screen and (max-width: 360px) {
  .s_container {
    max-width: 96%;
  }
}
@media screen and (min-width: 1441px) {
  .s_container {
    padding-left: 5%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1900px) {
  .s_container {
    padding-left: 0px;
    max-width: 1200px;
  }
}
/*===========================================================
  タイトル 緑
============================================================*/
.s_title {
  font-size: 28px;
  line-height: 51px;
  color: #fff;
  background-color: #24a580;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 40px 0px 10px;
  margin-bottom: 40px;
}

@media screen and (max-width: 1439px) {
  .s_title {
    font-size: 28px;
    line-height: 51px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 500px) {
  .s_title {
    padding: 0px 8px 0px 8px;
    font-size: 24px;
    gap: 16px;
  }
}
.s_circle {
  min-width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff; /*背景色*/
}

.g_circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #24a580; /*背景色*/
  position: absolute;
  top: 0%;
  left: -7%;
}

.circle {
  position: relative;
}

/*===========================================================
  タイトル 白
============================================================*/
.w_title {
  font-size: 28px;
  line-height: 51px;
  color: #24a580;
  background-color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 40px 0px 10px;
  margin-bottom: 40px;
}

@media screen and (max-width: 1439px) {
  .w_title {
    font-size: 28px;
    line-height: 51px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 500px) {
  .w_title {
    padding: 0px 8px 0px 8px;
    font-size: 24px;
    gap: 16px;
  }
}
.w_circle {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #24a580; /*背景色*/
}

/*===========================================================
  参画 見出し
============================================================*/
.triangle {
  background: #24a580;
  height: 15px;
  width: 100%;
  max-width: 15px;
  clip-path: polygon(0 0, 80% 50%, 0 100%);
}

.sita_triangle {
  display: inline-block;
  border-style: solid;
  border-width: 10px 9px 1px 8px;
  border-color: #24a580 transparent transparent transparent;
}

.t_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
}

/*===========================================================
  テキスト
============================================================*/
/* 例 Black Font-Size 20px*/
.fw600 {
  font-weight: 600;
}

.b_fz28 {
  font-size: 28px;
  font-weight: bold;
}

@media screen and (max-width: 800px) {
  .b_fz28 {
    font-size: 20px;
  }
}
.b_fz24 {
  font-size: 24px;
}

@media screen and (max-width: 800px) {
  .b_fz24 {
    font-size: 20px;
  }
}
.b_fz20 {
  font-size: 20px;
  font-weight: bold;
}

@media screen and (max-width: 800px) {
  .b_fz20 {
    font-size: 16px;
  }
}
.b_fz16 {
  font-size: 16px;
}

.b_fz14 {
  font-size: 14px;
}

.b_fz12 {
  font-size: 12px;
  letter-spacing: normal;
}

.w_fz20 {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
}

@media screen and (max-width: 800px) {
  .w_fz20 {
    font-size: 16px;
  }
}
.w_fz16 {
  color: #fff;
  font-size: 16px;
}

.w_fz14 {
  font-size: 14px;
  color: #fff;
}

.w_fz12 {
  font-size: 12px;
  color: #fff;
}

.gray_fz16 {
  font-size: 16px;
  color: #787878;
}

.g_fz32 {
  color: #24a580;
  font-size: 32px;
}

@media screen and (max-width: 500px) {
  .g_fz32 {
    font-size: 24px;
  }
}
.g_fz28 {
  color: #24a580;
  font-size: 28px;
}

@media screen and (max-width: 500px) {
  .g_fz28 {
    font-size: 24px;
  }
}
.g_fz24 {
  color: #24a580;
  font-size: 24px;
}

@media screen and (max-width: 500px) {
  .g_fz24 {
    font-size: 18px;
  }
}
.g_fz20 {
  color: #24a580;
  font-size: 20px;
}

.g_fz16 {
  color: #24a580;
  font-size: 16px;
}

.g_fz12 {
  color: #24a580;
  font-size: 12px;
}

.br_fz16 {
  font-size: 16px;
  font-weight: normal;
}

.r_fz20 {
  color: #f53535;
  font-size: 20px;
}

@media screen and (max-width: 500px) {
  .r_fz20 {
    font-size: 16px;
  }
}
.rr_fz16 {
  color: #f53535;
  font-size: 16px;
}

.g_tel {
  font-size: 20px;
  font-weight: bold;
  color: #24a580;
  letter-spacing: normal;
  line-height: normal;
}

@media screen and (max-width: 500px) {
  .g_tel {
    font-size: 18px;
  }
}
.t_mds {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.t_mds p {
  width: 100%;
}

.k_ttl {
  margin-top: 16px;
}

.indent {
  text-indent: -1em;
  padding-left: 1em;
}

.green_pdfs {
  margin-top: 12px;
}

.pdf_green_text {
  border-bottom: 1px solid #24a580;
  display: inline;
}

.green_pdf {
  width: 24px;
  margin-right: 16px;
}

.fixed_cvs {
  display: -ms-inline-grid;
  display: inline-grid;
  gap: 20px;
  position: fixed;
  z-index: 2;
  right: 3%;
  bottom: 3%;
  border: 2px solid #24a580;
  background-color: #fff;
  padding: 55px 32px;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 800px) {
  .fixed_cvs {
    display: none;
  }
}
/*===========================================================
  画像
============================================================*/
.train {
  width: 30px;
  height: 35px;
}

.car {
  width: 35px;
  height: 29px;
}

/*===========================================================
  CV ホバー
============================================================*/
/*== ボタン共通設定 */
.btn {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  border: 1px solid #555; /* ボーダーの色と太さ */
  /* padding: 10px 30px; */
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}

/*ボタン内spanの形状*/
.btn span {
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
}

.btn:hover span {
  color: #fff;
}

.btn img {
  position: relative !important;
}

.btn:hover img {
  z-index: 3 !important;
}

/* ホバー時 背景 緑から白 */
.gr_btn:hover span {
  color: #24a580;
}

/* ホバー時 背景 ベージュから白 */
.bi_btn:hover span {
  color: #f0a65c;
}

/*== 背景が流れる（左から右） */
.bgleft:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  /*色や形状*/
  background: #24a580; /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

/*hoverした際の形状*/
.bgleft:hover:before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.content-check-group .wpcf7 p {
  text-align: center;
  font-size: 22px; /* フォントサイズ */
  margin-top: 60px; /* 上の余白 */
  /* その他のスタイルルール */
}

.content-check-group .content-check-group p {
  margin-top: initial !important;
  text-align: initial !important;
}

/*== 背景が流れる（左から右） */
.or_bgleft:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  /*色や形状*/
  background: #ff733f; /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

/*hoverした際の形状*/
.or_bgleft:hover:before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.wor_btn:hover span {
  color: #ff733f !important;
}

/*== 背景が流れる（左から右） */
.wor_bgleft:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  /*色や形状*/
  background: #fff; /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

/*hoverした際の形状*/
.wor_bgleft:hover:before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

/*== 背景が流れる（左から右） */
.gr_bgleft:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  /*色や形状*/
  background: #fff; /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

/*hoverした際の形状*/
.gr_bgleft:hover:before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

/*== 背景が流れる（左から右） */
.line_bgleft:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  /*色や形状*/
  background: #4cc764; /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

/*hoverした際の形状*/
.line_bgleft:hover:before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

/*===========================================================
  CV ヘッダー 2つ
============================================================*/
.l_cvs {
  position: fixed;
  right: 2%;
  top: 2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

@media screen and (max-width: 1439px) {
  .l_cvs {
    position: unset;
  }
}
.l_gcv {
  width: 208px;
  color: #24a580;
  font-weight: bold;
  background-color: #fff;
  border: 1px solid #24a580;
  padding: 16px 0px;
  border-radius: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 800px) {
  .l_gcv {
    display: none;
  }
}
.l_ocv {
  width: 208px;
  color: #ff733f;
  font-weight: bold;
  background-color: #fff;
  border: 1px solid #ff733f;
  padding: 16px 0px;
  border-radius: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 500px) {
  .l_ocv {
    width: 108px;
    padding: 9px 0px;
  }
}
.scv_img {
  width: 18px;
  height: 18px;
}

@media screen and (max-width: 500px) {
  .h_cv_img {
    display: none !important;
  }
}
/*===========================================================
  CV 詳しくはこちら
============================================================*/
.scv {
  color: #24a580;
  font-weight: bold;
  background-color: #fff;
  border: 1px solid #24a580;
  /* padding: 16px 45px 16px 52px; */
  border-radius: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
  width: 240px;
  height: 64px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.scv_img {
  width: 18px;
  height: 18px;
}

.riyou {
  gap: 20px;
}

/*===========================================================
  CV PDFで確認する 緑
============================================================*/
.sco_pdf {
  color: #24a580;
  font-weight: bold;
  background-color: #fff;
  border: 1px solid #24a580;
  padding: 16px 45px 16px 28px;
  border-radius: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
}

.cv_pdf {
  width: 20px;
  height: 24px;
}

/*===========================================================
  CV 問い合わせフォーム　緑背景
============================================================*/
.sco_form {
  color: #fff;
  font-weight: bold;
  background-color: #24a580;
  border: 1px solid #24a580;
  padding: 16px 45px 16px 52px;
  border-radius: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
}

/*===========================================================
  CV 問い合わせフォーム 共通
============================================================*/
.sco_cv {
  color: #24a580;
  font-weight: bold;
  background-color: #fff;
  border: 1px solid #24a580;
  border-radius: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}

/*===========================================================
  CV WEB予約 オレンジ ボーダーがオレンジ
============================================================*/
.sco_web {
  color: #ff733f;
  font-weight: bold;
  background-color: #fff;
  border: 1px solid #ff733f;
  border-radius: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
  width: 240px;
  height: 64px;
}

.tel_orange {
  width: 20px;
  height: 20px;
}

.sco_tel {
  color: #ff733f;
  font-weight: bold;
  background-color: #fff;
  border: 1px solid #ff733f;
  padding: 16px 25px 16px 28px;
  border-radius: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 26px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}

.cvs {
  margin-top: 40px;
  display: -ms-inline-grid !important;
  display: inline-grid !important;
  gap: 20px;
}

.md_cvs {
  margin-top: 40px;
  display: -ms-grid;
  display: grid;
  width: 240px;
  margin: auto;
  gap: 20px;
}

@media screen and (max-width: 800px) {
  .md_cvs {
    margin: initial;
  }
}
/*===========================================================
  CV WEB予約 オレンジ 背景がオレンジ
============================================================*/
.sco_orange_bg {
  color: #fff;
  font-weight: bold;
  background-color: #ff733f;
  border: 1px solid #ff733f;
  padding: 16px 15px 16px 32px;
  border-radius: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 90px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
  height: 64px;
}

/*===========================================================
  CV WEB予約 ベージュ 背景がベージュ
============================================================*/
.sco_biege_bg {
  color: #fff;
  font-weight: bold;
  background-color: #f0a65c;
  border: 1px solid #f0a65c;
  padding: 16px 30px 16px 32px;
  border-radius: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
  height: 64px;
}

/*===========================================================
  CV LINE友達追加
============================================================*/
.sco_line {
  color: #4cc764;
  font-weight: bold;
  background-color: #fff;
  border: 1px solid #4cc764;
  border-radius: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}

.line_img {
  width: 30px;
  height: 30px;
}

/*===========================================================
  cv width
============================================================*/
.sco_wd {
  width: 240px;
  height: 64px;
}

/*===========================================================
  モーダル内 空室状況
============================================================*/
.kst_cv {
  color: #fff;
  font-weight: bold;
  background-color: #f0a65c;
  border: 1px solid #f0a65c;
  padding: 16px 32px 16px 47px;
  border-radius: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
  width: 240px;
  height: 64px;
}

/*===========================================================
  下層FV
============================================================*/
.s_fv_container {
  max-width: 1170px;
  margin-left: auto;
  padding: 32px 64px 64px 0px;
}

@media screen and (max-width: 1439px) {
  .s_fv_container {
    max-width: 90%;
    margin-left: none;
    margin: 0 auto;
    padding: 32px 0px 64px 0px;
  }
}
@media screen and (max-width: 800px) {
  .s_fv_container {
    padding: 0px;
    max-width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .s_fv_container {
    padding: 0px;
  }
}
@media screen and (max-width: 360px) {
  .s_fv_container {
    max-width: 96%;
  }
}
@media screen and (min-width: 1441px) {
  .s_fv_container {
    max-width: 910px;
    margin-left: none;
    margin: 0 auto;
    padding: 32px 0px 64px 0px;
  }
}
@media screen and (min-width: 1600px) {
  .s_fv_container {
    max-width: 1180px;
    margin-left: none;
    margin: 0 auto;
    padding: 32px 0px 64px 0px;
  }
}
.s_fv_img img {
  border-radius: 8px;
  width: 100%;
}

@media screen and (max-width: 800px) {
  .s_fv_img img {
    border-radius: 0px;
  }
}
.s_fv_title {
  margin-top: -60px;
  padding-left: 10px;
}

@media screen and (max-width: 1170px) {
  .s_fv_title {
    font-size: 28px !important;
    margin-top: -55px;
  }
}
@media screen and (max-width: 1000px) {
  .s_fv_title {
    font-size: 24px !important;
    margin-top: -50px;
  }
}
@media screen and (max-width: 900px) {
  .s_fv_title {
    font-size: 22px !important;
    margin-top: -45px;
  }
}
@media screen and (max-width: 800px) {
  .s_fv_title {
    padding: 16px 20px;
    margin-top: 0px;
    border-top: 2px solid #24a580;
    border-bottom: 2px solid #24a580;
  }
}
@media screen and (min-width: 1441px) {
  .s_fv_title {
    margin-top: -50px;
  }
}
@media screen and (max-width: 1100px) {
  .s_fv_title29 {
    font-size: 22px !important;
  }
}
@media screen and (max-width: 900px) {
  .s_fv_title29 {
    font-size: 18px !important;
  }
}
@media screen and (min-width: 1441px) {
  .s_fv_title29 {
    font-size: 24px !important;
  }
}
@media screen and (max-width: 1250px) {
  .s_fv_title10 {
    font-size: 24px !important;
  }
}
@media screen and (max-width: 1050px) {
  .s_fv_title10 {
    font-size: 20px !important;
  }
}
@media screen and (max-width: 900px) {
  .s_fv_title10 {
    font-size: 17px !important;
  }
}
@media screen and (max-width: 800px) {
  .s_fv_title10 {
    font-size: 22px !important;
  }
}
.s_fv_title16 {
  font-size: 24px !important;
}

@media screen and (max-width: 1250px) {
  .s_fv_title16 {
    font-size: 24px !important;
  }
}
@media screen and (max-width: 1180px) {
  .s_fv_title16 {
    font-size: 20px !important;
  }
}
@media screen and (max-width: 1015px) {
  .s_fv_title16 {
    font-size: 16px !important;
  }
}
@media screen and (max-width: 800px) {
  .s_fv_title16 {
    font-size: 22px !important;
  }
}
/*==========================================================================================================================================
    TOP
==============================================================================================================================================*/
/*===========================================================
  fv swiper
============================================================*/
/* .swiper {
  z-index: inherit;
}

.swiper--wrapper {
  width: 100%;
  height: 300px;
}

.swiper-slide {
  width: 100%;
  height: 100%;
  text-align: center;
}

.mySwiper2 {
  height: 800px;
  width: 100%;
}

.mySwiper {
  width: 55%;
  height: 113px;
  position: absolute;
  bottom: 5%;
  right: 5%;
  z-index: 5;
  background-color: #fff;
  height: 117px;
  padding: 15px 35px 15px 55px;
  box-sizing: border-box;
}

.mySwiper .swiper-slide {
  height: 100%;
  opacity: 0.7;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-button-next:after {
  background-image: url(../img/after.png);
  width: 80px;
  height: 80px;
  content: "";
  position: absolute;
  right: 0px;
}

.swiper-button-prev:after {
  background-image: url(../img/before.png);
  width: 80px;
  height: 80px;
  content: "";
  position: absolute;
  left: 0px;
}

.swiper-progress {
  height: 4px;
  background: #000;
  position: absolute;
  width: 100%;
}

.swiper-button-play,
.swiper-button-stop {
  position: absolute;
  bottom: 10px;
  z-index: 10;
  background-color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.swiper-button-play {
  left: 10px;
}

.swiper-button-stop {
  left: 60px;
} */
/* //ここから */
.swiper-container {
  width: 100%;
  height: 300px;
  position: relative; /* コンテナを相対位置に設定 */
}

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

.progress-bars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
}

.progress {
  width: 20%;
  height: 4px;
  background-color: gray;
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .progress {
    height: 2px;
  }
}
.progress-bar {
  height: 100%;
  background-color: #24a580;
  width: 0%;
  -webkit-transition: width 3s linear;
  transition: width 3s linear;
}

.sw-btn-group {
  max-width: 500px;
  margin: 0 auto;
}

.slider-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 500px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  margin-right: 64px;
  margin-top: 15px;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .slider-area {
    max-width: 178px;
    margin-left: auto;
    margin-right: initial;
  }
}
.progress-bars {
  width: 100%;
  margin-top: initial;
}

.swiper-button-stop {
  background: #fff;
  border: none;
  padding: initial;
}

.swiper-button-play {
  background: #fff;
  border: none;
  padding: initial;
}

.sw-btn-group {
  max-width: 20px;
  width: 100%;
  height: 20px;
}

/* ここまで */
/* .fv_container {
  max-width: 1170px;
  margin-left: auto;
  position: relative;
}

@media screen and (max-width: 1439px) {
  .fv_container {
    max-width: 89%;
    margin-left: none;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1441px) {
  .fv_container {
    max-width: 1170px;
    margin-left: none;
    margin: 0 auto;
  }
} */
/*===========================================================
  ニュース共通
============================================================*/
.news_container {
  padding: 25px 0px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 106px;
}

@media screen and (max-width: 1100px) {
  .news_container {
    display: block;
  }
}
@media screen and (max-width: 1100px) {
  .news_contents {
    margin-top: 16px;
  }
}
.news_contents {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  /* display: flex !important; */
  width: 100%;
  max-width: 100%;
}

.news_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 800px) {
  .news_content {
    display: block;
  }
}
.news_content:not(:first-child) {
  margin-top: 16px;
}

.news_content:hover .news_text > img {
  left: 1%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.news_content:hover {
  opacity: 0.75;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sgn_cv img {
  position: relative;
}

.sgn_cv:hover img {
  left: 1%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.sgn_cv:hover {
  opacity: 0.75;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.news_text {
  /* display: flex; */
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news_text p {
  display: contents;
}

.news_text img {
  position: relative;
}

.ks-sub-content {
  max-width: 360px;
  width: 100%;
}

@media screen and (max-width: 500px) {
  .news_details {
    margin-top: 60px;
  }
}
/*===========================================================
  黄色いニュース
============================================================*/
.syn {
  background-color: #efd350;
}

.syn_title {
  background-color: #fff;
  height: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 220px;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* .syn_title {
  background-color: #fff;
  height: 33px;
  display: inline-flex;
  padding: 0px 111px;
  align-items: center;
} */
@media screen and (max-width: 800px) {
  .syn_title {
    padding: 0px 16px;
  }
}
/*===========================================================
  緑色のニュース
============================================================*/
.sgn {
  background-color: #24a580;
}

.sgn_title {
  background-color: #fff;
  color: #24a580;
  height: 33px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0px 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 800px) {
  .sgn_title {
    padding: 0px 16px;
  }
}
.sgn_cv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 12px;
  gap: 16px;
}

@media screen and (max-width: 1100px) {
  .sgn_cv {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}
.front-parking_title {
  background-color: red;
  color: #fff;
  height: 33px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0px 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.front-kakigoya {
  background-color: #f2f2f2;
}

.front-kakigoya_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  padding-left: 0 !important;
}

@media screen and (min-width: 1441px) {
  .front-kakigoya_container {
    max-width: 970px !important;
  }
}
@media screen and (min-width: 1600px) {
  .front-kakigoya_container {
    max-width: 1170px !important;
  }
}
@media screen and (max-width: 767px) {
  .front-kakigoya_container {
    padding: 25px 0px !important;
  }
}
@media screen and (max-width: 767px) {
  .front-kakigoya_container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
.front-kakigoya_left {
  width: 220px;
}

@media screen and (max-width: 767px) {
  .front-kakigoya_left {
    width: 100%;
  }
}
.front-kakigoya-qr-code {
  display: block;
  padding: 12px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .front-kakigoya-qr-code {
    display: none;
  }
}
.front-kakigoya_title {
  background-color: #24a580;
  color: #fff;
  width: 220px;
  padding: 8px 40px;
  line-height: 1.2;
  text-align: center;
}

.front-kakigoya_banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}

.front-kakigoya_banner_pic {
  display: block;
  overflow: hidden;
  width: 320px;
  min-width: 160px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.front-kakigoya_banner_pic img {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.front-kakigoya_banner_pic:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.front-kakigoya_banner_content {
  white-space: nowrap;
}

.front-kakigoya_banner_status {
  background: red;
  color: #fff;
  padding: 4px 16px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}

.front-kakigoya_banner_title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
}

.front-kakigoya_banner_date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 8px;
}

.front-kakigoya_banner_date .day {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  height: 30px;
  background: #555;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  color: #fff;
}

.front-kakigoya_banner_message {
  font-size: 18px;
}

.front-kakigoya_banner .btn {
  gap: 12px;
}

@media screen and (max-width: 767px) {
  .front-kakigoya_title br {
    display: none;
  }
  .front-kakigoya_banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
  .front-kakigoya_banner_pic img {
    width: 100%;
  }
  .front-kakigoya_banner_title {
    font-size: 20px;
  }
  .front-kakigoya_banner_date {
    font-size: 24px;
  }
  .front-kakigoya_banner_date .day {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }
  .front-kakigoya_banner_message {
    font-size: 14px;
  }
}
/*===========================================================
  イベント 指
============================================================*/
.table__container {
  width: 100%;
  overflow: scroll;
}

table {
  width: 200%;
  border-collapse: collapse;
}

th,
td {
  border: solid 1px lightgray;
  padding: 1rem 1rem;
}

.table {
  width: 200%;
  border-collapse: collapse;
}

@media screen and (max-width: 1000px) {
  .table {
    width: 9999%;
  }
}
/*===========================================================
  イベント
============================================================*/
.sev_events {
  width: 100%;
}

.sev_event {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: 2px solid #24a580;
  margin-right: 20px;
}

@media screen and (max-width: 1000px) {
  .sev_event {
    display: inline-block;
  }
}
.sev_contents {
  padding: 20px;
  text-align: left;
}

@media screen and (max-width: 500px) {
  .sev_contents {
    padding: 8px;
  }
}
.sev_texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

@media screen and (max-width: 1000px) {
  .sev_texts {
    gap: 15px;
  }
}
.sev_img {
  width: 184px;
}

@media screen and (max-width: 1000px) {
  .sev_img {
    margin: auto;
    width: 184px;
    margin-top: 10px;
  }
}
.sev_status {
  color: #fff;
  background-color: #e15554;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 3px 16px;
  text-align: center;
  margin-bottom: 8px;
}

.sev_title {
  margin-bottom: 16px;
}

.sev_mds {
  width: 60px;
}

/*===========================================================
  コンセプト いわふねについて .sab_〇〇
============================================================*/
.sab {
  background-color: #f2f2f2;
}

.sab_titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 111px;
  margin: 80px 0px 80px 110px;
}

@media screen and (max-width: 1439px) {
  .sab_titles {
    display: block;
    margin: 32px 0px 32px 0px;
  }
}
.sab_title {
  font-size: 64px;
  font-weight: 600;
  line-height: 120px;
}

@media screen and (max-width: 1439px) {
  .sab_title {
    font-size: 48px;
    line-height: 80px;
    margin-bottom: 20px;
    margin-left: 64px;
    letter-spacing: 0.2em;
  }
}
@media screen and (max-width: 500px) {
  .sab_title {
    margin-left: 84px;
  }
}
.sab_text {
  font-size: 16px;
  font-weight: bold;
  line-height: 42px;
}

@media screen and (max-width: 600px) {
  .sab_text {
    line-height: 160%;
    font-weight: normal;
  }
}
/*===========================================================
  TOP コンセプト .sab_〇〇 横スクロール
============================================================*/
@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  list-style: none;
  padding: 0px 16px;
}

.scroll-infinity__list--left {
  -webkit-animation: infinity-scroll-left 80s infinite linear 0.5s both;
          animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.scroll-infinity__item {
  width: 300px;
}

@media screen and (max-width: 1439px) {
  .scroll-infinity__item {
    width: 240px;
  }
}
.scroll-infinity__item > img {
  width: 100%;
}

@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0px 16px;
}

.scroll-infinity__list--left {
  -webkit-animation: infinity-scroll-left 80s infinite linear 0.5s both;
          animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

/* .scroll-infinity__item {
      width: 240px;
    } */
.scroll-infinity__item > img {
  width: 100%;
}

/*===========================================================
  TOP 周辺施設 .sab_〇〇 横スクロール
============================================================*/
@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  list-style: none;
  padding: 0px 16px;
}

.scroll-infinity__list--left {
  -webkit-animation: infinity-scroll-left 80s infinite linear 0.5s both;
          animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.scroll-infinity__item02 {
  width: 440px;
}

@media screen and (max-width: 1439px) {
  .scroll-infinity__item02 {
    width: 335px;
  }
}
.scroll-infinity__item02 > img {
  width: 100%;
  margin-bottom: 8px;
}

@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0px 16px;
}

.scroll-infinity__list--left {
  -webkit-animation: infinity-scroll-left 80s infinite linear 0.5s both;
          animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

/* .scroll-infinity__item {
      width: 240px;
    } */
.scroll-infinity__item02 > img {
  width: 100%;
}

/*===========================================================
  TOP 施設の活用一例  横スクロール
============================================================*/
@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  list-style: none;
  padding: 0px 16px;
}

.scroll-infinity__list--left {
  -webkit-animation: infinity-scroll-left 80s infinite linear 0.5s both;
          animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.scroll-infinity__item02 {
  width: 440px;
}

@media screen and (max-width: 1439px) {
  .scroll-infinity__item02 {
    width: 335px;
  }
}
.scroll-infinity__item02 > img {
  width: 100%;
  margin-bottom: 8px;
}

@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0px 16px;
}

.scroll-infinity__list--left {
  -webkit-animation: infinity-scroll-left 80s infinite linear 0.5s both;
          animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

/* .scroll-infinity__item {
      width: 240px;
    } */
.scroll-infinity__item02 > img {
  width: 100%;
}

/*===========================================================
  TOP 施設紹介
============================================================*/
.sii_3imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}

@media screen and (max-width: 1439px) {
  .sii_3imgs {
    display: block;
  }
}
.sii_3imgs:not(:first-child) {
  margin-top: 40px;
}

@media screen and (max-width: 1439px) {
  .sii_3imgs:not(:first-child) {
    margin-top: 0px;
  }
}
.sii_img {
  position: relative;
  display: inline-block;
  width: 320px;
}

@media screen and (max-width: 1439px) {
  .sii_img {
    width: auto;
    margin-top: 20px;
  }
}
.sii_plus {
  position: absolute;
  bottom: 50px;
  right: 10px;
}

/*===========================================================
  TOP 施設紹介 モーダル
============================================================*/
.modal-wrapper {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 40px 10px;
  text-align: center;
}

.modal-button:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(2px);
  transform: translateY(2px); /*下に動く*/
}

/*ラベルホバー時*/
.modal-button:hover {
  color: #ffffff;
  background-color: #24a580;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.modal-button02:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(2px);
  transform: translateY(2px); /*下に動く*/
}

/*ラベルホバー時*/
.modal-button02:hover {
  color: #ffffff;
  background-color: #24a580;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.modal-button03:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(2px);
  transform: translateY(2px); /*下に動く*/
}

/*ラベルホバー時*/
.modal-button03:hover {
  color: #ffffff;
  background-color: #24a580;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.modal-button04:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(2px);
  transform: translateY(2px); /*下に動く*/
}

/*ラベルホバー時*/
.modal-button04:hover {
  color: #ffffff;
  background-color: #24a580;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.modal-button05:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(2px);
  transform: translateY(2px); /*下に動く*/
}

/*ラベルホバー時*/
.modal-button05:hover {
  color: #ffffff;
  background-color: #24a580;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.4s, visibility 0.4s;
  transition: opacity 0.4s, visibility 0.4s;
}

.modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  vertical-align: middle;
  content: "";
}

.modal-wrapper .modal-window {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
  width: 80%;
  padding: 80px 60px 80px;
  border-radius: 2px;
  background: #fff;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  vertical-align: middle;
}

@media screen and (max-width: 600px) {
  .modal-wrapper .modal-window {
    width: 90%;
    padding: 80px 20px 80px;
  }
}
.modal-wrapper .modal-window .modal-content {
  max-height: 70vh;
  overflow-y: auto;
  text-align: left;
}

.modal-window {
  position: relative;
}

.modal_b2 {
  position: absolute;
  width: 30px;
  top: 20px;
  right: 20px;
}

.md_content {
  margin-top: 40px;
}

.modal_title {
  font-size: 1.5em;
  position: relative;
  overflow: hidden;
  padding: 0;
  background-color: #24a580;
  color: #fff;
  text-align: center;
  line-height: 67px;
  margin-bottom: 40px;
}

.md_mds {
  color: #fff;
  background-color: #24a580;
  line-height: 48px;
  padding-left: 16px;
}

.md_mds:not(:last-child) {
  margin-bottom: 20px;
}

.md_gaiyo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 600px) {
  .md_gaiyo {
    gap: 8px;
  }
}
.md_mds02 {
  width: 100px;
}

.md_2youtos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.md_youto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.md_yt_img {
  width: 40px;
  height: 40px;
}

.md_lasts {
  text-align: center;
}

.md_last {
  text-align: center;
}

.md_last:not(:first-child) {
  margin-bottom: 20px;
}

.pr_cv {
  margin-top: 0px !important;
}

.modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
}

.modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 5px;
  right: 5px;
  width: 35px;
  color: #95979c !important;
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  text-indent: 0;
}

.modal-wrapper .modal-close:hover {
  color: #2b2e38 !important;
}

/*===========================================================
  TOP はじめてご利用する方へ
============================================================*/
.sfu {
  background-color: #d4e9e2;
}

.sfu_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 200px;
}

@media screen and (max-width: 1100px) {
  .sfu_body {
    display: block;
  }
}
.sfu_texts {
  width: 423px;
}

@media screen and (max-width: 1100px) {
  .sfu_texts {
    width: auto;
  }
}
.sfu_img {
  width: 440px;
}

@media screen and (max-width: 500px) {
  .sfu_img {
    width: auto;
  }
}
.sfu_sp {
  display: none;
}

@media screen and (max-width: 1100px) {
  .sfu_sp {
    display: block;
    margin-top: 24px;
  }
}
@media screen and (max-width: 1100px) {
  .sfu_pc {
    display: none;
  }
}
/*===========================================================
  TOP 周辺施設
============================================================*/
.sai {
  background-color: #47c099;
}

.sai_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 200px;
  margin-bottom: 64px;
}

@media screen and (max-width: 1100px) {
  .sai_body {
    display: block;
  }
}
.sai_texts {
  width: 440px;
}

@media screen and (max-width: 1100px) {
  .sai_texts {
    width: auto;
  }
}
.sai_img {
  width: 440px;
}

@media screen and (max-width: 1100px) {
  .sai_img {
    display: none;
  }
}
/*===========================================================
  TOP 施設の活用一例
============================================================*/
.sae_body {
  width: 95%;
}

.sae_2img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10%;
}

.sae_2img:not(:first-child) {
  margin-top: 40px;
}

@media screen and (max-width: 1100px) {
  .sae_4img {
    display: none;
  }
}
.sae_it img {
  margin-bottom: 8px;
}

.sae_scroll {
  display: none;
}

@media screen and (max-width: 1100px) {
  .sae_scroll {
    display: block;
  }
}
/*===========================================================
  TOP 交通アクセス
============================================================*/
.sac_map {
  height: 0;
  overflow: hidden;
  padding-bottom: 40%;
  position: relative;
  margin-bottom: 40px;
}

@media screen and (max-width: 500px) {
  .sac_map {
    height: 480px;
  }
}
.sac_map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 90%;
}

@media screen and (min-width: 1441px) {
  .sac_map iframe {
    width: 100%;
  }
}
@media screen and (max-width: 1439px) {
  .sac_map iframe {
    width: 100%;
  }
}
.sac_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 120px;
}

@media screen and (max-width: 1439px) {
  .sac_detail {
    margin-right: 0px;
  }
}
@media screen and (max-width: 1100px) {
  .sac_detail {
    display: block;
  }
}
.sac_left {
  width: 89%;
}

.sac_texts {
  margin-bottom: 40px;
}

@media screen and (max-width: 1100px) {
  .sac_texts {
    margin-bottom: 20px;
  }
}
.sac_texts:not(:first-child) {
  margin-top: 40px;
}

.sac_tels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sac_tels a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

@media screen and (max-width: 500px) {
  .tel_img {
    gap: 12px;
  }
}
.tel_img {
  width: 20px;
  height: 20px;
  margin-top: -2px;
}

.sac_left15 {
  width: 50% !important;
}

/*===========================================================
  TOP コンタクト
============================================================*/
.sco {
  background-color: #24a580;
  /* margin-top: 120px; */
}

@media screen and (max-width: 500px) {
  .sco {
    margin-top: 0px;
  }
}
.sco_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

@media screen and (max-width: 1100px) {
  .sco_body {
    display: -ms-grid;
    display: grid;
    gap: 10px;
  }
}
.sco_content {
  width: 340px;
  height: 280px;
  background-color: #fff;
  text-align: center;
  border: 1px solid #24a580;
}

@media screen and (max-width: 1100px) {
  .sco_content {
    width: 100%;
    height: auto;
  }
}
.sco_cvs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

@media screen and (max-width: 1100px) {
  .sco_cvs {
    margin-top: 10px;
  }
}
@media screen and (max-width: 800px) {
  .sco_cvs {
    display: block;
  }
}
.sco_texts {
  padding-top: 70px;
}

@media screen and (max-width: 1100px) {
  .sco_texts {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
.g_texts {
  padding-top: 45px;
}

@media screen and (max-width: 1100px) {
  .g_texts {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
/*==========================================================================================================================================
    02_星の里いわふねとは？
==============================================================================================================================================*/
/*===========================================================
  02 ぱんくず
============================================================*/
@media screen and (max-width: 800px) {
  .pnkz {
    display: none;
  }
}
.pnkz_container {
  max-width: 1170px;
  margin-left: auto;
  padding: 16px 0px;
}

@media screen and (max-width: 1439px) {
  .pnkz_container {
    max-width: 90%;
    margin-left: none;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1441px) {
  .pnkz_container {
    max-width: 910px;
    margin-left: none;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1900px) {
  .pnkz_container {
    max-width: 1200px;
    margin-left: none;
    margin: 0 auto;
  }
}
.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  font-size: 16px;
  font-weight: 600;
}

.breadcrumb a {
  color: #d9d9d9;
}

.breadcrumb li:not(:last-of-type)::after {
  content: "›";
  margin: 0 0.6em; /* 記号の左右の余白 */
  color: #d9d9d9 !important; /* 記号の色 */
}

/*===========================================================
  02 交野 七夕
============================================================*/
.sk7 {
  background-color: #f2f2f2;
}

/*===========================================================
  02 施設の活用方法
============================================================*/
.sk2 {
  background-color: #d4e9e2;
}

.sk2_body {
  padding-right: 64px;
}

@media screen and (max-width: 800px) {
  .sk2_body {
    padding-right: 0px;
  }
}
@media screen and (min-width: 1441px) {
  .sk2_body {
    padding-right: 0px;
  }
}
.sk2_img {
  margin-bottom: 16px;
}

.sk2_its {
  margin-bottom: 80px;
}

.sk2_2group {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 140px;
}

@media screen and (max-width: 1300px) {
  .sk2_2group {
    gap: 20px;
  }
}
@media screen and (max-width: 1300px) {
  .sk2_group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    overflow-x: auto;
  }
}
@media screen and (min-width: 1441px) {
  .sk2_group {
    text-align: center;
    padding-top: 80px;
    width: 1107px;
  }
}
.sk2_2group:not(:first-child) {
  margin-top: 32px;
}

@media screen and (max-width: 1300px) {
  .sk2_2group:not(:first-child) {
    margin-top: 0px;
  }
}
.sk2_2imgs {
  background-color: #fff;
  width: 480px;
  border: 2px solid #24a580;
}

@media screen and (max-width: 800px) {
  .sk2_2imgs {
    width: 335px;
  }
}
.sk2_mds {
  margin-bottom: 32px;
}

.sk2_texts p {
  text-align: left;
}

.sk2_texts {
  padding: 32px 20px;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .sk2_texts {
    padding: 16px 20px;
  }
}
/*===========================================================
  02 いわふねの特徴
============================================================*/
.sfe_body {
  padding-right: 64px;
}

@media screen and (max-width: 1100px) {
  .sfe_body {
    padding-right: 0px;
  }
}
@media screen and (min-width: 1441px) {
  .sfe_body {
    padding-right: 0px;
  }
}
.sfe_its {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 65px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1100px) {
  .sfe_its {
    display: block;
  }
}
.sfe_img {
  width: 520px;
}

@media screen and (max-width: 1100px) {
  .sfe_img {
    margin-bottom: 16px;
  }
}
.sfe_its:not(:first-child) {
  margin-top: 32px;
}

/*===========================================================
  02 指定管理者について
============================================================*/
.s_mds {
  margin-bottom: 40px;
}

@media screen and (max-width: 800px) {
  .s_mds {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 800px) {
  .sp_none {
    display: none;
  }
}
.s_sp_img {
  display: none;
}

@media screen and (max-width: 1100px) {
  .s_sp_img {
    display: block;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1100px) {
  .s_pc_img {
    display: none;
  }
}
.ssk {
  background-color: #b6cbd5;
}

.ssk_its {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 78px;
}

.ssk_texts {
  width: 545px;
}

@media screen and (max-width: 800px) {
  .ssk_texts {
    width: auto;
  }
}
.ssk_img {
  width: 440px;
  height: 320px;
}

@media screen and (max-width: 500px) {
  .ssk_img {
    width: 100%;
    height: auto;
  }
}
.ssk_img01 {
  width: 500px;
  height: 471px;
}

@media screen and (max-width: 500px) {
  .ssk_img01 {
    width: 100%;
    height: auto;
  }
}
/*==========================================================================================================================================
    03_施設紹介
==============================================================================================================================================*/
/*===========================================================
  03 画像共通
============================================================*/
.sgbg {
  background-color: #d4e9e2;
}

.s_its {
  width: 328px;
}

@media screen and (max-width: 800px) {
  .s_its {
    margin-bottom: 24px;
    width: auto;
  }
}
.s_3imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  padding-right: 64px;
}

@media screen and (max-width: 1439px) {
  .s_3imgs {
    padding-right: 0px;
  }
}
@media screen and (max-width: 800px) {
  .s_3imgs {
    display: block;
  }
}
.s_3imgs:not(:first-child) {
  margin-top: 32px;
}

.s_img {
  margin-bottom: 8px;
}

/*===========================================================
  03 アンカーリンク 共通
============================================================*/
.s_ank {
  width: 46%;
  padding-left: 100px;
  background-color: #24a580;
  height: 46px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

@media screen and (max-width: 800px) {
  .s_ank {
    padding-left: 8px;
  }
}
@media screen and (max-width: 500px) {
  .s_ank {
    width: 45%;
  }
}
@media screen and (max-width: 500px) {
  .s_snk100 {
    width: 100%;
  }
}
.s_ank::after {
  position: absolute;
  background-image: url(../img/arrow_anker.png);
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  width: 30px;
  height: 30px;
  right: 10%;
}

@media screen and (max-width: 800px) {
  .s_ank::after {
    width: 13px;
    height: 13px;
  }
}
@media screen and (max-width: 500px) {
  .mb10 {
    margin-bottom: 10px !important;
  }
}
.s_ank:first-of-type {
  margin-right: 10px !important;
}

@media screen and (max-width: 320px) {
  .s_ank:first-of-type {
    margin-right: 0px;
    margin-bottom: 10px;
  }
}
.s_2ankers:not(:first-child) {
  margin-top: 10px;
}

@media screen and (max-width: 320px) {
  .s_2ankers:not(:first-child) {
    margin-top: 0px;
  }
}
/*==========================================================================================================================================
  04_アウトドアページ
==============================================================================================================================================*/
/*===========================================================
  04  タブ 共通
============================================================*/
/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  background-color: #fff;
  margin: 0 auto;
}

/*タブのスタイル*/
.tab_item {
  width: 240px;
  height: 55px;
  background-color: #fff;
  border: 2px solid #24a580;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #24a580;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin-top: 10px;
}

.tab_item:hover {
  opacity: 0.75;
}

.tab_item {
  margin-right: 20px;
}
.tab_item.btn-event {
  border-color: rgb(36, 165, 128);
  color: rgb(36, 165, 128);
}
.tab_item.btn-planetarium {
  border-color: rgb(253, 111, 71);
  color: rgb(253, 111, 71);
}
.tab_item.btn-school {
  border-color: rgb(235, 201, 65);
  color: rgb(235, 201, 65);
}
.tab_item.btn-info {
  border-color: rgb(136, 130, 244);
  color: rgb(136, 130, 244);
}

@media screen and (max-width: 600px) {
  .tab_item {
    margin-right: 10px;
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 600px) {
  .mr10 {
    margin-right: 10px;
  }
}
/*ラジオボタンを全て消す*/
input[name=tab_item] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 100px 40px 0px 0px;
  clear: both;
  overflow: hidden;
}

@media screen and (max-width: 1200px) {
  .tab_content {
    padding: 56px 0px 0px 0px;
  }
}
/*選択されているタブのコンテンツのみを表示*/
#all:checked ~ #all_content,
#programming:checked ~ #programming_content,
#design:checked ~ #design_content {
  display: block;
}

/*選択されているタブのコンテンツのみを表示*/
#bbq:checked ~ #bbq_content,
#lodge:checked ~ #lodge_content,
#denki:checked ~ #denki_content {
  display: block;
}

/*選択されているタブのコンテンツのみを表示*/
#taiku:checked ~ #taiku_content,
#hikae:checked ~ #hikae_content {
  display: block;
}

/*選択されているタブのコンテンツのみを表示*/
#ks01:checked ~ #ks01_content,
#ks02:checked ~ #ks02_content,
#kaigi:checked ~ #kaigi_content {
  display: block;
}

/*選択されているタブのコンテンツのみを表示*/
#tab01:checked ~ #tab01_content,
#tab02:checked ~ #tab02_content,
#tab03:checked ~ #tab03_content,
#tab04:checked ~ #tab04_content,
#tab05:checked ~ #tab05_content,
#tab06:checked ~ #tab06_content,
#tab07:checked ~ #tab07_content,
#tab08:checked ~ #tab08_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #24a580;
  color: #fff;
}

.tabs input:checked + .btn-event {
  background-color: rgb(36, 165, 128);
  border-color: rgb(36, 165, 128);
  color: #fff;
}

.tabs input:checked + .btn-planetarium {
  background-color: rgb(253, 111, 71);
  border-color: rgb(253, 111, 71);
  color: #fff;
}

.tabs input:checked + .btn-school {
  background-color: rgb(235, 201, 65);
  border-color: rgb(235, 201, 65);
  color: #fff;
}

.tabs input:checked + .btn-info {
  background-color: rgb(136, 130, 244);
  border-color: rgb(136, 130, 244);
  color: #fff;
}

.radius {
  border-radius: 50px;
}

/*タブのスタイル*/
.tab_item02 {
  width: 240px;
  height: 55px;
  background-color: #fff;
  border: 2px solid #24a580;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #24a580;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin-top: 10px;
}

.tab_item02:hover {
  opacity: 0.75;
}

.tab_item02 {
  margin-right: 20px;
}

/*ラジオボタンを全て消す*/
input[name=tab_item02] {
  display: none;
}

/*タブのスタイル*/
.tab_item03 {
  width: 240px;
  height: 55px;
  background-color: #fff;
  border: 2px solid #24a580;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #24a580;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin-top: 10px;
}

.tab_item03:hover {
  opacity: 0.75;
}

.tab_item03 {
  margin-right: 20px;
}

/*ラジオボタンを全て消す*/
input[name=tab_item03] {
  display: none;
}

/*タブのスタイル*/
.tab_item04 {
  width: 240px;
  height: 55px;
  background-color: #fff;
  border: 2px solid #24a580;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #24a580;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin-top: 10px;
}

.tab_item04:hover {
  opacity: 0.75;
}

.tab_item04 {
  margin-right: 20px;
}

/*ラジオボタンを全て消す*/
input[name=tab_item04] {
  display: none;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_purple {
  background-color: #8882f4;
  color: #fff;
  border: 2px solid #8882f4;
}

.tabs input:checked + .tab_green {
  background-color: #24a580;
  color: #fff;
  border: 2px solid #24a580;
}

.tab_gray {
  border: 2px solid #d9d9d9;
  background-color: #d9d9d9;
  color: #7a7878;
}

.tab_doubles {
  padding-right: 124px;
}

@media screen and (max-width: 1000px) {
  .tab_doubles {
    padding-right: 0px;
  }
}
.pt0 {
  padding: 0px;
}

.mt80 {
  margin-top: 80px;
}

@media screen and (max-width: 600px) {
  .mt80 {
    margin-top: 40px;
  }
}
.mt64 {
  margin-top: 64px;
}

@media screen and (max-width: 600px) {
  .mt64 {
    margin-top: 32px;
  }
}
.mt40 {
  margin-top: 40px;
}

.mt24 {
  margin-top: 24px;
}

.mt20 {
  margin-top: 20px;
}

.mt16 {
  margin-top: 16px;
}

.mt8 {
  margin-top: 8px !important;
}

.ml30 {
  margin-left: 30px;
}

.ml8 {
  margin-left: 8px;
}

.mb8 {
  margin-bottom: 8px;
}

@media screen and (max-width: 600px) {
  .wd100 {
    width: 100%;
  }
}
/*===========================================================
  04  タブ中身 共通
============================================================*/
.scm_contents {
  width: 650px;
}

@media screen and (max-width: 800px) {
  .scm_contents {
    width: auto;
  }
}
.scm_content:not(:first-child) {
  margin-top: 32px;
}

.scm_3imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 32px;
  margin-bottom: 40px;
}

@media screen and (max-width: 1200px) {
  .scm_3imgs {
    gap: 10px;
    overflow-x: auto;
    margin-bottom: 24px;
  }
}
.scm_img {
  width: 328px;
}

@media screen and (max-width: 1200px) {
  .scm_pc {
    display: none;
  }
}
.scm_sp {
  display: none;
}

@media screen and (max-width: 1200px) {
  .scm_sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.scm_title {
  border: 2px solid #24a580;
  /* height: 48px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 16px;
  margin-bottom: 16px;
}

.scm_fire {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 500px) {
  .scm_fire {
    gap: 8px;
  }
}
.scm_fire:not(:first-child) {
  margin-top: 8px;
}

.scm_fire_img {
  width: 40px;
  height: 40px;
}

.scm_2fire {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mt0 {
  margin-top: 0px !important;
}

.mt16 {
  margin-top: 16px !important;
}

.t_mds:not(:first-child) {
  margin-top: 8px;
}

.scm_jokens {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.scm_joken {
  background-color: #24a580;
  padding: 4px 14px;
  width: 94px;
}

@media screen and (max-width: 400px) {
  .scm_joken {
    width: 90px;
  }
}
.scm_joken_text {
  width: 100%;
}

.scm_3gomis {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.scm_gomis {
  width: 188px;
}

@media screen and (max-width: 400px) {
  .scm_gomis {
    width: 165px;
  }
}
@media screen and (max-width: 320px) {
  .scm_gomis {
    width: 148px;
  }
}
.scm_gomi_text {
  background-color: #24a580;
  padding: 4px 0px;
  text-align: center;
}

.max1000_block {
  display: none;
}

@media screen and (max-width: 1000px) {
  .max1000_block {
    display: block;
  }
}
@media screen and (max-width: 1000px) {
  .max1000_none {
    display: none !important;
  }
}
@media screen and (max-width: 800px) {
  .pc800 {
    display: none !important;
  }
}
.sp800 {
  display: none !important;
}

.max800_block {
  display: none;
}

@media screen and (max-width: 800px) {
  .max800_block {
    display: block;
  }
}
.sp800_block {
  display: block;
}

@media screen and (max-width: 800px) {
  .max800_none {
    display: none;
  }
}
.sp800_block {
  display: block;
}

.sp375 {
  display: none;
}

@media screen and (max-width: 375px) {
  .sp375 {
    display: block;
  }
}
.max500_block {
  display: none;
}

@media screen and (max-width: 500px) {
  .max500_block {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .max500_none {
    display: none;
  }
}
.tounin_mds {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.tounin_mds:not(:first-child) {
  margin-top: 8px;
}

.scm_tou {
  width: 120px;
}

.s_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.ryu_title {
  border-bottom: 1px solid #7a7878;
  padding-bottom: 10px;
  margin-bottom: 32px;
}

/* .ryu_text{
  width: 1000px;
}

@media screen and (max-width: 1100px) {
  .ryu_text {
    width: 100%;
  }
} */
.ryu_4imgs {
  margin-top: 40px;
  width: 46%;
}

@media screen and (max-width: 500px) {
  .ryu_4imgs {
    width: 100%;
  }
}
.ryu_2imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

@media screen and (max-width: 900px) {
  .ryu_2imgs {
    display: block;
  }
}
.ryu_2imgs:not(:first-child) {
  margin-top: 40px;
}

@media screen and (max-width: 900px) {
  .ryu_2imgs:not(:first-child) {
    margin-top: 16px;
  }
}
/* .ryu_img{
  width: 520px;
}

@media screen and (max-width: 1100px) {
  .ryu_img {
    width: 335px;
  }
} */
@media screen and (max-width: 900px) {
  .ryu_img:not(:first-child) {
    margin-top: 16px;
  }
}
/*==========================================================================================================================================
    05_設備紹介
==============================================================================================================================================*/
/*===========================================================
  05 2カラム 画像 共通
============================================================*/
.s_2imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  padding-right: 64px;
}

@media screen and (max-width: 1439px) {
  .s_2imgs {
    padding-right: 0px;
  }
}
@media screen and (max-width: 800px) {
  .s_2imgs {
    display: block;
  }
}
.s_2imgs:not(:first-child) {
  margin-top: 32px;
}

.s_2its {
  width: 520px;
}

@media screen and (max-width: 800px) {
  .s_2its {
    margin-bottom: 24px;
    width: auto;
  }
}
.tri_texts {
  margin-top: 12px;
}

/*==========================================================================================================================================
  06_体育室ページ
==============================================================================================================================================*/
/*===========================================================
  06 体育室見取り図
============================================================*/
.mtrz_img {
  padding-right: 40px;
  margin-bottom: 96px;
}

@media screen and (max-width: 800px) {
  .mtrz_img {
    padding-right: 0px;
  }
}
/*==========================================================================================================================================
  08_プラネット
==============================================================================================================================================*/
/*===========================================================
  08 プラネット
============================================================*/
.planet_padding {
  padding-right: 60px;
}

@media screen and (max-width: 1439px) {
  .planet_padding {
    padding-right: 0px;
  }
}
@media screen and (min-width: 1441px) {
  .planet_padding {
    padding-right: 0px;
  }
}
/*==========================================================================================================================================
  09_施設の活用方法
==============================================================================================================================================*/
.wd660 {
  width: 660px;
  margin-bottom: 40px;
}

@media screen and (max-width: 660px) {
  .wd660 {
    width: auto;
  }
}
/*===========================================================
  09 いわふねを満喫するプランをご紹介
============================================================*/
.plan {
  padding-top: 60px;
}

@media screen and (max-width: 800px) {
  .plan {
    padding-top: 60px;
  }
}
.spl {
  background-color: #d4e9e2;
}

.spl_body {
  padding-right: 64px;
}

@media screen and (max-width: 800px) {
  .spl_body {
    padding-right: 0px;
  }
}
.spl_img {
  margin-bottom: 16px;
}

.spl_its {
  margin-bottom: 40px;
}

.spl_2group {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 140px;
}

@media screen and (max-width: 1300px) {
  .spl_2group {
    display: block;
  }
}
@media screen and (max-width: 1300px) {
  .spl_group {
    gap: 20px;
  }
}
.spl_2group:not(:first-child) {
  margin-top: 32px;
}

@media screen and (max-width: 1300px) {
  .spl_2group:not(:first-child) {
    margin-top: 40px;
  }
}
.spl_2imgs {
  background-color: #fff;
  width: 480px;
  border: 2px solid #24a580;
}

@media screen and (max-width: 800px) {
  .spl_2imgs {
    width: 335px;
  }
}
@media screen and (max-width: 500px) {
  .spl_2imgs {
    width: auto;
  }
}
@media screen and (max-width: 1300px) {
  .spl_2imgs:not(:first-child) {
    margin-top: 40px;
  }
}
.spl_mds {
  margin-bottom: 32px;
}

.spl_texts {
  padding: 32px 20px;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .spl_texts {
    padding: 32px 20px;
  }
}
.spl_texts p {
  text-align: left;
}

@media screen and (max-width: 500px) {
  .max500_center {
    text-align: center;
  }
}
/*==========================================================================================================================================
  10_はじめてご利用する方へ
==============================================================================================================================================*/
/*===========================================================
  10 星の里 いわふねとは 共通 レイアウト
============================================================*/
.r_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 65px;
  padding-right: 64px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1439px) {
  .r_body {
    padding-right: 0px;
  }
}
@media screen and (max-width: 1023px) {
  .r_body {
    display: block;
  }
}
@media screen and (min-width: 1441px) {
  .r_body {
    padding-right: 0px;
  }
}
.riyou_body {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.r_img {
  width: 520px;
}

@media screen and (max-width: 1023px) {
  .r_img {
    margin-bottom: 16px;
    width: auto;
  }
}
.right {
  text-align: end;
  padding-right: 64px;
}

@media screen and (max-width: 1023px) {
  .right {
    text-align: left;
    padding-right: 0px;
  }
}
.sp1023 {
  display: none;
}

@media screen and (max-width: 1023px) {
  .sp1023 {
    display: block;
  }
}
@media screen and (max-width: 1023px) {
  .pc1023 {
    display: none;
  }
}
.guide_padding {
  padding-right: 0px !important;
}

.g_body {
  margin-bottom: 40px;
}

/*===========================================================
  10 ステップ
============================================================*/
.steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
  padding-right: 64px;
  padding: 40px 0px;
}

@media screen and (max-width: 1439px) {
  .steps {
    padding-right: 0px;
  }
}
@media screen and (max-width: 900px) {
  .steps {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .steps {
    display: block;
    width: 250px;
    margin: auto;
  }
}
@media screen and (min-width: 1441px) {
  .steps {
    padding-right: 0px;
  }
}
@media screen and (max-width: 900px) {
  .step:not(:first-child) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 500px) {
  .step:not(:first-child) {
    margin-top: 20px;
  }
}
.step_body {
  margin-top: 40px;
  padding-right: 64px;
}

@media screen and (max-width: 1439px) {
  .step_body {
    padding-right: 0px;
  }
}
@media screen and (min-width: 1441px) {
  .step_body {
    padding-right: 0px;
  }
}
.step_number {
  background-color: #24a580;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 2px 14px;
  margin-bottom: 10px;
}

.step_img {
  margin: 16px 0px;
}

@media screen and (max-width: 500px) {
  .step_img {
    width: 250px;
  }
}
.g_giji {
  position: relative;
  padding-left: 15px;
}

.g_giji::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 100%;
  background-color: #24a580;
  left: 0px;
  border-radius: 35px;
}

.lh40 {
  line-height: 40px;
}

@media screen and (max-width: 500px) {
  .lh40 {
    line-height: 30px;
  }
}
/*==========================================================================================================================================
  11_利用方法_予約方法
==============================================================================================================================================*/
/*===========================================================
  11_予約フロー
============================================================*/
.sre {
  padding-top: 80px;
}

@media screen and (max-width: 500px) {
  .sre {
    padding-top: 40px;
  }
}
.sre_body {
  padding-right: 64px;
}

@media screen and (max-width: 1439px) {
  .sre_body {
    padding-right: 0px;
  }
}
@media screen and (min-width: 1441px) {
  .sre_body {
    padding-right: 0px;
  }
}
.sre_title {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.sre_mdss {
  gap: 10px !important;
  margin-bottom: 40px;
}

@media screen and (max-width: 600px) {
  .sre_mdss {
    display: block !important;
    margin-bottom: 20px !important;
  }
}
@media screen and (max-width: 600px) {
  .sre_mdss p {
    text-align: center;
  }
}
.sre_texts {
  display: block !important;
  width: 64% !important;
}

@media screen and (max-width: 600px) {
  .sre_texts {
    width: 100% !important;
  }
}
@media screen and (max-width: 600px) {
  .point_number {
    width: 100% !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
}
.sre_flow_img {
  width: 360px;
  height: 240px;
}

@media screen and (max-width: 1000px) {
  .sre_flow_img {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 500px) {
  .sre_flow_img {
    height: auto;
  }
}
.sre_flows {
  display: block !important;
}

.sre_flow {
  gap: 40px !important;
}

@media screen and (max-width: 1000px) {
  .sre_flow {
    display: block !important;
  }
}
.sre_flow:not(:last-child) {
  margin-bottom: 40px;
}

.sre_flow:not(:first-child) {
  margin-top: 40px;
}

.triangle-bottom {
  width: 40px;
  margin: auto;
  display: inline-block;
  border-style: solid;
  border-width: 13px 20px 0 20px;
  border-color: #24a580 transparent transparent transparent;
}

/*==========================================================================================================================================
  13_利用料金一覧
==============================================================================================================================================*/
/*===========================================================
  13  ご利用料金一覧
============================================================*/
.spr_link {
  border-bottom: 1px solid #000;
  padding-bottom: 2px;
}

.spr_link:hover {
  opacity: 0.7;
}

.spr_body {
  padding-right: 64px;
}

@media screen and (max-width: 1439px) {
  .spr_body {
    padding-right: 0px;
  }
}
@media screen and (min-width: 1441px) {
  .spr_body {
    padding-right: 0px;
  }
}
.spr_body:not(:first-child) {
  margin-top: 40px;
}

.spr_img {
  margin-top: 24px;
}

@media screen and (max-width: 1000px) {
  .spr_scroll {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: scroll;
  }
}
@media screen and (max-width: 1439px) {
  .spr_scroll div {
    width: 650px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (max-width: 500px) {
  .spr_scroll div {
    width: 440px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.wd450 {
  width: 450px !important;
}

@media screen and (max-width: 1000px) {
  .min_scroll {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: scroll;
  }
}
@media screen and (max-width: 1439px) {
  .min_scroll div {
    /* width: 600px; */
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (max-width: 500px) {
  .min_scroll div {
    /* width: 600px; */
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.pr_img01_sp {
  width: 600px;
}

.pr_img02_sp {
  width: 650px;
}

.pr_img03_sp {
  width: 400px;
}

.pr_img04_sp {
  width: 440px;
}

.pr_img05_sp {
  width: 440px;
}

.pr_img06_sp {
  width: 500px;
}

.pr_img07_sp {
  width: 500px;
}

.pr_img08_sp {
  width: 630px;
}

.pr_img09_sp {
  width: 630px;
}

.pr_img10_sp {
  width: 440px;
}

.pr_img11_sp {
  width: 440px;
}

/*==========================================================================================================================================
    14_スクール一覧
==============================================================================================================================================*/
/*===========================================================
  14 スクール一覧
============================================================*/
.sc_body {
  padding-right: 64px;
}

@media screen and (max-width: 1439px) {
  .sc_body {
    padding-right: 0px;
  }
}
@media screen and (min-width: 1441px) {
  .sc_body {
    padding-right: 0px;
  }
}
.sc_contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

@media screen and (max-width: 1000px) {
  .sc_contents {
    display: block;
    width: 50%;
    margin: auto;
  }
}
@media screen and (max-width: 700px) {
  .sc_contents {
    width: 100%;
  }
}
.sc_contents:not(:first-child) {
  margin-top: 40px;
}

.sc_content {
  border: 2px solid #24a580;
  width: 358px;
}

@media screen and (max-width: 700px) {
  .sc_content {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .sc_content:not(:first-child) {
    margin-top: 20px;
  }
}
.sc_texts {
  padding: 16px 16px 32px 16px;
}

/*===========================================================
  14 スクール一覧 モーダル
============================================================*/
.md_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}

@media screen and (max-width: 1024px) {
  .md_body {
    display: block;
  }
}
.md_right {
  width: 55%;
}

@media screen and (max-width: 1024px) {
  .md_right {
    width: 100%;
  }
}
.sc_modal_img:not(:first-child) {
  margin-top: 40px;
}

/*==========================================================================================================================================
  15_交通アクセス
==============================================================================================================================================*/
/*===========================================================
  15 電車で行く場合 車で行く場合
============================================================*/
.stc_body {
  padding: 0px 170px 0px 120px;
}

@media screen and (max-width: 1439px) {
  .stc_body {
    padding: 0px;
  }
}
@media screen and (min-width: 1441px) {
  .stc_body {
    padding: 0px 120px 0px 120px;
  }
}
.stc_body:not(:first-child) {
  margin-top: 140px;
}

@media screen and (max-width: 500px) {
  .stc_body:not(:first-child) {
    margin-top: 40px;
  }
}
.stc_titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

@media screen and (max-width: 500px) {
  .stc_titles {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 1439px) {
  .stc_scroll {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: scroll;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 800px) {
  .stc_scroll {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}
@media screen and (max-width: 1439px) {
  .stc_scroll div {
    width: 700px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (max-width: 500px) {
  .stc_train {
    width: 30px;
  }
}
.stc_text {
  margin-top: 16px;
  text-align: center;
}

.stc_red_text {
  margin-top: 16px;
  text-align: left;
}

.sp700 {
  display: none;
}

@media screen and (max-width: 700px) {
  .sp700 {
    display: block;
  }
}
.red_title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 40px;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  padding: 4px 32px;
  background-color: red;
  font-size: 28px;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 700px) {
  .red_title {
    margin-top: 32px;
    margin-bottom: 16px;
    padding: 4px 24px;
    font-size: 20px;
  }
}
.stc_red_text strong {
  font-weight: bold;
}

/*==========================================================================================================================================
  16_18 イベント情報 お知らせ
==============================================================================================================================================*/
/*===========================================================
  16_18 イベント情報
============================================================*/
.ev_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  border-bottom: 2px solid #24a580;
  padding-bottom: 80px;
}

@media screen and (max-width: 1000px) {
  .ev_content {
    display: block;
  }
}
.ev_content:not(:first-child) {
  padding-top: 80px;
}

@media screen and (max-width: 500px) {
  .ev_content:not(:first-child) {
    padding-top: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .ev_img {
    text-align: center;
  }
}
.ev_img img {
  width: 256px;
}

.ev_texts {
  width: 65%;
}

@media screen and (max-width: 1000px) {
  .ev_texts {
    margin-top: 40px;
    width: 100%;
  }
}
.ev_titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
}

@media screen and (max-width: 800px) {
  .ev_titles {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 8px;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
.ev_category {
  background-color: #e15554;
  padding: 3px 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-width: 100px;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ev_gaiyou {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 16px;
}

@media screen and (max-width: 800px) {
  .ev_gaiyou {
    gap: 8px;
  }
}
@media screen and (max-width: 500px) {
  .wd {
    width: 80%;
  }
}
.ev_gaiyou_ttl {
  width: 100px;
}

/* @media screen and (max-width: 800px) {
  .ev_gaiyou_ttl{
    color: #fff;
    background-color: #24A580;
    width: 80px;
    height: 100%;
    text-align: center;

  }
} */
@media screen and (max-width: 800px) {
  .ev_gaiyou_ttl {
    width: 80px;
    min-width: 80px;
  }
}
/*===========================================================
  16_17 イベント情報詳細
============================================================*/
.ev_detail_img {
  margin: 64px 0px 80px 0px;
}

/*===========================================================
  16_18 お知らせ
============================================================*/
.news_date {
  background-color: #24a580;
  padding: 6px 8px;
}

.news_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #000;
  padding-top: 32px;
  padding-bottom: 32px;
}

@media screen and (max-width: 800px) {
  .news_group {
    display: block;
  }
}
.news_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*===========================================================
  16_18 ページネーション 共通
============================================================*/
.Pagination {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 500px) {
  .Pagination {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.Pagination-Item-Link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 45px;
  height: 45px;
  background: #fff;
  border: solid 2px #24a580;
  font-size: 14px;
  color: #24a580;
  font-weight: bold;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.Pagination-Item-Link-Icon {
  width: 20px;
}

.Pagination-Item-Link.isActive {
  background: #24a580;
  color: #fff;
  pointer-events: none;
}

.Pagination-Item-Link:not(.isActive):hover {
  background: #24a580;
  color: #fff;
}

.Pagination > * + * {
  margin-left: 12px;
}

.Pagination {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 500px) {
  .Pagination {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 45px;
  height: 45px;
  background: #fff;
  border: solid 2px #24a580;
  font-size: 14px;
  color: #24a580;
  font-weight: bold;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.Pagination-Item-Link-Icon {
  width: 20px;
}

.page-numbers.current {
  background: #24a580;
  color: #fff;
  pointer-events: none;
}

.Pagination-Item-Link:not(.isActive):hover {
  background: #24a580;
  color: #fff;
}

.Pagination > * + * {
  margin-left: 12px;
}

.Pagination .icon-chevron-left,
.Pagination .icon-chevron-right {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: cover;
  vertical-align: middle;
}

.Pagination .icon-chevron-left {
  background-image: url(../img/prev-icon.svg);
  background-size: cover;
  width: 8px;
  height: 14px;
}

.Pagination .icon-chevron-right {
  background-image: url(../img/next-icon.svg);
  background-size: cover;
  width: 8px;
  height: 14px;
}

/*===========================================================
  16_18 お知らせ
============================================================*/
/*==========================================================================================================================================
  20 よくある質問
==============================================================================================================================================*/
/*===========================================================
  20 アコーディオンメニュー
============================================================*/
.accordion-container {
  margin: 0 auto 0;
  max-width: 760px;
  width: 100%;
}

.accordion-list:not(:first-child) {
  margin-top: 24px;
}

.accordion-title {
  background: #24a580;
  cursor: pointer;
  padding: 22px 24px;
  position: relative;
  border-radius: 8px 8px 8px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.accordion-title:after {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  content: "";
  top: 35%;
  right: 22px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.accordion-title.open:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 45%;
}

.accordion-text {
  border-left: 1px solid #24a580;
  border-right: 1px solid #24a580;
  border-bottom: 1px solid #24a580;
  display: none;
  padding: 22px 24px;
  border-radius: 0px 0px 8px 8px;
  margin-top: -5px;
}

.accordion-text span {
  font-weight: 600;
  margin-right: 8px;
}

.accordion-text div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.accordion-container02 {
  margin: 0 auto 0;
  max-width: 760px;
  width: 100%;
}

.accordion-list02:not(:first-child) {
  margin-top: 24px;
}

.accordion-title02 {
  background: #24a580;
  cursor: pointer;
  padding: 22px 24px;
  position: relative;
  border-radius: 8px 8px 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.accordion-title02:after {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  content: "";
  top: 35%;
  right: 22px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.accordion-title02.open:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 45%;
}

.accordion-text02 {
  border-left: 1px solid #24a580;
  border-right: 1px solid #24a580;
  border-bottom: 1px solid #24a580;
  display: none;
  padding: 22px 24px;
  border-radius: 0px 0px 8px 8px;
}

.accordion-text02 span {
  font-weight: 600;
  margin-right: 8px;
}

.accordion-text02 div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/*==========================================================================================================================================
  21 指定管理会社
==============================================================================================================================================*/
/*===========================================================
  21 指定管理者情報
============================================================*/
.sin_midashi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  width: 300px;
}

@media screen and (max-width: 1000px) {
  .sin_text {
    margin-left: 20px;
    margin-top: 4px;
  }
}
.sin_body {
  width: 880px;
}

@media screen and (max-width: 1000px) {
  .sin_body {
    width: 100%;
  }
}
.sin_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #000;
  padding: 40px 0px;
}

@media screen and (max-width: 1000px) {
  .sin_content {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .sin_content {
    padding: 12px 0px;
  }
}
.sin_flex p {
  color: #24a580;
}

.sin_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

@media screen and (max-width: 700px) {
  .sin_flex {
    display: block;
  }
}
/*==========================================================================================================================================
  26 ウェブアクセシビリティ
==============================================================================================================================================*/
/*===========================================================
  26 ウェブアクセシビリティ
============================================================*/
.swe_body {
  display: -ms-grid;
  display: grid;
  gap: 16px;
}

/*==========================================================================================================================================
  27 ウェブアクセシビリティ方針
==============================================================================================================================================*/
/*===========================================================
  27 ウェブアクセシビリティ方針
============================================================*/
.mkj_body {
  padding-right: 290px;
}

@media screen and (max-width: 1439px) {
  .mkj_body {
    padding-right: 0px;
  }
}
@media screen and (min-width: 1441px) {
  .mkj_body {
    padding-right: 0px;
  }
}
.spo_body {
  padding-right: 290px;
}

@media screen and (max-width: 1439px) {
  .spo_body {
    padding-right: 0px;
  }
}
@media screen and (min-width: 1441px) {
  .spo_body {
    padding-right: 0px;
  }
}
.spo_title {
  border-bottom: 1px dashed #000;
  padding-bottom: 4px;
  width: 80%;
}

@media screen and (max-width: 700px) {
  .spo_title {
    width: 100%;
  }
}
.spo_mds {
  position: relative;
  padding-left: 16px;
}

.spo_mds::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 24px;
  background-color: #000;
  top: 7px;
  left: 0%;
}

/* -----------------------------------------------------------------
 スクロール
----------------------------------------------------------------- */
.top_scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  width: 2050px;
}

.top_scroll_img img {
  width: 328px;
}

.top_scroll02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  width: 1384px;
}

.top_scroll_img02 img {
  width: 440px;
}

.photo_scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  width: 2050px;
}

@media screen and (max-width: 600px) {
  .photo_scroll {
    width: 1180px;
  }
}
.photo_img img {
  width: 328px;
}

/* -----------------------------------------------------------------
 ホバー
----------------------------------------------------------------- */
/* .b_hover:hover .b_hover02 {
  position: relative;
  left: 5%;
  transition: all 0.1s;
}

.b_hover p:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background: #fff;
  z-index: -1;
  transition: all 0.4s;
}
.b_hover:hover .b_hover02:after {
  width: 100%;
} */
.b_hover02 {
  position: relative;
  display: inline-block; /* ブロック内に下線を収めるため */
}

.b_hover02 {
  margin-left: 4px; /* 初期のマージン設定 */
  -webkit-transition: margin-left 0.3s ease-in-out;
  transition: margin-left 0.3s ease-in-out; /* ホバー解除時に適用されるアニメーション */
}

.b_hover:hover .b_hover02 {
  margin-left: 12px; /* ホバー時にマージンを増やす */
  -webkit-transition: none;
  transition: none; /* ホバー時は即時反応、トランジションを無効化 */
}

.b_hover02::after {
  content: "";
  position: absolute;
  left: 0;
  width: 0%; /* 初期状態では下線非表示 */
  bottom: -2px; /* テキストからの距離 */
  height: 1px; /* 下線の高さ */
  background-color: #fff; /* 下線の色 */
  -webkit-transition: width 0.3s ease-in-out, left 0.3s ease-in-out 0s;
  transition: width 0.3s ease-in-out, left 0.3s ease-in-out 0s; /* 幅と左のプロパティのアニメーション */
}

.b_hover:hover .b_hover02::after {
  width: 100%; /* ホバー時に全幅表示 */
  left: 0;
  -webkit-transition: width 0s;
  transition: width 0s; /* ホバー時は即時表示 */
}

.b_hover .b_hover02::after {
  width: 0%; /* ホバー解除時に幅を0に */
  left: 100%; /* 下線が右に向かって移動し消える */
  -webkit-transition: left 0.3s ease-in-out, width 0.3s ease-in-out;
  transition: left 0.3s ease-in-out, width 0.3s ease-in-out; /* 左の位置を変えるアニメーションを先にして幅を縮小 */
}

/*=======================
  s_footer
=======================*/
.wd182 {
  width: 182px;
}

footer {
  background-color: #333;
}

.f_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0px;
}

@media screen and (max-width: 1439px) {
  .f_container {
    max-width: 89%;
  }
}
@media screen and (max-width: 1439px) {
  .f_container {
    padding: 40px 0px 20px;
  }
}
.f_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 250px;
  border-bottom: 1px solid #fff;
  padding-bottom: 40px;
}

@media screen and (max-width: 1439px) {
  .f_body {
    display: block;
  }
}
@media screen and (max-width: 800px) {
  .f_body {
    padding-bottom: 20px;
  }
}
.f_logo img {
  width: 95px;
  margin-bottom: 40px;
}

@media screen and (max-width: 800px) {
  .f_logos {
    text-align: center;
  }
}
.f_snses {
  margin-top: 16px;
}

.f_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  margin-top: 16px;
}

@media screen and (max-width: 800px) {
  .f_sns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.f_sns_img {
  width: 30px;
  height: 30px;
}

.f_navs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}

@media screen and (max-width: 1439px) {
  .f_navs {
    margin-top: 40px;
  }
}
@media screen and (max-width: 800px) {
  .f_navs {
    display: block;
    padding-left: 48px;
  }
}
@media screen and (max-width: 800px) {
  .f_gnav:not(:first-child) {
    margin-top: 40px;
  }
}
.f_nav {
  display: -ms-grid;
  display: grid;
  margin-top: 32px;
  width: 220px;
}

@media screen and (max-width: 800px) {
  .f_nav {
    margin-top: 16px;
    width: auto;
  }
}
.f_tels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 800px) {
  .f_tels {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 8px;
  }
}
.f_tel {
  width: 17px;
  height: 17px;
}

.sample5-3:not(:first-child) {
  margin-top: 16px;
}

.f_copys {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 160px;
  margin-top: 40px;
}

@media screen and (max-width: 1300px) {
  .f_copys {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px;
  }
}
@media screen and (max-width: 800px) {
  .f_copys {
    margin-top: 16px;
  }
}
@media screen and (max-width: 500px) {
  .f_copyright {
    font-size: 10px;
  }
}
.f_nav02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 45px;
}

@media screen and (max-width: 1300px) {
  .f_nav02 {
    display: -ms-grid;
    display: grid;
    gap: 16px;
  }
}
@media screen and (max-width: 800px) {
  .f_nav02 {
    padding-left: 48px;
  }
}
.arrow {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0 0 0 16px;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
  font-size: 15px;
}

.arrow::before,
.arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.sample5-3::before {
  width: 15px;
  height: 15px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #fff;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease; /* 色変更のアニメーションを追加 */
}

.sample5-3::after {
  left: 5px;
  width: 3px;
  height: 3px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease; /* 境界線色変更のアニメーションを追加 */
}

.sample5-3:hover::before {
  background: #dbd053; /* ホバー時の背景色を暗い色に変更 */
  -webkit-transition: none;
  transition: none; /* ホバー時のトランジションを無効に */
}

.sample5-3:hover::after {
  border-top: 1px solid #fff; /* ホバー時の線の色を白に変更 */
  border-right: 1px solid #fff; /* ホバー時の線の色を白に変更 */
  -webkit-transition: none;
  transition: none; /* ホバー時のトランジションを無効に */
}

.sample5-4 {
  max-width: 250px;
  width: 100%;
}

.sample5-4::before {
  width: 15px;
  height: 15px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #fff;
}

.sample5-4:hover::before {
  background: #dbd053; /* ホバー時の背景色を暗い色に変更 */
  -webkit-transition: none;
  transition: none; /* ホバー時のトランジションを無効に */
}

.sample5-4::after {
  left: 5px;
  width: 3px;
  height: 3px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#js-nav {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; /* 0.5秒かけて透明度が変化 */
  opacity: 1; /* 初期状態は完全に不透明 */
}

.nav-hidden {
  opacity: 0 !important; /* 完全に透明（非表示） */
  pointer-events: none; /* クリック等のイベントを無効にする */
}

/*=======================
  header
=======================*/
.l-header {
  width: 270px;
  height: 100vh;
  background: rgba(255, 255, 255, 0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 994;
}

@media screen and (max-width: 1439px) {
  .l-header {
    width: 100%;
    height: 64px;
    background: rgb(255, 255, 255);
  }
}
.l-header.is-hidden {
  -webkit-transform: translateY(-110%);
          transform: translateY(-110%);
}

.l-header__inner {
  text-align: center;
  position: relative;
  height: 100%;
  padding: 30px 40px;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1439px) {
  .l-header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0px 60px;
  }
}
@media screen and (max-width: 500px) {
  .l-header__inner {
    padding: 0px 70px 0px 20px;
  }
}
.l-header__logo {
  display: block;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 999;
}

.l-header__logo a:hover {
  opacity: 1;
}

.l-header__logo a:hover > img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.75;
}

.l-header__logo a img {
  width: 75px;
}

@media screen and (max-width: 1439px) {
  .l-header__logo a img {
    width: 120px;
  }
}
.h_logo_text {
  font-size: 10px;
  margin-top: 10px;
  letter-spacing: normal;
}

@media screen and (max-width: 1439px) {
  .h_logo_text {
    display: none;
  }
}
@media screen and (max-width: 1439px) {
  .h_logo_pc {
    display: none;
  }
}
.h_logo_sp {
  display: none;
}

@media screen and (max-width: 1439px) {
  .h_logo_sp {
    display: block;
  }
}
.l-header__logo a.m-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 56px;
}

@media screen and (min-width: 1024px) {
  .l-header__logo a.m-logo {
    width: 80px;
  }
}
@media screen and (min-width: 1440px) {
  .l-header__logo a.m-logo {
    width: 91px;
  }
}
.l-header__logo a.m-text {
  display: block;
  width: 120px;
  margin-left: 16px;
}

@media screen and (min-width: 1024px) {
  .l-header__logo a.m-text {
    width: 160px;
    margin-left: 30px;
  }
}
@media screen and (min-width: 1440px) {
  .l-header__logo a.m-text {
    width: 171px;
    margin-left: 72px;
  }
}
.l-navbtn {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: transparent;
  cursor: pointer;
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 999;
}

@media screen and (min-width: 1439px) {
  .l-navbtn {
    display: none;
  }
}
.l-navbtn__bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #3b3c3e;
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.l-navbtn__bar:nth-child(1) {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}

.l-navbtn__bar:nth-child(3) {
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
}

.l-gnav {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 40px;
}

@media screen and (max-width: 1439px) {
  .l-gnav {
    width: 100%;
    height: 100vh;
    margin-top: 0px;
    padding: 100px 20% 124px;
    background-color: rgb(255, 255, 255);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 998;
    overflow-y: scroll;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: translateX(110%);
            transform: translateX(110%);
  }
  .l-gnav.is-open {
    display: block;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media screen and (max-width: 500px) {
  .l-gnav {
    padding: 100px 20px 20px;
  }
}
@media screen and (min-width: 1024px) {
  .l-gnav__list {
    display: block;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media screen and (max-width: 1023px) {
  .l-gnav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-gnav__list:not(:first-child) {
  margin-top: 20px;
}

.l-gnav__item {
  position: relative;
  border-bottom: 0.5px solid #333;
  padding-bottom: 8px;
}

.l-gnav__item:not(:first-child) {
  margin-top: 16px;
}

.l-gnav__item02 {
  position: relative;
}

.l-gnav__item02:not(:first-child) {
  margin-top: 16px;
}

.l-gnav__item02 > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.03em;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .l-gnav__item02 > a {
    font-size: 16px;
  }
}
.h_icon {
  width: 23px;
  height: 23px;
}

.l-gnav__item > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.03em;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .l-gnav__item > a {
    font-size: 16px;
  }
}
.l-gnav__item.m-contact > a {
  width: 140px;
  height: 40px;
  line-height: 38px;
  border: 1px solid #3b3c3e;
  background-color: #3b3c3e;
  text-align: center;
  color: #fff;
}

.l-gnav__item.m-contact > a::before {
  content: none;
}

@media screen and (min-width: 1024px) {
  .l-gnav__item.m-contact > a {
    width: 160px;
    height: 80px;
    line-height: 78px;
  }
}
.l-gnav__item.m-contact > a:hover {
  background-color: #fff;
  color: #3b3c3e;
}

.l-gnav__item-hover > a::before {
  display: block;
  content: "";
  width: 0;
  height: 2px;
  background-color: #24a580;
  position: absolute;
  left: 0;
  bottom: -10px;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.l-gnav__item-hover > a:hover::before {
  width: 100%;
  opacity: 1;
}

.h_accordion::before {
  display: block;
  content: "";
  width: 0;
  height: 1px;
  background-color: #24a580;
  position: absolute;
  left: 0;
  bottom: 0px;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.h_accordion:hover::before {
  width: 100%;
  opacity: 1;
}

/* .ac_hover::before {
  display: block;
  content: "";
  width: 0;
  height: 1px;
  background-color: #24A580;
  position: absolute;
  left: 0;
  bottom: 0px;
  opacity: 0;
  transition: 0.3s;
}
.ac_hover:hover::before {
  width: 100%;
  opacity: 1;
} */
.ac_hover:hover {
  border-bottom: 1px solid #24a580;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

/* .h_accordion:hover{
  color: #24A580 !important;
} */
.hover_opacity:hover {
  opacity: 0.75;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.l-gnav__link-contact {
  line-height: 80px;
  width: 150px;
  text-align: center;
  background-color: blue;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.l-gnav__link-contact:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.7;
}

.is-open.l-navbtn .l-navbtn__bar:nth-child(1) {
  -webkit-transform: translateY(0) rotate(45deg);
          transform: translateY(0) rotate(45deg);
}

.is-open.l-navbtn .l-navbtn__bar:nth-child(2) {
  display: none;
}

.is-open.l-navbtn .l-navbtn__bar:nth-child(3) {
  -webkit-transform: translateY(0) rotate(-45deg);
          transform: translateY(0) rotate(-45deg);
}

.h_sco_body {
  display: none;
}

@media screen and (max-width: 1439px) {
  .h_sco_body {
    display: -ms-grid;
    display: grid;
    margin-top: 20px;
  }
}
.h_center {
  text-align: center;
}

/*=======================
  main
=======================*/
.l-main {
  display: block;
}

/* -----------------------------------------------------------------
 Component
----------------------------------------------------------------- */
/*=======================
  404
=======================*/
.c-404 {
  padding: 100px 0;
}

.c-404__title {
  font-size: 30px;
  text-align: center;
  margin-bottom: 1em;
}

.c-404__description {
  line-height: 2;
  letter-spacing: 0;
  text-align: center;
}

.c-404__link {
  display: block;
  margin-top: 1em;
  color: #004ea2;
  text-align: center;
  text-decoration: underline;
}

.c-btn > a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.11em;
  width: 320px;
  height: 70px;
  border: 1px solid #3b3c3e;
  background-color: #3b3c3e;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1023px) {
  .c-btn > a {
    font-size: 16px;
    width: 240px;
    height: 56px;
  }
}
.c-btn > a::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  -webkit-transform: rotateY(90deg);
          transform: rotateY(90deg);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: -1;
}

.c-btn > a > .arrow::before,
.c-btn > a > .arrow::after {
  display: block;
  content: "";
  height: 1px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-btn > a > .arrow::before {
  width: 60px;
  background-color: #3b3c3e;
  right: -22px;
}

@media screen and (max-width: 1023px) {
  .c-btn > a > .arrow::before {
    width: 40px;
    right: -15px;
  }
}
.c-btn > a > .arrow::after {
  width: 30px;
  background-color: #fff;
  right: 8px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

@media screen and (max-width: 1023px) {
  .c-btn > a > .arrow::after {
    width: 20px;
    right: 4px;
  }
}
.c-btn > a:hover {
  color: #3b3c3e;
}

.c-btn > a:hover::before {
  -webkit-transform: rotateY(0);
          transform: rotateY(0);
}

.c-btn > a:hover > .arrow::before {
  background-color: transparent;
}

.c-btn > a:hover > .arrow::after {
  background-color: #3b3c3e;
  -webkit-animation: btnLine 1s cubic-bezier(1, 0, 0, 1) infinite;
          animation: btnLine 1s cubic-bezier(1, 0, 0, 1) infinite;
}

.c-btn.m-small > a {
  width: 225px;
  height: 55px;
  font-size: 14px;
}

@media screen and (max-width: 1023px) {
  .c-btn.m-small > a {
    width: 190px;
    height: 50px;
  }
}
.c-btn.m-small > a > .arrow::before {
  width: 40px;
  right: -20px;
}

@media screen and (max-width: 1023px) {
  .c-btn.m-small > a > .arrow::before {
    width: 30px;
    right: -15px;
  }
}
.c-btn.m-white > a {
  color: #3b3c3e;
  font-weight: 300;
  background-color: #fff;
}

.c-btn.m-white > a::before {
  background-color: #f0f0f0;
}

.c-btn.m-white > a > .arrow::before {
  background-color: #3b3c3e;
  -webkit-transform-origin: left;
          transform-origin: left;
}

.c-btn.m-white > a > .arrow::after {
  content: none;
}

.c-btn.m-white > a:hover > .arrow::before {
  background-color: #3b3c3e;
  -webkit-animation: btnLineOne 1s cubic-bezier(1, 0, 0, 1) infinite;
          animation: btnLineOne 1s cubic-bezier(1, 0, 0, 1) infinite;
}

.c-btn.m-align-center {
  text-align: center;
}

.c-btn.m-align-right {
  text-align: right;
}

@media screen and (max-width: 1023px) {
  .c-btn.m-align-right {
    margin-right: 20px;
  }
}
.c-btn.m-fw-normal > a {
  font-weight: 400;
}

.c-inner {
  max-width: 640px;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (min-width: 768px) {
  .c-inner {
    padding-left: 64px;
    padding-right: 64px;
  }
}
@media screen and (min-width: 1024px) {
  .c-inner {
    max-width: 1040px;
  }
}
@media screen and (min-width: 1024px) {
  .c-inner.m-1152 {
    max-width: 1152px;
  }
}
.c-inner.m-p-relative {
  position: relative;
}

/* -----------------------------------------------------------------
 Utility
----------------------------------------------------------------- */
@media screen and (min-width: 1024px) {
  .u-pc-none {
    display: none !important;
  }
}
@media screen and (max-width: 1023px) {
  .u-sp-none {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .u-only-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-only-tl {
    display: none !important;
  }
}
/* -----------------------------------------------------------------
ヘッダー アコーディオン
----------------------------------------------------------------- */
.toggle {
  display: none;
}

.h_option {
  position: relative;
}

.h_title,
.content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.h_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  color: #333;
  font-weight: bold;
}

.h_title::after,
.h_title::before {
  content: "";
  position: absolute;
  right: 15px;
  top: 7px;
  width: 1px;
  height: 0.75em;
  background-color: #333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.h_title::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.content {
  max-height: 0;
  overflow: hidden;
}

.toggle:checked + .h_title + .content {
  max-height: 500px;
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}

.toggle:checked + .h_title::before {
  -webkit-transform: rotate(90deg) !important;
          transform: rotate(90deg) !important;
}

.h_text {
  padding-top: 5px;
  text-align: left;
  padding-left: 33px;
}

@media screen and (max-width: 500px) {
  .h_title {
    font-size: 16px;
  }
}
/*=======================
  contact
=======================*/
.snow-wrapper {
  position: relative;
  z-index: -11111;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
}

.drop {
  position: absolute;
  margin: auto;
  width: 1em;
  height: 1em;
  background: rgb(188, 214, 246);
  border-radius: 50%;
}

.fall1 {
  -webkit-animation: fall1 10s infinite linear;
          animation: fall1 10s infinite linear;
}

.fall2 {
  -webkit-animation: fall2 10s infinite linear;
          animation: fall2 10s infinite linear;
}

@-webkit-keyframes fall1 {
  0% {
    top: -10%;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  25% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  50% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  75% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    top: 100%;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}

@keyframes fall1 {
  0% {
    top: -10%;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  25% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  50% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  75% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    top: 100%;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}
@-webkit-keyframes fall2 {
  0% {
    top: -10%;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  25% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  50% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  75% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  100% {
    top: 100%;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
}
@keyframes fall2 {
  0% {
    top: -10%;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  25% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  50% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  75% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  100% {
    top: 100%;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
}
/*=======================
  home
=======================*/ 
.p-contact-main .p-contact-main__inner {
  max-width: 880px;
  margin: 0 auto;
  margin-top: 100px;
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (max-width: 1024px) {
  .p-contact-main .p-contact-main__inner {
    margin-top: 50px;
    padding-left: 20px;
    padding-right: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .p-contact-main .p-contact-main__inner .header-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.p-contact-main .p-contact-main__inner .header-area .img-group {
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .p-contact-main .p-contact-main__inner .header-area .img-group {
    max-width: 274px;
    margin: 0 auto;
  }
}
.p-contact-main .p-contact-main__inner .header-area .main-text {
  color: #333;
  text-align: center;
  font-family: "Outfit";
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin-top: 40px;
}

@media screen and (max-width: 1024px) {
  .p-contact-main .p-contact-main__inner .header-area .main-text {
    color: #333;
    text-align: center;
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    letter-spacing: 0.8px;
    margin-top: initial;
    margin-bottom: 40px;
  }
}
.p-contact-main .p-contact-main__inner .contact-group {
  width: 100%;
}

.p-contact-main .p-contact-main__inner .content-group .content-group__single input {
  background: none;
  border: none;
}

.p-contact-main .p-contact-main__inner .content-group .content-group__single textarea {
  background: none;
  border: none;
}

.p-contact-main .p-contact-main__inner .content-group .content-group__single {
  margin-top: 80px;
}

@media screen and (max-width: 1024px) {
  .p-contact-main .p-contact-main__inner .content-group .content-group__single {
    margin-top: 32px;
  }
  .p-contact-main .p-contact-main__inner .content-group .content-group__single textarea {
    /* padding-bottom: initial !important; */
  }
}
.p-contact-main .p-contact-main__inner .content-group .content-group__single .title-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-contact-main .p-contact-main__inner .content-group .content-group__single .title-area .title {
  color: #333;
  text-align: center;
  font-family: "Outfit";
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin-right: 40px;
}

@media screen and (max-width: 1024px) {
  .p-contact-main .p-contact-main__inner .content-group .content-group__single .title-area .title {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%; /* 28.8px */
    letter-spacing: 0.8px;
    margin-right: 8px;
  }
}
.p-contact-main .p-contact-main__inner .content-group .content-group__single .title-area .required {
  color: #fff;
  text-align: center;
  font-family: "Outfit";
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  border-radius: 8px;
  background: #ff733f;
  padding: 4px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1024px) {
  .p-contact-main .p-contact-main__inner .content-group .content-group__single .title-area .required {
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.2px;
    max-width: 50px;
    padding: initial;
    width: 100%;
    height: 20px;
  }
}
/* .p-contact-main
  .p-contact-main__inner
  .content-group
  .content-group__single
  .input-area {
  display: flex;
  justify-content: space-between;
  margin-top: 27px;
} */
.p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 27px;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area p {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 8px !important;
  }
}
@media screen and (max-width: 1024px) {
  .p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 8px !important;
    overflow: hidden;
  }
}
.p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area .input-area__first input {
  max-width: 400px;
  width: 100%;
  color: #333;
  text-align: center;
  font-family: "Outfit";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: #f5f5f5;
  padding: 21px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area .input-area__first {
  width: 100%;
  max-width: 400px;
}

.p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area .input-area__first input {
  text-align: center;
}

.p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area .input-area__first input::-webkit-input-placeholder {
  color: #cacaca;
}

.p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area .input-area__first input::-moz-placeholder {
  color: #cacaca;
}

.p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area .input-area__first input:-ms-input-placeholder {
  color: #cacaca;
}

.p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area .input-area__first input::-ms-input-placeholder {
  color: #cacaca;
}

.p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area .input-area__first input::placeholder {
  color: #cacaca;
}

@media screen and (max-width: 1024px) {
  .p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area .input-area__first input {
    max-width: 100%;
    width: 100%;
    /* margin-bottom: 16px; */
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    letter-spacing: 0.8px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 8px 0px;
    padding-left: 16px;
    border-radius: 4px;
    text-align: start;
  }
  .p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area .input-area__first {
    width: 100%;
    max-width: initial;
  }
}
.p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area .input-area__second input {
  max-width: 400px;
  width: 100%;
  color: #333;
  text-align: center;
  font-family: "Outfit";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: #f5f5f5;
  padding: 21px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area .input-area__second input::-webkit-input-placeholder {
  color: #cacaca;
}

.p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area .input-area__second input::-moz-placeholder {
  color: #cacaca;
}

.p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area .input-area__second input:-ms-input-placeholder {
  color: #cacaca;
}

.p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area .input-area__second input::-ms-input-placeholder {
  color: #cacaca;
}

.p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area .input-area__second input::placeholder {
  color: #cacaca;
}

.p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area .input-area__second {
  width: 100%;
  max-width: 400px;
}

.p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area .input-area__second input {
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area .input-area__second {
    max-width: 100%;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    letter-spacing: 0.8px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: initial;
    padding-left: initial;
    border-radius: 4px;
  }
  .p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area .input-area__second input {
    text-align: start;
    max-width: initial;
    padding: 8px 0px;
    padding-left: 16px;
  }
}
.p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area-single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* margin-top: 27px; */
}

.p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area-single .input-area__first {
  max-width: 100%;
  text-align: start;
  /* margin-top: 27px; */
}

.radio-group p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: initial;
      -ms-flex-align: initial;
          align-items: initial;
  margin-top: 40px;
}

.radio-group .wpcf7-list-item {
  margin: initial;
}

.p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area-single .input-area__first input {
  max-width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 8px;
}

@media screen and (max-width: 1024px) {
  .p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area-single .input-area__first input {
    padding-left: 8px;
  }
}
.p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area-single .input-area__first input {
  text-align: start;
}

@media screen and (max-width: 1024px) {
  .p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area-single .input-area__first {
    /* padding-left: 16px; */
    border-radius: 4px;
  }
}
.p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area .text-area {
  height: 400px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-right: 8px;
  width: 100%;
  height: 100%;
}

.p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area .text-area .wpcf7-form-control-wrap {
  width: 100%;
  height: 100%;
}

.p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area .text-area .wpcf7-form-control-wrap textarea {
  width: 100%;
  /* max-width: 400px; */
  width: 100%;
  color: #333;
  /* text-align: center; */
  font-family: "Outfit";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: #f5f5f5;
  padding: 21px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 8px;
  padding-right: 8px;
}

.p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area .text-area .wpcf7-form-control-wrap textarea::-webkit-input-placeholder {
  color: #cacaca;
}

.p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area .text-area .wpcf7-form-control-wrap textarea::-moz-placeholder {
  color: #cacaca;
}

.p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area .text-area .wpcf7-form-control-wrap textarea:-ms-input-placeholder {
  color: #cacaca;
}

.p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area .text-area .wpcf7-form-control-wrap textarea::-ms-input-placeholder {
  color: #cacaca;
}

.p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area .text-area .wpcf7-form-control-wrap textarea::placeholder {
  color: #cacaca;
}

@media screen and (max-width: 1024px) {
  .p-contact-main .p-contact-main__inner .content-group .content-group__single .input-area .text-area {
    /* height: 240px; */
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-contact-main .p-contact-main__inner .content-group .radioーgroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 80px;
}

.p-contact-main .wpcf7-list-item input {
  border: 2px solid #000;
  width: 25px;
  height: 25px;
}

@media screen and (max-width: 767px) {
  .p-contact-main .wpcf7-list-item input {
    border: 2px solid #000;
    width: 18px;
    height: 18px;
  }
}
.p-contact-main .p-contact-main__inner .content-group .radio-text {
  color: #333;
  font-family: "Outfit";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1px;
  margin-left: 14px;
}

@media screen and (max-width: 767px) {
  .p-contact-main .p-contact-main__inner .content-group .radio-text {
    font-size: 16px;
  }
}
.p-contact-main .p-contact-main__inner .content-group .color-text {
  color: #24a580;
  text-align: center;
  font-family: "Outfit";
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1px;
}

@media screen and (max-width: 767px) {
  .p-contact-main .p-contact-main__inner .content-group .color-text {
    font-size: 16px;
  }
}
.p-contact-main .p-contact-main__inner .content-group .wpcf7-list-item-label {
  display: none;
}

.p-contact-main .p-contact-main__inner .content-group .ks-radio .wpcf7-list-item-label {
  display: initial;
}

.p-contact-main .p-contact-main__inner .content-group .ks-radio .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
}

.p-contact-main .p-contact-main__inner .content-group .ks-radio .first {
  margin: initial;
}

.p-contact-main .p-contact-main__inner .content-group .ks-radio .wpcf7-list-item .wpcf7-list-item-label {
  margin-left: 6px;
}

/* .p-contact-main .p-contact-main__inner .content-group .radioーgroup span {
  color: #24a580;

  text-align: center;
  font-family: "Outfit";
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1px;
} */
.p-contact-main .contact-btn {
  margin-top: 80px !important;
}

.p-contact-main {
  margin-bottom: 100px;
}

/* 確認画面 */
.p-contact-main .p-contact-main__inner .content-check-group .content-check-group__single {
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .p-contact-main .p-contact-main__inner .content-check-group .content-check-group__single {
    margin-top: 40px;
  }
}
.p-contact-main .p-contact-main__inner .content-check-group .content-check-group__single .check-area {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: #000 1px solid;
  padding-bottom: 16px;
}

@media screen and (max-width: 768px) {
  .p-contact-main .p-contact-main__inner .content-check-group .content-check-group__single .check-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    color: #333;
    font-family: "Outfit";
    font-style: normal;
    font-weight: 400;
    line-height: 180%; /* 28.8px */
    letter-spacing: 0.8px;
  }
}
.p-contact-main .p-contact-main__inner .content-check-group .content-check-group__single .check-area .title {
  color: #333;
  /* 小タイトル */
  font-family: "Outfit";
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1px;
  max-width: 280px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .p-contact-main .p-contact-main__inner .content-check-group .content-check-group__single .check-area .title {
    font-size: 16px !important;
  }
}
.p-contact-main .p-contact-main__inner .content-check-group .content-check-group__single .check-area .answer-area {
  color: #333;
  font-family: "Outfit";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  .p-contact-main .p-contact-main__inner .content-check-group .content-check-group__single .check-area .answer-area {
    margin-top: 16px !important;
    font-size: 16px !important;
  }
}
.p-contact-main .p-contact-main__inner .content-check-group .btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-contact-main .btn-group .contact-btn:first-child {
  margin-right: 40px;
}

/* 完了画面 */
.p-contact-thanks {
  margin-top: 160px;
}

@media screen and (min-width: 1440px) {
  .p-contact-thanks {
    padding-left: 240px;
  }
}
.p-contact-thanks .p-contact-thanks__inner .header-area .img-group {
  max-width: 1170px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .p-contact-thanks .p-contact-thanks__inner .header-area .img-group {
    max-width: 274px;
    margin: 0 auto;
  }
}
.p-contact-thanks .p-contact-thanks__inner .header-area .main-text {
  color: #24a580;
  text-align: center;
  font-family: "Outfit";
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: 150%; /* 48px */
  letter-spacing: 1.6px;
  margin-top: 41px;
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (max-width: 767px) {
  .p-contact-thanks .p-contact-thanks__inner .header-area .main-text {
    color: #24a580;
    text-align: center;
    /* 【SP版】タイトル */
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: 150%; /* 36px */
    letter-spacing: 1.2px;
  }
}
.p-contact-thanks .p-contact-thanks__inner .header-area .sub-text {
  color: #24a580;
  text-align: center;
  font-family: "Outfit";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 11px;
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (max-width: 767px) {
  .p-contact-thanks .p-contact-thanks__inner .header-area .sub-text {
    color: #24a580;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    letter-spacing: 0.8px;
  }
}
.p-contact-thanks .p-contact-thanks__inner .btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px;
  margin-bottom: 91px;
}

@media screen and (max-width: 767px) {
  .p-contact-thanks .p-contact-thanks__inner .btn-group {
    margin-top: 64px;
  }
}
.pc-none {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc-none {
    display: block !important;
  }
}
@media screen and (min-width: 767px) {
  .f_nav00 {
    width: 460px;
  }
}
@media screen and (max-width: 767px) {
  .f_nav00 {
    width: 280px;
  }
}
.sp-none {
  display: block;
}

@media screen and (max-width: 767px) {
  .sp-none {
    display: none !important;
  }
}
.md_img {
  /* max-width: 400px; */
  width: 100%;
  display: block;
}

.md_img .attachment-thumbnail {
  width: 100%;
  height: 100%;
}

.md_left {
  max-width: 400px;
  width: 100%;
}

.info-detail-content {
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  .info-detail-content {
    margin-top: 40px;
  }
}
.single-line {
  white-space: nowrap; /* テキストを改行しない */
  overflow: hidden; /* コンテンツがオーバーフローした場合に非表示にする */
  text-overflow: ellipsis; /* オーバーフローしたテキストを省略記号で表示 */
  max-width: 100%; /* 必要に応じて調整可能 */
  width: 100%;
  display: block;
}

.single-line-top {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block !important; /* 必要に応じて 'inline-block' に変更 */
}

.ks-news_text {
  padding-right: 10px;
}

.ev_gaiyou .wd {
  width: 100%;
}

.ks-title {
  max-width: 360px;
  width: 360px;
}

@media screen and (max-width: 767px) {
  .ks-title {
    width: 100%;
  }
}
.ks-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: initial;
}

.sev_event {
  max-width: 540px;
  width: 540px;
}

@media screen and (max-width: 767px) {
  .sev_event {
    max-width: 335px;
    width: 335px;
  }
}
.sev_mds {
  width: 100%;
  max-width: 60px;
  min-width: 60px;
}

@media screen and (max-width: 767px) {
  .mySwiper {
    display: none;
  }
}
@media screen and (min-width: 767px) {
  .mySwiper-sp {
    display: none;
  }
}
.age-area-single .wpcf7-form-control {
  background: #f5f5f5;
  height: 62px;
  width: 200px;
  border: none;
}

@media screen and (max-width: 767px) {
  .age-area-single .wpcf7-form-control {
    width: 92px;
    height: 40px;
  }
}
.age-area-single .month-box {
  background: #f5f5f5;
  height: 62px;
  width: 120px;
  border: none;
}

.age-area-single .day-box {
  background: #f5f5f5;
  height: 62px;
  width: 120px;
  border: none;
}

@media screen and (max-width: 767px) {
  .age-area-single .month-box {
    height: 40px;
    width: 72px;
  }
}
@media screen and (max-width: 767px) {
  .age-area-single .day-box {
    height: 40px;
    width: 72px;
  }
}
.age-area-single .input-area__first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Outfit";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
}

.check-text-area p {
  color: #333;
  font-family: "Outfit";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.age-area-single .input-area__first .wpcf7-form-control-wrap {
  padding-right: 8px;
}

.age-area-single .input-area__first .year-word {
  margin-right: 35px;
}

.age-area-single .input-area__first .month-word {
  margin-right: 35px;
}

.age-area-single .input-area__first .day-word {
  margin-right: 35px;
}

@media screen and (max-width: 767px) {
  .age-area-single .input-area__first .wpcf7-form-control-wrap {
    padding-right: 4px;
  }
  .age-area-single .input-area__first .year-word {
    margin-right: 5px;
  }
  .age-area-single .input-area__first .month-word {
    margin-right: 5px;
  }
  .age-area-single .input-area__first .day-word {
    margin-right: 5px;
  }
}
.age-area-single select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-left: 8px;
  font-family: "Outfit";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.age-area-single .wpcf7-form-control-wrap {
  /* selectボックスの親要素 */
  position: relative;
}

.age-area-single .wpcf7-form-control-wrap:after {
  content: "";
  background-image: url(../img/select-btn.png);
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  color: var(--sub-color);
  pointer-events: none;
  width: 14px;
  height: 10px;
  z-index: 0;
  position: absolute;
  top: 50%;
  right: 13px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
}

.input-area__first_check {
  width: 100%;
}

.input-area__first_check p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: initial !important;
      -ms-flex-pack: initial !important;
          justify-content: initial !important;
  margin-top: 27px;
  width: 100%;
  background: #f5f5f5;
  padding: 21px 0px;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.radio-group-check-ks p {
  background: initial;
}

@media screen and (max-width: 767px) {
  .header-area .sc_modal_img {
    margin-top: initial;
  }
}
@media screen and (max-width: 767px) {
  .tab_item__first {
    margin-right: 10px;
  }
  .contact-btn {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .radio-group-check p {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-right: 5px;
  }
}
.ks-width-change {
  width: 93%;
}

.ks-img-ajust img {
  display: block;
}

@media screen and (min-width: 1439px) {
  .ks-adjust-news {
    padding-right: 20px;
  }
}
@media screen and (max-width: 1439px) {
  .fv {
    margin-top: 80px;
  }
}
/* .fv_container {
  max-width: 1170px;
  margin-left: auto;
  position: relative;
}

@media screen and (max-width: 1439px) {
  .fv_container {
    max-width: 89%;
    margin-left: none;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1441px) {
  .fv_container {
    max-width: 970px;
    margin-left: none;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1660px) {
  .fv_container {
    max-width: 1160px;
  }
} */
/*=======================
  シャス 追記 2024.7.11
=======================*/
/* 共通 コンテナ幅 大画面時 へっだーがかからないようにちょっと調整 */
.s_container {
  max-width: 1170px;
  margin-left: auto;
  padding: 64px 0px;
}

@media screen and (max-width: 1439px) {
  .s_container {
    max-width: 90%;
    margin-left: none;
    margin: 0 auto;
  }
}
@media screen and (max-width: 500px) {
  .s_container {
    padding: 60px 0px;
  }
}
@media screen and (max-width: 360px) {
  .s_container {
    max-width: 96%;
  }
}
@media screen and (min-width: 1441px) {
  .s_container {
    padding-left: 7%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1600px) {
  .s_container {
    padding-left: 5%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1900px) {
  .s_container {
    padding-left: 0px;
    max-width: 1200px;
  }
}
/* TOP NEWS コンテナ幅 大画面時 へっだーがかからないようにちょっと調整 */
@media screen and (min-width: 1441px) {
  .news_container {
    max-width: 970px !important;
  }
}
@media screen and (min-width: 1600px) {
  .news_container {
    max-width: 1170px !important;
  }
}
/* TOP FV セクション */
.fv_container {
  max-width: 1170px;
  margin-left: auto;
  position: relative;
}

@media screen and (max-width: 1439px) {
  .fv_container {
    max-width: 100%;
    margin-left: none;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1441px) {
  .fv_container {
    max-width: 1170px;
    margin-left: auto;
  }
}
@media screen and (min-width: 1540px) {
  .fv_container {
    max-width: 1260px;
    margin-left: auto;
  }
}
@media screen and (min-width: 1600px) {
  .fv_container {
    max-width: 1100px;
    margin-left: none;
    margin: 0 auto;
  }
}
.fv_body {
  /* background-image: url(../img/fv_bg.png); */
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 750px; */
  position: relative;
}

@media screen and (min-width: 1540px) {
  .fv_body {
    height: 810px;
  }
}
.fv_text {
  position: absolute;
  top: 45%;
  font-family: "Zen Old Mincho", serif;
  color: #fff;
  font-weight: 600;
  font-size: 48px;
  text-align: center;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 850px) {
  .fv_text {
    font-size: 32px;
  }
}
@media screen and (max-width: 500px) {
  .fv_text {
    font-size: 23px;
    margin-left: 24px;
  }
}
/* TOP メッセージ セクション */
.msg_body {
  background-image: url(../img/msg_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.msg_content {
  padding: 155px 0px 53px 0px;
}

@media screen and (max-width: 850px) {
  .msg_content {
    padding: 60px 0px 60px 0px;
  }
}
.msg_img {
  text-align: center;
}

.msg_img img {
  width: 580px;
}

@media screen and (max-width: 850px) {
  .msg_img img {
    width: 85%;
  }
}
.msg_text {
  font-family: "Zen Old Mincho", serif;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.075em;
  margin-top: 50px;
}

@media screen and (max-width: 850px) {
  .msg_text {
    font-size: 15px;
    padding: 0px 20px;
    margin-top: 30px;
  }
}
/*===========================================================
  シャスコード
============================================================*/
@media screen and (min-width: 1441px) {
  .l-header {
    width: 240px;
  }
}
@media screen and (min-width: 1700px) {
  .l-header {
    width: 270px;
  }
}
@media screen and (min-width: 1441px) {
  .s_fv_title {
    margin-top: -50px;
    font-size: 23px;
  }
}
@media screen and (min-width: 1600px) {
  .s_fv_title {
    font-size: 30px;
    margin-top: -60px;
  }
}
.sev_contents {
  width: 360px;
}

@media screen and (max-width: 1000px) {
  .sev_contents {
    width: auto;
  }
}
input,
textarea {
  outline: none;
}

.ks-add-ajust {
  margin-top: 40px;
}

@media screen and (max-width: 700px) {
  .ks-add-ajust {
    margin-top: 0px;
  }
}
/*=======================
  シャス 追記 2024.7.23
=======================*/
/* TOP FVの高さをSP版を360pxに設定 */
@media screen and (max-width: 500px) {
  .fv_body {
    height: 360px;
  }
}
/* TOP 周辺施設スクロール SP版だけテキスト追加 */
.top_scroll_texts {
  display: none;
}

@media screen and (max-width: 800px) {
  .top_scroll_texts {
    display: block;
    margin-top: 32px;
  }
}
/* how to ページのSP版 スクロール可能な画像の上に ※横にスクロールできます を追加 */
@media screen and (max-width: 800px) {
  .spr_img {
    margin-top: 0px;
  }
}
.scroll_text {
  display: none;
}

@media screen and (max-width: 700px) {
  .scroll_text {
    display: block;
    margin-top: 24px;
    font-size: 16px;
  }
}
/* pricelist ページのSP版 スクロール可能な画像の上に ※横にスクロールできます を追加 */
.spr_body > .g_fz20 {
  margin-top: 0px;
  margin-bottom: 24px;
}

.spr_img {
  margin-top: 0px;
}

.price_scroll_text01 {
  display: none;
}

@media screen and (max-width: 660px) {
  .price_scroll_text01 {
    display: block;
    font-size: 16px;
  }
}
.price_scroll_text02 {
  display: none;
}

@media screen and (max-width: 660px) {
  .price_scroll_text02 {
    display: block;
    font-size: 16px;
  }
}
.price_scroll_text03 {
  display: none;
}

@media screen and (max-width: 660px) {
  .price_scroll_text03 {
    display: block;
    font-size: 16px;
  }
}
.price_scroll_text04 {
  display: none;
}

@media screen and (max-width: 435px) {
  .price_scroll_text04 {
    display: block;
    font-size: 16px;
  }
}
/* pricelist ページのSP版  タブで別れてる スクロール可能な画像の上に ※横にスクロールできます を追加 */
.tab_doubles > .tab_item {
  margin-bottom: 24px;
}

.price_tab_text01 {
  display: none;
}

@media screen and (max-width: 485px) {
  .price_tab_text01 {
    display: block;
    font-size: 16px;
  }
}
.price_tab_text02 {
  display: none;
}

@media screen and (max-width: 550px) {
  .price_tab_text02 {
    display: block;
    font-size: 16px;
  }
}
.price_tab_text03 {
  display: none;
}

@media screen and (max-width: 675px) {
  .price_tab_text03 {
    display: block;
    font-size: 16px;
  }
}
.price_tab_text04 {
  display: none;
}

@media screen and (max-width: 480px) {
  .price_tab_text04 {
    display: block;
    font-size: 16px;
  }
}
.faq_link {
  border-bottom: 1px solid #000;
  padding-bottom: 2px;
}

/* 820 */
.ks-news_text-821 {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.ev_gaiyou_ttl_ks {
  min-width: 90px;
}

.ks-margin-none p {
  margin-top: initial !important;
}

.ev_gaiyous {
  word-break: break-all;
}

/* .ks-single-line p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  width: 100%;
  display: block;
} */
.single-line {
  white-space: initial;
}

.s_ank {
  padding-left: 40px;
}

.btns_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 24px;
}

.btns_list .btn {
  width: 100%;
  padding-right: 24px;
  padding-left: 24px;
  margin: 0;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

.event_term_section.event {
  --termColor: 36, 165, 128;
}
.event_term_section.planetarium {
  --termColor: 253, 111, 71;
}
.event_term_section.school {
  --termColor: 235, 201, 65;
}
.event_term_section_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 24px;
  background: rgb(var(--termColor));
  color: #fff;
}
.event_term_section_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.event_term_section_link .arrow {
  position: relative;
}
.event_term_section_link .arrow::before {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  content: "";
}
.event_term_section_link .arrow::after {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-top: 1px solid rgb(var(--termColor));
  border-right: 1px solid rgb(var(--termColor));
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  content: "";
}
.event_term_section_link:hover {
  opacity: 0.75;
}
.event_term_section_content {
  padding: 2vw;
  background: rgba(var(--termColor), 0.1);
}
.event_term_section .swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.event_term_section .swiper-slide {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.event_term_section .swiper-button-next, .event_term_section .swiper-button-prev {
  width: 40px;
  height: 40px;
  background: rgb(var(--termColor));
  border-radius: 50%;
  color: #fff;
}
.event_term_section .swiper-button-next::after, .event_term_section .swiper-button-prev::after {
  font-size: 20px;
}
@media screen and (max-width: 800px) {
  .event_term_section_header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 12px 16px;
  }
}

.event_section_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1em;
  height: 100%;
  background: #fff;
}
.event_section_item_img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  aspect-ratio: 2/3;
}
.event_section_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.event_section_item_content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 16px;
}
.event_section_item:hover {
  opacity: 0.75;
}