@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Libertinus+Serif+Display&family=Noto+Sans+JP:wght@100..900&family=Zen+Old+Mincho:wght@400;700&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #222222;
  overflow-x: hidden;
}

a,
button {
  display: inline-block;
  transition: all 0.3s ease;
}

i {
  display: inline-block;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
}

h1 {
  line-height: 1;
}

h2,
h3 {
  line-height: 1.5;
}

.container {
  width: 90%;
  max-width: 1200px;
  padding: 100px 0;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .container {
    padding: 60px 0;
  }
}

.flex_box {
  display: flex;
}
.flex_box.wrap {
  flex-wrap: wrap;
}
.flex_box.column {
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .flex_box {
    flex-direction: column;
  }
}

.page_title {
  position: relative;
  min-height: 300px;
  padding-left: 100px;
  margin-top: 88px;
}
.page_title .text_area {
  width: 80%;
  max-width: 750px;
  padding-top: 100px;
}
.page_title h2 {
  border-bottom: 2px solid #012B4B;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-family: "Zen Old Mincho", serif;
  font-size: 3.6rem;
  font-weight: 400;
}
.page_title h2 + p {
  font-size: 1.8rem;
}
.page_title img {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1599px) {
  .page_title {
    min-height: auto;
    padding-left: 50px;
  }
  .page_title .text_area {
    padding-top: 50px;
  }
  .page_title img {
    height: 200px;
  }
}
@media screen and (max-width: 1300px) {
  .page_title {
    margin-top: 52px;
  }
}
@media screen and (max-width: 1210px) {
  .page_title {
    padding-left: 20px;
    margin-bottom: 20px;
  }
  .page_title .text_area {
    padding-top: 30px;
  }
  .page_title h2 {
    font-size: 2.8rem;
  }
  .page_title h2 + p {
    font-size: 1.4rem;
  }
  .page_title img {
    height: 150px;
  }
}
@media screen and (max-width: 949px) {
  .page_title {
    position: inherit;
    margin-bottom: 0;
    margin-top: 60px;
  }
  .page_title .text_area {
    width: 100%;
    padding-right: 20px;
    margin-bottom: 20px;
  }
  .page_title h2 {
    padding-bottom: 7px;
    margin-bottom: 10px;
    font-size: 2.2rem;
  }
  .page_title img {
    position: inherit;
    width: 100%;
    height: auto;
  }
}

#pan {
  width: 90%;
  max-width: 1200px;
  margin: 10px auto 0;
  font-weight: normal;
  text-align: right;
}
#pan li {
  font-size: 1.4rem;
  display: inline-block;
  padding-right: 20px;
  margin-right: 5px;
  position: relative;
}
#pan li::before {
  font-family: FontAwesome;
  content: "\f105";
  position: absolute;
  right: 0px;
}
#pan li:last-child {
  position: static;
  padding-right: 0;
  margin-right: 0;
}
#pan li:last-child::before {
  display: none;
}
#pan a {
  text-decoration: underline;
}

.btn {
  width: 330px;
  border-radius: 40px;
  border: 1px solid;
  padding: 10px;
  text-align: center;
  font-weight: 500;
  font-size: 2rem;
}
.btn_blue {
  border-color: #012B4B;
  background-color: #012B4B;
  color: #FFFFFF;
}
.btn_blue:hover {
  background-color: #FFFFFF;
  color: #012B4B;
}
.btn_white {
  border-color: #012B4B;
  background-color: #FFFFFF;
  color: #012B4B;
}
.btn_white:hover {
  border-color: #FFF;
  background-color: #012B4B;
  color: #FFFFFF;
}
.btn_square {
  border-radius: 4px;
}
.btn_box {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .btn {
    width: 100%;
    font-size: 1.8rem;
  }
}

.head_text {
  margin-bottom: 40px;
  color: #012B4B;
  font-family: "Zen Old Mincho", serif;
  font-size: 4rem;
  font-weight: 500;
}
.head_text.mgbottom {
  margin-bottom: 10px;
}
.head_text span {
  display: block;
  color: #222222;
  font-size: 2.4rem;
  font-weight: 500;
}
.head_text_white {
  color: #FFFFFF;
}
.head_text_white span {
  color: #FFFFFF;
}
.head_text_center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .head_text {
    margin-bottom: 30px;
    font-size: 2.4rem;
  }
  .head_text span {
    font-size: 1.8rem;
  }
}

.tel_num {
  text-decoration: underline;
}
.tel_num_btn {
  text-decoration: none;
}
.tel_num:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .tel_num {
    pointer-events: none;
    text-decoration: none;
  }
}

.scroll_top {
  font-size: 3.6rem;
  color: #B99867;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 2;
}
.scroll_top:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .scroll_top {
    font-size: 2.8rem;
    bottom: 80px;
    right: 20px;
  }
}

