@charset "UTF-8";
/*============================================
  CSS Document: utility.css
  Description: 余白やテキストのユーティリティクラス
============================================*/
.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.pt5 {
  padding-top: 5px;
}

.pt10 {
  padding-top: 10px;
}

.pt20 {
  padding-top: 20px;
}

.pt30 {
  padding-top: 30px;
}

.pb5 {
  padding-bottom: 5px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb30 {
  padding-bottom: 30px;
}

/*============================================
  CSS Document: components.css
  Description: コンポーネントスタイル
============================================*/
/*============================================
  CSS Document: style.css
  Description: ベーススタイル
============================================*/
.wrap {
  width: 100%;
}

/*-------------------------
index.php（HOME） pc
header
---------------------------*/
#header_outer {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  background: transparent;
  color: #333;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
#header_outer.change {
  background: #7a6955;
  background-image: url(http://www.transparenttextures.com/patterns/white-plaster.png);
  color: #fff;
  -webkit-box-shadow: 0 0 10px 1px #6f6f6f;
          box-shadow: 0 0 10px 1px #6f6f6f;
}
#header_outer.change .header {
  height: 90px;
}
#header_outer.change .infolist .bt01 a {
  color: #fff;
  border: 1px solid #fff;
}

.header {
  width: min(92%, 1200px);
  height: 105px;
  padding: 10px 0;
  margin: 0 auto;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}

.header_in {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
}

.logo_wrap {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.logo_wrap .logo {
  width: auto;
}

.logo a {
  width: 115px;
  height: auto;
  display: block;
}
.logo a img {
  width: 100%;
  height: auto;
  aspect-ratio: 198/115;
  -webkit-filter: drop-shadow(0 0 0.4px #333);
          filter: drop-shadow(0 0 0.4px #333);
}

.header_bt_area {
  width: auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.header_link {
  width: 100%;
  padding-top: 5px;
}

.infolist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
.infolist .bt01 {
  width: auto;
  margin-right: 20px;
}
.infolist .bt01:last-child {
  margin-right: 0;
}
.infolist .bt01 a {
  width: 150px;
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 1px;
  font-size: 0.9375rem;
  position: relative;
  color: #333;
  border: 1px solid #333;
  background: transparent;
  -webkit-transition: color 0.3s ease, background 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease;
}
.infolist .bt01 a .bt01_text {
  font-family: "IBM Plex Serif", serif;
}
.infolist .bt01 a:hover {
  color: #fff;
  background: #7a6955;
}

.nav_wrap {
  width: 100%;
}

.hamburger {
  display: none;
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

#gnav {
  width: auto;
  margin-bottom: 10px;
  -webkit-transition: margin-bottom 0.3s ease;
  transition: margin-bottom 0.3s ease;
}
#gnav.change {
  margin-bottom: 3px;
}
#gnav.change .gnav_list li::after {
  background: #fff;
}
#gnav.change .gnav_list li a {
  color: #fff;
}
#gnav.change .gnav_list li a:hover {
  color: rgba(196, 182, 160, 0.4666666667);
}

#gnav .gnav_list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  overflow: hidden;
}
#gnav .gnav_list li {
  position: relative;
  margin-right: 40px;
}
#gnav .gnav_list li:last-child {
  margin-right: 0;
}
#gnav .gnav_list li::after {
  content: "";
  width: 1px;
  height: 25px;
  display: block;
  position: absolute;
  top: 50%;
  right: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #333;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.gnav_list li:last-of-type::after {
  content: none;
}

