@charset "utf-8";

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("inview.css");

/*opa1のキーフレーム設定
---------------------------------------------------------------------------*/
@keyframes opa1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
  --primary-color: #fff; /*テンプレートの土台カラー*/
  --primary-inverse-color: #000; /*上のprimary-colorの対となる色*/

  --secondary-color: #000; /*テンプレートのサブまたはアクセントカラー*/
  --secondary-inverse-color: #fff; /*上のsecondary-colorの対となる色*/

  --accent-color: #83cdda; /*アクセントカラー*/
  --accent-inverse-color: #fff; /*アクセントカラーの対となる色*/

  --global-space: 20px; /*主に余白の一括管理用*/
}

/*テキストのフェードイン設定
---------------------------------------------------------------------------*/
/*アニメーション設定*/
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.1) rotate(-30deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

/* 初期状態でテキストを非表示にする */
.fade-in-text {
  visibility: hidden;
}

/* アニメーションを適用するクラス。
animationの行の「0.2s」が文字の出現のなめらかさで、大きいほどなめらかに出てきます。小さいとタイピングのようにカクカク出ます。
１文字ずつの出現する際の時差は、js/main.jsの「テキストのフェードイン効果」の中にある「0.1」で調整できます。*/
.char {
  display: inline-block;
  opacity: 0;
  animation: fadeIn 0.2s linear both;
}

/*全体の設定
---------------------------------------------------------------------------*/
body * {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-size: 16px;
}

/*画面幅900px以上の追加指定*/
@media screen and (min-width: 900px) {
  html,
  body {
    font-size: 16px; /*基準となるフォントサイズ。*/
  }
} /*追加指定ここまで*/

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "A+EqpB-游ゴシック体 Pr6N M", "游ゴシック Medium",
    "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3",
    "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", serif;
  -webkit-text-size-adjust: none;
  line-height: 1.7; /*行間*/
  background: #463f39; /*背景色*/
  color: var(
    --primary-inverse-color
  ); /*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
  overflow-x: hidden;
  text-align: justify;
  background: url("../images/bg01.jpg") repeat center top; /*背景画像の読み込み*/
}
.font-weight {
  font-family: "Inter", "A+EqpB-游ゴシック体 Pr6N D";
  font-weight: 600;
}
.font-s {
  font-size: 0.9em;
}

/*リセット他*/
figure {
  margin: 0;
}
dd {
  margin: 0;
}
nav ul {
  list-style: none;
}
nav,
ul,
li,
ol {
  margin: 0;
  padding: 0;
}
section li {
  margin-left: 1rem;
}

/*table全般の設定*/
table {
  border-collapse: collapse;
}

/*画像全般の設定*/
img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/*videoタグ*/
video {
  max-width: 100%;
}

/*iframeタグ*/
iframe {
  width: 100%;
}

/*他*/
input {
  font-size: 1rem;
}

/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
  color: inherit;
  transition: 0.3s; /*hoverまでにかける時間。0.3秒。*/
  text-decoration: none; /* 下線を消す */
}

/*マウスオン時*/
a:hover {
  text-decoration: none;
}

/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/

/*このブロック内のcontents*/
header .contents {
  padding: 0;
  height: 2030px;
  /* display: flex; */
  align-items: center;
  /* object-fit: cover; */
  background: url("../images/main.jpg") no-repeat top center;
  background-size: contain;
}

header .contents a {
  color: inherit;
}

/*ヘッダーメニュー（大きな画面で見た場合に左側に固定表示されるメニュー）
---------------------------------------------------------------------------*/
/*1000px未満は非表示*/
#header-menu,
.header-info {
  display: none;
}

/*画面幅1000px以上の追加指定*/
@media screen and (min-width: 1000px) {
  #header-menu {
    display: block; /*表示させる*/
    position: fixed;
    z-index: 1;
    left: 3%;
    top: 20%;
  }
  #header-menu ul {
    border-top: #fff solid 1px;
  }

  /*メニュー１個あたり*/
  #header-menu li a {
    text-decoration: none;
    display: block;
    padding: 10px 30px 10px 20px;
    border-bottom: #fff solid 1px;
    font-size: 1.2rem;
  }

  /*現在表示中のメニューの背景色と、マウスオン時共通*/
  #header-menu li.active a,
  #header-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.562);
  }

  .headermenu-logo img {
    width: 200px;
  }

  .header-info {
    width: 20%;
    display: block; /*表示させる*/
    position: fixed;
    z-index: 1;
    right: 3%;
    top: 25%;
  }
}