.sp_fixed_menu {
  display: none;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 4;
}
.sp_fixed_menu ul {
  border-top: 1px solid #012B4B;
  border-left: 1px solid #012B4B;
  flex-direction: row;
}
.sp_fixed_menu ul li {
  width: 25%;
  border-bottom: 1px solid #012B4B;
  border-right: 1px solid #012B4B;
}
.sp_fixed_menu ul li a {
  display: block;
  padding: 10px 0;
  background-color: #FFFFFF;
  color: #012B4B;
  text-align: center;
  font-size: 1.3rem;
}
.sp_fixed_menu ul li a:hover {
  background-color: #012B4B;
  color: #FFFFFF;
}
.sp_fixed_menu ul li i {
  display: block;
  margin-bottom: 3px;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .sp_fixed_menu {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .only_sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .only_pc {
    display: none;
  }
}
.targetFadeIn,
.targetSlideInR,
.targetSlideInL {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.sldeInL {
  animation-name: slideInAnimeL;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.sldeInR {
  animation-name: slideInAnimeR;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInAnimeL {
  from {
    opacity: 0;
    transform: translateX(1500px);
  }
  to {
    opacity: 1;
    transform: translateX(auto);
  }
}
@keyframes slideInAnimeR {
  from {
    opacity: 0;
    transform: translateX(-1500px);
  }
  to {
    opacity: 1;
    transform: translateX(auto);
  }
}
.fadeUpLoad {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reserve_btn {
  position: fixed;
  right: 0;
  bottom: 30%;
  writing-mode: vertical-rl;
  font-family: "Zen Old Mincho", serif;
  background-color: #012B4B;
  border: 1px solid #fff;
  color: #fff;
  padding: 20px 10px;
  font-size: 1.8rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .reserve_btn {
    display: none;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 100;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0 10%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.header_logo {
  width: 350px;
}
.header_logo:hover {
  opacity: 0.7;
}
.header_logo img {
  width: 100%;
  padding-left: 30px;
}
.header nav {
  justify-content: flex-start;
  gap: 50px;
  align-items: center;
}
.header nav ul {
  gap: 50px;
  font-weight: 500;
}
.header nav p {
  background-color: #012B4B;
  color: #fff;
}
.header nav p a {
  display: block;
  padding: 30px 35px;
}
.header nav p a:hover {
  opacity: 0.7;
}
.header nav a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1700px) {
  .header {
    gap: 0 5%;
  }
  .header_logo {
    width: 280px;
  }
  .header nav ul {
    gap: 30px;
  }
  .header .tel_num_btn {
    width: 280px;
    padding: 20px 30px;
  }
  .header .tel_num_btn span {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1300px) {
  .header {
    padding: 10px 20px;
    align-items: center;
    justify-content: space-between;
  }
  .header_logo {
    width: 220px;
  }
  .header_logo img {
    padding-left: 0px;
  }
  .header nav {
    display: none;
  }
  .header .tel_num_btn {
    display: none;
  }
}

.burger_btn,
.close_btn {
  display: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 52px;
  aspect-ratio: 1/1;
  border: 1px solid #012B4B;
  padding: 13px 0 0;
  background-color: #012B4B;
  color: #FFFFFF;
  text-align: center;
  font-size: 2.4rem;
  position: absolute;
  top: 0;
  right: 0;
}
.burger_btn:hover,
.close_btn:hover {
  background-color: #FFFFFF;
  color: #012B4B;
}
@media screen and (max-width: 1300px) {
  .burger_btn,
  .close_btn {
    display: block;
  }
}

.overlay {
  display: none;
  width: 100%;
  padding: 70px 0 0;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
}
.overlay ul {
  padding: 0 20px;
  margin-bottom: 20px;
  gap: 15px;
  font-weight: 500;
}
.overlay ul a:hover {
  opacity: 0.7;
}
.overlay .tel_num_btn {
  width: 100%;
  padding: 20px 20px 20px 22px;
  background-color: #012B4B;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.3;
}
.overlay .tel_num_btn span {
  font-size: 2.8rem;
}

.contact_area {
  display: none;
}

.footer {
  width: 100%;
  left: 0;
  top: 100vh;
  position: sticky;
  background-color: #012B4B;
  color: #FFFFFF;
  font-weight: 500;
}
.footer img {
  margin: 0 auto 60px;
}
.footer .container {
  padding: 70px 0 40px;
}
.footer a:hover {
  opacity: 0.7;
}
.footer_access {
  margin-bottom: 50px;
  justify-content: center;
  gap: 30px 80px;
}
.footer_access li {
  width: 340px;
}
.footer_access dt {
  font-size: 2.4rem;
  line-height: 1.5;
}
.footer nav {
  margin-bottom: 100px;
}
.footer nav ul {
  flex-direction: row;
  gap: 40px;
}
.footer nav li {
  position: relative;
  width: 250px;
}
.footer nav li:before {
  content: "";
  width: 10px;
  height: 35px;
  background-color: #B99867;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.footer nav li a {
  display: block;
  padding-left: 30px;
}
.footer nav + ul {
  flex-direction: row;
  justify-content: flex-end;
  gap: 10px 50px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-bottom: 60px;
  }
  .footer img {
    width: 80%;
    margin: 0 auto 40px;
  }
  .footer .container {
    padding: 50px 0 30px;
  }
  .footer_access dt {
    font-size: 2rem;
  }
  .footer nav {
    margin-bottom: 40px;
  }
  .footer nav ul {
    gap: 30px;
  }
  .footer nav + ul {
    gap: 30px;
  }
}

.first_view {
  --fv-duration: 24s;
  position: relative;
  width: 100%;
  height: 90vh;
  max-height: 780px;
  min-height: 560px;
  margin-top: 0;
  overflow: hidden;
  background-color: #fff;
  /*
   * 通常表示用・ループ接続用の大阪城
   */
}
.first_view_bg_main, .first_view_bg_restart {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("../img/first_view.webp");
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  transform-origin: 50% 50%;
  will-change: opacity, transform;
  backface-visibility: hidden;
  transform: translateZ(0) scale(1);
}
.first_view {
  /*
   * 通常表示する大阪城
   */
}
.first_view_bg_main {
  opacity: 1;
  animation: fvMainZoom var(--fv-duration) linear infinite;
}
.first_view {
  /*
   * ループ接続用の大阪城
   */
}
.first_view_bg_restart {
  opacity: 0;
  animation: fvMainRestart var(--fv-duration) linear infinite;
}
.first_view {
  /*
   * 北館・南館・ウィークリーセブン
   */
}
.first_view_split {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  /*
   * 各画像パネルの共通設定
   */
}
.first_view_split_panel {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(7px) brightness(0.82);
  transform: translateX(-70px) scale(1.08);
  transform-origin: center center;
  will-change: opacity, transform, filter;
  backface-visibility: hidden;
  /*
   * 館名を読みやすくするグラデーション
   */
}
.first_view_split_panel::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 35%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.12) 35%, rgba(0, 0, 0, 0.58) 100%);
  pointer-events: none;
}
.first_view_split {
  /*
   * 各館名
   */
}
.first_view_split_label {
  position: absolute;
  right: 20px;
  bottom: 30px;
  left: 20px;
  z-index: 2;
  margin: 0;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.2rem, 2.2vw, 3.2rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.95), 0 3px 10px rgba(0, 0, 0, 0.8), 0 6px 20px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}
.first_view {
  /*
   * 北館
   */
}
.first_view_split_left {
  left: 0;
  z-index: 1;
  background-image: url("../img/fv_slide01.png");
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
  animation: fvPanelLeft var(--fv-duration) cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
.first_view_split_left .first_view_split_label {
  transform: translateX(-10%);
}
.first_view {
  /*
   * 南館
   */
}
.first_view_split_center {
  left: 30%;
  z-index: 2;
  background-image: url("../img/fv_slide02.png");
  background-position: left bottom;
  background-size: cover;
  background-repeat: no-repeat;
  clip-path: polygon(22% 0, 100% 0, 78% 100%, 0 100%);
  animation: fvPanelCenter var(--fv-duration) cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
.first_view_split_center .first_view_split_label {
  right: 0;
  left: 60px;
  transform: none;
}
.first_view {
  /*
   * ウィークリーセブン
   */
}
.first_view_split_right {
  left: 60%;
  z-index: 3;
  background-image: url("../img/fv_slide03.png");
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
  animation: fvPanelRight var(--fv-duration) cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
.first_view_split_right .first_view_split_label {
  transform: none;
}
.first_view {
  /*
   * 大阪城の上に表示するメッセージ
   */
}
.first_view_msg {
  position: absolute;
  top: 50%;
  left: clamp(30px, 7vw, 120px);
  z-index: 3;
  width: min(42%, 600px);
  color: #fff;
  text-align: left;
  font-weight: 500;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.75), 0 2px 14px rgba(0, 0, 0, 0.65), 0 6px 24px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(calc(-50% + 20px));
  animation: fvMsg var(--fv-duration) ease-in-out infinite;
  will-change: opacity, transform;
}
.first_view_msg_main {
  margin: 0;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2.6rem, 3.4vw, 4.6rem);
  font-weight: 700;
  line-height: 1.45;
}
.first_view {
  /*
   * PC
   *
   * 南館を以前より少し狭くして、
   * 左右2館とのバランスを整える
   */
}
@media screen and (min-width: 1025px) {
  .first_view {
    /*
     * 北館
     */
  }
  .first_view_split_left {
    left: 0;
    width: 37%;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  }
  .first_view_split_left .first_view_split_label {
    transform: translateX(-5%);
  }
  .first_view {
    /*
     * 南館
     */
  }
  .first_view_split_center {
    left: 30%;
    width: 40%;
    background-position: left bottom;
    background-size: cover;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  }
  .first_view_split_center .first_view_split_label {
    transform: translateX(1%);
  }
  .first_view {
    /*
     * ウィークリーセブン
     */
  }
  .first_view_split_right {
    left: 63%;
    width: 37%;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
  }
  .first_view_split_right .first_view_split_label {
    transform: none;
  }
}
.first_view {
  /*
   * 1441px以上
   *
   * 3館全体は画面いっぱいに表示する
   * 南館だけ1440px表示時に近い幅で固定する
   */
}
@media screen and (min-width: 1441px) {
  .first_view {
    /*
     * 3館全体は画面幅いっぱい
     */
  }
  .first_view_split {
    inset: 0;
    width: 100%;
    max-width: none;
    transform: none;
  }
  .first_view {
    /*
     * 南館の表示幅
     *
     * 1440px時の40%＝576pxを基準にする
     */
  }
  .first_view_split_center {
    left: calc(50% - 288px);
    width: 576px;
    background-position: left bottom;
    background-size: cover;
  }
  .first_view {
    /*
     * 北館
     *
     * 南館の左側に重なりながら
     * 画面左端まで確実に覆う
     */
  }
  .first_view_split_left {
    left: 0;
    width: calc(50% - 218px);
    min-width: 502px;
  }
  .first_view {
    /*
     * ウィークリーセブン
     *
     * 南館の右側に重なりながら
     * 画面右端まで確実に覆う
     */
  }
  .first_view_split_right {
    left: calc(50% + 218px);
    width: calc(50% - 218px);
    min-width: 502px;
  }
}
.first_view {
  /*
   * タブレット
   */
}
@media screen and (max-width: 1024px) {
  .first_view {
    height: 75vh;
    max-height: 650px;
    min-height: 520px;
  }
  .first_view_bg_main, .first_view_bg_restart {
    background-position: center center;
  }
  .first_view_split_panel {
    width: 42%;
  }
  .first_view_split_label {
    right: 15px;
    left: 15px;
    font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  }
  .first_view_split_left {
    left: 0;
  }
  .first_view_split_center {
    left: 29%;
  }
  .first_view_split_right {
    left: 58%;
  }
  .first_view_msg {
    left: clamp(24px, 5vw, 60px);
    width: 48%;
  }
  .first_view_msg_main {
    font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  }
}
.first_view {
  /*
   * スマートフォン
   */
}
@media screen and (max-width: 767px) {
  .first_view {
    height: clamp(430px, 72svh, 600px);
    max-height: none;
    min-height: 0;
    margin-top: 0;
    /*
     * 大阪城
     */
  }
  .first_view_bg_main, .first_view_bg_restart {
    inset: -2%;
    background-position: center center;
  }
  .first_view {
    /*
     * スマホでは1枚ずつ全面表示
     */
  }
  .first_view_split {
    display: block;
    inset: 0;
    width: 100%;
    max-width: none;
    transform: none;
  }
  .first_view_split_panel {
    inset: 0;
    width: 100%;
    min-width: 0;
    height: 100%;
    clip-path: none;
    background-position: center center;
    background-size: cover;
    filter: blur(4px) brightness(0.9);
    transform: scale(1.04);
  }
  .first_view_split_panel::after {
    height: 32%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 30%, rgba(0, 0, 0, 0.62) 100%);
  }
  .first_view_split_label {
    right: 20px;
    bottom: 30px;
    left: 20px;
    font-size: clamp(2.2rem, 6vw, 3rem);
    line-height: 1.45;
    letter-spacing: 0.05em;
  }
  .first_view {
    /*
     * 北館
     */
  }
  .first_view_split_left {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    min-width: 0;
    background-image: url("../img/fv_slide01.png");
    background-position: center center;
    animation: fvPanelSingle01 var(--fv-duration) ease-in-out infinite;
  }
  .first_view_split_left .first_view_split_label {
    transform: none;
  }
  .first_view {
    /*
     * 南館
     */
  }
  .first_view_split_center {
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    min-width: 0;
    background-image: url("../img/fv_slide02.png");
    background-position: left bottom;
    background-size: cover;
    animation: fvPanelSingle02 var(--fv-duration) ease-in-out infinite;
  }
  .first_view_split_center .first_view_split_label {
    transform: none;
  }
  .first_view {
    /*
     * ウィークリーセブン
     */
  }
  .first_view_split_right {
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    min-width: 0;
    background-image: url("../img/fv_slide03.png");
    background-position: center center;
    animation: fvPanelSingle03 var(--fv-duration) ease-in-out infinite;
  }
  .first_view_split_right .first_view_split_label {
    transform: none;
  }
  .first_view {
    /*
     * メッセージを左右中央に配置
     */
  }
  .first_view_msg {
    top: 60%;
    left: 50%;
    width: calc(100% - 48px);
    text-align: center;
    transform: translate(-50%, calc(-50% + 20px));
    animation: fvMsgSp var(--fv-duration) ease-in-out infinite;
  }
  .first_view_msg_main {
    font-size: clamp(2.6rem, 7vw, 3.4rem);
    line-height: 1.5;
  }
}
.first_view {
  /*
   * 小さなスマートフォン
   */
}
@media screen and (max-width: 390px) {
  .first_view_split_label {
    right: 15px;
    bottom: 24px;
    left: 15px;
    font-size: 2rem;
  }
}

/*
 * 通常表示する大阪城
 */
@keyframes fvMainZoom {
  0% {
    opacity: 1;
    transform: translateZ(0) scale(1.03);
  }
  5% {
    opacity: 1;
    transform: translateZ(0) scale(1.045);
  }
  42% {
    opacity: 1;
    transform: translateZ(0) scale(1.13);
  }
  90% {
    opacity: 1;
    transform: translateZ(0) scale(1.13);
  }
  100% {
    opacity: 0;
    transform: translateZ(0) scale(1.13);
  }
}
/*
 * ループ接続用の大阪城
 */
@keyframes fvMainRestart {
  0% {
    opacity: 1;
    transform: translateZ(0) scale(1.03);
  }
  5% {
    opacity: 0;
    transform: translateZ(0) scale(1.045);
  }
  89.99% {
    opacity: 0;
    transform: translateZ(0) scale(1);
  }
  90% {
    opacity: 1;
    transform: translateZ(0) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateZ(0) scale(1.03);
  }
}
/*
 * PC・タブレットのメッセージ
 */
@keyframes fvMsg {
  0% {
    opacity: 0;
    transform: translateY(calc(-50% + 20px));
  }
  6% {
    opacity: 1;
    transform: translateY(-50%);
  }
  28% {
    opacity: 1;
    transform: translateY(-50%);
  }
  36% {
    opacity: 0;
    transform: translateY(calc(-50% - 10px));
  }
  100% {
    opacity: 0;
    transform: translateY(calc(-50% - 10px));
  }
}
/*
 * スマートフォンのメッセージ
 */
@keyframes fvMsgSp {
  0% {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 20px));
  }
  6% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  28% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  36% {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 10px));
  }
  100% {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 10px));
  }
}
/*
 * PC・タブレット：北館
 */
@keyframes fvPanelLeft {
  0%, 35% {
    opacity: 0;
    filter: blur(7px) brightness(0.82);
    transform: translateX(-70px) scale(1.08);
  }
  47% {
    opacity: 1;
    filter: blur(0) brightness(1);
    transform: translateX(0) scale(1);
  }
  90% {
    opacity: 1;
    filter: blur(0) brightness(1);
    transform: translateX(0) scale(1);
  }
  100% {
    opacity: 0;
    filter: blur(0) brightness(1);
    transform: translateX(0) scale(1);
  }
}
/*
 * PC・タブレット：南館
 */
@keyframes fvPanelCenter {
  0%, 47% {
    opacity: 0;
    filter: blur(7px) brightness(0.82);
    transform: translateX(-70px) scale(1.08);
  }
  59% {
    opacity: 1;
    filter: blur(0) brightness(1);
    transform: translateX(0) scale(1);
  }
  90% {
    opacity: 1;
    filter: blur(0) brightness(1);
    transform: translateX(0) scale(1);
  }
  100% {
    opacity: 0;
    filter: blur(0) brightness(1);
    transform: translateX(0) scale(1);
  }
}
/*
 * PC・タブレット：ウィークリーセブン
 */
@keyframes fvPanelRight {
  0%, 59% {
    opacity: 0;
    filter: blur(7px) brightness(0.82);
    transform: translateX(-70px) scale(1.08);
  }
  71% {
    opacity: 1;
    filter: blur(0) brightness(1);
    transform: translateX(0) scale(1);
  }
  90% {
    opacity: 1;
    filter: blur(0) brightness(1);
    transform: translateX(0) scale(1);
  }
  100% {
    opacity: 0;
    filter: blur(0) brightness(1);
    transform: translateX(0) scale(1);
  }
}
/*
 * スマートフォン：北館
 */
