@charset "UTF-8";
/*************************************************
common-style
*************************************************/
* {
  box-sizing: border-box;
}

.ie_ObjectFit {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

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;
}
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;
}

p {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.75em;
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  p {
    font-size: 15px;
  }
}

.scroll {
  opacity: 0; /* 最初は非表示 */
  transform: translateY(30px); /* 下に30pxの位置から */
  transition: opacity 0.6s, transform 0.6s; /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.scroll.active {
  opacity: 1; /* 表示領域に入ったら表示 */
  transform: translateY(0); /* 30px上に移動する */
  transition-delay: 0.3s; /* フェード開始を0.5秒遅らせる */
}

.is_pc {
  display: block;
}
@media screen and (max-width: 599px) {
  .is_pc {
    display: none;
  }
}

.is_sp {
  display: none;
}
@media screen and (max-width: 599px) {
  .is_sp {
    display: block;
  }
}

.obj-fit {
  aspect-ratio: 1/1;
}
.obj-fit img {
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.btn_big {
  text-align: center;
  width: 100%;
}
.btn_big a {
  display: block;
  background-color: #b19f8c;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
  position: relative;
  transition: 0.3s;
}
.btn_big a {
  color: #fff;
  background-color: #b19f8c;
  display: inline-block;
  padding: 15px 0px;
  border: 1px solid #b19f8c;
  font-size: 16px;
  width: 100%;
  text-align: center;
  transition: 0.6s;
}
@media screen and (max-width: 599px) {
  .btn_big a {
    width: 84%;
    margin-left: 0px;
    margin: 0 auto;
  }
}
.btn_big a:hover {
  background-color: #fff;
  color: #b19f8c;
}

@media screen and (max-width: 599px) {
  .text_inner {
    width: 84%;
    margin-left: auto;
    margin-right: auto;
  }
}

.floating-menu {
  display: none;
}
@media screen and (max-width: 599px) {
  .floating-menu {
    display: flex;
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 999;
  }
}
.floating-menu .left,
.floating-menu .right {
  width: 50%;
  aspect-ratio: 4/1;
  background-color: #c3c3c3;
  padding: 10px 0;
}
.floating-menu .left a,
.floating-menu .right a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "ヒラギノ明朝 ProN", "HiraMinProN-W6", "HG明朝E", "MS P明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 14px;
  letter-spacing: 2px;
  color: #fff;
}
.floating-menu .left a img,
.floating-menu .right a img {
  width: 30px;
  margin-bottom: 5px;
}
.floating-menu .left a {
  border-right: 1px solid #fff;
}

.video {
  width: 100%;
}

/*************************************************
header
*************************************************/
header {
  color: red;
}

/*************************************************
footer
*************************************************/
footer {
  width: 100%;
  position: relative;
}
footer .info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  background-color: rgba(0, 0, 0, 0.48);
  padding: 60px 0;
}
@media screen and (max-width: 599px) {
  footer .info {
    width: 100%;
  }
}
footer .info h3 {
  font-family: letter-gothic-std, monospace !important;
  font-weight: 200;
  font-style: normal;
  font-size: 36px;
  color: #fff;
  position: relative;
  padding-left: 60px;
  margin-bottom: 35px;
}
@media screen and (max-width: 599px) {
  footer .info h3 {
    font-size: 28px;
  }
}
footer .info h3:after {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 40px;
  height: 1px;
  left: 0;
  top: 50%;
}

.bg_images {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.bg_images .inner {
  flex-basis: 25%;
}
.bg_images .inner img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 599px) {
  .bg_images .inner {
    flex-basis: 50%;
  }
}
.bg_images:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
}
.text_box {
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  margin-bottom: 0px;
}
@media screen and (max-width: 599px) {
  .text_box {
    flex-wrap: wrap;
  }
}
.text_box .logo {
  flex-basis: 12%;
}
@media screen and (max-width: 599px) {
  .text_box .logo {
    flex-basis: 100%;
    margin-bottom: 20px;
  }
}
.text_box .logo img {
  width: 100%;
}
@media screen and (max-width: 599px) {
  .text_box .logo img {
    width: 20%;
  }
}
.text_box .text {
  flex-basis: 85%;
  color: #fff;
}
@media screen and (max-width: 599px) {
  .text_box .text {
    flex-basis: 100%;
  }
}

.sns_box {
  display: flex;
  padding: 0 60px;
}
@media screen and (max-width: 599px) {
  .sns_box {
    padding: 0 30px;
  }
}
.sns_box img {
  width: 40px;
  height: auto;
  margin-right: 20px;
}

.footer_link_btn {
  color: #000;
  display: inline-block;
  padding: 12px 0px;
  border: 1px solid #fff;
  font-size: 16px;
  width: 160px;
  text-align: center;
  position: relative;
  transition: 0.6s;
  background-color: #fff;
}
.footer_link_btn:before {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 52px;
  height: 1px;
  right: -30px;
  top: 52%;
}
@media screen and (max-width: 599px) {
  .footer_link_btn:before {
    content: none;
  }
}
.footer_link_btn:after {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 12px;
  height: 1px;
  right: -32px;
  top: 42%;
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .footer_link_btn:after {
    content: none;
  }
}
.footer_link_btn:hover {
  background-color: initial;
  color: #fff;
}
.footer_link_btn:hover:before {
  animation: link_btn_anime 0.3s ease-in;
}
.footer_link_btn:hover:after {
  animation: link_btn_anime_02 0.3s ease-in;
}

.copy {
  background-color: #000;
  color: #fff !important;
  font-size: 12px;
  padding: 15px 25px;
  font-family: letter-gothic-std, monospace !important;
  font-weight: 200;
  font-style: normal;
  text-align: right;
  letter-spacing: 1px;
}
@media screen and (max-width: 599px) {
  .copy {
    font-size: 10px;
  }
}

/*************************************************
navi
*************************************************/
.wrapper_nav {
  position: fixed;
  right: 0;
  top: 80px;
  display: flex;
  flex-flow: column;
  align-items: center;
  z-index: 3;
}
@media screen and (max-width: 599px) {
  .wrapper_nav {
    top: 0;
    z-index: 0;
  }
}

.header_inner {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
}
@media screen and (max-width: 599px) {
  .header_inner {
    width: 100vw;
    background: #fff;
    height: 64px;
    display: flex;
    box-shadow: 0px 4px 10px -6px rgba(0, 0, 0, 0.3);
    z-index: 99;
    padding-right: 56px;
  }
}
@media (max-width: 375px) {
  .header_inner {
    padding-right: 54px;
  }
}

.sp_top,
.sp-line,
.sp-insta {
  display: none;
}
@media screen and (max-width: 599px) {
  .sp_top,
  .sp-line,
  .sp-insta {
    display: block;
  }
}

@media screen and (max-width: 599px) {
  .sp_top {
    display: flex;
    align-items: center;
    padding: 0px 8px 0px 10px;
  }
}
@media (max-width: 375px) {
  .sp_top {
    padding: 0px 6px 0px 6px;
  }
}
.sp_top img {
  width: 100%;
  max-width: 56px;
  margin-right: 4px;
  -o-object-fit: contain;
     object-fit: contain;
}

.sp_htxt {
  font-family: "ヒラギノ明朝 ProN", "HiraMinProN-W6", "HG明朝E", "MS P明朝", "MS PMincho", "MS 明朝", serif;
  text-align: center;
}
.sp_htxt p {
  color: #616060;
  margin-bottom: 0;
  line-height: 1.4;
}

