@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:#666666;
  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: "yumin", serif;
  font-weight: normal;
  color:#333333;
  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: 16px;
  }
}

@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: "pd", serif;
}

.light {
  font-weight: 300;
}

.medium {
  font-weight: 500;
}

.bold {
  font-weight: 700;
}


.white {
  color:#666666;
}

.black {
  color: #474a4d;
}

.blue {
  color: #adadad;
}

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

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

.bg-beige {
  background-color: rgba(166, 205, 191, 1);
}

.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:#deeee0;

  width: 100%;
}
.header-container header .site-header.transform {
  background: rgba(255, 255, 255, 0.9);
  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 #ffecbf;
}
.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:#7fd1ae;

;
}
.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設定*/
.mv {
  margin-top: 60px;
  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: #ffffff;
  text-shadow: 0 0 15px #666;
  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: rgba(48, 41, 40, 0.6);
  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:#deeee0;
  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;
  font-weight: normal;
  width: 90%;
  padding-bottom: 15px;
  margin: 0 auto 1rem;
  font-size: 45px;
  font-size: 10vw;
}
@media (min-width: 768px) {
  article section .title {
    width: 100%;
    margin-bottom: 0;
    font-size: 52px;
    font-size: 6.7708333333vw;
  }
}
@media (min-width: 1280px) {
  article section .title {
    margin-bottom: 2rem;
    font-size: 60px;
  }
}
article section .title::first-letter {
  color: #7fd1ae;
}
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:#666666;
  background:#deeee0;
  border: solid 1px#ccbe99;
  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: #666666;
}
@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:#666666；
  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: #666666;
}
#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 #666666;
  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:#666666;
}
@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:#a6cdbf;
;
  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:#666666;
  font-size: 22px;
}
.page:not(.home) #menu .menu_wrap .menu_div {
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1;
  color:#666666;
  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#deeee0;
  }
}
.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#deeee0;
  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 #cccccc;
}
.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#deeee0;
  }
}
.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: #474a4d;
}
.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:#666666;
}

#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: #998e73;
  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:#666666 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:#666666 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