@keyframes fvPanelSingle01 {
  0%, 34% {
    opacity: 0;
    filter: blur(4px) brightness(0.9);
    transform: scale(1.04);
  }
  43% {
    opacity: 1;
    filter: blur(0) brightness(1);
    transform: scale(1);
  }
  60% {
    opacity: 1;
    filter: blur(0) brightness(1);
    transform: scale(1);
  }
  68%, 100% {
    opacity: 0;
    filter: blur(0) brightness(1);
    transform: scale(1);
  }
}
/*
 * スマートフォン：南館
 */
@keyframes fvPanelSingle02 {
  0%, 56% {
    opacity: 0;
    filter: blur(4px) brightness(0.9);
    transform: scale(1.04);
  }
  65% {
    opacity: 1;
    filter: blur(0) brightness(1);
    transform: scale(1);
  }
  80% {
    opacity: 1;
    filter: blur(0) brightness(1);
    transform: scale(1);
  }
  88%, 100% {
    opacity: 0;
    filter: blur(0) brightness(1);
    transform: scale(1);
  }
}
/*
 * スマートフォン：ウィークリーセブン
 */
@keyframes fvPanelSingle03 {
  0%, 76% {
    opacity: 0;
    filter: blur(4px) brightness(0.9);
    transform: scale(1.04);
  }
  85% {
    opacity: 1;
    filter: blur(0) brightness(1);
    transform: scale(1);
  }
  90% {
    opacity: 1;
    filter: blur(0) brightness(1);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    filter: blur(0) brightness(1);
    transform: scale(1);
  }
}
/*
 * 動きを減らす設定を利用している場合
 */
