@charset "UTF-8";
/*
Theme Name: 町湯
Theme URI:
Author: MojaDesign
Author URI: https://moja-d.com/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: MojaDesign
*/
/*********************************************************************
* ブレークポイント定義
**********************************************************************/
/*********************************************************************
* メディアクエリー定義
**********************************************************************/
/*********************************************************************
  フォントサイズ
    $font-size: フォントサイズ(必須)
    $line-height: ラインハイト or 空
    $letter-spacing: レタースペーシング or 空
**********************************************************************/
/* ************************************************
 *	base
 * ************************************************ */
html, html *, body, header, footer {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
}

html {
  /*サイト全体の基準となるフォントサイズ*/
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  position: relative;
  background-color: #FBFBF9;
  color: #282626;
  font-size: 1.6rem;
  font-family: var(--base_font_family_setting);
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  line-height: 2;
  padding: 0;
  margin: 0;
  -webkit-animation: fadein 1s;
  animation: fadein 1s;
}
@media print, screen and (min-width: 960px) {
  body {
    font-size: 1.8rem;
  }
}

a[href^="tel:"] {
  cursor: default;
}
@media print, screen and (min-width: 960px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  a[href^="tel:"]:hover {
    opacity: unset;
    transition: none;
  }
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ************************************************
 *	共通クラス定義
 * *************************************************/
/* コンテンツ枠定義
---------------------------------------------------*/
#content-wrap {
  position: relative;
  overflow: hidden;
  padding-top: 56px;
}
@media print, screen and (min-width: 960px) {
  #content-wrap {
    padding-top: 96px;
  }
}
#content-wrap.front {
  padding-top: 0;
}
@media print, screen and (min-width: 960px) {
  #content-wrap.front {
    padding-top: 96px;
  }
}

.inner {
  max-width: 1184px;
  padding: 0 5%;
  margin: 0 auto;
}
@media print, screen and (min-width: 960px) {
  .inner {
    padding: 0 32px;
  }
}
.inner.short {
  max-width: 1064px;
}
.inner.middle {
  max-width: 1280px;
}
.inner.right-side {
  max-width: 100%;
}
@media print, screen and (min-width: 960px) {
  .inner.right-side {
    padding: 0 0 0 32px;
  }
}
@media print, screen and (min-width: 1328px) {
  .inner.right-side {
    padding-left: calc((100% - 1120px) / 2);
  }
}

/* アンカーずれ補正
---------------------------------------------------*/
.anchor {
  padding-top: 56px;
  margin-top: -56px;
}
@media print, screen and (min-width: 960px) {
  .anchor {
    padding-top: 100px;
    margin-top: -100px;
  }
}

