@charset "utf-8";

/*cssのリセット*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p,
blockquote, pre, abbr, address, cite, code, del, dfn, em, img,
ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd,
ol, ul, li, fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td, article, aside, canvas, details,
figcaption, figure, footer, header, hgroup, menu, nav, section,
summary, time, mark, audio, video {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
  outline: 0;
  background: transparent;
}

body {
  line-height: 1;
  background-color: #fff;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

a {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

ins {
  text-decoration: none;
  color: #000;
  background-color: #ff9;
}

mark {
  font-weight: bold;
  font-style: italic;
  color: #000;
  background-color: #ff9;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  cursor: help;
  border-bottom: 1px dotted;
}

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

hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc;
}

/*サイト全体の基準となるCSSを記述*/
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  /*フォントの指定*/
  font-family: serif, "Shippori Mincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "Times New Roman", Times, Garamond, Georgia;
  /*行間の指定*/
  line-height: 1.4;
  margin: 0;
  padding: 0;
  /*サイトのデフォルトとなる文字の色を指定*/
  color: #000;
  /* スクロールバー（横）非表示 */
  overflow-x: hidden;
}

/*見出しを全て太字で表示 + 文字色を黒に*/
h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
  /* color: #000; */
}

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

/*---------------------------------------------------------
共通ロジック
---------------------------------------------------------*/
/* テキスト色変更 */
.font-red {
  color: red;
  font-weight: 900;
}

/*マーカーアニメーション*/
.marker-animation.active {
  background-position: -100% 1.1em;
}

.marker-animation {
  background-repeat: repeat-x;
  background-size: 200% 1.1em;
  background-position: 0 1.1em;
  transition: all 4s ease;
  font-weight: bold;
}