@media (prefers-reduced-motion: reduce) {
  .first_view_bg_main,
  .first_view_bg_restart {
    animation: none;
    transform: scale(1.08);
  }
  .first_view_bg_main {
    opacity: 1;
  }
  .first_view_bg_restart {
    opacity: 0;
  }
  .first_view_msg {
    animation: none;
    opacity: 1;
    transform: translateY(-50%);
  }
  .first_view_split_panel {
    animation: none;
    opacity: 1;
    filter: none;
    transform: none;
  }
}
@media screen and (prefers-reduced-motion: reduce) and (max-width: 767px) {
  .first_view_msg {
    transform: translate(-50%, -50%);
  }
  .first_view_split_center,
  .first_view_split_right {
    display: none;
  }
}
.top_reserve_system_area {
  border-radius: 20px;
  padding: 35px 50px;
  margin-bottom: 40px;
  background-color: #e0e0e0;
}
.top_reserve_system_area .directin-sp-form {
  gap: 10px 20px;
}
.top_reserve_system_area .directin-sp-form .directin-sp-form-nodate-checkbox .directin-sp-form-checkbox-label {
  font-size: 1.6rem !important;
}
.top_reserve_system_area .directin-sp-form label .directin-sp-form-label {
  font-size: 1.4rem !important;
  font-weight: 500;
}
.top_reserve_system_area .directin-sp-form label select {
  min-width: 100px;
}
.top_reserve_system_area .directin-sp-form .directin-sp-form-submit-button button {
  width: 330px;
  border-radius: 40px;
  border: 1px solid #012B4B;
  padding: 10px;
  text-align: center;
  font-weight: 500;
  font-size: 2rem;
  background-color: #012B4B;
  color: #FFFFFF;
}
.top_reserve_system_area .directin-sp-form .directin-sp-form-submit-button button:hover {
  background-color: #FFFFFF;
  color: #012B4B;
}
@media screen and (max-width: 767px) {
  .top_reserve_system_area .directin-sp-form .directin-sp-form-submit-button button {
    width: 100%;
    font-size: 1.8rem;
  }
}
.top_reserve_operation dt {
  border-left: 10px solid #B99867;
  padding-left: 15px;
  margin-bottom: 20px;
  color: #012B4B;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.4rem;
  line-height: 1.5;
}
.top_reserve_operation dd {
  font-size: 2rem;
  line-height: 1.5;
}
.top_reserve_operation dd ul.flex_box {
  gap: 10px;
}
.top_reserve_operation_tag {
  flex-direction: row;
}
.top_reserve_operation_tag li {
  width: 80%;
  max-width: 460px;
  border: 1px solid #efeeee;
  border-radius: 10px 10px 0 0;
  padding: 10px 20px;
  cursor: pointer;
}
.top_reserve_operation_tag li.selected {
  background-color: #efeeee;
}
.top_reserve_operation_content {
  padding: 40px 60px;
  background-color: #efeeee;
  justify-content: center;
  align-items: center;
  border-radius: 0 10px 10px 10px;
}
.top_reserve_operation_content li {
  width: 350px;
  border-radius: 40px;
  padding: 20px;
  background-color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 1210px) {
  .top_reserve_operation dt {
    padding-left: 10px;
    font-size: 2rem;
  }
  .top_reserve_operation dd {
    font-size: 1.6rem;
  }
  .top_reserve_operation_tag li {
    max-width: 370px;
  }
  .top_reserve_operation_content {
    padding: 40px 30px;
  }
  .top_reserve_operation_content li {
    width: 280px;
  }
}
@media screen and (max-width: 767px) {
  .top_reserve_system_area {
    padding: 10px 0;
  }
  .top_reserve_operation dt {
    padding-left: 7px;
    font-size: 1.8rem;
  }
  .top_reserve_operation dd {
    font-size: 1.4rem;
  }
  .top_reserve_operation_tag li {
    width: 90%;
    padding: 10px;
  }
  .top_reserve_operation_content {
    padding: 30px 20px;
  }
}
.top_group {
  background-image: url("../img/top_group_bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
}
.top_group .container {
  padding: 50px 0;
  align-items: flex-start;
  gap: 40px 50px;
}
.top_group .text_area {
  flex: 1;
}
.top_group .text_area p {
  margin-bottom: 30px;
}
.top_group img {
  width: 40%;
  max-width: 540px;
}
@media screen and (max-width: 767px) {
  .top_group .container {
    align-items: center;
  }
  .top_group img {
    width: 100%;
    max-width: 350px;
  }
}
.top_news .head_text {
  margin-bottom: 0;
}
.top_news .container {
  align-items: flex-start;
  gap: 30px 14%;
}
.top_news ul {
  flex: 1;
}
.top_news li {
  border-bottom: 1px solid #D9D9D9;
}
.top_news a {
  display: block;
  padding: 20px;
}
.top_news a:hover {
  opacity: 0.7;
}
.top_news dl {
  align-items: center;
  gap: 0 60px;
}
.top_news dt {
  width: 150px;
  color: #012B4B;
  font-weight: 500;
}
.top_news dd {
  width: calc(100% - 150px - 60px);
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 1210px) {
  .top_news .container {
    gap: 30px 7%;
  }
}
@media screen and (max-width: 767px) {
  .top_news .container {
    padding-bottom: 150px;
  }
  .top_news a {
    padding: 10px 0;
  }
  .top_news dl {
    align-items: flex-start;
  }
  .top_news dt,
  .top_news dd {
    width: 100%;
  }
}
.top_feature {
  background-color: #efeeee;
  position: relative;
}
.top_feature .container {
  width: 98%;
  max-width: none;
  padding-top: 100px;
}
.top_feature .head_text {
  width: 100%;
}
.top_feature .head_text + p {
  margin-bottom: 40px;
  text-align: center;
}
.top_feature ul.flex_box {
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 50px 30px;
}
.top_feature li {
  width: 23%;
  color: #012B4B;
}
.top_feature li img {
  margin-bottom: 5px;
}
.top_feature li p:not(.top_plan_detail) {
  font-family: "Zen Old Mincho", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
.top_feature li p.top_plan_detail {
  margin: 15px 0 20px;
}
.top_feature li a {
  display: block;
  color: #012B4B;
  text-align: right;
  font-weight: 500;
}
.top_feature li a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1210px) {
  .top_feature li {
    width: 40%;
  }
  .top_feature li p:not(.top_plan_detail) {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .top_feature .container {
    width: 95%;
    padding-top: 120px;
  }
  .top_feature .head_text:before {
    bottom: -20px;
  }
  .top_feature .head_text + p {
    text-align: left;
  }
  .top_feature ul.flex_box {
    gap: 30px 10px;
  }
  .top_feature li {
    width: 47%;
    color: #012B4B;
  }
  .top_feature li img {
    margin-bottom: 5px;
  }
  .top_feature li p:not(.top_plan_detail) {
    font-size: 1.5rem;
  }
}
.top_plan {
  margin-bottom: 0;
}
.top_plan li {
  padding: 50px 20px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  justify-content: center;
  align-items: flex-start;
  gap: 30px 60px;
}
.top_plan li:nth-of-type(2) {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.top_plan li:nth-of-type(1) {
  background-image: url("../img/top_plan_bg01.webp");
}
.top_plan li:nth-of-type(2) {
  background-image: url("../img/top_plan_bg02.png");
}
.top_plan li:nth-of-type(3) {
  background-image: url("../img/top_plan_bg03.png");
}
.top_plan img {
  width: 40%;
  max-width: 500px;
}
.top_plan .text_area {
  flex: 1;
  max-width: 630px;
  color: #ffffff;
}
.top_plan p:not(.top_plan_detail) {
  padding-left: 20px;
  margin-bottom: 20px;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
}
.top_plan p:not(.top_plan_detail):before {
  content: "";
  width: 10px;
  height: 30px;
  background-color: #B99867;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.top_plan p.top_plan_detail {
  margin-bottom: 60px;
}
@media screen and (max-width: 1210px) {
  .top_plan li {
    gap: 30px;
  }
  .top_plan p:not(.top_plan_detail) {
    font-size: 2.6rem;
  }
  .top_plan p.top_plan_detail {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .top_plan img {
    width: 100%;
    max-width: 350px;
  }
  .top_plan p:not(.top_plan_detail) {
    font-size: 2.2rem;
  }
  .top_plan p.top_plan_detail {
    margin-bottom: 30px;
  }
}
.top_service ul {
  flex-direction: row;
  justify-content: center;
  gap: 60px 30px;
}
.top_service li {
  width: 380px;
}
.top_service li img {
  margin-bottom: 20px;
}
.top_service li h3 {
  margin-bottom: 10px;
  color: #012B4B;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.4rem;
}
@media screen and (max-width: 1210px) {
  .top_service li {
    width: 300px;
  }
  .top_service li h3 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .top_service ul {
    display: block;
    gap: 0;
  }
  .top_service li {
    width: auto;
    padding: 0 10px;
  }
  .top_service li h3 {
    font-size: 1.8rem;
  }
}
.top_access .container {
  padding-bottom: 0;
}
.top_access_tag_list {
  flex-direction: row;
  justify-content: flex-start;
  gap: 5px;
}
.top_access_tag_item {
  width: 350px;
  border-radius: 10px 10px 0 0;
  border: 1px solid #efeeee;
  padding: 15px;
  color: #012B4B;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.8rem;
  font-weight: 500;
}
.top_access_tag_item:hover {
  background-color: #efeeee;
}
.top_access_tag_item.selected {
  background-color: #efeeee;
}
.top_access_content_list {
  border-radius: 0 10px 10px 10px;
  padding: 20px 0px 60px;
  background-color: #efeeee;
  margin-inline: calc(50% - 50vw);
}
.top_access_content_item {
  display: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0 50px;
}
.top_access_content_item.selected {
  display: block;
}
.top_access_address {
  margin-bottom: 30px;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px 0;
}
.top_access_address_add {
  background-color: #FFF;
  padding: 10px 1em;
}
.top_access_address-p {
  margin-bottom: 0;
  justify-content: space-between;
  align-items: center;
  gap: 0 20px;
  background-color: #FFF;
  padding: 30px 30px 0;
}
.top_access_address-p_add {
  font-weight: 700;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .top_access_address-p_add {
    margin-bottom: 15px;
  }
}
.top_access_address-p_add img {
  width: 36px;
  margin-right: 10px;
}
.top_access_g_map {
  width: 100%;
  aspect-ratio: 16/9;
}
.top_access_g_map iframe {
  width: 100%;
  height: 100%;
}
.top_access h3 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #012B4B;
  font-family: "Zen Old Mincho", serif;
  font-size: 3.6rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #B99867;
}
.top_access h3 img {
  width: 24px;
  height: auto;
  margin-right: 15px;
}
.top_access h3:first-child {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .top_access h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 2.2rem;
  }
}
.top_access_info {
  display: grid;
  grid-template-columns: minmax(280px, 35%) minmax(0, 1fr);
  align-items: stretch;
  gap: 30px;
  padding: 30px;
  background-color: #fff;
  /*
   * 駐車場画像
   * テーブルの高さに合わせて自動で伸ばす
   */
}
.top_access_info figure {
  width: 100%;
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
}
.top_access_info figure img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.top_access_info {
  /*
   * 駐車場情報
   */
}
.top_access_info table {
  width: 100%;
  height: 100%;
  border-collapse: collapse;
  border-left: 1px solid #ddd5c9;
  border-right: 1px solid #ddd5c9;
  font-size: 16px;
  line-height: 1.7;
}
.top_access_info table tbody {
  height: 100%;
}
.top_access_info table tr {
  height: 16.6666666667%;
}
.top_access_info table th,
.top_access_info table td {
  padding: 12px 18px;
  border-bottom: 1px solid #ddd5c9;
  vertical-align: middle;
}
.top_access_info table tr:first-child th,
.top_access_info table tr:first-child td {
  border-top: 1px solid #ddd5c9;
}
.top_access_info table th {
  width: 230px;
  background-color: #f5f2ee;
  font-weight: normal;
  text-align: center;
}
.top_access_info table td {
  padding-left: 12px;
}
.top_access_info {
  /*
   * 769px～1024px
   * 横並びのまま、画像幅と余白を調整
   */
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .top_access_info {
    grid-template-columns: minmax(240px, 36%) minmax(0, 1fr);
    gap: 20px;
    padding: 24px;
  }
  .top_access_info table {
    font-size: 14px;
  }
  .top_access_info table th,
  .top_access_info table td {
    padding: 10px 12px;
  }
  .top_access_info table th {
    width: 170px;
  }
}
.top_access_info {
  /*
   * 768px以下は縦並び
   */
}
@media screen and (max-width: 768px) {
  .top_access_info {
    display: block;
    padding: 20px;
  }
  .top_access_info figure {
    width: 100%;
    height: auto;
    margin: 0 0 20px;
  }
  .top_access_info figure img {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: 420px;
    /*
     * 縦並びでは画像比率を維持
     */
    aspect-ratio: 16/10;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .top_access_info table {
    width: 100%;
    height: auto;
    font-size: 14px;
  }
  .top_access_info table tbody,
  .top_access_info table tr {
    height: auto;
  }
  .top_access_info table th {
    width: 35%;
    padding: 10px;
  }
  .top_access_info table td {
    padding: 10px;
  }
}
.top_access_info {
  /*
   * 小さなスマートフォン
   */
}
@media screen and (max-width: 480px) {
  .top_access_info {
    padding: 15px;
  }
  .top_access_info figure {
    margin-bottom: 15px;
  }
  .top_access_info figure img {
    aspect-ratio: 4/3;
  }
  .top_access_info table {
    font-size: 13px;
  }
  .top_access_info table th {
    width: 120px;
    padding: 9px 7px;
    font-size: 13px;
  }
  .top_access_info table td {
    padding: 9px 7px;
    font-size: 13px;
  }
}
@media screen and (max-width: 1210px) {
  .top_access_tag_item {
    width: 250px;
  }
  .top_access_content_list {
    padding: 20px 40px;
  }
  .top_access_address .btn {
    width: 280px;
  }
}
@media screen and (max-width: 864px) {
  .top_access_tag_list {
    margin-bottom: 10px;
    justify-content: center;
  }
  .top_access_tag_item {
    width: 150px;
    border-radius: 4px;
    padding: 10px 5px;
    font-size: 1.4rem;
    line-height: 1.2;
  }
  .top_access_content_list {
    padding: 30px 20px;
  }
  .top_access_address {
    flex-direction: column;
    align-items: flex-start;
  }
  .top_access_g_map {
    aspect-ratio: 1/1.2;
  }
}
.top_accessinfo h3 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #012B4B;
  font-family: "Zen Old Mincho", serif;
  font-size: 3.6rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #B99867;
}
.top_accessinfo h3 img {
  width: 24px;
  height: auto;
  margin-right: 15px;
}
.top_accessinfo h3:first-child {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .top_accessinfo h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 2.2rem;
  }
}
.top_accessinfo h4 {
  font-size: 2.4rem;
  color: #012B4B;
  margin: 30px 0 10px;
  border-bottom: 1px dotted #C4C4C4;
}
@media screen and (max-width: 767px) {
  .top_accessinfo h4 {
    font-size: 2rem;
  }
}
.top_accessinfo h4.subtitle {
  border-bottom: none;
  font-size: 3rem;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 767px) {
  .top_accessinfo h4.subtitle {
    font-size: 2.4rem;
  }
}
.top_accessinfo_box {
  width: 96%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top_accessinfo_box {
    width: 100%;
  }
}

.indent1 {
  text-indent: -1em;
  padding-left: 1em;
}
.indent1 span {
  color: #B99867;
}

.mgtop {
  margin-top: 30px;
  margin-bottom: 0;
}

.top_service {
  /*
   * PCでは通常の3列表示
   */
}
.top_service_slider {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 30px;
}
.top_service_slider > li {
  width: calc(33.3333% - 20px);
}
@media screen and (max-width: 1024px) {
  .top_service .container {
    width: 90%;
    max-width: none;
    padding-bottom: 0;
  }
  .top_service_slider {
    display: block;
    margin-top: 40px;
    /*
     * 共通のflex指定を解除
     */
  }
  .top_service_slider.flex_box {
    display: block;
  }
  .top_service_slider.wrap {
    flex-wrap: initial;
  }
  .top_service .slick-list {
    margin: 0 -10px;
    overflow: hidden;
    /*
     * 横スワイプと縦スクロールを両立
     */
    touch-action: pan-y pinch-zoom;
    -webkit-overflow-scrolling: touch;
  }
  .top_service .slick-track {
    display: flex;
    align-items: stretch;
  }
  .top_service .slick-slide {
    height: auto;
    padding: 0 10px;
  }
  .top_service .slick-slide > div {
    height: 100%;
  }
  .top_service .top_service_slider > li,
  .top_service .slick-slide > li {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    opacity: 1;
    transform: none;
  }
  .top_service .top_service_slider li img {
    display: block;
    width: 100%;
    height: 220px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .top_service .top_service_slider li h3 {
    margin: 0;
    padding: 0 20px 0px;
    color: #012b4b;
    font-family: "Zen Old Mincho", serif;
    font-size: 2rem;
    line-height: 1.5;
  }
  .top_service .top_service_slider li p {
    flex: 1;
    margin: 0;
    padding: 0 20px 22px;
    font-size: 1.4rem;
    line-height: 1.8;
  }
  .top_service {
    /*
     * 左右矢印
     */
  }
  .top_service .slick-arrow {
    position: absolute;
    top: 40%;
    z-index: 5;
    width: 42px;
    height: 42px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.16);
    color: transparent;
    font-size: 0;
    cursor: pointer;
    transform: translateY(-50%);
  }
  .top_service .slick-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 9px;
    border-top: 2px solid #012b4b;
    border-right: 2px solid #012b4b;
  }
  .top_service .slick-prev {
    left: -12px;
  }
  .top_service .slick-prev::before {
    transform: translate(-35%, -50%) rotate(-135deg);
  }
  .top_service .slick-next {
    right: -12px;
  }
  .top_service .slick-next::before {
    transform: translate(-65%, -50%) rotate(45deg);
  }
  .top_service {
    /*
     * ドット
     */
  }
  .top_service .slick-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
  }
  .top_service .slick-dots li {
    width: 8px;
    height: 8px;
  }
  .top_service .slick-dots li button {
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: #c9c9c9;
    color: transparent;
    font-size: 0;
  }
  .top_service .slick-dots li.slick-active button {
    background-color: #012b4b;
  }
}
.top_service {
  /*
   * タブレット：2件表示
   */
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .top_service .top_service_slider li img {
    height: 240px;
  }
}
.top_service {
  /*
   * スマホ：1件表示
   */
}
@media screen and (max-width: 767px) {
  .top_service .container {
    width: 90%;
  }
  .top_service_slider {
    margin-top: 32px;
  }
  .top_service {
    /*
     * 両端に次のカードを少し見せる
     */
  }
  .top_service .slick-list {
    margin: 0 -8px;
    padding: 0 7%;
  }
  .top_service .slick-slide {
    padding: 0 8px;
  }
  .top_service .top_service_slider li img {
    height: 210px;
  }
  .top_service .top_service_slider li h3 {
    padding: 0 18px 0;
    font-size: 1.8rem;
  }
  .top_service .top_service_slider li p {
    padding: 0 18px 20px;
    font-size: 1.35rem;
  }
  .top_service .slick-arrow {
    width: 38px;
    height: 38px;
  }
  .top_service .slick-prev {
    left: -7px;
  }
  .top_service .slick-next {
    right: -7px;
  }
}

.new-res-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}
.new-res-btn p {
  text-align: center;
}
.new-res-btn p a {
  display: inline-block;
  width: 330px;
  box-sizing: border-box;
  padding: 10px;
  background-color: #FFF;
  border: 1px solid #012B4B;
  border-radius: 30px;
  color: #012B4B;
}
@media screen and (max-width: 767px) {
  .new-res-btn p a {
    width: 280px;
  }
}

