@charset "UTF-8";
/*===
  #common
  ===*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}

body {
  color: #333;
  background-color: #9c9e86;
  background-color: #878986;
  font-family: fot-tsukubrdgothic-std, sans-serif;
  line-height: 1.5;
  font-size: 16px;
  text-align: justify;
  letter-spacing: 0.1rem;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

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

a {
  text-decoration: none;
}

.container {
  width: 1200px;
  max-width: 100%;
  padding: 0 40px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
}

.main {
  padding-top: 75px;
}

@media screen and (max-width: 767px) {
  .main {
    padding-top: 60px;
  }
}

.section {
  padding: 100px 0;
}

@media screen and (max-width: 767px) {
  .section {
    padding: 60px 0;
  }
}

.section-ttl {
  font-size: 50px;
  font-weight: bold;
  color: #feffd5;
  text-align: center;
  line-height: 1.2;
  font-family: "cafe-romantique", sans-serif;
}

@media screen and (max-width: 767px) {
  .section-ttl {
    font-size: 36px;
  }
}

.section-ttl span {
  display: block;
  font-size: 16px;
  color: #feffd5;
  font-family: fot-tsukubrdgothic-std, sans-serif;
}

@media screen and (max-width: 767px) {
  .section-ttl span {
    font-size: 12px;
  }
}

.section-btn {
  text-align: center;
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .section-btn {
    margin-top: 40px;
  }
}

.btnlinestretches4 {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  /*リンクの形状*/
  padding: 10px 50px 10px 30px;
  display: inline-block;
  text-decoration: none;
  outline: none;
}

.btnlinestretches4 span {
  color: #feffd5;
  font-weight: bold;
}

/*線の設定*/
.btnlinestretches4::before,
.btnlinestretches4::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  /*線の形状*/
  --rb: linear-gradient(90deg, #e23a31, #f08700, #f0c200, #2fb350, #006fe6, #4f4cc3, #9e49c8, #e23a31);
  background: var(--rb);
  background-size: 300% 300%;
  animation: rbFlow 15s linear infinite;
  width: 100%;
  height: 2px;
  /*アニメーションの指定*/
  transition: all 0.3s ease-in-out;
}

/*矢印の設定*/
.btnlinestretches4 span::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 1.3em;
  right: 20px;
  /*矢印の形状*/
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  /*アニメーションの指定*/
  transition: all 0.3s;
}

/*hover時に矢印が移動*/
.btnlinestretches4:hover span::after {
  right: 15px;
}

.btnlinestretches3 {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  /*リンクの形状*/
  padding: 10px 50px 10px 30px;
  display: inline-block;
  text-decoration: none;
  outline: none;
}

.btnlinestretches3 span {
  color: #feffd5;
  font-weight: bold;
  font-size: 20px;
  font-family: "cafe-romantique", sans-serif;
}

/*線の設定*/
.btnlinestretches3::before,
.btnlinestretches3::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  /*線の形状*/
  --rb: linear-gradient(90deg, #e23a31, #f08700, #f0c200, #2fb350, #006fe6, #4f4cc3, #9e49c8, #e23a31);
  background: var(--rb);
  background-size: 300% 300%;
  animation: rbFlow 15s linear infinite;
  width: 100%;
  height: 2px;
  /*アニメーションの指定*/
  transition: all 0.3s ease-in-out;
}

/*hover時に100%に伸びる*/
.btnlinestretches3:hover::after {
  width: 100%;
}

/*矢印の設定*/
.btnlinestretches3 span::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 1.3em;
  right: 20px;
  /*矢印の形状*/
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  /*アニメーションの指定*/
  transition: all 0.3s;
}

/*hover時に矢印が移動*/
.btnlinestretches3:hover span::after {
  right: 15px;
}

.rb-font {
  --grad: linear-gradient(90deg, #e23a31, #f08700, #f0c200, #2fb350, #006fe6, #4f4cc3, #9e49c8, #e23a31);
  background: var(--grad);
  background-size: 200% auto;
  /* 横に長くして動かす */
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rainbowSlide 6s linear infinite;
}

@keyframes rainbowSlide {
  to {
    background-position: 200% 0;
  }
}

/* 低モーション配慮 */
@media (prefers-reduced-motion: reduce) {
  .rainbow-anim {
    animation: none;
  }
}

/* ===============================================
# ヘッダー
=============================================== */
#header {
  z-index: 20;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: transparent;
}

@media screen and (max-width: 767px) {
  #header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    background-color: #878986;
  }
}

#header.change-color {
  background-color: #878986;
  transition: 0.3s;
}

#header.change-color .header-logo {
  position: static;
  width: 100px;
  background: transparent;
  padding: 0;
  transition: 0.3s;
}

@media screen and (max-width: 767px) {
  #header.change-color .header-logo {
    width: 60px;
  }
}

#header.change-color .header-nav > .inner {
  margin-top: 0px;
}

#header.change-color .header-sub {
  position: absolute;
  top: -25px;
  right: 0;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.71429;
  text-align: right;
}

@media screen and (max-width: 767px) {
  #header.change-color .header-sub {
    font-size: 10px;
    text-align: left;
    margin-left: auto;
    top: 2px;
    right: 2px;
  }
}