/* マーカー */
.marker-yellow {
  background-image: -webkit-linear-gradient(left, transparent 50%, #fff799 50%);
  background-image: -moz-linear-gradient(left, transparent 50%, #fff799 50%);
  background-image: -ms-linear-gradient(left, transparent 50%, #fff799 50%);
  background-image: -o-linear-gradient(left, transparent 50%, #fff799 50%);
  background-image: linear-gradient(left, transparent 50%, #fff799 50%);
}

.marker-red {
  background-image: -webkit-linear-gradient(left, transparent 50%, #ff9393 50%);
  background-image: -moz-linear-gradient(left, transparent 50%, #ff9393 50%);
  background-image: -ms-linear-gradient(left, transparent 50%, #ff9393 50%);
  background-image: -o-linear-gradient(left, transparent 50%, #ff9393 50%);
  background-image: linear-gradient(left, transparent 50%, #ff9393 50%);
}

.marker-blue {
  background-image: -webkit-linear-gradient(left, transparent 50%, #c1e0ff 50%);
  background-image: -moz-linear-gradient(left, transparent 50%, #c1e0ff 50%);
  background-image: -ms-linear-gradient(left, transparent 50%, #c1e0ff 50%);
  background-image: -o-linear-gradient(left, transparent 50%, #c1e0ff 50%);
  background-image: linear-gradient(left, transparent 50%, #c1e0ff 50%);
}

.marker-green {
  background-image: -webkit-linear-gradient(left, transparent 50%, #b2ffb2 50%);
  background-image: -moz-linear-gradient(left, transparent 50%, #b2ffb2 50%);
  background-image: -ms-linear-gradient(left, transparent 50%, #b2ffb2 50%);
  background-image: -o-linear-gradient(left, transparent 50%, #b2ffb2 50%);
  background-image: linear-gradient(left, transparent 50%, #b2ffb2 50%);
}

/* 間隔 */
.mar-hei {
  margin: 1rem 0;
}

.mar-wid {
  margin: 0 1rem;
}

/* 表示・非表示 */
.sp_only {
  display: none;
}

/*---------------------------------------------------------
アコーディオン（大）
---------------------------------------------------------*/
/*ボックス全体*/
.accbox {
  margin: 1rem auto;
  padding: 0;
  width: 80%;
  max-width: 1200px;
}

/*ラベル*/
.accbox label {
  font-size: 18px;
  display: block;
  margin: 1rem 0;
  padding: 10px 15px;
  font-weight: bold;
  background-color: #fff;
  border: 1px solid;
  cursor: pointer;
  transition: all 0.5s;
  margin-bottom: 10px;
}

/*アイコンを表示*/
.accbox label:before {
  content: '\f067';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  padding-right: 20px;
}

/*ラベルホバー時*/
.accbox label:hover {
  color: #000;
  transition: 0.5s;
  background-color: #FFF;
}

/*チェックは隠す*/
.accbox input {
  display: none;
}

/*中身を非表示にしておく*/
.accbox .accshow {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.8s;
}

/*クリックで中身表示*/
.cssacc:checked+label+.accshow {
  height: auto;
  padding: 1rem;
  opacity: 1;
}

/*アイコンを入れ替える*/
.cssacc:checked+label:before {
  content: '\f068';
  font-weight: 900;
}

/*---------------------------------------------------------
共通定義
---------------------------------------------------------*/
/* 空白 */
.spase-half {
  margin-right: 0.5rem;
}

.spase-one {
  margin-right: 1rem;
}

/* スマホのみ改行 */
.sp_br {
  display: none;
}

/* フェードライン */
.separate_fade {
  margin: 1.5rem 0;
  border: 0;
  height: 1.5px;
  background-image: -webkit-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -ms-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -o-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
}

/* ボタンエフェクト01 */
.btneffect-01 {
  /*矢印の基点とするためrelativeを指定*/
  position: relative;
  border: 1px solid #555;
  padding: 15px 50px;
  text-align: center;
  text-decoration: none;
  color: #333;
  outline: none;
  transition: all .2s linear;
  display: block;
  width: fit-content;
  margin: 0 auto;
  font-weight: 900;
  background-color: #ffffffb8;
}

.btneffect-01:hover {
  background: #242527;
  color: #fff;
}

/*矢印と下線の形状*/
.btneffect-01::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -26px;
  width: 40px;
  height: 1px;
  background: #333;
  transition: all .2s linear;
}

.btneffect-01::after {
  content: "";
  position: absolute;
  top: 20%;
  right: -19px;
  width: 1px;
  height: 16px;
  background: #333;
  transform: skewX(45deg);
  transition: all .2s linear;
}

/*hoverした際の移動*/
.btneffect-01:hover::before {
  right: -30px;
}

.btneffect-01:hover::after {
  right: -23px;
}

/* ボタンエフェクト02 */
.btneffect-02 {
  position: relative;
  border: 1px solid #555;
  padding: 15px 50px;
  text-align: center;
  text-decoration: none;
  color: #333;
  outline: none;
  transition: all .2s linear;
  display: block;
  width: fit-content;
  margin: 0 auto;
  font-weight: 900;
  background-color: #ffffffb8;
}

.btneffect-02:hover {
  background: #333;
  color: #fff;
  border: 1px solid #fff;
}

/*きらっと光る*/
.btnshine {
  /*キラッと光る基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  outline: none;
  overflow: hidden;
}

/*キラッと光る*/
.btnshine::before {
  content: '';
  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  /*キラッと光る形状*/
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  transform: skewX(-25deg);
}

/*hoverした際の移動のアニメーション*/
.btnshine:hover::before {
  animation: shine 0.7s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/*---------------------------------------------------------
共通フェードロジック
---------------------------------------------------------*/
/* そのままゆっくり表示 */
.fade {
  animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {

  /*animation-nameで設定した値を書く*/
  0% {
    opacity: 0
  }

  /*アニメーション開始時は不透明度0%*/
  100% {
    opacity: 1
  }

  /*アニメーション終了時は不透明度100%*/
}

/* スクロールをしたら出現する要素にはじめに透過0を指定*/
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

/* その場で */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 上から */
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 下から */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    /* transform: translateY(-50%);
    transform: translateX(-50%); */
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    /* transform: translateY(-50% , -50%); */
    transform: translateY(0);
  }
}

/* 左から */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-800px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 右から */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(800px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*---------------------------------------------------------
ヘッダー
---------------------------------------------------------*/
/* header {
}

header .header_inner {
  position: fixed;
  z-index: 999;
  width: 25%;
  height: 100%;
  background: linear-gradient(to right, #000000, #ffffff00);
}

header .header_inner .site_title {
  width: 100px;
  padding: 100px;
}

header .header_inner .site_title p {
  white-space: nowrap;
  margin-top: 10px;
  color: #FFF;
}

header .header_menu {
  display: flex;
  flex-direction: column;
  margin: 50px 100px;
  width: fit-content;
  text-decoration: none;
}

header .header_menu a {
  color: #fff;
  text-decoration: none;
  width: fit-content;
  margin: 15px 0;
  animation-duration: 0.6s;
  white-space: nowrap;
}

header .header_menu a:hover  {
  animation-name: header_link;
  animation-duration:0.6s;
}

@keyframes header_link {
  50% {
    color: #deb4e1;
  }
}

header .header_inner .sns_block {
  display: flex;
  margin: 50px 100px;
  align-items: center;
}

header .header_inner .sns_block a img {
  width: 35px;
}

header .header_inner .sns_block a:hover {
  animation-name: header_sns_link;
  animation-duration:0.6s;
}

@keyframes header_sns_link {
  50% {
    opacity: 0.3;
  }
}

header .header_inner .sns_block a img:first-child {
  margin-right: 1.5rem;
} */
/*---------------------------------------------------------
ヘッダー
---------------------------------------------------------*/
header {}

header .header_inner {
  position: fixed;
  z-index: 999;
  width: fit-content;
  width: 25%;
  height: 100vh;
  padding: 0 0 0 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(to right, #000000, #ffffff00);
}

header .header_inner .site_title {
  width: 100px;
}

header .header_inner .site_title p {
  white-space: nowrap;
  margin-top: 10px;
  color: #fff;
}

header .header_menu {
  display: flex;
  flex-direction: column;
  margin: 5rem 0 0;
  width: fit-content;
  text-decoration: none;
}

header .header_menu a {
  color: #fff;
  text-decoration: none;
  width: fit-content;
  margin: 15px 0;
  animation-duration: 0.6s;
  white-space: nowrap;
  font-weight: 700;
}

header .header_menu a:hover {
  animation-name: header_link;
  animation-duration: 0.6s;
}

@keyframes header_link {
  50% {
    color: #deb4e1;
  }
}

header .header_inner .sns_block {
  margin: 3rem 0;
  display: flex;
  align-items: center;
}

header .header_inner .sns_block a img {
  width: 35px;
}

header .header_inner .sns_block a:hover {
  animation-name: header_sns_link;
  animation-duration: 0.6s;
}

@keyframes header_sns_link {
  50% {
    opacity: 0.3;
  }
}

header .header_inner .sns_block a img:first-child {
  margin-right: 1.5rem;
}

/*---------------------------------------------------------
共通設定
---------------------------------------------------------*/
.pagetop {
  display: none;
  position: fixed;
  right: 5%;
  bottom: 5%;
  z-index: 2;
}

.pagetop a {
  display: flex;
  text-decoration: none;
  width: 5rem;
  height: 5rem;
  background: #fff;
  border: 1px solid #999;
  border-radius: 50%;
  transition: .3s;
  justify-content: center;
  align-items: center;
}

.pagetop a:hover {
  transition: .3s;
  transform: scale(1.2);
}

/* .pagetop a i {
  font-size: 2rem;
  color: #555;
} */
.pagetop a img {
  width: 2rem;
}

#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #eee;
  text-align: center;
  color: #fff;
  top: 0;
}

#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#splash_logo svg {
  width: auto;
}

/*アニメーション前の指定*/
#mask {
  display: none;
}

#mask path {
  fill-opacity: 0;
  transition: fill-opacity .5s;
  fill: none;
  stroke: #333;
}

/*アニメーション後に.doneというクラス名がで付与された時の指定*/
#mask.done path {
  fill: #e78196;
  fill-opacity: 1;
  stroke: none;
}

/*---------------------------------------------------------
トップページ
---------------------------------------------------------*/
/* スライダー */
/* #TOP .swiper-container {
  width: 100%;
  height: 100vh;
}
#TOP .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */
/* スライダー */
#SLIDESHOW {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#SLIDESHOW .slide {
  position: absolute;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  height: 100vh;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

#SLIDESHOW .slide.active {
  opacity: 1;
  z-index: 1;
}

#SLIDESHOW .top-logo {
  display: none;
}

/* 概要 */
#TOP .about {
  background-image: url(../img/backimg/02.webp);
  background-size: cover;
}

#TOP .about .wrapper {
  /* position: relative; */
  /* padding: 10rem 0; */
  padding: 10rem 0 10rem 10rem;
}

#TOP .about .wrapper .about_img {
  width: 80%;
  margin: 5rem auto;
  /* display: none; */
  opacity: 0.8;
}

#TOP .about .wrapper .about_note {
  /* position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%); */
  text-align: center;
  color: #555;
  font-weight: 900;
  line-height: 3rem;
}

#TOP .about .wrapper .about_note h2 {
  font-size: 2rem;
  margin: 3rem 0;
}

#TOP .about .wrapper .about_note p {
  font-weight: 500;
}

/* 加盟宿の紹介 */
#TOP .map {
  background-image: url(../img/backimg/03.webp);
  background-size: cover;
}

#TOP .map .wrapper {
  position: relative;
  padding: 5rem 0;
}

#TOP .map .wrapper .map_img {
  width: 70%;
  margin: 0 auto;
  opacity: 0.4;
}

#TOP .map .wrapper .map_note {
  text-align: right;
  color: #1c1c1c;
  font-weight: 900;
  line-height: 3rem;
  margin-right: 5rem;
  /* position: absolute;
  width: 100%;
  top: 30%;
  left: 50%;
  padding-right: 10rem;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%); */
  /* background-image: url(../img/top/map.webp);
  background-size: cover; */
}

#TOP .map .wrapper .map_note h2 {
  font-size: 2rem;
  margin: 3rem 0 0;
}

#TOP .map .wrapper .map_note hr {
  border-top: 1.5px solid #888;
  width: 50%;
  margin: 1rem 0 3rem auto;
}

#TOP .map .wrapper .link_box {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

#TOP .map .wrapper .link_box .qr_img {
  width: 200px;
  margin: 0 0 0 auto;
}

#TOP .map .wrapper .map_btn {
  margin: 3rem 5rem 0 5rem;
  width: fit-content;
}

/*---------------------------------------------------------
開発商品
---------------------------------------------------------*/
#GOODS {
  background-image: url(../img/backimg/01.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

#GOODS .wrapper {
  width: 75%;
  margin: 0 5rem 0 auto;
  padding: 10rem 0;
}

#GOODS .wrapper .title {
  font-size: 1.5rem;
  text-align: center;
}