.room_type {
  margin-top: 120px;
  background-color: #efeeee;
  font-weight: 400;
}
.room_type.sightseeing_info {
  background-color: #efeeee;
}
.room_type.sightseeing_info.group_feature {
  background-color: #efeeee;
}
.room_type.sightseeing_info.group_feature .container {
  max-width: 1200px;
}
.room_type .container {
  max-width: 1080px;
  padding-top: 40px;
}
.room_type .head_text + p {
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 890px) {
  .room_type .head_text + p {
    text-align: left;
  }
}
.room_type {
  /*
   * 予約ボタン
   */
}
.room_type_btn {
  margin-top: 40px;
  text-align: center;
}
.room_type {
  /*
   * ホテル選択
   */
}
.room_type_tag_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 80px;
}
.room_type_tag_item {
  width: 330px;
}
.room_type_tag_item img {
  display: block;
  width: 100%;
  height: auto;
}
.room_type_tag_item a {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 15px;
  border-radius: 40px;
  background-color: #fff;
  color: #012b4b;
  border: 1px solid #012b4b;
  font-size: 2rem;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.room_type_tag_item a:hover {
  background-color: #012b4b;
  color: #fff;
  border: 1px solid #012b4b;
}
.room_type_tag_item.selected a {
  background-color: #012b4b;
  color: #fff;
}
.room_type {
  /*
   * ホテルごとのコンテンツ
   */
}
.room_type_content_item:not(:last-child) {
  margin-bottom: 100px;
  padding-bottom: 100px;
  border-bottom: 1px solid #222;
}
.room_type_content_item h3 {
  position: relative;
  margin-bottom: 30px;
  padding-left: 20px;
  color: #012b4b;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.4rem;
}
.room_type_content_item h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 32px;
  background-color: #b99867;
  transform: translateY(-50%);
}
.room_type {
  /*
   * 部屋タイプ
   * PCでは縦並び
   */
}
.room_type_list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.room_type_list_item {
  display: flex;
  align-items: flex-start;
  gap: 20px 40px;
}
.room_type_list_item a {
  width: 40%;
  max-width: 540px;
}
@media screen and (max-width: 767px) {
  .room_type_list_item a {
    width: 100%;
  }
}
.room_type_list_item_info {
  flex: 1;
}
.room_type_list_item_info_name {
  margin-bottom: 5px;
  color: #012b4b;
  font-size: 2.4rem;
  font-weight: 700;
}
.room_type_list_item_info dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: 400;
}
.room_type_list_item_info dt,
.room_type_list_item_info dd {
  padding: 10px 0;
}
.room_type_list_item_info dt:not(:last-of-type),
.room_type_list_item_info dd:not(:last-of-type) {
  border-bottom: 1px dotted #222;
}
.room_type_list_item_info dt {
  width: 40%;
  font-weight: 400;
}
.room_type_list_item_info dd {
  width: 60%;
  text-align: right;
}
.room_type_list_item_info_note {
  line-height: 1.8;
}
.room_type {
  /*
   * タブレット
   */
}
@media screen and (max-width: 1024px) {
  .room_type_tag_item {
    width: calc(33.3333% - 10px);
  }
  .room_type_tag_item img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center top;
       object-position: center top;
  }
  .room_type_list_item img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center top;
       object-position: center top;
  }
}
.room_type {
  /*
   * スマートフォン
   */
}
@media screen and (max-width: 767px) {
  .room_type {
    margin-top: 60px;
    overflow: hidden;
  }
  .room_type .container {
    width: 100%;
    max-width: none;
    padding-top: 50px;
    padding-right: 0;
    padding-left: 0;
  }
  .room_type .head_text {
    padding-right: 20px;
    padding-left: 20px;
  }
  .room_type .head_text::before {
    bottom: -20px;
  }
  .room_type {
    /*
     * ホテル選択を横スクロール
     */
  }
  .room_type_tag_list {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    align-items: stretch;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 45px;
    padding: 0 20px 14px;
    overflow-x: auto !important;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 20px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
  }
  .room_type_tag_list::-webkit-scrollbar {
    display: none;
  }
  .room_type_tag_list::after {
    content: "";
    display: block;
    flex: 0 0 8px;
    width: 8px;
  }
  .room_type_tag_item {
    flex: 0 0 76% !important;
    width: 76% !important;
    min-width: 76% !important;
    max-width: 280px;
    padding: 8px;
    border: 1px solid transparent;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
    scroll-snap-align: start;
  }
  .room_type_tag_item img {
    display: block;
    width: 100%;
    height: 140px;
    border-radius: 6px;
    -o-object-fit: cover;
       object-fit: cover;
    /*
     * 写真上部を基準にトリミング
     */
    -o-object-position: center top;
       object-position: center top;
  }
  .room_type_tag_item a {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 11px 30px 11px 12px;
    box-sizing: border-box;
    border-radius: 4px;
    background-color: #fff;
    color: #012b4b;
    font-size: 1.5rem;
    line-height: 1.5;
    text-align: left;
  }
  .room_type_tag_item a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 13px;
    width: 7px;
    height: 7px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: translateY(-65%) rotate(45deg);
  }
  .room_type_tag_item a:hover {
    background-color: #fff;
    color: #012b4b;
  }
  .room_type_tag_item.selected {
    border-color: #012b4b;
  }
  .room_type_tag_item.selected a {
    background-color: #012b4b;
    color: #fff;
  }
  .room_type {
    /*
     * ホテルごとのコンテンツ
     */
  }
  .room_type_content_list {
    display: block;
  }
  .room_type_content_item {
    scroll-margin-top: 80px;
  }
  .room_type_content_item:not(:last-child) {
    margin-bottom: 55px;
    padding-bottom: 50px;
    border-bottom: 1px solid #d3d3d3;
  }
  .room_type_content_item h3 {
    position: sticky;
    top: 70px;
    z-index: 5;
    margin: 0 0 22px;
    padding: 14px 20px 14px 34px;
    color: #012b4b;
    font-size: 1.9rem;
    line-height: 1.45;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
  }
  .room_type_content_item h3::before {
    left: 20px;
    width: 6px;
    height: 26px;
  }
  .room_type {
    /*
     * 部屋タイプを横スクロール
     */
  }
  .room_type_list {
    /*
     * 画面の左右に24pxずつ余白を残したカード幅
     */
    --room-card-width: calc(100vw - 48px);
    --room-card-space: 24px;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
    width: 100%;
    gap: 14px;
    margin: 0;
    padding: 0 0 16px;
    box-sizing: border-box;
    overflow-x: auto !important;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--room-card-space);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
  }
  .room_type_list::-webkit-scrollbar {
    display: none;
  }
  .room_type_list {
    /*
     * 最初のカードを中央にする左側スペーサー
     */
  }
  .room_type_list::before {
    content: "";
    display: block;
    flex: 0 0 var(--room-card-space);
    width: var(--room-card-space);
    min-width: var(--room-card-space);
  }
  .room_type_list {
    /*
     * 最後のカードも中央にできる右側スペーサー
     */
  }
  .room_type_list::after {
    content: "";
    display: block;
    flex: 0 0 var(--room-card-space);
    width: var(--room-card-space);
    min-width: var(--room-card-space);
  }
  .room_type_list_item {
    display: block !important;
    flex: 0 0 var(--room-card-width) !important;
    width: var(--room-card-width) !important;
    min-width: var(--room-card-width) !important;
    max-width: none;
    margin: 0;
    overflow: hidden;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
  .room_type_list_item.targetFadeIn {
    opacity: 1;
    transform: none;
  }
  .room_type_list_item img {
    display: block;
    width: 100% !important;
    max-width: none;
    height: 240px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
  .room_type_list_item_info {
    padding: 18px 18px 20px;
  }
  .room_type_list_item_info_name {
    position: relative;
    margin-bottom: 12px;
    padding-bottom: 10px;
    color: #012b4b;
    font-size: 2rem;
    line-height: 1.4;
  }
  .room_type_list_item_info_name::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background-color: #b99867;
  }
  .room_type_list_item_info {
    /*
     * 料金やチェックインを1行表示
     */
  }
  .room_type_list_item_info dl {
    display: grid !important;
    grid-template-columns: minmax(100px, 42%) minmax(0, 1fr);
    width: 100%;
    margin-bottom: 14px;
  }
  .room_type_list_item_info dt,
  .room_type_list_item_info dd {
    width: auto !important;
    min-width: 0;
    margin: 0;
    padding: 9px 0;
    border-bottom: 1px dotted #b9b9b9;
    line-height: 1.5;
  }
  .room_type_list_item_info dt {
    padding-right: 8px;
    font-size: 1.4rem;
    font-weight: 400;
  }
  .room_type_list_item_info dt:not(:last-of-type) {
    border-bottom: 1px dotted #b9b9b9;
  }
  .room_type_list_item_info dd {
    color: #012b4b;
    font-weight: 600;
    text-align: right;
    white-space: nowrap;
  }
  .room_type_list_item_info dd:not(:last-of-type) {
    border-bottom: 1px dotted #b9b9b9;
  }
  .room_type_list_item_info_note {
    font-size: 1.2rem;
    line-height: 1.7;
  }
  .room_type_list_item_info_note br {
    display: none;
  }
  .room_type {
    /*
     * 予約ボタン
     */
  }
  .room_type_btn {
    margin: 22px 20px 0;
  }
  .room_type_btn .btn,
  .room_type_btn .btn_white {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100% !important;
    min-height: 52px;
    padding: 12px 36px 12px 20px !important;
    box-sizing: border-box;
    border-radius: 30px;
    font-size: 1.5rem !important;
    line-height: 1.5;
    text-align: center;
  }
}
.room_type {
  /*
   * 横幅の広いスマートフォン・小型タブレット
   * 480px～767px
   */
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  .room_type {
    /*
     * ホテル選択カード
     */
  }
  .room_type_tag_item {
    flex-basis: 76% !important;
    width: 76% !important;
    min-width: 76% !important;
    max-width: 420px;
  }
  .room_type_tag_item img {
    /*
     * 横幅が広い端末では画像の高さを確保
     */
    height: 320px;
    /*
     * 写真上部を基準にトリミング
     */
    -o-object-position: center top;
       object-position: center top;
  }
  .room_type {
    /*
     * 部屋タイプカード
     */
  }
  .room_type_list {
    /*
     * 左右32pxずつ余白を確保
     */
    --room-card-width: calc(100vw - 64px);
    --room-card-space: 32px;
  }
  .room_type_list_item img {
    /*
     * 横幅の広い端末では部屋写真を高く表示
     */
    height: 320px;
    -o-object-position: center center;
       object-position: center center;
  }
}