/*contents（各セクションブロック直下にあるボックス）
---------------------------------------------------------------------------*/
.contents {
  background: var(--primary-color); /*背景色。冒頭のprimary-colorを読み込む。*/
  color: var(
    --primary-inverse-color
  ); /*文字色。冒頭のprimary-inverse-colorを読み込む。*/
  padding: var(
    --global-space
  ); /*ボックス内の余白。冒頭のglobal-spaceを読み込む。*/
  position: relative;
  overflow-x: hidden;
  position: relative;
  background: #fff;
}
.contents::before,
.contents::after {
  content: " ";
  position: absolute;
  top: 0;
  height: 100%;
  width: 15px;
}

.contents::before {
  left: -15px;
  box-shadow: -15px 0 15px -15px inset #339999;
}

.contents::after {
  right: -15px; /* 要素の右外側に配置 */
  box-shadow: 15px 0 15px -15px inset #339999;
}

/*画面幅600px以上の追加指定*/
@media screen and (min-width: 600px) {
  .contents,
  #gallery .gallery-box {
    max-width: 560px; /*大きな画面になった場合のコンテンツ幅*/
    margin: 0 auto; /*画面の左右中央に配置*/
    overflow-x: visible;
  }
} /*追加指定ここまで*/

/*h2見出し共通*/
.contents h2,
.recommend-inner h2 {
  margin-bottom: 30px;
  line-height: 1.8; /*行間をデフォルトより狭くする。２行になった場合に間があきすぎるので。*/
  font-size: 1.5rem; /*文字サイズ180%*/
  font-family: "Inter", "A+EqpB-游ゴシック体 Pr6N D";
  text-align: center; /*テキストをセンタリング*/
  color: #000;
  border-bottom: #000 solid 2px;
}

/*h2内の小文字*/
.contents h2 span.hosoku {
  display: block;
  font-size: 0.7rem; /*文字サイズを70%に*/
  letter-spacing: 0.1em; /*文字間隔を少しだけ広く*/
  padding-bottom: 0.5rem; /*下の見出しとの間の余白。0.5文字分。*/
}

/*見出し中央*/
.heading-center {
  text-align: center;
  font-weight: 400;
}

/*見出し左側にバー*/
.heading-bar {
  border-left: #83cdda 8px solid;
  padding-left: 10px;
  color: #339999;
  font-weight: 600;
  font-family: "Inter", "A+EqpB-游ゴシック体 Pr6N D";
  font-size: 1.2em;
}

/*オープニング特別メニュー（specialブロック）
---------------------------------------------------------------------------*/
/*大きな画面で見た場合に両サイドに見える画像*/
#special::before {
  /* background: url('../images/bg_special.jpg') no-repeat center center / cover;	背景画像の読み込み★ */
}

/*このブロック内のcontents*/
#special .contents {
  background: var(--accent-color) /*背景色。冒頭のaccent-colorを読み込む。*/
    url("../images/bg_special.png") no-repeat center top / 100%; /*背景画像の読み込み。見出しの上にある装飾画像です。*/
  color: var(
    --accent-inverse-color
  ); /*文字色。冒頭のaccent-inverse-colorを読み込む。*/
}

.campaign {
  padding: 20px 0;
}

/*横スライドインタイプのスライドショー（１枚目の画像のアスペクト比が反映されるタイプ）
---------------------------------------------------------------------------*/
/*3枚の画像を囲むブロック*/
.slide5 {
  position: relative;
  overflow: hidden;
}

/*３枚の画像の共通設定*/
.slide5 .slide {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  transition: transform 0.7s ease; /*0.7sはスライドにかける時間（0.7秒）。0.7を変更する場合、main.jsのスライドショー用のコードの最後の「700」も変更する。*/
}