====================== */
.footer-container {
  position: relative;
  z-index: 1;
}
.footer-container .foot-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;
  color:#666666;
  background:#deeee0;
  position: relative;
}
.footer-container .foot-wrap .shop_info {
  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;
  padding-top: 20px;
}
@media (min-width: 768px) {
  .footer-container .foot-wrap .shop_info {
    padding-top: 15px;
    width: 50%;
  }
}
@media (min-width: 1280px) {
  .footer-container .foot-wrap .shop_info {
    padding-top: 30px;
  }
}
.footer-container .foot-wrap .shop_info .info {
  width: 100%;
}
@media (min-width: 1280px) {
  .footer-container .foot-wrap .shop_info .info {
    padding-left: 76px;
    padding-left: 5.9375vw;
    padding-right: 76px;
    padding-right: 5.9375vw;
  }
}
.footer-container .foot-wrap .shop_info .info .logo {
  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;
}
@media (min-width: 768px) {
  .footer-container .foot-wrap .shop_info .info .logo {
    margin-bottom: 1rem;
  }
}
.footer-container .foot-wrap .shop_info .info .to-contact {
  margin-top: 5vh;
}
@media (min-width: 768px) {
  .footer-container .foot-wrap .shop_info .info .to-contact {
    margin-top: 0;
  }
}
@media (min-width: 1280px) {
  .footer-container .foot-wrap .shop_info .info .to-contact {
    margin-top: 5vh;
  }
}
.footer-container .foot-wrap .shop_info .info .site-logo {
  margin-right: 1rem;
}
.footer-container .foot-wrap .shop_info .info .site-logo img {
  width: 62px;
  width: 16.5333333333vw;
}
@media (min-width: 768px) {
  .footer-container .foot-wrap .shop_info .info .site-logo img {
    width: 76px;
    width: 9.8958333333vw;
  }
}
@media (min-width: 1280px) {
  .footer-container .foot-wrap .shop_info .info .site-logo img {
    width: 90px;
  }
}
.footer-container .foot-wrap .shop_info .info .title {
  position: relative;
  line-height: 1;
  z-index: 2;
}
.footer-container .foot-wrap .shop_info .info .title a {
  letter-spacing: 0.05em;
  font-weight: normal;
  color:#666666;
  font-size: 25px;
  font-size: 6.6666666667vw;
}
@media (min-width: 768px) {
  .footer-container .foot-wrap .shop_info .info .title a {
    font-size: 30px;
    font-size: 3.90625vw;
  }
}
@media (min-width: 1280px) {
  .footer-container .foot-wrap .shop_info .info .title a {
    font-size: 36px;
  }
}
.footer-container .foot-wrap .shop_info .info .sns {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-evenly;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
}
.footer-container .foot-wrap .shop_info .info .sns li {
  margin-left: 10px;
}
.footer-container .foot-wrap .shop_info .info .sns li a {
  color: #b3b3b3;
}
.footer-container .foot-wrap .shop_info .info .sns li a img {
  width: 20px;
}
.footer-container .foot-wrap .shop_info .info .link-btn {
  display: block;
  text-align: center;
  padding: 14px 15px;
  margin: 2rem auto;
  line-height: 1;
  color:#666666;
  background:#deeee0;
  border: solid 1px#666666;
  box-sizing: border-box;
  letter-spacing: 0.05em;
  width: 225px;
  width: 60vw;
  font-size: 13px;
  font-size: 3.4666666667vw;
}
@media (min-width: 768px) {
  .footer-container .foot-wrap .shop_info .info .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) {
  .footer-container .foot-wrap .shop_info .info .link-btn {
    margin: 3rem auto;
    padding: 21px 15px;
    width: 300px;
    font-size: 18px;
  }
}
.footer-container .foot-wrap .shop_info .info .link-btn:hover {
  color: #474a4d;
  background: #ffffff;
  border: solid 1px #ffffff;
  box-sizing: border-box;
}
@media (min-width: 1280px) {
  .footer-container .foot-wrap .shop_info .info .link-btn {
    width: 480px;
  }
}
.footer-container .foot-wrap .shop_info .address {
  width: 100%;
  border-bottom: solid 1px#666666;
}
@media (min-width: 768px) {
  .footer-container .foot-wrap .shop_info .address {
    width: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.footer-container .foot-wrap .shop_info .address tr {
  border-top: solid 1px#666666;
  font-size: 14px;
}
.footer-container .foot-wrap .shop_info .address tr th {
  font-weight: normal;
  text-align: left;
  padding: 15px;
}
.footer-container .foot-wrap .shop_info .address tr td {
  padding: 15px;
}
.footer-container .foot-wrap .shop_info .address tr td span {
  padding-right: 60px;
}
.footer-container .foot-wrap .shop_info .address tr td a {
  color:#666666;
}
.footer-container .foot-wrap .map {
  margin: 0 auto;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
@media (min-width: 768px) {
  .footer-container .foot-wrap .map {
    width: 50%;
    aspect-ratio: 1/1;
  }
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .footer-container .foot-wrap .map {
    aspect-ratio: 4/3;
  }
}
@media screen and (min-width: 1441px) and (max-width: 1920px) {
  .footer-container .foot-wrap .map {
    aspect-ratio: 3/2;
  }
}
.footer-container .foot-wrap .map iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

address {
  font-size: 14px;
  text-align: center;
  padding: 10px;
  background:#deeee0;
  color:#666666;
}
@media (min-width: 768px) {
  address {
    margin-bottom: 0;
  }
}

/*========= ページトップ ===============*/
#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:#deeee0;
  width: 55px;
  height: 55px;
  color:#666666;
  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;
	}
}