@charset "UTF-8";
/*
Theme Name: noz
Theme URL:
Description :
Author: Ryoka Ikematsu
Version : 1.0.0
*/
@import "css/sanitize.css";
/* ==========================================================================
   RESET
========================================================================== */
body,
div,
p,
ul,
ol,
dl,
form,
table,
fieldset,
img,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  border: 0;
  padding: 0;
}

a {
  outline: 0;
}

em,
address {
  font-style: normal;
}

li {
  list-style: none;
}

table {
  border-collapse: collapse;
}

img {
  vertical-align: bottom;
}

a {
  color: #000000;
  text-decoration: none;
}
a:hover {
  transition: 0.5s;
  text-decoration: none;
  filter: alpha(opacity=75);
  -moz-opacity: 0.75;
  opacity: 0.75;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

/* ==========================================================================
   Base Styles
========================================================================== */
/* ======================
   Common
====================== */
html {
  scroll-behavior: revert;
}

body {
	font-family: 'Noto Sans JP', sans-serif;
  font-weight: normal;
  color: #000000;
  line-height: 2.5;
  font-size: 16px;
  letter-spacing: 0.05em;
}
@media (min-width: 1280px) {
  body {
    line-height: 3.5;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

@font-face {
  font-family: "yumin";
  src: url("fonts/yumin.eot?") format("eot"), url("fonts/yumin.woff2") format("woff2"), url("fonts/yumin.woff") format("woff");
}
.yumin {
  font-family: "yumin", serif;
}

@font-face {
  font-family: "yumindb";
  src: url("fonts/yumindb.eot?") format("eot"), url("fonts/yumindb.woff2") format("woff2"), url("fonts/yumindb.woff") format("woff");
}
.yumindb {
  font-family: "yumindb", serif;
}

@font-face {
  font-family: "yuminl";
  src: url("fonts/yuminl.eot?") format("eot"), url("fonts/yuminl.woff2") format("woff2"), url("fonts/yuminl.woff") format("woff");
}
.yuminl {
  font-family: "yuminl", serif;
}

@font-face {
  font-family: "optima";
  src: url("fonts/OPTIMA.eot?") format("eot"), url("fonts/OPTIMA.woff2") format("woff2"), url("fonts/OPTIMA.woff") format("woff");
}
.optima {
  font-family: "optima", serif;
}

@font-face {
  font-family: "lb";
  src: url("fonts/LibreBaskerville-Regular.woff") format("woff"), url("fonts/LibreBaskerville-Regular.ttf") format("ttf");
}
.lb {
  font-family: "lb", serif;
}

@font-face {
  font-family: "pd";
  src: url("fonts/PlayfairDisplay-Regular.woff") format("woff"), url("fonts/PlayfairDisplay-Regular.ttf") format("ttf");
}
.pd {
font-family: 'Noto Sans JP', sans-serif;
}

.light {
  font-weight: 300;
}

.medium {
  font-weight: 500;
}

.bold {
  font-weight: 700;
}

.white {
  color: #000000;
}

.black {
  color: #474a4d;
}

.blue {
  color: #adadad;
}

.bg-white {
  background-color: #ffffff;
}

.bg-black {
  background-color: #474a4d;
}

.bg-beige {
  background-color:rgb(245 245 245);
}

.bg-gray {
  background-color: rgba(224, 219, 219, 0.2);
}

.shadow {
	box-shadow: 10px 10px rgba(2, 1, 4, 0.1)
}

.sepia {
  position: relative;
  filter: contrast(50%) brightness(120%) saturate(100%) sepia(35%);
}

.pc-area {
  display: none;
}
@media (min-width: 768px) {
  .pc-area {
    display: block;
  }
}

.sp-area {
  display: block;
}
@media (min-width: 768px) {
  .sp-area {
    display: none;
  }
}

.new-line {
  display: block;
}
@media (min-width: 768px) {
  .new-line {
    display: none;
  }
}

a[href^="tel:"] {
  pointer-events: initial;
}

.inner {
  padding: 0 15px;
  position: relative;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .inner {
    padding: 0 25px;
  }
}
@media (min-width: 1280px) {
  .inner {
    padding: 0;
  }
}

.flex {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}

img {
  width: 100%;
}

.zoomIn img {
  transform: scale(1);
  transition: 0.3s ease-in-out;
}
.zoomIn a:hover img {
  transform: scale(1.1);
}

.animate__animated {
  /* フェードアップ */
  /* フェードダウン */
  /* 右から左にフェード */
  /* 左から右にフェード */
}
.animate__animated.fadeup {
  -webkit-animation-name: fadeup;
          animation-name: fadeup;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  opacity: 0;
}
@-webkit-keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate__animated.fadedown {
  -webkit-animation-name: fadedown;
          animation-name: fadedown;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  opacity: 0;
}
@-webkit-keyframes fadedown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadedown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate__animated.fadeleft {
  -webkit-animation-name: fadeleft;
          animation-name: fadeleft;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  opacity: 0;
}
@-webkit-keyframes fadeleft {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeleft {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.animate__animated.faderight {
  -webkit-animation-name: faderight;
          animation-name: faderight;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  opacity: 0;
}
@-webkit-keyframes faderight {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes faderight {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ======================
   Header
====================== */
.header-container {
  position: relative;
  z-index: 3;
}
/* ★変更箇所：初期背景を透明にし、トランジションを追加 */
.header-container header .site-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 60px;
  padding: 0 15px;
  position: fixed;
  top: 0;
  left: 0;
  background: transparent;
  width: 100%;
  transition: background-color 0.5s ease;
}
/* ★変更箇所：スクロール後に白背景になるためのクラス */
.header-container header .site-header.is-scrolled {
  background: #ffffff;
}
.header-container header .site-header.transform {
  background:rgb(14 26 98);
  padding: 0 15px;
}
.header-container header .site-header .site-logo {
  margin-right: 1rem;
}
.header-container header .site-header .site-logo img {
  width: 62px;
  width: 16.5333333333vw;
}
@media (min-width: 768px) {
  .header-container header .site-header .site-logo img {
    width: 76px;
    width: 9.8958333333vw;
  }
}
@media (min-width: 1280px) {
  .header-container header .site-header .site-logo img {
    width: 90px;
  }
}
.header-container header .site-header .title {
  position: relative;
  line-height: 1;
  z-index: 2;
}
.header-container header .site-header .title a {
  letter-spacing: 0.05em;
  font-weight: normal;
  font-size: 25px;
  font-size: 6.6666666667vw;
}
@media (min-width: 768px) {
  .header-container header .site-header .title a {
    font-size: 30px;
    font-size: 3.90625vw;
  }
}
@media (min-width: 1280px) {
  .header-container header .site-header .title a {
    font-size: 36px;
  }
}
.header-container header .site-header .menu-box .navToggle {
  display: block;
  position: fixed;
  right: 10px;
  top: 10px;
  width: 44px;
  height: 38px;
  cursor: pointer;
  z-index: 10001;
  text-align: center;
}
.header-container header .site-header .menu-box .navToggle span {
  display: block;
  position: absolute;
  width: 35px;
  border-bottom: solid 2px #474a4d;
  transition: 0.35s ease-in-out;
  left: 5px;
}
.header-container header .site-header .menu-box .navToggle span:nth-child(1) {
  top: 8px;
}
.header-container header .site-header .menu-box .navToggle span:nth-child(2) {
  top: 18px;
  width: 18px;
  left: 13px;
}
.header-container header .site-header .menu-box .navToggle span:nth-child(3) {
  top: 28px;
}
.header-container header .site-header .menu-box .navToggle.active span:nth-child(1) {
  top: 18px;
  left: 5px;
  transform: rotate(-45deg);
}
.header-container header .site-header .menu-box .navToggle.active span:nth-child(2), .header-container header .site-header .menu-box .navToggle.active span:nth-child(3) {
  top: 18px;
  transform: rotate(45deg);
}
.header-container header .site-header .globalMenu {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  background: #FFFFFF;
  color: #000000;
  text-align: left;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 768px) {
  .header-container header .site-header .globalMenu {
    width: 321px;
  }
}
.header-container header .site-header .globalMenu ul {
  background: rgba(255, 255, 255, 0.75);
  margin: 0 auto;
  padding: 60px 15px 15px;
}
.header-container header .site-header .globalMenu ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #474a4d;
}
.header-container header .site-header .globalMenu ul li:first-child {
  border-top: 1px solid #474a4d;
}
.header-container header .site-header .globalMenu ul li:last-child {
  padding-bottom: 0;
}
.header-container header .site-header .globalMenu ul li a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: #000000;
  padding: 1em 0;
  font-size: 16px;
}
.header-container header .site-header .globalMenu ul li a::first-letter {
  color:#000000;

;
}
.header-container header .site-header .globalMenu ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #adadad;
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: center top;
}
.header-container header .site-header .globalMenu ul li a span {
  margin-left: 1em;
  font-size: 12px;
}
.header-container header .site-header .globalMenu ul li a i {
  margin-right: 8px;
}
.header-container header .site-header .globalMenu ul li:hover a {
  color: #adadad;
}
.header-container header .site-header .globalMenu.active {
  transform: translateX(0%);
}

/*========= 背景動画 ===============*/
/*header設定*/
/* ★変更箇所：margin-topを0にして画像が一番上から始まるようにする */
.mv {
  margin-top: 0;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .mv {
    margin-bottom: 2rem;
  }
}
@media (min-width: 1280px) {
  .mv {
    margin-bottom: 5rem;
  }
}
.mv #header {
  position: relative;
  text-align: center;
  color: #ffffff;
}
.mv #header #loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
}
.mv #header #loading.disappear {
  display: none;
}
.mv #header .mv_title {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  color:#e6e6e6;
  text-shadow: 0 0 15px #ffffff;
  line-height: 2;
  font-weight: normal;
  letter-spacing: 0.05em;
  width: 100%;
  font-size: 22px;
  font-size: 5.8666666667vw;
}
@media (min-width: 768px) {
  .mv #header .mv_title {
    font-size: 29px;
    font-size: 3.7760416667vw;
  }
}
@media (min-width: 1280px) {
  .mv #header .mv_title {
    font-size: 32px;
  }
}
.mv #header .mv_title span {
  display: inline-block;
  background-color:rgb(0 0 0 / 60%);
  line-height: 1;
  padding: 10px;
  letter-spacing: 0.2em;
  opacity: 0;
}
.mv #header #video-area {
  z-index: -1;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1/1;
}
@media (min-width: 768px) {
  .mv #header #video-area {
    aspect-ratio: 16/9;
  }
}
.mv #header #video-area #video {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.mv #header .main-slide {
  width: 100%;
  max-width: 100%;
  margin: auto 0;
  position: relative;
  z-index: 1;
}
.mv #header .main-slide img {
  width: 100%;
  margin: 0 auto;
}
.mv #header .main-slide .slick-dots {
  bottom: -56px;
}
.mv #header.appear {
  -webkit-animation-name: PageAnimeAppear;
          animation-name: PageAnimeAppear;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.page:not(.home) .mv #header .mv_title span,