/*アクティブ時*/
.slide5 .slide.active {
  transform: translateX(0);
}

/*左に移動*/
.slide5 .slide.left {
  transform: translateX(-100%);
}

/*非表示*/
.slide5 .slide.hidden {
  opacity: 0;
}

/*初期表示用*/
.slide5 .slide.initial {
  transform: translateX(0);
  transition: none;
}

/*１枚目画像（変更不要）*/
.slide5 .img1 {
  position: relative;
  width: 100%;
  height: auto;
}

/*画像のクリップ*/
.slide5 .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/*現在表示されているスライドのみをクリック可能にする設定（変更不要）*/
.slide5 .slide {
  pointer-events: none;
}
.slide5 .slide.active {
  pointer-events: auto;
}

/*現在表示中のボタンブロック*/
.slide5 .slide-indicators {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 20px; /*ボタンの配置場所。スライドショーの画面下からの距離。*/
  left: 0px;
}

/*ボタン１個あたり*/
.slide5 .indicator {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #ccc; /*未アクティブ時のボタン色*/
  border: 2px solid #fff; /*枠線の幅、線種、色。*/
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

/*アクティブ時のボタン色*/
.slide5 .indicator.active {
  background: #339999;
}
/*★GLOWアンドGOとは（aboutブロック）
---------------------------------------------------------------------------*/
#about .contents h2 {
  border: none;
}
#about .contents h2 img {
  width: 200px;
  padding: 0 10px 10px 0;
}

/* セルフで、エステ */

.heading-self {
  text-align: center;
  font-weight: 400;
  font-size: 1.2em;
  font-family: "Inter", "A+EqpB-游ゴシック体 Pr6N D";
  letter-spacing: 0.15em;
  color: #000;
}
.heading-self .subtitle {
  display: block;
  color: #c9a063;
}

.inner-img {
  display: block;
  margin: 0 auto 60px auto;
}

/*★こんな方におすすめ（recommendブロック）
---------------------------------------------------------------------------*/
.contents-recommend {
  background: #fff;
  padding: 0px;
  position: relative;
  overflow-x: hidden;
  position: relative;
  background: #fff;
}
.contents-recommend::before,
.contents-recommend::after {
  content: " ";
  position: absolute;
  top: 0;
  height: 100%;
  width: 15px;
}

.contents-recommend::before {
  left: -15px;
  box-shadow: -15px 0 15px -15px inset #339999;
}

.contents-recommend::after {
  right: -15px; /* 要素の右外側に配置 */
  box-shadow: 15px 0 15px -15px inset #339999;
}

/*画面幅600px以上の追加指定*/
@media screen and (min-width: 600px) {
  .contents-recommend {
    max-width: 560px; /*大きな画面になった場合のコンテンツ幅*/
    margin: 0 auto; /*画面の左右中央に配置*/
    overflow-x: visible;
  }
}

.recommend-inner {
  padding: 60px 20px;
  background: #c8e7ec;
  clip-path: polygon(0 30px, 100% 0, 100% calc(100% - 30px), 0 100%);
}

.list-recommend {
  padding: 15px;
  background: #fff;
  border-radius: 15px;
}

.list-recommend dt {
  color: #339999;
  font-size: 1.1em;
  font-family: "Inter", "A+EqpB-游ゴシック体 Pr6N D";
  display: flex;
  align-items: center;
  column-gap: 8px;
}

.heading01::before {
  width: 0.8em;
  height: 0.4em;
  border-bottom: 3px solid #83cdda;
  border-left: 3px solid #83cdda;
  transform: rotate(-45deg) translate(2px, -2px);
  content: "";
}

.list-recommend dd {
  padding-left: 30px;
}

/*★料金プラン（priceブロック）
---------------------------------------------------------------------------*/
.box {
  margin-bottom: 30px;
  border: 2px solid #d9bb90;
}
.box h3 {
  padding: 5px 0;
  background: #d9bb90;
  color: #fff;
  text-align: center;
  font-size: 1.2em;
  font-family: "Inter", "A+EqpB-游ゴシック体 Pr6N D";
  margin: 0;
}
.box .box-inner {
  padding: 0.5em;
}