/* 明朝体
---------------------------------------------------*/
.mincho {
  font-family: "Shippori Mincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

/* flexクラス
---------------------------------------------------*/
.flex_between,
.flex_start,
.flex_center,
.flex_end,
.flex_around {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

@media print, screen and (min-width: 768px) {
  .flex_between_tab,
  .flex_start_tab,
  .flex_center_tab,
  .flex_end_tab,
  .flex_around_tab {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

@media print, screen and (min-width: 960px) {
  .flex_between_pc,
  .flex_start_pc,
  .flex_center_pc,
  .flex_end_pc,
  .flex_around_pc {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

.flex_between,
.flex_between_tab,
.flex_between_pc {
  justify-content: space-between;
}

.flex_start,
.flex_start_tab,
.flex_start_pc {
  justify-content: flex-start;
}

.flex_center,
.flex_center_tab,
.flex_center_pc {
  justify-content: center;
}

.flex_end,
.flex_end_tab,
.flex_end_pc {
  justify-content: flex-end;
}

.flex_around,
.flex_around_tab,
.flex_around_pc {
  justify-content: space-around;
}

.align_stretch {
  align-items: stretch !important;
}

@media print, screen and (min-width: 960px) {
  .row_reverse {
    flex-direction: row-reverse;
  }
}

@media print, screen and (min-width: 768px) {
  .row_reverse_tab {
    flex-direction: row-reverse;
  }
}

/*	PC／SP切り替え
---------------------------------------------------*/
.sp_only {
  display: block;
}
@media print, screen and (min-width: 768px) {
  .sp_only {
    display: none;
  }
}

.sp_only_ib {
  display: inline-block;
}
@media print, screen and (min-width: 768px) {
  .sp_only_ib {
    display: none;
  }
}

.tab_only {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .tab_only {
    display: block;
  }
}
@media print, screen and (min-width: 960px) {
  .tab_only {
    display: none;
  }
}

.pc_only {
  display: none;
}
@media print, screen and (min-width: 960px) {
  .pc_only {
    display: block;
  }
}

.tab_sp_only {
  display: block;
}
@media print, screen and (min-width: 960px) {
  .tab_sp_only {
    display: none;
  }
}

.tab_pc_only {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .tab_pc_only {
    display: block;
  }
}

.tab_pc_only_ib {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .tab_pc_only_ib {
    display: inline-block;
  }
}

.pc_only_ib {
  display: none;
}
@media print, screen and (min-width: 960px) {
  .pc_only_ib {
    display: inline-block;
  }
}

/* リンクボタン
---------------------------------------------------*/
.more-btn {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1;
  position: relative;
  padding-left: 32px;
}
@media print, screen and (min-width: 960px) {
  .more-btn {
    padding-left: 48px;
  }
}
.more-btn::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 24px;
  height: 1px;
  background-color: rgba(40, 38, 38, 0.3);
  transform: translateY(-50%);
}
@media print, screen and (min-width: 960px) {
  .more-btn::before {
    width: 40px;
  }
}
.more-btn::after {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 8px;
  height: 1px;
  background-color: #282626;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 960px) {
  .more-btn::after {
    transition: width 0.5s;
  }
}
@media print, screen and (min-width: 960px) {
  .more-btn span {
    transition: opacity 0.5s;
  }
}
@media print, screen and (min-width: 960px) {
  .more-btn:hover::after {
    width: 40px;
  }
  .more-btn:hover span {
    opacity: 0.7;
  }
}

/* 見出し
---------------------------------------------------*/
.top__section-ttl {
  display: flex;
  align-items: center;
  gap: 0 8px;
  line-height: 1.6;
}
@media print, screen and (min-width: 960px) {
  .top__section-ttl {
    gap: 0 16px;
  }
}
.top__section-ttl .main {
  font-size: 2rem;
  font-weight: 500;
}
@media print, screen and (min-width: 768px) {
  .top__section-ttl .main {
    font-size: 2.4rem;
  }
}
@media print, screen and (min-width: 960px) {
  .top__section-ttl .main {
    font-size: 2.8rem;
  }
}
.top__section-ttl .sub {
  font-size: 1.2rem;
  font-weight: 400;
}
@media print, screen and (min-width: 768px) {
  .top__section-ttl .sub {
    font-size: 1.3rem;
  }
}
@media print, screen and (min-width: 960px) {
  .top__section-ttl .sub {
    font-size: 1.4rem;
  }
}
.top__section-ttl .sub::before {
  content: "●";
  color: #780002;
  margin-right: 0.5em;
}

.page__ttl-wrapper {
  position: relative;
  padding-top: 24px;
}
@media print, screen and (min-width: 960px) {
  .page__ttl-wrapper {
    padding-right: 144px;
  }
}
.page__ttl-wrapper .page__header-img {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}
.page__ttl-wrapper .page__header-img img {
  width: 76.8%;
}
@media print, screen and (min-width: 960px) {
  .page__ttl-wrapper .page__header-img img {
    width: 78%;
    max-width: 1376px;
  }
}

.page__ttl {
  max-width: 1312px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  padding: 0 5%;
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .page__ttl {
    display: flex;
    align-items: center;
    gap: 0 16px;
    padding: 0 32px;
  }
}
@media print, screen and (min-width: 960px) {
  .page__ttl {
    gap: 0 32px;
  }
}
.page__ttl .main {
  display: block;
  font-size: 2.8rem;
}
@media print, screen and (min-width: 768px) {
  .page__ttl .main {
    font-size: 3.8rem;
  }
}
@media print, screen and (min-width: 960px) {
  .page__ttl .main {
    font-size: 5.6rem;
  }
}
.page__ttl .sub {
  position: relative;
  display: block;
  font-size: 1.4rem;
}
@media print, screen and (min-width: 768px) {
  .page__ttl .sub {
    font-size: 1.6rem;
    padding-left: 48px;
    margin-top: 4px;
  }
}
@media print, screen and (min-width: 960px) {
  .page__ttl .sub {
    font-size: 2rem;
    padding-left: 96px;
    margin-top: 8px;
  }
}
.page__ttl .sub::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background-color: rgba(40, 38, 38, 0.7);
  margin: 8px 0 10px;
}
@media print, screen and (min-width: 768px) {
  .page__ttl .sub::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin: 0;
  }
}
@media print, screen and (min-width: 960px) {
  .page__ttl .sub::before {
    width: 80px;
  }
}

.page__section-ttl {
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 16px;
}
@media print, screen and (min-width: 960px) {
  .page__section-ttl {
    margin-bottom: 24px;
  }
}
.page__section-ttl .sub {
  display: block;
  color: rgba(40, 38, 38, 0.6);
  font-size: 1.6rem;
  margin-bottom: 8px;
}
@media print, screen and (min-width: 768px) {
  .page__section-ttl .sub {
    font-size: 2rem;
    margin-bottom: 16px;
  }
}
@media print, screen and (min-width: 960px) {
  .page__section-ttl .sub {
    font-size: 2.4rem;
    margin-bottom: 24px;
  }
}
.page__section-ttl .main {
  display: block;
  font-size: 2.2rem;
}
@media print, screen and (min-width: 768px) {
  .page__section-ttl .main {
    font-size: 2.6rem;
  }
}
@media print, screen and (min-width: 960px) {
  .page__section-ttl .main {
    font-size: 3.2rem;
  }
}
.page__section-ttl.no-main {
  margin-bottom: 16px;
}
.page__section-ttl.no-main .sub {
  font-size: 1.8rem;
  margin-bottom: 0;
}
@media print, screen and (min-width: 768px) {
  .page__section-ttl.no-main .sub {
    font-size: 2rem;
  }
}
@media print, screen and (min-width: 960px) {
  .page__section-ttl.no-main .sub {
    font-size: 2.4rem;
  }
}
@media print, screen and (min-width: 768px) {
  .page__section-ttl.page-right {
    margin-left: calc(42.8% + 48px);
  }
}

/* ************************************************
 *	4本線
 * *************************************************/
.lines-box, .lines-box-mv {
  position: relative;
  width: 33.6vw;
  max-width: 280px;
  -webkit-mask-image: url(images/line-mask.webp);
  mask-image: url(images/line-mask.webp);
  -webkit-mask-size: 100% 360%;
  mask-size: 100% 360%;
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .lines-box, .lines-box-mv {
    width: 24vw;
    max-width: 320px;
  }
}
@media print, screen and (min-width: 960px) {
  .lines-box, .lines-box-mv {
    width: 17vw;
  }
}
.lines-box.right, .lines-box-mv.right {
  margin-left: auto;
}
.lines-box.foot, .lines-box-mv.foot {
  margin-top: 24px;
}

.lines-box-mv {
  -webkit-animation: yugeMask 6s both;
  animation: yugeMask 6s both;
}

.lines-box.is-animated {
  -webkit-animation: yugeMask 6s both;
  animation: yugeMask 6s both;
}

@-webkit-keyframes yugeMask {
  0% {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
  to {
    -webkit-mask-position: 0 100%;
    mask-position: 0 100%;
  }
}
@keyframes yugeMask {
  0% {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
  to {
    -webkit-mask-position: 0 100%;
    mask-position: 0 100%;
  }
}
.yuge-mask {
  -webkit-mask-image: url(images/line-mask.webp);
  mask-image: url(images/line-mask.webp);
  -webkit-mask-size: 100% 360%;
  mask-size: 100% 360%;
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  overflow: hidden;
}
.yuge-mask.is-animated {
  -webkit-animation: yugeMask 2s both;
  animation: yugeMask 2s both;
}
.yuge-mask.is-animated.mv {
  -webkit-animation: yugeMask 4s both;
  animation: yugeMask 4s both;
}

/* ************************************************
 *	ヘッダー
 * *************************************************/
header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 56px;
  transition: background-color 0.8s;
  z-index: 9999;
}
@media print, screen and (min-width: 960px) {
  header {
    width: calc(100% - 144px);
    height: 96px;
    background-color: rgba(251, 251, 249, 0.8);
  }
}
header .header_inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
}
@media print, screen and (min-width: 960px) {
  header .header_inner {
    padding: 0 32px;
  }
}

/* スマホヘッダー表示時 is-show
----------------------------------------------*/
header.is-show {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 57px;
  background-color: rgba(251, 251, 249, 0.8);
  border-bottom: 1px solid rgba(40, 38, 38, 0.7);
  z-index: 999;
}
@media print, screen and (min-width: 960px) {
  header.is-show {
    width: calc(100% - 144px);
    height: 96px;
    border-bottom: none;
  }
}

/* ロゴ
----------------------------------------------*/
.logo {
  width: 56px;
  line-height: 1;
}
@media print, screen and (min-width: 960px) {
  .logo {
    width: 8%;
    max-width: 87px;
  }
}
@media print, screen and (min-width: 960px) {
  .logo a {
    transition: opacity 0.4s;
  }
  .logo a:hover {
    opacity: 0.6;
  }
}

h1.logo {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}
@media print, screen and (min-width: 960px) {
  h1.logo {
    opacity: 1;
    visibility: visible;
  }
}

header.open h1.logo, header.is-show h1.logo {
  opacity: 1;
  visibility: visible;
}

/* グローバルナビ
----------------------------------------------*/
@media print, screen and (min-width: 960px) {
  .g_nav {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.header_nav .content_nav {
  line-height: 1;
  padding: 0 5%;
  margin-top: 10px;
}
@media print, screen and (min-width: 960px) {
  .header_nav .content_nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-top: 0;
    padding: 0;
  }
}
.header_nav .content_nav li {
  border-bottom: 1px solid rgba(48, 38, 38, 0.2);
}
@media print, screen and (min-width: 960px) {
  .header_nav .content_nav li {
    border-bottom: none;
  }
  .header_nav .content_nav li:not(:first-child) {
    margin-left: 24px;
  }
}
@media print, screen and (min-width: 960px) and (min-width: 1280px) {
  .header_nav .content_nav li:not(:first-child) {
    margin-left: 32px;
  }
}
.header_nav .content_nav a {
  position: relative;
  display: block;
  font-weight: 700;
  padding: 20px 0;
}
@media print, screen and (min-width: 960px) {
  .header_nav .content_nav a {
    font-size: min(1.5vw, 18px);
    padding: 0;
    transition: opacity 0.4s;
  }
  .header_nav .content_nav a:hover {
    opacity: 0.6;
  }
}
.header_nav .content_nav a::after {
  position: absolute;
  top: 50%;
  right: 10px;
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-left: 1px solid #282626;
  border-top: 1px solid #282626;
  transform: translateY(-50%) rotate(135deg);
}
@media print, screen and (min-width: 960px) {
  .header_nav .content_nav a::after {
    content: none;
  }
}

/* ************************************************
 *	ハンバーガーメニュー関連
 * ************************************************ */
/* メニュートリガー
----------------------------------------*/
.menu-trigger {
  display: inline-block;
  width: 56px;
  height: 56px;
  vertical-align: middle;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  text-align: center;
  transform: translateX(0);
}
@media print, screen and (min-width: 960px) {
  .menu-trigger {
    display: none;
  }
}
.menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 12px;
  width: 32px;
  height: 2px;
  background-color: #282626;
  transition: all 0.5s;
}
.menu-trigger span:nth-of-type(1) {
  top: 15px;
}
.menu-trigger span:nth-of-type(2) {
  top: 24px;
}
.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(6px) rotate(-20deg);
}
.menu-trigger.active span:nth-of-type(2) {
  top: 21px;
  transform: rotate(20deg);
}
.menu-trigger p {
  position: absolute;
  top: 32px;
  width: 100%;
  color: #282626;
  font-size: 1rem;
  line-height: 1;
  transition: color 0.5s;
}
.menu-trigger.front span {
  background-color: #fff;
}
.menu-trigger.front p {
  color: #fff;
}

#header.open .menu-trigger span,
header.is-show .menu-trigger span {
  background-color: #282626;
}

#header.open .menu-trigger p,
header.is-show .menu-trigger p {
  color: #282626;
}

/* メニュー枠
----------------------------------------*/
#header.open {
  background-color: #FBFBF9;
}
@media print, screen and (min-width: 960px) {
  #header.open {
    background-color: transparent;
  }
}