#header.change-color .header-nav li > a {
  color: #fff;
  line-height: 1;
}

#header.change-color .header-nav li > a span {
  color: #fff;
}

#header > .container > .inner {
  padding-bottom: 10px;
  padding-top: 5px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  #header > .container > .inner {
    display: block;
    padding: 0;
  }
}

.header-left {
  margin-right: auto;
  position: relative;
}

.header-logo {
  width: 200px;
  background: #878986;
  position: absolute;
  top: -20px;
  left: 0;
}

@media screen and (max-width: 767px) {
  .header-logo {
    position: static;
    width: 60px;
    background: none;
    padding: 0;
  }
}

.header-logo a {
  transition: all 0.3s ease 0s;
}

.header-logo a:hover {
  opacity: 0.6;
}

.header-right {
  margin-left: auto;
  position: relative;
}

@media screen and (max-width: 767px) {
  .header-right {
    position: static;
  }
}

.header-sub {
  position: absolute;
  top: 0px;
  right: 0;
  color: #fff;
  font-size: 12px;
  line-height: 1.71429;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .header-sub {
    font-size: 7px;
    text-align: left;
    margin-left: auto;
    top: 2px;
    right: 2px;
    color: #fff;
  }
}

.header-nav {
  top: 100px;
  left: 0;
  right: 0;
  z-index: 20;
}

@media screen and (max-width: 767px) {
  .header-nav {
    display: none;
  }
}

.header-nav > .inner {
  margin-top: 20px;
}

.header-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 40px;
  line-height: 40px;
}

.header-nav li {
  margin-right: 40px;
}

.header-nav li:last-child {
  margin-right: 0;
}

.header-nav li > a {
  color: #fff;
  display: block;
  font-family: "cafe-romantique", sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease 0s;
  opacity: 1;
  line-height: 1;
  text-align: center;
  font-size: 18px;
}

.header-nav li > a span {
  font-size: 12px;
  color: gray;
}

.header-nav li a img {
  width: 30px;
}

.header-nav li > a:hover {
  opacity: 0.6;
}

/* ===============================================
# ドロワー 
=============================================== */
.drawer {
  display: none;
}

@media screen and (max-width: 767px) {
  .drawer {
    display: block;
  }
}