#GOODS .wrapper .goods_title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3.5rem 0;
}

#GOODS .wrapper .goods_title img {
  height: 50px;
  margin-right: 1rem;
}

#GOODS .wrapper .goods_box {
  display: flex;
  align-items: center;
}

#GOODS .wrapper .goods_box .goods_img {
  width: 50%;
}

#GOODS .wrapper .goods_box .goods_detail {
  width: 50%;
  background-color: #ffffff;
  line-height: 2rem;
  padding: 3rem;
  margin: 2rem;
  border-radius: 15px;
}

#GOODS .wrapper .goods_box .goods_detail .goods_note {
  margin: 1rem 0;
}

#GOODS .wrapper .goods_box .goods_detail ul {
  margin: 1rem 20px;
}

#GOODS .wrapper .goods_box .goods_detail .goods_note_att {
  color: #a30000;
}

#GOODS .wrapper .goods_box .goods_detail .goods_price {
  margin: 2rem 0;
  display: flex;
  width: 100%;
}

#GOODS .wrapper .goods_box .goods_detail .goods_price .table_left {
  width: 50%;
}

#GOODS .wrapper .goods_box .goods_detail .goods_price .table_right {
  width: 40%;
  margin-left: 10px;
}

#GOODS .wrapper .goods_box .goods_detail .goods_price .table_left .table_title,
#GOODS .wrapper .goods_box .goods_detail .goods_price .table_right .table_title {
  background-color: #f7d0c4;
  text-align: center;
  border-radius: 15px;
  margin-bottom: 0.5rem;
}