.header_nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 56px);
  background-color: #FBFBF9;
  transition: all 0.8s;
  overflow: scroll;
  opacity: 0;
  visibility: hidden;
}
@media print, screen and (min-width: 960px) {
  .header_nav {
    position: unset;
    display: flex;
    justify-content: space-between;
    width: auto;
    height: auto;
    z-index: unset;
    transform: unset;
    transition: unset;
    overflow: unset;
    background: none;
    opacity: 1;
    visibility: visible;
  }
}
.header_nav.open {
  opacity: 1;
  visibility: visible;
}

/* ************************************************
 * googlemap
 * ************************************************ */
.gmap {
  width: 100%;
  position: relative;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .gmap {
    padding-bottom: 33.78%;
  }
}
.gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ************************************************
 * 404
 * ************************************************ */
.notfound_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 72px 0 48px;
  z-index: 1;
}
@media print, screen and (min-width: 768px) {
  .notfound_wrap {
    padding: 176px 0 136px;
  }
}
@media print, screen and (min-width: 960px) {
  .notfound_wrap {
    justify-content: flex-end;
    padding: 120px 144px 0 0;
  }
}

.notfound_txt {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .notfound_txt {
    font-size: 2.2rem;
  }
}
@media print, screen and (min-width: 960px) {
  .notfound_txt {
    font-size: 2.6rem;
  }
}