.archive .mv #header .mv_title span,
.single .mv #header .mv_title span {
  background: none;
}

.page .mv #header .main-img {
  position: relative;
}
.page .mv #header .main-img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 200px;
  height: 53.3333333333vw;
}
@media (min-width: 768px) {
  .page .mv #header .main-img img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}
.page .mv #header .main-img .mv_title span {
  background: none;
}

/*========= スクロールダウン ===============*/
.scrolldown {
  position: absolute;
  bottom: 20px;
  left: 5%;
  z-index: 1;
  -webkit-animation: arrowmove 1s ease-in-out infinite;
          animation: arrowmove 1s ease-in-out infinite;
}
@media (min-width: 768px) {
  .scrolldown {
    bottom: 5%;
    left: 5%;
  }
}
@-webkit-keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 3%;
  }
  100% {
    bottom: 1%;
  }
}
@keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 3%;
  }
  100% {
    bottom: 1%;
  }
}
.scrolldown span {
  position: absolute;
  left: 0;
  top: -94px;
  color: #ffffff;
  font-size: 10px;
  letter-spacing: 0.25em;
  -ms-writing-mode: tb-lr;
      writing-mode: vertical-lr;
  font-family: "lb", serif;
}
@media (min-width: 768px) {
  .scrolldown span {
    top: -150px;
  }
}
.scrolldown::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 5px;
  width: 1px;
  height: 15px;
  background: #ffffff;
  transform: skewX(-31deg);
}
.scrolldown:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 94px;
  background: #ffffff;
}
@media (min-width: 768px) {
  .scrolldown:after {
    height: 150px;
  }
}

.fixed-bnr {
  display: block;
}
.fixed-bnr .fixed-bnr-inner {
  position: fixed;
  top: 9px;
  right: 60px;
  z-index: 4;
}
@media (min-width: 768px) {
  .fixed-bnr .fixed-bnr-inner {
    top: 2px;
  }
}
@media (min-width: 1280px) {
  .fixed-bnr .fixed-bnr-inner {
    top: 0;
  }
}
.fixed-bnr .fixed-bnr-inner a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  margin: 0 auto;
  background: #90a9e9;
  line-height: 1;
  width: 130px;
  color: 000000;
  font-size: 13px;
  box-shadow: 1px 1px 1px;
}
@media (min-width: 768px) {
  .fixed-bnr .fixed-bnr-inner a {
    padding: 21px;
    width: 205px;
    font-size: 18px;
  }
}
@media (min-width: 1280px) {
  .fixed-bnr .fixed-bnr-inner a {
    width: 260px;
    font-size: 18px;
	box-shadow: 3px 3px 9px;
  }
}
.fixed-bnr .fixed-bnr-inner a span {
  font-family: "yumin", serif;
  float: right;
  font-size: 10px;
  font-size: 2.6666666667vw;
}
@media (min-width: 768px) {
  .fixed-bnr .fixed-bnr-inner a span {
    font-size: 13px;
    font-size: 1.6927083333vw;
  }
}
@media (min-width: 1280px) {
  .fixed-bnr .fixed-bnr-inner a span {
    font-size: 16px;
  }
}

/* ======================
   Main
====================== */
.main-container {
  position: relative;
  z-index: 1;
  background: #ffffff;
}
article section {
  padding: 2rem 0;
}
@media (min-width: 768px) {
  article section {
    padding: 2.5rem 0;
  }
}
@media (min-width: 1280px) {
  article section {
    padding: 3rem 0;
  }
}
article section .title {
  position: relative;
  opacity: 0;
  letter-spacing: 0.2em;
  line-height: 1.2;
  font-weight: normal;
  width: 95%;          /* スマホで横幅を広く使い、1行に入りやすくする */
  padding-bottom: 15px;
  margin: 0 auto 1rem;
  
  /* --- スマホ用のサイズ (ここを小さくしました) --- */
  font-size: 28px;
  font-size: 8vw;      /* 9文字＋字間が収まりやすいサイズ */
}

@media (min-width: 768px) {
  article section .title {
    width: 100%;
    margin-bottom: 0;
    /* --- PC/タブレット用: 元の大きさを維持 --- */
    font-size: 52px;
    font-size: 6.7708333333vw;
  }
}

@media (min-width: 1280px) {
  article section .title {
    margin-bottom: 2rem;
    /* --- PC(大)用: 元の大きさを維持 --- */
    font-size: 60px;
  }
}
article section .title::first-letter {
  color:#000000;
}
article section .title::after {
  content: "";
  height: 1px;
  background-color: #B5B5B6;
  position: absolute;
  bottom: 25px;
  left: 0;
  margin-bottom: 1rem;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  article section .title::after {
    width: 370px;
  }
}
@media (min-width: 1280px) {
  article section .title::after {
    width: 500px;
  }
}
article section .title .sub-title {
  display: block;
  margin-top: 1rem;
  letter-spacing: 0.05em;
font-family: 'Noto Sans JP', sans-serif;
  text-align: left;
  font-size: 12px;
  font-size: 3.2vw;
}
@media (min-width: 768px) {
  article section .title .sub-title {
    font-size: 15px;
    font-size: 1.953125vw;
  }
}
@media (min-width: 1280px) {
  article section .title .sub-title {
    font-size: 18px;
  }
}
article section .title p {
  margin-bottom: 1rem;
}

.link-btn {
  display: block;
  text-align: center;
  padding: 14px 15px;
  margin: 2rem auto;
  line-height: 1;
  color:#ffffff;
  background:rgb(202 202 202);
  border: solid 1px#ffffff;
  box-sizing: border-box;
  letter-spacing: 0.05em;
  width: 225px;
  width: 60vw;
  font-size: 13px;
  font-size: 3.4666666667vw;
}
@media (min-width: 768px) {
  .link-btn {
    margin: 1rem auto;
    padding: 18px 15px;
    margin: 1rem auto;
    width: 262px;
    width: 34.1145833333vw;
    font-size: 16px;
    font-size: 2.0833333333vw;
  }
}
@media (min-width: 1280px) {
  .link-btn {
    margin: 3rem auto;
    padding: 21px 15px;
    width: 300px;
    font-size: 18px;
  }
}
.link-btn:hover {
  color: #C9CACA;
  background: #ffffff;
  border: solid 1px #C9CACA;
  box-sizing: border-box;
}

#message .title {
  opacity: 1;
}
#message .title::after {
  left: 0;
  transform: none;
}
#message .message_wrap {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-around;
  -webkit-box-pack: space-around;
  -ms-flex-pack: space-around;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: wrap;
}
#message .info {
  width: 100%;
}
@media (min-width: 768px) {
  #message .info {
    width: 50%;
  }
}
@media (min-width: 1280px) {
  #message .info {
    width: 50%;
  }
}
#message .info .link-btn {
  margin: 3rem auto;
}
@media (min-width: 768px) {
  #message .info .link-btn {
    margin: 3rem 0;
  }
}
#message .img {
  width: 100%;
  opacity: 0;
}
@media (min-width: 768px) {
  #message .img {
    width: 50%;
  }
}
@media (min-width: 1280px) {
  #message .img {
    width: 38%;
    margin: 0;
  }
}

#trouble .trouble_wrap {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  #trouble .trouble_wrap {
    display: flex;
    display: -ms-flexbox;
    justify-content: space-around;
    -webkit-box-pack: space-around;
    -ms-flex-pack: space-around;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    flex-wrap: wrap;
    padding-left: 10px;
    padding-left: 1.3020833333vw;
    padding-right: 10px;
    padding-right: 1.3020833333vw;
  }
}
@media (min-width: 1280px) {
  #trouble .trouble_wrap {
    padding: 0 170px;
  }
}
#trouble .title2 {
  position: relative;
  background: #ffffff;
  padding: 15px;
  margin-bottom: 2rem;
  line-height: 1;
  letter-spacing: 0.15em;
  font-size: 17px;
  font-size: 4.5333333333vw;
  opacity: 0;
}
@media (min-width: 768px) {
  #trouble .title2 {
    width: 500px;
    width: 65.1041666667vw;
    margin: 0 auto 3rem;
    font-size: 23px;
    font-size: 2.9947916667vw;
  }
}
@media (min-width: 1280px) {
  #trouble .title2 {
    width: 700px;
    font-size: 30px;
  }
}
#trouble .title2:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 15px solid #ffffff;
}
#trouble .title2 span {
  font-size: 23px;
  font-size: 6.1333333333vw;
  color: #000000;
}
@media (min-width: 768px) {
  #trouble .title2 span {
    font-size: 33px;
    font-size: 4.296875vw;
  }
}
@media (min-width: 1280px) {
  #trouble .title2 span {
    font-size: 42px;
  }
}
#trouble .trouble_list {
  width: 100%;
  margin-bottom: 2rem;
  opacity: 0;
}
@media (min-width: 768px) {
  #trouble .trouble_list {
    max-width: 50%;
    margin-bottom: 0;
  }
}
#trouble .trouble_list li {
  position: relative;
  line-height: 1;
  margin-bottom: 1.25rem;
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: bold;
}
@media (min-width: 1280px) {
  #trouble .trouble_list li {
    font-size: 18px;
  }
}

#trouble .trouble_list li::before {
  content: "";
  background: url("images/icn_check.svg") center 100%/cover no-repeat;
  width: 17px;
  height: 17px;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: -2px;
}

#trouble .img {
  width: 100%;
  opacity: 0;
}
@media (min-width: 768px) {
  #trouble .img {
    width: 50%;
  }
}
#trouble .link-btn {
  margin-bottom: 0;
}

#style .title span {
  text-align: center;
}
#style .style_list {
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  #style .style_list {
    padding: 0;
  }
}
#style .style_list li {
  width: 47.5%;
  margin-bottom: 1rem;
  margin-right: 5%;
}
@media (min-width: 768px) {
  #style .style_list li {
    width: 23%;
    margin-right: 2.5%;
  }
}
#style .style_list li a {
  display: block;
  width: 100%;
  height: 100%;
}
#style .style_list li a img {
  width: 100%;
}
#style .style_list li:nth-of-type(2) {
  margin-top: 2rem;
}
#style .style_list li:nth-of-type(2n) {
  margin-top: 3rem;
  margin-bottom: -2rem;
  margin-right: 0;
}
@media (min-width: 768px) {
  #style .style_list li:nth-of-type(2n) {
    margin-right: 2.5%;
  }
}
#style .style_list li:nth-of-type(4n) {
  margin-right: 0;
}

#salon {
  background-size: 160%;
  background-position: top center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  #salon {
    background-size: contain;
  }
}