#GOODS .wrapper .goods_box .goods_detail .goods_price .table_name {
  margin-left: 1rem;
}

#GOODS .wrapper .goods_box .goods_detail .goods_price .table_price {
  text-align: center;
}

/*---------------------------------------------------------
湯の華会について
---------------------------------------------------------*/
#ABOUT {
  background-image: url(../img/backimg/05.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

#ABOUT .wrapper {
  width: 85%;
  margin: 0 0 0 auto;
  padding: 5rem 0;
}

#ABOUT .wrapper .page_title {
  margin: 5rem auto;
}

#ABOUT .wrapper .title {
  font-size: 1.5rem;
  text-align: center;
}

#ABOUT .wrapper .about_title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3.5rem 0;
}

#ABOUT .wrapper .about_title_note {
  line-height: 2rem;
  margin: 3rem 0;
  text-align: center;
}

#ABOUT .wrapper .about_title img {
  height: 50px;
  margin-right: 1rem;
}

#ABOUT .wrapper .about_poster_img {
  width: 60%;
  margin: 0 auto;
}

#ABOUT .wrapper .about_poster_img p {
  margin: 2rem 0;
  text-align: center;
}

#ABOUT .about_enkaku {
  width: 90%;
  margin: 0 10rem 35rem auto;
  position: relative;
}