/* ************************************************
 * reCAPTCHA
 * ************************************************ */
.grecaptcha-badge {
  visibility: hidden;
}

/* ************************************************
 *	パンくずリスト
 * ************************************************ */
.breadcrumbs_wrapper {
  width: 100%;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1;
  text-align: left;
}
@media print, screen and (min-width: 960px) {
  .breadcrumbs_wrapper {
    padding-right: 144px;
  }
}
.breadcrumbs_wrapper .bre {
  display: flex;
  flex-wrap: wrap;
  gap: 0 4px;
  max-width: 1184px;
  padding: 16px 5%;
  margin: 0 auto;
}
@media print, screen and (min-width: 960px) {
  .breadcrumbs_wrapper .bre {
    gap: 0 8px;
    padding: 16px 32px;
  }
}
.breadcrumbs_wrapper span {
  display: inline-block;
  font-size: 1rem;
}
@media print, screen and (min-width: 768px) {
  .breadcrumbs_wrapper span {
    font-size: 1.2rem;
  }
}
.breadcrumbs_wrapper a {
  display: inline-block;
  font-size: 1rem;
}
@media print, screen and (min-width: 768px) {
  .breadcrumbs_wrapper a {
    font-size: 1.2rem;
  }
}

/* ************************************************
 *	フッター
 * ************************************************ */