#salon .title {
  color: #000000;
  padding-top: 10px;
  padding-top: 2.6666666667vw;
}
@media (min-width: 768px) {
  #salon .title {
    padding-top: 35px;
    padding-top: 4.5572916667vw;
  }
}
@media (min-width: 1280px) {
  #salon .title {
    padding-top: 70px;
    padding-top: 5.46875vw;
    margin-bottom: 100px;
    margin-bottom: 7.8125vw;
  }
}
#salon .title::after {
  background-color: #474a4d;
}
#salon .title::first-letter {
  color: #000000;
}
#salon span {
  text-align: center;
}
#salon .salon_list {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 2rem;
  margin-top: 30px;
  margin-top: 3.90625vw;
  opacity: 0;
}
@media (min-width: 768px) {
  #salon .salon_list {
    margin-top: 20px;
    margin-top: 2.6041666667vw;
    margin-bottom: 2rem;
  }
}
@media (min-width: 1280px) {
  #salon .salon_list {
    margin-top: 80px;
    margin-top: 6.25vw;
  }
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  #salon .salon_list {
    margin-top: 110px;
    margin-top: 7.6388888889vw;
  }
}
@media screen and (min-width: 1441px) and (max-width: 1920px) {
  #salon .salon_list {
    margin-top: 200px;
    margin-top: 10.4166666667vw;
  }
}
#salon .salon_list li {
  width: 30%;
}
#salon .salon_list li img {
  width: 100%;
}
#salon p {
  text-align: left;
}
@media (min-width: 768px) {
  #salon p {
    text-align: center;
  }
}

#staff .title {
  opacity: 1;
}
#staff .title::after {
  left: 0;
  transform: none;
}
#staff .staff_list {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-around;
  -webkit-box-pack: space-around;
  -ms-flex-pack: space-around;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: wrap;
}
#staff .staff_list .txt {
  width: 100%;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  #staff .staff_list .txt {
    width: 50%;
    margin-bottom: 0;
  }
}
@media (min-width: 1280px) {
  #staff .staff_list .txt {
    width: 47.5%;
    margin-right: 2.5%;
  }
}
#staff .staff_list .txt .link-btn {
  margin: 3rem 0;
}
#staff .staff_list .img {
  padding: 0 4rem;
  opacity: 0;
}
@media (min-width: 768px) {
  #staff .staff_list .img {
    padding: 0 2rem;
    width: 50%;
  }
}
@media (min-width: 1280px) {
  #staff .staff_list .img {
    width: 47.5%;
    padding: 0 6rem;
  }
}
#staff .staff_list .img p {
  position: relative;
}
#staff .staff_list .img p::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  display: block;
  border: 1px solid #adadad;
}
#staff .staff_list .img p::after img {
  width: 100%;
}

#faq .title {
  text-align: center;
}
#faq .title span {
  text-align: center;
}
#faq .faq_list {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-evenly;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: wrap;
}
#faq .faq_list li {
  width: 100%;
  background-color: #ffffff;
  padding: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  #faq .faq_list li {
    width: 45%;
  }
}
#faq .faq_list li .faq_ttl {
  padding: 1rem;
  border-bottom: solid 1px #000000;
  line-height: 2;
  font-size: 16px;
}
#faq .faq_list li .faq_txt {
  padding: 1rem;
  font-size: 14px;
}
#faq .link-btn {
  margin: 1rem auto;
}

#blog .title::after {
  left: 0;
  transform: none;
}
#blog .blog_list {
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}
#blog .blog_list .blog_item {
  width: 47.5%;
  margin-bottom: 2rem;
  margin-right: 5%;
}
@media (min-width: 768px) {
  #blog .blog_list .blog_item {
    width: 23%;
    margin-right: 2.5%;
  }
}
#blog .blog_list .blog_item > a {
  display: block;
  width: 100%;
  height: 100%;
}
#blog .blog_list .blog_item .img {
  width: 100%;
  margin-bottom: 0.5rem;
}
#blog .blog_list .blog_item .img img {
  width: 100%;
}
#blog .blog_list .blog_item .post-categories {
  line-height: 1;
  margin-bottom: 0.5rem;
  line-height: 1;
  display: inline-block;
  background-color: #adadad;
  color: #ffffff;
  line-height: 1;
  text-align: center;
  padding: 5px 10px;
  font-size: 12px;
  pointer-events: none;
}
#blog .blog_list .blog_item .blog_title {
  margin-bottom: 0.5rem;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.25;
}
#blog .blog_list .blog_item .date {
  line-height: 1;
  font-size: 14px;
}
#blog .blog_list .blog_item:nth-of-type(2) {
  margin-top: 2rem;
}
#blog .blog_list .blog_item:nth-of-type(2n) {
  margin-top: 3rem;
  margin-bottom: -2rem;
  margin-right: 0;
}
@media (min-width: 768px) {
  #blog .blog_list .blog_item:nth-of-type(2n) {
    margin-right: 2.5%;
  }
}
#blog .blog_list .blog_item:nth-of-type(4n) {
  margin-right: 0;
}

.page:not(.home) .concept #intro {
  padding: 3rem 0 5rem;
}
.page:not(.home) .concept #intro .intro_wrap {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
}
.page:not(.home) .concept #intro .intro_wrap .info_item {
  width: 100%;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .page:not(.home) .concept #intro .intro_wrap .info_item {
    width: 50%;
    margin-bottom: 0;
  }
}
.page:not(.home) .concept #intro .intro_wrap .img {
  width: 100%;
}
.page:not(.home) .concept #intro .intro_wrap .img.inner {
  padding: 0 15px;
}
@media (min-width: 768px) {
  .page:not(.home) .concept #intro .intro_wrap .img {
    width: 50%;
  }
}
.page:not(.home) .concept #choice .title2 {
  position: relative;
  padding: 15px;
  margin-bottom: 2rem;
  line-height: 1;
  font-size: 16px;
  font-size: 4.2666666667vw;
}
@media (min-width: 768px) {
  .page:not(.home) .concept #choice .title2 {
    width: 500px;
    width: 65.1041666667vw;
    margin: 0 auto 3rem;
    font-size: 23px;
    font-size: 2.9947916667vw;
  }
}
@media (min-width: 1280px) {
  .page:not(.home) .concept #choice .title2 {
    width: 700px;
    font-size: 30px;
  }
}
.page:not(.home) .concept #choice .title2 span {
  font-size: 23px;
  font-size: 6.1333333333vw;
  color: #000000;
}
@media (min-width: 768px) {
  .page:not(.home) .concept #choice .title2 span {
    font-size: 33px;
    font-size: 4.296875vw;
  }
}
@media (min-width: 1280px) {
  .page:not(.home) .concept #choice .title2 span {
    font-size: 42px;
  }
}
.page:not(.home) .concept #choice .choice_wrap {
  margin-top: 3rem;
}
.page:not(.home) .concept #choice .choice_wrap .choice_item {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-around;
  -webkit-box-pack: space-around;
  -ms-flex-pack: space-around;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  position: relative;
  padding: 4rem 2rem 2rem;
  background-color: #ffffff;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .page:not(.home) .concept #choice .choice_wrap .choice_item {
    padding: 5rem 2rem 2rem;
    margin-bottom: 4rem;
  }
}
@media (min-width: 1280px) {
  .page:not(.home) .concept #choice .choice_wrap .choice_item {
    padding: 6rem 2rem 2rem;
    margin-bottom: 5rem;
  }
}
.page:not(.home) .concept #choice .choice_wrap .choice_item .txt {
  width: 100%;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .page:not(.home) .concept #choice .choice_wrap .choice_item .txt {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 0;
  }
}
.page:not(.home) .concept #choice .choice_wrap .choice_item .txt h2 {
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 20px;
  font-size: 5.3333333333vw;
}
@media (min-width: 768px) {
  .page:not(.home) .concept #choice .choice_wrap .choice_item .txt h2 {
    font-size: 20px;
    font-size: 2.6041666667vw;
  }
}
@media (min-width: 1280px) {
  .page:not(.home) .concept #choice .choice_wrap .choice_item .txt h2 {
    list-style: 2;
    font-size: 24px;
  }
}
.page:not(.home) .concept #choice .choice_wrap .choice_item .txt p {
  line-height: 2;
  font-size: 14px;
  font-size: 3.7333333333vw;
}
@media (min-width: 768px) {
  .page:not(.home) .concept #choice .choice_wrap .choice_item .txt p {
    font-size: 14px;
    font-size: 1.8229166667vw;
  }
}
@media (min-width: 1280px) {
  .page:not(.home) .concept #choice .choice_wrap .choice_item .txt p {
    line-height: 2.5;
    font-size: 16px;
  }
}
.page:not(.home) .concept #choice .choice_wrap .choice_item .inner {
  padding: 0;
}
.page:not(.home) .concept #choice .choice_wrap .choice_item .img {
  width: 100%;
}
@media (min-width: 768px) {
  .page:not(.home) .concept #choice .choice_wrap .choice_item .img {
    width: 48%;
  }
}
.page:not(.home) .concept #choice .choice_wrap .choice_item::before {
  font-size: 36px;
  display: inline-block;
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  background-color:rgb(14 26 98);
;
  padding: 15px;
  color: #ffffff;
}
@media (min-width: 768px) {
  .page:not(.home) .concept #choice .choice_wrap .choice_item::before {
    top: -36px;
    padding: 20px;
  }
}
@media (min-width: 1280px) {
  .page:not(.home) .concept #choice .choice_wrap .choice_item::before {
    top: -50px;
    padding: 32px;
  }
}
.page:not(.home) .concept #choice .choice_wrap .choice_item:nth-of-type(1)::before {
  content: "01";
}
.page:not(.home) .concept #choice .choice_wrap .choice_item:nth-of-type(2)::before {
  content: "02";
}
.page:not(.home) .concept #choice .choice_wrap .choice_item:nth-of-type(3)::before {
  content: "03";
}
.page:not(.home) .concept #choice .choice_wrap .choice_item:nth-of-type(4)::before {
  content: "04";
}
.page:not(.home) .concept #choice .choice_wrap .choice_item:nth-of-type(5)::before {
  content: "05";
}
.page:not(.home) #menu .inner {
  max-width: 1000px;
}
.page:not(.home) #menu .top_txt {
  margin-bottom: 5rem;
}
.page:not(.home) #menu .menu_wrap {
  padding: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .page:not(.home) #menu .menu_wrap {
    padding: 3rem;
  }
}
.page:not(.home) #menu .menu_wrap .menu_title {
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1;
  color: #000000;
  font-size: 22px;
}
.page:not(.home) #menu .menu_wrap .menu_div {
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1;
  color: #000000;
  font-size: 12px;
}
.page:not(.home) #menu .menu_wrap .menu_wrap_inner {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: wrap;
}
.page:not(.home) #menu .menu_wrap .menu_list {
  width: 100%;
}
@media (min-width: 768px) {
  .page:not(.home) #menu .menu_wrap .menu_list {
    width: 100%;
  }
}
.page:not(.home) #menu .menu_wrap .menu_list:last-child li:first-child {
  border-top: none;
}
@media (min-width: 768px) {
  .page:not(.home) #menu .menu_wrap .menu_list:last-child li:first-child {
    border-top: dotted 2px #000000;
  }
}
.page:not(.home) #menu .menu_wrap .menu_list li {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  width: 100%;
  border-bottom: dotted 2px #000000;
  line-height: 2;
}
.page:not(.home) #menu .menu_wrap .menu_list li .menu_ttl {
  display: block;
  width: 70%;
  padding: 10px 0;
  text-align: left;
  font-weight: normal;
  font-size: 18px;
}
@media (min-width: 768px) {
  .page:not(.home) #menu .menu_wrap .menu_list li .menu_ttl {
    padding: 15px 0;
  }
}
.page:not(.home) #menu .menu_wrap .menu_list li .menu_ttl span {
  display: block;
  font-size: 12px;
}
.page:not(.home) #menu .menu_wrap .menu_list li .menu_ div {
  display: block;
  font-size: 12px;
  text-align: center;
}
.page:not(.home) #menu .menu_wrap .menu_list li .menu_price {
  display: block;
  width: 30%;
  padding: 10px 0;
  text-align: right;
  font-size: 16px;
}
@media (min-width: 768px) {
  .page:not(.home) #menu .menu_wrap .menu_list li .menu_price {
    padding: 15px 0;
  }
}
.page:not(.home) #menu .menu_wrap .menu_list li:first-child {
  border-top: dotted 2px #000000;
}
.page:not(.home) #menu .menu_wrap .menu_list li:nth-of-type(2n) {
  border-top: none;
}
@media (min-width: 768px) {
  .page:not(.home) #menu .menu_wrap .menu_list li:last-child {
    border-bottom: dotted 2px #000000;
  }
}
.page:not(.home) #menu .menu_wrap .attention {
  text-align: right;
  width: 100%;
  margin-top: 2rem;
  font-size: 12px;
}
.page:not(.home) #salon .title {
  font-size: 36px;
  font-size: 9.6vw;
  color: black;
}
@media (min-width: 768px) {
  .page:not(.home) #salon .title {
    font-size: 41px;
    font-size: 5.3385416667vw;
  }
}
@media (min-width: 1280px) {
  .page:not(.home) #salon .title {
    font-size: 46px;

  }
}
.page:not(.home) #salon .title::first-letter {
  color: #000000;
}
.page:not(.home) #salon .title::after {
  display: none;

}