.sightseeing_info {
  font-weight: 400;
  margin-top: 120px;
  background-color: #efeeee;
}
.sightseeing_info .container {
  max-width: 1200px;
}
.sightseeing_info .head_text + p {
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 890px) {
  .sightseeing_info .head_text + p {
    text-align: left;
  }
}
.sightseeing_info ul {
  gap: 30px;
}
.sightseeing_info li {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 40px;
  border-radius: 0;
}
.sightseeing_info_spot {
  width: 47%;
  flex-shrink: 0;
  text-align: right;
}
.sightseeing_info_spot a {
  margin-bottom: 5px;
  color: #012B4B;
  text-decoration: underline;
}
.sightseeing_info_spot a:hover {
  opacity: 0.7;
}
.sightseeing_info_spot img {
  display: block;
  width: 100%;
  border: 4px solid #222;
  box-sizing: border-box;
  border-radius: 6px;
}
.sightseeing_info_root {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sightseeing_info_root figure {
  width: 100%;
}
.sightseeing_info_root figure img {
  display: block;
  width: 100%;
}
.sightseeing_info_item_head {
  display: inline-block;
  margin-bottom: 40px;
  padding: 12px 35px;
  background: #fff;
  color: #012B4B;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1136px) {
  .sightseeing_info li {
    flex-direction: column;
    padding: 30px;
  }
  .sightseeing_info_spot {
    width: 100%;
    max-width: 500px;
  }
  .sightseeing_info_root {
    width: 100%;
    max-width: 500px;
  }
  .sightseeing_info_root figure {
    width: 100%;
  }
  .sightseeing_info_item_head {
    width: 100%;
    font-size: 1.8rem;
    padding: 10px 20px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .sightseeing_info ul {
    gap: 40px;
  }
  .sightseeing_info li {
    padding: 20px;
  }
  .sightseeing_info_text {
    width: 90%;
    margin: 0 auto;
  }
  .sightseeing_info_item_head {
    font-size: 1.6rem;
  }
  .sightseeing_info_spot img {
    border-width: 3px;
  }
}
.sightseeing_traffic {
  padding: 80px 0;
}
.sightseeing_traffic img {
  margin: 0 auto;
  background: transparent;
}

.about_text {
  margin: 40px auto;
  width: 80%;
}
@media screen and (max-width: 767px) {
  .about_text {
    width: 100%;
  }
}
.about_intro {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.about_intro figure {
  width: 48.5%;
}
.about_category .container {
  padding-bottom: 0;
}
.about_category ul {
  gap: 0px;
  margin: 0 auto;
}
.about_category li {
  align-items: flex-start;
  gap: 30px 80px;
}
.about_category li:nth-of-type(2n - 1) {
  padding: 50px 20px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  justify-content: center;
  align-items: flex-start;
  gap: 30px 60px;
  max-width: auto;
}
.about_category li:nth-of-type(n + 1) {
  padding: 50px 20px;
}
.about_category li:nth-of-type(1) {
  background-image: url("../img/about_category01_bg.png");
  border-bottom: 1px solid #fff;
}
.about_category li:nth-of-type(2) {
  background-image: url("../img/about_category02_bg.png");
}
.about_category .content_box {
  max-width: 1080px;
  margin: 0 auto;
  gap: 30px 80px;
}
.about_category .text_area {
  flex: 1;
}
.about_category h3 {
  padding-left: 20px;
  margin-bottom: 20px;
  color: #012B4B;
  font-family: "Zen Old Mincho", serif;
  font-size: 3.2rem;
  position: relative;
}
.about_category h3:before {
  content: "";
  width: 10px;
  height: 35px;
  background-color: #B99867;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.about_category h3 + p {
  margin-bottom: 40px;
}
.about_category img {
  width: 40%;
  max-width: 500px;
  margin: 0 auto;
}
@media screen and (max-width: 1210px) {
  .about_category li {
    flex-direction: row;
  }
  .about_category h3 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .about_category li {
    flex-direction: column;
    align-items: center;
  }
  .about_category li:nth-of-type(2n + 2) {
    flex-direction: column;
  }
  .about_category h3 + p {
    margin-bottom: 20px;
  }
  .about_category img {
    width: 100%;
    max-width: 350px;
  }
}
.about_yao_festival .container {
  padding-bottom: 60px;
}
.about_yao_festival p {
  text-align: center;
}
.about_yao_festival .bg_area {
  display: block;
  background: url(../img/about_yao_festival.png) center/cover no-repeat;
  max-width: 1920px;
  width: 100%;
  min-height: 610px;
}
@media screen and (max-width: 1300px) {
  .about_yao_festival p {
    text-align: left;
  }
  .about_yao_festival .bg_area {
    min-height: 300px;
  }
}

.nearby_school {
  padding: 0 0;
  background-color: #fff;
}
.nearby_school .container {
  width: 96%;
  max-width: 1600px;
  margin: 0 auto;
  padding-bottom: 0;
}
.nearby_school {
  /*
  * PCでは4件を横並び
  */
}
.nearby_school_list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 32px);
  margin-top: 50px;
}
.nearby_school_item {
  min-width: 0;
}
.nearby_school_link {
  display: block;
  color: #222;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.nearby_school {
  /*
  * 写真
  */
}
.nearby_school_image {
  width: 100%;
  background-color: #eee;
}
.nearby_school_image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.nearby_school {
  /*
  * 大学名・所要時間
  */
}
.nearby_school_name {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 8px;
  margin: 13px 0 12px;
  color: #222;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.5rem, 1.25vw, 1.9rem);
  font-weight: 600;
  line-height: 1.5;
}
.nearby_school_name span {
  position: relative;
  padding-left: 3em;
  font-size: 0.86em;
  font-weight: 500;
  white-space: nowrap;
}
.nearby_school_name span::before {
  content: "・・・";
  position: absolute;
  top: 50%;
  left: -8px;
  color: #222;
  transform: translateY(-55%);
}
.nearby_school {
  /*
  * 路線表示
  */
}
.nearby_school_route {
  display: flex;
  align-items: flex-start;
  width: 100%;
  min-height: 42px;
}
.nearby_school_station, .nearby_school_transfer {
  flex: 0 0 auto;
  margin: 0;
  font-size: clamp(1.2rem, 0.95vw, 1.4rem);
  line-height: 1.45;
  white-space: nowrap;
}
.nearby_school_line {
  flex: 1 1 auto;
  min-width: 20px;
  height: 1px;
  margin: 10px 12px 0;
  background-color: #012b4b;
}
.nearby_school {
  /*
  * タブレット・スマホ用Slick
  */
}
@media screen and (max-width: 1024px) {
  .nearby_school {
    padding: 40px 0;
  }
  .nearby_school .container {
    width: 90%;
    max-width: none;
  }
  .nearby_school_list {
    display: block;
    margin-top: 40px;
  }
  .nearby_school {
    /*
    * Slickによって追加される要素
    */
  }
  .nearby_school .slick-list {
    margin: 0 -10px;
    padding: 0 4%;
    overflow: hidden;
    /*
    * 横スワイプしながら縦スクロールも許可
    */
    touch-action: pan-y pinch-zoom;
  }
  .nearby_school .slick-track {
    display: flex;
    align-items: stretch;
  }
  .nearby_school .slick-slide {
    height: auto;
    padding: 0 10px;
  }
  .nearby_school .slick-slide > div {
    height: 100%;
  }
  .nearby_school_item {
    height: 100%;
  }
  .nearby_school_link {
    height: 100%;
    padding-bottom: 8px;
  }
  .nearby_school {
    /*
    * 左右矢印
    */
  }
  .nearby_school .slick-arrow {
    position: absolute;
    top: 42%;
    z-index: 5;
    width: 42px;
    height: 42px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.94);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.16);
    color: transparent;
    font-size: 0;
    cursor: pointer;
    transform: translateY(-50%);
  }
  .nearby_school .slick-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 9px;
    border-top: 2px solid #012b4b;
    border-right: 2px solid #012b4b;
  }
  .nearby_school .slick-prev {
    left: -12px;
  }
  .nearby_school .slick-prev::before {
    transform: translate(-35%, -50%) rotate(-135deg);
  }
  .nearby_school .slick-next {
    right: -12px;
  }
  .nearby_school .slick-next::before {
    transform: translate(-65%, -50%) rotate(45deg);
  }
  .nearby_school {
    /*
    * ドット
    */
  }
  .nearby_school .slick-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
  }
  .nearby_school .slick-dots li {
    width: 8px;
    height: 8px;
  }
  .nearby_school .slick-dots li button {
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: #c9c9c9;
    color: transparent;
    font-size: 0;
    cursor: pointer;
  }
  .nearby_school .slick-dots li.slick-active button {
    background-color: #012b4b;
  }
}
.nearby_school {
  /*
  * タブレット：2件表示
  */
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .nearby_school_image {
    aspect-ratio: 1.45/1;
  }
  .nearby_school_name {
    font-size: 1.8rem;
  }
  .nearby_school_station, .nearby_school_transfer {
    font-size: 1.3rem;
  }
}
.nearby_school {
  /*
  * スマホ：1件表示
  */
}
@media screen and (max-width: 767px) {
  .nearby_school {
    padding: 0 0;
  }
  .nearby_school .container {
    width: 90%;
  }
  .nearby_school_list {
    margin-top: 32px;
  }
  .nearby_school {
    /*
    * 両端に隣のカードを少し表示
    */
  }
  .nearby_school .slick-list {
    margin: 0 -8px;
    padding: 0 8%;
  }
  .nearby_school .slick-slide {
    padding: 0 8px;
  }
  .nearby_school_image {
    aspect-ratio: 1.48/1;
  }
  .nearby_school_name {
    margin-top: 12px;
    font-size: 1.7rem;
  }
  .nearby_school_route {
    min-height: 46px;
  }
  .nearby_school_station, .nearby_school_transfer {
    font-size: 1.2rem;
  }
  .nearby_school_line {
    margin-right: 8px;
    margin-left: 8px;
  }
  .nearby_school .slick-arrow {
    width: 38px;
    height: 38px;
  }
  .nearby_school .slick-prev {
    left: -7px;
  }
  .nearby_school .slick-next {
    right: -7px;
  }
}
.nearby_school {
  /*
  * 画面幅が狭い場合
  */
}
@media screen and (max-width: 390px) {
  .nearby_school_name {
    display: block;
  }
  .nearby_school_name span {
    margin-top: 2px;
    padding-left: 3em;
  }
  .nearby_school_station, .nearby_school_transfer {
    font-size: 1.1rem;
  }
  .nearby_school_line {
    min-width: 12px;
    margin-right: 6px;
    margin-left: 6px;
  }
}

