@charset "UTF-8";
/**
  2025注 カラー管理はcss変数へ以降するが
  下記３カラーはアーカイブで使用するためsassへ残す
 */
/*$col_hover: #FFFF8E;
$col_hover2: #808080;*/
/**
	リンク下線のエフェクト
 */
/**
	リンク下線のエフェクト インラインリンク用
 */
/* ==========================================================================
   Base
   リセットcssとhtml要素の定義
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/*img, picture {
  max-width: 100%;
  display: block
}*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, button, textarea, select {
  font: inherit;
}

/* ==========================================================================

   preset.scss
   プリミティブ要素の設定

 */
*, *:before, *:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
  /*@include mq-min(1601){
    font-size: 62.5%;
  }*/
}
@media only screen and (max-width: 350px) {
  html {
    font-size: 2.8571428571vw;
  }
}
@media screen and (min-width: 351px) and (max-width: 768px) {
  html {
    font-size: 2.5641025641vw;
  }
}
@media screen and (min-width: 769px) {
  html {
    font-size: 0.625vw;
  }
}

body {
  font-size: 1.4rem;
  color: #333;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /*overscroll-behavior: none;*/
  -webkit-tap-highlight-color: rgba(0, 156, 255, 0.4);
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media print, screen and (min-width:769px) {
  body {
    font-size: 1.6rem;
  }
}

@media all and (-ms-high-contrast: none) {
  body {
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  }
}
body.is-fixed {
  position: fixed;
  height: 100%;
  overflow: hidden;
}

main {
  display: block;
}

a {
  color: #333;
  text-decoration: none;
  outline: none;
}

a:active, a:hover, a.touchstart {
  text-decoration: none;
}

@media print, screen and (min-width:769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

p, h1, h2, h3, h4, h5, h6, li, dt, dd, th, td {
  line-height: 1;
  font-feature-settings: "palt";
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media print, screen and (min-width:769px) {
  p, h1, h2, h3, h4, h5, h6, li, dt, dd, th, td {
    font-size: 1.6rem;
  }
}

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

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

img {
  vertical-align: bottom;
}

img,
picture {
  width: 100%;
  height: auto;
  display: block;
}

/* 画像のぼやけをなくす（chrome opera） */
/*@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}*/
sup {
  font-size: 0.4em;
  vertical-align: top;
}

hr {
  height: 0;
  margin: 0;
  border: none;
  border-top: 1px solid #ddd;
}

/* reset form elements */
input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  color: #333;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

.svg-assets {
  display: none;
}

/*

ruby {
  ruby rt {
    margin-bottom: -.2em;
  }
}

※ルビの空き、ブラウザ間で挙動が異なるため下記指定へ変更
*/
[data-ruby] {
  position: relative;
  display: inline-block;
  padding-top: 0.3em;
}

[data-ruby]::before {
  content: attr(data-ruby);
  position: absolute;
  top: -0.3em;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 0.4em;
  text-align: center;
}

/* ==========================================================================
    libs
   ========================================================================== */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/**
  2025注 カラー管理はcss変数へ以降するが
  下記３カラーはアーカイブで使用するためsassへ残す
 */
/*$col_hover: #FFFF8E;
$col_hover2: #808080;*/
/**
	リンク下線のエフェクト
 */
/**
	リンク下線のエフェクト インラインリンク用
 */
.slick-slide {
  outline: none;
}

/* Slider */
/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
.slick-controll {
  position: relative;
}
@media print, screen and (min-width:769px) {
  .slick-controll {
    width: 40%;
    margin: 0 0 0 auto;
  }
}

/* Arrows */
.slick-prev,
.slick-next {
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  z-index: 11 !important;
  width: 4rem;
  height: 4rem;
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
@media print, screen and (min-width:769px) {
  .slick-prev:hover,
  .slick-next:hover {
    opacity: 0.8;
  }
}

.slick-prev {
  background: url(../img/ic_prev.svg) no-repeat center center/0.8rem 1.5rem;
}

.slick-next {
  background: url(../img/ic_next.svg) no-repeat center center/0.8rem 1.5rem;
}

/* Dots */
.slick-dots {
  position: relative;
  z-index: 1;
  text-align: center;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 2rem;
  width: 2rem;
  margin-right: 1rem;
}
.slick-dots li button {
  font-size: 0;
  cursor: pointer;
  width: 0.8rem;
  height: 0.8rem;
  display: block;
  border-radius: 50%;
  background-color: #000;
}
.slick-dots li.slick-active button {
  /*background-color: #000;*/
}
@media print, screen and (min-width:769px) {
  .slick-dots li button {
    width: 0.8rem;
    height: 0.8rem;
  }
}

/**
    サークルプログレス付きdots
 */
.slick-dots .custom-paging-item.--progress {
  cursor: pointer;
}
.slick-dots .custom-paging-item.--progress .progress-circle {
  width: 2rem;
  height: 2rem;
}
.slick-dots .custom-paging-item.--progress::after {
  content: "";
  display: block;
  position: absolute;
  left: 0.55rem;
  top: 0.55rem;
  display: block;
  border-radius: 100%;
  width: 0.9rem;
  height: 0.9rem;
  background-color: #000;
}

.progress-circle__fg {
  stroke-dasharray: 62.8; /* 2 * π * r, where r = 28 */
  stroke-dashoffset: 62.8;
  transition: stroke-dashoffset 0.1s linear;
}

/* プログレスサークルのアニメーション */
@keyframes progress {
  to {
    stroke-dashoffset: 0;
  }
}
/* 非アクティブ時はプログレスサークルを非表示 */
.slick-dots li:not(.current) .progress-circle__fg {
  display: none;
}

@keyframes modal-video {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-video-inner {
  from {
    transform: translate(0, 100px);
  }
  to {
    transform: translate(0, 0);
  }
}
.modal-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000000;
  cursor: pointer;
  opacity: 1;
  animation-timing-function: ease-out;
  animation-duration: 0.3s;
  animation-name: modal-video;
  transition: opacity 0.3s ease-out;
}

.modal-video-close {
  opacity: 0;
}
.modal-video-close .modal-video-movie-wrap {
  transform: translate(0, 100px);
}

.modal-video-body {
  max-width: 960px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.modal-video-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
@media (orientation: landscape) {
  .modal-video-inner {
    padding: 10px 60px;
    box-sizing: border-box;
  }
}

.modal-video-movie-wrap {
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
  background-color: #333;
  animation-timing-function: ease-out;
  animation-duration: 0.3s;
  animation-name: modal-video-inner;
  transform: translate(0, 0);
  transition: transform 0.3s ease-out;
}
.modal-video-movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-video-close-btn {
  position: absolute;
  z-index: 2;
  top: -45px;
  right: 0;
  display: inline-block;
  width: 35px;
  height: 35px;
  overflow: hidden;
  border: none;
  background: transparent;
}
@media (orientation: landscape) {
  .modal-video-close-btn {
    top: 0;
    right: -45px;
  }
}
.modal-video-close-btn:before {
  transform: rotate(45deg);
}
.modal-video-close-btn:after {
  transform: rotate(-45deg);
}
.modal-video-close-btn:before, .modal-video-close-btn:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #fff;
  border-radius: 5px;
  margin-top: -6px;
}

/* ==========================================================================
   Layout
   ========================================================================== */
/* --------------------------------------------------------------------
  #基本幅レイアウト用wrapper
 */
.l-width-std {
  margin-left: 3rem;
  margin-right: 3rem;
}
@media print, screen and (min-width:769px) {
  .l-width-std {
    margin-left: 5.2rem;
    margin-right: 5.2rem;
    max-width: 160rem;
  }
}
@media screen and (min-width: 1600px) {
  .l-width-std {
    margin-right: auto;
    margin-left: auto;
    width: calc(160rem - 10.4rem);
    padding-left: 5.2rem;
    padding-right: 5.2rem;
  }
}

.l-width-contents {
  margin-left: 3rem;
  margin-right: 3rem;
}
@media print, screen and (min-width:769px) {
  .l-width-contents {
    margin-left: auto;
    margin-right: auto;
    max-width: 114.8rem;
  }
}

.l-width-wide {
  margin-left: 3rem;
  margin-right: 3rem;
}
@media print, screen and (min-width:769px) {
  .l-width-wide {
    margin-left: 5.2rem;
    margin-right: 5.2rem;
  }
}

.l-width-compact {
  margin-left: 3rem;
  margin-right: 3rem;
}
@media print, screen and (min-width:769px) {
  .l-width-compact {
    margin-left: auto;
    margin-right: auto;
    width: 88rem;
  }
}

/* --------------------------------------------------------------------
  #ページ全体のwrapper
 */
.l-page-wrapper {
  position: relative;
}

/* --------------------------------------------------------------------
  #メインエリアwrapper
 */
.l-main {
  position: relative;
  overflow: hidden;
}
.l-main.--top {
  padding-bottom: 4rem;
}
@media print, screen and (min-width:769px) {
  .l-main.--top {
    padding-bottom: 12rem;
  }
}

/* --------------------------------------------------------------------
  #セカンドユーティリティページレイアウト
 */
/* --------------------------------------------------------------------
  #汎用セクションフォーマット
 */
.l-section {
  position: relative;
  z-index: 3;
  margin-bottom: 6rem;
}
@media print, screen and (min-width:769px) {
  .l-section {
    margin-bottom: 10rem;
  }
}

/* ==========================================================================
   Module
   ========================================================================== */
/* ====================================================================

#コンテンツヘッダ

*/
/* --------------------------------------------------------------------
  #ヘッダ
 */
.header {
  z-index: 110;
  top: 0;
  left: 0;
  width: 100%;
  position: fixed;
  transition: transform 0.3s;
}
/**
  SP時の固定ヘッダ要素
 */
.header-wrap {
  position: relative;
  background: #fff;
  width: 100%;
  z-index: 110;
}

/**
  メニュートリガーボタン
 */
.header__trigger {
  position: fixed;
  z-index: 111;
  cursor: pointer;
  right: 0;
  top: 0;
  width: 6rem;
  height: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0;
  background-color: rgba(255, 255, 255, 0.5);
}
.header__trigger .line1,
.header__trigger .line2,
.header__trigger .line3 {
  display: block;
  width: 2.2rem;
  height: 1px;
  background-color: #333;
  transform-origin: 50% 50%;
  transition-duration: 0.2s;
}
.header__trigger .line1 {
  transform: translate3d(0, -0.6rem, 0);
}
.header__trigger .line2 {
  transform: translate3d(0, 0, 0);
}
.header__trigger .line3 {
  transform: translate3d(0, 0.6rem, 0);
}
.header__trigger.is-active .line1,
.header__trigger.is-active .line2,
.header__trigger.is-active .line3 {
  transition-duration: 0.4s;
}
.header__trigger.is-active .line1 {
  transform: translate3d(0, 1px, 0) rotate(45deg);
}
.header__trigger.is-active .line2 {
  transform: scale3d(0, 1, 1);
}
.header__trigger.is-active .line3 {
  transform: translate3d(0, 0, 0) rotate(-45deg);
}
@media print, screen and (min-width:769px) {
  .header__trigger {
    right: 2rem;
    top: 2rem;
    width: 8rem;
    height: 8rem;
  }
  .header__trigger .line1,
  .header__trigger .line2,
  .header__trigger .line3 {
    width: 4rem;
  }
  .header__trigger .line1 {
    transform: translate3d(0, -1rem, 0);
  }
  .header__trigger .line2 {
    transform: translate3d(0, 0, 0);
  }
  .header__trigger .line3 {
    transform: translate3d(0, 1rem, 0);
  }
}

/**
  ドロワーコンテナ（SP時メニューのボディ）
 */
.header-menu {
  display: none;
  position: fixed;
  z-index: 108;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
}
.header-menu.is-active {
  display: block;
}
.header-menu.is-beforeEnter {
  display: block;
  opacity: 0;
}
.header-menu.is-enter {
  display: block;
  opacity: 1;
  transition: opacity 0.5s;
}
.header-menu.is-fadeOut {
  display: block;
  opacity: 0;
  transition: opacity 0.5s;
}

.header-menu-inner {
  position: relative;
  z-index: 111;
  background-color: #fff;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .header-menu-inner {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    height: 100vh;
    height: 100dvh;
  }
}
@media print, screen and (min-width:769px) {
  .header-menu-inner {
    height: 100%;
    display: flex;
    align-items: center;
  }
}

.header-menu-content {
  position: relative;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .header-menu-content {
    padding: 5.5rem 5.5rem 8rem;
  }
}
@media print, screen and (min-width:769px) {
  .header-menu-content {
    width: 70%;
    height: 100%;
    max-height: 60rem;
    margin-left: 50%;
  }
}

.header__pict {
  display: block;
}
@media print, screen and (min-width:769px) {
  .header__pict {
    width: 30%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }
  .header__pict picture, .header__pict img {
    width: 100% !important;
    height: 100% !important;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media print, screen and (min-width:769px) {
  .header-container {
    width: 21rem;
  }
}

.header__gnav > li span {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
.header__gnav > li small {
  display: block;
  font-size: 1.1rem;
  color: var(--col_key);
  margin-top: 1.2rem;
}
.header__gnav > li:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .header__gnav {
    margin-bottom: 4rem;
  }
  .header__gnav > li {
    font-size: 2.1rem;
    margin-bottom: 5vh;
  }
}
@media print, screen and (min-width:769px) {
  .header__gnav {
    width: 50%;
    height: calc(100% - 10rem);
    margin-left: 5.5rem;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .header__gnav > li span {
    position: relative;
  }
  .header__gnav > li span::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #404040;
    left: 0;
    bottom: 0;
    transform: scale3d(0, 1, 1);
    transform-origin: 100% 0;
    transition: transform 0.35s;
  }
  .header__gnav > li span:hover::before {
    transform-origin: 0 0;
    transform: scale3d(1, 1, 1);
  }
  .header__gnav > li {
    font-size: 2.5rem;
  }
  .header__gnav > li small {
    font-size: 1.3rem;
    margin-top: 2rem;
    font-family: initial;
  }
}

/*.header-gnav__item {
  margin-bottom: 2rem;
  @include font-min;
  >a,>span {
    color: #000;
    font-size: 2.6rem;
  }
  small {
    display: block;
    font-size: .4em;
    margin-top: 1rem;
  }
  @include mq-pc {
    margin-bottom: 3rem;
    >a,>span {
      font-size: 4rem;
    }
  }
}*/
.header__logo {
  display: none;
}
@media print, screen and (min-width:769px) {
  .header__logo {
    display: block;
    position: absolute;
    width: 11.6rem;
    left: -16rem;
  }
}

.header__util {
  margin-bottom: 5vh;
}
.header__util > li:not(:last-child) {
  margin-bottom: 4vh;
}
@media print, screen and (min-width:769px) {
  .header__util {
    position: absolute;
    left: 33rem;
    bottom: 10rem;
    margin-bottom: 0;
  }
  .header__util > li:not(:last-child) {
    font-size: 1.6rem;
    margin-bottom: 4rem;
  }
  .header__util > li:not(:last-child) span {
    position: relative;
    display: inline-block;
    padding-bottom: 0.8rem;
  }
  .header__util > li:not(:last-child) span::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #404040;
    left: 0;
    bottom: 0;
    transform: scale3d(0, 1, 1);
    transform-origin: 100% 0;
    transition: transform 0.35s;
  }
  .header__util > li:not(:last-child) span:hover::before {
    transform-origin: 0 0;
    transform: scale3d(1, 1, 1);
  }
}

.header__sns {
  display: flex;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .header__sns > li {
    width: 3.6rem;
    margin-right: 2.5rem;
  }
}
@media print, screen and (min-width:769px) {
  .header__sns {
    position: absolute;
    left: 5.5rem;
    bottom: 0;
  }
  .header__sns > li {
    width: 4rem;
    margin-right: 2.8rem;
  }
}

/* ====================================================================

  #フッタ

 */
.footer {
  background: url(../img/footer_bg_sp.jpg) no-repeat center bottom/cover;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .footer {
    padding: 5rem 3rem;
    height: 80rem;
  }
}
@media print, screen and (min-width:769px) {
  .footer {
    background-image: url(../img/footer_bg.jpg);
    height: 125rem;
    padding-top: 10rem;
  }
}

.footer-inner {
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width:769px) {
  .footer-inner {
    width: 81rem;
  }
}

.footer-content {
  position: relative;
  color: #fff;
}
@media print, screen and (min-width:769px) {
  .footer-content {
    padding: 5rem 0 0 24rem;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .footer__logo {
    width: 6.8rem;
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media print, screen and (min-width:769px) {
  .footer__logo {
    position: absolute;
    width: 13.5rem;
    top: 0;
    left: 3rem;
  }
}

.footer__banner {
  margin-bottom: 4rem;
}
@media print, screen and (min-width:769px) {
  .footer__banner {
    margin-bottom: 9rem;
    transition: 0.35s opacity;
  }
  .footer__banner:hover {
    opacity: 0.7;
  }
}

.footer-ci {
  position: relative;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .footer-ci {
    margin-bottom: 3vw;
  }
}
@media print, screen and (min-width:769px) {
  .footer-ci {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .footer-ci__logo {
    width: 10.8rem;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media print, screen and (min-width:769px) {
  .footer-ci__logo {
    width: 13.5rem;
    margin-right: 3rem;
  }
  .footer-ci__logo img {
    width: 13.5rem;
  }
}

.footer-ci__name {
  letter-spacing: 0.025em;
  font-weight: 500;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .footer-ci__name {
    text-align: center;
    margin-bottom: 0.5rem;
  }
}
@media print, screen and (min-width:769px) {
  .footer-ci__name {
    font-size: 2rem;
    margin-right: 2.5rem;
    margin-bottom: 0.5em;
  }
}

.footer-ci__url {
  letter-spacing: 0.025em;
}
.footer-ci__url > a {
  color: #fff;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .footer-ci__url {
    text-align: center;
  }
}
@media print, screen and (min-width:769px) {
  .footer-ci__url {
    font-size: 1.8rem;
  }
}

.footer-ci__summary {
  line-height: 1.5;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .footer-ci__summary {
    text-align: left;
    margin-bottom: 1rem;
  }
}
@media print, screen and (min-width:769px) {
  .footer-ci__summary {
    margin-bottom: 2rem;
  }
}

.footer__copyright {
  display: block;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .footer__copyright {
    font-size: 1.1rem;
  }
}
@media print, screen and (min-width:769px) {
  .footer__copyright {
    text-align: left;
  }
}

/* ====================================================================

  #見出しモジュール

 */
/* --------------------------------------------------------------------
  # ページ見出し
 */
.heading1 {
  text-align: center;
  margin-bottom: 4rem;
}
.heading1 > span {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 500;
  display: block;
  font-size: 2.8rem;
}
.heading1 > small {
  display: block;
  margin-top: 1.6rem;
  font-size: 1.2rem;
}
@media print, screen and (min-width:769px) {
  .heading1 {
    margin-bottom: 6rem;
  }
  .heading1 > span {
    font-size: 3.6rem;
  }
  .heading1 > small {
    margin-top: 2rem;
    font-size: 1.6rem;
  }
}

.heading2 {
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.8rem;
}
@media print, screen and (min-width:769px) {
  .heading2 {
    font-size: 2.4rem;
  }
}

/* ====================================================================

  #ボタンモジュール
  style設定クラスは > .btn-inner を内包する
  ex)
  <div class="some-btn">
  <p class="btn-style-a">
    <a class="btn-inner" href="hoge">ボタン</a>
  </p>
  </div>

 */
.btn-inner {
  position: relative;
  width: 100%;
  display: block;
  cursor: pointer;
}

/* --------------------------------------------------------------------
  #ボタン A - 右矢印 ▶ 白背景
 */
.btn-a .btn-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  border-radius: 5rem;
  background-color: #fff;
  font-size: 1.2rem;
  border: 1px solid #e6e6e6;
  padding-left: 2rem;
  padding-right: 1rem;
}
.btn-a .btn-inner .icon-arrow {
  transition: 0.35s;
}
@media print, screen and (min-width:769px) {
  .btn-a .btn-inner {
    height: 5.5rem;
    padding-left: 3rem;
    font-size: 1.5rem;
    padding-right: 1.8rem;
    transition: background-color 0.35s, color 0.35s, border 0.35s;
  }
  .btn-a .btn-inner:hover {
    background-color: #333;
    color: #fff;
    border: 1px solid #333;
  }
  .btn-a .btn-inner:hover .icon-arrow {
    stroke: #fff;
  }
}

.btn-a .icon-arrow {
  width: 0.4rem;
  content: "";
  display: block;
  position: absolute;
  right: 1rem;
}
@media print, screen and (min-width:769px) {
  .btn-a .icon-arrow {
    right: 2.2rem;
    width: 0.6rem;
  }
}

.btn-a .icon-mappin {
  position: absolute;
  width: 0.9rem;
  fill: #000;
  right: 1.5rem;
  content: "";
  display: block;
  position: absolute;
}
@media print, screen and (min-width:769px) {
  .btn-a .icon-mappin {
    right: 2rem;
    width: 1.2rem;
  }
}

.btn-a.--black .btn-inner {
  background-color: #404040;
  border: 1px solid #404040;
  color: #fff;
}
.btn-a.--black .btn-inner .icon-arrow {
  stroke: #fff;
}
@media print, screen and (min-width:769px) {
  .btn-a.--black .btn-inner:hover {
    background-color: #fff;
    color: #404040;
    border: 1px solid #e6e6e6;
  }
  .btn-a.--black .btn-inner:hover .icon-arrow {
    stroke: #404040;
  }
}

.btn-a.--black2 .btn-inner {
  position: relative;
  background-color: #404040;
  border: 1px solid #404040;
  color: #fff;
}
.btn-a.--black2 .btn-inner::after {
  content: "";
  display: block;
  position: absolute;
  right: 2rem;
  top: calc(50% - 0.4rem);
  width: 0.4rem;
  height: 0.8rem;
  background-color: #fff;
  -webkit-mask: url(../img/icon_arrow_f.svg) no-repeat center center/contain;
          mask: url(../img/icon_arrow_f.svg) no-repeat center center/contain;
  transition: background-color 0.35s;
}
@media print, screen and (min-width:769px) {
  .btn-a.--black2 .btn-inner::after {
    width: 0.6rem;
    height: 1.2rem;
    background-color: #fff;
    top: calc(50% - 0.6rem);
    -webkit-mask: url(../img/icon_arrow_f.svg) no-repeat center center/contain;
            mask: url(../img/icon_arrow_f.svg) no-repeat center center/contain;
  }
  .btn-a.--black2 .btn-inner:hover {
    background-color: #fff;
    color: #404040;
    border: 1px solid #e6e6e6;
  }
  .btn-a.--black2 .btn-inner:hover::after {
    background-color: #000;
  }
}

/* --------------------------------------------------------------------
  # タブ
 */
/*
.tab-wrap {
  padding: 20px 9px 6px;
  background-color: #f8f8fb;
}
*/
/* --------------------------------------------------------------------
  # タブボタン
 */
/*.tab-btns {
  display: flex;
}
.tab-btn {
  flex: 1 1 0%;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #0b0b0b;
  margin-right: 5px;
  cursor: pointer;
  background-color: #fff;
  font-size: 1.6rem;
  ;
  &:last-child {
    margin-right: 0;
  }
  &.is-current {
    border-top: none;
    border-bottom: 1px solid #0b0b0b;
  }
  @include mq-sp {
    font-size: 1.4rem;
    height: 50px;
  }
}*/
/* --------------------------------------------------------------------
  # タブボタン　下レイアウト
 */
.tab-wrap--bottom {
  padding: 6px 9px 20px;
}
.tab-wrap--bottom .tab-btn.is-current {
  border-bottom: none;
  border-top: 1px solid #0b0b0b;
}

.tab-btns--bottom .tab-btn {
  border-bottom: 1px solid #0b0b0b;
  border-top: none;
}

/* --------------------------------------------------------------------
  # タブボタン　カラーバリエーション
 */
.tab-btn--blue {
  background-color: #d1e6fc;
}

.tab-btn--beige {
  background-color: #f6eed3;
}

/* --------------------------------------------------------------------
  # タブコンテンツ
 */
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .prg-tab-content {
    display: none;
  }
  .prg-tab-content.is-current {
    display: block;
  }
}

/* ==========================================================================
   Animation
   ========================================================================== */
.ef-io,
.ef-io-in {
  pointer-events: none;
}

.tr-slideup {
  transition: transform 1.5s, opacity 1.5s;
}
.tr-slideup.ef-io, .tr-slideup.ef-io-in {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
}
@media print, screen and (min-width:769px) {
  .tr-slideup.ef-io, .tr-slideup.ef-io-in {
    transform: translate3d(0, 60px, 0);
  }
}

.tr-fade-in {
  transition: transform 1.5s, opacity 1.5s;
}
.tr-fade-in.ef-io, .tr-fade-in.ef-io-in {
  opacity: 0;
}
.tr-spinin {
  --delay: .15s;
}
.tr-spinin > span {
  transition: transform 2s, opacity 1s;
  display: inline-block;
}
.tr-spinin > span:nth-of-type(2) {
  transition-delay: calc(var(--delay) * 2);
}
.tr-spinin > span:nth-of-type(3) {
  transition-delay: calc(var(--delay) * 3);
}
.tr-spinin > span:nth-of-type(4) {
  transition-delay: calc(var(--delay) * 4);
}
.tr-spinin > span:nth-of-type(5) {
  transition-delay: calc(var(--delay) * 5);
}
.tr-spinin > span:nth-of-type(6) {
  transition-delay: calc(var(--delay) * 6);
}
.tr-spinin > span:nth-of-type(7) {
  transition-delay: calc(var(--delay) * 7);
}
.tr-spinin > span:nth-of-type(8) {
  transition-delay: calc(var(--delay) * 8);
}
.tr-spinin.ef-io > span, .tr-spinin.is-intro > span {
  transform: scale3d(0, 1.05, 1) translate3d(-2em, 1em, 0);
  opacity: 0;
}

/*
.tr-mask-lr {
  transition: mask-position $duration_mask_in;
  @include mq-sp {
    transition: mask-position $duration_mask_in_sp;
  }
  transition-timing-function: $ease1;
  mask-image: linear-gradient(90deg, transparent 50%, red 50%);
  mask-size: 200% 100%;
  mask-position: -100% 0;
  &.ef-io,
  &.ef-io-inner {
    mask-position: 0 0;
  }
}*/
/* ==========================================================================
   project
   ========================================================================== */
.pagetop {
  position: fixed;
  z-index: 100;
  background-color: #404040;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  right: 1rem;
  bottom: calc(env(safe-area-inset-bottom) + 1rem);
  font-size: 0;
  transition: transform 0.8s, opacity 0.35s;
}
.pagetop.is-hidden {
  transform: translate3d(200%, 0, 0);
}
.pagetop::before {
  content: "";
  display: block;
  position: absolute;
  width: 0.9rem;
  height: 0.6rem;
  z-index: 101;
  aspect-ratio: c1/0.8660254038;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background-color: #fff;
  left: calc(50% - 0.45rem);
  top: calc(50% - 0.4rem);
}
@media print, screen and (min-width:769px) {
  .pagetop {
    width: 7rem;
    height: 7rem;
  }
  .pagetop::before {
    width: 1.8rem;
    height: 1.2rem;
    left: calc(50% - 0.9rem);
    top: calc(50% - 0.8rem);
  }
  .pagetop:hover {
    opacity: 0.7;
  }
}

.page-top {
  padding-bottom: 8rem;
  overflow: hidden;
}
@media print, screen and (min-width:769px) {
  .page-top {
    padding-bottom: 23rem;
  }
}

.top-mv {
  position: relative;
  z-index: 5;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-mv {
    padding-top: 20.5vw;
  }
}

.top-mv__logo {
  width: 8.4rem;
  position: absolute;
  z-index: 19;
  top: 1.8rem;
  left: 1.8rem;
}
@media print, screen and (min-width:769px) {
  .top-mv__logo {
    width: 12rem;
    left: 7.2rem;
    top: 7.2rem;
  }
}

.top-mv__pict {
  display: block;
  width: 92.3vw;
  margin: 0 0 0 auto;
}
@media print, screen and (min-width:769px) {
  .top-mv__pict {
    width: 83%;
    margin: 0 0 0 auto;
  }
}

.top-mv__copy {
  font-feature-settings: "pkna";
  writing-mode: vertical-rl;
  text-orientation: mixed;
  -ms-text-combine-horizontal: all;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  position: absolute;
  line-height: 1.3;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-mv__copy {
    right: 3rem;
    top: 28.7vw;
    height: 25rem;
  }
}
.top-mv__copy > span {
  display: block;
  transform-origin: 100% 0;
}
.top-mv__copy b {
  font-weight: 400;
  white-space: nowrap;
  color: #fff;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  background-color: var(--col_key);
  letter-spacing: 0.26em;
  font-size: 1.6rem;
  padding: 1.2rem 0.3rem 0.6rem;
}
@media print, screen and (min-width:769px) {
  .top-mv__copy {
    top: 15.7rem;
    right: 21.7rem;
  }
  .top-mv__copy b {
    font-size: 2.6rem;
    padding: 1.2rem 0.3rem 0.6rem;
  }
}

/**
  animation
  便宜上 top-introの要素もここで設定している
 */
.top-mv__logo,
.top-mv__pict,
.top-intro__shape.--s01,
.top-intro__shape.--s02,
.top-intro__shape.--s09,
.top-intro__pict05 {
  transition: opacity 2s, transform 2s;
}
.top-mv__logo.is-intro,
.top-mv__pict.is-intro,
.top-intro__shape.--s01.is-intro,
.top-intro__shape.--s02.is-intro,
.top-intro__shape.--s09.is-intro,
.top-intro__pict05.is-intro {
  opacity: 0;
}

.top-mv__logo.is-intro {
  transform: translate3d(0, 20%, 0);
}

.top-mv__copy {
  /*  >span {
      transition: transform 2s, opacity 1s;
    }
    &.is-intro {
      >span {
        transform: scale3d(0,1.05,1) translate3d(-2em,1em,0);
        opacity: 0;
      }
    }*/
}

.top-heading {
  text-align: center;
}
.top-heading > em {
  font-size: 2.8rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.14em;
}
.top-heading > small {
  display: block;
  color: var(--col_key);
  font-weight: normal;
  letter-spacing: 0.14em;
  margin-top: 1rem;
}
@media print, screen and (min-width:769px) {
  .top-heading > em {
    font-size: 4.6rem;
  }
  .top-heading > small {
    font-size: 1.6rem;
    margin-top: 2rem;
  }
}

.top-heading.--gallery {
  margin-top: -7.4rem;
  margin-bottom: 4rem;
}
@media print, screen and (min-width:769px) {
  .top-heading.--gallery {
    margin-top: -13rem;
    margin-bottom: 8rem;
  }
}

.top-heading.--location {
  margin-top: -9.3rem;
  margin-bottom: 3rem;
}
@media print, screen and (min-width:769px) {
  .top-heading.--location {
    margin-top: -16rem;
    margin-bottom: 8rem;
  }
}

.top-heading.--access {
  text-align: center;
  margin-bottom: 3rem;
}
@media print, screen and (min-width:769px) {
  .top-heading.--access {
    text-align: left;
    margin-bottom: 6.5rem;
  }
}

/**
  heading2
 */
.top-heading2 {
  font-size: 2rem;
  line-height: 1.2;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e6e6e6;
}
@media print, screen and (min-width:769px) {
  .top-heading2 {
    font-size: 3rem;
    padding-bottom: 1.4rem;
  }
}

.top-intro {
  position: relative;
  height: 538vw;
  margin-bottom: 10vw;
}
@media print, screen and (min-width:769px) {
  .top-intro {
    height: 170vw;
  }
}

.top-intro__pict01 {
  position: absolute;
  z-index: 3;
  width: 32rem;
  top: 38.6rem;
  left: 0;
}
@media print, screen and (min-width:769px) {
  .top-intro__pict01 {
    width: 64rem;
    top: 25.5rem;
  }
}

.top-intro__pict02 {
  position: absolute;
  z-index: 3;
  width: 92.3vw;
  top: 92rem;
  right: 0;
}
@media print, screen and (min-width:769px) {
  .top-intro__pict02 {
    width: 83.4rem;
    top: 70.7rem;
    right: 0;
  }
}

.top-intro__pict03 {
  position: absolute;
  z-index: 3;
  width: 13.6rem;
  left: 6.9rem;
  top: 119.3rem;
}
@media print, screen and (min-width:769px) {
  .top-intro__pict03 {
    width: 27.2rem;
    top: 120rem;
    left: 22rem;
  }
}

.top-intro__pict04 {
  position: absolute;
  z-index: 3;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-intro__pict04 {
    right: 8vw;
    width: 84vw;
    top: 148.4rem;
  }
}
@media print, screen and (min-width:769px) {
  .top-intro__pict04 {
    width: 120rem;
    top: 163.4rem;
    left: calc(50% - 60rem);
  }
}

.top-intro__pict05 {
  position: absolute;
  z-index: 5;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-intro__pict05 {
    width: 5.1rem;
    right: 0;
    top: 20rem;
  }
}
@media print, screen and (min-width:769px) {
  .top-intro__pict05 {
    width: 15.0rem;
    top: -30.5rem;
    left: 0rem;
  }
}

/**
  コピー
 */
.top-intro__copy01,
.top-intro__copy02,
.top-intro__copy03 {
  position: absolute;
  letter-spacing: 0.1em;
  z-index: 10;
  line-height: 2.4;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "pkna";
  writing-mode: vertical-rl;
  text-orientation: mixed;
  -ms-text-combine-horizontal: all;
}
.top-intro__copy01 > span,
.top-intro__copy02 > span,
.top-intro__copy03 > span {
  display: inline-block;
  transform-origin: 100% 0;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-intro__copy01,
  .top-intro__copy02,
  .top-intro__copy03 {
    font-size: 1.5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
  }
}
@media print, screen and (min-width:769px) {
  .top-intro__copy01,
  .top-intro__copy02,
  .top-intro__copy03 {
    font-size: 2rem;
  }
}

.top-intro__copy01 {
  top: 7rem;
}
@media print, screen and (min-width:769px) {
  .top-intro__copy01 {
    left: calc(50% + 0rem);
    top: 30rem;
  }
}

.top-intro__copy02 {
  top: 65.9rem;
}
@media print, screen and (min-width:769px) {
  .top-intro__copy02 {
    right: calc(50% + 33rem);
    top: 80rem;
  }
}

.top-intro__copy03 {
  z-index: 5;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-intro__copy03 {
    top: 138.9rem;
    font-size: 1.9rem;
  }
}
@media print, screen and (min-width:769px) {
  .top-intro__copy03 {
    font-size: 2.8rem;
    left: calc(50% - 6.7rem);
    top: 152rem;
  }
}

/**
  人物
 */
.top-intro__fig01 {
  position: absolute;
  width: 5.6rem;
  top: 22.3rem;
  z-index: 5;
  right: 10rem;
}
@media print, screen and (min-width:769px) {
  .top-intro__fig01 {
    width: 10.3rem;
    top: 45.6rem;
    right: 30rem;
  }
}

.top-intro__fig02 {
  position: absolute;
  z-index: 3;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-intro__fig02 {
    width: 6.6rem;
    top: 172rem;
    left: 0.5rem;
  }
}
@media print, screen and (min-width:769px) {
  .top-intro__fig02 {
    top: 199rem;
    left: 12rem;
    width: 11.7rem;
  }
}

/**
  浮いているシェイプ
 */
.top-intro__shape {
  position: absolute;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-intro__shape.--s01 {
    width: 1.6rem;
    right: 5rem;
    top: 15rem;
  }
}
@media print, screen and (min-width:769px) {
  .top-intro__shape.--s01 {
    width: 7rem;
    top: -34rem;
    left: 12rem;
  }
}

.top-intro__shape.--s02 {
  z-index: 3;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-intro__shape.--s02 {
    width: 2.3rem;
    left: 13rem;
    top: 37.3rem;
  }
}
@media print, screen and (min-width:769px) {
  .top-intro__shape.--s02 {
    width: 4.5rem;
    z-index: 5;
    top: 23rem;
    left: 62rem;
  }
}

.top-intro__shape.--s03 {
  z-index: 5;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-intro__shape.--s03 {
    width: 3.5rem;
    left: 18.5rem;
    top: 82rem;
  }
}
@media print, screen and (min-width:769px) {
  .top-intro__shape.--s03 {
    width: 3.2rem;
    top: 43rem;
    right: 20rem;
  }
}

.top-intro__shape.--s04 {
  z-index: 5;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-intro__shape.--s04 {
    width: 1.6rem;
    left: 4rem;
    top: 87rem;
  }
}
@media print, screen and (min-width:769px) {
  .top-intro__shape.--s04 {
    width: 4.5rem;
    top: 117rem;
    right: 17rem;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-intro__shape.--s05 {
    width: 1.6rem;
    right: 4rem;
    top: 120rem;
  }
}
@media print, screen and (min-width:769px) {
  .top-intro__shape.--s05 {
    width: 10rem;
    top: 115rem;
    left: 17rem;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-intro__shape.--s06 {
    width: 5rem;
    right: 7rem;
    top: 126rem;
  }
}
@media print, screen and (min-width:769px) {
  .top-intro__shape.--s06 {
    width: 3.2rem;
    top: 155rem;
    left: 30rem;
  }
}

.top-intro__shape.--s07 {
  z-index: 2;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-intro__shape.--s07 {
    width: 5rem;
    left: 3vw;
    top: 146rem;
  }
}
@media print, screen and (min-width:769px) {
  .top-intro__shape.--s07 {
    width: 9rem;
    top: 158rem;
    right: 15rem;
  }
}

.top-intro__shape.--s08 {
  z-index: 1;
  background-color: var(--col_float_block);
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-intro__shape.--s08 {
    width: 93.2vw;
    height: 28.8rem;
    left: 0;
    top: 54.9rem;
  }
}
@media print, screen and (min-width:769px) {
  .top-intro__shape.--s08 {
    width: 68rem;
    height: 44rem;
    top: 62rem;
    left: 0;
  }
}

.top-intro__shape.--s09 {
  z-index: 1;
  background-color: var(--col_float_block);
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-intro__shape.--s09 {
    width: 7.5rem;
    height: 7.5rem;
    left: 0;
    top: -4rem;
  }
}
@media print, screen and (min-width:769px) {
  .top-intro__shape.--s09 {
    width: 15rem;
    height: 15rem;
    top: -8rem;
    left: 21rem;
  }
}

.top-intro__shape.--s10 {
  z-index: 1;
  background-color: var(--col_float_block);
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-intro__shape.--s10 {
    width: 7.5rem;
    height: 7.5rem;
    left: 0;
    top: -4rem;
  }
}
@media print, screen and (min-width:769px) {
  .top-intro__shape.--s10 {
    width: 31.4rem;
    height: 27rem;
    top: auto;
    bottom: 7rem;
    left: auto;
    right: 0;
  }
}

/**
  背景ライン
 */
.top-intro__line {
  pointer-events: none;
  position: absolute;
  z-index: 2;
  top: -12rem;
  width: 88%;
  left: 0;
}
.top-intro__line svg {
  width: 100%;
  height: 100%;
}
@media print, screen and (min-width:769px) {
  .top-intro__line {
    top: -12rem;
    width: 90%;
    left: 0;
  }
  .top-intro__line svg {
    width: 100%;
    height: 100%;
  }
}

#scroll-line {
  stroke-dasharray: 5805; /* ラインの長さに応じて適切な値に調整 */
  stroke-dashoffset: 5805; /* 初期状態では全て非表示に */
}

#scroll-line-sp {
  stroke-dasharray: 5634; /* ラインの長さに応じて適切な値に調整 */
  stroke-dashoffset: 5634; /* 初期状態では全て非表示に */
}

.top-gallery {
  padding-top: 6rem;
}
@media print, screen and (min-width:769px) {
  .top-gallery {
    padding-top: 12rem;
  }
}

.top-gallery-inner {
  background-color: var(--col_key_light);
  position: relative;
  padding: 6rem 0;
}
@media print, screen and (min-width:769px) {
  .top-gallery-inner {
    padding: 10rem 0;
  }
  .top-gallery-inner::after {
    content: "";
    display: block;
    position: absolute;
    width: 10rem;
    height: 100%;
    right: 0;
    top: 0;
    background-color: #fff;
  }
}

.top-gallery-container {
  margin-left: 3rem;
  margin-right: 3rem;
}
@media print, screen and (min-width:769px) {
  .top-gallery-container {
    display: flex;
    width: 120rem;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
  }
}

@media print, screen and (min-width:769px) {
  .top-gallery-container.--centering {
    justify-content: center;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-gallery-block {
    margin-bottom: 5rem;
  }
  .top-gallery-block:last-of-type {
    margin-bottom: 0;
  }
}
@media print, screen and (min-width:769px) {
  .top-gallery-block {
    width: calc(50% - 3rem);
  }
}

@media print, screen and (min-width:769px) {
  .top-gallery-block.--wide {
    width: 100rem;
  }
}

.top-gallery__heading {
  font-size: 2rem;
  border-bottom: 1px solid var(--col_key);
  padding-bottom: 1.2rem;
  color: var(--col_key);
  margin-bottom: 3rem;
}
@media print, screen and (min-width:769px) {
  .top-gallery__heading {
    font-size: 3rem;
    margin-bottom: 5rem;
  }
}

.top-gallery__poster {
  position: relative;
  cursor: pointer;
}
.top-gallery__poster::before, .top-gallery__poster::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 3;
}
.top-gallery__poster::before {
  width: 5rem;
  height: 5rem;
  border: 1px solid #fff;
  border-radius: 50%;
  left: calc(50% - 2.5rem);
  top: calc(50% - 2.5rem);
}
.top-gallery__poster::after {
  width: 1rem;
  aspect-ratio: 0.6427876097/1;
  clip-path: polygon(0% 100%, 100% 50%, 0 0);
  background-color: #fff;
  left: calc(50% - 0.3rem);
  top: calc(50% - 0.8rem);
}
.top-gallery__poster.is-no-play {
  cursor: default;
  pointer-events: none;
}
.top-gallery__poster.is-no-play::before, .top-gallery__poster.is-no-play::after {
  display: none;
}
@media print, screen and (min-width:769px) {
  .top-gallery__poster::before {
    border: 2px solid #fff;
    width: 8.4rem;
    height: 8.4rem;
    transition: transform 0.35s;
    top: calc(50% - 4.2rem);
  }
  .top-gallery__poster::after {
    width: 1.8rem;
    left: calc(50% + 1.1rem);
    top: calc(50% - 1.4rem);
    transition: transform 0.35s;
  }
  .top-gallery__poster:hover {
    transition: 0.35s opacity;
  }
  .top-gallery__poster:hover:hover {
    opacity: 0.7;
  }
  .top-gallery__poster:hover::before, .top-gallery__poster:hover::after {
    transform: scale3d(1.05, 1.05, 1);
  }
}

.top-gallery__poster.--cs {
  position: relative;
  display: block;
  background-color: #999;
}
.top-gallery__poster.--cs img {
  opacity: 0;
}

.top-gallery-poster *.--cs {
  position: relative;
}
.top-gallery-poster *.--cs::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  content: "素材提供まち";
  font-size: 3rem;
}

.top-gallery__fig {
  position: absolute;
  pointer-events: none;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-gallery__fig {
    display: none;
  }
}
@media print, screen and (min-width:769px) {
  .top-gallery__fig {
    width: 13.3rem;
    bottom: -6.4rem;
    right: 24rem;
  }
}

.top-gallery__shape {
  position: absolute;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-gallery__shape {
    display: none;
  }
}

.top-gallery__shape.--s01 {
  width: 14.5rem;
  top: 73rem;
  left: calc(50% + 40rem);
}

.top-gallery__shape.--s02 {
  width: 25.5rem;
  top: 73rem;
  left: calc(50% - 62rem);
}

.top-profile__shape {
  position: absolute;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-gallery-poster {
    margin-top: 1.5rem;
  }
  .top-gallery-poster > p:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}
@media print, screen and (min-width:769px) {
  .top-gallery-poster {
    margin-top: 3.5rem;
    display: flex;
    justify-content: space-between;
  }
  .top-gallery-poster > p {
    width: calc(50% - 2rem);
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-gallery__button {
    margin-left: 3rem;
    margin-right: 3rem;
  }
}
@media print, screen and (min-width:769px) {
  .top-gallery__button {
    width: 35rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.top-profile {
  position: relative;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-profile {
    margin-left: 3rem;
    margin-right: 3rem;
    padding: 15rem 0 5rem;
  }
}
@media print, screen and (min-width:769px) {
  .top-profile {
    padding: 26rem 0 20rem;
  }
}

.top-profile-block {
  position: relative;
  background-color: var(--col_key);
  color: #Fff;
  padding: 6rem 2.7rem 4rem;
  margin-bottom: 9rem;
}
@media print, screen and (min-width:769px) {
  .top-profile-block {
    width: 100rem;
    padding: 5rem 4.5rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 12.5rem;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-profile__pict {
    width: 23.5rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: -9rem;
    margin-bottom: 3rem;
  }
}
@media print, screen and (min-width:769px) {
  .top-profile__pict {
    position: absolute;
    width: 36.3rem;
    right: 5rem;
    top: -4rem;
  }
}

.top-profile__heading {
  position: absolute;
  font-feature-settings: "pkna";
  writing-mode: vertical-rl;
  text-orientation: mixed;
  -ms-text-combine-horizontal: all;
  padding: 0.7rem;
  color: white;
  letter-spacing: 0.1em;
  font-size: 1.2rem;
}
.top-profile__heading::before, .top-profile__heading::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #fff;
  width: 1px;
  height: 2rem;
  left: 0;
  top: 0;
}
.top-profile__heading::after {
  width: 2rem;
  height: 1px;
}
@media print, screen and (min-width:769px) {
  .top-profile__heading {
    font-size: 1.8rem;
    padding: 1rem;
  }
}

.top-profile__heading.--col2 {
  color: var(--col_key);
  left: 0;
}
.top-profile__heading.--col2::before, .top-profile__heading.--col2::after {
  background-color: var(--col_key);
}
@media print, screen and (min-width:769px) {
  .top-profile__heading.--col2 {
    font-size: 1.6rem;
    padding: 0.7rem;
  }
}

.top-profile-box {
  padding-left: 5rem;
  /*margin-bottom: 4rem;*/
}
@media print, screen and (min-width:769px) {
  .top-profile-box {
    padding-left: 6rem;
    padding-right: 40rem;
    /*margin-bottom: 8rem;*/
  }
}

.top-profile__name {
  font-size: 2.1rem;
  margin-bottom: 1rem;
}
.top-profile__name > small {
  font-size: 1.1rem;
  margin-left: 0.5rem;
}
@media print, screen and (min-width:769px) {
  .top-profile__name {
    font-size: 3.2rem;
    margin-bottom: 2rem;
  }
  .top-profile__name > small {
    font-size: 1.3rem;
    margin-left: 1rem;
  }
}

.top-profile__name.--col2 {
  color: var(--col_key);
}

.top-profile__text {
  line-height: 1.8;
  font-size: 1.3rem;
  letter-spacing: 0em;
}
@media print, screen and (min-width:769px) {
  .top-profile__text {
    font-size: 1.6rem;
  }
}

/*
.top-profile__history {
  background-color: #ff8e5d;
  padding: 2.5rem;
  >h3 {
    font-size: 1.6rem;
    margin-top: -3.1rem;
    margin-bottom: 1.2rem;
  }
  @include mq-pc {
    padding: 4rem;
    >h3 {
      font-size: 2.2rem;
      margin-top: -5rem;
      margin-bottom: 2rem;
    }
  }
}

.top-profile__history >dl {

  >dt,>dd {
    line-height: 1.5;
  }

  @include mq-sp {
    >dd {
      margin-bottom: 1rem;
    }
    >dd:last-of-type {
      margin-bottom: 0;
    }
  }
  @include mq-pc {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    >dt,>dd {
      margin-bottom: .5rem;
    }
    >dt {
      width: 12rem;
    }
    >dd {
      width: calc(100% - 12rem);
    }
  }
}*/
.top-profile-block2 {
  position: relative;
  color: #333;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-profile-block2 {
    border: 1px solid var(--col_key);
    padding-bottom: 3rem;
  }
}
@media print, screen and (min-width:769px) {
  .top-profile-block2 {
    width: 100rem;
    padding-left: 8rem;
  }
}

@media print, screen and (min-width:769px) {
  .top-profile-block2-inner {
    border: 1px solid var(--col_key);
    padding: 5rem 5rem 5rem 31.2rem;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-profile__pict02 {
    width: 19rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: -4rem;
    margin-bottom: 3rem;
    box-shadow: 1rem 1rem 0px var(--col_key_light);
  }
}
@media print, screen and (min-width:769px) {
  .top-profile__pict02 {
    position: absolute;
    width: 32rem;
    left: 0;
    top: -5rem;
    box-shadow: 2rem 2rem 0px var(--col_key_light);
  }
}

.top-profile-box2 {
  position: relative;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-profile-box2 {
    margin-left: 2rem;
    margin-right: 2rem;
    padding-left: 3.5rem;
  }
}
@media print, screen and (min-width:769px) {
  .top-profile-box2 {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

/**
  浮遊shape
 */
.top-profile__shape {
  position: absolute;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-profile__shape {
    display: none;
  }
}

.top-profile__shape.--flat {
  background-color: var(--col_float_block);
}

.top-profile__shape.--s01 {
  width: 4.5rem;
  height: 4.5rem;
  left: 14rem;
  top: 8rem;
}

.top-profile__shape.--s02 {
  width: 10rem;
  height: 10rem;
  right: 13.4rem;
  top: 8rem;
}

.top-profile__shape.--s03 {
  width: 2rem;
  height: 2rem;
  left: 13rem;
  top: 31.2rem;
}

.top-profile__shape.--s04 {
  width: 4.5rem;
  height: 4.5rem;
  right: 10rem;
  top: 50.4rem;
}

.top-profile__shape.--s05 {
  width: 4.5rem;
  height: 4.5rem;
  left: 15rem;
  bottom: 54rem;
}

.top-profile__shape.--s06 {
  width: 7rem;
  height: 7rem;
  right: 7rem;
  bottom: 15rem;
}

.top-profile__shape.--s07 {
  width: 3.2rem;
  height: 3.2rem;
  left: 7.4rem;
  top: 27rem;
}

.top-profile__shape.--s08 {
  width: 3.2rem;
  height: 3.2rem;
  right: 5.4rem;
  top: 25rem;
}

.top-profile__shape.--s09 {
  width: 10rem;
  height: 10rem;
  left: 4rem;
  top: 80rem;
}

.top-profile__shape.--s10 {
  width: 2rem;
  height: 2rem;
  right: 19.4rem;
  top: 74rem;
}

.top-profile__shape.--s11 {
  width: 4.5rem;
  height: 4.5rem;
  left: 10.4rem;
  bottom: 22rem;
}

.top-profile__shape.--s12 {
  width: 3.2rem;
  height: 3.2rem;
  right: 19.4rem;
  bottom: 30rem;
}

/**
  トップページlocation
  topページにあるが、
  後にアーカイブ化の可能性を考慮して"top-"接頭辞はつけない

 */
.location {
  padding-top: 6rem;
}
@media print, screen and (min-width:769px) {
  .location {
    padding-top: 12rem;
  }
}

.location-inner {
  position: relative;
  background-color: var(--col_key_light);
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .location-inner {
    padding: 8rem 3rem;
  }
}
@media print, screen and (min-width:769px) {
  .location-inner {
    padding: 13.5rem 0 17rem;
  }
  .location-inner::after {
    content: "";
    display: block;
    position: absolute;
    width: 10rem;
    height: 100%;
    right: 0;
    top: 0;
    background-color: #fff;
  }
}

.location__note {
  position: relative;
  background-color: #fff;
  border-radius: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  width: 33rem;
  height: 4rem;
  margin-bottom: 3rem;
}
.location__note::after {
  content: "";
  display: block;
  position: absolute;
  /* HTML: <div class="triangle"></div> */
  width: 12px;
  aspect-ratio: 1/0.8660254038;
  clip-path: polygon(50% 100%, 100% 0, 0 0);
  background-color: #fff;
  bottom: -8px;
}
@media print, screen and (min-width:769px) {
  .location__note {
    font-size: 2rem;
    width: 48.5rem;
    height: 6rem;
    margin-bottom: 3rem;
  }
}

/**
  map
 */
.location__map {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .location__map {
    height: 28rem;
    overflow-x: auto;
    margin-bottom: 0;
  }
  .location__map img {
    width: auto;
    height: 100%;
  }
  .location__map.is-clicked::before, .location__map.is-clicked::after {
    display: none;
  }
  .location__map::before, .location__map::after {
    content: "";
    display: block;
    position: absolute;
    pointer-events: none;
  }
  .location__map::after {
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9;
  }
  .location__map::before {
    width: 100%;
    height: 5.4rem;
    left: 0;
    top: calc(50% - 2.7rem);
    background: url(../img/scroll_hint.png) no-repeat center center/contain;
    z-index: 10;
  }
}
@media print, screen and (min-width:769px) {
  .location__map {
    width: 120rem;
  }
}

.location__map .map-train {
  display: block;
  position: absolute;
  width: 5.2rem;
  left: 13.8rem;
  top: 10.2rem;
}
.location__map .map-train img {
  width: 100%;
  height: auto;
}
@media print, screen and (min-width:769px) {
  .location__map .map-train {
    width: 12.5rem;
    left: 30.6rem;
    top: 22.8rem;
    transition: 0.35s opacity;
  }
  .location__map .map-train:hover {
    opacity: 0.7;
  }
}

.location__map .map-anchor > a {
  position: absolute;
  display: block;
  opacity: 0.5;
/*background-color: #000;*/
}
.location__map .map-anchor > a::after {
  content: "";
  display: block;
  position: absolute;
  width: 5.5rem;
  height: 5.5rem;
  background-color: var(--col_key);
  left: 0.5rem;
  bottom: 0.5rem;
  opacity: 0;
  /*opacity: 1;*/
  transition: opacity 0.35s;
}

.location__map .map-anchor > a:nth-child(2)::before {
  content: "";
  display: block;
  position: absolute;
      width: 4.6rem;
    height: 4.6rem;
  background-color: var(--col_key);
  left: 27.8rem;
    bottom: -5.4rem;
  opacity: 0;
  /*opacity: 1;*/
  transition: opacity 0.35s;
  border-radius: 100px;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .location__map .map-anchor > a:nth-child(2)::before {
    display: none;
  }
    .location__map .map-anchor > a::after {
    display: none;
  }
}
.location__map .map-anchor > a:nth-child(1) {
    width: 37.5rem;
    height: 6rem;
    left: 15rem;
    top: 13rem;
}
.location__map .map-anchor > a:nth-child(1)::after {
  left: 30.3rem;
  top: 5rem;
  bottom: 0rem;
  width: 5.7rem;
  height: 5.7rem;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .location__map .map-anchor > a:nth-child(1) {
    width: 15.5rem;
    height: 3rem;
    left: 6rem;
    top: 5rem;
  }
}
.location__map .map-anchor > a:nth-child(2) {
    width: 25.5rem;
    height: 6rem;
    left: 23.7rem;
    top: 34.2rem;
}
.location__map .map-anchor > a:nth-child(2)::after {
  left: 19rem;
    top: 0rem;
    width: 6.3rem;
    height: 6rem;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .location__map .map-anchor > a:nth-child(2) {
            width: 10.5rem;
        height: 3rem;
        left: 9.7rem;
        top: 14rem;
  }
}
.location__map .map-anchor > a:nth-child(3) {
  width: 19rem;
  height: 6.5rem;
  left: 65rem;
  top: 37rem;
}
.location__map .map-anchor > a:nth-child(3)::after {
    left: 0.5rem;
    top: 0.3rem;
    width: 6rem;
    height: 6rem;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .location__map .map-anchor > a:nth-child(3) {
        width: 8rem;
        height: 3.5rem;
        left: 26.5rem;
        top: 14.8rem;
  }
}

.location__map .map-anchor > a:nth-child(4) {
  width: 23rem;
    height: 6.5rem;
    left: 80rem;
    top: 58.6rem;
}
.location__map .map-anchor > a:nth-child(4)::after {
    left: 0.3rem;
    top: 0.3rem;
    width: 6rem;
    height: 6rem;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .location__map .map-anchor > a:nth-child(4) {
    width: 9.5rem;
    height: 3rem;
    top: 24rem;
    left: 33rem;
  }
}

.location__map .map-anchor > a:nth-child(5) {
    width: 21rem;
    height: 3.5rem;
    left: 22rem;
    top: 30rem;
}
.location__map .map-anchor > a:nth-child(5)::after {
    left: 0rem;
    top: 0.2rem;
    width: 21rem;
    height: 3rem;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .location__map .map-anchor > a:nth-child(5) {
        width: 9rem;
        height: 1.5rem;
        top: 12.2rem;
        left: 9rem;
  }
}

.location__map .map-anchor > a:nth-child(6) {
    width: 11.5rem;
    height: 3rem;
    left: 43rem;
    top: 48.5rem;
}
.location__map .map-anchor > a:nth-child(6)::after {
    left: 0rem;
    top: 0rem;
    width: 11.5rem;
    height: 3rem;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .location__map .map-anchor > a:nth-child(6) {
    width: 4.5rem;
        height: 1.5rem;
        top: 19.8rem;
        left: 17.8rem;
  }
}

.location__map .map-anchor > a:nth-child(7) {
    width: 10rem;
    height: 3.5rem;
    left: 63.5rem;
    top: 30.5rem;   
}
.location__map .map-anchor > a:nth-child(7)::after {
    left: 0rem;
    top: 0.3rem;
    width: 9.5rem;
    height: 3rem;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .location__map .map-anchor > a:nth-child(7) {
        
      width: 4.5rem;
        height: 1.5rem;
        top: 12.5rem;
        left: 26rem;
  }
}

@media print,
screen and (min-width:769px) {

    .location__map .map-anchor > a:nth-child(5):hover::after {
        /*opacity: 0;*/
    }

    .location__map .map-anchor > a:nth-child(6):hover::after {
        /*opacity: 0;*/
    }

    .location__map .map-anchor > a:nth-child(7):hover::after {
        /*opacity: 0;*/
    }

    .location__map .map-anchor > a:nth-child(2):hover::before {
        opacity: 1;
    }
    
    .location__map .map-anchor > a:hover::after {
        opacity: 1;
    }
}


.location__map__fig {
  position: absolute;
  top: -6rem;
  left: 2.7rem;
  width: 5.2rem;
}
@media print, screen and (min-width:769px) {
  .location__map__fig {
    width: 10.3rem;
    left: -6rem;
    bottom: -7rem;
  }
}

/**
  ロケーションリスト（記事）
 */
.location-list {
  counter-reset: number 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: 6rem;
}
@media print, screen and (min-width:769px) {
  .location-list {
    width: 120rem;
    margin-top: 11rem;
  }
}

.location-item {
  position: relative;
  margin-bottom: 6rem;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .location-item {
    padding-top: 3rem;
  }
}
@media print, screen and (min-width:769px) {
  .location-item {
    /*display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;*/
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 54rem 60rem;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
    margin-bottom: 11rem;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .location-item-content::before {
    content: "";
    display: block;
    position: absolute;
    width: 3.5rem;
    height: 1px;
    background-color: var(--col_key);
    left: 0;
    top: 1.3rem;
  }
  .location-item-content::after {
    content: "";
    display: block;
    position: absolute;
    color: var(--col_key);
    left: 4.5rem;
    top: 0;
    counter-increment: number;
    content: "Spot " counter(number, decimal-leading-zero);
  }
}
@media print, screen and (min-width:769px) {
  .location-item-content {
    grid-row: 2/3;
    grid-column: 1/2;
    padding-left: 5rem;
  }
  .location-item-content::before {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 7rem;
    background-color: var(--col_key);
    left: 0;
    top: 0;
  }
  .location-item-content::after {
    content: "";
    display: block;
    position: absolute;
    color: var(--col_key);
    left: 0.4rem;
    top: 7rem;
    transform-origin: 0 50%;
    transform: rotate(90deg);
    counter-increment: number;
    content: "Spot " counter(number, decimal-leading-zero);
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .location-item__slide {
    margin-bottom: 2rem;
  }
  .location-item__slide .slick-dots {
    margin-top: 1.2rem;
    transform: scale(0.9);
  }
}
@media print, screen and (min-width:769px) {
  .location-item__slide {
    grid-row: 1/3;
    grid-column: 2/3;
    width: 60rem;
  }
  .location-item__slide .slick-dots {
    margin-top: 2rem;
  }
}

.location-item__heading {
  margin-bottom: 1.5rem;
  font-weight: 500;
  display: inline-block;
}
@media print, screen and (max-width:769px) {
.location-item__heading .ruby_ti{
    transform: translateY(-.37em);
}
}

.location-item__heading .heading-inner {
  background-color: var(--col_key);
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 1.9rem;
  min-height: 3.3rem;
  padding: 0.6rem 1.2rem 0.6rem 1rem;
}
.location-item__heading .heading-inner > small {
  position: relative;
  padding-right: 1.2rem;
  margin-right: 1.5rem;
}
.location-item__heading .heading-inner > small::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #fff;
  top: 0.1rem;
  right: 0;
}
.location-item__heading .heading-inner > em {
  font-style: normal;
  line-height: 1.24;
}
@media print, screen and (min-width:769px) {
  .location-item__heading {
    /*    grid-row: 1/2;
        grid-column: 1/2;*/
    margin-bottom: 3rem;
    padding-left: 5rem;
  }
  .location-item__heading .heading-inner {
    padding: 0.6rem 2rem 1.1rem 1rem;
    min-height: 5.8rem;
    font-size: 3.4rem;
  }
  .location-item__heading .heading-inner > small {
    font-size: 3.4rem;
    margin-right: 2rem;
    padding-right: 1.5rem;
  }
  .location-item__heading .heading-inner > small::after {
    top: 0.3rem;
  }
}

.location-item__text {
  margin-bottom: 2.5rem;
}
.location-item__text > h4 {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
.location-item__text > p {
  line-height: 2;
  margin-bottom: 1em;
}
.location-item__text > p:last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width:769px) {
  .location-item__text {
    margin-bottom: 3.5rem;
  }
  .location-item__text > h4 {
    font-size: 2.2rem;
    letter-spacing: 0;
  }
}

.column-box{
    display: flex;
    justify-content: space-between;
    
}

.column-box .column-box-img{
    width: 13rem;
}

.column-box .column-box-txt{
    width: 70%;
    line-height: 1.8;
}
.column-box .column-box-txt span{
    font-weight: 500;
}

@media print, screen and (max-width:769px) {
    .column-box{
    display: block;
    padding: 6%;
    }
    .column-box .column-box-img{
    width: 80%;
        margin: auto;
        
}
    .column-box .column-box-txt{
        width: 100%;
        margin-top: 1rem;
    }
}


.location-item__btns {
  display: flex;
  justify-content: space-between;
}
.location-item__btns > li {
  width: 48%;
}
@media print, screen and (min-width:769px) {
  .location-item__btns > li .btn-inner:hover .icon-arrow {
    stroke: none;
    fill: #fff;
  }
  .location-item__btns > li .btn-inner:hover .icon-mappin {
    fill: #fff;
  }
}

/**
  反転レイアウト
 */
@media print, screen and (min-width:769px) {
  .location-item.--invert {
    grid-template-columns: 60rem 54rem;
  }
  .location-item.--invert .location-item-content {
    grid-column: 2/3;
    padding-left: 0;
    padding-right: 5rem;
  }
  .location-item.--invert .location-item-content::before {
    left: auto;
    right: 0;
  }
  .location-item.--invert .location-item-content::after {
    left: auto;
    right: -0.4rem;
    top: 15rem;
    transform-origin: 100% 50%;
    transform: rotate(90deg);
  }
  .location-item.--invert .location-item__slide {
    grid-column: 1/1;
  }
  .location-item.--invert .location-item__heading {
    grid-row: 1/2;
    grid-column: 2/3;
    padding-left: 0;
    padding-right: 5rem;
  }
}


.neighborhood{
    background-color: #fff;
    padding:0 10rem 10rem 10rem;
    margin-top: 20rem;
}

.neighborhood-main-ti{
    text-align: center;
    color:  var(--col_key);;
    font-family: "Zen Old Mincho", serif;
    font-size: 4rem;
    font-weight: 400;
    font-style: normal;
    transform: translateY(-2rem);
    margin-bottom: 6rem;
}

.neighborhood-shop{
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 4rem;
    margin-bottom: 4rem;
}

.neighborhood-shop:last-child{
    border-bottom: 0;
    padding-bottom: 0rem;
    margin-bottom: 0rem;
}

.neighborhood-shop h4{
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--col_key);;
    margin-bottom: 3rem;
}

.neighborhood-shop-box{
    display: flex;
    justify-content: space-between;
}

.neighborhood-shop-box .neighborhood-shop-box-img{
    width: 40%;
}

.neighborhood-shop-box .neighborhood-shop-box-txt{
    width: 55%;
}
.neighborhood-shop-box .neighborhood-shop-box-txt h5{
    margin: 0;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.neighborhood-shop-box .neighborhood-shop-box-txt p{
    line-height: 1.8;
    margin-bottom: 3rem;
}


@media print, screen and (max-width:769px) {
    
 .neighborhood{
    padding:0 3rem 3rem 3rem;
    margin-top: 14rem;
     margin-bottom: 8rem;
}
    .neighborhood-main-ti{
    font-size: 2.6rem;
    transform: translateY(-1.5rem);
    margin-bottom: 4rem;
}
    .neighborhood-shop h4{
    font-size: 1.7rem;
    margin-bottom: 2.5rem;
}
    .neighborhood-shop-box{
    display: block;
}
.neighborhood-shop-box .neighborhood-shop-box-img{
    width: 100%;
    margin-bottom: 2rem;
}

.neighborhood-shop-box .neighborhood-shop-box-txt{
    width: 100%;
}
    .neighborhood-shop-box .neighborhood-shop-box-txt h5{
    margin-bottom: 1.3rem;
    font-size: 1.5rem;
    line-height: 1.6
}
    .neighborhood-shop:last-child{
    margin-bottom: 2rem;
}
    
    
   .neighborhood .location-item__btns{
        flex-direction: column;
    }
    .neighborhood .location-item__btns li{
        width: 100%;
    }
    .neighborhood .location-item__btns li:first-child{
        margin-bottom: 1rem;
    }
}


/*
  アーカイブボタン
 */
.location__archive {
  position: relative;
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
  color: var(--col_key);
}
.location__archive > span {
  display: block;
  letter-spacing: 0.06em;
  font-size: 1.4rem;
  background-color: #fff;
}
.location__archive:not(small) {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
.location__archive small {
  display: block;
  font-family: sans-serif;
  letter-spacing: 0.14em;
  font-size: 1rem;
  margin-top: 0.5rem;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .location__archive > span {
    position: relative;
    padding-left: 2.5rem;
    height: 12rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.8rem;
  }
  .location__archive > span::after {
    content: "";
    display: block;
    position: absolute;
    width: 0.5rem;
    height: 1rem;
    background-color: #000;
    -webkit-mask: url(../img/icon_arrow_f.svg) no-repeat center center/contain;
            mask: url(../img/icon_arrow_f.svg) no-repeat center center/contain;
    right: 2rem;
    top: calc(50% - 0.5rem);
  }
  .location__archive small {
    margin-top: 0.8rem;
    font-size: 1.3rem;
  }
}
@media print, screen and (min-width:769px) {
  .location__archive {
    display: flex;
    align-items: center;
    width: 81rem;
    height: 19rem;
    margin-top: 14rem;
    transition: color 0.35s, background-color 0.35s;
    transition: 0.35s opacity;
  }
  .location__archive img {
    width: 30rem;
  }
  .location__archive > span {
    letter-spacing: 0.12em;
    font-size: 2.6rem;
    padding-left: 4rem;
  }
  .location__archive small {
    font-size: 1.6rem;
    margin-top: 1rem;
  }
  .location__archive::after {
    content: "";
    display: block;
    position: absolute;
    width: 0.4rem;
    height: 0.8rem;
    background-color: #000;
    -webkit-mask: url(../img/icon_arrow_f.svg) no-repeat center center/contain;
            mask: url(../img/icon_arrow_f.svg) no-repeat center center/contain;
    right: 1.5rem;
    top: calc(50% - 0.4rem);
  }
  .location__archive::after {
    width: 0.8rem;
    height: 1.6rem;
    top: calc(50% - 0.8rem);
    right: 3rem;
    transition: background-color 0.35s;
  }
  .location__archive:hover {
    opacity: 0.7;
  }
}

.location-train {
  margin-top: 3rem;
  margin-bottom: 7rem;
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width:769px) {
  .location-train {
    margin-top: 4rem;
    margin-bottom: 14rem;
    width: 120rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.location-train__heading {
  background-color: #8b1663;
  width: 100%;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  color: #fff;
  min-height: 3.8rem;
  font-size: 1.7rem;
}
@media print, screen and (min-width:769px) {
  .location-train__heading {
    margin-bottom: 4rem;
    min-height: 5.4rem;
    font-size: 2.4rem;
  }
}

.location-train__content {
  padding: 0 2.5rem 2.5rem;
}
.location-train__content > strong {
  display: block;
  color: #8b1663;
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 1.6;
}
.location-train__content > p:not(:last-child) {
  line-height: 2;
  letter-spacing: 0;
  margin-bottom: 1.5rem;
}
@media print, screen and (min-width:769px) {
  .location-train__content {
    width: calc(100% - 45rem);
    padding: 0 4rem 4rem;
  }
  .location-train__content > strong {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .location-train__content > p {
    margin-bottom: 1rem;
  }
}

.location-train__pict {
  padding: 2.5rem;
}
@media print, screen and (min-width:769px) {
  .location-train__pict {
    width: 44rem;
    padding: 0 0 4rem 4rem;
  }
}

@media print, screen and (min-width:769px) {
  .location-train__btn {
    width: 23.5rem;
  }
}

.top-access {
  position: relative;
  padding-top: 12rem;
}
@media print, screen and (min-width:769px) {
  .top-access {
    padding-top: 18rem;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-access__pict {
    margin-bottom: 6rem;
  }
}
@media print, screen and (min-width:769px) {
  .top-access__pict {
    margin-bottom: -28rem;
  }
}

.top-access-wrap {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-access-wrap {
    margin-left: 3rem;
    margin-right: 3rem;
  }
}
@media print, screen and (min-width:769px) {
  .top-access-wrap {
    width: calc(100% - 20rem);
    padding-top: 16rem;
  }
  .top-access-wrap::after {
    content: "";
    display: block;
    position: absolute;
    width: 10rem;
    height: 100%;
    background-color: #fff;
    right: -10rem;
    top: 0;
  }
}

.top-access-inner {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width:769px) {
  .top-access-inner {
    width: 120rem;
  }
}

@media print, screen and (min-width:769px) {
  .top-access-container {
    display: flex;
    justify-content: space-between;
  }
}

@media print, screen and (min-width:769px) {
  .top-access-content {
    width: 56rem;
  }
}

.top-access__map {
  position: relative;
  z-index: 2;
  border: 1px solid #e6e6e6;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-access__map {
    margin-top: 3rem;
  }
}
@media print, screen and (min-width:769px) {
  .top-access__map {
    position: absolute;
    right: 0;
    top: 0;
    width: 62rem;
  }
}

.top-access__copy {
  line-height: 1.5;
  white-space: nowrap;
  font-weight: 500;
}
.top-access__copy strong {
  color: var(--col_key);
  font-weight: 500;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-access__copy {
    font-size: 1.8rem;
    letter-spacing: 0.01em;
    margin-bottom: 1.2rem;
  }
}
@media print, screen and (min-width:769px) {
  .top-access__copy {
    font-size: 2.6rem;
    margin-bottom: 2.5rem;
  }
}

.top-access__text > p {
  line-height: 2;
}

.top-access__modelcourse {
  margin-top: 5rem;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-access__modelcourse {
    margin-top: 3rem;
  }
}

.top-access__modelcourse__text {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: calc( 30 / 18 );
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-access__modelcourse__text {
    font-size: 1.4rem;
    text-align: center;
  }
}

.top-access__modelcourse-btn {
  margin-top: 2rem;
  width: 23.5rem;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-access__modelcourse-btn {
    margin: 1.5rem auto 0;
    width: calc( 100% - 5rem );
  }
}

.top-access__modelcourse-btn .icon-arrow {
  width: 1.2rem;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-access__modelcourse-btn .icon-arrow {
    width: 1.0rem;
    right: 1.5rem;
  }
}

/**
  奈良交通で移動囲み
 */
.top-access-move {
  background-color: #f5f2ed;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-access-move {
    margin-top: 3rem;
/*    padding-bottom: 10rem;*/
  }
}
@media print, screen and (min-width:769px) {
  .top-access-move {
    margin-top: 25rem;
  }
}

.top-access-move__heading {
  position: relative;
  background-color: #404040;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  min-height: 7rem;
  font-size: 1.9rem;
}
.top-access-move__heading::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #404040;
  aspect-ratio: 1/0.8660254038;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  width: 10px;
  top: -8px;
}
@media print, screen and (min-width:769px) {
  .top-access-move__heading {
    font-size: 2.8rem;
    min-height: 8.6rem;
  }
  .top-access-move__heading::before {
    width: 17px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    top: -13px;
  }
}

.top-access__fig {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  bottom: 0;
  width: 12rem;
}
@media print, screen and (min-width:769px) {
  .top-access__fig {
    width: 20rem;
    left: 18rem;
    translate: 0 0;
  }
}

.top-access-move-wrap {
  padding: 3rem 2.5rem 4rem;
}
@media print, screen and (min-width:769px) {
  .top-access-move-wrap {
    padding: 5rem 6rem 6rem;
  }
}

.top-access-move__heading2 {
  text-align: center;
  font-size: 1.7rem;
  margin-bottom: 2rem;
}
@media print, screen and (min-width:769px) {
  .top-access-move__heading2 {
    font-size: 2.4rem;
    margin-bottom: 4.5rem;
  }
}

.top-access-move__copy2 {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 0.6rem 0;
  text-align: center;
}

.top-access-move__anchor {
  margin-bottom: 3rem;
}
.top-access-move__anchor > li {
  position: relative;
}
.top-access-move__anchor > li > a {
  min-height: 4.2rem;
  border-bottom: 1px solid #fff;
  display: flex;
  align-items: center;
  padding-left: 1.2rem;
}
.top-access-move__anchor > li .icon-arrow {
  position: absolute;
  width: 0.6rem;
  height: 0.8rem;
  transform: rotate(90deg);
  right: 1rem;
  top: calc(50% - 0.4rem);
}

.top-access-move-list {
  margin-bottom: 6rem;
}
@media print, screen and (min-width:769px) {
  .top-access-move-list {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 8rem;
  }
}


@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-access-move-list__box .top-access-move-list__item:nth-of-type(n+2) {
    margin-top: 2.5rem;
  }
}
@media print, screen and (min-width:769px) {
  .top-access-move-list:has(.top-access-move-list__box) {
    margin-left: -2rem;
    margin-right: -2rem;
    gap: 0 4rem;
  }
  .top-access-move-list__box {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 0 2rem;
    background-color: #e6e6e1;
    padding: 4.5rem 3rem 3rem 3rem;
  }
  
  .top-access-move-list__box .top-access-move-list__item {
    width: 18rem;
  }
  
  .top-access-move-list__box .top-access-move-list__item ul > li > p {
    justify-content: flex-start;
  }
}

.top-access-move-list__box--title {
  display: none;
}
@media print, screen and (min-width:769px) {
  .top-access-move-list__box--title {
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50% -50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
    .top-access-move-list__box--title span {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      background-color: #fff;
      padding: 0 2rem;
      height: 3rem;
      border-radius: 100vw;
      border: 1px solid #404040;
      font-size: 1.6rem;
    }
}


.top-access-move-list__item h4 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-access-move-list__item h4 small {
  font-size: 0.5em;
  margin-right: 0.5em;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-access-move-list__item .container ul + ul {
    margin-top: 2rem;
  }
}
@media print, screen and (min-width:769px) {
  .top-access-move-list__item .container {
    display: flex;
    gap: 1rem;
  }
  .top-access-move-list__item .container ul {
    width: calc(50% - 0.5rem);
  }
}
.top-access-move-list__item ul > li {
  position: relative;
  background-color: #fff;
  text-align: center;
  padding: 1.2rem;
}
.top-access-move-list__item ul > li > p {
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  white-space: nowrap;
}
.top-access-move-list__item ul > li > small {
  position: absolute;
  bottom: -2.7em;
  width: 100%;
  left: 0;
  text-align: left;
  line-height: 1.25;
  font-size: 1.2rem;
}
.top-access-move-list__item ul > li::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 2rem;
  background-color: #000;
  bottom: -2rem;
  left: 50%;
}
.top-access-move-list__item ul > li > img {
  display: inline-block;
  width: 2.8rem;
  margin-bottom: 1.5rem;
}
.top-access-move-list__item ul > li + li {
  margin-top: 2rem;
}
.top-access-move-list__item ul > li:last-child::after {
  display: none;
}
/*@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-access-move-list__item {
    display: none;
  }
}*/
@media print, screen and (min-width:769px) {
  .top-access-move-list__item {
    width: 32.6%;
  }
  .top-access-move-list__item h4 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .top-access-move-list__item ul > li {
    padding: 2rem;
  }
  .top-access-move-list__item ul > li p {
    font-size: 1.3rem;
  }
  .top-access-move-list__item ul > small {
    bottom: -2em;
  }
}


@media print,
screen and (min-width:769px) {

    .top-access-move-list__item .spot_name {
        transform: translateX(9.5rem);
    }
}

.top-access-move-list__item .spot_name.off {
    opacity: 0;
}

@media print,
screen and (max-width:769px) {
    .top-access-move-list__item .spot_name.off {
        margin-top: -3rem
    }
}

.top-access-complement{
  margin-top: -5rem;
  margin-bottom: 8rem;
  line-height: 1.8;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-access-complement{
    margin-top: -4rem;
    margin-bottom: 6rem;
  }
}


.top-access__other-btn {
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-access__other-btn .icon-arrow {
    width: 1rem;
    right: 1.6rem;
  }
}
@media print, screen and (min-width:769px) {
  .top-access__other-btn {
    width: 35rem;
  }
  .top-access__other-btn .icon-arrow {
    width: 1.2rem;
  }
}

/**
  shape
 */
.top-access__shape {
  position: absolute;
  z-index: 3;
}

.top-access__shape.--flat {
  background-color: var(--col_float_block);
  opacity: 0.9;
}

.top-access__shape.--s01 {
  width: 3.2rem;
  height: 3.2rem;
  left: 16rem;
  top: 16rem;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-access__shape.--s01 {
    width: 3.5rem;
    height: 3.5rem;
    left: 28rem;
    top: 6rem;
  }
}

.top-access__shape.--s02 {
  width: 7rem;
  height: 7rem;
  right: 28rem;
  top: 16rem;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-access__shape.--s02 {
    width: 5rem;
    height: 5rem;
    left: 3rem;
    top: 31rem;
  }
}

.top-access__shape.--s03 {
  width: 10rem;
  height: 10rem;
  left: 69rem;
  top: 57rem;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-access__shape.--s03 {
    width: 3.5rem;
    height: 3.5rem;
    left: 32rem;
    top: 38rem;
  }
}

.top-access__shape.--s04 {
  width: 4.5rem;
  height: 4.5rem;
  left: 58rem;
  top: 74rem;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-access__shape.--s04 {
    width: 2rem;
    height: 2rem;
    left: -0.2rem;
    top: 42rem;
  }
}

.top-access__shape.--s05 {
  width: 7rem;
  height: 7rem;
  z-index: 0;
  right: 17rem;
  top: 48rem;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-access__shape.--s05 {
    display: none;
  }
}

.top-access__shape.--s06 {
  width: 3.2rem;
  height: 3.2rem;
  right: 10rem;
  top: 96rem;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-access__shape.--s06 {
    display: none;
  }
}

.top-access__shape.--s07 {
  width: 4.5rem;
  height: 4.5rem;
  left: 10rem;
  top: 8rem;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-access__shape.--s07 {
    width: 1.6rem;
    height: 1.6rem;
    left: 34rem;
    top: 2.6rem;
  }
}

.top-access__shape.--s08 {
  width: 3.2rem;
  height: 3.2rem;
  right: 18rem;
  top: 5rem;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-access__shape.--s08 {
    width: 5rem;
    height: 5rem;
    right: -1rem;
    top: 11rem;
  }
}

.top-access__shape.--s09 {
  width: 10rem;
  height: 10rem;
  right: -6rem;
  top: -1rem;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-access__shape.--s09 {
    width: 2rem;
    height: 2rem;
    right: 3rem;
    top: 33rem;
  }
}

.top-access__shape.--s10 {
  width: 2rem;
  height: 2rem;
  left: 53rem;
  top: 68rem;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-access__shape.--s10 {
    width: 1.1rem;
    height: 1.1rem;
    left: 6rem;
    top: 41rem;
  }
}

.top-access__shape.--s11 {
  width: 2rem;
  height: 2rem;
  right: 21rem;
  top: 68rem;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-access__shape.--s11 {
    width: 1.1rem;
    height: 1.1rem;
    right: 9rem;
    top: 42rem;
  }
}

.top-access__shape.--s12 {
  width: 4.5rem;
  height: 4.5rem;
  right: 6rem;
  top: 85rem;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-access__shape.--s12 {
    display: none;
  }
}

.top-group {
  margin-left: 3rem;
  margin-right: 3rem;
  padding: 12rem 0 6rem;
}
@media print, screen and (min-width:769px) {
  .top-group {
    margin-left: auto;
    margin-right: auto;
    width: 120rem;
    padding: 18rem 0 6rem;
    margin-bottom: 8rem;
  }
}

.top-group__copy {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 25.4rem;
  height: 3.4rem;
  margin-bottom: 4rem;
}
.top-group__copy::before, .top-group__copy::after {
  content: "";
  display: block;
  position: absolute;
  width: 1rem;
  height: 100%;
  top: 0;
  background-color: #000;
}
.top-group__copy::before {
  left: 0;
}
.top-group__copy::after {
  right: 0;
}
.top-group__copy > span {
  position: relative;
  z-index: 3;
  font-size: 2.2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100% - 2px);
  width: calc(100% - 2px);
  background-color: #fff;
  top: 1px;
  left: 1px;
}
@media print, screen and (min-width:769px) {
  .top-group__copy {
    width: 40rem;
    height: 4rem;
    margin-bottom: 7rem;
  }
  .top-group__copy > span {
    font-size: 3.4rem;
  }
}

@media print, screen and (min-width:769px) {
  .top-group-container {
    display: flex;
    justify-content: space-between;
  }
}

@media print, screen and (min-width:769px) {
  .top-group-item {
    width: calc(50% - 2.5rem);
  }
}

.top-group-item__plan-name {
  font-weight: 400;
  line-height: 1.4;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.top-group-item__plan-name > em {
  font-weight: 500;
  font-style: normal;
  font-size: 1.8rem;
  background: linear-gradient(0deg, #f5f2ed 35%, transparent 35%);
}
@media print, screen and (min-width:769px) {
  .top-group-item__plan-name {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
  .top-group-item__plan-name > em {
    font-size: 2.6rem;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-group-item:not(:last-child) {
    margin-bottom: 4rem;
  }
}

.top-group-item.--cs {
  position: relative;
}
.top-group-item.--cs::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  content: "情報提供まち";
  font-size: 3rem;
}

.top-group-item__pict1,
.top-group-item__pict2,
.top-group-item__pict3 {
  width: 100%;
  aspect-ratio: 1.9;
}
@supports not (aspect-ratio: auto) {
  .top-group-item__pict1,
  .top-group-item__pict2,
  .top-group-item__pict3 {
    position: relative;
  }
  .top-group-item__pict1::before,
  .top-group-item__pict2::before,
  .top-group-item__pict3::before {
    float: left;
    content: "";
    padding-top: 52.63%;
  }
  .top-group-item__pict1::after,
  .top-group-item__pict2::after,
  .top-group-item__pict3::after {
    display: block;
    content: "";
    clear: both;
  }
  .top-group-item__pict1 > img,
  .top-group-item__pict2 > img,
  .top-group-item__pict3 > img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.top-group-item__pict1 img,
.top-group-item__pict2 img,
.top-group-item__pict3 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-group-item__pict2 {
  aspect-ratio: 1.6954545455;
}
@supports not (aspect-ratio: auto) {
  .top-group-item__pict2 {
    position: relative;
  }
  .top-group-item__pict2::before {
    float: left;
    content: "";
    padding-top: 58.98%;
  }
  .top-group-item__pict2::after {
    display: block;
    content: "";
    clear: both;
  }
  .top-group-item__pict2 > img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.top-group-item-content {
  position: relative;
  background-color: #f5f2ed;
  padding: 3rem 2.4rem;
}
@media print, screen and (min-width:769px) {
  .top-group-item-content {
    padding: 5rem 3.8rem;
  }
}

.top-group-item-content.--pickup {
  padding: 3rem 2.4rem 4rem;
}
.top-group-item-content.--pickup::before {
  content: "";
  display: block;
  position: absolute;
  width: 9rem;
  height: 3.5rem;
  font-size: 1.5rem;
  left: 0;
  top: -1.5rem;
  background-color: #f5f2ed;
  display: flex;
  justify-content: center;
  align-items: center;
  content: "Pick Up";
}
@media print, screen and (min-width:769px) {
  .top-group-item-content.--pickup {
    padding: 5.5rem 3.8rem;
  }
  .top-group-item-content.--pickup::before {
    font-size: 2rem;
    width: 14.6rem;
    height: 4.8rem;
    top: -2.4rem;
  }
}

.top-group-item__heading {
  line-height: 1.8;
  font-weight: 500;
  font-size: 1.5rem;
}
.top-group-item__heading > small {
  position: relative;
  display: block;
  line-height: 1.2;
  padding-left: 2rem;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}
.top-group-item__heading > small::before {
  content: "";
  display: block;
  position: absolute;
  width: 1.5rem;
  height: 0.2rem;
  background-color: #000;
  left: 0;
  top: calc(50% - 0.1rem);
}
@media print, screen and (min-width:769px) {
  .top-group-item__heading {
    font-size: 2.2rem;
  }
  .top-group-item__heading > small {
    font-size: 1.5rem;
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
  }
}

.top-group-item-content.--pickup .top-group-item__heading {
  font-size: 1.5rem;
}
@media print, screen and (min-width:769px) {
  .top-group-item-content.--pickup .top-group-item__heading {
    font-size: 2rem;
  }
}

.top-group-item__btns_label {
    font-size: 1.5rem;
    text-align: center;
    transform: translateY(2.5rem);
    margin-top: -1.5rem;
}
@media print, screen and (max-width:769px) {
    .top-group-item__btns_label {
    font-size: 1.3rem;
    text-align: center;
    transform: translateY(1rem);
    margin-top: 1rem;
}
}

.top-group-item__btns {
  margin-top: 3rem;
}
.top-group-item__btns .icon-arrow {
  width: 1.1rem;
  right: 2rem;
}
.top-group-item__btns .btn-a:not(--black) .icon-arrow {
  stroke: #000;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-group-item__btns > li:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media print, screen and (min-width:769px) {
  .top-group-item__btns {
    margin-top: 4rem;
    display: flex;
    justify-content: space-between;
  }
  .top-group-item__btns > li {
    width: calc(50% - 1rem);
  }
  .top-group-item__btns > li .btn-inner {
    font-size: 1.5rem;
    padding-left: 2.5rem;
    letter-spacing: 0.01em;
  }
}

.top-group-item__text > p {
  line-height: 2;
}
.top-group-item__text > p > small,
.top-group-item__text > small {
  font-size: 1.2rem;
}
@media print, screen and (min-width:769px) {
  .top-group-item__text > p > small,
  .top-group-item__text > small {
    font-size: 1.4rem;
  }
}

.top-group-item__heading + .top-group-item__text {
  margin-top: 1rem;
}

.top-group-item__slide {
  position: relative;
  background-color: #f5f2ed;
  margin-top: 0.1rem;
  padding: 2.4rem;
}
.top-group-item__slide .prg-location-slide {
  width: 100%;
}
.top-group-item__slide .prg-location-slide .slick-dots {
  position: absolute;
  bottom: auto;
  top: -3.2rem;
  right: -0.7rem;
  transform: scale(0.9);
}
.top-group-item__slide > h5 {
  font-size: 1.4rem;
  margin: 0 0 1.5rem;
}
.top-group-item__slide .slide-item {
  width: 100%;
  aspect-ratio: 2.0416666667;
}
@supports not (aspect-ratio: auto) {
  .top-group-item__slide .slide-item {
    position: relative;
  }
  .top-group-item__slide .slide-item::before {
    float: left;
    content: "";
    padding-top: 48.98%;
  }
  .top-group-item__slide .slide-item::after {
    display: block;
    content: "";
    clear: both;
  }
  .top-group-item__slide .slide-item > img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.top-group-item__slide .slide-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media print, screen and (min-width:769px) {
  .top-group-item__slide {
    padding: 4rem;
  }
  .top-group-item__slide > h5 {
    font-size: 1.8rem;
  }
}

/**
  奈良交通エリア
 */
.top-group-bus {
  background-color: #f5f2ed;
}
@media print, screen and (min-width:769px) {
  .top-group-bus {
    display: flex;
  }
}

@media print, screen and (min-width:769px) {
  .top-group-bus__pict {
    width: 29.5rem;
  }
}

.top-group-bus-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-group-bus-content {
    padding: 3rem 0;
  }
}
@media print, screen and (min-width:769px) {
  .top-group-bus-content {
    width: calc(100% - 59rem);
  }
}

.top-group-bus__logo {
  width: 5.1rem;
  margin-bottom: 1.5rem;
}
@media print, screen and (min-width:769px) {
  .top-group-bus__logo {
    width: 7.9rem;
    margin-bottom: 1.5rem;
  }
}

.top-group-bus__heading {
  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 1.2rem;
}
@media print, screen and (min-width:769px) {
  .top-group-bus__heading {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
}

.top-group-bus__text {
  line-height: 2;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-group-bus__text {
    padding: 0 2rem;
    margin-bottom: 2rem;
  }
}
@media print, screen and (min-width:769px) {
  .top-group-bus__text {
    margin-bottom: 2rem;
    text-align: center;
  }
}

.top-group-bus__btn {
  width: calc(100% - 5rem);
}
.top-group-bus__btn .icon-arrow {
  width: 1rem;
  right: 2rem;
}
@media print, screen and (min-width:769px) {
  .top-group-bus__btn {
    width: 23.5rem;
  }
  .top-group-bus__btn .icon-arrow {
    width: 1.2rem;
  }
}

/**
  .top-group-item のPC３列バージョン
 */
@media print, screen and (min-width:769px) {
  .top-group-item.--col3 {
    width: calc(33.33% - 2rem);
  }
  .top-group-item.--col3 .top-group-item-content {
    padding: 4rem 3.8rem;
  }
  .top-group-item.--col3 .top-group-item__btns > li {
    width: 80%;
  }
}

/**
グルメおすすめ
 */
.top-group-recommend {
  background-color: #f5f2ed;
  padding: 2.4rem 2.4rem 4rem;
}
@media print, screen and (min-width:769px) {
  .top-group-recommend {
    padding: 6rem 9.5rem;
  }
}

@media print, screen and (min-width:769px) {
  .top-group-recommend .top-group-item {
    width: calc(50% - 3rem);
  }
}

.top-group-recommend .top-group-item-content {
  padding: 3rem 0 0;
}
@media print, screen and (min-width:769px) {
  .top-group-recommend .top-group-item-content {
    padding: 3.6rem 0 0;
  }
}

.top-group-recommend__heading {
  font-weight: 500;
  text-align: center;
  font-size: 1.9rem;
  margin-bottom: 3rem;
}
@media print, screen and (min-width:769px) {
  .top-group-recommend__heading {
    font-size: 3rem;
    margin-bottom: 4rem;
  }
}

.top-group-miyage-box {
  position: relative;
  background-color: #fff;
  padding: 2rem;
  margin-bottom: 2.5rem;
}
@media print, screen and (min-width:769px) {
  .top-group-miyage-box {
    padding: 2.5rem;
    margin-bottom: 4rem;
    display: flex;
    justify-content: space-between;
  }
}

.top-group-miyage__content > h4 {
  font-weight: 500;
  font-size: 1.9rem;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}
.top-group-miyage__content > p {
  line-height: 1.75;
}
@media print, screen and (min-width:769px) {
  .top-group-miyage__content {
    width: calc(100% - 42rem);
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .top-group-miyage__content > h4 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-align: left;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-group-miyage__pict {
    margin-bottom: 1.5rem;
  }
}
@media print, screen and (min-width:769px) {
  .top-group-miyage__pict {
    top: 2.5rem;
    left: 2.5rem;
    width: 37rem;
  }
}

.ticket {
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .ticket {
    margin-left: 3rem;
    margin-right: 3rem;
    padding: 4rem 0;
  }
}
@media print, screen and (min-width:769px) {
  .ticket {
    width: 120rem;
    padding: 6.5rem 10rem 4rem;
  }
}

.ticket.--second {
  margin-top: 10rem;
  margin-bottom: 6rem;
}
@media print, screen and (min-width:769px) {
  .ticket.--second {
    margin-top: 20rem;
    margin-bottom: 10rem;
  }
}

.ticket__heading {
  margin-top: -5.2rem;
  margin-bottom: 3rem;
  text-align: center;
}
.ticket__heading > span {
  background-color: #fff;
  font-size: 1.9rem;
}
@media print, screen and (min-width:769px) {
  .ticket__heading {
    margin-top: -8.2rem;
    margin-bottom: 5rem;
  }
  .ticket__heading > span {
    font-size: 3rem;
    padding: 0 1em;
  }
}

.ticket-list p {
  text-align: center;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .ticket-list {
    margin-left: 5rem;
    margin-right: 5rem;
  }
  .ticket-list p {
    white-space: nowrap;
  }
  .ticket-list > li:not(:last-child) {
    margin-bottom: 3rem;
  }
}
@media print, screen and (min-width:769px) {
  .ticket-list {
    display: flex;
    justify-content: space-between;
  }
}

.ticket-list__item > a {
  display: block;
}
.ticket-list__item > a > p {
  margin-top: 1.5rem;
  line-height: 2;
  letter-spacing: 0;
}
@media print, screen and (min-width:769px) {
  .ticket-list__item {
    width: 23rem;
  }
  .ticket-list__item > a {
    transition: 0.35s opacity;
  }
  .ticket-list__item > a:hover {
    opacity: 0.7;
  }
  .ticket-list__item > a > p {
    text-align: left;
  }
}

.bottom-nav {
  background-color: #f5f2ed;
  padding: 4rem 3rem;
}
@media print, screen and (min-width:769px) {
  .bottom-nav {
    padding: 6rem 0;
  }
}

.bottom-nav-list {
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width:769px) {
  .bottom-nav-list {
    width: 120rem;
    display: flex;
    justify-content: space-between;
  }
}

.bottom-nav-list__item > a {
  display: flex;
  background-color: #fff;
  padding: 1rem;
}
.bottom-nav-list__item img {
  width: 10rem !important;
}
.bottom-nav-list__item p {
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-weight: 500;
  padding-left: 2rem;
  line-height: 1.3;
  font-size: 1.3rem;
}
.bottom-nav-list__item p small {
  display: block;
  margin-top: 0.2rem;
  font-size: 1rem;
  color: #b3b3b3;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .bottom-nav-list__item:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media print, screen and (min-width:769px) {
  .bottom-nav-list__item {
    width: 30.5%;
  }
  .bottom-nav-list__item > a {
    transition: 0.35s opacity;
    padding: 2rem;
  }
  .bottom-nav-list__item > a:hover {
    opacity: 0.7;
  }
  .bottom-nav-list__item img {
    width: 14rem !important;
  }
  .bottom-nav-list__item p {
    padding-left: 3rem;
    font-size: 1.8rem;
  }
  .bottom-nav-list__item p > small {
    font-size: 1.4rem;
    margin-top: 0.75rem;
  }
}

/**
  旧バージョンと2024バージョンで
  要素サイズの扱い（rem 指定かpx指定か）が異なるため
  引き継いだコンテンツについて、暫定的にセカンドはpx基準でのサイズ指定に統一する
 */
.second-head {
  padding: 60px 35px 0;
  margin-bottom: 60px;
}
@media print, screen and (min-width:769px) {
  .second-head {
    padding: 150px 0 0;
    margin-bottom: 120px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .second__logo {
    width: 60px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
  }
}
@media print, screen and (min-width:769px) {
  .second__logo {
    position: absolute;
    left: 10rem;
    top: 7rem;
    width: 120px;
  }
}

.second__heading {
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 0.12em;
}
.second__heading > small {
  display: block;
  margin-bottom: 15px;
  font-size: 12px;
}
.second__heading > em {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 26px;
}
@media print, screen and (min-width:769px) {
  .second__heading {
    margin-bottom: 50px;
  }
  .second__heading > small {
    font-size: 16px;
  }
  .second__heading > em {
    font-size: 45px;
  }
}

.second-head__text {
  line-height: 1.75;
  margin-bottom: 15px;
  font-size: 1.4rem;
}
@media print, screen and (min-width:769px) {
  .second-head__text {
    text-align: center;
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.second-head__note {
  line-height: 1.5;
  font-size: 10px;
}
@media print, screen and (min-width:769px) {
  .second-head__note {
    text-align: center;
    font-size: 12px;
  }
}

.loading {
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  left: 0;
  top: 0;
  background-color: #fff;
  z-index: 112;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: visibility 1s, opacity 1s;
}
.loading.is-complete {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 4rem;
  height: 4rem;
  transform-origin: 50% 50%;
  background-color: var(--col_key);
  margin: 100px auto;
  animation: sk-rotateplane 1.2s infinite ease-in-out;
}
@media print, screen and (min-width:769px) {
  .spinner {
    width: 6rem;
    height: 6rem;
  }
}
@keyframes sk-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
.cm-block {
  position: relative;
  background-color: #efefef;
  background-color: var(--col_key_light);
  padding: 4rem 0;
}
@media print, screen and (min-width:769px) {
  .cm-block {
    padding: 8rem 0;
  }
  .cm-block::after {
    content: "";
    display: block;
    position: absolute;
    width: 10rem;
    height: 100%;
    right: 0;
    top: 0;
    background-color: #fff;
  }
}

.cm-block + .cm-block {
  margin-top: 6rem;
}
@media print, screen and (min-width:769px) {
  .cm-block + .cm-block {
    margin-top: 16rem;
  }
}

@media print, screen and (min-width:769px) {
  .cm-area .cm-block:nth-of-type(2n)::after {
    left: 0;
    right: auto;
  }
}

.cm__heading {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2rem;
  margin-top: -5rem;
  margin-bottom: 4rem;
}
@media print, screen and (min-width:769px) {
  .cm__heading {
    font-size: 3rem;
    margin-top: -9.6rem;
    margin-bottom: 8rem;
  }
}

.cm__list > li {
  margin-bottom: 3rem;
}
.cm__list > li > h3 {
  line-height: 1.3;
  margin-top: 1rem;
  font-size: 1.4rem;
}
@media print, screen and (min-width:769px) {
  .cm__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .cm__list > li {
    width: 47%;
    margin-bottom: 6rem;
  }
  .cm__list > li > h3 {
    margin-top: 1.5rem;
    font-size: 1.6rem;
  }
}

.cm__list .poster {
  position: relative;
  cursor: pointer;
  display: block;
}
.cm__list .poster::before, .cm__list .poster::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 3;
}
.cm__list .poster::before {
  width: 5rem;
  height: 5rem;
  border: 1px solid #fff;
  border-radius: 50%;
  left: calc(50% - 2.5rem);
  top: calc(50% - 2.5rem);
}
.cm__list .poster::after {
  width: 1rem;
  aspect-ratio: 0.6427876097/1;
  clip-path: polygon(0% 100%, 100% 50%, 0 0);
  background-color: #fff;
  left: calc(50% - 0.3rem);
  top: calc(50% - 0.8rem);
}
.cm__list .poster.is-no-play {
  cursor: default;
  pointer-events: none;
}
.cm__list .poster.is-no-play::before, .cm__list .poster.is-no-play::after {
  display: none;
}
@media print, screen and (min-width:769px) {
  .cm__list .poster::before {
    border: 2px solid #fff;
    width: 6rem;
    height: 6rem;
    transition: transform 0.35s;
  }
  .cm__list .poster::after {
    width: 1.2rem;
    left: calc(50% + 0.2rem);
    top: calc(50% - 0.5rem);
    transition: transform 0.35s;
  }
  .cm__list .poster:hover {
    transition: 0.35s opacity;
  }
  .cm__list .poster:hover:hover {
    opacity: 0.7;
  }
  .cm__list .poster:hover::before, .cm__list .poster:hover::after {
    transform: scale3d(1.05, 1.05, 1);
  }
}

/* ==========================================================================
   Utilities
   ========================================================================== */
/* ==========================================================================

	#テキストモジュールとユーティリティ

	36　コピー
	27　 H1相当　ページタイトル
	25　 H2相当　コピー・見出しおよびラベル
	24　 H3相当　見出しおよびラベル
	20　コピー・中見出し・ラベル
	18　本文：大・ラベル
	16　本文：中
	14　本文：小を使用しています。
	12　最小（注文など一部のみ）

 */
/* -------------------------------------------------------------------------
	本文指定
*/
.txt-ll,
.txt-l,
.txt-m,
.txt-s,
.txt-ss {
  line-height: 2;
}

.txt-ll {
  font-size: 2.2rem;
}

.txt-l {
  font-size: 1.8rem;
}

.txt-m {
  font-size: 1.6rem;
}

.txt-s {
  font-size: 1.4rem;
}

.txt-ss {
  font-size: 1.2rem;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .txt-ll {
    font-size: 2rem;
  }
  .txt-l {
    font-size: 1.6rem;
  }
  .txt-m {
    font-size: 1.5rem;
  }
  .txt-s {
    font-size: 1.3rem;
  }
  .txt-ss {
    font-size: 1.1rem;
  }
}
.txt-intro {
  font-size: 1.5rem;
  line-height: 2;
}
@media screen and (min-width: 640px) and (max-width: 768px) {
  .txt-intro {
    font-size: clamp(1.5rem, 2.344vw, 1.8rem);
  }
}
@media screen and (min-width: 769px) and (max-width: 1440px) {
  .txt-intro {
    font-size: 1.8rem;
    font-size: clamp(1.584rem, 1.375vw, 2rem);
  }
}
@media screen and (min-width: 1441px) {
  .txt-intro {
    font-size: 2.07rem;
  }
}
@media print, screen and (min-width:769px) {
  .txt-intro {
    text-align: center;
  }
}

/* -------------------------------------------------------------------------
	ユーティリティmisc
*/
/*一字下げ*/
.indent-head {
  padding-left: 1.2em;
  text-indent: -1.2em;
}

.font-normal {
  font-weight: normal;
}

/* ==========================================================================

   ユーティリティモジュール

 */
/* -------------------------------------------------------------------------
	画像を100%に/100%を解除
	<img class="u-fit" src="xxx.jpg" />
*/
.u-fit {
  width: 100%;
  height: auto;
}

.u-free {
  width: auto;
}

/* -------------------------------------------------------------------------
	SPのみ、PCのみで改行させる
	<br class="u-spbr" />
	<br class="u-pcbr" />
*/
.u-spbr {
  display: none;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .u-spbr {
    display: inline;
  }
}

.u-pcbr {
  display: none;
}
@media print, screen and (min-width:769px) {
  .u-pcbr {
    display: inline;
  }
}

.u-tdbr {
  display: none;
}
@media only screen and (max-width: 768px) {
  .u-tdbr {
    display: inline;
  }
}

/* -------------------------------------------------------------------------
	フロート
*/
@media print, screen and (min-width:769px) {
  .u-floatL {
    float: left;
  }
}

@media print, screen and (min-width:769px) {
  .u-floatR {
    float: right;
  }
}

/* -------------------------------------------------------------------------
	position:relative
*/
.u-relative {
  position: relative;
}

/* -------------------------------------------------------------------------
	インラインテキストリンク
*/
.u-textLink:link, .u-textLink:visited {
  text-decoration: underline;
}
@media print, screen and (min-width:769px) {
  .u-textLink:hover {
    text-decoration: none;
  }
}

.u-textLink.--newwin::after {
  display: inline-block;
  content: "";
  width: 1.7rem;
  height: 1.7rem;
  margin-left: 1rem;
  background: url(../img/ic_newwin.svg) no-repeat center center/contain;
}

/* -------------------------------------------------------------------------
	縦書きテキスト
*/
.u-vertical-text {
  font-feature-settings: "pkna";
  writing-mode: vertical-rl;
  text-orientation: mixed;
  -ms-text-combine-horizontal: all;
}

/* -------------------------------------------------------------------------
	ブロック指定
*/
.u-inlineBlock {
  display: inline-block;
}

.u-block {
  display: block;
}

/* -------------------------------------------------------------------------
	リスト要素のスタイル
*/
.u-list-indent li {
  padding-left: 1em;
  text-indent: -1em;
}

.u-list-disc li {
  list-style-type: disc;
  margin-bottom: 1em;
  margin-left: 1.2em;
}

/* -------------------------------------------------------------------------
	PCレイアウト時に非表示
*/
.u-sp-only {
  display: none !important;
}

.u-pc-only {
  display: block !important;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .u-sp-only {
    display: block !important;
  }
  .u-pc-only {
    display: none !important;
  }
}
.u-noWrap {
  white-space: nowrap;
}

@media print, screen and (min-width:769px) {
  .u-pc-pdng {
    display: inline-block;
    width: 20px;
  }
}

/* -------------------------------------------------------------------------
	罫線
*/
.u-hr {
  border-top: 1px solid #B9B9B9;
}

/* -------------------------------------------------------------------------
	マージン bottom top
*/
.l-mb0 {
  margin-bottom: 0rem;
}

.l-mt0 {
  margin-top: 0rem;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-mb0-sp {
    margin-bottom: 0rem !important;
  }
  .l-mt0-sp {
    margin-top: 0rem !important;
  }
}
.l-mb10 {
  margin-bottom: 1rem;
}

.l-mt10 {
  margin-top: 1rem;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-mb10-sp {
    margin-bottom: 1rem !important;
  }
  .l-mt10-sp {
    margin-top: 1rem !important;
  }
}
.l-mb20 {
  margin-bottom: 2rem;
}

.l-mt20 {
  margin-top: 2rem;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-mb20-sp {
    margin-bottom: 2rem !important;
  }
  .l-mt20-sp {
    margin-top: 2rem !important;
  }
}
.l-mb30 {
  margin-bottom: 3rem;
}

.l-mt30 {
  margin-top: 3rem;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-mb30-sp {
    margin-bottom: 3rem !important;
  }
  .l-mt30-sp {
    margin-top: 3rem !important;
  }
}
.l-mb40 {
  margin-bottom: 4rem;
}

.l-mt40 {
  margin-top: 4rem;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-mb40-sp {
    margin-bottom: 4rem !important;
  }
  .l-mt40-sp {
    margin-top: 4rem !important;
  }
}
.l-mb50 {
  margin-bottom: 5rem;
}

.l-mt50 {
  margin-top: 5rem;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-mb50-sp {
    margin-bottom: 5rem !important;
  }
  .l-mt50-sp {
    margin-top: 5rem !important;
  }
}
.l-mb60 {
  margin-bottom: 6rem;
}

.l-mt60 {
  margin-top: 6rem;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-mb60-sp {
    margin-bottom: 6rem !important;
  }
  .l-mt60-sp {
    margin-top: 6rem !important;
  }
}
.l-mb70 {
  margin-bottom: 7rem;
}

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

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-mb70-sp {
    margin-bottom: 7rem !important;
  }
  .l-mt70-sp {
    margin-top: 7rem !important;
  }
}
.l-mb80 {
  margin-bottom: 8rem;
}

.l-mt80 {
  margin-top: 8rem;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-mb80-sp {
    margin-bottom: 8rem !important;
  }
  .l-mt80-sp {
    margin-top: 8rem !important;
  }
}
.l-mb90 {
  margin-bottom: 9rem;
}

.l-mt90 {
  margin-top: 9rem;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-mb90-sp {
    margin-bottom: 9rem !important;
  }
  .l-mt90-sp {
    margin-top: 9rem !important;
  }
}
.l-mb100 {
  margin-bottom: 10rem;
}

.l-mt100 {
  margin-top: 10rem;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-mb100-sp {
    margin-bottom: 10rem !important;
  }
  .l-mt100-sp {
    margin-top: 10rem !important;
  }
}
.l-mb110 {
  margin-bottom: 11rem;
}

.l-mt110 {
  margin-top: 11rem;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-mb110-sp {
    margin-bottom: 11rem !important;
  }
  .l-mt110-sp {
    margin-top: 11rem !important;
  }
}
.l-mb120 {
  margin-bottom: 12rem;
}

.l-mt120 {
  margin-top: 12rem;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-mb120-sp {
    margin-bottom: 12rem !important;
  }
  .l-mt120-sp {
    margin-top: 12rem !important;
  }
}
.l-mb130 {
  margin-bottom: 13rem;
}

.l-mt130 {
  margin-top: 13rem;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-mb130-sp {
    margin-bottom: 13rem !important;
  }
  .l-mt130-sp {
    margin-top: 13rem !important;
  }
}
.l-mb140 {
  margin-bottom: 14rem;
}

.l-mt140 {
  margin-top: 14rem;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-mb140-sp {
    margin-bottom: 14rem !important;
  }
  .l-mt140-sp {
    margin-top: 14rem !important;
  }
}
.l-mb150 {
  margin-bottom: 15rem;
}

.l-mt150 {
  margin-top: 15rem;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-mb150-sp {
    margin-bottom: 15rem !important;
  }
  .l-mt150-sp {
    margin-top: 15rem !important;
  }
}
.l-mb160 {
  margin-bottom: 16rem;
}

.l-mt160 {
  margin-top: 16rem;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-mb160-sp {
    margin-bottom: 16rem !important;
  }
  .l-mt160-sp {
    margin-top: 16rem !important;
  }
}
.l-mb170 {
  margin-bottom: 17rem;
}

.l-mt170 {
  margin-top: 17rem;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-mb170-sp {
    margin-bottom: 17rem !important;
  }
  .l-mt170-sp {
    margin-top: 17rem !important;
  }
}
.l-mb180 {
  margin-bottom: 18rem;
}

.l-mt180 {
  margin-top: 18rem;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-mb180-sp {
    margin-bottom: 18rem !important;
  }
  .l-mt180-sp {
    margin-top: 18rem !important;
  }
}
.l-mb190 {
  margin-bottom: 19rem;
}

.l-mt190 {
  margin-top: 19rem;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-mb190-sp {
    margin-bottom: 19rem !important;
  }
  .l-mt190-sp {
    margin-top: 19rem !important;
  }
}
.l-mb200 {
  margin-bottom: 20rem;
}

.l-mt200 {
  margin-top: 20rem;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-mb200-sp {
    margin-bottom: 20rem !important;
  }
  .l-mt200-sp {
    margin-top: 20rem !important;
  }
}
.l-mb210 {
  margin-bottom: 21rem;
}

.l-mt210 {
  margin-top: 21rem;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-mb210-sp {
    margin-bottom: 21rem !important;
  }
  .l-mt210-sp {
    margin-top: 21rem !important;
  }
}
.l-mb220 {
  margin-bottom: 22rem;
}

.l-mt220 {
  margin-top: 22rem;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-mb220-sp {
    margin-bottom: 22rem !important;
  }
  .l-mt220-sp {
    margin-top: 22rem !important;
  }
}
.l-mb230 {
  margin-bottom: 23rem;
}

.l-mt230 {
  margin-top: 23rem;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-mb230-sp {
    margin-bottom: 23rem !important;
  }
  .l-mt230-sp {
    margin-top: 23rem !important;
  }
}
.l-mb240 {
  margin-bottom: 24rem;
}

.l-mt240 {
  margin-top: 24rem;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-mb240-sp {
    margin-bottom: 24rem !important;
  }
  .l-mt240-sp {
    margin-top: 24rem !important;
  }
}
.l-mb250 {
  margin-bottom: 25rem;
}

.l-mt250 {
  margin-top: 25rem;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-mb250-sp {
    margin-bottom: 25rem !important;
  }
  .l-mt250-sp {
    margin-top: 25rem !important;
  }
}
.l-mb260 {
  margin-bottom: 26rem;
}

.l-mt260 {
  margin-top: 26rem;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-mb260-sp {
    margin-bottom: 26rem !important;
  }
  .l-mt260-sp {
    margin-top: 26rem !important;
  }
}
.l-mb270 {
  margin-bottom: 27rem;
}

.l-mt270 {
  margin-top: 27rem;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-mb270-sp {
    margin-bottom: 27rem !important;
  }
  .l-mt270-sp {
    margin-top: 27rem !important;
  }
}
.l-mb280 {
  margin-bottom: 28rem;
}

.l-mt280 {
  margin-top: 28rem;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-mb280-sp {
    margin-bottom: 28rem !important;
  }
  .l-mt280-sp {
    margin-top: 28rem !important;
  }
}
.l-mb290 {
  margin-bottom: 29rem;
}

.l-mt290 {
  margin-top: 29rem;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-mb290-sp {
    margin-bottom: 29rem !important;
  }
  .l-mt290-sp {
    margin-top: 29rem !important;
  }
}
.l-mb300 {
  margin-bottom: 30rem;
}

.l-mt300 {
  margin-top: 30rem;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-mb300-sp {
    margin-bottom: 30rem !important;
  }
  .l-mt300-sp {
    margin-top: 30rem !important;
  }
}
/* -------------------------------------------------------------------------
	テキスト揃え
*/
.l-alignL {
  text-align: left;
}

.l-alignR {
  text-align: right;
}

.l-alignC {
  text-align: center;
}

.l-block-alignC {
  margin-left: auto;
  margin-right: auto;
}

.l-valign-m {
  display: flex;
  align-items: center;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-sp-alignL {
    text-align: left;
  }
  .l-sp-alignR {
    text-align: right;
  }
  .l-sp-alignC {
    text-align: center;
  }
}
/* ==========================================================================
   animation
   ========================================================================== */


/* ==========================================================================
   インスタバナー追加　TOP　250827
   ========================================================================== */

.inst_bnr{
    position: absolute;
    top: 2.25rem;
    right: 13rem;
    width: 25rem;
    z-index: 11;
}
.inst_bnr a{
    transition: 0.5s;
}
.inst_bnr a:hover{
    opacity: .7;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .inst_bnr{
    position: absolute;
    top: 1.25rem;
    right: 6rem;
    width: 46vw;
}  
    
}