#salon {
  padding-top: 4rem;
}
#salon .salon_inner {
  padding: 0 15px;
  max-width: 700px;
  margin: 0 auto 3rem;
}
#salon .salon_inner .thumbnail {
  margin: 2rem 0;
}
#salon .salon_inner .thumbnail .slick-track {
  transform: unset !important;
}
#salon .salon_inner .thumbnail .thumbnail-img {
  opacity: 0.3;
  transition: opacity 0.3s linear;
  margin: 0 0.5rem !important;
}
@media (min-width: 768px) {
  #salon .salon_inner .thumbnail .thumbnail-img {
    margin: 0 1rem !important;
  }
}
#salon .salon_inner .thumbnail .slick-current {
  opacity: 1;
}
#salon .map {
  margin: 0 auto;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  #salon .map {
    aspect-ratio: 16/5.5;
  }
}
#salon .map iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  position: relative;
}
#salon .address {
  width: 100%;
  max-width: 480px;
  border-bottom: solid 1px #E0DBDB;
  margin: 0 auto;
}
#salon .address tr {
  border-top: solid 1px #E0DBDB;
  font-size: 14px;
}
#salon .address tr th {
  font-weight: normal;
  text-align: left;
  padding: 15px 10px 15px 20px;
}
@media (min-width: 768px) {
  #salon .address tr th {
    padding: 15px 30px;
  }
}
#salon .address tr td {
  line-height: 2.5;
  padding: 15px 20px 15px 10px;
}
@media (min-width: 768px) {
  #salon .address tr td {
    padding: 15px 30px;
  }
}
#salon .address tr td span {
  padding-right: 60px;
}
#salon .address tr td a {
  color: #000000;
}

#archive-blog .blog_inner {
  max-width: 810px;
  padding: 0 15px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  #archive-blog .blog_inner {
    padding: 0 25px;
  }
}
@media (min-width: 1280px) {
  #archive-blog .blog_inner {
    padding: 0;
  }
}
#archive-blog .blog_list {
  margin-bottom: 5rem;
}
#archive-blog .blog_list .blog_item {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-evenly;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}
#archive-blog .blog_list .blog_item .img {
  width: 100%;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  #archive-blog .blog_list .blog_item .img {
    width: 47.5%;
    margin-bottom: 0;
    margin-right: 5%;
  }
}
#archive-blog .blog_list .blog_item .img a {
  display: block;
  width: 100%;
  height: 100%;
}
#archive-blog .blog_list .blog_item .img a img {
  width: 100%;
}
#archive-blog .blog_list .blog_item .info {
  width: 100%;
}
@media (min-width: 768px) {
  #archive-blog .blog_list .blog_item .info {
    width: 47.5%;
  }
}
#archive-blog .blog_list .blog_item .info .post-categories {
  line-height: 1;
  margin-bottom: 1rem;
  margin-right: 10px;
  line-height: 1;
  display: inline-block;
  background-color: #adadad;
  line-height: 1;
  text-align: center;
  padding: 5px 10px;
  font-size: 12px;
  color: #ffffff;
}
#archive-blog .blog_list .blog_item .info .blog_title {
  margin-bottom: 1rem;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.25;
}
#archive-blog .blog_list .blog_item .info .date {
  margin-bottom: 1.5rem;
  line-height: 1;
  font-size: 12px;
}
#archive-blog .blog_list .blog_item .info .blog_content {
  line-height: 2;
}
#archive-blog .blog_list .blog_item .info .blog_content a {
  display: inline-block;
  float: right;
  color: #adadad;
}
#archive-blog .blog_list .blog_item .info .blog_content a:hover {
  text-decoration: underline;
}

#single-blog .inner {
  max-width: 860px;
  padding: 0 15px;
  margin: 0 auto;
}
#single-blog .blog_inner {
  max-width: 810px;
  margin: 3rem auto;
}
@media (min-width: 768px) {
  #single-blog .blog_inner {
    padding: 0 25px;
  }
}
@media (min-width: 1280px) {
  #single-blog .blog_inner {
    padding: 0;
  }
}
#single-blog .post-categories {
  line-height: 1;
  margin-bottom: 1rem;
  margin-right: 10px;
  line-height: 1;
  display: inline-block;
  background-color: #adadad;
  color: #ffffff;
  line-height: 1;
  text-align: center;
  padding: 2px 4px;
  font-size: 12px;
}
#single-blog .blog_title {
  margin-bottom: 1rem;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.25;
}
#single-blog .date {
  margin-bottom: 1.5rem;
  line-height: 1;
  font-size: 12px;
}
#single-blog .blog_content {
  line-height: 2;
}
#single-blog .blog_content p {
  margin: 1rem 0;
}
@media (min-width: 768px) {
  #single-blog .blog_content p {
    margin: 2rem 0;
  }
}
#single-blog .blog_content img {
  max-width: 100%;
  margin: 1rem 0;
}
@media (min-width: 768px) {
  #single-blog .blog_content img {
    margin: 2rem 0;
  }
}

.post-type-archive-hairstyle .style_list {
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: wrap;
}
.post-type-archive-hairstyle .style_list .style_item {
  width: 47.5%;
  margin-bottom: 5%;
  margin-right: 5%;
}
@media (min-width: 768px) {
  .post-type-archive-hairstyle .style_list .style_item {
    width: 23.1%;
    margin-right: 2.5%;
  }
}
.post-type-archive-hairstyle .style_list .style_item a {
  display: block;
  width: 100%;
  height: 100%;
}
.post-type-archive-hairstyle .style_list .style_item a img {
  width: 100%;
}
.post-type-archive-hairstyle .style_list .style_item:nth-of-type(2) {
  margin-top: 0;
}
.post-type-archive-hairstyle .style_list .style_item:nth-of-type(2n) {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}
@media (min-width: 768px) {
  .post-type-archive-hairstyle .style_list .style_item:nth-of-type(2n) {
    margin-right: 2.5%;
  }
}
.post-type-archive-hairstyle .style_list .style_item:nth-of-type(4n) {
  margin-right: 0;
}

.single-hairstyle .style_wrap {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-evenly;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto 5rem;
}
.single-hairstyle .style_wrap .img {
  width: 100%;
}
@media (min-width: 768px) {
  .single-hairstyle .style_wrap .img {
    width: 47.5%;
    margin-right: 2.5%;
  }
}
.single-hairstyle .style_wrap .img img {
  width: 100%;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .single-hairstyle .style_wrap .img img {
    margin-bottom: 0;
  }
}
.single-hairstyle .style_wrap .img .style_title {
  line-height: 1.5;
  margin-bottom: 1rem;
  font-size: 24px;
  font-size: 6.4vw;
}
@media (min-width: 768px) {
  .single-hairstyle .style_wrap .img .style_title {
    font-size: 26px;
    font-size: 3.3854166667vw;
  }
}
@media (min-width: 1280px) {
  .single-hairstyle .style_wrap .img .style_title {
    font-size: 30px;
  }
}
.single-hairstyle .style_wrap .style_info {
  width: 100%;
}
@media (min-width: 768px) {
  .single-hairstyle .style_wrap .style_info {
    width: 47.5%;
  }
}
.single-hairstyle .style_wrap .style_info .style_title {
  line-height: 1.5;
  margin-bottom: 2rem;
  font-size: 24px;
  font-size: 6.4vw;
}
@media (min-width: 768px) {
  .single-hairstyle .style_wrap .style_info .style_title {
    font-size: 26px;
    font-size: 3.3854166667vw;
  }
}
@media (min-width: 1280px) {
  .single-hairstyle .style_wrap .style_info .style_title {
    font-size: 30px;
  }
}
.single-hairstyle .style_wrap .style_info .style_comment {
  line-height: 2;
  margin-bottom: 2rem;
  font-size: 16px;
}
.single-hairstyle .style_wrap .style_info .style_menu_wrap {
  background-color: rgba(224, 219, 219, 0.2);
  padding: 1rem;
}
.single-hairstyle .style_wrap .style_info .style_menu_wrap .style_menu_title {
  line-height: 1;
  font-size: 20px;
  margin-bottom: 1rem;
  color: #adadad;
}
.single-hairstyle .style_wrap .style_info .style_menu_wrap .style_menu {
  line-height: 2;
  font-size: 20px;
}

.post-type-archive-staff .inner {
  max-width: 840px;
  margin: 0 auto;
}
.post-type-archive-staff .staff_list {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-around;
  -webkit-box-pack: space-around;
  -ms-flex-pack: space-around;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}