#ABOUT .about_enkaku .about_enkaku_word {
  position: absolute;
  top: 25rem;
  right: 0;
  background-color: #ffffffcc;
  padding: 3rem;
  border-radius: 15px;
}

#ABOUT .about_enkaku .about_enkaku_img {
  /* margin: 0 0 0 auto; */
  width: 50%;
}

#ABOUT .about_enkaku .about_enkaku_img img {
  width: 100%;
  opacity: 0.8;
}

#ABOUT .about_enkaku .about_enkaku_note {
  line-height: 2.5rem;
  margin: 2rem 0;
}

#ABOUT .about_enkaku .about_enkaku_history {
  line-height: 2rem;
  width: fit-content;
  margin: 0 auto;
}

#ABOUT .about_enkaku .about_enkaku_history .about_enkaku_history_title {
  text-align: center;
  margin: 1rem 0;
}

#ABOUT .about_enkaku .about_enkaku_history .about_enkaku_history_box {
  display: flex;
}

#ABOUT .about_enkaku .about_enkaku_history .about_enkaku_history_box .about_enkaku_history_box_left {
  margin-right: 2rem;
}

#ABOUT .about_enkaku .about_enkaku_history .about_enkaku_history_box .about_enkaku_history_box_center {
  margin-right: 2rem;
}

#ABOUT .about_enkaku .about_enkaku_history .about_enkaku_history_box .about_enkaku_history_box_right {}

/* あゆみ */
#ABOUT .about_ayumi {
  width: 90%;
  margin: 0 auto;
}

#ABOUT .about_ayumi .about_ayumi_word_title {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 900;
}

#ABOUT .about_ayumi .about_ayumi_word_cyosya {
  margin: 2rem 0;
}

#ABOUT .about_ayumi .about_ayumi_word_block {
  line-height: 2.5rem;
}

#ABOUT .about_ayumi .about_ayumi_word_syutten {
  display: flex;
  margin: 3rem 0;
  line-height: 2rem;
  align-items: center;
  justify-content: center;
}

#ABOUT .about_ayumi .about_ayumi_word_syutten .about_ayumi_word_syutten_left {
  text-align: center;
  margin-right: 2rem;
}

.zoom-img {
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s;
}

.zoom-img:hover {
  transform: scale(1.01);
}

.overlay {
  opacity: 0;
  /* 初期状態は透明 */
  visibility: hidden;
  /* クリックできないようにする */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease-in-out, visibility 0.3s;
}

.overlay.active {
  opacity: 1;
  /* ふわっと表示 */
  visibility: visible;
  z-index: 999;
}

.large-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
  cursor: grab;
  /* マウスカーソルをドラッグできる形に */
}

.large-img:active {
  cursor: grabbing;
  /* ドラッグ中のカーソル */
}

/*---------------------------------------------------------
フッター
---------------------------------------------------------*/
#FOOTER {
  background-color: #000;
  padding: 5rem 0 3rem;
  color: #fff;
  text-align: center;
  line-height: 2rem;
}

#FOOTER .footer_contactarea {
  display: flex;
  justify-content: center;
}

#FOOTER .footer_contactarea p {
  margin: 0 0.5rem;
}

#FOOTER a {
  color: #fff;
}