.price-lead {
  margin: 10px 0 0 0;
  text-align: center;
  font-weight: bold;
  color: #c9a063;
  font-family: "Inter", "A+EqpB-游ゴシック体 Pr6N D";
}
.box-inner ul {
  display: block;
  margin: 0 auto;
  width: fit-content;
  list-style: none;
}
.box-inner .price {
  margin: 0;
  text-align: center;
  font-size: 3em;
  font-weight: 500;
}
.price_s {
  padding-left: 10px;
  font-size: 1rem;
  font-weight: 400;
}

/*★会員登録フロー（entryブロック）
---------------------------------------------------------------------------*/
.contents-bg02 {
  background-color: #f7f7f7;
}
.flow_design01 {
  /* display: flex;
  justify-content: center;
  align-items: center; */
}

.flow01 {
  padding-left: 0;
}

.flow01 > li {
  list-style-type: none;
  position: relative;
  padding-left: 50px;
}

.flow01 > li:not(:last-child) {
  padding-bottom: 10px;
}

.flow01 > li .icon01 {
  width: 2em;
  height: 2em;
  line-height: 2em;
  text-align: center;
  border-radius: 100vh;
  display: inline-block;
  background: #83cdda;
  color: #fff;
  position: absolute;
  left: 0;
  font-weight: 600;
}

.flow01 > li:not(:last-child)::before {
  content: "";
  background: #83cdda;
  width: 2px;
  height: 100%;
  position: absolute;
  top: calc(50% - -30px);
  left: 16px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.flow01 > li dl dt {
  font-size: 1em;
  font-weight: 400;
}

.flow01 > li dl dd {
  margin-left: 0;
}

.flow_design02 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow02 {
  padding-left: 0;
}

.flow02 > li {
  list-style-type: none;
  position: relative;
  padding-left: 50px;
}

.flow02 > li:not(:last-child) {
  padding-bottom: 10px;
}

.flow02 > li .icon02 {
  width: 2em;
  height: 2em;
  line-height: 2em;
  text-align: center;
  border-radius: 100vh;
  display: inline-block;
  background: #c9a063;
  color: #fff;
  position: absolute;
  left: 0;
  font-weight: 600;
}

.flow02 > li:not(:last-child)::before {
  content: "";
  background: #c9a063;
  width: 2px;
  height: 100%;
  position: absolute;
  top: calc(50% - -30px);
  left: 16px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.flow02 > li dl dt {
  font-weight: 400;
}

.flow02 > li dl dd {
  margin-left: 0;
}

/*★よくある問い合わせ
---------------------------------------------------------------------------*/

.accordion {
  /* max-width: 500px; */
  margin-bottom: 7px;
  border-bottom: 1px solid #d0d0d0;
}

.accordion summary {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: 1em 0.5em;
  color: #339999;
  font-weight: 600;
  cursor: pointer;
}
.accordion-qa {
  display: inline-flex;
  color: #83cdda;
  padding-right: 0.5em;
  font-weight: 600;
}
.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::before,
.accordion summary::after {
  width: 3px;
  height: 1em;
  background-color: #83cdda;
  content: "";
}

.accordion summary::before {
  position: absolute;
  right: 1em;
  rotate: 90deg;
}

.accordion summary::after {
  transition: rotate 0.3s;
  right: 1em;
  position: absolute;
}

.accordion[open] summary::after {
  rotate: 90deg;
}

.accordion p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0.3em 1em 1em;
  color: #333333;
  transition: transform 0.5s, opacity 0.5s;
}

.accordion[open] p {
  transform: none;
  opacity: 1;
}

/*ギャラリー
---------------------------------------------------------------------------*/

#gallery .gallery-box {
  position: relative;
  overflow: visible;
  margin: 0 calc(-1 * var(--global-space));
}

/*サムネイルスライドショー
---------------------------------------------------------------------------*/
/*スライドショーブロック全てを囲むブロック*/
.slide-thumbnail-box {
  overflow-x: hidden;
}