.post-type-archive-staff .staff_list .staff_info {
  width: 100%;
  padding: 0 2rem;
  order: 2;
}
@media (min-width: 768px) {
  .post-type-archive-staff .staff_list .staff_info {
    padding: 0;
    width: 48%;
    margin-right: 4%;
  }
}
.post-type-archive-staff .staff_list .staff_info .staff_name {
  line-height: 1;
  margin-bottom: 1.5rem;
  font-size: 24px;
  font-size: 6.4vw;
}
@media (min-width: 768px) {
  .post-type-archive-staff .staff_list .staff_info .staff_name {
    margin-bottom: 3rem;
    font-size: 26px;
    font-size: 3.3854166667vw;
  }
}
@media (min-width: 1280px) {
  .post-type-archive-staff .staff_list .staff_info .staff_name {
    font-size: 30px;
  }
}
.post-type-archive-staff .staff_list .staff_info .staff_name span {
  line-height: 1;
  display: block;
  margin-top: 1rem;
  color: #b9b9b9;
  font-size: 16px;
  font-size: 4.2666666667vw;
}
@media (min-width: 768px) {
  .post-type-archive-staff .staff_list .staff_info .staff_name span {
    font-size: 18px;
    font-size: 2.34375vw;
  }
}
@media (min-width: 768px) and (min-width: 1280px) {
  .post-type-archive-staff .staff_list .staff_info .staff_name span {
    font-size: 22px;
  }
}
.post-type-archive-staff .staff_list .staff_info .staff_message {
  line-height: 2.5;
}
.post-type-archive-staff .staff_list .staff_img {
  width: 100%;
  order: 1;
  padding: 0 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .post-type-archive-staff .staff_list .staff_img {
    width: 48%;
    padding: 0 3rem;
    margin-bottom: 0;
    order: 2;
  }
}
.post-type-archive-staff .staff_list .staff_img p {
  position: relative;
}
.post-type-archive-staff .staff_list .staff_img p::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  display: block;
  border: 1px solid #C5AC73;
}

.post-type-archive-faq .faq_wrap .tab_container {
  padding-bottom: 1em;
  background-color: #ffffff;
  padding: 3rem 2rem;
  margin: 0 auto;
}
.post-type-archive-faq .faq_wrap .tab_container .tab_item {
  padding: 0 15px;
  text-align: center;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.3s ease;
  width: 60%;
  margin: 1rem 20%;
}
@media (min-width: 768px) {
  .post-type-archive-faq .faq_wrap .tab_container .tab_item {
    width: 25%;
    margin: 0;
  }
}
@media (min-width: 1280px) {
  .post-type-archive-faq .faq_wrap .tab_container .tab_item {
    width: 15%;
    margin: 0 5%;
  }
}
.post-type-archive-faq .faq_wrap .tab_container .tab_item:hover {
  opacity: 0.75;
}
.post-type-archive-faq .faq_wrap .tab_container input[name=tab_item] {
  display: none;
}
.post-type-archive-faq .faq_wrap .tab_container .tab_content {
  display: none;
  padding: 1em 1em 0;
  clear: both;
  overflow: hidden;
}
.post-type-archive-faq .faq_wrap .tab_container .tab_content .tab_content_description {
  margin-bottom: 2rem;
}
.post-type-archive-faq .faq_wrap .tab_container .tab_content .tab_content_description h2 {
  padding: 1rem 0;
  font-size: 18px;
  border-bottom: #000000 solid 1px;
}
.post-type-archive-faq .faq_wrap .tab_container .tab_content .tab_content_description p {
  padding: 1rem 0;
  font-size: 14px;
}
.post-type-archive-faq .faq_wrap .tab_container #tab1:checked ~ #tab1_content,
.post-type-archive-faq .faq_wrap .tab_container #tab2:checked ~ #tab2_content,
.post-type-archive-faq .faq_wrap .tab_container #tab3:checked ~ #tab3_content,
.post-type-archive-faq .faq_wrap .tab_container #tab4:checked ~ #tab4_content {
  display: block;
}
.post-type-archive-faq .faq_wrap .tab_container input:checked + .tab_item {
  border-bottom: #000000 solid 2px;
}

.wp-pagenavi {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  margin: 2rem 0;
}
.wp-pagenavi span,
.wp-pagenavi .pages {
  background: #ffffff;
  color: #474a4d;
  border: solid 1px #474a4d;
  padding: 5px 10px;
  margin: 2px;
}
.wp-pagenavi .current {
  background: #474a4d;
  color: #ffffff;
  border: solid 1px #474a4d;
  padding: 5px 10px;
}
.wp-pagenavi .page {
  color: #474a4d;
  border: solid 1px #474a4d;
  padding: 5px 10px;
  margin: 2px;
}
.wp-pagenavi .previouspostslink {
  color: #474a4d;
  border: solid 1px #474a4d;
  padding: 5px 10px;
}
.wp-pagenavi .nextpostslink {
  color: #474a4d;
  border: solid 1px #474a4d;
  padding: 5px 10px;
}

/*アコーディオン*/
input[type=submit], input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
         appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type=submit]::-webkit-search-decoration, input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus, input[type=button]::focus {
  outline-offset: -2px;
}

/* ======================
   Footer Map削除版
====================== */
.footer-container {
  position: relative;
  z-index: 1;
}

.footer-container .foot-wrap {
  display: flex;
  justify-content: center; /* 変更: 中央寄せ */
  align-items: flex-start;
  flex-wrap: wrap;
  color: #eeeeee;
  background: rgb(14 26 98);
  position: relative;
}

/* マップがなくなったのでshop_infoを全幅に */
.footer-container .foot-wrap .shop_info {
  display: flex;
  justify-content: space-between;
  align-items: center; /* 上下中央揃え */
  flex-wrap: wrap;
  padding-top: 40px;
  padding-bottom: 40px;
  width: 100%;
  max-width: 1200px; /* コンテンツ幅を制限して見やすく */
  margin: 0 auto;
}

@media (max-width: 767px) {
  .footer-container .foot-wrap .shop_info {
    padding-top: 20px;
    padding-bottom: 20px;
    flex-direction: column; /* スマホは縦並び */
  }
}

/* --- 左側：ロゴ・SNS・ボタン --- */
.footer-container .foot-wrap .shop_info .info {
  width: 48%; /* PCでは左半分 */
  padding: 0 20px;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .footer-container .foot-wrap .shop_info .info {
    width: 100%;
    text-align: center; /* スマホは中央揃え */
    margin-bottom: 30px;
  }
}

.footer-container .foot-wrap .shop_info .info .logo {
  display: flex;
  justify-content: flex-start; /* 左寄せ */
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .footer-container .foot-wrap .shop_info .info .logo {
    justify-content: center; /* スマホは中央 */
    flex-direction: column;
  }
}

.footer-container .foot-wrap .shop_info .info .site-logo {
  margin-right: 20px;
}

.footer-container .foot-wrap .shop_info .info .site-logo img {
  width: 120px; /* ロゴサイズ調整 */
}

@media (max-width: 767px) {
  .footer-container .foot-wrap .shop_info .info .site-logo {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.footer-container .foot-wrap .shop_info .info .sns {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start; /* アイコン上揃え */
  flex-wrap: wrap; /* 長い場合に折り返す */
}

.footer-container .foot-wrap .shop_info .info .sns li {
  margin-right: 15px;
  margin-left: 0;
  margin-bottom: 10px;
}

.footer-container .foot-wrap .shop_info .info .sns li a img {
  width: 24px;
}

/* --- Instagramラベル用のスタイル --- */
.footer-container .foot-wrap .shop_info .info .sns li.insta-item {
  width: 120px; /* 各項目の幅を広めに固定 */
  text-align: center;
  margin-right: 10px;
}

.footer-container .foot-wrap .shop_info .info .sns li.insta-item a {
  display: flex;
  flex-direction: column; /* アイコンの下に文字を配置 */
  align-items: center;
  text-decoration: none;
}

.footer-container .foot-wrap .shop_info .info .sns li.insta-item .insta-label {
  display: block;
  font-size: 10px;
  color: #eeeeee;
  margin-top: 5px;
  line-height: 1.3;
  text-align: center;
  word-break: break-all; /* 長い単語でも折り返す */
}

@media (max-width: 767px) {
    .footer-container .foot-wrap .shop_info .info .sns {
        justify-content: center; /* スマホでは中央寄せ */
    }
    .footer-container .foot-wrap .shop_info .info .sns li.insta-item {
        width: 100px; /* スマホでは少し幅を詰め、2列になりやすくする */
    }
}

/* ボタン周り */
.footer-container .foot-wrap .shop_info .info .to-contact {
  margin-top: 20px;
}

.footer-container .foot-wrap .shop_info .info .link-btn {
  display: inline-block; /* インラインブロックに変更 */
  text-align: center;
  padding: 18px 30px;
  line-height: 1;
  color: #000000;
  background: #ffffff;
  border: solid 1px #000000;
  box-sizing: border-box;
  letter-spacing: 0.05em;
  min-width: 260px;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-container .foot-wrap .shop_info .info .link-btn:hover {
  color: #474a4d;
  background: #ffffff;
  border: solid 1px #ffffff;
}

/* --- 右側：住所テーブル --- */
.footer-container .foot-wrap .shop_info .address {
  width: 48%; /* PCでは右半分 */
  padding: 0 20px;
  box-sizing: border-box;
  border-bottom: none; /* 下線削除 */
  position: static; /* 絶対配置を解除 */
}

@media (max-width: 767px) {
  .footer-container .foot-wrap .shop_info .address {
    width: 100%;
  }
}

.footer-container .foot-wrap .shop_info .address tr {
  border-top: solid 1px rgba(238, 238, 238, 0.3); /* 線を少し薄く */
  border-bottom: solid 1px rgba(238, 238, 238, 0.3);
  font-size: 15px;
}

.footer-container .foot-wrap .shop_info .address tr th {
  font-weight: normal;
  text-align: left;
  padding: 15px 10px;
  width: 20%;
  vertical-align: top;
}

.footer-container .foot-wrap .shop_info .address tr td {
  padding: 15px 10px;
}

.footer-container .foot-wrap .shop_info .address tr td a {
  color: #eeeeee;
  text-decoration: none;
}

/* コピーライト */
address {
  font-size: 12px;
  text-align: center;
  padding: 15px;
  background: rgb(10, 20, 80); /* 少し濃くして区別 */
  color: #aaaaaa;
  width: 100%;
  display: block;
  font-style: normal;
}

/*========= ページトップ ===============*/
#page-top {
  position: fixed;
  z-index: 2;
  opacity: 0;
  right: 0;
  bottom: 0;
  transform: translateY(100);
}
#page-top.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}
#page-top.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}
@-webkit-keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background:rgb(209 209 209);
  width: 55px;
  height: 55px;
  color:#eeeeee;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 10px;
  line-height: 1.5;
  transition: all 0.3s;
}
@media (min-width: 768px) {
  #page-top a {
    width: 48px;
    height: 48px;
  }
}
@media (min-width: 1280px) {
  #page-top a {
    width: 69px;
    height: 69px;
  }
}