.gnav_list li a {
  font-family: "IBM Plex Serif", serif;
  line-height: 1.2;
  color: #333;
  display: block;
  white-space: nowrap;
  font-size: 0.9375rem;
  letter-spacing: 1px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

@media (any-hover: hover) {
  .gnav_list li a:hover {
    color: #7a6955;
    white-space: nowrap;
  }
}

/*-------------------------
index.php（HOME） pc
visual_wrap
---------------------------*/
/* ここからバナーsplide1 */
.visual_wrap {
  width: 100%;
  position: relative;
}

.banner_splide_wrap {
  position: relative;
  width: 100%;
  margin: 0px auto 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  overflow: hidden;
}

.video_wrap {
  position: relative;
  width: 100%;
  margin: 130px auto 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.video_wrap .ofi {
  width: 100%;
  height: calc(100vh - 130px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 0%;
     object-position: 50% 0%;
  -webkit-transition: object-position 0.2s ease;
  transition: object-position 0.2s ease;
  transition: object-position 0.2s ease, -o-object-position 0.2s ease;
  /* ブレを軽減する */
  display: block;
}

@media screen and (max-width: 768px) {
  .video_wrap {
    margin: 0px auto 100px;
  }
  .video_wrap .ofi {
    width: 100%;
    height: calc(100vh - 0px);
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% 0%;
       object-position: 50% 0%;
    -webkit-transition: object-position 0.2s ease;
    transition: object-position 0.2s ease;
    transition: object-position 0.2s ease, -o-object-position 0.2s ease;
    /* ブレを軽減する */
    display: block;
  }
}
.splide_1 {
  width: 100%;
}
.splide_1 .splide__track,
.splide_1 .splide__list,
.splide_1 .splide__slide {
  height: 100%;
}
.splide_1 .splide__slide {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 縦中央寄せを強制 */
}

.wave-container {
  position: relative;
  opacity: 1;
  z-index: 1;
}

.wave-container img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100vw;
  height: 100vh;
  -webkit-filter: url(#wavy);
          filter: url(#wavy);
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
  display: block;
  will-change: opacity;
}
@supports (-webkit-touch-callout: none) {
  .wave-container img {
    -webkit-filter: none !important;
            filter: none !important;
    will-change: opacity;
  }
}

/* 非アクティブスライドの画像を非表示 */
.splide__slide:not(.is-active) .wave-container img {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.splide__slide.is-active .wave-container img {
  opacity: 1;
}

/* SVGを非表示にする */
.hidden-svg {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.banner_ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}
.banner_ttl .banner_text {
  display: inline-block;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-font-feature-settings: "vert";
          font-feature-settings: "vert";
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 2.625rem;
  letter-spacing: 1.5px;
  line-height: 1.8;
  color: #fff;
  text-align: left;
}
.banner_ttl .banner_text .home_char {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  display: inline-block;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.1s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.1s ease;
  transition: transform 0.1s ease, opacity 0.4s ease;
  transition: transform 0.1s ease, opacity 0.4s ease, -webkit-transform 0.1s ease;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.7), 1px 1px 4px rgba(0, 0, 0, 0.5), -1px -1px 4px rgba(0, 0, 0, 0.5), 0 2px 5px rgba(0, 0, 0, 0.4);
}
.banner_ttl .banner_text .home_char.home_arrow {
  -webkit-transform: rotate(-90deg) translateY(0);
          transform: rotate(-90deg) translateY(0);
  -webkit-transform-origin: center;
          transform-origin: center;
}
@supports (-webkit-touch-callout: none) {
  .banner_ttl .banner_text .home_char.home_arrow {
    -webkit-transform: rotate(-90deg) translateY(0);
            transform: rotate(-90deg) translateY(0);
  }
}
.banner_ttl .banner_text .home_char.home_punct {
  -webkit-transform: translateX(3px) translateY(20px);
          transform: translateX(3px) translateY(20px);
}
.banner_ttl .banner_text .home_char.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.banner_ttl .banner_text .home_char.visible.home_arrow {
  -webkit-transform: rotate(-90deg) translateY(0);
          transform: rotate(-90deg) translateY(0);
}
@supports (-webkit-touch-callout: none) {
  .banner_ttl .banner_text .home_char.visible.home_arrow {
    -webkit-transform: rotate(-90deg) translateY(0);
            transform: rotate(-90deg) translateY(0);
  }
}
.banner_ttl .banner_text .home_char.visible.home_punct {
  -webkit-transform: translateX(3px) translateY(0);
          transform: translateX(3px) translateY(0);
}
.banner_ttl .banner_text .change01 {
  color: #ffd700;
}

/* ここまでバナーsplide1 */
/* ここからsplide2 */
.splide_wrap_outer {
  position: relative;
  width: 100%;
  margin: 130px auto 100px;
}

.splide_wrap {
  position: relative;
  width: min(100%, 1200px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  overflow: hidden;
  margin: 0 auto;
}

.splide_2 {
  width: 60%;
  height: 80vh;
}
.splide_2 .splide__track,
.splide_2 .splide__list,
.splide_2 .splide__slide {
  width: 100%;
  height: 100%;
}
.splide_2 .custom-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  /* 左右の位置を中央に設定 */
  display: block;
}

.splide_ttl {
  position: absolute;
  text-align: left;
  top: 50%;
  left: 48%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
}
.splide_ttl .splide_text {
  opacity: 0;
  color: #333;
  font-size: 2.125rem;
  letter-spacing: 1.5px;
  line-height: 1.8;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.7), 1px 1px 4px rgba(255, 255, 255, 0.5), -1px -1px 4px rgba(255, 255, 255, 0.5), 0 2px 5px rgba(255, 255, 255, 0.4);
}
.splide_ttl .splide_text.active {
  opacity: 1;
}

/* ここまでsplide2 */
/*-------------------------
index.php（HOME） pc
main
---------------------------*/
main {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.greeting_wrap {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.greeting_wrap::before {
  content: "";
  position: absolute;
  top: -300px;
  left: 0;
  height: calc(100% + 300px);
  width: 100%;
  background: #f4f4f4;
  z-index: -1;
}

.greeting {
  width: min(92%, 1200px);
  margin: 0 auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  gap: 50px;
}

.greeting_pict {
  width: min(100%, 450px);
  height: auto;
  display: block;
  padding-top: 20px;
  margin-bottom: 30px;
}
.greeting_pict img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  /* 左右の位置を中央に設定 */
}

.greeting_in {
  width: min(100%, 520px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 2;
  margin-bottom: 100px;
}
.greeting_in .greeting_ttl {
  font-size: 1.875rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #333;
  letter-spacing: 1.5px;
  margin-bottom: 30px;
}
.greeting_in .greeting_sub_ttl {
  font-size: 1.125rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #333;
  margin-bottom: 20px;
}

.greeting_text_cover {
  max-height: 200px;
  margin-bottom: 20px;
}
.greeting_text_cover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(244, 244, 244, 0)), to(#f4f4f4));
  background: linear-gradient(to bottom, rgba(244, 244, 244, 0) 0, #f4f4f4 100%);
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.greeting_text_cover.expanded::after {
  opacity: 0;
}
.greeting_text_cover .greeting_text {
  font-size: 0.875rem;
  color: #333;
  margin-bottom: 20px;
}

.greeting_read_more {
  width: 120px;
  height: 30px;
  padding-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: transparent;
  border: none;
  color: #333;
  font-size: 0.875rem;
  letter-spacing: 1px;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
  border-radius: 4px;
  border: 1px solid #333;
  position: relative;
}
.greeting_read_more::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #333;
  -webkit-transition: border-top 0.3s ease, -webkit-transform 0.3s ease;
  transition: border-top 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, border-top 0.3s ease;
  transition: transform 0.3s ease, border-top 0.3s ease, -webkit-transform 0.3s ease;
}
.greeting_read_more.expanded::before {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
@media (any-hover: hover) {
  .greeting_read_more:hover {
    color: #777;
    border-color: #777;
  }
  .greeting_read_more:hover::before {
    border-top: 8px solid #777;
  }
}

.home_news {
  width: min(92%, 1200px);
  margin: 0 auto 100px;
  padding: 50px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.home_news .home_news_in {
  width: min(100%, 800px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
}
.home_news .home_news_in .home_news_ttl {
  font-size: 1.875rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #333;
  letter-spacing: 1.5px;
  line-height: 1;
  padding-top: 10px;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}
.home_news .home_news_in .home_news_ttl::after {
  position: absolute;
  content: "";
  bottom: -20px;
  left: 2px;
  display: block;
  width: 60px;
  height: 2px;
  background-color: #333;
  border-radius: 2px;
}

.home_news_list_wrap {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.home_news_list_wrap .home_news_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.home_news_item {
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}
.home_news_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  gap: 20px;
  line-height: 1.5; /* 行の高さだけ変わる */
}
.home_news_item a time {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #777;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.home_news_item a .home_news_text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 1rem;
  display: inline-block;
}
@media (any-hover: hover) {
  .home_news_item a:hover {
    color: #777;
  }
  .home_news_item a:hover time {
    color: #ccc;
  }
}

.home_measures {
  width: min(100%, 1200px);
  margin: 0 auto 100px;
  padding: 50px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.home_measures .home_measures_in {
  width: min(92%, 480px);
}

.home_measures_item {
  width: 100%;
}
.home_measures_item a {
  width: 100%;
  padding: 15px 20px 15px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  background: #333;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.home_measures_item a img {
  width: 25%;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.home_measures_item a .home_measures_ttl {
  font-size: 1.125rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #fff;
  letter-spacing: 1.5px;
  line-height: 1.2;
}
.home_measures_item a:hover {
  background: #444;
}
.home_measures_item a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.home_menu_wrap {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

.home_menu {
  width: min(92%, 1200px);
  margin: 0 auto;
  padding: 50px 0 50px;
  height: 100%;
  position: relative;
}
.home_menu::before {
  content: "";
  position: absolute;
  top: 8%;
  left: 40%;
  width: 150%;
  height: 70%;
  background: #f4f4f4;
  z-index: -1;
}
.home_menu .home_menu_in {
  max-width: 1100px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 40px;
}
.home_menu .home_menu_in .home_menu_ttl {
  font-size: 1.5625rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #333;
  letter-spacing: 1.5px;
  line-height: 1;
  padding-top: 10px;
  padding-right: 15px;
  position: relative;
  display: inline-block;
  margin-bottom: 0px;
}
.home_menu .home_menu_in .home_menu_ttl span {
  font-size: 1.125rem;
}
.home_menu .home_menu_in .home_menu_ttl::after {
  position: absolute;
  content: "";
  top: calc(50% + 10px);
  left: auto;
  -webkit-transform: translateY(calc(-50% - 4px));
          transform: translateY(calc(-50% - 4px));
  right: 0px;
  width: 2px;
  height: 22px;
  background-color: #333;
  border-radius: 2px;
}

.home_menu_item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 20px;
}
.home_menu_item .home_menu_item_btn {
  width: 100%;
  max-width: 550px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-decoration: none;
  color: inherit;
}

.home_menu_pict_cover {
  position: relative;
  overflow: hidden;
  width: min(100%, 550px);
  height: auto;
}
.home_menu_pict_cover::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.3);
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
}
.home_menu_pict_cover img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.home_menu_pict_cover .home_menu_sub_ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 1.25rem;
  padding: 0px 15px;
  margin: 0;
  overflow: hidden;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.home_menu_item_btn:hover .home_menu_pict_cover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.home_menu_item_btn:hover .home_menu_pict_cover::after {
  background: rgba(0, 0, 0, 0.7);
}

.home_menu_item_btn:hover .home_menu_sub_ttl {
  -webkit-transform: translate(-50%, -50%) scale(1.05);
          transform: translate(-50%, -50%) scale(1.05);
}

.home_column_wrap {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

.home_column {
  width: min(92%, 1200px);
  margin: 0 auto;
  padding: 50px 0 50px;
  height: 100%;
  position: relative;
}
.home_column::before {
  content: "";
  position: absolute;
  top: 8%;
  right: 40%;
  width: 150%;
  height: 70%;
  background: #f4f4f4;
  z-index: -1;
}
.home_column .home_column_in {
  max-width: 1100px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
}
.home_column .home_column_in .home_column_ttl {
  font-size: 1.5625rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #333;
  letter-spacing: 1.5px;
  line-height: 1;
  padding-top: 10px;
  padding-left: 15px;
  position: relative;
  display: inline-block;
  margin-bottom: 0px;
}
.home_column .home_column_in .home_column_ttl span {
  font-size: 1.125rem;
}
.home_column .home_column_in .home_column_ttl::after {
  position: absolute;
  content: "";
  top: calc(50% + 10px);
  right: auto;
  -webkit-transform: translateY(calc(-50% - 4px));
          transform: translateY(calc(-50% - 4px));
  left: 0px;
  width: 2px;
  height: 22px;
  background-color: #333;
  border-radius: 2px;
}

.home_column_item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 20px;
}
.home_column_item .home_column_item_btn {
  width: 100%;
  max-width: 550px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-decoration: none;
  color: inherit;
}

.home_column_pict_cover {
  position: relative;
  overflow: hidden;
  width: min(100%, 550px);
  height: auto;
}
.home_column_pict_cover::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
}
.home_column_pict_cover img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.home_column_pict_cover .home_column_sub_ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: 0;
  font-size: 1.25rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  z-index: 1;
}

.home_column_sub_ttl {
  font-size: 1rem;
  padding: 0px 15px;
  overflow: hidden;
}

.home_column_item_btn:hover .home_column_pict_cover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.home_column_item_btn:hover .home_column_pict_cover::after {
  background: rgba(0, 0, 0, 0.7);
}

.home_column_item_btn:hover .home_column_sub_ttl {
  -webkit-transform: translate(-50%, -50%) scale(1.05);
          transform: translate(-50%, -50%) scale(1.05);
}

.home_rec {
  width: min(92%, 1200px);
  margin: 0 auto 100px;
  padding: 50px 0 0;
}
.home_rec .home_rec_in {
  width: min(100%, 800px);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
}
.home_rec .home_rec_in .home_rec_ttl {
  font-size: 1.875rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #333;
  letter-spacing: 1.5px;
  line-height: 1;
  padding-top: 10px;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}
.home_rec .home_rec_in .home_rec_ttl::after {
  position: absolute;
  content: "";
  bottom: -20px;
  left: 2px;
  width: 60px;
  height: 2px;
  background-color: #333;
  border-radius: 2px;
}

.home_rec_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.home_rec_list .home_rec_item {
  width: 100%;
  position: reltive;
  padding-right: 30px;
}

.home_rec_item_btn {
  display: block;
  text-decoration: none;
  color: inherit;
}
.home_rec_item_btn .home_rec_pict_cover {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.home_rec_item_btn .home_rec_pict_cover::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.75);
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
  z-index: 0;
}
.home_rec_item_btn .home_rec_pict_cover img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.home_rec_item_btn .home_rec_pict_cover .home_rec_item_ttl {
  position: absolute;
  top: 45%;
  right: 10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: 0;
  font-size: 1.25rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  z-index: 1;
}

.home_rec_item_btn:hover .home_rec_pict_cover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.home_rec_item_btn:hover .home_rec_pict_cover::after {
  background: rgba(0, 0, 0, 0);
}

.home_rec_item_btn:hover .home_rec_pict_cover .home_rec_btn_icon {
  -webkit-transform: translateY(-50%) scale(1.05);
          transform: translateY(-50%) scale(1.05);
}

.home_rec_item_btn:hover .home_rec_pict_cover .home_rec_item_ttl {
  -webkit-transform: translateY(-50%) scale(1.05);
          transform: translateY(-50%) scale(1.05);
}

.home_rec_item_desc_wrap {
  position: relative; /* これを追加しないとz-indexが効かない */
  width: 90%;
  background: #fff;
  color: #333;
  margin: -25px 0 0 auto;
  padding: 15px 45px 15px 15px;
  z-index: 1;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
}

.home_rec_item_desc {
  text-align: right;
  font-size: 0.875rem;
  letter-spacing: 1px;
}

.home_rec_item_btn:hover .home_rec_item_desc_wrap {
  color: #fff;
  background: #333;
}

.home_voice {
  width: 100%;
  margin: 0 auto 100px;
  padding: 50px 0 0;
  position: relative;
}
.home_voice::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 20px;
  left: 0;
  background: #f4f4f4;
  z-index: -1;
}
.home_voice .home_voice_in {
  max-width: min(92%, 800px);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
}
.home_voice .home_voice_in .home_voice_ttl {
  font-size: 1.875rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #333;
  letter-spacing: 1.5px;
  line-height: 1;
  padding-top: 10px;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}
.home_voice .home_voice_in .home_voice_ttl::after {
  position: absolute;
  content: "";
  bottom: -20px;
  left: 2px;
  width: 60px;
  height: 2px;
  background-color: #333;
  border-radius: 2px;
}

.home_voice_item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 0 20px 0;
}

.home_voice_sub_ttl {
  font-size: 1rem;
  padding: 0px 15px 20px;
  overflow: hidden;
}
.home_voice_sub_ttl span {
  position: relative;
  display: inline-block;
}
.home_voice_sub_ttl span:nth-child(1)::before {
  position: absolute;
  top: 54%;
  left: -15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 6px;
  height: 14px;
  background: #333;
  padding-left: 10px;
}

.home_voice_text_cover {
  max-height: 100px;
  margin-bottom: 20px;
}
.home_voice_text_cover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0)), to(#f4f4f4));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, #f4f4f4 100%);
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.home_voice_text_cover.expanded::after {
  opacity: 0;
}
.home_voice_text_cover .home_voice_text_box {
  font-size: 0.875rem;
  color: #333;
  margin-bottom: 0px;
}
.home_voice_text_cover .home_voice_text_box .home_voice_text {
  letter-spacing: 0.5px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.home_voice_read_more {
  width: 120px;
  height: 30px;
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: transparent;
  border: none;
  color: #333;
  font-size: 0.875rem;
  letter-spacing: 1px;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
  border-radius: 4px;
  border: 1px solid #333;
  position: relative;
  margin: 0 auto;
}
.home_voice_read_more::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #333;
  -webkit-transition: border-top 0.3s ease, -webkit-transform 0.3s ease;
  transition: border-top 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, border-top 0.3s ease;
  transition: transform 0.3s ease, border-top 0.3s ease, -webkit-transform 0.3s ease;
}
.home_voice_read_more.expanded::before {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
@media (any-hover: hover) {
  .home_voice_read_more:hover {
    color: #777;
    border-color: #777;
  }
  .home_voice_read_more:hover::before {
    border-top: 8px solid #777;
  }
}

.link_bt_wrap {
  margin-bottom: 30px;
  text-align: center;
}
.link_bt_wrap .link_bt {
  width: 180px;
  margin: 20px auto;
  padding: 10px;
  position: relative;
  display: inline-block;
  font-size: 0.875rem;
  color: #fff;
  background: #333;
  border: 1px solid #333;
  -webkit-transition: background 0.2s ease, color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease;
}
.link_bt_wrap .link_bt::before, .link_bt_wrap .link_bt::after {
  content: "";
  top: 50%;
  right: -25%;
  height: 1px;
  background: #333;
  display: block;
  position: absolute;
  -webkit-transition: right 0.2s linear;
  transition: right 0.2s linear;
}
.link_bt_wrap .link_bt::before {
  width: 60px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.link_bt_wrap .link_bt::after {
  width: 15px;
  -webkit-transform: translateY(-50%) rotate(40deg);
          transform: translateY(-50%) rotate(40deg);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
}
.link_bt_wrap .link_bt:hover {
  background: transparent;
  color: #333;
}
.link_bt_wrap .link_bt:hover::before, .link_bt_wrap .link_bt:hover::after {
  right: -50px;
}

.home_info_wrap {
  width: min(92%, 1200px);
  margin: 0 auto 100px;
  padding: 50px 0 0;
}
.home_info_wrap .home_info {
  max-width: 800px;
  margin: 0 auto 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.home_info_wrap .home_info .home_info_ttl {
  font-size: 1.5625rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #333;
  letter-spacing: 1.5px;
  line-height: 1;
  padding: 20px 0;
  position: relative;
  margin-bottom: 40px;
  text-align: center;
}
.home_info_wrap .home_info .home_info_ttl::after {
  position: absolute;
  content: "";
  top: 65px;
  left: 50%;
  width: 2px;
  height: 40px;
  background-color: #333;
  border-radius: 2px;
}

.home_info_in {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  padding: 0;
}

.home_info_list_wrap {
  width: 50%;
}
.home_info_list_wrap .home_info_list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #333;
}
.home_info_list_wrap .home_info_list .home_info_item {
  font-size: 1rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.home_info_list_wrap .home_info_list .home_info_item .wb01 {
  font-weight: 500;
}
.home_info_list_wrap .home_info_list .home_info_item .home_tel {
  font-size: 1.375rem;
  font-family: "Lato", sans-serif;
}

.home_info_access {
  font-size: 0.9375rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 1px;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  position: relative;
  padding-left: 15px;
}
.home_info_access:first-child {
  padding-left: 0;
  margin-bottom: 4px;
}
.home_info_access:nth-child(n+2)::before {
  position: absolute;
  content: "";
  top: 11px;
  left: 5px;
  width: 5px;
  height: 5px;
  background-color: #333;
}

.home_gmap_wrap {
  width: calc(50% - 20px);
  margin: 0 auto;
}
.home_gmap_wrap .home_gmap {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1/1;
  /* aspect-ratio 非対応ブラウザ用 fallback */
}
.home_gmap_wrap .home_gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
@supports not (aspect-ratio: 1/1) {
  .home_gmap_wrap .home_gmap {
    height: 0;
    padding-bottom: 100%;
  }
}

/* ==========================
 動作のための共通クラス
 // JSスイッチ用（装飾控えめ）
========================== */
.text_cover {
  overflow: hidden;
  -webkit-transition: max-height 0.6s ease;
  transition: max-height 0.6s ease;
  position: relative;
}

.read-more {
  cursor: pointer;
}

/*-------------------------
index.php（HOME） pc
footer
---------------------------*/
.footer_wrap {
  width: 100%;
  padding: 60px 0 30px;
  background: rgba(196, 182, 160, 0.4666666667);
  background-image: url("../images/white-plaster.png");
}

.footer {
  width: min(70%, 1200px);
  margin: 0 auto;
}

.footer_bt_area {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  margin-bottom: 50px;
}
.footer_bt_area .footer_nav,
.footer_bt_area .footer_link,
.footer_bt_area .footer_logo {
  width: calc((100% - 60px) / 3);
  background: transparent;
}

.footer_nav_list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
.footer_nav_list li {
  width: 100%;
  margin-bottom: 10px;
  overflow: hidden;
  height: 35px;
}
.footer_nav_list li:last-child {
  margin-bottom: 0;
}
.footer_nav_list li a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "IBM Plex Serif", serif;
  font-size: 0.9375rem;
  color: #333;
  padding: 0 0 0 15px;
  position: relative;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  background: #fff;
  letter-spacing: 0.8px;
}
.footer_nav_list li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (any-hover: hover) {
  .footer_nav_list li a:hover {
    color: #777;
  }
  .footer_nav_list li a:hover::after {
    right: 15px;
    border-color: #777;
  }
}

.footer_link_list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  height: 100%;
}
.footer_link_list li {
  width: 100%;
  margin-bottom: 10px;
  height: 35px;
}
.footer_link_list li:last-child {
  margin-bottom: 0;
}
.footer_link_list li a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "IBM Plex Serif", serif;
  font-size: 0.9375rem;
  color: #333;
  padding: 0;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  border: 1px solid #fff;
  border-radius: 50px;
  letter-spacing: 0.8px;
}
@media (any-hover: hover) {
  .footer_link_list li a:hover {
    background: rgba(196, 182, 160, 0.4666666667);
  }
}

.footer_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.footer_logo a {
  width: 115px;
  height: auto;
  display: block;
}
.footer_logo a img {
  width: 100%;
  height: auto;
  aspect-ratio: 198/115;
}

.copyright {
  text-align: center;
  font-family: "IBM Plex Serif", serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: #333;
}

#page_top {
  display: none;
  position: fixed;
  bottom: 45px;
  right: 45px;
  z-index: 100;
}
#page_top a {
  position: relative;
  display: block;
  width: 100%;
  color: #333;
  font-family: "IBM Plex Serif", serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 2px;
  -webkit-transition: color 0.2s ease, text-shadow 0.2s ease;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}