/*画像たちを囲むブロック*/
.slide-thumbnail1 .img {
  display: flex;
}

/*画像*/
.slide-thumbnail1 .img img {
  padding: 0 2px; /*画像の余白*/
}

/*右から左へ、左から右へ、のアニメーション*/
.slide-thumbnail1 .rtl,
.slide-thumbnail1 .ltr {
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.slide-thumbnail1 .rtl {
  animation-name: slide-rtl;
}
.slide-thumbnail1 .ltr {
  animation-name: slide-ltr;
}

@keyframes slide-rtl {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes slide-ltr {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/*フッター設定（コピーライト部分）
---------------------------------------------------------------------------*/
#footer_menu .contents {
  background: url("../images/bg_footer.jpg") no-repeat center center;
}
#footer_menu .logo_s {
  width: 200px;
  margin: 30px 0;
  padding-bottom: 10px;
  padding-right: 10px;
}

#footer_menu ul li {
  display: block;
  padding: 10px 0;
  list-style: none;
}
#footer_menu ul li a {
  text-decoration: none;
}

#footer .contents {
  background-color: #212832;
  color: #fff;
}

footer small {
  font-size: 100%;
}
footer {
  font-size: 0.8rem; /*文字サイズ80%*/
  text-align: center; /*内容をセンタリング*/
}

/*リンクテキスト*/
footer a {
  color: inherit;
  text-decoration: none;
}

.footer-rio {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 0.8em;
}
.footer-rio li {
  list-style: none;
  margin-right: 20px;
}

/*著作部分（※意図的に見えなくしたりしないで下さい。規約違反になります。）*/
.pr {
  display: none; /*★著作権後ほど購入 */
}
.pr a {
  text-decoration: none;
  display: block;
  background: rgba(0, 0, 0, 0.7);
  text-align: right;
  padding: 0.5rem 1rem;
  color: #ccc;
}
.pr a::before {
  font-family: "Font Awesome 6 Free";
  content: "\e2ca";
  font-weight: bold;
  margin-right: 0.5em;
}

/*★ボタン
---------------------------------------------------------------------------*/
.button-entry {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  margin: 30px auto;
  border: 1px solid #83cdda;
  border-radius: 50px;
  background-color: #83cdda;
  color: #fff;
  font-size: 1em;
  font-family: "Inter", "A+EqpB-游ゴシック体 Pr6N D";
  box-shadow: 0px 5px 5px -5px rgba(0, 0, 0, 0.3);
}

.button-entry::after {
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  margin-left: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
}
.button-entry:hover {
  background-color: #339999;
  transition: 1s;
}

.button-entry a {
  padding: 20px 40px 20px 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 600;
}

.button-login {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  margin: 30px auto;
  border: 1px solid #c9a063;
  border-radius: 50px;
  background-color: #c9a063;
  color: #fff;
  font-size: 1em;
  font-family: "Inter", "A+EqpB-游ゴシック体 Pr6N D";
  box-shadow: 0px 5px 5px -5px rgba(0, 0, 0, 0.3);
}

.button-login::after {
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
}

.button-login:hover {
  background-color: #dfbe8c;
  transition: 1s;
}

.button-login a {
  padding: 20px 40px 20px 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 600;
}

.button-map {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  margin: 30px auto;
  border: 2px solid #888;
  border-radius: 50px;
  background-color: #fff;
  color: #333;
  font-size: 1em;
  font-family: "Inter", "A+EqpB-游ゴシック体 Pr6N D";
  box-shadow: 0px 5px 5px -5px rgba(0, 0, 0, 0.3);
}

.button-map::after {
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  margin-left: 5px;
  border-top: 2px solid #888;
  border-right: 2px solid #888;
  content: "";
}

.button-map a {
  padding: 20px 40px 20px 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 500;
  -webkit-tap-highlight-color: transparent;
  color: #333;
}
.button-map a:focus {
  outline: none;
}

/*メニューブロック初期設定
---------------------------------------------------------------------------*/
/*メニューをデフォルトで非表示*/
#menubar {
  display: none;
}
#menubar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#menubar a {
  display: block;
  text-decoration: none;
}