/* ==========================================================================
   Helper classes
========================================================================== */
.clear {
  clear: both;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  visibility: hidden;
  clear: both;
  height: 0.1px;
  font-size: 0.1em;
  line-height: 0;
}
.clearfix:before {
  content: " ";
  display: table;
}
.clearfix:after {
  content: " ";
  display: table;
  clear: both;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.left {
  float: left;
}

.right {
  float: right;
}

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

.align-left {
  text-align: left;
}

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

/*# sourceMappingURL=style.css.map */

@media (max-width: 767px) {
	.post-type-archive-faq .faq_wrap .tab_container .tab_item {
		padding: 0 5px;
		width: 25%;
		line-height: 1.2;
		margin: 0 0;
	}
	.mv #header .main-slide img {
		min-height: 390px;
		width: auto;
		object-fit: cover;
	}
}
/* ==========================================================================
   Contact Form 7 決定版スタイル（上書き用）
========================================================================== */

/* 1. ラベル（項目名）を太字にして間隔を調整 */
.wpcf7 label {
    display: block;
    width: 100%;
    font-family: 'Noto Sans JP', sans-serif !important;
    font-weight: bold;
    margin-bottom: 5px;
    line-height: 1.5;
}

/* 2. 入力枠の角丸・幅広設定 */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
    padding: 12px 15px !important;
    border: 1px solid #ccc !important;
    border-radius: 12px !important; /* 丸みを帯びた四角 */
    font-family: 'Noto Sans JP', sans-serif !important;
    font-size: 16px;
    margin-top: 5px;
    margin-bottom: 20px;
    background-color: #ffffff;
    transition: all 0.3s;
}

/* 3. クリックした時の枠線（テーマの青系に合わせる） */
.wpcf7 input:focus,
.wpcf7 textarea:focus {
    border-color: #90a9e9 !important;
    outline: none;
    box-shadow: 0 0 8px rgba(144, 169, 233, 0.3);
}

/* 4. CSSだけで「必須」ラベルを自動表示 */
/* 必須項目の後に赤いラベルを強制的に挿入します */
.wpcf7-form-control-wrap[class*="person-name"]::before,
.wpcf7-form-control-wrap[class*="person-kana"]::before,
.wpcf7-form-control-wrap[class*="your-email"]::before,
.wpcf7-form-control-wrap[class*="checkbox-753"]::before,
.wpcf7-form-control-wrap[class*="textarea-108"]::before {
    content: "必須";
    background-color: #ff0000;
    color: #ffffff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 8px;
    font-weight: normal;
}

/* 5. チェックボックスの横並び調整 */
.wpcf7-checkbox {
    display: block;
    margin-top: 10px;
    margin-bottom: 20px;
}

/* 6. 送信ボタンのデザイン（パターン2：ネイビー） */
.wpcf7-submit {
    display: block;
    min-width: 240px;          /* 少し長めに */
    margin: 60px auto !important;
    padding: 18px 30px !important;
    font-size: 14px;
    letter-spacing: 0.15em;
    color: #fff !important;
    background: #1a237e !important; /* 濃いネイビー（ヘッダー風） */
    border: none !important;
    border-radius: 2px;       /* ほんの少しだけ角を丸く */
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(26, 35, 126, 0.2); /* 薄い影 */
    -webkit-appearance: none;
}

/* ホバー時の動き（ふわっと浮く） */
.wpcf7-submit:hover {
    background: #283593 !important; /* 少し明るく */
    transform: translateY(-2px);    /* 上に少し浮く */
    box-shadow: 0 6px 15px rgba(26, 35, 126, 0.3);
}

/* ==========================================================================
   ★ 追加修正部分 ★
========================================================================== */
/* ローディング画面 */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  z-index: 100000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loading-screen.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loading-logo {
  font-family: 'Times New Roman', Times, serif;
  font-size: 50px;
  font-weight: 200;
  letter-spacing: 0.15em;
  color: #000;
}

/* ギャラリー（横流れアニメーション）用 */
.gallery-wrapper {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding: 40px 0;
}
.gallery-track {
  display: flex;
  width: max-content;
  animation: slideMarquee 60s linear infinite;
}
.gallery-track:hover {
  animation-play-state: paused;
}
.gallery-track li {
  width: 280px;
  height: 380px;
  margin-right: 25px;
  flex-shrink: 0;
}
.gallery-track li a {
  display: block;
  width: 100%;
  height: 100%;
}
.gallery-track li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes slideMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .gallery-track li {
    width: 200px;
    height: 280px;
    margin-right: 15px;
  }
}

/* ご利用の流れ (Flow) 用 */
.flow-container {
  max-width: 500px;
  margin: 0 auto;
  padding-left: 20px;
}
.flow-item {
  position: relative;
  padding: 0 0 50px 35px;
  border-left: 1px solid #ebd8cf;
}
.flow-item:last-child {
  padding-bottom: 0;
  border-left: 1px solid transparent;
}
.flow-item::before {
  content: '';
  position: absolute;
  top: 2px;
  left: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #ebd8cf;
}
.flow-num {
  font-family: 'Times New Roman', Times, serif;
  font-size: 18px;
  color: #ebd8cf;
  margin-right: 15px;
}
.flow-title {
  font-size: 15px;
  margin: -5px 0 10px 0;
  display: inline-block;
  font-weight: bold;
}
.flow-desc {
  font-size: 13px;
  color: #444;
  line-height: 2.0;
}
/* ==========================================================================
   ★ ond風リニューアル 追加・上書き用CSS ★
   ※このコードをstyle.cssの一番最後に貼り付けてください
========================================================================== */

/* --- 1. 全体のフォント・余白調整（明朝体・抜け感） --- */
body {
  font-family: 'Noto Serif JP', serif !important;
  font-weight: 300 !important;
  color: #333333;
  line-height: 2.4 !important;
  font-size: 13px !important;
  letter-spacing: 0.1em !important;
}
@media (min-width: 1280px) {
  body { line-height: 2.6 !important; font-size: 14px !important; }
}
@media (max-width: 767px) {
  body { font-size: 12px !important; line-height: 2.2 !important; }
}

.pd, .yumin, .optima { font-family: 'Noto Serif JP', serif !important; }

/* セクションの上下余白を広めにとる */
article section { padding: 80px 0 !important; }
@media (min-width: 768px) { article section { padding: 120px 0 !important; } }
@media (min-width: 1280px) { article section { padding: 160px 0 !important; } }

/* セクションタイトルのサイズ縮小 */
article section .title {
  font-weight: 300 !important;
  font-size: 22px !important;
  margin: 0 auto 2rem !important;
}
@media (min-width: 768px) { article section .title { font-size: 32px !important; } }
@media (min-width: 1280px) { article section .title { font-size: 38px !important; margin-bottom: 3rem !important; } }
article section .title .sub-title {
  font-family: 'Noto Serif JP', serif !important;
  font-size: 11px !important;
  letter-spacing: 0.1em !important;
}
@media (min-width: 768px) { article section .title .sub-title { font-size: 13px !important; } }

/* リンクボタンのフォント調整 */
.link-btn {
  font-family: 'Noto Serif JP', serif !important;
  letter-spacing: 0.1em !important;
  font-size: 12px !important;
}
@media (min-width: 768px) { .link-btn { font-size: 13px !important; } }
@media (min-width: 1280px) { .link-btn { font-size: 14px !important; } }

/* --- 2. ローディング画面（初回のみピントが合うアニメーション） --- */
#loading-screen {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background-color: #ffffff; z-index: 100000;
  display: flex; justify-content: center; align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loading-screen.is-loaded {
  opacity: 0; visibility: hidden; pointer-events: none;
}
.loading-logo {
  font-family: 'Times New Roman', Times, serif; font-size: 40px; font-weight: 200;
  letter-spacing: 0.15em; color: #000;
  animation: ondFocus 1.8s ease forwards;
}
@keyframes ondFocus {
  0% { filter: blur(12px); opacity: 0; transform: translateY(10px) scale(1.05); }
  100% { filter: blur(0); opacity: 1; transform: translateY(0) scale(1); }
}

/* --- 3. ヘッダーの透過・スクロール白背景化 --- */
.header-container header .site-header {
  background: transparent !important;
  transition: all 0.5s ease !important;
}
.header-container header .site-header.is-scrolled {
  background: #ffffff !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
}
/* 透過時のロゴ白抜き処理 */
.header-container header .site-header .site-logo img {
  filter: brightness(0) invert(1);
  transition: filter 0.5s ease;
}
.header-container header .site-header.is-scrolled .site-logo img {
  filter: none;
}
/* ハンバーガーメニューの線の色切り替え */
.header-container header .site-header .menu-box .navToggle span {
  border-bottom-color: #ffffff !important;
}
.header-container header .site-header.is-scrolled .menu-box .navToggle span {
  border-bottom-color: #474a4d !important;
}
.header-container header .site-header .menu-box .navToggle.active span {
  border-bottom-color: #474a4d !important;
}