.group_feature {
  margin-top: 100px;
  padding: 80px 0;
  background-color: #efeeee;
}
.group_feature .container {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
.group_feature_lead {
  margin: 0 0 45px;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.9;
}
.group_feature {
  /*
   * PC：3列×2段
   */
}
.group_feature_list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.group_feature_item {
  width: auto;
  min-width: 0;
}
.group_feature_item h3 {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 60px;
  margin: 0 0 10px;
  color: #012b4b;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
.group_feature_item img {
  display: block;
  width: 100%;
  height: 280px;
  margin: 0 0 14px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.group_feature_item p {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.9;
}
.group_feature {
  /*
   * タブレット・スマホではSlick化
   */
}
@media screen and (max-width: 1024px) {
  .group_feature {
    padding: 60px 0;
    margin-top: 60px;
  }
  .group_feature .container {
    width: 90%;
    max-width: none;
  }
  .group_feature_lead {
    margin-bottom: 38px;
  }
  .group_feature_list {
    display: block;
    margin: 0;
  }
  .group_feature {
    /*
     * flex_box / wrapの共通指定を解除
     */
  }
  .group_feature_list.flex_box {
    display: block;
  }
  .group_feature_list.wrap {
    flex-wrap: initial;
  }
  .group_feature .slick-list {
    margin: 0 -10px;
    overflow: hidden;
    /*
     * 横スワイプと縦スクロールを両立
     */
    touch-action: pan-y pinch-zoom;
    -webkit-overflow-scrolling: touch;
  }
  .group_feature .slick-track {
    display: flex;
    align-items: stretch;
  }
  .group_feature .slick-slide {
    height: auto;
    padding: 0 10px;
  }
  .group_feature .slick-slide > div {
    height: 100%;
  }
  .group_feature_item,
  .group_feature .slick-slide > li {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    height: 100%;
    opacity: 1;
    transform: none;
  }
  .group_feature_item h3,
  .group_feature .slick-slide > li h3 {
    flex: 0 0 auto;
    min-height: 58px;
    font-size: 1.9rem;
  }
  .group_feature_item img,
  .group_feature .slick-slide > li img {
    flex: 0 0 auto;
    height: 250px;
  }
  .group_feature_item p,
  .group_feature .slick-slide > li p {
    flex: 1;
  }
  .group_feature {
    /*
     * 左右矢印
     */
  }
  .group_feature .slick-arrow {
    position: absolute;
    top: 47%;
    z-index: 5;
    width: 42px;
    height: 42px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
    color: transparent;
    font-size: 0;
    cursor: pointer;
    transform: translateY(-50%);
  }
  .group_feature .slick-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 9px;
    border-top: 2px solid #012b4b;
    border-right: 2px solid #012b4b;
  }
  .group_feature .slick-prev {
    left: -12px;
  }
  .group_feature .slick-prev::before {
    transform: translate(-35%, -50%) rotate(-135deg);
  }
  .group_feature .slick-next {
    right: -12px;
  }
  .group_feature .slick-next::before {
    transform: translate(-65%, -50%) rotate(45deg);
  }
  .group_feature {
    /*
     * ドット
     */
  }
  .group_feature .slick-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
  }
  .group_feature .slick-dots li {
    width: 8px;
    height: 8px;
  }
  .group_feature .slick-dots li button {
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: #c8c8c8;
    color: transparent;
    font-size: 0;
  }
  .group_feature .slick-dots li.slick-active button {
    background-color: #012b4b;
  }
}
.group_feature {
  /*
   * タブレット：2枚表示
   */
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .group_feature_item h3 {
    font-size: 1.8rem;
  }
  .group_feature_item img {
    height: 280px;
  }
}
.group_feature {
  /*
   * スマホ：1枚表示
   */
}
@media screen and (max-width: 767px) {
  .group_feature {
    padding: 50px 0 30px;
    margin-top: 50px;
  }
  .group_feature .container {
    width: 90%;
  }
  .group_feature_lead {
    margin-bottom: 30px;
    line-height: 1.8;
    text-align: left;
  }
  .group_feature_lead br {
    display: none;
  }
  .group_feature {
    /*
     * 左右に隣のカードを少し表示
     */
  }
  .group_feature .slick-list {
    margin: 0 -8px;
    padding: 0 7%;
  }
  .group_feature .slick-slide {
    padding: 0 8px;
  }
  .group_feature_item h3,
  .group_feature .slick-slide > li h3 {
    min-height: 56px;
    font-size: 1.8rem;
  }
  .group_feature_item img,
  .group_feature .slick-slide > li img {
    height: 240px;
  }
  .group_feature_item p,
  .group_feature .slick-slide > li p {
    font-size: 1.4rem;
    line-height: 1.8;
  }
  .group_feature .slick-arrow {
    width: 38px;
    height: 38px;
  }
  .group_feature .slick-prev {
    left: -7px;
  }
  .group_feature .slick-next {
    right: -7px;
  }
}
.group_feature {
  /*
   * 小さなスマホ
   */
}
@media screen and (max-width: 390px) {
  .group_feature_item h3,
  .group_feature .slick-slide > li h3 {
    min-height: 52px;
    font-size: 1.6rem;
  }
  .group_feature_item img,
  .group_feature .slick-slide > li img {
    height: 210px;
  }
}
.group_network {
  font-weight: 400;
  margin: 100px 0 0;
}
.group_network_toptext {
  padding: 0 2%;
}
.group_network_toptext:before {
  content: none !important;
}
.group_network_text:before {
  content: none !important;
}
.group_network.group_network_head {
  padding-left: 20px;
  margin-bottom: 20px;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
}
.group_network.group_network_head:before {
  content: "";
  width: 10px;
  height: 30px;
  background-color: #B99867;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.group_network.group_network_head.top_plan_detail {
  margin-bottom: 60px;
}
.group_network .head_text + p {
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 890px) {
  .group_network .head_text + p {
    text-align: left;
  }
}
.group_scene .container {
  width: 95%;
  max-width: 1080px;
  margin: 0 auto;
  padding-bottom: 0;
}
.group_scene div.flex_box {
  margin-bottom: 40px;
  justify-content: space-between;
  align-items: flex-start;
}
.group_scene div.flex_box h2 {
  width: 250px;
}
.group_scene div.flex_box .head_text {
  margin-bottom: 0;
}
.group_scene div.flex_box p {
  width: calc(100% - 350px);
  padding-top: 15px;
}
@media screen and (max-width: 890px) {
  .group_scene div.flex_box p {
    width: calc(100% - 300px);
  }
}
@media screen and (max-width: 767px) {
  .group_scene div.flex_box p {
    width: 100%;
  }
}
.group_scene {
  /*
   * PC：2列×2段
   */
}
.group_scene_list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.group_scene_item {
  position: relative;
  width: 100%;
  max-width: none;
  overflow: hidden;
}
.group_scene_item img {
  display: block;
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transition: transform 0.5s ease;
}
.group_scene_item {
  /*
   * 写真下部を少し暗くして文字を読みやすくする
   */
}
.group_scene_item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}
.group_scene_item p {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 2;
  margin: 0;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  white-space: normal;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 3px 12px rgba(0, 0, 0, 0.55);
  transform: none;
}
.group_scene {
  /*
   * タブレット・スマホではSlick化
   */
}
@media screen and (max-width: 1024px) {
  .group_scene .container {
    width: 90%;
    max-width: none;
  }
  .group_scene_list {
    display: block;
    margin: 0;
  }
  .group_scene {
    /*
     * flex_box / wrapの共通指定を解除
     */
  }
  .group_scene_list.flex_box {
    display: block;
  }
  .group_scene_list.wrap {
    flex-wrap: initial;
  }
  .group_scene .slick-list {
    margin: 0 -10px;
    overflow: hidden;
    /*
     * 横スワイプと縦スクロールを両立
     */
    touch-action: pan-y pinch-zoom;
    -webkit-overflow-scrolling: touch;
  }
  .group_scene .slick-track {
    display: flex;
    align-items: stretch;
  }
  .group_scene .slick-slide {
    height: auto;
    padding: 0 10px;
  }
  .group_scene .slick-slide > div {
    height: 100%;
  }
  .group_scene_item,
  .group_scene .slick-slide > li {
    display: block !important;
    width: 100%;
    height: 100%;
    max-width: none;
    opacity: 1;
    transform: none;
  }
  .group_scene_item img,
  .group_scene .slick-slide > li img {
    width: 100%;
    height: 300px;
  }
  .group_scene_item:hover img,
  .group_scene .slick-slide > li:hover img {
    transform: none;
  }
  .group_scene {
    /*
     * 左右矢印
     */
  }
  .group_scene .slick-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 42px;
    height: 42px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
    color: transparent;
    font-size: 0;
    cursor: pointer;
    transform: translateY(-50%);
  }
  .group_scene .slick-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 9px;
    border-top: 2px solid #012b4b;
    border-right: 2px solid #012b4b;
  }
  .group_scene .slick-prev {
    left: -12px;
  }
  .group_scene .slick-prev::before {
    transform: translate(-35%, -50%) rotate(-135deg);
  }
  .group_scene .slick-next {
    right: -12px;
  }
  .group_scene .slick-next::before {
    transform: translate(-65%, -50%) rotate(45deg);
  }
  .group_scene {
    /*
     * ドット
     */
  }
  .group_scene .slick-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
  }
  .group_scene .slick-dots li {
    width: 8px;
    height: 8px;
  }
  .group_scene .slick-dots li button {
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: #c8c8c8;
    color: transparent;
    font-size: 0;
  }
  .group_scene .slick-dots li.slick-active button {
    background-color: #012b4b;
  }
}
.group_scene {
  /*
   * タブレット：2枚表示
   */
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .group_scene_item img,
  .group_scene .slick-slide > li img {
    height: 280px;
  }
  .group_scene_item p,
  .group_scene .slick-slide > li p {
    right: 16px;
    bottom: 16px;
    left: 16px;
    font-size: 1.8rem;
  }
}
.group_scene {
  /*
   * スマホ：1枚表示
   */
}
@media screen and (max-width: 767px) {
  .group_scene .container {
    width: 90%;
  }
  .group_scene {
    /*
     * 左右に隣のスライドを少し見せる
     */
  }
  .group_scene .slick-list {
    margin: 0 -8px;
    padding: 0 7%;
  }
  .group_scene .slick-slide {
    padding: 0 8px;
  }
  .group_scene_item img,
  .group_scene .slick-slide > li img {
    height: 260px;
  }
  .group_scene_item p,
  .group_scene .slick-slide > li p {
    right: 15px;
    bottom: 16px;
    left: 15px;
    font-size: 1.8rem;
  }
  .group_scene .slick-arrow {
    width: 38px;
    height: 38px;
  }
  .group_scene .slick-prev {
    left: -7px;
  }
  .group_scene .slick-next {
    right: -7px;
  }
}
.group_scene {
  /*
   * 小さなスマホ
   */
}
@media screen and (max-width: 390px) {
  .group_scene_item img,
  .group_scene .slick-slide > li img {
    height: 220px;
  }
  .group_scene_item p,
  .group_scene .slick-slide > li p {
    font-size: 1.6rem;
  }
}
.group_info ul {
  gap: 80px;
}
.group_info li div.flex_box {
  margin-bottom: 40px;
  align-items: flex-start;
  gap: 30px 50px;
}
.group_info li img {
  width: 40%;
  max-width: 540px;
}
.group_info li .text_area {
  flex: 1;
}
.group_info li h3 {
  margin-bottom: 20px;
  color: #012B4B;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.4rem;
}
.group_info li ul {
  padding: 30px 80px;
  background-color: #F3FAFF;
  justify-content: space-between;
}
@media screen and (max-width: 1210px) {
  .group_info li ul {
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .group_info ul {
    gap: 50px;
  }
  .group_info li {
    align-items: center;
  }
  .group_info li div.flex_box {
    align-items: center;
    margin-bottom: 20px;
  }
  .group_info li img {
    width: 100%;
    max-width: 350px;
  }
  .group_info li h3 {
    font-size: 2rem;
  }
}
.group_top {
  justify-content: space-between;
}
.group_top .text_area {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .group_top .text_area {
    width: 100%;
  }
}
.group_top .text_area ul {
  margin-top: 1.5em;
  background-color: #F3FAFF;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .group_top .text_area ul {
    margin-top: 1em;
    margin-bottom: 1em;
    padding: 20px;
  }
}
.group_top img {
  width: 46%;
}
@media screen and (max-width: 767px) {
  .group_top img {
    width: 100%;
  }
}