/*上で非表示にしたメニューを表示させる為の設定*/
.large-screen #menubar {
  display: block;
}
.small-screen #menubar.display-block {
  display: block;
}

/*3本バーをデフォルトで非表示*/
#menubar_hdr.display-none {
  display: none;
}

/*開閉メニュー
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
.small-screen #menubar.display-block {
  position: fixed;
  overflow: auto;
  z-index: 100;
  right: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  padding: 90px 10vw 50px; /*ブロック内の余白。上、左右、下への順番。*/
  background: #83cdda;
  color: #fff;
  animation: opa1 1s both; /*opa1を実行する。1sは1秒の事。*/
}

/*メニュー１個あたりの設定*/
.small-screen #menubar nav ul li {
  border-bottom: 1px solid #fff;
}
.small-screen #menubar a {
  color: inherit;
  padding: 1rem 2rem; /*メニュー内の余白。上下、左右へ。*/
}

/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
  animation: opa1 0s 0.2s both;
  position: fixed;
  z-index: 101;
  cursor: pointer;
  right: 0px; /*右からの配置場所指定*/
  top: 0px; /*上からの配置場所指定*/
  padding: 16px 14px; /*上下、左右への余白*/
  width: 46px; /*幅（３本バーが出ている場合の幅になります）*/
  height: 46px; /*高さ*/
  display: flex; /*flexボックスを使う指定*/
  flex-direction: column; /*子要素（３本バー）部分。flexはデフォルトで横並びになるので、それを縦並びに変更。*/
  justify-content: space-between; /*並びかたの種類の指定*/
  transform: scale(2); /*デフォルトで準備したサイズの２倍。お好みで。*/
  transform-origin: right top;
  mix-blend-mode: exclusion;
}

/*バー１本あたりの設定*/
#menubar_hdr span {
  display: block;
  transition: 0.3s; /*アニメーションにかける時間。0.3秒。*/
  border-top: 1px solid #fff; /*線の幅、線種、色*/
}

/*×印が出ている状態の3本バーの背景色*/
#menubar_hdr.ham {
  background: #000;
}

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
  transform-origin: center center; /*変形の起点。センターに。*/
  width: 20px; /*バーの幅*/
}

/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1) {
  transform: rotate(45deg) translate(3.8px, 5px); /*回転45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※３本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3) {
  transform: rotate(-45deg) translate(3.8px, -5px); /*回転-45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※２本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2) {
  display: none; /*２本目は使わないので非表示にする*/
}

/*画面幅999px以下の追加指定*/
@media screen and (max-width: 999px) {
  .manual.margin-left {
    padding-left: 4vw;
  }
}
/*画面幅600px以下*/
@media (max-width: 600px) {
  header .contents {
    height: 2000px;
    background-size: cover;
  }
}
/*画面幅400px以下*/
@media (max-width: 440px) {
  header .contents {
    height: 1600px;
    background-size: cover;
  }
  .list-recommend dt {
    letter-spacing: -2px;
  }
}

/*その他
---------------------------------------------------------------------------*/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.l {
  text-align: left !important;
}
.c {
  text-align: center !important;
}
.r {
  text-align: right !important;
}
.ws {
  width: 95%;
  display: block;
}
.wl {
  width: 95%;
  display: block;
}
.mb0 {
  margin-bottom: 0px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.look {
  display: inline-block;
  padding: 0px 10px;
  background: #000;
  border: 1px solid #fff;
  border-radius: 3px;
  margin: 5px 0;
  word-break: break-all;
}
.small {
  font-size: 0.75em;
}
.large {
  font-size: 2em;
  letter-spacing: 0.1em;
}
.color-check,
.color-check a {
  color: var(--accent-color);
}
.pc {
  display: none;
}
.dn {
  display: none !important;
}
.block {
  display: block !important;
}
pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/*画面幅900px以上の追加指定*/
@media screen and (min-width: 900px) {
  .ws {
    width: 48%;
    display: inline;
  }
  .sh {
    display: none;
  }
  .pc {
    display: block;
  }
} /*画面幅900px以上の追加指定ここまで*/