:root {
  --rb: linear-gradient(45deg, #e23a31, #f08700, #f0c200, #2fb350, #006fe6, #4f4cc3, #9e49c8, #e23a31);
}

@keyframes rbFlow {
  to {
    background-position: 200% 0;
  }
}

.drawer-icon {
  /* 元の color は使わず、背景グラデをテキストにクリップ */
  background: var(--rb);
  background-size: 200% auto;
  animation: rbFlow 8s linear infinite;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Safari/iOS */
  color: transparent;
  display: inline-block;
  /* 必要に応じて */
  will-change: background-position;
  /* スムーズさ向上 */
  cursor: pointer;
  font-size: 24px;
  position: absolute;
  right: 15px;
  text-align: center;
  top: 14px;
  z-index: 41;
}

.drawer-open {
  display: block;
}

.m_checked .drawer-open {
  display: none;
}

.drawer-close {
  display: none;
}

.m_checked .drawer-close {
  display: block;
}

.drawer-content {
  background: #2d2d2d;
  height: 100vh;
  left: 0;
  opacity: 0;
  overflow: auto;
  padding: 100px 16px 16px;
  position: fixed;
  text-align: left;
  top: 0;
  transition: all 0.3s ease 0s;
  visibility: hidden;
  width: 100%;
  z-index: 40;
}

.m_checked .drawer-content {
  opacity: 1;
  visibility: visible;
}

.drawer-nav li a {
  color: #fff;
  display: block;
  font-size: 16px;
  font-family: "cafe-romantique", sans-serif;
  font-weight: 600;
  padding: 20px 12px 24px 5px;
  text-decoration: none;
  text-align: center;
  position: relative;
}

.drawer-nav li a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  --rb: linear-gradient(90deg, #e23a31, #f08700, #f0c200, #2fb350, #006fe6, #4f4cc3, #9e49c8, #e23a31);
  background: var(--rb);
  background-size: 300% 300%;
  animation: rbFlow 15s linear infinite;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}

.fa-times::before {
  color: #fff;
}

/* ===============================================
# mainvisual
=============================================== */
.mainvisual {
  position: relative;
  z-index: 0;
}

.mainvisual-inner {
  max-width: 80%;
  margin-left: auto;
  margin-right: 50px;
}

@media screen and (max-width: 767px) {
  .mainvisual-inner {
    max-width: 100%;
    margin-right: 0;
  }
}

.mainvisual-box {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 2;
  font-size: 62px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .mainvisual-box {
    left: 5%;
    font-size: 36px;
    top: unset;
    bottom: 35%;
    transform: unset;
  }
}

.mainvisual-txt {
  margin-left: 180px;
}

@media screen and (max-width: 767px) {
  .mainvisual-txt {
    margin-left: 90px;
  }
}

.slider5-wrap {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .slider5-wrap {
    width: 100%;
  }
}

.slider-5 .slick-slide {
  height: calc(100vh - 145px);
}

@media screen and (max-width: 767px) {
  .slider-5 .slick-slide {
    height: 400px;
  }
}

.slider-5 .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dots-5 .slick-dots {
  text-align: center;
}

.dots-5 .slick-dots li {
  display: inline-block;
  width: 100px;
  height: 6px;
  margin: 4px;
  background: #eaeaea;
  cursor: pointer;
}

.dots-5 .slick-dots button {
  display: block;
  width: 0%;
  height: 6px;
  margin: 0;
  font-size: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  outline: none;
  background: #0a467d;
  cursor: pointer;
}

.dots-5 .slick-dots .slick-active button {
  background: #0a467d;
  opacity: 1;
}

.mainvisual-reserved {
  position: absolute;
  right: 0;
  top: 10%;
}

@media screen and (max-width: 767px) {
  .mainvisual-reserved {
    top: 0;
  }
}

.mainvisual-reserved-btn {
  background: #2d2d2d;
  color: #feffd5;
  padding: 30px 30px 30px 40px;
  border-radius: 50px 0 0 50px;
  font-weight: bold;
  display: block;
  text-align: center;
  line-height: 1;
  font-size: 24px;
  font-family: "cafe-romantique", sans-serif;
  transition: all 0.3s ease 0s;
}

@media screen and (max-width: 767px) {
  .mainvisual-reserved-btn {
    font-size: 16px;
    padding: 15px 20px 15px 30px;
  }
}

.mainvisual-reserved-btn:hover {
  background: #878986;
  color: #333;
}

.mainvisual-reserved-btn span {
  font-size: 14px;
  font-weight: normal;
  font-family: fot-tsukubrdgothic-std, sans-serif;
}

@media screen and (max-width: 767px) {
  .mainvisual-reserved-btn span {
    font-size: 10px;
  }
}

.mainvisual-news {
  position: absolute;
  bottom: 0;
  right: 0;
}

@media screen and (max-width: 767px) {
  .mainvisual-news {
    position: static;
  }
}

.mainvisual-news-box {
  background: #2d2d2d;
  padding: 40px 50px;
  display: flex;
  align-items: center;
  color: #feffd5;
}

@media screen and (max-width: 767px) {
  .mainvisual-news-box {
    padding: 15px 0 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.mainvisual-news-box-ttl {
  margin-right: 20px;
  font-size: 24px;
  font-weight: bold;
  font-family: "cafe-romantique", sans-serif;
}

@media screen and (max-width: 767px) {
  .mainvisual-news-box-ttl {
    margin-right: 0;
  }
}

.mainvisual-news-info-box {
  display: flex;
}

@media screen and (max-width: 767px) {
  .mainvisual-news-info-box {
    margin-top: 10px;
    width: 100%;
    justify-content: center;
  }
}

.mainvisual-news-time {
  margin-right: 5px;
}

.news-btn {
  margin-left: 10px;
  border-left: 2px solid #fff;
  padding-left: 10px;
}

@media screen and (max-width: 767px) {
  .news-btn {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    margin-top: 15px;
    border-bottom: 2px solid #fff;
  }
}

.news-btn:hover {
  opacity: 0.6;
}

/* ===============================================
# 営業日
=============================================== */
.calendar_img {
  margin-top: 40px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .calendar_img {
    margin-top: 30px;
  }
}

.calendar_img img {
  width: 50%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .calendar_img img {
    width: 80%;
  }
}

/* ===============================================
# 施術事例
=============================================== */
.works {
  position: relative;
  z-index: 0;
}

.works-wrapper {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .works-wrapper {
    margin-top: 40px;
  }
}

.works-wrap + .works-wrap {
  margin-top: 40px;
}

.works-ttl_box {
  background-color: #2d2d2d;
}

.works-ttl {
  font-size: 20px;
  font-weight: bold;
  padding: 10px 20px;
  border-left: 3px solid #feffd5;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .works-ttl {
    font-size: 16px;
    padding: 5px 10px;
  }
}

.works-ttl span {
  margin-left: 30px;
  font-family: "cafe-romantique", sans-serif;
  position: relative;
}

.works-ttl span::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  --rb: linear-gradient(90deg, #e23a31, #f08700, #f0c200, #2fb350, #006fe6, #4f4cc3, #9e49c8, #e23a31);
  background: var(--rb);
  background-size: 300% 300%;
  animation: rbFlow 15s linear infinite;
  top: 50%;
  left: -22px;
  transform: translateY(-50%);
}

@keyframes rbFlow {
  from {
    background-position: 0% 0;
  }
  to {
    background-position: 200% 0;
  }
}

.slider {
  margin: 0 auto;
}

.slider-img {
  margin: 0 5px;
}

.slider-img img {
  height: auto;
  width: 100%;
}

/* ===============================================
# about
=============================================== */
.about {
  background-color: #2d2d2d;
  position: relative;
}

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

@media screen and (max-width: 767px) {
  .about-content {
    flex-direction: column;
  }
}

.about-content .section-ttl {
  width: 25%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .about-content .section-ttl {
    width: 100%;
  }
}

.about-box {
  width: 75%;
}

@media screen and (max-width: 767px) {
  .about-box {
    width: 100%;
    margin-top: 40px;
    text-align: center;
    padding: 0;
  }
}

.about-ttl {
  font-size: 24px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .about-ttl {
    font-size: 16px;
  }
}

.about-txt {
  line-height: 2;
  text-align: justify;
  color: #feffd5;
}

/* ===============================================
# menu
=============================================== */
.menu .section-ttl {
  font-size: 80px;
}

@media screen and (max-width: 767px) {
  .menu .section-ttl {
    font-size: 36px;
    opacity: 1;
  }
}

.menu-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .menu-wrapper {
    flex-direction: column;
  }
}

.menu-left {
  width: 45%;
}

@media screen and (max-width: 767px) {
  .menu-left {
    width: 100%;
  }
}

.menu-bg {
  position: relative;
  height: 1100px;
}

@media screen and (max-width: 767px) {
  .menu-bg {
    height: 500px;
  }
}

.menu-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
  z-index: -1;
}