/* 共通
----------------------------------------*/
footer {
  background-color: #780002;
  color: #FBFBF9;
  padding: 24px 0 96px;
}
@media print, screen and (min-width: 768px) {
  footer {
    padding: 32px 0 40px;
  }
}
@media print, screen and (min-width: 960px) {
  footer {
    padding: 80px 144px 80px 0;
  }
}

/* フッターロゴ・リンク
----------------------------------------*/
.footer__logo {
  display: none;
}
@media print, screen and (min-width: 960px) {
  .footer__logo {
    display: block;
    width: 13.5%;
    max-width: 150px;
    transition: opacity 0.3s;
    margin: 0;
  }
  .footer__logo:hover {
    opacity: 0.6;
  }
}

.footer__link-inner {
  display: flex;
  flex-direction: column;
  gap: 32px 0;
}
@media print, screen and (min-width: 768px) {
  .footer__link-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media print, screen and (min-width: 960px) {
  .footer__link-inner {
    width: 80%;
    max-width: 856px;
  }
}

@media print, screen and (min-width: 768px) {
  .footer__link-child {
    font-size: 1.3rem;
  }
}
@media print, screen and (min-width: 960px) {
  .footer__link-child {
    font-size: min(1.2vw, 16px);
  }
}
.footer__link-child ul:not(.footer__sns) {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
}
.footer__link-child ul.footer__sns {
  display: flex;
  gap: 0 24px;
}
@media print, screen and (min-width: 768px) {
  .footer__link-child ul.footer__sns {
    flex-direction: column;
    gap: 8px 0;
  }
}
.footer__link-child a {
  color: #FBFBF9;
}
@media print, screen and (min-width: 960px) {
  .footer__link-child a {
    transition: opacity 0.3s;
  }
  .footer__link-child a:hover {
    opacity: 0.6;
  }
}

.footer__link-heading {
  font-size: 1.4rem;
  line-height: 1.6;
  border-bottom: 1px solid #FBFBF9;
  padding-bottom: 8px;
  margin-bottom: 8px;
}
@media print, screen and (min-width: 768px) {
  .footer__link-heading {
    margin-bottom: 12px;
  }
}
@media print, screen and (min-width: 960px) {
  .footer__link-heading {
    margin-bottom: 24px;
  }
}

.footer__adrress {
  line-height: 1.6;
}

.footer__link-col2 {
  gap: 0 32px;
}

.footer__sns-link {
  display: flex;
  align-items: center;
  gap: 0 12px;
}

/* 追従インフォメーション
----------------------------------------*/
.side__information {
  position: fixed;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 72px;
  background-color: #fff;
  opacity: 0;
  z-index: 2;
  transform: translateY(100%);
  transition: transform 0.4s ease-out, opacity 0.4s;
  transition-delay: 0.2s;
}
@media print, screen and (min-width: 960px) {
  .side__information {
    align-items: flex-end;
    width: 144px;
    height: 100%;
    background-color: rgba(251, 251, 249, 0.8);
    border-left: 1px solid rgba(40, 38, 38, 0.5);
    opacity: 1;
    z-index: 10000;
    transform: unset;
    transition: none;
  }
}
.side__information.is-show {
  opacity: 1;
  transform: translateY(0);
}

.side__information-list {
  display: flex;
  align-items: center;
  width: 100%;
}
@media print, screen and (min-width: 960px) {
  .side__information-list {
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    padding: 0 20px;
  }
}
.side__information-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 33.3333333333%;
  text-align: center;
  padding: 4px 0;
}
@media print, screen and (min-width: 960px) {
  .side__information-list li {
    width: 100%;
    padding: 24px 0;
  }
}
.side__information-list li:not(:last-child) {
  border-right: 1px solid rgba(40, 38, 38, 0.7);
}
@media print, screen and (min-width: 960px) {
  .side__information-list li:not(:last-child) {
    border-right: none;
  }
}
.side__information-list li.sns-btn {
  display: none;
}
@media print, screen and (min-width: 960px) {
  .side__information-list li.sns-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0 20px;
    padding: 32px 0;
  }
}
@media print, screen and (min-width: 960px) {
  .side__information-list li:not(:last-child) {
    border-bottom: 2px solid #282626;
  }
}
.side__information-list .side__information-list-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 4px;
}
@media print, screen and (min-width: 960px) {
  .side__information-list .side__information-list-header {
    flex-direction: column;
    gap: 0;
  }
}
.side__information-list .side__information-ttl {
  font-size: 1.3rem;
  line-height: 1;
}
@media print, screen and (min-width: 960px) {
  .side__information-list .side__information-ttl {
    font-size: 1.8rem;
    font-weight: 500;
    cursor: vertical-text;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}
.side__information-list .side__information-text {
  font-size: 1rem;
  line-height: 1.4;
  margin-top: 6px;
}
@media print, screen and (min-width: 960px) {
  .side__information-list .side__information-text {
    font-size: 1.3rem;
    margin-top: 16px;
  }
}

/* コピーライト
----------------------------------------*/
.copyright {
  display: block;
  color: rgba(251, 251, 249, 0.7);
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 32px;
}
@media print, screen and (min-width: 768px) {
  .copyright {
    text-align: right;
    margin-top: 16px;
  }
}
@media print, screen and (min-width: 960px) {
  .copyright {
    font-size: 1.4rem;
  }
}/*# sourceMappingURL=style.css.map */