#page_top a::before {
  content: "";
  position: absolute;
  top: -55px;
  left: 47.5%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  border: 2px solid #333;
  width: 50px;
  height: 50px;
  background: rgba(196, 182, 160, 0.4666666667);
  border-radius: 6px;
  -webkit-transition: background 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  transition: background 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
#page_top a::after {
  content: "";
  position: absolute;
  top: -35px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
  display: block;
  width: 16px;
  height: 16px;
  border: 2px solid #333;
  border-width: 2px 2px 0px 0px;
  z-index: 10;
}
@media (any-hover: hover) {
  #page_top a:hover {
    color: #333;
    text-shadow: 0 0 10px #a6957e;
  }
  #page_top a:hover::before {
    background: #a6957e;
    -webkit-box-shadow: 0 0 10px #a6957e;
            box-shadow: 0 0 10px #a6957e;
    border-color: #333;
  }
  #page_top a:hover::after {
    border-color: #333;
  }
}

/*-------------------------
menu.php pc

---------------------------*/
.page_common_wrap {
  width: 100%;
  padding-top: 80px;
  margin: 130px auto 130px;
  height: 100%;
  position: relative;
  background-image: radial-gradient(#eee 1px, transparent 1px);
  background-size: 10px 10px;
  background-color: #fff;
}

.page_common {
  width: min(92%, 1000px);
  height: 100%;
  position: relative;
  margin: 0 auto;
}

.page_common_in {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch; /* ← これがポイント */
  margin-bottom: 100px;
  position: relative;
  gap: 50px;
}

.page_ttl_wrap {
  width: calc((100% - 50px) * 0.52);
  height: 100%;
  margin-bottom: 20px;
}
.page_ttl_wrap .page_ttl {
  font-size: 1.875rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #333;
  letter-spacing: 1.5px;
  line-height: 1;
  padding-top: 10px;
  position: relative;
  display: inline-block;
  margin-bottom: 60px;
}
.page_ttl_wrap .page_ttl::before {
  position: absolute;
  content: "";
  bottom: -20px;
  left: 2px;
  display: block;
  width: 60px;
  height: 2px;
  background-color: #333;
  border-radius: 2px;
}
.page_ttl_wrap .page_ttl_text {
  font-size: 1.125rem;
  font-family: "Shippori Mincho", serif;
  color: #333;
  font-weight: 500;
  margin-bottom: 30px;
  letter-spacing: 1px;
  line-height: 1;
}

.page_subttl_wrap .page_subttl {
  font-size: 1.125rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #333;
  letter-spacing: 1px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.page_subttl_wrap .page_subttl_text {
  font-size: 0.875rem;
  color: #333;
  letter-spacing: 0.5px;
  line-height: 1.8;
  text-align: justify;
}

.menu_image_wrap {
  width: calc((100% - 50px) * 0.48);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.menu_image {
  width: 100%;
  height: auto;
  position: relative;
}
.menu_image img {
  width: 100%;
  height: auto;
}

.menu_list_wrap {
  width: min(92%, 1000px);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin: 0 auto;
}

.menu_list_in {
  width: 100%;
  color: #333;
  font-size: 1.25rem;
}

.technic_block {
  width: 70%;
  background: #fff;
  border: 1px solid #ccc;
  padding: 20px 0 20px 0;
  margin-bottom: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.technic_block:nth-child(odd) {
  margin-left: 0;
  margin-right: auto;
}
.technic_block:nth-child(even) {
  margin-left: auto;
  margin-right: 0;
}

@media (max-width: 768px) {
  .technic_block {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.technic_ttl {
  font-size: 1.25rem;
  padding: 7px 25px;
  margin-bottom: 10px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #333;
  letter-spacing: 1.5px;
  background: #f4f4f4;
}
.technic_ttl span {
  font-size: 80%;
  letter-spacing: 0px;
}

.menu_note {
  font-size: 0.8125rem;
  padding: 7px 17px;
}

.menu_list {
  width: 100%;
  font-size: 1.125rem;
  line-height: 1.7;
  padding: 25px 25px;
}

.menu_item dl {
  width: 100%;
  border-bottom: 1px solid #888888;
  padding-bottom: 18px;
  margin-bottom: 18px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.menu_item dt {
  width: 63%;
  text-align: left;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
}
.menu_item dt span {
  font-size: 85%;
  display: inline-block;
}

.menu_item dd:first-of-type {
  width: 37%;
  text-align: right;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
}
.menu_item dd:first-of-type span {
  font-size: 85%;
}

/* メニューの説明文 */
.menu_item dd.menu_text {
  width: 100%;
  text-align: left;
  font-size: 0.8125rem;
  padding: 10px 0 0 0;
}

.menu_notice {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: left;
}
.menu_notice .notice_list {
  margin-bottom: 40px;
}
.menu_notice .notice_list li {
  margin-bottom: 10px;
}
.menu_notice .notice_list li span {
  display: inline-block;
}

/*-------------------------
salon.php pc

---------------------------*/
.salon_visual_wrap {
  width: 100%;
  position: relative;
}

.salon_splide_wrap {
  position: relative;
  width: min(100%, 1200px);
  height: auto;
  margin: 200px auto 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  overflow: hidden;
}

#main-slider {
  width: 96%;
  height: 40vh;
  margin: 0 0 20px;
}
#main-slider .splide__track,
#main-slider .splide__list,
#main-slider .splide__slide {
  width: 100%;
  height: 100%;
}
#main-slider .splide__pagination__page {
  background-color: #fff;
  opacity: 1;
  border-radius: 0;
  width: 18px;
  height: 5px;
  margin: 0 4px 10px;
}
#main-slider .splide__pagination__page.is-active {
  background-color: #555;
  -webkit-transform: scale(1);
          transform: scale(1);
}
#main-slider .custom-slide2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  /* 左右の位置を中央に設定 */
  display: block;
}
#main-slider li.custom-slide2:nth-child(8) img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 60% 50%;
     object-position: 60% 50%;
  /* 左右の位置を右寄りに設定 */
  display: block;
}

#thumbnail-slider {
  width: 92%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  overflow: hidden;
}
#thumbnail-slider .splide__track,
#thumbnail-slider .splide__list,
#thumbnail-slider .splide__slide {
  width: 100%;
}
#thumbnail-slider .custom-slide2 {
  opacity: 0.4;
  border: none;
  border-bottom: 2px solid #fff;
}
#thumbnail-slider .custom-slide2.is-active {
  opacity: 1;
  border: none;
  border-bottom: 2px solid #333;
}
#thumbnail-slider .custom-slide2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  /* 左右の位置を中央に設定 */
  display: block;
}