/* --- 4. トップ画像（MV）を一番上まで広げる --- */
.mv { margin-top: 0 !important; margin-bottom: 0 !important; }
.mv #header { height: 100vh !important; overflow: hidden; }
.mv #header .main-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.mv #header .main-slide ul, .mv #header .main-slide li, .mv #header .main-slide picture, .mv #header .main-slide img {
  width: 100%; height: 100%; object-fit: cover;
}
/* トップのキャッチコピーの影・背景色削除 */
.mv #header .mv_title {
  font-size: 20px !important; letter-spacing: 0.1em; text-shadow: 0 0 15px rgba(0,0,0,0.4);
}
@media (min-width: 768px) { .mv #header .mv_title { font-size: 24px !important; } }
@media (min-width: 1280px) { .mv #header .mv_title { font-size: 28px !important; } }
.mv #header .mv_title span { background: transparent !important; opacity: 0; padding: 5px !important;}

/* --- 5. 予約ボタンの透け感・スクロール白帯化 --- */
.fixed-bnr .fixed-bnr-inner a {
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  color: #ffffff !important;
  transition: all 0.5s ease;
  font-weight: 300 !important;
}
.fixed-bnr .fixed-bnr-inner a span {
  font-family: 'Noto Serif JP', serif !important;
}
/* スクロール後に適用されるスタイル（JSで .is-scrolled が付与されます） */
.fixed-bnr.is-scrolled .fixed-bnr-inner a {
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #eeeeee !important;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05) !important;
}

/* --- 6. ポートフォリオ（横流れアニメーション） --- */
.gallery-wrapper {
  width: 100vw; margin-left: calc(50% - 50vw); overflow: hidden; padding: 40px 0;
}
.gallery-track {
  display: flex; width: max-content; animation: slideMarquee 60s linear infinite; margin: 0; padding: 0;
}
.gallery-track:hover { animation-play-state: paused; }
.gallery-track li { width: 280px; height: 380px; margin-right: 25px; flex-shrink: 0; list-style: none;}
.gallery-track li a { display: block; width: 100%; height: 100%; }
.gallery-track li img { width: 100%; height: 100%; object-fit: cover; }
@keyframes slideMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .gallery-track li { width: 200px; height: 280px; margin-right: 15px; }
}

/* --- 7. ご利用の流れ (Flow) --- */
.flow-container { max-width: 500px; margin: 0 auto; padding-left: 20px; }
.flow-item { position: relative; padding: 0 0 50px 35px; border-left: 1px solid #ebd8cf; }
.flow-item:last-child { padding-bottom: 0; border-left: 1px solid transparent; }
.flow-item::before {
  content: ''; position: absolute; top: 2px; left: -5px; width: 9px; height: 9px;
  border-radius: 50%; background-color: #ebd8cf;
}
.flow-num { font-family: 'Times New Roman', Times, serif; font-size: 18px; color: #ebd8cf; margin-right: 15px; }
.flow-title { font-size: 15px; margin: -5px 0 10px 0; display: inline-block; font-weight: bold; }
.flow-desc { font-size: 12px; color: #666; line-height: 2.0; font-weight: 300; margin: 0; }
/* ==========================================================================
   ★ ond風リニューアル 追加・上書き用CSS（第2弾）★
   ※このコードをstyle.cssの一番最後に貼り付けてください
========================================================================== */

/* --- 8. Flowセクションとフッターの背景色変更 --- */
#flow {
  background-color: rgb(245, 245, 245) !important;
}

.footer-container .foot-wrap {
  background-color: rgb(245, 245, 245) !important;
  color: #333333 !important; /* 文字を黒系に変更 */
}
/* コピーライト部分（一番下）の背景色も合わせて少しグレーに */
address {
  background-color: #eeeeee !important;
  color: #666666 !important;
}

/* フッター内の文字・リンク・線を黒系に調整 */
.footer-container .foot-wrap .shop_info .address tr td a,
.footer-container .foot-wrap .shop_info .info .sns li.insta-item .insta-label {
  color: #333333 !important;
}
.footer-container .foot-wrap .shop_info .address tr {
  border-top-color: #dddddd !important;
  border-bottom-color: #dddddd !important;
}

/* フッターのロゴとSNSアイコン（白画像）を黒く反転させる */
.footer-container .foot-wrap .shop_info .info .site-logo img,
.footer-container .foot-wrap .shop_info .info .sns li a img {
  filter: brightness(0) !important;
}

/* --- 9. Feature(Trouble)のリストマークをチェックから「・」に変更 --- */
#trouble .trouble_list li::before {
  content: "・" !important;
  background: none !important;
  width: auto !important;
  height: auto !important;
  margin-right: 4px !important;
  color: #333333 !important;
  font-weight: 300 !important;
  display: inline !important;
}

/* --- 10. ハンバーガーメニューをおしゃれな全画面オーバーレイに --- */
/* メニュー背景を全画面の白透過にする */
.header-container header .site-header .globalMenu {
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  background-color: rgba(255, 255, 255, 0.98) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  
  /* 横からスライドではなく、フワッと表示させる */
  transform: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.5s ease !important;
}
.header-container header .site-header .globalMenu.active {
  opacity: 1 !important;
  visibility: visible !important;
}

/* メニューのリスト部分の装飾 */
.header-container header .site-header .globalMenu ul {
  background: transparent !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 30px !important; /* 項目間の余白 */
  width: auto !important;
  margin: 0 auto !important;
}
.header-container header .site-header .globalMenu ul li {
  border: none !important; /* 元の区切り線を消す */
  padding: 0 !important;
  text-align: center !important;
}
.header-container header .site-header .globalMenu ul li a {
  padding: 0 !important;
  font-size: 18px !important;
  font-weight: 300 !important;
  letter-spacing: 0.2em !important;
  color: #333333 !important;
  transition: color 0.3s ease !important;
  font-family: 'Noto Serif JP', serif !important;
}
.header-container header .site-header .globalMenu ul li a:hover {
  color: #ebd8cf !important; /* ホバー時にうっすら肌色に */
}
.header-container header .site-header .globalMenu ul li a::after {
  display: none !important; /* 元の下線アニメーションを消す */
}

/* メニューを開いたとき（×印のとき）はハンバーガーの線を黒にする */
.header-container header .site-header .menu-box .navToggle.active span {
  border-bottom-color: #333333 !important;
}
/* ==========================================================================
   ★ ond風リニューアル 追加・上書き用CSS（第4弾）★
========================================================================== */

/* --- 予約ボタン「ご予約」文字の白・黒切り替え --- */
/* 元の .white クラス（黒指定）を上書きして白にする */
.fixed-bnr .fixed-bnr-inner a span.white {
  color: #ffffff !important;
  transition: color 0.5s ease !important;
}
/* スクロール後（白帯化後）は黒に戻す */
.fixed-bnr.is-scrolled .fixed-bnr-inner a span.white {
  color: #333333 !important;
}

/* --- タイトルの下線色をond風に統一 --- */
article section .title::after {
  background-color: #ebd8cf !important; /* 薄い肌色に統一 */
}
/* ==========================================================================
   ★ ond風リニューアル 追加・上書き用CSS（最終調整）★
========================================================================== */

/* --- 1. 予約ボタン「ご予約」文字の白・黒切り替え --- */
/* 元の .white クラス（黒指定）を上書きして、トップ画像上では白にする */
.fixed-bnr .fixed-bnr-inner a span.white {
  color: #ffffff !important;
  transition: color 0.5s ease !important;
}
/* スクロール後（白帯化後）は黒に戻す */
.fixed-bnr.is-scrolled .fixed-bnr-inner a span.white {
  color: #333333 !important;
}

/* --- 2. サブタイトル（日本語訳）の中央揃え --- */
/* 元テーマの text-align: left; を上書きして、中央寄せのタイトル内ではしっかり真ん中にする */
article section .title.align-center .sub-title {
  text-align: center !important;
}

/* --- 3. スタッフのタイトルが表示されない問題の修正 --- */
/* アニメーションの重複を防ぐため、強制的に表示状態（opacity: 1）にする */
#staff .title {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  animation: none !important;
}

/* --- (おまけ) タイトルの下線色をond風に統一 --- */
article section .title::after {
  background-color: #ebd8cf !important; /* 薄い肌色に統一 */
}
/* ==========================================================================
   ★ ond風リニューアル 追加・上書き用CSS（最終修正版）★
========================================================================== */

/* --- ポートフォリオの背景を白にする --- */
.gallery-wrapper {
  background-color: #ffffff !important;
}

/* --- 予約ボタンの文字色を「絶対」白・黒切り替えにする --- */
/* .whiteという既存の黒指定クラスに打ち勝つための強力な指定 */
.fixed-bnr:not(.is-scrolled) .fixed-bnr-inner a,
.fixed-bnr:not(.is-scrolled) .fixed-bnr-inner a span.white {
  color: #ffffff !important;
}
/* スクロール後（白帯）は黒に戻す */
.fixed-bnr.is-scrolled .fixed-bnr-inner a,
.fixed-bnr.is-scrolled .fixed-bnr-inner a span.white {
  color: #333333 !important;
}

/* --- サブタイトル（日本語訳）の中央揃え強制 --- */
article section .title.align-center .sub-title {
  text-align: center !important;
}

/* --- タイトルの下線色をond風に統一 --- */
article section .title::after {
  background-color: #ebd8cf !important;
}
/* --- ポートフォリオセクション全体を何がなんでも真っ白にする --- */
#style,
#style .inner,
#style .gallery-wrapper {
  background-color: #ffffff !important;
  background: #ffffff !important;
}
/* ==========================================================================
   ★ サブページ（下層ページ）の余白修正 ★
========================================================================== */

/* トップページ用の「画面いっぱいの高さ（100vh）」を、サブページでは解除して画像ぴったりに合わせる */
body:not(.home) .mv #header {
  height: auto !important;
}

/* サブページのコンテンツ一番上の余白を少し詰めて、画像との距離を縮める */
body:not(.home) article section:first-of-type {
  padding-top: 50px !important;
}
@media (min-width: 768px) {
  body:not(.home) article section:first-of-type {
    padding-top: 70px !important;
  }
}
/* ==========================================================================
   ★ ond風リニューアル 追加・上書き用CSS（第5弾：バグ修正＆アニメーション）★
   ※このコードをstyle.cssの一番最後にさらに貼り付けてください
========================================================================== */

/* --- 13. ローディング画面のチラつき（バグ）修正 --- */
/* 初期状態（CSS読み込み時点）では完全に非表示にしておく */
#loading-screen {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.8s ease, visibility 0.8s ease !important;
}

/* JavaScriptで初回訪問時のみこのクラスを付与して表示させる */
#loading-screen.is-first-active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* アニメーション終了後に付与されるクラス（非表示状態に戻す） */
#loading-screen.is-loaded {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* --- 14. トップページスライド画像のズームアウトアニメーション --- */
/* スライド画像にアニメーションを準備 */
.mv #header .main-slide .slider-top .slick-slide img {
  transform: scale(1.1); /* 初期状態：少しズーム */
  transition: transform 5s ease-out; /* ゆっくり戻す設定（保険） */
}

/* 現在表示中のスライド画像にアニメーションを適用 */
.mv #header .main-slide .slider-top .slick-current img {
  animation: zoomOutMv 6s ease-out forwards; /* フェード時間より長く設定 */
}

/* ズームアウトのキーフレーム定義 */
@keyframes zoomOutMv {
  0% {
    transform: scale(1.1); /* スタート：少しズーム */
  }
  100% {
    transform: scale(1); /* ゴール：全体が見える */
  }
}
/* ==========================================================================
   ★ ポートフォリオページ専用のヘッダー＆ボタン表示修正 ★
========================================================================== */

/* --- ポートフォリオページのみ、最初からヘッダーを「白背景・黒文字」にする --- */
.post-type-archive-portfolio .header-container header .site-header,
.single-portfolio .header-container header .site-header {
  background: #ffffff !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
}
/* ロゴを黒に戻す */
.post-type-archive-portfolio .header-container header .site-header .site-logo img,
.single-portfolio .header-container header .site-header .site-logo img {
  filter: none !important;
}
/* ハンバーガーメニューの線を黒に戻す */
.post-type-archive-portfolio .header-container header .site-header .menu-box .navToggle span,
.single-portfolio .header-container header .site-header .menu-box .navToggle span {
  border-bottom-color: #474a4d !important;
}