.faq {
  padding: 80px 0 100px;
}
.faq .container {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
}
.faq_tab_list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
}
.faq_tab_button {
  text-align: center;
  width: 100%;
  min-height: 56px;
  padding: 12px 18px;
  border: 1px solid #012b4b;
  border-radius: 30px;
  background-color: #fff;
  color: #012b4b;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}
.faq_tab_button:hover {
  opacity: 0.75;
}
.faq_tab_button.selected {
  background-color: #012b4b;
  color: #fff;
  text-align: center;
}
.faq_panel[hidden] {
  display: none;
}
.faq_list {
  margin: 0;
  padding: 0;
  border-top: 1px solid #d9d9d9;
  list-style: none;
}
.faq_item {
  border-bottom: 1px solid #d9d9d9;
}
.faq_item.opened .faq_toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq_item.opened .faq_answer {
  grid-template-rows: 1fr;
}
.faq_question {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 28px;
  align-items: start;
  gap: 10px;
  width: 100%;
  padding: 26px 12px;
  border: 0;
  background: none;
  color: #012b4b;
  text-align: left;
  cursor: pointer;
}
.faq_question:hover {
  opacity: 0.75;
}
.faq_question_text {
  padding-top: 2px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
}
.faq_mark {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
}
.faq_mark_q {
  color: #012b4b;
}
.faq_mark_a {
  color: #b99867;
}
.faq_toggle {
  position: relative;
  width: 28px;
  height: 28px;
  margin-top: 2px;
}
.faq_toggle::before, .faq_toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background-color: #9a9a9a;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq_toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq_answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq_answer_inner {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  overflow: hidden;
  padding: 0 50px 0 12px;
}
.faq_item.opened .faq_answer_inner {
  padding-bottom: 26px;
}
.faq_answer_text {
  padding-top: 4px;
  font-size: 1.45rem;
  line-height: 1.9;
}
.faq_answer_text p {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .faq {
    padding: 55px 0 70px;
  }
  .faq .container {
    width: 90%;
  }
  .faq_tab_list {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    padding-bottom: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .faq_tab_list::-webkit-scrollbar {
    display: none;
  }
  .faq_tab_list li {
    flex: 0 0 auto;
    width: 72%;
    max-width: 280px;
  }
  .faq_tab_button {
    min-height: 52px;
    padding: 10px 14px;
    border-radius: 26px;
    font-size: 1.35rem;
  }
  .faq_question {
    grid-template-columns: 34px minmax(0, 1fr) 24px;
    gap: 6px;
    padding: 20px 4px;
  }
  .faq_question_text {
    padding-top: 1px;
    font-size: 1.45rem;
    line-height: 1.7;
  }
  .faq_mark {
    font-size: 1.8rem;
  }
  .faq_toggle {
    width: 24px;
    height: 24px;
  }
  .faq_answer_inner {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 6px;
    padding: 0 28px 0 4px;
  }
  .faq_item.opened .faq_answer_inner {
    padding-bottom: 20px;
  }
  .faq_answer_text {
    padding-top: 2px;
    font-size: 1.35rem;
    line-height: 1.8;
  }
}

form a {
  text-decoration: underline;
}
form a:hover {
  color: #53A75E;
}
form dl {
  display: flex;
  flex-wrap: wrap;
  border-top: none;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: left;
  margin-bottom: 60px;
  background-color: #ffffff;
}
form dt {
  width: 25%;
  padding: 25px 15px;
  box-sizing: border-box;
  border-bottom: solid 1px #E8E8E8;
  font-weight: 500;
}
form dd {
  padding: 25px 15px;
  margin: 0;
  width: 75%;
  box-sizing: border-box;
  border-bottom: solid 1px #E8E8E8;
}
form input[type=tel], form input[type=text], form input[type=email], form input[type=date], form select {
  height: 45px;
  font-size: 16px;
  border: 1px solid #DDD;
  padding: 3px 10px;
  background-color: #FFFFFF;
}
form textarea {
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #DDD;
  padding: 3px 10px;
  width: 100%;
  background-color: #FFFFFF;
  color: #000;
}
form input, form select {
  vertical-align: middle;
  border-radius: 5px;
}
form .boxW100 input, form .boxW100 textarea {
  width: 100%;
  box-sizing: border-box;
}
form .boxW49 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
form .boxW49 input {
  width: 49%;
  box-sizing: border-box;
}
form .boxW50 input {
  width: 49%;
  box-sizing: border-box;
}
form .boxW20 input {
  width: 20%;
  box-sizing: border-box;
}
form .boxW20 span {
  padding-left: 10px;
}
form .radio input {
  height: auto;
  transform: scale(1.7);
  vertical-align: inherit;
  margin-right: 10px;
}
form .must {
  display: inline-block;
  background-color: #012B4B;
  font-size: 12px;
  line-height: 1.5em;
  color: #FFFFFF;
  margin: 0 0 0 10px;
  padding: 2px 5px;
  border-radius: 4px;
}
form #image-btn {
  margin-top: 10px;
  text-align: center;
}
form .dateSelect span {
  display: block;
}
form .radioArea {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
form .formBtn {
  display: flex;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-top: 20px;
}
form .formBtn .btn {
  width: 240px;
}
form #image-btn.topBtn {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  form dl {
    display: block;
    padding: 30px 20px;
    margin: 0 auto 25px;
  }
  form dt {
    width: 100%;
    padding: 15px 0 10px;
    border-bottom: none;
  }
  form dd {
    padding: 0 0 15px;
    width: 100%;
  }
  form dd img {
    width: 250px;
    margin: 0 0 10px 10px;
  }
  form .formBtn {
    flex-direction: column;
    row-gap: 10px;
    align-items: center;
  }
}

/*チェックボックス*/
.checkBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.inputGroup {
  width: 49.5%;
  display: inline-block;
  margin: 0 0 5px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .inputGroup {
    width: 100%;
  }
}

.inputGroup label {
  padding: 12px 15px;
  width: 100%;
  box-sizing: border-box;
  display: block;
  text-align: left;
  color: #3C454C;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color 200ms ease-in;
  overflow: hidden;
  background-color: #FFFFFF;
}

.inputGroup label:before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background-color: #FFFFFF;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale3d(1, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  z-index: -1;
}

.inputGroup label:after {
  width: 26px;
  height: 26px;
  content: "";
  border: 2px solid #D1D7DC;
  background-color: #FFFFFF;
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='26' viewBox='0 0 26 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
  background-repeat: no-repeat;
  background-position: -1px 0px;
  border-radius: 50%;
  z-index: 2;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 200ms ease-in;
}

.inputGroup input:checked ~ label:before {
  transform: translate(-50%, -50%) scale3d(56, 56, 1);
  opacity: 1;
}

.inputGroup input:checked ~ label:after {
  background-color: #333;
  border-color: #333;
}

.inputGroup input {
  width: 26px;
  height: 26px;
  order: 1;
  z-index: 2;
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  visibility: hidden;
}

.contact .container {
  max-width: 1080px;
}
.contact .head_text + p {
  margin-bottom: 40px;
  text-align: center;
}
.contact_box {
  border-radius: 20px;
  border: 1px solid #012B4B;
  padding-bottom: 50px;
  overflow: hidden;
}
.contact_btn_list {
  margin-bottom: 50px;
  justify-content: center;
  align-items: center;
  gap: 20px 40px;
}
.contact_btn_list li {
  width: 45%;
  max-width: 520px;
}
.contact_btn_list .btn {
  width: 100%;
  font-size: 2.4rem;
  padding: 40px 20px;
}
.contact_btn_list .btn i {
  display: inline-block;
  margin-left: 20px;
  transform: rotate(30deg);
}
.contact_btn_list .tel_num span {
  display: inline-block;
  margin-left: 30px;
  font-size: 3.6rem;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .contact_btn_list .tel_num span {
    margin-left: 10px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .contact_btn_list .tel_num span {
    font-size: 2.4rem;
    text-decoration: underline;
  }
}
@media screen and (max-width: 767px) {
  .contact .head_text + p {
    text-align: left;
  }
  .contact_btn_list li {
    width: 100%;
    max-width: 350px;
  }
  .contact_btn_list .btn {
    font-size: 1.8rem;
    padding: 15px;
  }
}
.contact form .btn {
  width: 90%;
}

.privacy .container {
  max-width: 1080px;
}
.privacy p {
  margin-bottom: 50px;
}
.privacy dt {
  padding-left: 20px;
  margin-bottom: 20px;
  color: #012B4B;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.4rem;
  position: relative;
}
.privacy dt:before {
  content: "";
  width: 10px;
  height: 35px;
  background-color: #B99867;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.privacy dd {
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 50px;
  margin-bottom: 50px;
  font-weight: 500;
}
.privacy_address {
  width: 100%;
  max-width: 800px;
  padding: 40px 30px;
  margin-top: 40px;
  background-color: #F3FAFF;
}
@media screen and (max-width: 767px) {
  .privacy p {
    margin-bottom: 30px;
  }
  .privacy dt {
    margin-bottom: 10px;
  }
  .privacy dd {
    padding-left: 10px;
    margin-bottom: 25px;
  }
}

.sitemap .container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.sitemap ul {
  width: 48%;
  border-bottom: 1px solid rgba(68, 68, 68, 0.4);
}
.sitemap a {
  display: block;
  width: 100%;
  height: 100%;
  border-top: 1px solid rgba(68, 68, 68, 0.4);
  padding: 20px 10px;
  position: relative;
}
.sitemap a i {
  color: #0071BC;
  position: absolute;
  top: 27px;
  right: 50px;
  transition: 0.3s ease;
}
.sitemap a:hover {
  color: #0071BC;
}
.sitemap a:hover i {
  right: 40px;
}
.sitemap .sub_menu {
  width: 85%;
  border-bottom: none;
  margin: 0 0 0 auto;
}
.sitemap .sub_menu a i {
  position: inherit;
  top: 0;
  left: 0;
  margin-right: 5px;
  color: #37C2D2;
}
.sitemap .sub_menu .sub_menu a i {
  color: #86ebf6;
}
@media screen and (max-width: 767px) {
  .sitemap .container {
    flex-direction: column;
    align-items: center;
  }
  .sitemap ul {
    width: 100%;
    max-width: 500px;
  }
  .sitemap ul:nth-of-type(1) {
    border-bottom: none;
  }
  .sitemap a {
    padding: 10px 5px;
  }
  .sitemap a i {
    top: 17px;
    right: 30px;
  }
  .sitemap a:hover i {
    right: 20px;
  }
  .sitemap .sub_menu {
    width: 90%;
  }
}

.rule dl {
  width: 800px;
  margin: 0 auto;
  border-top: 1px solid #cccccc;
  display: flex;
  flex-wrap: wrap;
}
.rule dt {
  width: 30%;
  border-bottom: 1px solid #cccccc;
  padding: 20px 10px;
}
.rule dd {
  width: 70%;
  border-bottom: 1px solid #cccccc;
  padding: 20px 10px;
}
.rule .caution {
  color: #ff0000;
}
.rule .cancel_price {
  margin-top: 10px;
}
.rule .cancel_price span {
  text-decoration: underline;
}
@media screen and (max-width: 890px) {
  .rule dl {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .rule dt {
    width: 100%;
    border-bottom: none;
    padding: 10px 5px 5px;
  }
  .rule dd {
    width: 100%;
    padding: 0px 5px 10px;
  }
}

.term p {
  margin-bottom: 50px;
}
.term dl + p {
  margin-bottom: 0;
  text-align: right;
}
.term dt {
  display: inline-block;
  border-bottom: 2px solid #53A75E;
  padding-bottom: 5px;
  margin-bottom: 20px;
  font-size: 1.8rem;
}
.term dd {
  padding-left: 20px;
  margin-bottom: 50px;
}
.term ol {
  list-style-type: decimal;
  list-style-position: inside;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.term ol ol {
  padding-left: 20px;
  margin-top: 10px;
  row-gap: 0;
}
.term .cancel_price {
  margin-top: 20px;
}
.term .cancel_price span {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .term p {
    margin-bottom: 30px;
  }
  .term dt {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
  .term dd {
    padding-left: 10px;
    margin-bottom: 25px;
  }
}

.err_page h2 {
  margin-bottom: 50px;
  font-size: 6rem;
  line-height: 1.5;
}
.err_page h2 span {
  display: inline-block;
  padding-left: 20px;
  font-size: 3rem;
}
.err_page h2 p {
  font-size: 2rem;
}
.err_page .btn {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .err_page h2 {
    margin-bottom: 20px;
    font-size: 4.5rem;
    line-height: 1.5;
  }
  .err_page h2 span {
    display: block;
    padding-left: 0;
    font-size: 2rem;
  }
  .err_page h2 p {
    font-size: 1.6rem;
  }
  .err_page .btn {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .err_page.notFound h2 span {
    display: inline-block;
    padding-left: 10px;
    font-size: 2.5rem;
  }
}
.thanks {
  background-color: #53A75E;
}
.thanks .head_text {
  margin-bottom: 50px;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .thanks .head_text {
    margin-bottom: 40px;
    font-size: 2.3rem;
  }
}/*# sourceMappingURL=style.css.map */