.salon_ver {
  background-image: repeating-linear-gradient(0deg, #f4f4f4, #f4f4f4 1px, transparent 1px, transparent 6px), repeating-linear-gradient(90deg, #f4f4f4, #f4f4f4 1px, transparent 1px, transparent 6px);
  background-color: #fff;
  margin: 0px auto 130px;
  padding-top: 80px;
}

.salon_image_wrap {
  width: calc((100% - 50px) * 0.48);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.salon_image {
  width: 100%;
  height: auto;
  position: relative;
}
.salon_image img {
  width: 100%;
  height: auto;
}

.salon_main_wrap {
  width: 100%;
  color: #333;
  padding: 0 0;
  margin: 0px auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #fff;
}

.salon_info {
  width: min(92%, 1000px);
  text-align: left;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto 80px;
  padding: 80px 0 0;
  gap: 50px;
}

.salon_list_wrap {
  width: calc((100% - 50px) * 0.52);
  margin-bottom: 30px;
  padding: 30px 35px;
  background: #f4f4f4;
  border-radius: 3px;
}

.salon_ttl_wrap {
  width: 100%;
  text-align: center;
  margin-bottom: 25px;
}
.salon_ttl_wrap .salon_ttl {
  text-align: left;
  font-size: 1.125rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #333;
  letter-spacing: 1.5px;
  line-height: 1;
  position: relative;
  display: inline-block;
  padding: 0 30px;
  margin-bottom: 0px;
}
.salon_ttl_wrap .salon_ttl::before, .salon_ttl_wrap .salon_ttl::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 20px;
  height: 1px;
  background-color: #333;
}
.salon_ttl_wrap .salon_ttl::after {
  top: 50%;
  left: auto;
  right: 0;
}

.salon_list {
  width: 100%;
}
.salon_list .item {
  width: 100%;
  margin-bottom: 7px;
  line-height: 1.5;
  letter-spacing: 1.5px;
  color: #333;
}
.salon_list .item .tel {
  font-size: 1.4375rem;
  display: inline-block;
  padding-left: 25px;
  position: relative;
  white-space: nowrap;
  font-family: "Lato", sans-serif;
  font-weight: 700;
}
.salon_list .item .tel::before {
  content: "\e904";
  font-family: "icomoon";
  font-size: 1.25rem;
  position: absolute;
  top: 53%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.salon_list .item:last-of-type {
  margin-top: 15px;
  margin-bottom: 0;
}
.salon_list .item a {
  letter-spacing: 1.5px;
  color: #333;
}

.access {
  font-size: 0.9375rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 1px;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  position: relative;
  padding-left: 15px;
  line-height: 1.7;
}
.access:first-child {
  padding-left: 0;
  margin-bottom: 4px;
}
.access:nth-child(n+2)::before {
  position: absolute;
  content: "";
  top: 10px;
  left: 5px;
  width: 5px;
  height: 5px;
  background-color: #333;
}

.map_wrap {
  width: calc((100% - 50px) * 0.48);
  margin-bottom: 30px;
}
.map_wrap .map {
  width: 100%;
}
.map_wrap .map img {
  width: 100%;
  height: auto;
}

.gmap_wrap {
  width: min(92%, 1000px);
  margin: 0 auto 3%;
  /* aspect-ratio 非対応ブラウザ用 fallback */
}
.gmap_wrap .gmap {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
}
.gmap_wrap .gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
@supports not (aspect-ratio: 16/9) {
  .gmap_wrap .gmap {
    height: 0;
    padding-bottom: 56.25%;
  }
}

/*-------------------------
voice.php pc

---------------------------*/
.voice_image_wrap {
  width: calc((100% - 50px) * 0.48);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.voice_image {
  width: 100%;
  height: auto;
  position: relative;
}
.voice_image img {
  width: 100%;
  height: auto;
}

.voice_main_wrap {
  width: min(92%, 1000px);
  height: 100%;
  position: relative;
  margin: 0 auto;
}

.voice_list_wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  color: #333;
  padding-bottom: 80px;
  margin: 0px auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.content {
  width: 60%;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 0 0 10px 10px;
}

.content h3 {
  font-size: 1rem;
  margin-bottom: 25px;
  padding: 15px 35px;
  background: #f4f4f4;
  overflow: hidden;
}

.content h3 span {
  position: relative;
  display: inline-block;
}

.content h3 span:nth-child(1)::before {
  position: absolute;
  top: 54%;
  left: -15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 6px;
  height: 14px;
  background: #333;
  padding-left: 10px;
}

.content h3 span:nth-child(2)::after {
  font-family: "icomoon";
  content: "\e900";
  font-size: 1.5625rem;
  position: absolute;
  top: -27%;
  right: -35px;
  color: #888;
}

.text-container {
  position: relative;
  max-height: 80px; /* 初期高さ制限 */
  overflow: hidden;
  -webkit-transition: max-height 0.6s ease;
  transition: max-height 0.6s ease; /* スムーズかつ少し遅めのトランジション */
  margin-bottom: 20px;
}

.text-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgb(255, 255, 255)));
  background: linear-gradient(to bottom, transparent, rgb(255, 255, 255)); /* フェードアウト効果 */
  pointer-events: none; /* イベントを透過 */
}