.menu-bg-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 44vw;
  height: 100vh;
  background-image: url(../img/menu.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .menu-bg-inner {
    width: 100vw;
  }
}

.menu-right {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .menu-right {
    width: 95%;
    margin: -380px auto 0;
  }
}

.menu-right-box {
  width: 95%;
  background-color: #2d2d2d;
  color: #feffd5;
  padding: 50px 60px;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .menu-right-box {
    width: 100%;
    margin-top: 30px;
    padding: 30px 10px;
  }
}

.menu-right-box .menu_ttl {
  text-align: center;
  font-size: 22px;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .menu-right-box .menu_ttl {
    font-size: 20px;
  }
}

.menu-right-box .menu_ttl span {
  margin-left: 30px;
  font-family: "cafe-romantique", sans-serif;
  position: relative;
}

.menu-right-box .menu_ttl span::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  --rb: linear-gradient(90deg, #e23a31, #f08700, #f0c200, #2fb350, #006fe6, #4f4cc3, #9e49c8, #e23a31);
  background: var(--rb);
  background-size: 300% 300%;
  animation: rbFlow 15s linear infinite;
  top: 50%;
  left: -22px;
  transform: translateY(-50%);
}

.menu-right-box .menu_wrap {
  margin-top: 60px;
}

.menu-right-box .menu_wrap:first-child {
  margin-top: 0;
}

.menu-right-box dl {
  margin-top: 40px;
  position: relative;
}