/* --- ポートフォリオページのみ、最初から予約ボタンも「白帯・黒文字」にする --- */
.post-type-archive-portfolio .fixed-bnr .fixed-bnr-inner a,
.single-portfolio .fixed-bnr .fixed-bnr-inner a {
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #eeeeee !important;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.post-type-archive-portfolio .fixed-bnr .fixed-bnr-inner a span.white,
.single-portfolio .fixed-bnr .fixed-bnr-inner a span.white {
  color: #333333 !important;
}
/* ==========================================================================
   ★ ond風リニューアル 最終調整用CSS ★
   ※このコードをstyle.cssの一番最後にさらに貼り付けてください
========================================================================== */

/* --- 1. ポップアップアニメーションの改善（ふわっと表示） --- */
/* ondFocusのアニメーションを、ぼかしを弱くし、下から浮き上がる滑らかなフェードに変更 */
@keyframes ondFocus {
  0% {
    filter: blur(5px); /* ぼかしを弱く */
    opacity: 0;
    transform: translateY(20px); /* 少し下からスタート */
  }
  100% {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0);
  }
}
/* アニメーション時間を少し長くして「ふわっと」感を出す */
.loading-logo {
  animation: ondFocus 2.2s ease forwards !important;
}

/* --- 2. スマホ表示時のトップMV全画面化 --- */
@media (max-width: 767px) {
  .mv #header {
    height: 100vh !important; /* スマホでも高さを画面いっぱいに */
  }
  /* スマホ用ビデオエリアの aspect-ratio: 1/1; を解除して全画面に合わせる */
  .mv #header #video-area {
    aspect-ratio: auto !important;
    height: 100% !important;
    width: 100% !important;
  }
  /* スライド画像も全画面に object-fit: cover; で広げる */
  .mv #header .main-slide img {
    height: 100% !important;
    object-fit: cover !important;
  }
}

/* --- 3. スマホ表示時の予約ボタンの細分化と改行防止 --- */
@media (max-width: 767px) {
  .fixed-bnr .fixed-bnr-inner a {
    padding: 8px 15px !important; /* 上下パディングを減らして細く */
    width: auto !important; /* 横幅を自動にして文字量に合わせる */
    white-space: nowrap !important; /* 絶対に改行させない */
    font-size: 12px !important; /* 文字を少し小さく */
    letter-spacing: 0.05em !important; /* 字間を少し詰める */
  }
  .fixed-bnr .fixed-bnr-inner a span.white {
    font-size: 11px !important; /* 日本語部分も少し小さく */
  }
}

/* --- 4. ポートフォリオ画像の縮小（一度に4,5枚表示） --- */
/* PC表示（一度に約5〜6枚） */
.gallery-track li {
  width: 180px !important; /* 横幅を大幅に縮小 (280px -> 180px) */
  height: 240px !important; /* 高さを縮小 (380px -> 240px) */
  margin-right: 20px !important; /* 余白も調整 */
}
/* アニメーション時間を少し長くして、枚数が増えても速く感じないようにする */
.gallery-track {
  animation: slideMarquee 80s linear infinite !important; /* 60s -> 80s */
}

/* スマホ表示（一度に約3〜4枚） */
@media (max-width: 768px) {
  .gallery-track li {
    width: 120px !important; /* 横幅を縮小 (200px -> 120px) */
    height: 160px !important; /* 高さを縮小 (280px -> 160px) */
    margin-right: 15px !important;
  }
}
/* ==========================================================================
   ★ ond風リニューアル 最終調整用CSS（チラつき・スマホ全画面・ポートフォリオ修正）★
========================================================================== */

/* --- 1. ローディング画面のチラつき（バグ）完全修正 --- */
/* 最初から「真っ白な画面」として被せておく（裏の画像を一瞬も見せない） */
#loading-screen {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background-color: #ffffff; z-index: 100000;
  display: flex; justify-content: center; align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}
/* JSで読み込み完了後に付与される非表示クラス */
#loading-screen.is-loaded {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
/* ポップアップの文字アニメーション（よりフワッと下から） */
@keyframes ondFocus {
  0% { filter: blur(5px); opacity: 0; transform: translateY(20px); }
  100% { filter: blur(0); opacity: 1; transform: translateY(0); }
}
.loading-logo {
  animation: ondFocus 2.2s ease forwards !important;
}

/* --- 2. スマホ表示時のトップMV「完全」全画面化 --- */
@media (max-width: 767px) {
  /* slickスライダーが生成する「すべての見えない枠」に対して100vhを強制 */
  .mv, .mv #header, .mv #header .main-slide,
  .mv #header .main-slide .slider-top,
  .mv #header .main-slide .slick-list,
  .mv #header .main-slide .slick-track,
  .mv #header .main-slide .slick-slide {
    height: 100vh !important;
  }
  .mv #header #video-area {
    aspect-ratio: auto !important;
    height: 100vh !important;
    width: 100% !important;
  }
  /* 画像そのものを画面いっぱいに切り抜き表示 */
  .mv #header .main-slide img {
    height: 100vh !important;
    width: 100% !important;
    object-fit: cover !important;
  }
}

/* --- 3. ポートフォリオ画像のサイズ修正（PCは元に戻す） --- */
/* PC表示（元の大きいサイズ） */
.gallery-track li {
  width: 280px !important;
  height: 380px !important;
  margin-right: 25px !important;
}
/* スマホ表示（一度に4,5枚表示されるように小さく） */
@media (max-width: 767px) {
  .gallery-track li {
    width: 120px !important;
    height: 160px !important;
    margin-right: 15px !important;
  }
}
/* ==========================================================================
   ★ ond風リニューアル 最終微調整（スマホローディングと文字の中央揃え）★
========================================================================== */

/* --- 1. スマホのローディング画面の隙間を完全に埋める --- */
#loading-screen {
  /* スマホブラウザのアドレスバーのズレを無視して、画面を確実に覆い尽くす */
  top: -10% !important;
  left: 0 !important;
  width: 100% !important;
  height: 120vh !important; 
}

/* --- 2. キャッチコピーの完全な中央揃え --- */
.mv #header .mv_title {
  /* 字間（letter-spacing）の分だけ右に余白ができて左に寄って見える現象を補正 */
  padding-left: 0.1em !important; 
  box-sizing: border-box !important;
  text-align: center !important;
}
.mv #header .mv_title span {
  text-align: center !important;
}
/* ==========================================================================
   ★ 固定ページ（サブページ）の画像下の余白（巨大スペース）を修正 ★
========================================================================== */

@media (max-width: 767px) {
  /* トップページ以外では、枠の全画面化（100vh）を強制解除して自動の高さに戻す */
  body:not(.home) .mv,
  body:not(.home) .mv #header {
    height: auto !important;
  }
  /* トップページ以外では、画像の高さも全画面化を解除し、元の綺麗な比率に戻す */
  body:not(.home) .mv #header .main-img img {
    height: 53.3333333333vw !important;
  }
}
/* ==========================================================================
   ★ コンセプト・メニュー等の下層ページを「ond風」に洗練させるCSS ★
========================================================================== */

/* --- 1. サブページのセクションタイトル共通化 --- */
/* メインと同じく中央寄せ＋肌色下線のエレガントなスタイルに統一 */
.page:not(.home) article section .title,
.page:not(.home) .concept #choice .title2 {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  font-family: 'Noto Serif JP', serif !important;
  font-weight: 300 !important;
  font-size: 22px !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 auto 3rem !important;
  color: #333333 !important;
}
@media (min-width: 768px) {
  .page:not(.home) article section .title,
  .page:not(.home) .concept #choice .title2 { font-size: 32px !important; }
}
/* 古いデザインの「吹き出しの三角形」を非表示にする */
.page:not(.home) .concept #choice .title2::before { 
  display: none !important; 
}
/* ond風の「肌色の短い下線」を追加 */
.page:not(.home) article section .title::after,
.page:not(.home) .concept #choice .title2::after {
  content: "" !important;
  display: block !important;
  width: 30px !important;
  height: 1px !important;
  background-color: #ebd8cf !important; /* 肌色 */
  margin: 15px auto 0 !important;
  position: static !important;
  transform: none !important;
  border: none !important;
}

/* --- 2. コンセプトページ (#choice) の装飾を優しく --- */
/* 「01, 02...」の四角い背景色を、濃い青から「淡い肌色」に変更 */
.page:not(.home) .concept #choice .choice_wrap .choice_item::before {
  background-color: #ebd8cf !important;
  color: #ffffff !important;
  font-family: 'Times New Roman', Times, serif !important;
  font-weight: 300 !important;
  padding: 15px 25px !important;
  border-radius: 2px !important;
}
/* 項目の枠を消して、ふんわりとした上品な影をつける */
.page:not(.home) .concept #choice .choice_wrap .choice_item {
  border: 1px solid #fafafa !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03) !important;
}
.page:not(.home) .concept #choice .choice_wrap .choice_item .txt h2 {
  font-family: 'Noto Serif JP', serif !important;
  font-weight: 300 !important;
  letter-spacing: 0.15em !important;
}

/* --- 3. メニューページ (#menu) の装飾を細く美しく --- */
/* 太くて黒い点線を、淡いグレーの細い実線に変更 */
.page:not(.home) #menu .menu_wrap .menu_list li {
  border-bottom: 1px solid #eeeeee !important;
  padding: 20px 0 !important;
}
.page:not(.home) #menu .menu_wrap .menu_list li:first-child,
.page:not(.home) #menu .menu_wrap .menu_list:last-child li:first-child {
  border-top: 1px solid #eeeeee !important;
}
/* メニューの文字を明朝体の細字にし、字間をあけてスッキリさせる */
.page:not(.home) #menu .menu_wrap .menu_title,
.page:not(.home) #menu .menu_wrap .menu_list li .menu_ttl,
.page:not(.home) #menu .menu_wrap .menu_list li .menu_price {
  font-family: 'Noto Serif JP', serif !important;
  font-weight: 300 !important;
  color: #333333 !important;
  letter-spacing: 0.1em !important;
}
/* メニューの補足テキスト（カッコ内の文字など）を少し薄くする */
.page:not(.home) #menu .menu_wrap .menu_list li .menu_ttl span {
  color: #888888 !important;
  margin-top: 5px !important;
}
/* ==========================================================================
   ★ コンセプトページ：数字（01, 02...）のデザインをシンプルでおしゃれに修正 ★
========================================================================== */

/* 背景の枠を消して、小さく上品な数字だけを配置する */
.page:not(.home) .concept #choice .choice_wrap .choice_item::before {
  background-color: transparent !important; /* 背景（枠）を完全に消す */
  color: #ebd8cf !important; /* 文字色を上品な淡い肌色に */
  font-size: 24px !important; /* サイズを小さく（元の36pxから縮小） */
  font-family: 'Times New Roman', Times, serif !important;
  font-style: italic !important; /* おしゃれな斜体（イタリック）にする */
  font-weight: 300 !important;
  padding: 0 !important; /* 背景用の余白をリセット */
  top: -15px !important; /* 枠が消えた分、少しだけ位置を下げる */
}
/* ==========================================================================
   ★ スマホのポップアップ下部の隙間を完全に防ぐ最終奥義 ★
========================================================================== */
#loading-screen {
  /* topやheightの指定を無効化し、上下左右の端に完全に張り付ける */
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important; 
}

/* 最新スマホのアドレスバーの伸び縮みにも完璧に追従する最新機能（dvh） */
@supports (height: 100dvh) {
  #loading-screen {
    height: 100dvh !important;
  }
}