.text-container.expanded::after {
  display: none; /* 展開時は非表示 */
}

.text-container .text {
  width: 100%;
  padding: 0 20px;
}

.text-container .text p {
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.voice-readmore {
  color: white;
  border: none;
  width: 120px;
  height: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px auto;
  background-color: #333;
  cursor: pointer;
  border-radius: 4px;
  font-size: 0.875rem;
  position: relative;
  overflow: auto;
  -webkit-transition: background-color 0.3s ease, opacity 0.3s ease;
  transition: background-color 0.3s ease, opacity 0.3s ease; /* ボタンのアニメーション */
}
@media (any-hover: hover) {
  .voice-readmore:hover {
    background-color: #888;
  }
}
.voice-readmore.clicked {
  background-color: #888; /* クリック時の色変更 */
}

/*-------------------------
column.php pc

---------------------------*/
#header_outer.column {
  background: transparent;
}

#header_outer.column.change {
  background: #333;
}

.bt01 a.column_only_color {
  color: #fff;
  border: 1px solid #fff;
}

#gnav.column_only_color ul li a {
  color: #fff;
}

#gnav.column_only_color ul li::after {
  background: #fff;
}

.column_visual_wrap {
  width: 100%;
  position: relative;
}

.column_video_wrap {
  position: relative;
  width: min(100%, 1200px);
  margin: 0px auto 0px;
  height: 100vh;
}
.column_video_wrap .column_ofi {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  -webkit-transition: object-position 0.2s ease;
  transition: object-position 0.2s ease;
  transition: object-position 0.2s ease, -o-object-position 0.2s ease;
  /* ブレを軽減する */
  display: block;
  z-index: -1;
}