.menu-right-box dl::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  --rb: linear-gradient(90deg, #e23a31, #f08700, #f0c200, #2fb350, #006fe6, #4f4cc3, #9e49c8, #e23a31);
  background: var(--rb);
  background-size: 300% 300%;
  animation: rbFlow 15s linear infinite;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.menu-right-box dl:first-child {
  margin-top: 0;
}

.menu-right-box dl .menu_box-head {
  display: inline-flex;
  align-items: center;
  background-color: #878986;
  gap: 20px;
  padding: 8px 15px;
  font-weight: 700;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .menu-right-box dl .menu_box-head {
    font-size: 16px;
  }
}

.menu-right-box dl .read {
  margin-top: 15px;
  line-height: 2;
  font-weight: 500;
  padding-left: 20px;
}

/* ===============================================
# 代表挨拶
=============================================== */
.message {
  position: relative;
}

.message .section-ttl {
  text-align: left;
}

.message-wrapper {
  display: flex;
}

@media screen and (max-width: 767px) {
  .message-wrapper {
    flex-direction: column;
  }
}

.message-left {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .message-left {
    width: 100%;
  }
}

.message-left img {
  height: 100%;
  object-fit: cover;
}

.message-right {
  width: 50%;
  background-color: #2d2d2d;
  color: #feffd5;
  padding: 60px 40px;
}

@media screen and (max-width: 767px) {
  .message-right {
    width: 100%;
    padding: 30px 15px;
  }
}

.message-ttl {
  margin-top: 30px;
  font-weight: bold;
  font-size: 24px;
}

@media screen and (max-width: 767px) {
  .message-ttl {
    font-size: 16px;
    margin-top: 20px;
  }
}

.message-txt {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .message-txt {
    margin-top: 20px;
  }
}

.message-name {
  margin-top: 10px;
  text-align: right;
  font-size: 20px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .message-name {
    font-size: 16px;
  }
}

/* ===============================================
# info
=============================================== */
.info-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.info-right-box {
  width: 60%;
  margin: 40px auto 0;
}

@media screen and (max-width: 767px) {
  .info-right-box {
    width: 100%;
    padding: 0 15px;
    margin-top: 40px;
  }
}

.info-right-dl {
  display: flex;
  align-items: center;
  padding: 5px;
  position: relative;
}

.info-right-dl::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  --rb: linear-gradient(90deg, #e23a31, #f08700, #f0c200, #2fb350, #006fe6, #4f4cc3, #9e49c8, #e23a31);
  background: var(--rb);
  background-size: 300% 300%;
  animation: rbFlow 15s linear infinite;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.info-right-dl + .info-right-dl {
  margin-top: 20px;
}

.info-right-dt {
  font-size: 18px;
  font-weight: bold;
  width: 120px;
  color: #feffd5;
}

@media screen and (max-width: 767px) {
  .info-right-dt {
    width: 80px;
    font-size: 16px;
  }
}

.info-right-dd {
  width: calc(100% - 120px);
  color: #feffd5;
}

@media screen and (max-width: 767px) {
  .info-right-dd {
    width: calc(100% - 80px);
    font-size: 14px;
  }
}

.info-right-dd span {
  font-size: 12px;
  margin-left: 5px;
}

/* ===============================================
# insta
=============================================== */
.insta {
  background: #878986;
}

.insta-box {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .insta-box {
    margin-top: 40px;
  }
}

/* ===============================================
# footer
=============================================== */
@media screen and (max-width: 767px) {
  .footer {
    margin-bottom: 53px;
  }
}

.footer-contact-bg {
  position: relative;
  height: 480px;
}

@media screen and (max-width: 767px) {
  .footer-contact-bg {
    height: 445px;
  }
}

.footer-contact-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
}

.footer-contact-bg-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url(../img/footer-img.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.footer-contact-txt {
  margin-top: 60px;
  text-align: center;
  line-height: 2;
  font-size: 18px;
  font-weight: bold;
  color: #feffd5;
}

@media screen and (max-width: 767px) {
  .footer-contact-txt {
    margin-top: 40px;
    line-height: 2;
    font-size: 14px;
  }
}

.footer-bottom {
  background: #fff;
  background: #878986;
}

.footer-wrapper {
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .footer-wrapper {
    flex-direction: column-reverse;
    padding: 40px 0;
  }
}

@media screen and (max-width: 767px) {
  .footer-left {
    margin-top: 40px;
    text-align: center;
  }
}

.footer-disc {
  font-size: 18px;
  color: #feffd5;
}

@media screen and (max-width: 767px) {
  .footer-disc {
    font-size: 18px;
  }
}

.footer-company-ttl {
  font-size: 52px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  font-family: "cafe-romantique", sans-serif;
}

@media screen and (max-width: 767px) {
  .footer-company-ttl {
    font-size: 32px;
  }
}

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

@media screen and (max-width: 767px) {
  .footer-right-links {
    text-align: center;
  }
}

.footer-right-links li {
  margin-top: 15px;
}

.footer-right-links li:first-child {
  margin-top: 0;
}

.footer-right-links li a {
  color: inherit;
  font-weight: bold;
  font-family: "cafe-romantique", sans-serif;
  color: #fff;
  font-size: 18px;
}

.footer-right-links li a:hover {
  opacity: 0.6;
}

.footer-copy {
  text-align: center;
  background: #2d2d2d;
  color: #fff;
  padding: 5px 0;
}

/* ===============================================
# 予約ボタン
=============================================== */
.reserved {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
}

.reserved-wrap {
  display: flex;
}

.reserved-btn {
  width: 50%;
  text-align: center;
  background: #333;
  border: 1px solid #e3d6cf;
}

.reserved-btn-link {
  display: inline-block;
  padding: 15px 0;
  color: #fff;
  font-weight: bold;
}

/* ===============================================
# 共通パーツ
=============================================== */
.mainvisual-collumn {
  background: url(../img/contact-back.webp) center 38%/cover no-repeat;
  height: auto;
}

.mainvisual-collumn-wrap {
  background: rgba(0, 0, 0, 0.356);
  height: auto;
}

.mainvisual-collumn-ttl {
  text-align: center;
  padding: 100px 0;
  line-height: 0.6;
  font-size: 52px;
  font-family: "cafe-romantique", sans-serif;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .mainvisual-collumn-ttl {
    padding: 40px 0;
    font-size: 30px;
  }
}

.mainvisual-collumn-ttl span {
  font-size: 18px;
  color: #fff;
  font-family: fot-tsukubrdgothic-std, sans-serif;
}

@media screen and (max-width: 767px) {
  .mainvisual-collumn-ttl span {
    font-size: 12px;
  }
}

/* ===============================================
# メニューページ
=============================================== */
/* ===============================================
# 料金表
=============================================== */
.price-inner {
  max-width: 800px;
  margin: 60px auto 0;
  border: 1px solid #e1e1e1;
}

@media screen and (max-width: 767px) {
  .price-inner {
    margin-top: 40px;
  }
}

.price-inner dl {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e1e1e1;
  background: #2d2d2d;
}

@media screen and (max-width: 767px) {
  .price-inner dl {
    flex-direction: column;
  }
}

.price-inner dl:last-child {
  border-bottom: none;
}

.price-inner dl dt {
  width: 400px;
  color: #fff;
  padding: 20px 10px;
}

@media screen and (max-width: 767px) {
  .price-inner dl dt {
    width: 100%;
    padding: 15px 10px;
  }
}

.price-inner dl dd {
  padding: 20px 10px;
  width: calc(100% - 400px);
  text-align: right;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .price-inner dl dd {
    padding: 15px 10px;
    width: 100%;
  }
}

.price_txt {
  text-align: center;
  margin-top: 15px;
  font-size: 18px;
  text-decoration: underline double #84002c;
}

.price_txt span {
  color: red;
}

/* ===============================================
# よくある質問
=============================================== */
.mts {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .mts {
    margin-top: 30px;
  }
}

.qa {
  border: 1px solid #6e6e6e;
}

.qa + .qa {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .qa + .qa {
    margin-top: 20px;
  }
}

.qa dt {
  background: #878986;
  padding: 15px 20px 15px 62px;
  color: #333;
  position: relative;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .qa dt {
    font-size: 14px;
    padding: 10px 10px 10px 35px;
  }
}

.qa dt::after {
  position: absolute;
  content: "Q";
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: bold;
  color: #2d2d2d;
}

@media screen and (max-width: 767px) {
  .qa dt::after {
    font-size: 22px;
    left: 10px;
  }
}

.qa dd {
  padding: 15px 20px 15px 62px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .qa dd {
    padding: 10px 10px 10px 35px;
  }
}

.qa dd::after {
  position: absolute;
  content: "A";
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: bold;
  color: #2d2d2d;
}

@media screen and (max-width: 767px) {
  .qa dd::after {
    font-size: 22px;
    left: 10px;
  }
}

.qa dd p {
  color: #000;
}

@media screen and (max-width: 767px) {
  .qa dd p {
    font-size: 14px;
  }
}

.faq-title {
  margin: 60px 0 30px 0;
  padding: 20px;
  /*文字周りの余白*/
  color: #494949;
  /*文字色*/
  background: #e3d6cf;
  /*背景色*/
  border-left: solid 5px #2d2d2d;
  /*左線（実線 太さ 色）*/
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .faq-title {
    margin: 40px 0 20px 0;
    font-size: 16px;
    padding: 15px;
  }
}

.is-open {
  display: block !important;
}

/* ===============================================
# merit
=============================================== */
.merit {
  background: #e3d6cf;
}

.merit-wrap {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .merit-wrap {
    flex-direction: column;
    margin-top: 40px;
  }
}

.merit-box {
  width: 48%;
  background: #878986;
  position: relative;
}

@media screen and (max-width: 767px) {
  .merit-box {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .merit-box + .merit-box {
    margin-top: 30px;
  }
}

.merit-box:first-child::after {
  position: absolute;
  content: "01";
  left: -17px;
  top: -33px;
  font-size: 70px;
  font-family: "cafe-romantique", sans-serif;
  letter-spacing: 0.2rem;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .merit-box:first-child::after {
    font-size: 55px;
    left: -10px;
  }
}

.merit-box:last-child::after {
  position: absolute;
  content: "02";
  left: -17px;
  top: -33px;
  font-size: 70px;
  font-family: "cafe-romantique", sans-serif;
  letter-spacing: 0.2rem;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .merit-box:last-child::after {
    font-size: 55px;
    left: -10px;
  }
}

.merit-ttl {
  padding: 20px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  background: #2d2d2d;
}

@media screen and (max-width: 767px) {
  .merit-ttl {
    font-size: 16px;
    padding: 15px;
  }
}

.merit-txt {
  padding: 20px;
}

@media screen and (max-width: 767px) {
  .merit-txt {
    padding: 10px;
  }
}

.archive-article {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .archive-article {
    flex-direction: column;
  }
}

/* ===============================================
  # 新着情報一覧　左
  =============================================== */
.archive-left {
  width: 70%;
}

@media screen and (max-width: 767px) {
  .archive-left {
    width: 100%;
  }
}

.archive-left-item {
  border-bottom: 1px dotted #feffd5;
  padding-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .archive-left-item {
    padding-bottom: 40px;
  }
}

.archive-left-item + .archive-left-item {
  margin-top: 40px;
}

.archive-left-item-box {
  display: flex;
}

@media screen and (max-width: 767px) {
  .archive-left-item-box {
    flex-direction: column;
  }
}

.archive-left-item-img {
  width: 300px;
  margin-right: 40px;
  aspect-ratio: 16 / 9;
}

@media screen and (max-width: 767px) {
  .archive-left-item-img {
    width: 100%;
    margin-right: 0;
  }
}

.archive-left-item-img img {
  object-fit: cover;
}

.archive-left-item-content {
  width: calc(100% - 300px);
}

@media screen and (max-width: 767px) {
  .archive-left-item-content {
    width: 100%;
    margin-top: 20px;
  }
}

.archive-left-item-info {
  display: flex;
  align-items: center;
}

.archive-left-item-time {
  color: #333333;
  font-weight: bold;
  margin-right: 15px;
  line-height: 1;
}

.archive-left-item-published {
  color: #feffd5;
}

@media screen and (max-width: 767px) {
  .archive-left-item-published {
    font-size: 14px;
  }
}

.archive-left-item-cat {
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 5px;
  font-family: sans-serif;
  color: #feffd5;
  font-weight: bold;
  --rb: linear-gradient(90deg, #e23a31, #f08700, #f0c200, #2fb350, #006fe6, #4f4cc3, #9e49c8, #e23a31);
  background: var(--rb);
  background-size: 300% 300%;
  animation: rbFlow 15s linear infinite;
}

@media screen and (max-width: 767px) {
  .archive-left-item-cat {
    font-size: 10px;
  }
}

.archive-left-item-ttl {
  margin-top: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #feffd5;
}

@media screen and (max-width: 767px) {
  .archive-left-item-ttl {
    font-size: 16px;
  }
}

.archive-left-item-txt {
  margin-top: 10px;
  font-size: 14px;
  color: #feffd5;
}

@media screen and (max-width: 767px) {
  .archive-left-item-txt {
    line-height: 1.5;
  }
}

.archive-left-item-btn {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .archive-left-item-btn {
    text-align: center;
  }
}

.archive-left-item-btn a {
  border-bottom: 2px solid #feffd5;
  color: #feffd5;
  font-weight: bold;
  padding-bottom: 5px;
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .archive-left-item-btn a {
    font-size: 18px;
  }
}

.archive-left-item-btn a:hover {
  opacity: 0.6;
}

/* ===============================================
  # ページネーション 
  =============================================== */
.pagination {
  margin-top: 60px;
  text-align: center;
}

.pagination a {
  transition: all 0.3s ease 0s;
}

.pagination a:hover {
  opacity: 0.6;
}

.pagination a.next,
.pagination a.prev {
  font-size: 20px;
  background: none;
}

.pagination a.next:hover,
.pagination a.prev:hover {
  opacity: 0.6;
}

.page-numbers {
  color: #feffd5;
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 15px;
  height: 30px;
  line-height: 30px;
  margin-right: 14px;
  min-width: 30px;
  text-align: center;
  text-decoration: none;
}

.page-numbers:last-child {
  margin-right: 0;
}

.page-numbers.current {
  background: #e3d6cf;
  border: 1px solid #888888;
  color: #fff;
  --rb: linear-gradient(90deg, #e23a31, #f08700, #f0c200, #2fb350, #006fe6, #4f4cc3, #9e49c8, #e23a31);
  background: var(--rb);
  background-size: 300% 300%;
  animation: rbFlow 15s linear infinite;
  font-weight: 700;
}

.page-numbers.dots,
.page-numbers.next,
.page-numbers.prev {
  border: none;
  line-height: 40px;
  min-width: initial;
  width: auto;
}

/* ===============================================
  # 新着情報一覧　右
  =============================================== */
.archive-right {
  width: 25%;
  background: #2d2d2d;
  padding: 30px 20px;
}

@media screen and (max-width: 767px) {
  .archive-right {
    width: 100%;
    margin-top: 60px;
  }
}

.archive-right-item + .archive-right-item {
  margin-top: 40px;
}

.archive-right-item-ttl {
  font-weight: bold;
  border-left: 3px solid #feffd5;
  padding-left: 10px;
  padding-top: 3px;
}

.archive-right-item-ul {
  margin-top: 20px;
}

.archive-right-item-li + .archive-right-item-li {
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .archive-right-item-li + .archive-right-item-li {
    margin-top: 15px;
  }
}

.archive-right-item-li a {
  color: #feffd5;
  font-weight: bold;
  font-size: 14px;
}

.archive-right-item-li a:hover {
  opacity: 0.6;
}

/* ===============================================
  # 新着情報詳細
  =============================================== */
.single-info-box {
  background: #fff;
  padding: 60px;
  border: 1px dotted #e0e0e0;
}

@media screen and (max-width: 767px) {
  .single-info-box {
    padding: 30px 15px;
  }
}

.single-info-meta {
  display: flex;
  align-items: center;
}

.single-info-published {
  margin-right: 10px;
  color: gray;
  font-weight: bold;
  margin-right: 15px;
}

@media screen and (max-width: 767px) {
  .single-info-published {
    font-size: 14px;
  }
}

.single-info-img {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .single-info-img {
    margin-top: 20px;
  }
}

.single-info-ttl {
  margin-top: 30px;
  font-size: 20px;
  font-weight: bold;
  color: #333333;
}

@media screen and (max-width: 767px) {
  .single-info-ttl {
    font-size: 16px;
    margin-top: 25px;
  }
}

.single-info-txt {
  margin-top: 30px;
  text-align: justify;
}

@media screen and (max-width: 767px) {
  .single-info-txt {
    margin-top: 30px;
    font-size: 14px;
    line-height: 1.5;
  }
}

.single-info-btn {
  margin-top: 60px;
  text-align: center;
}

.single-info-btn a {
  padding: 20px 30px;
  background: #333333;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s ease 0s;
}

@media screen and (max-width: 767px) {
  .single-info-btn a {
    padding: 10px 20px;
  }
}

.single-info-btn a:hover {
  background: #feffd5;
  color: #333;
}

/* ===============================================
  # コンタクトフォーム７
  =============================================== */
.contact {
  position: relative;
}

.contact::after {
  position: absolute;
  content: "";
  width: 40%;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .contact {
    padding-bottom: 60px;
  }
}

.contact-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 120px;
  background: #2d2d2d;
  color: #333;
}

@media screen and (max-width: 767px) {
  .contact-box {
    padding: 20px;
  }
}

.contact-contents__items {
  color: #feffd5;
}

.contact-note-txt {
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .contact-note-txt {
    text-align: center;
    font-size: 12px;
  }
}

.contact-required-txt {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
  color: #feffd5;
}

.contact-required-txt span {
  color: #940000;
}

.contact-contents__item--required {
  display: flex;
}

@media screen and (max-width: 767px) {
  .contact-contents__item--required {
    display: block;
  }
}

.contact-contents__item--required + .contact-contents__item--required {
  margin-top: 40px;
}

.required {
  position: relative;
}

.required::after {
  position: absolute;
  content: "＊";
  font-size: 12px;
  color: #940000;
  top: -7px;
}

.contact-contents__item-title {
  width: 190px;
  height: 40px;
  line-height: 40px;
  font-weight: bold;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .contact-contents__item-title {
    font-size: 16px;
  }
}

.contact-contents__item-title p {
  display: inline-block;
}

.contact-contents__item-input--text {
  width: calc(100% - 190px);
}

@media screen and (max-width: 767px) {
  .contact-contents__item-input--text {
    width: 100%;
  }
}

.contact-contents__item-textarea {
  width: calc(100% - 190px);
}

@media screen and (max-width: 767px) {
  .contact-contents__item-textarea {
    width: 100%;
  }
}

.contact-contents__submit {
  text-align: center;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .contact-contents__submit {
    margin-top: 20px;
  }
}

.contact-contents__btn {
  width: 160px;
  height: 50px;
  border: none;
  font-size: 20px;
  font-family: fot-tsukubrdgothic-std, sans-serif;
  font-weight: bold;
  color: #fff;
  --rb: linear-gradient(90deg, #e23a31, #f08700, #f0c200, #2fb350, #006fe6, #4f4cc3, #9e49c8, #e23a31);
  background: var(--rb);
  background-size: 300% 300%;
  animation: rbFlow 15s linear infinite;
}

@media screen and (max-width: 767px) {
  .contact-contents__btn {
    font-size: 16px;
  }
}

.contact-contents__btn:hover {
  opacity: 0.6;
}

input[type="text"], input[type="email"], input[type="tel"] {
  width: 100%;
  border: none;
  height: 40px;
}

textarea {
  width: 100%;
  min-height: 122px;
  resize: vertical;
  border: none;
}

.wpcf7-spinner {
  display: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

.grechapcha-txt {
  text-align: center;
  margin-top: 30px;
}

/* ===============================================
  # ジャンルナビ
  =============================================== */
.genre-nav {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .genre-nav {
    margin-bottom: 12px;
  }
}

.genre-nav-link {
  margin-right: 16px;
}

@media screen and (max-width: 767px) {
  .genre-nav-link {
    margin-right: 12px;
    margin-bottom: 12px;
  }
}

.genre-nav-link a {
  display: block;
  padding: 6px 14px;
  transition: all 0.5s ease 0s;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #2d2d2d;
}

@media screen and (max-width: 767px) {
  .genre-nav-link a {
    padding: 5px 8px;
    font-size: 12px;
  }
}

.genre-nav-link a.is-active,
.genre-nav-link a:hover {
  --rb: linear-gradient(90deg, #e23a31, #f08700, #f0c200, #2fb350, #006fe6, #4f4cc3, #9e49c8, #e23a31);
  background: var(--rb);
  background-size: 300% 300%;
  animation: rbFlow 15s linear infinite;
  color: #fff;
}

/* ===============================================
  # 制作実績一覧
  =============================================== */
.archive-work-content {
  display: flex;
  flex-wrap: wrap;
}

.archive-work-item {
  display: block;
  width: 30%;
  margin-right: 5%;
  background: #878986;
}

@media screen and (max-width: 767px) {
  .archive-work-item {
    width: 100%;
    margin-right: 0;
  }
}

.archive-work-item:nth-child(3n) {
  margin-right: 0;
}

.archive-work-item:nth-child(n + 4) {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .archive-work-item:nth-child(n + 4) {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .archive-work-item + .archive-work-item {
    margin-top: 40px;
  }
}

.archive-work-img img {
  height: 400px;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .archive-work-img img {
    height: 350px;
  }
}

.archive-work-item-box {
  padding: 15px;
  background: #2d2d2d;
}

.archive-work-item-box .price {
  color: #feffd5;
}

.archive-work-cat {
  font-size: 12px;
  padding: 0px 10px;
  border: 1px solid gray;
  font-family: sans-serif;
  background: #fff;
  display: inline-block;
  color: #333;
}

.archive-work-ttl {
  margin-top: 10px;
  color: #333;
}

.archive-work-txt {
  margin-top: 5px;
  text-align: justify;
  color: #333;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .archive-work-txt {
    line-height: 1.5;
  }
}

/* ===============================================
  # パンクズリスト
  =============================================== */
.breadcrumb {
  padding-top: 20px;
  padding: 10px 0 0 0;
  color: #fff;
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  .breadcrumb {
    font-size: 10px;
  }
}

.breadcrumb .home::before {
  content: "\f015";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  margin-right: 10px;
}

.breadcrumb a {
  text-decoration: none;
  transition: all 0.3s ease 0s;
  color: #feffd5;
}

.breadcrumb a:hover {
  opacity: 0.6;
}

.breadcrumb i {
  margin-left: 5px;
  margin-right: 5px;
}

.paper {
  max-width: 600px;
  margin: 0 auto;
}

.paper img {
  position: relative;
}

.paper p {
  text-align: center;
  margin-top: 10px;
}