.sp-company {
  font-size: 16px;
}

.sp-copy {
  font-size: 8px;
  letter-spacing: 0.02em;
}

.sns_icon {
  margin-top: 20px;
}
.sns_icon img {
  display: block;
  width: 40px;
  height: auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .sns_icon {
    display: none;
  }
}

.sp_flex {
  display: flex;
}

.sp-line,
.sp-insta {
  display: none;
}
@media screen and (max-width: 599px) {
  .sp-line,
  .sp-insta {
    display: block;
    font-family: "ヒラギノ明朝 ProN", "HiraMinProN-W6", "HG明朝E", "MS P明朝", "MS PMincho", "MS 明朝", serif;
    background: #d6d6d6;
    color: #fff;
    padding: 10px 26px;
    font-size: 10px;
    width: 17%;
    border-right: 1.5px solid #fff;
  }
}
@media (max-width: 375px) {
  .sp-line,
  .sp-insta {
    width: 54px;
  }
}

.sp-line {
  position: relative;
}
.sp-line::before {
  content: "LINE";
  font-size: 10px;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%) scale(0.9);
}
.sp-line::after {
  content: "";
  background: url(images/icon_line.png) no-repeat center/contain;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.sp-insta {
  position: relative;
}
.sp-insta::before {
  content: "INTAGRAM";
  font-size: 10px;
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
}
.sp-insta::after {
  content: "";
  background: url(images/Instagram_White.svg) no-repeat center/contain;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hamburger {
  display: block;
  z-index: 3;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
  text-align: center;
  background-color: #000;
}
@media screen and (max-width: 599px) {
  .hamburger {
    background: #d6d6d6;
    width: 60px;
    height: 64px;
  }
}
@media (max-width: 375px) {
  .hamburger {
    width: 54px;
  }
}

@media screen and (max-width: 599px) {
  .hamburger.active {
    transition: all 0.5s;
    width: 60px;
    height: 64px;
  }
}

.hamburger span {
  display: block;
  position: absolute;
  width: 34px;
  height: 1px;
  left: 13px;
  background: #fff;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 599px) {
  .hamburger span {
    height: 2px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.hamburger span:nth-child(1) {
  top: 13px;
}
@media screen and (max-width: 599px) {
  .hamburger span:nth-child(1) {
    width: 22px;
  }
}

.hamburger span:nth-child(2) {
  top: 23px;
}
@media screen and (max-width: 599px) {
  .hamburger span:nth-child(2) {
    width: 22px;
    top: 20px;
  }
}

.hamburger span:nth-child(3) {
  top: 33px;
  width: 26px;
}
@media screen and (max-width: 599px) {
  .hamburger span:nth-child(3) {
    width: 22px;
    top: 28px;
  }
}

.hamburger span:nth-child(4) {
  width: 26px;
  color: #fff;
  height: 0px;
  font-size: 12px;
  top: 40px;
}
@media screen and (max-width: 599px) {
  .hamburger span:nth-child(4) {
    font-family: "ヒラギノ明朝 ProN", "HiraMinProN-W6", "HG明朝E", "MS P明朝", "MS PMincho", "MS 明朝", serif;
    top: initial;
    width: 100%;
    bottom: 16px;
    font-size: 10px;
    transform: translateX(-50%) scale(0.9);
  }
}

.hamburger.active span:nth-child(4) {
  display: none;
}

.hamburger span:nth-child(5) {
  display: none;
}

.hamburger.active span:nth-child(5) {
  display: block;
  width: 26px;
  color: #fff;
  height: 0px;
  font-size: 12px;
  top: 40px;
}
@media screen and (max-width: 599px) {
  .hamburger.active span:nth-child(5) {
    top: initial;
    bottom: 20px;
    left: 28px;
    font-size: 10px;
  }
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(2) {
  width: 0px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg);
  top: 24px;
}
@media screen and (max-width: 599px) {
  .hamburger.active span:nth-child(1) {
    left: 18px;
    width: 28px;
  }
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg);
  top: 24px;
  width: 34px;
}
@media screen and (max-width: 599px) {
  .hamburger.active span:nth-child(3) {
    left: 18px;
    width: 28px;
  }
}

nav {
  position: fixed;
  z-index: 2;
  top: 0;
  right: 0;
  color: #000;
  background: #fff;
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 30%;
  height: 100%;
  box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 599px) {
  nav {
    width: 80%;
  }
}

nav ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
}

nav ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: 0.3s;
}

nav ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

nav ul li:hover {
  background: #000;
}
nav ul li:hover a {
  color: #fff;
}

nav ul li a {
  display: block;
  color: #000;
  padding: 1em 0;
  text-decoration: none;
  letter-spacing: 2px;
}

.nav_sns_icon {
  margin-top: 20px;
}
.nav_sns_icon img {
  width: 40px;
  height: auto;
}
.nav_sns_icon .insta {
  margin-right: 20px;
}

/* このクラスを、jQueryで付与・削除する */
nav.active {
  transform: translateX(0%);
}

/*************************************************
top
*************************************************/
.wrapper_kv {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .wrapper_kv {
    background-position: 68% center;
    height: 85vh;
  }
}
.wrapper_kv::after {
  content: "";
  background-image: url(images/kv.jpg);
  background-position: right 120px center;
  animation: fadeIn 2.8s ease-out forwards;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 599px) {
  .wrapper_kv::after {
    background-position: 68% center;
    height: 85vh;
  }
}
.wrapper_kv .container {
  padding-left: 5%;
}
@media screen and (max-width: 599px) {
  .wrapper_kv .container {
    padding-left: 10px;
  }
}
.wrapper_kv .container .logo {
  width: 170px;
}
@media screen and (max-width: 599px) {
  .wrapper_kv .container .logo {
    display: none;
  }
}
.wrapper_kv .container .logo img {
  width: 100%;
  height: auto;
}
.wrapper_kv .container .kv_cacth {
  font-family: "ヒラギノ明朝 ProN", "HiraMinProN-W6", "HG明朝E", "MS P明朝", "MS PMincho", "MS 明朝", serif;
  position: absolute;
  top: 40%;
  left: 5%;
  color: #fff;
  text-shadow: 2px 2px 20px rgba(138, 138, 138, 0.88);
}
@media screen and (max-width: 599px) {
  .wrapper_kv .container .kv_cacth {
    top: initial;
    bottom: 15%;
    text-shadow: 2px 2px 20px rgb(95, 95, 95);
  }
}
.wrapper_kv .container .kv_cacth h3 {
  font-size: 30px;
  line-height: 55px;
  letter-spacing: 2px;
  font-weight: 300;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 599px) {
  .wrapper_kv .container .kv_cacth h3 {
    font-size: 20px;
    line-height: 36px;
    writing-mode: vertical-rl;
  }
}
.wrapper_kv .container .kv_cacth p {
  font-size: 20px;
  letter-spacing: 2px;
  padding: 12px 18px;
  border: 1.5px solid #fff;
  display: table;
  margin-bottom: 0px;
}
@media screen and (max-width: 599px) {
  .wrapper_kv .container .kv_cacth p {
    font-size: 16px;
    padding: 8px 10px;
  }
}
.wrapper_kv .container .kv_cacth span {
  transition: 1s;
  opacity: 0;
  transform: translateY(20px);
  display: inline-block;
}
.wrapper_kv .container .kv_cacth span:first-child {
  animation: catchAnime 1.2s forwards 1s;
}
.wrapper_kv .container .kv_cacth span:nth-child(2) {
  animation: catchAnime 1.2s forwards 1.8s;
}
.wrapper_kv .container .kv_cacth span:nth-child(3) {
  animation: catchAnime 1.2s forwards 2.6s;
}
@keyframes catchAnime {
  0% {
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.wrapper_kv h1 {
  padding: 10px 20px;
  background-color: #fff;
  text-align: right;
  display: inline-block;
  font-size: 14px;
  letter-spacing: 2px;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 599px) {
  .wrapper_kv h1 {
    padding: 10px 10px 10px 20px;
    font-size: 12px;
    letter-spacing: 0;
    bottom: -1px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    /* 開始時は完全に透明 */
  }
  100% {
    opacity: 1;
    /* 終了時は完全に不透明 */
  }
}
.scrolldown {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 5%;
  bottom: 0px;
  /*全体の高さ*/
  height: 30px;
}
@media screen and (max-width: 599px) {
  .scrolldown {
    left: 10px;
  }
}

/*Scrollテキストの描写*/
.scrolldown span {
  color: #000;
  font-size: 12px;
  letter-spacing: 1px;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 599px) {
  .scrolldown span {
    font-size: 10px;
  }
}

/* 線の描写 */
.scrolldown::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 120px;
  left: 50%;
  /*線の形状*/
  width: 1px;
  height: 30px;
  background: #000;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
  transform: translateY(-60px);
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
main.toppage h2 {
  font-family: letter-gothic-std, monospace;
  font-weight: 400;
  font-style: normal;
  font-size: 36px;
  color: #B19F8C;
  position: relative;
  padding-left: 50px;
  margin-bottom: 35px;
}
@media screen and (max-width: 599px) {
  main.toppage h2 {
    font-size: 34px;
    margin-bottom: 25px;
  }
}
main.toppage h2:after {
  position: absolute;
  content: "";
  background-color: #B19F8C;
  width: 40px;
  height: 1px;
  left: 0;
  top: 50%;
}
@media screen and (max-width: 599px) {
  main.toppage h2:after {
    width: 30px;
  }
}
main.toppage h3 {
  font-family: "ヒラギノ明朝 ProN", "HiraMinProN-W6", "HG明朝E", "MS P明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 24px;
  line-height: 2em;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  main.toppage h3 {
    font-size: 20px;
    margin-bottom: 40px;
  }
}

.wrapper_top01 {
  padding: 100px 0 0;
  position: relative;
}
@media screen and (max-width: 599px) {
  .wrapper_top01 {
    padding: 60px 0 0;
  }
}
.wrapper_top01 .container {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .wrapper_top01 .container {
    width: 84%;
    padding: 0 10px;
  }
}
.wrapper_top01 .container p {
  width: 600px;
}
@media screen and (max-width: 599px) {
  .wrapper_top01 .container p {
    width: 100%;
  }
}

.top01_bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 457px;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 599px) {
  .top01_bg {
    width: 70%;
    height: 150px;
  }
}

.brown_box {
  position: absolute;
  content: "";
  right: 0;
  top: 250px;
  width: 55%;
  height: 265px;
  background-color: #f0eae4;
  z-index: -2;
}
@media screen and (max-width: 599px) {
  .brown_box {
    width: 80%;
    top: 30px;
    height: 155px;
  }
}

.wrapper_top02 {
  padding: 100px 0;
  position: relative;
}
@media screen and (max-width: 599px) {
  .wrapper_top02 {
    padding: 60px 0;
  }
}
.wrapper_top02 .container {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .wrapper_top02 .container {
    width: 100%;
    padding: 0 10px;
  }
}

.wrapper_top_osusume {
  padding: 100px 0;
  position: relative;
}
@media screen and (max-width: 599px) {
  .wrapper_top_osusume {
    padding: 60px 0 60px;
  }
}
.wrapper_top_osusume .container {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .wrapper_top_osusume .container {
    width: 100%;
    padding: 0 10px;
  }
}
@media screen and (max-width: 599px) {
  .wrapper_top_osusume .container h2 {
    font-size: 20px;
  }
}

@media screen and (max-width: 599px) {
  .text_big_sp {
    font-size: 21px !important;
    line-height: 1.5em !important;
  }
}

.menu_flex {
  display: flex;
  justify-content: space-between;
  margin-left: 28px;
  margin-bottom: 60px;
}
@media screen and (max-width: 599px) {
  .menu_flex {
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
}
.menu_flex .inner {
  flex-basis: 26%;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .menu_flex .inner {
    flex-basis: 80%;
    margin-bottom: 20px;
  }
}
.menu_flex .inner img {
  width: 100%;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .menu_flex .inner img {
    margin-bottom: 20px;
    width: 60%;
  }
}
.menu_flex .inner h4 {
  font-size: 18px;
  font-family: "ヒラギノ明朝 ProN", "HiraMinProN-W6", "HG明朝E", "MS P明朝", "MS PMincho", "MS 明朝", serif;
  position: relative;
  padding-left: 23px;
  flex-basis: 100%;
}
.menu_flex .inner h4:after {
  position: absolute;
  content: "";
  background-color: #000;
  width: 13px;
  height: 1px;
  left: 0;
  top: 50%;
}
.menu_flex .inner p {
  font-size: 14px;
}
.menu_flex .inner span {
  display: inline-block;
  font-size: 14px;
  padding: 8px 20px;
  border: 1px solid #222222;
  margin: 40px 0 25px 0;
}

.menu_flex02 {
  display: flex;
}
@media screen and (max-width: 599px) {
  .menu_flex02 {
    display: block;
  }
}
.menu_flex02 .text {
  flex-basis: 70%;
}
@media screen and (max-width: 599px) {
  .menu_flex02 .text {
    width: 84%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
}
.menu_flex02 .text p {
  margin-bottom: 0px;
}
.menu_flex02 .btn {
  flex-basis: 30%;
  align-self: flex-end;
}
@media screen and (max-width: 599px) {
  .menu_flex02 .btn {
    width: 84%;
    margin-left: auto;
    margin-right: auto;
  }
}

.menu_flex_lip,
.menu_flex_eyeline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  margin-top: 80px;
}
@media screen and (max-width: 599px) {
  .menu_flex_lip,
  .menu_flex_eyeline {
    flex-wrap: wrap;
    margin-bottom: 10px;
    width: 84%;
    margin-left: auto;
    margin-right: auto;
  }
}
.menu_flex_lip .inner,
.menu_flex_eyeline .inner {
  flex-basis: 26%;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .menu_flex_lip .inner,
  .menu_flex_eyeline .inner {
    flex-basis: 33%;
    margin-bottom: 20px;
  }
}
.menu_flex_lip .inner img,
.menu_flex_eyeline .inner img {
  width: 100%;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .menu_flex_lip .inner img,
  .menu_flex_eyeline .inner img {
    margin-bottom: 20px;
  }
}
.menu_flex_lip .inner h4,
.menu_flex_eyeline .inner h4 {
  font-size: 18px;
  font-family: "ヒラギノ明朝 ProN", "HiraMinProN-W6", "HG明朝E", "MS P明朝", "MS PMincho", "MS 明朝", serif;
  position: relative;
  padding-left: 23px;
  flex-basis: 100%;
}
.menu_flex_lip .inner h4:after,
.menu_flex_eyeline .inner h4:after {
  position: absolute;
  content: "";
  background-color: #000;
  width: 13px;
  height: 1px;
  left: 0;
  top: 50%;
}
.menu_flex_lip .inner p,
.menu_flex_eyeline .inner p {
  font-size: 14px;
}
.menu_flex_lip .inner span,
.menu_flex_eyeline .inner span {
  display: inline-block;
  font-size: 14px;
  padding: 8px 20px;
  border: 1px solid #222222;
  margin: 40px 0 25px 0;
}

h4.splip {
  display: none;
}
@media screen and (max-width: 599px) {
  h4.splip {
    display: block;
    margin-bottom: 20px;
    font-size: 18px;
    font-family: "ヒラギノ明朝 ProN", "HiraMinProN-W6", "HG明朝E", "MS P明朝", "MS PMincho", "MS 明朝", serif;
    position: relative;
    padding-left: 23px;
    flex-basis: 100%;
    width: 84%;
    margin-left: auto;
    margin-right: auto;
  }
  h4.splip:after {
    position: absolute;
    content: "";
    background-color: #000;
    width: 13px;
    height: 1px;
    left: 0;
    top: 50%;
  }
}

.link_btn {
  color: #fff;
  background-color: #b19f8c;
  display: inline-block;
  padding: 12px 0px;
  border: 1px solid #b19f8c;
  font-size: 16px;
  width: 160px;
  text-align: center;
  margin-left: 40%;
  position: relative;
  transition: 0.6s;
}
@media screen and (max-width: 599px) {
  .link_btn {
    width: 100%;
    margin-left: 0px;
    margin: 0 auto;
  }
}
.link_btn:before {
  position: absolute;
  content: "";
  background-color: #000;
  width: 52px;
  height: 1px;
  right: -30px;
  top: 52%;
}
@media screen and (max-width: 599px) {
  .link_btn:before {
    content: none;
  }
}
.link_btn:after {
  position: absolute;
  content: "";
  background-color: #000;
  width: 12px;
  height: 1px;
  right: -32px;
  top: 42%;
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .link_btn:after {
    content: none;
  }
}
.link_btn:hover {
  background-color: #fff;
  color: #b19f8c;
}
.link_btn:hover:before {
  animation: link_btn_anime 0.3s ease-in;
}
.link_btn:hover:after {
  animation: link_btn_anime_02 0.3s ease-in;
}

@keyframes link_btn_anime {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(6px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes link_btn_anime_02 {
  0% {
    transform: translateX(0px) rotate(45deg);
  }
  50% {
    transform: translateX(6px) rotate(45deg);
  }
  100% {
    transform: translateX(0px) rotate(45deg);
  }
}
.wrapper_top03 {
  padding: 100px 0 25px;
  position: relative;
}
@media screen and (max-width: 599px) {
  .wrapper_top03 {
    padding: 100px 0 25px;
  }
}
.wrapper_top03 .container {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .wrapper_top03 .container {
    width: 100%;
    padding: 0 10px;
  }
}

.wrapper_top_hifu {
  padding: 100px 0;
  position: relative;
}
@media screen and (max-width: 599px) {
  .wrapper_top_hifu {
    padding: 60px 0;
  }
}
.wrapper_top_hifu .container {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .wrapper_top_hifu .container {
    width: 100%;
    padding: 0 10px;
  }
}
@media screen and (max-width: 599px) {
  .wrapper_top_hifu .container h2 {
    font-size: 27px;
  }
}

.hifu_area {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 599px) {
  .hifu_area {
    flex-wrap: wrap;
  }
}
.hifu_area .image {
  flex-basis: 37%;
}
@media screen and (max-width: 599px) {
  .hifu_area .image {
    flex-basis: 80%;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}
.hifu_area .image img {
  width: 100%;
}
.hifu_area .text {
  flex-basis: 60%;
}
@media screen and (max-width: 599px) {
  .hifu_area .text {
    flex-basis: 84%;
    margin-left: auto;
    margin-right: auto;
  }
}

.insta_area {
  display: flex;
  width: 1000px !important;
  margin: 0 auto;
  margin-bottom: 100px !important;
}
@media screen and (max-width: 599px) {
  .insta_area {
    width: 100% !important;
    margin: 0 auto;
  }
}
.insta_area li img {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 599px) {
  .insta_area li img {
    width: 200px;
    height: 200px;
  }
}
.insta_area .inner {
  flex-basis: 25%;
  padding: 10px;
}
@media screen and (max-width: 599px) {
  .insta_area .inner {
    flex-basis: 80%;
  }
}
.insta_area .inner iframe {
  width: 100%;
}
.insta_area .inner iframe img {
  width: 100%;
}

.slick-prev,
.slick-next {
  z-index: 100;
}
@media screen and (max-width: 599px) {
  .slick-prev,
  .slick-next {
    display: none !important;
  }
}

.slick-prev:before,
.slick-next:before {
  color: #000 !important;
}

.slick-prev {
  left: -45px !important;
}

.slick-next {
  right: -45px !important;
}

.menu_flex_osusume {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .menu_flex_osusume {
    flex-wrap: wrap;
    margin-bottom: 0px;
    justify-content: space-around;
  }
}
.menu_flex_osusume .inner {
  flex-basis: 26%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}
.menu_flex_osusume .inner .image {
  align-items: initial;
  text-align: center;
  flex-basis: 100%;
}
@media screen and (max-width: 599px) {
  .menu_flex_osusume .inner {
    flex-basis: 43%;
    margin-bottom: 20px;
  }
}
.menu_flex_osusume .inner:nth-of-type(1) img {
  width: auto;
  height: 80px;
  margin-bottom: 40px;
  margin-top: 40px;
}
@media screen and (max-width: 599px) {
  .menu_flex_osusume .inner:nth-of-type(1) img {
    width: auto;
    height: 40px;
    margin-bottom: 15px;
    margin-top: 15px;
  }
}
.menu_flex_osusume .inner:nth-of-type(2) img {
  width: auto;
  height: 100px;
  margin-bottom: 30px;
  margin-top: 30px;
}
@media screen and (max-width: 599px) {
  .menu_flex_osusume .inner:nth-of-type(2) img {
    width: auto;
    height: 60px;
    margin-bottom: 10px;
    margin-top: 0px;
  }
}
.menu_flex_osusume .inner:nth-of-type(3) img {
  width: auto;
  height: 140px;
}
@media screen and (max-width: 599px) {
  .menu_flex_osusume .inner:nth-of-type(3) img {
    width: auto;
    height: 70px;
    margin-bottom: 0px;
    margin-top: 0px;
  }
}
.menu_flex_osusume .inner:nth-of-type(4) img {
  width: auto;
  height: 80px;
  margin-bottom: 40px;
  margin-top: 40px;
}
@media screen and (max-width: 599px) {
  .menu_flex_osusume .inner:nth-of-type(4) img {
    width: auto;
    height: 40px;
    margin-bottom: 15px;
    margin-top: 15px;
  }
}
.menu_flex_osusume .inner:nth-of-type(5) img {
  width: auto;
  height: 140px;
}
@media screen and (max-width: 599px) {
  .menu_flex_osusume .inner:nth-of-type(5) img {
    width: auto;
    height: 70px;
    margin-bottom: 0px;
    margin-top: 0px;
  }
}
.menu_flex_osusume .inner:nth-of-type(6) img {
  width: auto;
  height: 80px;
  margin-bottom: 40px;
  margin-top: 40px;
}
@media screen and (max-width: 599px) {
  .menu_flex_osusume .inner:nth-of-type(6) img {
    width: auto;
    height: 40px;
    margin-bottom: 15px;
    margin-top: 15px;
  }
}
.menu_flex_osusume .inner:nth-of-type(n + 4) {
  margin-bottom: 0px;
}
@media screen and (max-width: 599px) {
  .menu_flex_osusume .inner:nth-of-type(n + 4) {
    margin-bottom: 20px;
  }
}
.menu_flex_osusume .inner img {
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .menu_flex_osusume .inner img {
    margin-bottom: 20px;
  }
}
.menu_flex_osusume .inner h4 {
  font-size: 18px;
  font-family: "ヒラギノ明朝 ProN", "HiraMinProN-W6", "HG明朝E", "MS P明朝", "MS PMincho", "MS 明朝", serif;
  flex-basis: 100%;
  line-height: 1.5em;
}
@media screen and (max-width: 599px) {
  .menu_flex_osusume .inner h4 {
    font-size: 14px;
  }
}
.menu_flex_osusume .inner p {
  font-size: 14px;
}
.menu_flex_osusume .inner span {
  display: inline-block;
  font-size: 14px;
  padding: 8px 20px;
  border: 1px solid #222222;
  margin: 40px 0 25px 0;
}

.shop_table {
  width: 100%;
}
@media screen and (max-width: 599px) {
  .shop_table {
    width: 87%;
    margin: 0 auto 60px;
  }
}
.shop_table tr th,
.shop_table tr td {
  padding: 20px;
  line-height: 1.5em;
  letter-spacing: 1px;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 599px) {
  .shop_table tr th,
  .shop_table tr td {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  .shop_table tr th {
    border-bottom: none;
    padding-bottom: 0px;
  }
}
.shop_table tr a {
  text-decoration: underline;
  color: #0000ff;
}
.shop_table iframe {
  width: 100%;
}
@media screen and (max-width: 599px) {
  .shop_table iframe {
    aspect-ratio: 1/1;
    height: 100%;
  }
}

.publish_banner {
  margin: 60px 0 100px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 599px) {
  .publish_banner {
    flex-direction: column;
    margin: 16px 0 60px;
    margin-left: -10px;
    gap: 16px;
    width: 100vw;
  }
}
.publish_banner a {
  flex: 1 1 33.3333333333%;
  max-width: 33.3333333333%;
  transition: opacity 0.3s;
}
.publish_banner a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 599px) {
  .publish_banner a {
    flex: 1 1 100%;
    max-width: 100%;
    margin: 0 auto;
  }
}
.publish_banner a img {
  max-width: 100%;
  height: auto;
  box-shadow: 4px 4px 12px 4px rgba(219, 222, 223, 0.4);
}

.other-servise {
  margin-bottom: 200px;
}
@media screen and (max-width: 599px) {
  .other-servise {
    margin-bottom: 100px;
  }
}
.other-servise .container {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .other-servise .container {
    width: 100%;
    padding: 0 10px;
  }
}
.other-servise h2 {
  margin-bottom: 20px !important;
}
.other-servise .banner-wrap {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .other-servise .banner-wrap {
    gap: 5px;
    width: 100vw;
    margin-left: -10px;
  }
}
.other-servise .img-box {
  max-width: 350px;
  box-shadow: 4px 4px 12px 4px rgba(219, 222, 223, 0.4);
}
@media screen and (max-width: 599px) {
  .other-servise .img-box {
    width: calc(50% - 2.5px);
    margin: 0 auto;
  }
}
.other-servise .img-box img {
  width: 100%;
}
.other-servise p {
  font-size: 14px;
}
@media screen and (max-width: 599px) {
  .other-servise p {
    font-size: 12px;
  }
}
@media screen and (max-width: 599px) {
  .other-servise p span {
    font-size: 12px;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 599px) {
  .other-servise p span.big {
    font-size: 16px;
  }
}

/*************************************************
common-style
*************************************************/
* {
  box-sizing: border-box;
}

.ie_ObjectFit {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

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;
}

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;
}

p {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.75em;
  margin-bottom: 15px;
}

@media screen and (max-width: 599px) {
  p {
    font-size: 15px;
  }
}
.scroll {
  opacity: 0; /* 最初は非表示 */
  transform: translateY(30px); /* 下に30pxの位置から */
  transition: opacity 0.6s, transform 0.6s; /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.scroll.active {
  opacity: 1; /* 表示領域に入ったら表示 */
  transform: translateY(0); /* 30px上に移動する */
  transition-delay: 0.3s; /* フェード開始を0.5秒遅らせる */
}

.is_pc {
  display: block;
}

@media screen and (max-width: 599px) {
  .is_pc {
    display: none;
  }
}
.is_sp {
  display: none;
}

@media screen and (max-width: 599px) {
  .is_sp {
    display: block;
  }
}
.obj-fit {
  aspect-ratio: 1/1;
}

.obj-fit img {
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.btn_big {
  text-align: center;
  width: 100%;
}

.btn_big a {
  display: block;
  background-color: #b19f8c;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
  position: relative;
  transition: 0.3s;
}

.btn_big a {
  color: #fff;
  background-color: #b19f8c;
  display: inline-block;
  padding: 15px 0px;
  border: 1px solid #b19f8c;
  font-size: 16px;
  width: 100%;
  text-align: center;
  transition: 0.6s;
}

@media screen and (max-width: 599px) {
  .btn_big a {
    width: 84%;
    margin-left: 0px;
    margin: 0 auto;
  }
}
.btn_big a:hover {
  background-color: #fff;
  color: #b19f8c;
}

@media screen and (max-width: 599px) {
  .text_inner {
    width: 84%;
    margin-left: auto;
    margin-right: auto;
  }
}
.floating-menu {
  display: none;
}

@media screen and (max-width: 599px) {
  .floating-menu {
    display: flex;
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 999;
  }
}
.floating-menu .left,
.floating-menu .right {
  width: 50%;
  aspect-ratio: 4/1;
  background-color: #c3c3c3;
  padding: 10px 0;
}

.floating-menu .left a,
.floating-menu .right a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "ヒラギノ明朝 ProN", "HiraMinProN-W6", "HG明朝E", "MS P明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 14px;
  letter-spacing: 2px;
  color: #fff;
}

.floating-menu .left a img,
.floating-menu .right a img {
  width: 30px;
  margin-bottom: 5px;
}

.floating-menu .left a {
  border-right: 1px solid #fff;
}

.video {
  width: 100%;
}

/*************************************************
subpage
*************************************************/
.wrapper_sub_kv {
  width: 100%;
  height: 400px;
  background-image: url(images/kv_subpage.jpg);
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 599px) {
  .wrapper_sub_kv {
    background-position: center;
    height: 50vh;
  }
}
.wrapper_sub_kv .container {
  padding-left: 5%;
}
@media screen and (max-width: 599px) {
  .wrapper_sub_kv .container {
    padding-left: 10px;
  }
}
.wrapper_sub_kv .container .logo {
  width: 170px;
}
@media screen and (max-width: 599px) {
  .wrapper_sub_kv .container .logo {
    width: 20%;
  }
}
.wrapper_sub_kv .container .logo img {
  width: 100%;
  height: auto;
}
.wrapper_sub_kv .container .kv_cacth {
  font-family: "ヒラギノ明朝 ProN", "HiraMinProN-W6", "HG明朝E", "MS P明朝", "MS PMincho", "MS 明朝", serif;
  position: absolute;
  top: 40%;
  left: 5%;
}
.wrapper_sub_kv .container .kv_cacth h3 {
  font-size: 30px;
  line-height: 55px;
  letter-spacing: 2px;
  font-weight: 300;
  margin-bottom: 20px;
}
.wrapper_sub_kv .container .kv_cacth p {
  font-size: 18px;
  letter-spacing: 2px;
  padding: 10px 15px;
  background-color: #fff;
  display: table;
  margin-bottom: 0px;
}
.wrapper_sub_kv h2 {
  font-family: "ヒラギノ明朝 ProN", "HiraMinProN-W6", "HG明朝E", "MS P明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 18px;
  letter-spacing: 2px;
  padding-left: 70px;
  position: relative;
  margin-top: 70px;
}
@media screen and (max-width: 599px) {
  .wrapper_sub_kv h2 {
    margin-top: 140px;
  }
}
.wrapper_sub_kv h2 span {
  font-family: letter-gothic-std, monospace !important;
  font-weight: 200;
  font-style: normal;
  font-size: 36px;
  display: block;
  margin-bottom: 15px;
  letter-spacing: 0px;
  position: relative;
}
.wrapper_sub_kv h2 span:before {
  position: absolute;
  content: "";
  background-color: #000;
  width: 40px;
  height: 1px;
  left: -70px;
  top: 50%;
}
.wrapper_sub_kv h1 {
  padding: 10px 20px;
  background-color: #fff;
  text-align: right;
  display: inline-block;
  font-size: 14px;
  letter-spacing: 2px;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 599px) {
  .wrapper_sub_kv h1 {
    font-size: 12px;
  }
}

.pankuzu {
  width: 1280px;
  margin: 0 auto;
  padding: 15px 0;
}
@media screen and (max-width: 599px) {
  .pankuzu {
    width: 100%;
    padding: 0 10px;
    margin-top: 20px;
  }
}
.pankuzu ul {
  display: flex;
}
@media screen and (max-width: 599px) {
  .pankuzu ul {
    justify-content: flex-end;
  }
}
.pankuzu ul li {
  margin-left: 10px;
  font-size: 12px;
  letter-spacing: 1px;
}
.pankuzu ul li:after {
  content: " > ";
}
.pankuzu ul li:last-child:after {
  content: none;
}
.pankuzu ul li a {
  text-decoration: underline;
}

main.subpage h2 {
  font-family: letter-gothic-std, monospace;
  font-weight: 400;
  font-style: normal;
  font-size: 36px;
  color: #B19F8C;
  position: relative;
  padding-left: 50px;
  margin-bottom: 35px;
}
@media screen and (max-width: 599px) {
  main.subpage h2 {
    font-size: 34px;
    margin-bottom: 25px;
  }
}
main.subpage h2:after {
  position: absolute;
  content: "";
  background-color: #B19F8C;
  width: 40px;
  height: 1px;
  left: 0;
  top: 50%;
}
@media screen and (max-width: 599px) {
  main.subpage h2:after {
    width: 30px;
  }
}
main.subpage h3 {
  font-family: "ヒラギノ明朝 ProN", "HiraMinProN-W6", "HG明朝E", "MS P明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 24px;
  line-height: 2em;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.wrapper_sub01 {
  padding: 100px 0;
  position: relative;
}
@media screen and (max-width: 599px) {
  .wrapper_sub01 {
    padding: 60px 0;
  }
}
.wrapper_sub01:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 1px;
  content: "";
  background-color: #a89582;
}
.wrapper_sub01 .container {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .wrapper_sub01 .container {
    width: 100%;
    padding: 0 10px;
  }
}
@media screen and (max-width: 599px) {
  .wrapper_sub01 .txt {
    width: 90%;
    margin: 0 auto 14px;
  }
}
@media screen and (max-width: 599px) {
  .wrapper_sub01 .menu_flex_lip,
  .wrapper_sub01 .menu_flex_eyeline {
    margin-top: 30px;
  }
}

#eybrows .txt {
  margin-bottom: 40px;
}

.price_wrapper {
  padding: 60px;
  border: 2px solid #ccc;
  margin: 100px 0;
  position: relative;
}
@media screen and (max-width: 599px) {
  .price_wrapper {
    padding: 20px 10px;
    margin: 60px 0;
  }
}
.price_wrapper h5 {
  font-size: 26px;
  text-align: center;
  position: absolute;
  left: 50%;
  top: -20px;
  transform: translateX(-50%);
  background-color: #fff;
  padding: 0 20px;
  width: 70%;
  font-weight: bold;
}
.price_wrapper h5 span {
  display: block;
  font-size: 14px;
  padding-top: 5px;
}

.lips_h5 {
  width: 34% !important;
}

.price_table {
  width: 100%;
  margin: 20px 0;
}
@media screen and (max-width: 599px) {
  .price_table {
    margin: 20px 0;
    margin-top: 40px;
  }
}
@media screen and (max-width: 599px) {
  .price_table tr {
    border-bottom: 1px solid #b2b2b2;
  }
}
.price_table tr th,
.price_table tr td {
  padding: 28px;
  font-family: "ヒラギノ明朝 ProN", "HiraMinProN-W6", "HG明朝E", "MS P明朝", "MS PMincho", "MS 明朝", serif;
  letter-spacing: 1px;
}
@media screen and (max-width: 599px) {
  .price_table tr th,
  .price_table tr td {
    padding: 10px;
    vertical-align: middle;
  }
}
.price_table tr th {
  width: 28%;
  font-size: 20px;
  border-bottom: 1px solid #b2b2b2;
}
@media screen and (max-width: 599px) {
  .price_table tr th {
    border-bottom: none;
    background-color: #f5f5f5;
    font-size: 14px;
    width: 32%;
  }
}
.price_table tr td {
  font-size: 18px;
  border-bottom: 1px solid #ccc;
  padding: 28px 40px;
}
@media screen and (max-width: 599px) {
  .price_table tr td {
    padding: 8px;
    border: none;
    font-size: 16px;
  }
}
.price_table tr td span {
  font-size: 14px;
}
@media screen and (max-width: 599px) {
  .price_table tr td span {
    font-size: 13px;
    line-height: 1.3em;
  }
}
.price_table tr .block {
  display: block;
  margin-top: 10px;
}
@media screen and (max-width: 599px) {
  .price_table tr .block {
    margin-top: 5px;
  }
}
@media screen and (max-width: 599px) {
  .price_table tr .block_sp {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  .price_table tr .border_none {
    width: 40%;
    font-size: 14px;
  }
}
@media screen and (max-width: 599px) {
  .price_table tr .table_title_sp {
    background-color: initial;
    font-size: 16px;
    background-color: #999999;
    color: #fff;
    text-align: center;
  }
}

@media screen and (max-width: 599px) {
  .price_table_set tr:nth-of-type(2) td:nth-of-type(2) {
    padding: 8px 0;
  }
}

@media screen and (max-width: 599px) {
  .sp_border_none {
    border-bottom: none !important;
  }
}

.cp_banner {
  margin: 60px 0;
}
@media screen and (max-width: 599px) {
  .cp_banner {
    margin: 16px 0;
    margin-left: -10px;
    width: 100vw;
  }
}
.cp_banner a {
  transition: opacity 0.3s;
}
.cp_banner a:hover {
  opacity: 0.7;
}
.cp_banner img {
  width: 100%;
  box-shadow: 4px 4px 12px 4px rgba(219, 222, 223, 0.4);
}

@media screen and (max-width: 599px) {
  .point {
    margin-bottom: 60px;
  }
}
.point h5 {
  font-family: letter-gothic-std, monospace !important;
  font-weight: 200;
  font-style: normal;
  font-size: 36px;
  color: #b19f8c;
  margin-bottom: 15px;
}
.point .text {
  margin-left: 30px;
  padding: 30px;
  border-left: 1px solid #222;
}
@media screen and (max-width: 599px) {
  .point .text {
    margin-left: 10px;
    padding: 20px;
  }
}
.point .text h6 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 28px;
  font-family: "ヒラギノ明朝 ProN", "HiraMinProN-W6", "HG明朝E", "MS P明朝", "MS PMincho", "MS 明朝", serif;
  letter-spacing: 1px;
}
@media screen and (max-width: 599px) {
  .point .text h6 {
    font-size: 18px;
  }
}

.wrapper_sub02 {
  padding: 100px 0;
  position: relative;
}
@media screen and (max-width: 599px) {
  .wrapper_sub02 {
    padding: 60px 0;
  }
}
.wrapper_sub02:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 1px;
  content: "";
  background-color: #a89582;
}
.wrapper_sub02 .container {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .wrapper_sub02 .container {
    width: 100%;
    padding: 0 10px;
  }
}

.flow_area {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .flow_area {
    justify-content: space-between;
  }
}
.flow_area .inner {
  flex-basis: 30%;
  position: relative;
  margin-right: 5%;
  margin-bottom: 55px;
}
@media screen and (max-width: 599px) {
  .flow_area .inner {
    flex-basis: 84%;
    margin-right: 0px;
    margin-bottom: 20px;
    margin: 0 auto;
    margin: 0 auto;
  }
}
.flow_area .inner:nth-of-type(3n) {
  margin-right: 0px;
}
@media screen and (max-width: 599px) {
  .flow_area .inner:nth-of-type(3n) {
    margin: 0 auto;
  }
}
.flow_area .inner .image {
  position: relative;
  margin-bottom: 20px;
}
.flow_area .inner .image img {
  width: 100%;
}
.flow_area .inner .image h6 {
  color: #a89582;
  width: 100%;
  padding: 10px;
  font-family: "ヒラギノ明朝 ProN", "HiraMinProN-W6", "HG明朝E", "MS P明朝", "MS PMincho", "MS 明朝", serif;
  letter-spacing: 1px;
  text-align: center;
  font-size: 20px;
}
.flow_area .inner .image span {
  font-family: baskerville-display-pt, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 50px;
  color: #a89582;
  display: block;
  text-align: center;
  position: relative;
}
.flow_area .inner .image span:before {
  position: absolute;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #a89582;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -2;
}
.flow_area .inner .image span:after {
  position: absolute;
  width: 100px;
  height: 60px;
  content: "";
  background-color: #f5f5f5;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.flow_area .inner .text {
  margin-bottom: 30px;
}

.wrapper_sub03 {
  padding: 100px 0;
  position: relative;
}
@media screen and (max-width: 599px) {
  .wrapper_sub03 {
    padding: 60px 0;
  }
}
.wrapper_sub03:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 1px;
  content: "";
  background-color: #a89582;
}
.wrapper_sub03 .container {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .wrapper_sub03 .container {
    width: 100%;
    padding: 0 10px;
  }
}

.faq_area .list {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.75em;
  margin-bottom: 10px;
  font-size: 16px;
}
@media screen and (max-width: 599px) {
  .faq_area .list {
    font-size: 14px;
  }
}
.faq_area .list .q,
.faq_area .list .a {
  padding: 20px 30px;
}
@media screen and (max-width: 599px) {
  .faq_area .list .q,
  .faq_area .list .a {
    padding: 15px;
    padding-right: 25px;
  }
}
.faq_area .list .q {
  border: 1px solid #222;
  cursor: pointer;
  position: relative;
}
.faq_area .list .q:before {
  position: absolute;
  width: 16px;
  height: 1px;
  content: "";
  background-color: #222;
  right: 40px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 599px) {
  .faq_area .list .q:before {
    width: 10px;
    right: 20px;
  }
}
.faq_area .list .q:after {
  position: absolute;
  width: 16px;
  height: 1px;
  content: "";
  background-color: #222;
  right: 29px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
@media screen and (max-width: 599px) {
  .faq_area .list .q:after {
    width: 10px;
    right: 13px;
  }
}
.faq_area .list .a {
  display: none;
  background: #f5f5f5;
}

.wrapper_sub04 {
  padding: 100px 0;
  position: relative;
}
@media screen and (max-width: 599px) {
  .wrapper_sub04 {
    padding: 60px 0;
  }
}
.wrapper_sub04:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 1px;
  content: "";
  background-color: #a89582;
}
.wrapper_sub04 .container {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .wrapper_sub04 .container {
    width: 100%;
    padding: 0 10px;
  }
}
@media screen and (max-width: 599px) {
  .wrapper_sub04 .txt {
    width: 84%;
    margin: 0 auto 15px;
  }
}

.wrapper_sub05 {
  padding: 100px 0;
}
@media screen and (max-width: 599px) {
  .wrapper_sub05 {
    padding: 60px 0;
  }
}
.wrapper_sub05 .container {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .wrapper_sub05 .container {
    width: 100%;
    padding: 0 10px;
  }
}

.sns_text {
  font-size: 14px;
  text-align: center;
  padding: 8px 20px;
  border: 1px solid #222;
  margin-bottom: 35px;
}

.sns_area {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 599px) {
  .sns_area {
    gap: 0px;
    flex-wrap: nowrap;
  }
}
.sns_area .inner {
  flex-basis: 30%;
  padding: 40px;
}
@media screen and (max-width: 599px) {
  .sns_area .inner {
    flex-basis: auto;
    width: 33.3333333333%;
    margin-bottom: 10px;
    height: 100%;
    padding: 10px;
  }
}
.sns_area .inner .icon {
  text-align: center;
  margin-bottom: 10px;
}
.sns_area .inner .icon img {
  width: 60px;
  height: auto;
}
.sns_area .inner h6 {
  color: #fff;
  font-size: 20px;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 8px;
  position: relative;
}
@media screen and (max-width: 599px) {
  .sns_area .inner h6 {
    font-size: 16px;
  }
}
.sns_area .inner p {
  color: #fff;
  font-size: 16px;
  letter-spacing: 1px;
  text-align: center;
}
.sns_area .inner .btn {
  text-align: center;
}
.sns_area .inner .btn a {
  display: block;
  border-radius: 60px;
  background-color: #fff;
  padding: 15px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  position: relative;
  transition: 0.3s;
}
.sns_area .inner .btn a:before {
  position: absolute;
  width: 16px;
  height: 1px;
  content: "";
  background-color: #222;
  right: 10px;
  top: 40%;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}
.sns_area .inner .btn a:after {
  position: absolute;
  width: 16px;
  height: 1px;
  content: "";
  background-color: #222;
  right: 10px;
  top: 61%;
  transform: translateY(-50%) rotate(-45deg);
  transition: 0.3s;
}
.sns_area .inner .btn a:hover:before {
  right: 40px;
}
.sns_area .inner .btn a:hover:after {
  right: 40px;
}
.sns_area .line {
  background-color: #12b92a;
}
.sns_area .insta {
  background: rgb(246, 255, 0);
  background: linear-gradient(241deg, rgb(246, 255, 0) 0%, rgb(255, 0, 161) 100%);
}
.sns_area .email {
  background: linear-gradient(241deg, #00f2fe 0%, #4facfe 100%);
}

.slider {
  width: 100%;
}

.slider img {
  width: 100%;
  /*スライダー内の画像を横幅100%に*/
  height: auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider .slick-slide {
  margin: 0px;
}

@media screen and (max-width: 599px) {
  .small_ttl {
    font-size: 18px !important;
    margin-bottom: 20px !important;
    background: #f5f5f5;
    padding: 8px;
    display: inline-block;
  }
}

.menu_flex_subpage {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media screen and (max-width: 599px) {
  .menu_flex_subpage {
    flex-wrap: wrap;
    width: 90%;
    margin: 60px auto 40px;
  }
}
.menu_flex_subpage .inner {
  flex-basis: 26%;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .menu_flex_subpage .inner {
    flex-basis: 100%;
    margin-bottom: 20px;
    justify-content: space-between;
  }
}
@media screen and (max-width: 599px) {
  .menu_flex_subpage .inner:last-child {
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 599px) {
  .menu_flex_subpage .inner .text {
    flex-basis: 55%;
  }
}
@media screen and (max-width: 599px) {
  .menu_flex_subpage .inner .image {
    flex-basis: 40%;
  }
}
.menu_flex_subpage .inner img {
  width: 100%;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .menu_flex_subpage .inner img {
    margin-bottom: 20px;
  }
}
.menu_flex_subpage .inner h4 {
  font-size: 18px;
  font-family: "ヒラギノ明朝 ProN", "HiraMinProN-W6", "HG明朝E", "MS P明朝", "MS PMincho", "MS 明朝", serif;
  position: relative;
  padding-left: 23px;
  flex-basis: 100%;
}
@media screen and (max-width: 599px) {
  .menu_flex_subpage .inner h4 {
    font-size: 16px;
  }
}
.menu_flex_subpage .inner h4:after {
  position: absolute;
  content: "";
  background-color: #000;
  width: 13px;
  height: 1px;
  left: 0;
  top: 50%;
}
.menu_flex_subpage .inner p {
  font-size: 14px;
}
.menu_flex_subpage .inner span {
  display: inline-block;
  font-size: 14px;
  padding: 8px 20px;
  border: 1px solid #222222;
  margin: 40px 0 25px 0;
}
@media screen and (max-width: 599px) {
  .menu_flex_subpage .inner span {
    margin: 20px 0 10px;
  }
}

.widht_100 {
  flex-basis: 100% !important;
}

.lip_title {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (max-width: 599px) {
  .lip_title {
    margin-bottom: 20px;
    font-weight: bold;
  }
}

.lip_kajou li {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 12px;
  line-height: 1.5em;
}

.kirakira_bg {
  background-image: url(images/kirakira_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.gray_bg {
  background-color: #f5f5f5;
}

.nav_sns_icon .mail {
  margin-left: 20px;
}

@media screen and (max-width: 599px) {
  .wrapper_sub01 {
    padding: 31px 0;
  }
  .wrapper_sub01:first-of-type {
    padding-top: 60px;
  }
  .wrapper_sub01 .small_ttl {
    display: block;
    width: 84%;
    text-align: center;
    margin: 0 auto 20px !important;
  }
  main.subpage h2 {
    font-size: 28px;
  }
  .small_ttl {
    font-size: 15px !important;
    margin-bottom: 0px !important;
  }
  .shop_table tr td {
    padding: 11px;
  }
  .shop_table tr th {
    font-size: 16px;
    padding: 11px;
    padding-bottom: 0;
  }
  .shop_table {
    font-size: 13px;
  }
  .wrapper_sub04 {
    padding: 60px 0;
  }
  .wrapper_sub05 {
    padding: 31px 0;
  }
  .wrapper_sub04 .container p {
    width: 84%;
    margin: 0 auto 15px;
    font-size: 13px;
  }
  .wrapper_sub04 .container .small_ttl {
    display: block;
    width: 84%;
    text-align: center;
    margin: 0 auto 20px !important;
  }
}
.price_wrapper br {
  display: none;
}
@media screen and (max-width: 599px) {
  .price_wrapper br {
    display: block;
  }
}

.eye-brows_text {
  font-family: "ヒラギノ明朝 ProN", "HiraMinProN-W6", "HG明朝E", "MS P明朝", "MS PMincho", "MS 明朝", serif;
  letter-spacing: 1px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .eye-brows_text {
    font-size: 11px;
  }
}

.links-container {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .links-container {
    width: 100%;
    padding: 0 10px;
  }
}
@media screen and (max-width: 599px) {
  .links-container a {
    font-size: 15px;
  }
}

.anker-links {
  display: flex;
  gap: 20px;
  margin-top: 60px;
}
@media screen and (max-width: 599px) {
  .anker-links {
    width: 100%;
    margin: 40px auto 0;
    flex-wrap: wrap;
    gap: 10px;
  }
}
.anker-links li {
  width: calc(25% - 15px);
  aspect-ratio: 4/1;
  border: 1px solid #b19f8c;
  transition: all 0.3s;
}
@media screen and (max-width: 599px) {
  .anker-links li {
    width: calc(50% - 5px);
  }
}
.anker-links li:hover {
  border: 1px solid #000;
}
.anker-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  letter-spacing: 2px;
  color: #b19f8c;
  transition: all 0.3s;
}
.anker-links a:hover {
  background-color: #000;
  color: #fff;
}

#cp-banner_anchor {
  scroll-margin-top: 40px;
}
@media screen and (max-width: 599px) {
  #cp-banner_anchor {
    scroll-margin-top: 80px;
  }
}

#cp-banner_ikumou .onayami {
  width: 50%;
  margin: 0 auto 40px;
}
@media screen and (max-width: 599px) {
  #cp-banner_ikumou .onayami {
    width: 100%;
  }
}
#cp-banner_ikumou .onayami img {
  width: 100%;
}
#cp-banner_ikumou .point .text p span {
  color: #f00;
}
#cp-banner_ikumou .point .flex {
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 599px) {
  #cp-banner_ikumou .point .flex {
    flex-direction: column;
    gap: 0;
  }
}
#cp-banner_ikumou .case_wrap {
  margin-top: 40px;
}
#cp-banner_ikumou .case_wrap h2 {
  margin-bottom: 20px;
}
#cp-banner_ikumou .case_slider .img-box {
  margin-right: 15px;
}
@media screen and (max-width: 599px) {
  #cp-banner_ikumou .case_slider .img-box {
    margin-right: 0;
  }
}
#cp-banner_ikumou .case_slider .img-box img {
  width: 100%;
  height: 100%;
}
#cp-banner_ikumou .slick-dots {
  left: 50%;
  transform: translateX(-50%);
}
#cp-banner_ikumou .slick-dots li button::before {
  font-size: 12px;
}