.column_video_anime_wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.column_video_anime {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 228px; /* SVGの表示幅を指定 */
  height: auto;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.column_video_anime svg {
  width: 100%;
  height: auto;
}
.column_video_anime path {
  fill: transparent;
  stroke: #fff;
  stroke-width: 2;
  stroke-dasharray: var(--path-length);
  stroke-dashoffset: var(--path-length);
  -webkit-animation: draw 1s ease forwards, fillIn 0.5s ease forwards;
          animation: draw 1s ease forwards, fillIn 0.5s ease forwards;
}
.column_video_anime #kamin path {
  -webkit-animation-delay: 1s, 2s;
          animation-delay: 1s, 2s;
}
.column_video_anime #hikari path {
  -webkit-animation-delay: 2s, 3s;
          animation-delay: 2s, 3s;
}
.column_video_anime #shi_left path {
  -webkit-animation-delay: 3s, 3.5s;
          animation-delay: 3s, 3.5s;
}
.column_video_anime #shi_right path {
  -webkit-animation-delay: 3.5s, 4s;
          animation-delay: 3.5s, 4s;
}
@-webkit-keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes fillIn {
  to {
    fill: #fff;
  }
}
@keyframes fillIn {
  to {
    fill: #fff;
  }
}
.column_video_anime .name {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 1.75rem;
  font-family: "Shippori Mincho", serif;
  color: #fff;
  visibility: hidden;
  display: inline-block;
}
.column_video_anime .name:nth-of-type(1) {
  margin-left: 6px;
  margin-top: 14px;
}
.column_video_anime .name:nth-of-type(2) {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-bottom: 14px;
}
.column_video_anime .name:nth-of-type(2) .char:first-child {
  margin-bottom: 10px;
}
.column_video_anime .name .char {
  opacity: 0;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  display: inline-block;
  -webkit-animation: charFade 0.5s ease forwards;
          animation: charFade 0.5s ease forwards;
}
@-webkit-keyframes charFade {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes charFade {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.column_ver {
  background-image: repeating-linear-gradient(0deg, #f4f4f4, #f4f4f4 1px, transparent 1px, transparent 6px), repeating-linear-gradient(90deg, #f4f4f4, #f4f4f4 1px, transparent 1px, transparent 6px);
  background-color: #fff;
  margin: 0px auto 0;
  padding-top: 80px;
  padding-bottom: 130px;
}

.column_image_wrap {
  width: calc((100% - 50px) * 0.48);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.column_image {
  width: 100%;
  height: auto;
  position: relative;
}
.column_image img {
  width: 100%;
  height: auto;
}

.toc {
  width: 100%;
  position: relative;
  margin: 0 auto 150px;
  font-size: 1.25rem;
  z-index: 0;
  background: #f4f4f4;
  padding: 40px 0 50px;
}

.toc_ttl {
  width: min(92%, 1000px);
  font-size: 1.125rem;
  margin: 0 auto 50px;
}
.toc_ttl span {
  position: relative;
  padding: 0px 28px;
  display: inline-block;
  font-family: "Shippori Mincho", serif;
  font-size: 1.125rem;
  color: #333;
}
.toc_ttl span::before, .toc_ttl span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 1px;
  background: #333;
  z-index: 1;
}
.toc_ttl span::after {
  left: auto;
  right: 0;
}

.toc_list_w {
  width: min(92%, 1000px);
  padding: 0;
  margin-bottom: 150px;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  margin: 0 auto;
}
.toc_list_w .toc_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 25px;
}

.toc_item {
  width: 100%;
}
.toc_item a {
  display: inline-block;
  padding-left: 12px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  color: #333;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  position: relative;
  font-size: 1rem;
  text-decoration: underline;
  text-decoration-color: #777;
  text-underline-offset: 4px;
}
.toc_item a::before {
  content: "";
  position: absolute;
  top: 53%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: #333;
}
@media (any-hover: hover) {
  .toc_item a:hover {
    color: #777;
  }
  .toc_item a:hover::before {
    background: #777;
  }
}

.column_main_wrap {
  width: min(92%, 1000px);
  height: 100%;
  position: relative;
  margin: 0 auto;
}

.column_ttl_wrap {
  width: min(100%, 750px);
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 50px;
}

.column_ttl_in {
  width: calc((100% - 50px) * 0.52);
  padding: 10px 10px 10px 15px;
  position: relative;
}
.column_ttl_in::before {
  position: absolute;
  content: "";
  top: 15px;
  left: 0;
  width: 2px;
  height: 62px;
  background: #333;
}
.column_ttl_in p {
  font-size: 1rem;
}
.column_ttl_in span {
  font-size: 0.875rem;
}

.column_title {
  font-size: 1.875rem;
  font-family: "YuMincho", "Hiragino Mincho ProN", "Shippori Mincho", serif;
  color: #333;
  font-weight: 600;
  line-height: 1.8;
}
.column_title ruby {
  ruby-position: over;
}
.column_title ruby rt {
  font-size: 0.625rem;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 2px;
}
.column_title .small {
  font-size: 85%;
  font-weight: bold;
  letter-spacing: -2px;
}

.column_book_wrap {
  width: calc((100% - 50px) * 0.48);
}
.column_book_wrap img {
  width: 100%;
  height: auto;
}

.column_list_wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  color: #333;
  padding-bottom: 80px;
  margin: 0px auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.column_item {
  width: min(100%, 750px);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border: 1px solid #ccc;
  background: #fff;
}

.column_item h3 {
  margin-bottom: 25px;
  padding: 25px 60px;
  overflow: hidden;
  position: relative;
}
.column_item h3::before {
  content: "";
  width: 100%;
  height: 40px;
  position: absolute;
  top: 20px;
  left: 0;
  background: #f4f4f4;
}
.column_item h3 span {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-radius: 5px;
  padding: 0;
  position: relative;
  z-index: 0;
}
.column_item h3 span::after {
  font-family: "icomoon";
  content: "\e905";
  font-size: 1.375rem;
  position: absolute;
  top: 50%;
  left: -30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #333;
  font-weight: normal;
}

.column-text-container {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  -webkit-transition: max-height 0.6s ease;
  transition: max-height 0.6s ease; /* スムーズかつ少し遅めのトランジション */
}

.column-text-container .column-text {
  width: 100%;
  padding: 0 30px;
}

.column-text-container .column-text {
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  line-height: 1.7;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 表示したい行数 */
  overflow: hidden;
  text-overflow: ellipsis;
}

.column-text-container.column-expanded .column-text {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.column-readmore {
  color: white;
  border: none;
  width: 120px;
  height: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px auto;
  background-color: #333;
  cursor: pointer;
  border-radius: 4px;
  font-size: 0.875rem;
  position: relative;
  overflow: auto;
  -webkit-transition: background-color 0.3s ease, opacity 0.3s ease;
  transition: background-color 0.3s ease, opacity 0.3s ease; /* ボタンのアニメーション */
}
@media (any-hover: hover) {
  .column-readmore:hover {
    background-color: #888;
  }
}
.column-readmore.clicked {
  background-color: #888; /* クリック時の色変更 */
}

.column_footer {
  position: relative;
}
.column_footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #fff;
  z-index: -1;
}

/*-------------------------
concept.php pc

---------------------------*/
.concept_ver {
  background: #fff;
}

.page_ttl_center_wrap {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page_ttl_center {
  max-width: 650px;
  font-size: 1.75rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #333;
  letter-spacing: 1.5px;
  line-height: 1;
  padding: 20px 90px;
  position: relative;
  margin-bottom: 90px;
  text-align: center;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}
.page_ttl_center::before, .page_ttl_center::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 1px;
  height: 100px;
  background-color: #333;
  border-radius: 2px;
}
.page_ttl_center::after {
  left: auto;
  right: 20px;
}

.page_ttl_center_text {
  max-width: 650px;
  font-size: 1.125rem;
  font-family: "Shippori Mincho", serif;
  color: #333;
  font-weight: 500;
  margin-bottom: 65px;
  letter-spacing: 1px;
  line-height: 1;
  text-align: center;
}

.page_subttl_center_wrap {
  width: 100%;
  margin: 0 auto 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page_subttl_center {
  max-width: 650px;
  font-size: 1.125rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #333;
  letter-spacing: 1px;
  line-height: 2;
  margin-bottom: 65px;
  text-align: center;
}

.concept_main_wrap {
  width: min(92%, 650px);
  height: 100%;
  position: relative;
  margin: 0 auto;
}

.concept_text_wtap {
  width: 100%;
  margin-bottom: 120px;
}
.concept_text_wtap .concept_text {
  max-width: 650px;
  font-size: 0.9375rem;
  color: #333;
  letter-spacing: 0.5px;
  line-height: 2;
  text-align: justify;
  margin-bottom: 32px;
}
.concept_text_wtap .concept_text:last-child {
  margin-bottom: 0;
}

.concept_main_in {
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #333;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 30px;
  text-align: center;
}

/*-------------------------
sitemap.php pc

---------------------------*/
.page_ttl_sitemap {
  width: 100vw;
  margin: 0 calc(-50vw - 50%) 30px;
  font-size: 1.875rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #333;
  letter-spacing: 1.5px;
  line-height: 1;
  padding: 40px 0;
  position: relative;
  text-align: center;
  /* 斜めストライプ背景 */
  background-image: repeating-linear-gradient(90deg, #eee 0px, #eee 1px, transparent 1px, transparent 8px);
  background-color: transparent;
}
.page_ttl_sitemap::after {
  position: absolute;
  content: "";
  bottom: -15px;
  left: 50%;
  display: block;
  width: 2px;
  height: 40px;
  background-color: #333;
  border-radius: 2px;
}

.sitemap_main_wrap {
  width: min(92%, 650px);
  height: 100%;
  position: relative;
  margin: 0 auto;
}

.sitemap_link_wrap {
  width: 100%;
  margin-bottom: 50px;
  padding-top: 50px;
}

.sitemap_link {
  letter-spacing: 1px;
  line-height: 2;
  text-align: left;
}
.sitemap_link .sitemap_item {
  color: #333;
  margin-bottom: 40px;
  font-size: 1.125rem;
  font-family: "Shippori Mincho", serif;
}
.sitemap_link .sitemap_item a {
  display: block;
  padding-left: 30px;
  position: relative;
  border-bottom: 1px solid #333;
  font-size: 1rem;
  color: #333;
  background: #fbfbfb;
  letter-spacing: 0.5px;
  line-height: 2.7;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
}
.sitemap_link .sitemap_item a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid #333;
}
.sitemap_link .sitemap_item a:hover {
  background: #333;
  color: #fbfbfb;
}
.sitemap_link .sitemap_item a:hover::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  border: 5px solid #fbfbfb;
  left: 10px;
}

/*-------------------------
news.php pc

---------------------------*/
.news_main_wrap {
  width: 100%;
  color: #333;
  padding: 0;
  margin: 0px auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.news_list_wrap {
  width: min(92%, 600px);
  margin: 0 auto 50px;
  padding-top: 50px;
}

.news_list {
  letter-spacing: 1px;
  line-height: 1.5;
  text-align: left;
}
.news_list .news_item {
  color: #333;
  padding-bottom: 60px;
  margin-bottom: 60px;
  font-size: 1.125rem;
  border-bottom: 1px solid #333;
  letter-spacing: 1px;
}
.news_list .news_item:last-child {
  margin-bottom: 0;
}
.news_list .news_item time {
  display: block;
  margin-bottom: 10px;
  font-size: 1.0625rem;
}
.news_list .news_item .news_item_ttl {
  font-family: "Shippori Mincho", serif;
  font-size: 1.1875rem;
  margin-bottom: 10px;
  font-weight: 500;
}
.news_list .news_item .news_item_txt {
  margin-bottom: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
}

/*-------------------------
infection-prevention.php pc
measuresのページです

---------------------------*/
.very_light_gray_ver {
  background: #fbfbfb;
  overflow: hidden;
}

.measures_in {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
}

.page_ttl_measures {
  width: 100vw;
  margin: 0 calc(-50vw - 50%) 30px;
  font-size: 1.5625rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #333;
  letter-spacing: 1.5px;
  line-height: 1;
  padding: 40px 0;
  position: relative;
  text-align: center;
  /* 斜めストライプ背景 */
  background-image: repeating-linear-gradient(90deg, #eee 0px, #eee 1px, transparent 1px, transparent 8px);
  background-color: transparent;
}
.page_ttl_measures::after {
  position: absolute;
  content: "";
  bottom: -15px;
  left: 50%;
  display: block;
  width: 2px;
  height: 40px;
  background-color: #333;
  border-radius: 2px;
}

.measures_text {
  max-width: 650px;
  font-size: 0.9375rem;
  color: #333;
  letter-spacing: 0.5px;
  line-height: 2;
  text-align: justify;
  margin-bottom: 20px;
}

.measures_list_wrap {
  width: min(100%, 650px);
  margin: 0 auto 20px;
  padding-top: 50px;
}

.measures_list_ttl {
  width: 100%;
  font-size: 1.25rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #333;
  letter-spacing: 1px;
  line-height: 2;
  margin-bottom: 45px;
  text-align: center;
}

.measures_list_text {
  width: 100%;
  font-size: 1rem;
  color: #333;
  letter-spacing: 1px;
  line-height: 1.5;
  margin-bottom: 30px;
  text-align: center;
}
.measures_list_text.text-left {
  text-align: left;
}

.measures_list {
  width: min(100%, 650px);
  font-size: 1rem;
  margin: 0 auto 20px;
  padding-top: 10px;
  line-height: 2;
  letter-spacing: 1px;
  color: #333;
}

.measures_item {
  width: 100%;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 1px;
  color: #333;
  background: #f4f4f4;
  padding: 10px 20px;
  margin-bottom: 10px;
}
.measures_item:nth-child(6) {
  line-height: 1.5;
  background: #fbfbfb;
  padding: 20px 0px;
}

.measures_pict_wrap {
  width: min(100%, 650px);
  margin: 0 auto 70px;
  padding-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
}
.measures_pict_wrap figure {
  width: calc((100% - 80px) / 3);
  margin: 10px 0;
  font-size: 0.875rem;
}
.measures_pict_wrap figure img {
  width: 100%;
  height: auto;
}

/*-------------------------
cut.php pc
cutのページです

---------------------------*/
.rec_wrap {
  width: 100%;
  padding-top: 80px;
  margin: 130px auto 130px;
  height: 100%;
  position: relative;
  background-size: 10px 10px;
}

.rec {
  width: 100%;
  height: 100%;
  position: relative;
  margin: 0 auto;
}

.rec_in {
  width: 100%;
  margin: auto;
  height: 100%;
  margin-bottom: 100px;
}

.rec_ttl_wrap {
  width: min(92%, 1000px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 30px; /* padding-left 代用 */
  color: #333;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  margin: 0 auto 50px;
}

.rec_ttl_text {
  font-size: 1.875rem;
  position: relative;
}
.rec_ttl_text::before {
  content: "";
  position: absolute;
  width: 44px;
  height: 2px;
  background: #333;
  border-radius: 1.5px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 20px;
  right: -42px;
}

.rec_ttl {
  font-size: 1.25rem;
  margin: 0;
}

.rec_subttl_wrap {
  width: min(92%, 1000px);
  margin: 0 auto 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.rec_subttl_wrap .rec_subttl {
  width: min(100%, 600px);
  font-size: 1.125rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #333;
  letter-spacing: 1px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.rec_subttl_wrap .rec_subttl_text {
  max-width: 600px;
  font-size: 0.875rem;
  color: #333;
  letter-spacing: 0.5px;
  line-height: 1.8;
  text-align: justify;
}

.rec_pixt_hidden {
  overflow: hidden;
  height: 100%;
}

.rec_pixt_wrap {
  width: min(92%, 1000px);
  height: 100%;
  margin: 0 auto 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8%;
  padding: 80px 0 144px;
}

.rec_pixt_wrap:nth-child(2) {
  padding-top: 0;
}

.rec_pict {
  width: 46%;
  padding-bottom: 96px;
}

.rec_pict_inner {
  width: 100%;
  position: relative;
}
.rec_pict_inner img {
  width: 100%;
  height: auto;
  display: block;
}
.rec_pict_inner.one {
  -webkit-transform: translateY(64px);
          transform: translateY(64px);
}
.rec_pict_inner.two {
  -webkit-transform: translateY(144px);
          transform: translateY(144px);
}

.rec_pict_inner.one::before,
.rec_pict_inner.two::before {
  content: "";
  position: absolute;
  width: 300%;
  height: 100%;
  background: #f4f4f4;
  border-radius: 1.5px;
  z-index: -1;
}

.rec_pict_inner.one::before {
  top: -20%;
  right: 15%;
}

.rec_pict_inner.two::before {
  top: 20%;
  left: 15%;
}

.rec_pict_ttl {
  position: absolute;
  bottom: -96px;
  font-size: 0.875rem;
  color: #333;
  letter-spacing: 1px;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 85px;
}

/* カットの動画の指定 */
.rec_pict video {
  display: block;
  position: relative;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 0%;
     object-position: 50% 0%;
  aspect-ratio: 3/2;
}

.rec_teq_wrap {
  width: min(92%, 1000px);
  margin: 0 auto 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.rec_teq_wrap:nth-of-type(n+3) {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.rec_teq_wrap:last-child {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0 auto 0px;
}
.rec_teq_wrap .rec_teq_subttl {
  width: min(100%, 600px);
  font-size: 1.125rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #333;
  letter-spacing: 1px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.rec_teq_text {
  width: min(100%, 600px);
  font-size: 0.875rem;
  color: #333;
  letter-spacing: 0.5px;
  line-height: 1.8;
  text-align: justify;
}

.rec_teq_list {
  width: min(100%, 600px);
  margin: 20px 0;
  background: #f4f4f4;
  padding: 10px;
}
.rec_teq_list.mt0 {
  margin-top: 0;
}
.rec_teq_list li {
  font-size: 0.875rem;
  margin-bottom: 6px;
  line-height: 1.8;
  color: #333;
  padding-left: 15px;
  position: relative;
}
.rec_teq_list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 5px;
  height: 5px;
  background: #333;
}
.rec_teq_list li:last-child {
  margin-bottom: 0;
}

/*-------------------------
columnの下の階層 pc
columnの各ページです

---------------------------*/
html.page_gray, body.page_gray {
  background-color: #fbfbfb;
  background-image: url(http://www.transparenttextures.com/patterns/swirl.png);
  background-position: center top;
}

.col_outer_bg {
  width: 100%;
  padding-top: 210px;
  margin: 0px auto 130px;
  height: 100%;
}

.col_wrap {
  width: min(92%, 1000px);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 50px;
  margin: 0 auto;
}

.col_primary {
  width: calc((100% - 50px) * 0.7);
  height: 100%;
  position: relative;
}

.col_common {
  width: 100%;
  position: relative;
}

.col_common_in {
  width: 100%;
  margin-bottom: 32px;
  position: relative;
}

.col_ttl_wrap {
  width: 100%;
}

.col_ttl {
  width: 100%;
  font-size: 1.875rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #333;
  letter-spacing: 1.5px;
  line-height: 1.5;
  padding: 10px 0 0 20px;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}
.col_ttl::before {
  position: absolute;
  content: "";
  top: 20px;
  left: 2px;
  display: block;
  width: 4px;
  height: 28px;
  background-color: #333;
}

.col_date {
  display: inline-block;
  font-size: 1rem;
  color: #333;
  letter-spacing: 1.5px;
  margin-bottom: 80px;
  line-height: 1;
}

.col_subttl_wrap .col_subttl {
  font-size: 1.125rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #333;
  letter-spacing: 1px;
  line-height: 1.5;
  margin-bottom: 40px;
}
.col_subttl_wrap .col_subttl_text {
  font-size: 0.9375rem;
  color: #333;
  letter-spacing: 0.5px;
  line-height: 2;
  text-align: justify;
}

.col_main_wrap {
  width: 100%;
  height: 100%;
  position: relative;
  margin: 0 auto;
}

.col_text_wrap {
  width: 100%;
  margin-bottom: 120px;
}
.col_text_wrap .col_text {
  max-width: 100%;
  font-size: 0.9375rem;
  color: #333;
  letter-spacing: 0.5px;
  line-height: 2;
  text-align: justify;
  margin-bottom: 32px;
}
.col_text_wrap .col_text:last-child {
  margin-bottom: 0;
}

.col_secondary {
  width: calc((100% - 50px) * 0.3);
  height: 100%;
  position: relative;
  margin: 70px auto 0;
}

.col_side_wrap {
  width: 100%;
}
.col_side_wrap .col_side_ttl {
  font-size: 1rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #333;
  letter-spacing: 1px;
  line-height: 1.5;
  padding-top: 10px;
  margin-bottom: 15px;
}

.side_btn_wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 20px;
}

.side_btn_cover {
  width: 100%;
}

.side_btn {
  display: block;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.side_btn:hover {
  -webkit-box-shadow: 2px 2px 0px 1px #ccc;
          box-shadow: 2px 2px 0px 1px #ccc;
}
.side_btn:hover .side_col_date {
  color: #777;
}
.side_btn:hover .side_col_ttl {
  color: #777;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: #777;
}
.side_btn .btn_in {
  width: 100%;
  padding: 30px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 0.875rem;
  gap: 15px;
}
.side_btn .side_col_date {
  font-size: 1rem;
  color: #333;
  letter-spacing: 1.5px;
  line-height: 1.5;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.side_btn .side_col_ttl {
  font-size: 1rem;
  color: #333;
  letter-spacing: 1px;
  line-height: 1.5;
}/*# sourceMappingURL=style.css.map */