@charset "UTF-8";
/*
Theme Name: Aliy
*/
/*========= header ===============*/
#header {
  color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  z-index: 999;
}
#header .hd_flex {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
  box-sizing: border-box;
  padding-top: 10px;
}
#header .hd_flex .hd_logo .hd_logo a {
  display: flex;
  align-items: center;
}
#header .hd_flex .hd_logo img {
  display: block;
  width: 120px;
}
#header .hd_flex .hd_nav {
  display: flex;
  gap: 50px;
}
#header .hd_flex .hd_nav ul {
  display: flex;
  gap: 50px;
}
#header .hd_flex .hd_nav ul li {
  line-height: 35px;
}
#header .hd_flex .hd_nav ul li a {
  color: #fff;
  position: relative;
  padding-bottom: 5px;
  font-family: "Outfit", sans-serif;
}
#header .hd_flex .hd_nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: #fff;
  border-radius: 10px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
#header .hd_flex .hd_nav ul li a:hover::after {
  transform: scaleX(1);
}
#header .hd_flex .hd_nav .hd_contact {
  display: flex;
  width: 150px;
  height: 30px;
  padding: 0 10px;
  border-radius: 8px;
  border: solid 2px #fff;
}
#header .hd_flex .hd_nav .hd_contact .contact_btn {
  position: relative;
  z-index: 10;
}
#header .hd_flex .hd_nav .hd_contact a {
  color: #fff;
  font-family: "Outfit", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
#header .hd_flex .hd_nav .hd_contact a img {
  width: 24px;
  margin-right: 10px;
}
#header .hd_flex .hd_nav .side_btn .btn_line, #header .hd_flex .hd_nav .side_btn .btn_insta, #header .hd_flex .hd_nav .side_btn .btn_hpb {
  position: fixed;
  top: 100px;
  left: auto;
  right: 0;
  background-color: #a48669;
  width: 40px;
  height: 70px;
  border-radius: 6px 0 0 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  z-index: 999;
  max-width: 100%;
}
#header .hd_flex .hd_nav .side_btn .btn_line .btn_txt, #header .hd_flex .hd_nav .side_btn .btn_insta .btn_txt, #header .hd_flex .hd_nav .side_btn .btn_hpb .btn_txt {
  color: #fff;
  font-family: "Outfit", sans-serif;
  transform: rotate(90deg);
  line-height: 30px;
}
#header .hd_flex .hd_nav .side_btn .btn_line img, #header .hd_flex .hd_nav .side_btn .btn_insta img, #header .hd_flex .hd_nav .side_btn .btn_hpb img {
  width: 26px;
  height: 26px;
  -o-object-fit: contain;
     object-fit: contain;
  transform: rotate(90deg);
  margin-bottom: 10px;
}
#header .hd_flex .hd_nav .side_btn .btn_insta {
  position: fixed;
  top: 230px;
  left: auto;
  right: 0;
  height: 120px;
  max-width: 100%;
}
#header .hd_flex .hd_nav .side_btn .btn_insta .btn_txt {
  padding-left: 50px;
}
#header .hd_flex .hd_nav .side_btn .btn_hpb {
  position: fixed;
  top: 410px;
  left: auto;
  right: 0;
  height: 200px;
  max-width: 100%;
}
#header .hd_flex .hd_nav .side_btn .btn_hpb .btn_txt {
  padding-left: 130px;
  white-space: nowrap;
}

#g-nav {
  display: none;
}

.sp_hd_nav, .openbtn {
  display: none;
}

/*========= header 1280位下表示 ===============*/
@media (max-width: 1280px) {
  #header {
    padding: 10px 20px;
  }
  #header .hd_flex .hd_logo img {
    width: 100px;
  }
}
/*========= header スマホ表示 ===============*/
@media (max-width: 767px) {
  #header {
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
    overflow-x: hidden;
    max-width: 100%;
  }
  #header .hd_flex {
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  #header .hd_flex .hd_logo img {
    width: 70px;
  }
  #header .hd_flex .hd_nav {
    display: none;
  }
  .sp_hd_nav, .openbtn {
    display: block;
  }
  /* ハンバーガーメニュー */
  #g-nav {
    display: block;
    position: fixed;
    z-index: -1;
    opacity: 0;
    top: 0;
    right: 0;
    width: 60%;
    height: 100vh;
    background-color: #a48669;
    transition: all 0.3s;
    pointer-events: none;
    box-sizing: border-box;
  }
  #g-nav.panelactive {
    opacity: 0.9;
    z-index: 999;
    pointer-events: auto;
  }
  #g-nav ul {
    display: none;
    z-index: 999;
    padding: 0;
    margin-bottom: 30px;
  }
  #g-nav.panelactive ul {
    display: block;
  }
  #g-nav li {
    text-align: center;
  }
  #g-nav li a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .openbtn {
    position: fixed;
    z-index: 9999;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 12px;
    height: 2px;
    border-radius: 2px;
    background-color: #fff;
    width: 45%;
  }
  .openbtn.active span:nth-of-type(1) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(2) {
    top: 18px;
    left: 5px;
    transform: translateY(6px) rotate(-35deg);
    width: 70%;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 5px;
    transform: translateY(-6px) rotate(35deg);
    width: 70%;
  }
  .openbtn .line {
    display: block;
    height: 1.5px;
    border-radius: 2px;
    background-color: #fff;
    width: 80%;
    position: absolute;
  }
  .openbtn .line:nth-of-type(1) {
    top: 0;
  }
  .openbtn .line:nth-of-type(2) {
    top: 25px;
    left: 0;
  }
  .openbtn .line:nth-of-type(3) {
    top: 33px;
    left: 0;
  }
  .menu-text {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 12.5px;
    padding: 2px 5px;
    background: none !important;
    font-family: "Outfit", sans-serif;
  }
  #g-nav .sp_hd_nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-bottom: 50px;
  }
  #g-nav .sp_hd_nav .hd_contact {
    display: flex;
    width: 110px;
    height: 30px;
    padding: 0 10px;
    border-radius: 8px;
    border: solid 2px #fff;
    margin: 0 auto;
    margin-bottom: 50px;
  }
  #g-nav .sp_hd_nav .hd_contact .contact_btn {
    color: #fff;
    display: flex;
    align-items: center;
  }
  #g-nav .sp_hd_nav .hd_contact .contact_btn img {
    width: 26px;
    margin-right: 10px;
  }
  #g-nav .sp_hd_nav .side_btn {
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    gap: 15px;
  }
  #g-nav .sp_hd_nav .side_btn .btn_line img, #g-nav .sp_hd_nav .side_btn .btn_insta img {
    width: 35px;
  }
}
/*========= main ===============*/
.main_visual {
  width: 100%;
  height: calc(100vh + 100px);
  overflow: hidden;
  margin-bottom: 100px;
}
.main_visual .slider {
  width: 100%;
  margin: 0 auto;
  z-index: -1;
}
.main_visual .slider .slider-item {
  font-size: 0;
  width: 100%;
  height: 100vh;
}
.main_visual .slider .slider-item img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.main_visual .slider .add-animation {
  -webkit-animation: zoomUp 10s linear 0s normal both;
          animation: zoomUp 10s linear 0s normal both;
}
.main_visual .main_cach {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 1200px;
  width: 100%;
}
.main_visual .main_cach .main_cach_txt {
  display: flex;
  margin-bottom: 30px;
}
.main_visual .main_cach .main_cach_txt .a, .main_visual .main_cach .main_cach_txt .b {
  color: #fff;
  z-index: 1;
  font-size: 50px;
  line-height: 50px;
  letter-spacing: 10px;
  padding-right: 10px;
  font-family: "Zen Old Mincho", serif;
}
.main_visual .main_cach .main_cach_txt .b {
  margin-left: -15px;
}
.main_visual .main_cach .main_cach_txt .c {
  font-size: 26px;
  color: #fff;
  letter-spacing: 6px;
  padding-left: 0;
  line-height: 2;
}
.main_visual .wave {
  position: absolute;
  top: auto;
  bottom: -101px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  overflow: hidden;
  margin: 0;
}
.main_visual .wave img {
  width: 100%;
}
.main_visual .wave.sp_wave {
  display: none;
}

.slider-pagination {
  display: flex;
  margin-top: 20px;
  position: absolute;
  top: auto;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1200px;
  width: 100%;
}
.slider-pagination .slide-dots {
  list-style: none;
  padding: 0;
  margin: 0;
}
.slider-pagination .slide-dots button {
  font-size: 0;
}
.slider-pagination .slide-dots li {
  display: inline-block;
  margin: 0 5px;
}
.slider-pagination .slide-dots li button {
  background-color: #fff;
  border: none;
  border-radius: 2px;
  width: 50px;
  height: 2px;
  padding: 0;
  cursor: pointer;
}
.slider-pagination .slide-dots li.slick-active button {
  background-color: #a48669;
}

.slick-list {
  overflow: auto !important;
  height: calc(100vh + 100px);
}

.slick-track {
  height: calc(100vh + 100px);
}

.slick-slide {
  height: calc(100vh + 100px);
  background-size: cover;
}

.slider-item img {
  height: calc(100vh + 100px) !important;
}

@media screen and (max-width: 1280px) {
  .main_visual .main_cach {
    padding-left: 5%;
  }
  .main_visual .main_cach p {
    font-size: 20px;
  }
  .slider-pagination {
    padding-left: 5%;
    top: auto;
    bottom: 10%;
  }
  .slider-pagination .slide-dots li button {
    width: 40px;
  }
}
@media (max-width: 767px) {
  .main_visual {
    height: 700px;
    margin-bottom: 0 !important;
  }
  .main_visual .main_cach {
    width: 100%;
    position: absolute;
    top: 250px;
    padding: 0 5%;
    box-sizing: border-box;
  }
  .main_visual .main_cach .main_cach_txt {
    display: block;
  }
  .main_visual .main_cach .main_cach_txt .a, .main_visual .main_cach .main_cach_txt .b {
    font-size: 28px;
  }
  .main_visual .main_cach .main_cach_txt .a {
    padding-left: 0;
  }
  .main_visual .main_cach .main_cach_txt .b {
    padding-left: 12px;
  }
  .main_visual .main_cach .main_cach_txt .c {
    font-size: 14px;
    color: #fff;
    letter-spacing: 6px;
    padding-left: 0;
  }
  .main_visual .wave {
    display: none;
  }
  .main_visual .wave.sp_wave {
    display: block;
    position: absolute;
    top: 650px;
    left: 50%;
    bottom: auto;
    transform: translateX(-50%);
    width: 100%;
    margin: 0;
  }
  .main_visual .wave.sp_wave img {
    width: 100%;
    max-width: 100%;
    display: block;
  }
  .slider-pagination {
    max-width: 100%;
    padding-left: 5%;
    top: 580px;
    bottom: auto;
    box-sizing: border-box;
  }
  .slider-pagination .slide-dots li button {
    width: 40px;
  }
}
@-webkit-keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@media (min-width: 767px) {
  .slider.sp_slider {
    display: none;
  }
  .sp_slider-pagination.slider-pagination {
    display: none;
  }
}
@media (max-width: 767px) {
  .slider.pc_slider {
    display: none;
  }
  .slider.sp_slider {
    display: block;
  }
  .pc_slider-pagination.slider-pagination {
    display: none;
  }
  .sp_slider-pagination.slider-pagination {
    display: block;
  }
  .slide-dots li {
    margin: 0 3px;
  }
  .slide-dots li button {
    width: 35px;
  }
  .slick-list {
    overflow: auto !important;
    height: 100vh;
  }
  .slick-track {
    height: 100vh;
  }
  .slick-slide {
    height: 100vh;
  }
  .slider-item img {
    height: 100% !important;
    overflow: hidden;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
/*========= 下層ページ sub visual ===============*/
.sub_visual {
  background: url(img/top/reservation_bg.png) no-repeat center/cover;
  width: 100%;
  height: 300px;
  position: relative;
}
.sub_visual .page_ttl {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.sub_visual .page_ttl span {
  font-size: 20px;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  white-space: nowrap;
}
.sub_visual .page_ttl.blog_p {
  text-align: center;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.sub_visual .page_ttl.blog_p span {
  font-size: 20px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  white-space: nowrap;
}

/*========= 下層ページ sub visual スマホ表示 ===============*/
@media (max-width: 767px) {
  .sub_visual {
    height: 150px;
  }
  .sub_visual .page_ttl .ttl_img {
    width: 100px;
  }
}
/*========= about ===============*/
.about {
  position: relative;
  margin-bottom: 100px;
}
.about .about_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about .about_wrap .about_img {
  margin-bottom: 50px;
}
.about .about_wrap .about_img img {
  width: 420px;
}
.about .about_wrap .about_contents {
  max-width: 700px;
  position: relative;
}
.about .about_wrap .about_contents .about_ttl {
  margin-bottom: 30px;
  position: relative;
  font-size: 38px;
  line-height: 55px;
}
.about .about_wrap .about_contents .about_ttl::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 430px;
  width: 200px;
  height: 95px;
  background: url(img/top/about.png) no-repeat center/cover;
  z-index: -1;
}
.about .bg01 {
  position: relative;
  top: 0;
  right: -500px;
  z-index: -10;
  margin-top: -200px;
}
.about .bg01 img {
  max-width: 1300px;
}
.about .back_txt {
  position: absolute;
  top: 20px;
  left: 0;
  color: #fff;
  font-family: "Hina Mincho", serif;
  font-weight: lighter;
  font-size: 400px;
  white-space: nowrap;
  flex-direction: row;
  gap: 20px;
  width: auto;
  margin: 0;
  -webkit-animation: scroll 400s linear infinite;
          animation: scroll 400s linear infinite;
  opacity: 0.5;
  z-index: -10;
  letter-spacing: -0.5rem;
}

/*========= about 1280px位下表示 ===============*/
@media (max-width: 1280px) {
  .about {
    margin-bottom: 0;
  }
  .about .about_wrap {
    padding: 0 5%;
    box-sizing: border-box;
  }
  .about .about_wrap .about_img {
    margin-right: 40px;
    margin-bottom: 90px;
  }
  .about .about_wrap .about_img img {
    max-width: 300px;
  }
  .about .about_wrap .about_contents .about_ttl {
    font-size: 32px;
    line-height: 50px;
    margin-bottom: 20px;
  }
  .about .about_wrap .about_contents .about_ttl::before {
    content: "";
    position: absolute;
    top: 0;
    left: 70%;
    width: 200px;
    height: 95px;
    background: url(img/top/about.png) no-repeat center center;
    background-size: cover;
    z-index: -1;
  }
}
@media (max-width: 930px) {
  .about .about_wrap .about_contents .about_ttl {
    font-size: 24px;
  }
}
/*========= about スマホ表示 ===============*/
@media (max-width: 767px) {
  .about {
    width: 100%;
    margin-bottom: 150px;
    position: relative;
    z-index: 10;
  }
  .about .about_wrap {
    flex-direction: column;
    padding: 50px 10% 0 10%;
  }
  .about .about_wrap .about_img {
    margin: 0;
  }
  .about .about_wrap .about_img img {
    width: 75%;
    margin: 0 auto;
    max-width: 75%;
  }
  .about .about_wrap .about_contents {
    max-width: 100%;
    padding-top: 30px;
  }
  .about .about_wrap .about_contents .about_ttl {
    font-size: 24px;
    line-height: 40px;
  }
  .about .about_wrap .about_contents .about_ttl::before {
    content: "";
    position: absolute;
    top: -85px;
    left: auto;
    right: -15px;
    width: 140px;
    height: 95px;
    background: url(img/top/about.png) no-repeat center center;
    background-size: contain;
    z-index: -1;
  }
  .about .bg01 {
    position: relative;
    top: 0;
    left: -650px;
    z-index: -10;
    margin-top: -250px;
    margin-left: -30px;
    width: 1000px;
    opacity: 0.5;
  }
  .about .back_txt {
    top: -100px;
    font-size: 300px;
  }
}
/*========= about 下層ページ ===============*/
.greeting {
  margin-bottom: 200px !important;
  position: relative;
  box-sizing: border-box;
}
.greeting .greeting_ttl {
  margin-bottom: 50px;
  position: relative;
}
.greeting .greeting_ttl span {
  position: absolute;
}
.greeting .greeting_wrap {
  display: flex;
  gap: 30px;
}
.greeting .greeting_wrap .greeting_img {
  width: 36%;
}
.greeting .greeting_wrap .greeting_img img {
  width: 100%;
}
.greeting .greeting_wrap .greeting_txt {
  width: 70%;
  line-height: 1.7;
  padding-top: 20px;
}
.greeting .back_txt {
  position: absolute;
  bottom: 80px;
  left: 0;
  color: #fff;
  font-family: "Hina Mincho", serif;
  font-weight: lighter;
  font-size: 400px;
  white-space: nowrap;
  flex-direction: row;
  gap: 20px;
  width: auto;
  margin: 0;
  -webkit-animation: scroll 400s linear infinite;
          animation: scroll 400s linear infinite;
  opacity: 0.5;
  z-index: -10;
  letter-spacing: -0.5rem;
}

.page_and_healthy .page_and_healthy_wrap {
  background-color: #D8CBBE;
  position: relative;
  padding: 0 5%;
  box-sizing: border-box;
}
.page_and_healthy .page_and_healthy_wrap .page_and_healthy_box {
  padding: 100px 0;
}
.page_and_healthy .page_and_healthy_wrap .page_and_healthy_box .page_and_healthy_ttl {
  margin-bottom: 50px;
  line-height: 1.8;
}
.page_and_healthy .page_and_healthy_wrap .page_and_healthy_box .ah_logo {
  position: absolute;
  top: 200px;
}
.page_and_healthy .page_and_healthy_wrap .page_and_healthy_box .ah_wrap {
  display: flex;
  gap: 50px;
  flex-direction: row-reverse;
  align-items: flex-end;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 150px !important;
}
.page_and_healthy .page_and_healthy_wrap .page_and_healthy_box .ah_wrap .ah_img01 {
  max-width: 350px;
}
.page_and_healthy .page_and_healthy_wrap .page_and_healthy_box .ah_wrap .ah_img02 {
  max-width: 700px;
  margin-bottom: 30px;
}
.page_and_healthy .page_and_healthy_wrap .page_and_healthy_box .ah_wrap .ah_txt {
  padding-bottom: 20px;
}
.page_and_healthy .page_and_healthy_wrap .page_and_healthy_box .ah_wrap .ah_txt span {
  font-size: 50px;
  padding: 0 20px;
  font-family: "Zen Old Mincho", serif;
}
.page_and_healthy .page_and_healthy_wrap .page_and_healthy_box .ah_wrap .ah_ba {
  max-width: 550px;
}
.page_and_healthy .page_and_healthy_wrap .page_and_healthy_box .ah_wrap .ah_recommend {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 50px 120px 50px 100px;
  border: solid 1px #fff;
  position: relative;
}
.page_and_healthy .page_and_healthy_wrap .page_and_healthy_box .ah_wrap .ah_recommend .ah_recommend_ttl {
  position: absolute;
  top: -22px;
  left: 30px;
  background-color: #D8CBBE;
  z-index: 10;
  padding: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 26px;
}
.page_and_healthy .page_and_healthy_wrap .page_and_healthy_box .ah_wrap .ah_recommend .ah_recommend_list {
  color: #8b7662;
}
.page_and_healthy .page_and_healthy_wrap .page_and_healthy_box .ah_wrap .ah_recommend .ah_recommend_list li {
  position: relative;
  padding-left: 30px;
}
.page_and_healthy .page_and_healthy_wrap .page_and_healthy_box .ah_wrap .ah_recommend .ah_recommend_list li::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 16px;
  height: 16px;
  background: url(img/about/icon_check.png) no-repeat center center;
  background-size: cover;
}
.page_and_healthy .page_and_healthy_wrap .ah_about {
  max-width: 1000px;
  margin: 0 auto;
}

.ah_voice_wrap {
  margin-bottom: 100px !important;
}
.ah_voice_wrap .ah_voice_ttl {
  margin-bottom: 50px;
  font-size: 40px;
  font-weight: lighter;
}
.ah_voice_wrap .ah_voice {
  display: flex;
  gap: 50px;
}
.ah_voice_wrap .ah_voice .ah_voice_list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.ah_voice_wrap .ah_voice .ah_voice_list li {
  width: 24%;
  padding: 24px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(168, 168, 168, 0.1);
  margin: 0 auto;
  box-sizing: border-box;
  border-radius: 140px 140px 0 0;
}
.ah_voice_wrap .ah_voice .ah_voice_list li .customer_detail {
  margin-bottom: 10px;
  padding: 50px 0 10px 0;
}
.ah_voice_wrap .ah_voice .ah_voice_list li .customer_detail span {
  font-size: 26px;
  font-family: "Zen Old Mincho", serif;
  padding-right: 10px;
}
.ah_voice_wrap .ah_voice .ah_voice_list li .voice_txt {
  padding: 20px 0;
}

/*========= about 下層ページ 1280px以下表示 ===============*/
@media (max-width: 1280px) {
  .greeting {
    padding: 0 5%;
  }
  .page_and_healthy .page_and_healthy_wrap .page_and_healthy_box .ah_wrap .ah_ba {
    max-width: 400px;
  }
  .page_and_healthy .page_and_healthy_wrap .page_and_healthy_box .ah_wrap .ah_recommend {
    padding: 30px 50px;
  }
}
/*========= about 下層ページ スマホ表示 ===============*/
@media (max-width: 767px) {
  .greeting {
    margin-bottom: 100px !important;
  }
  .greeting .greeting_ttl {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .greeting .greeting_wrap {
    display: block;
    padding: 0 5%;
  }
  .greeting .greeting_wrap .greeting_img {
    width: 70%;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .greeting .greeting_wrap .greeting_txt {
    width: 100%;
  }
  .greeting .back_txt {
    font-size: 300px;
    top: 0;
    bottom: auto;
  }
  .page_and_healthy .page_and_healthy_wrap .page_and_healthy_box .page_and_healthy_ttl {
    font-size: 24px;
  }
  .page_and_healthy .page_and_healthy_wrap .page_and_healthy_box .ah_wrap {
    padding: 0 5%;
    display: block;
    margin-bottom: 20px !important;
  }
  .page_and_healthy .page_and_healthy_wrap .page_and_healthy_box .ah_wrap .ah_img01 {
    width: 70%;
    max-width: 70%;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .page_and_healthy .page_and_healthy_wrap .page_and_healthy_box .ah_wrap .ah_img02 {
    margin-bottom: 10px;
  }
  .page_and_healthy .page_and_healthy_wrap .page_and_healthy_box .ah_wrap .ah_txt span {
    font-size: 30px;
    padding-left: 0;
  }
  .page_and_healthy .page_and_healthy_wrap .page_and_healthy_box .ah_wrap .ah_ba {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 50px;
  }
  .page_and_healthy .page_and_healthy_wrap .page_and_healthy_box .ah_wrap .ah_recommend {
    padding: 30px;
    margin-bottom: 100px;
  }
  .page_and_healthy .page_and_healthy_wrap .page_and_healthy_box .ah_wrap .ah_recommend .ah_recommend_ttl {
    font-size: 20px;
  }
  .ah_voice_wrap {
    overflow: hidden;
    margin-bottom: 50px !important;
  }
  .ah_voice_wrap .ah_voice_ttl {
    font-size: 24px;
  }
  .ah_voice_wrap .ah_voice {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
  }
  .ah_voice_wrap .ah_voice .ah_voice_list {
    gap: 0;
  }
  .ah_voice_wrap .ah_voice .ah_voice_list li {
    width: 240px;
    box-sizing: border-box;
    margin-left: 20px;
    box-sizing: border-box;
  }
  .ah_voice_wrap .ah_voice .ah_voice_list li .customer_detail {
    padding: 30px 0 0 0;
  }
  .ah_voice_wrap .ah_voice .ah_voice_list li .voice_txt {
    padding: 10px 0 0 0;
    line-height: 1.5;
  }
}
/*========= charm ===============*/
.charm {
  position: relative;
  z-index: 0;
  margin-bottom: 150px;
}
.charm .charm_wrap .charm_ttl {
  position: relative;
  z-index: 100;
  margin-bottom: 100px;
}
.charm .charm_wrap .charm_ttl::before {
  content: "";
  position: absolute;
  top: -55px;
  left: 680px;
  width: 200px;
  height: 95px;
  background: url(img/top/charm.png) no-repeat center/contain;
  z-index: -1;
}
.charm .charm_wrap .charm_list {
  margin: 0 auto;
}
.charm .charm_wrap .charm_list li {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  box-sizing: border-box;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.charm .charm_wrap .charm_list li .charm_txt {
  width: 600px;
}
.charm .charm_wrap .charm_list li .charm_txt .charm_subttl {
  font-size: 35px;
  font-weight: lighter;
  position: relative;
  margin-bottom: 30px;
  border-bottom: solid 1px #D9CDC4;
  padding-bottom: 30px;
}
.charm .charm_wrap .charm_list li .charm_img img {
  max-width: 480px;
}
.charm .bg02 {
  position: absolute;
  top: 800px;
  left: auto;
  right: 0;
  z-index: -10;
  margin-top: -200px;
  width: 1200px;
}
.charm .bg02 img {
  max-width: 1200px;
}

/*========= charm 1280px以下表示 ===============*/
@media (max-width: 1280px) {
  .charm {
    margin-top: 150px;
  }
  .charm .charm_wrap {
    padding: 0 5%;
    box-sizing: border-box;
  }
  .charm .charm_wrap .charm_ttl {
    margin-bottom: 50px;
  }
  .charm .charm_wrap .charm_ttl::before {
    width: 170px;
    left: 58%;
  }
  .charm .charm_wrap .charm_list .row-reverse .charm_txt {
    margin-right: 40px;
  }
  .charm .charm_wrap .charm_list .row .charm_img {
    margin-right: 40px;
  }
  .charm .charm_wrap .charm_list li {
    margin-bottom: 80px;
  }
  .charm .charm_wrap .charm_list li .charm_txt {
    max-width: 800px;
  }
  .charm .charm_wrap .charm_list li .charm_txt .charm_subttl {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .charm .charm_wrap .charm_list li .charm_txt .charm_subttl.no01::before, .charm .charm_wrap .charm_list li .charm_txt .charm_subttl.no02:before, .charm .charm_wrap .charm_list li .charm_txt .charm_subttl.no03:before {
    width: 70px;
    height: 70px;
    top: -30px;
  }
  .charm .bg02 {
    top: 700px;
  }
}
/*========= charm スマホ表示 ===============*/
@media (max-width: 767px) {
  .charm {
    margin-bottom: 100px;
  }
  .charm .charm_wrap {
    padding: 0 10%;
  }
  .charm .charm_wrap .charm_ttl::before {
    top: -55px;
    left: 56%;
    width: 140px;
    opacity: 0.8;
  }
  .charm .charm_wrap .charm_list .row-reverse .charm_txt {
    margin-right: 0;
  }
  .charm .charm_wrap .charm_list .row .charm_img {
    margin-right: 0;
  }
  .charm .charm_wrap .charm_list li {
    display: block;
    margin-bottom: 80px;
  }
  .charm .charm_wrap .charm_list li .charm_txt {
    margin-bottom: 50px;
    width: 100%;
  }
  .charm .charm_wrap .charm_list li .charm_txt .charm_subttl {
    font-size: 20px;
    padding-left: 0;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .charm .charm_wrap .charm_list li .charm_txt .charm_subttl.no01::before, .charm .charm_wrap .charm_list li .charm_txt .charm_subttl.no02:before, .charm .charm_wrap .charm_list li .charm_txt .charm_subttl.no03:before {
    width: 80px;
    height: 80px;
    top: -300px;
  }
  .charm .charm_wrap .charm_list li .charm_img {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .charm .charm_wrap .charm_list li .charm_img img {
    margin: 0 auto;
    width: 100%;
  }
  .charm .bg02 {
    bottom: 0;
    z-index: -1;
    opacity: 0.5;
  }
}
/*========= and_healthy ===============*/
.and_healthy {
  position: relative;
  margin-bottom: 150px;
}
.and_healthy .and_healthy_wrap {
  background-color: #D8CBBE;
  padding-bottom: 50px;
}
.and_healthy .and_healthy_wrap .and_healthy_box {
  box-sizing: border-box;
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}
.and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_img {
  margin-left: -50px;
}
.and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_img img {
  width: 580px;
}
.and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_contents {
  width: 600px;
  position: relative;
  margin-top: 50px;
}
.and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_contents .eyelash_text {
  position: absolute;
  top: -60px;
  right: -50px;
}
.and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_contents .eyelash_text img {
  max-width: 250px;
}
.and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_contents .contents_top .and_healthy_ttl {
  font-size: 50px;
  margin-bottom: 10px;
}
.and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_contents .contents_top .and_healthy_ttl span {
  font-size: 30px;
}
.and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_contents .contents_top .ttl_s {
  margin-bottom: 50px;
}
.and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_contents .contents_top .inline-container {
  display: flex;
  align-items: center;
}
.and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_contents .contents_top .inline-container .and_healthy_text {
  margin: 10px 10px 10px 0;
}
.and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_contents .contents_top .inline-container .and_healthy_text img {
  max-width: 350px;
}
.and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_contents .contents_bottom .before_after_box .before_after_txt {
  margin-bottom: 10px;
}
.and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_contents .contents_bottom .before_after_box .before_after_txt span {
  font-weight: bold;
}
.and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_contents .contents_bottom .before_after_box .before_after {
  display: inline-block;
  vertical-align: top;
  margin: 20px 0;
  max-width: 500px;
}

/*========= and_healthy 1280px以下表示 ===============*/
@media (max-width: 1280px) {
  .and_healthy .and_healthy_wrap {
    padding: 5%;
    box-sizing: border-box;
  }
  .and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_img {
    margin-left: -20px;
    margin-right: 30px;
  }
  .and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_img img {
    max-width: 500px;
  }
  .and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_contents .contents_top .and_healthy_ttl {
    font-size: 40px;
    margin-bottom: 30px;
  }
  .and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_contents .contents_top .and_healthy_ttl span {
    font-size: 24px;
  }
  .and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_contents .contents_top .inline-container .and_healthy_text {
    margin: 0 10px 0 0;
  }
  .and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_contents .contents_top .inline-container .and_healthy_text img {
    max-width: 350px;
  }
  .and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_contents .contents_bottom .before_after_box .before_after_txt {
    font-size: 13px;
  }
  .and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_contents .contents_bottom .before_after_box .before_after img {
    max-width: 410px;
  }
  .and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_contents .eyelash_text {
    top: -50px;
    right: 0;
  }
  .and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_contents .eyelash_text img {
    max-width: 220px;
  }
}
/*========= and_healthy 1150px以下表示 ===============*/
@media (max-width: 1150px) {
  .and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_contents .eyelash_text {
    top: -80px;
  }
  .and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_contents .eyelash_text img {
    max-width: 180px;
  }
}
/*========= and_healthy スマホ表示 ===============*/
@media (max-width: 950px) {
  .and_healthy {
    margin-bottom: 100px;
  }
  .and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_contents .eyelash_text {
    top: -80px;
  }
  .and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_contents .eyelash_text img {
    max-width: 180px;
  }
}
/*========= and_healthy スマホ表示 ===============*/
@media (max-width: 767px) {
  .and_healthy .and_healthy_wrap {
    padding: 30px 15px 80px 15px;
  }
  .and_healthy .and_healthy_wrap .and_healthy_box {
    display: block;
  }
  .and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_img {
    margin-left: auto;
  }
  .and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_img img {
    width: 90%;
    margin: 0 auto;
  }
  .and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_contents {
    width: 100%;
    margin-top: 120px;
    padding: 0 5%;
    box-sizing: border-box;
  }
  .and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_contents .eyelash_text {
    position: absolute;
    top: -110px;
    right: 0;
  }
  .and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_contents .eyelash_text img {
    max-width: 200px;
  }
  .and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_contents .contents_top .and_healthy_ttl {
    font-size: 40px;
    margin-bottom: 10px;
  }
  .and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_contents .contents_top .and_healthy_ttl span {
    font-size: 20px;
  }
  .and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_contents .contents_top .ttl_s {
    margin-bottom: 30px;
  }
  .and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_contents .contents_top .inline-container {
    display: block;
  }
  .and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_contents .contents_top .inline-container .and_healthy_text {
    margin: 0;
  }
  .and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_contents .contents_top .inline-container .and_healthy_text img {
    max-width: 100%;
  }
  .and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_contents .contents_bottom {
    text-align: left;
  }
  .and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_contents .contents_bottom .before_after_box .before_after_txt {
    font-size: 12.5px;
  }
  .and_healthy .and_healthy_wrap .and_healthy_box .and_healthy_contents .contents_bottom .before_after_box .before_after img {
    max-width: 100%;
  }
}
/*========= voice ===============*/
.voice {
  margin-bottom: 150px;
}
.voice .voice_wrap {
  position: relative;
  z-index: 0;
  padding-top: 100px;
}
.voice .voice_wrap .voice_ttl {
  position: relative;
  margin-bottom: 80px;
}
.voice .voice_wrap .voice_ttl::before {
  content: "";
  position: absolute;
  top: -70px;
  left: 54%;
  width: 200px;
  height: 150px;
  background: url(img/top/voice.png) no-repeat center/contain;
  z-index: -1;
}
.voice .voice_wrap .voice_list {
  display: flex;
}
.voice .voice_wrap .voice_list .swiper-slide {
  max-width: 400px;
  width: 100%;
  padding: 20px 20px 30px 20px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(168, 168, 168, 0.1);
  margin: 0 auto;
}
.voice .voice_wrap .voice_list .swiper-slide .customer {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.voice .voice_wrap .voice_list .swiper-slide .customer .customer_icon {
  margin-right: 10px;
}
.voice .voice_wrap .voice_list .swiper-slide .customer .customer_name {
  font-size: 26px;
  margin: 0 10px;
}
.voice .voice_wrap .voice_list .swiper-slide .customer .customer_name span {
  font-size: 16px;
}
.voice .voice_wrap .voice_list .swiper-slide .customer .customer_detail {
  padding-top: 5px;
}

.swiper_nav {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  margin-top: 20px;
  position: relative;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 100%;
  background: #8b7662;
  opacity: 0.2;
  margin: 4px;
}

.swiper-pagination {
  position: relative !important;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-button-next, .swiper-button-prev {
  color: #8b7662 !important;
}

:root {
  --swiper-navigation-size: 15px !important;
}

.swiper-pagination-bullet-active {
  background: #a48669 !important;
  opacity: 1 !important;
}

.swiper-slide {
  transition: transform 0.3s ease;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 100%;
  background: #8b7662;
  opacity: 0.2;
  margin: 4px;
  transition: background-color 0.5s ease; /* スムーズな移行 */
}

.swiper_nav_box {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 100px;
  margin: 0 auto;
  z-index: 10;
}

/*========= voice 1280px以下表示 ===============*/
@media (max-width: 1280px) {
  .voice {
    margin-bottom: 100px;
  }
  .voice .voice_wrap {
    padding: 0 5%;
    padding-top: 120px;
  }
  .voice .voice_wrap .voice_ttl::before {
    width: 170px;
    left: 57%;
  }
}
/*========= voice スマホ表示 ===============*/
@media (max-width: 767px) {
  .voice {
    box-sizing: border-box;
  }
  .voice .voice_wrap {
    padding-top: 80px;
  }
  .voice .voice_wrap .voice_ttl {
    margin-bottom: 50px;
  }
  .voice .voice_wrap .voice_ttl::before {
    width: 130px;
    top: -75px;
    opacity: 0.8;
  }
  .voice .voice_wrap .voice_list {
    display: flex;
    width: 100%;
  }
  .voice .voice_wrap .voice_list .swiper-slide {
    width: auto;
    max-width: 100%;
    padding: 20px 20px 30px 20px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(168, 168, 168, 0.1);
    box-sizing: border-box;
  }
  .voice .voice_wrap .voice_list .swiper-slide .customer {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  .voice .voice_wrap .voice_list .swiper-slide .customer .customer_icon {
    margin-right: 10px;
  }
  .voice .voice_wrap .voice_list .swiper-slide .customer .customer_name {
    font-size: 26px;
    margin: 0 10px;
  }
  .voice .voice_wrap .voice_list .swiper-slide .customer .customer_name span {
    font-size: 16px;
  }
  .voice .voice_wrap .voice_list .swiper-slide .customer .customer_detail {
    padding-top: 5px;
  }
  .swiper-slide {
    height: auto;
  }
  /* swiper-wrapper の調整 */
  .swiper-wrapper {
    width: 100%;
    box-sizing: border-box;
  }
  /* swiper-container の調整 */
  .swiper-container {
    width: 100%;
  }
}
/*========= gallery ===============*/
.gallery {
  box-sizing: border-box;
  position: relative;
  z-index: 0;
  margin-bottom: 100px;
}
.gallery .gallery_wrap .gallery_list {
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  gap: 40px;
  align-items: center;
}
.gallery .gallery_wrap .gallery_img {
  position: relative;
}
.gallery .gallery_wrap .bg_left::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 230px;
  height: 230px;
  background-color: #A48669;
  z-index: -1;
}
.gallery .gallery_wrap .bg_right::before {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 230px;
  height: 230px;
  background-color: #A48669;
  z-index: -1;
}
.gallery .gallery_wrap .mw200 {
  width: 200px;
}
.gallery .gallery_wrap .mw230 {
  width: 230px;
}
.gallery .gallery_wrap .mw280 {
  width: 280px;
}
.gallery .gallery_wrap .gallery_text {
  position: absolute;
  top: 200px;
  left: 66%;
  /* Keyframes for rotation */
}
.gallery .gallery_wrap .gallery_text img {
  width: 200px;
  -webkit-animation: rotate 20s linear infinite;
          animation: rotate 20s linear infinite;
}
@-webkit-keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.gallery .gallery_wrap .gallery_ttl {
  font-size: 30px;
  margin: 50px 0;
}
.gallery .bg02 {
  position: absolute;
  top: 300px;
  left: auto;
  right: 0;
  z-index: -10;
  margin-top: -200px;
  width: 1000px;
}
.gallery .bg02 img {
  max-width: 1000px;
}

/*========= gallery 1280px以下表示 ===============*/
@media (max-width: 1280px) {
  .gallery {
    padding: 0 5%;
    box-sizing: border-box;
  }
  .gallery .gallery_wrap .gallery_list {
    gap: 30px;
  }
  .gallery .gallery_wrap .mw200 {
    width: 120px;
  }
  .gallery .gallery_wrap .mw230 {
    width: 150px;
  }
  .gallery .gallery_wrap .mw280 {
    width: 190px;
  }
  .gallery .gallery_wrap .bg_left::before {
    width: 150px;
    height: 150px;
    top: -15px;
    left: -15px;
  }
  .gallery .gallery_wrap .bg_right::before {
    width: 150px;
    height: 150px;
    top: 15px;
    left: 15px;
  }
  .gallery .gallery_wrap .gallery_text {
    top: 120px;
  }
  .gallery .gallery_wrap .gallery_text img {
    width: 180px;
  }
}
/*========= gallery スマホ表示 ===============*/
@media (max-width: 767px) {
  .gallery {
    overflow: hidden;
    margin-bottom: 0 !important;
  }
  .gallery .gallery_wrap {
    padding-bottom: 100px;
  }
  .gallery .gallery_wrap .gallery_list {
    flex-direction: row;
    gap: 20px;
    width: auto;
    margin: 0;
    -webkit-animation: scroll 20s linear infinite;
            animation: scroll 20s linear infinite;
  }
  .gallery .gallery_wrap .fadeUp {
    -webkit-animation: none;
            animation: none;
    opacity: 1;
  }
  .gallery .gallery_wrap .mw200 {
    width: 150px;
  }
  .gallery .gallery_wrap .mw230 {
    width: 180px;
  }
  .gallery .gallery_wrap .mw280 {
    width: 200px;
  }
  .gallery .gallery_wrap .bg_left::before {
    width: 180px;
    height: 180px;
  }
  .gallery .gallery_wrap .bg_right::before {
    width: 180px;
    height: 180px;
  }
  .gallery .gallery_wrap .gallery_ttl {
    font-size: 24px;
    margin: 30px 0;
  }
  .gallery .gallery_wrap .gallery_text {
    top: 150px;
    left: 60%;
  }
  .gallery .gallery_wrap .gallery_text img {
    width: 150px;
  }
}
@-webkit-keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/*========= blog ===============*/
.blog {
  position: relative;
  z-index: 0;
  margin-bottom: 100px;
}
.blog .blog_wrap {
  position: relative;
  padding: 100px 0 50px 0;
  background-color: #D8CBBE;
}
.blog .blog_wrap .blog_ttl {
  position: relative;
  z-index: 10;
  margin-bottom: 80px;
}
.blog .blog_wrap .blog_ttl::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 150px;
  background: url(img/top/blog.png) no-repeat center/contain;
  z-index: -1;
}
.blog .blog_wrap .blog_list {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 5%;
}
.blog .blog_wrap .blog_list li {
  max-width: 250px;
}
.blog .blog_wrap .blog_list li .blog_img {
  max-width: 250px;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog .blog_wrap .blog_list li .blog_img img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog .blog_wrap .blog_list .blog_date {
  font-size: 15px;
}
.blog .blog_wrap .blog_list .blog_title {
  font-size: 16px;
  color: #8b7662;
  max-width: 250px;
}

/*========= blog 1280px位下表示 ===============*/
@media (max-width: 1280px) {
  .blog .blog_wrap {
    padding: 100px 5% 50px 5%;
    box-sizing: border-box;
  }
  .blog .blog_wrap .blog_list li {
    width: 22%;
  }
  .blog .blog_wrap .blog_list .blog_title {
    font-size: 16px;
    color: #8b7662;
  }
}
/*========= blog スマホ表示 ===============*/
@media (max-width: 767px) {
  .blog .blog_wrap {
    padding: 100px 5% 80px 5%;
  }
  .blog .blog_wrap .blog_ttl {
    margin-bottom: 50px;
  }
  .blog .blog_wrap .blog_ttl::before {
    width: 120px;
  }
  .blog .blog_wrap .blog_list {
    display: block;
    width: 100%;
  }
  .blog .blog_wrap .blog_list li {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    border-bottom: 1px dashed #e5ded7;
    padding-bottom: 10px;
  }
  .blog .blog_wrap .blog_list li .blog_container {
    display: flex;
    align-items: center;
  }
  .blog .blog_wrap .blog_list li .blog_container .blog_img {
    margin-right: 10px;
    height: 80px;
  }
  .blog .blog_wrap .blog_list li .blog_container .blog_img img {
    max-width: 80px;
    height: 80px;
  }
  .blog .blog_wrap .blog_list li .blog_container .txt_box .blog_date {
    font-size: 13px;
    line-height: 1;
    margin-bottom: 10px;
  }
  .blog .blog_wrap .blog_list .blog_date {
    font-size: 15px;
  }
  .blog .blog_wrap .blog_list .blog_title {
    font-size: 16px;
    color: #8b7662;
  }
}
/*========= blog 一覧ページ ===============*/
.blog_page .blog_wrap {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #F5F4F1;
}
.blog_page .blog_wrap .blog_list {
  flex-wrap: wrap;
}
.blog_page .blog_wrap .blog_list li {
  margin-bottom: 50px;
}
.blog_page .blog_wrap .blog_list li .blog_img {
  max-width: 250px;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

/*========= blog 一覧ページ スマホ表示 ===============*/
@media (max-width: 767px) {
  .blog_page .blog_wrap {
    padding: 0 5%;
  }
  .blog_page .blog_wrap .blog_list li {
    margin-bottom: 10px;
    height: 80px;
  }
  .blog_page .blog_wrap .blog_list li .blog_img {
    max-width: 80px;
    height: 80px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
/*========= blog 詳細ページ ===============*/
.blog.blog_page .blog_page_ttl {
  margin-bottom: 50px;
}
.blog.blog_page .blog_page_txt {
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 50px;
}
.blog.blog_page .blog_page_txt img {
  max-width: 500px;
  margin: 0 auto;
}

.back_button {
  margin-bottom: 50px;
}

.wp-pagenavi {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin: 40px auto;
  font-size: 12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a48669;
}

.wp-pagenavi a {
  color: #a48669;
}

.wp-pagenavi span.current,
.wp-pagenavi a.page {
  margin: 0 10px 0 0;
  border: solid 1px #eee;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  box-sizing: border-box;
  justify-content: center;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.wp-pagenavi span.current {
  border: none;
  background: #a48669;
  color: #fff;
}

.wp-pagenavi a.page {
  background: none;
}

.wp-pagenavi a.page:hover {
  background: #a48669;
  color: #fff;
}

.wp-pagenavi .first,
.wp-pagenavi .extend {
  margin-right: 10px;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  display: none;
}

/*========= blog 詳細ページ スマホ表示 ===============*/
@media (max-width: 767px) {
  .blog.blog_page {
    padding: 0 5%;
  }
  .blog.blog_page .blog_page_ttl {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .blog.blog_page .blog_page_txt {
    margin-bottom: 0px;
  }
}
/*========= Q&A ===============*/
.faq {
  margin-bottom: 150px;
}
.faq .faq_wrap .faq_ttl {
  position: relative;
  margin-bottom: 80px;
}
.faq .faq_wrap .faq_ttl::before {
  content: "";
  position: absolute;
  top: -70px;
  left: 65%;
  transform: translateX(-50%);
  width: 150px;
  height: 150px;
  background: url(img/top/q&a.png) no-repeat center/contain;
  z-index: -1;
}
.faq .faq_wrap .faq_box {
  margin-bottom: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.faq .faq_wrap .faq_box .question {
  background-color: #fff;
  width: 800px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 5px 20px;
  box-sizing: border-box;
}
.faq .faq_wrap .faq_box .question .cross_bar {
  width: 21px;
  height: 21px;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}
.faq .faq_wrap .faq_box .question .cross_bar::before {
  content: "";
  display: inline-block;
  width: 1.6px;
  height: 100%;
  background-color: #A48669;
  position: absolute;
  top: 0;
  left: 50%;
  transform-origin: center center;
  transform: translateX(-50%) rotate(0deg);
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.faq .faq_wrap .faq_box .question .cross_bar::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1.6px;
  background-color: #A48669;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.faq .faq_wrap .faq_box .question .question_ttl {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: lighter;
}
.faq .faq_wrap .faq_box .question span {
  color: #A48669;
  display: block;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  margin-right: 30px;
}
.faq .faq_wrap .faq_box .answer {
  display: none;
  padding: 10px 20px;
  background: #eae7e3;
  margin: 0;
  margin-top: 10px;
  width: 800px;
  box-sizing: border-box;
}
.faq .faq_wrap .faq_box .answer .answer_text {
  font-size: 16px;
  line-height: 26px;
}
.faq .faq_wrap .faq_box .answer span {
  color: #A48669;
  display: block;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  margin-right: 30px;
}
.faq .faq_wrap .faq_box .open .answer {
  display: block;
}
.faq .faq_wrap .faq_box .open .cross_bar::before {
  transform: translateX(-50%) rotate(90deg); /* 90度回転 */
}

/*========= voice 1280px以下表示 ===============*/
@media (max-width: 1280px) {
  .faq {
    margin-bottom: 130px;
  }
}
/*========= faq スマホ表示 ===============*/
@media (max-width: 767px) {
  .faq {
    margin-bottom: 50px !important;
  }
  .faq .faq_wrap {
    padding: 15px;
  }
  .faq .faq_wrap .faq_ttl {
    margin-bottom: 50px;
  }
  .faq .faq_wrap .faq_ttl::before {
    width: 110px;
    top: -70px;
    left: 75%;
    opacity: 0.8;
  }
  .faq .faq_wrap .faq_box {
    width: 100%;
  }
  .faq .faq_wrap .faq_box .question {
    width: 100%;
    padding: 10px 35px 10px 10px;
  }
  .faq .faq_wrap .faq_box .question .cross_bar {
    width: 16px;
    height: 16px;
    right: 15px;
  }
  .faq .faq_wrap .faq_box .question .question_ttl {
    font-size: 14px;
  }
  .faq .faq_wrap .faq_box .question span {
    font-size: 20px;
    margin-right: 10px;
  }
  .faq .faq_wrap .faq_box .answer {
    padding: 10px;
    width: 100%;
  }
  .faq .faq_wrap .faq_box .answer .answer_text {
    font-size: 14px;
  }
  .faq .faq_wrap .faq_box .answer span {
    font-size: 20px;
    margin-right: 10px;
  }
}
/*========= reservation ===============*/
.reservation {
  background: url(img/top/reservation_bg.png) no-repeat center center;
  background-size: cover;
  position: relative;
  width: 100%;
  height: 380px;
  z-index: 0;
  margin-bottom: 250px;
}
.reservation .reservation_wrap {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 50px;
  box-sizing: border-box;
  width: 1000px;
  margin: 0 auto;
}
.reservation .reservation_wrap .reservation_ttl {
  position: relative;
  z-index: 10;
  font-size: 35px;
  margin-bottom: 50px;
}
.reservation .reservation_wrap .reservation_txt {
  margin-bottom: 30px;
}
.reservation .reservation_wrap .reservation_ttl::before {
  content: "";
  position: absolute;
  border-bottom: 1px solid #A48669;
  top: 150%;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
}
.reservation .reservation_wrap .reservation_links {
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  gap: 30px;
}
.reservation .reservation_wrap .reservation_links .link_line, .reservation .reservation_wrap .reservation_links .link_hpb {
  display: block;
  background-color: #A48669;
  border-radius: 5px;
  padding: 5px 20px;
  width: 250px;
  margin: 0 auto;
}
.reservation .reservation_wrap .reservation_links .link_line .link_txt, .reservation .reservation_wrap .reservation_links .link_hpb .link_txt {
  display: block;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  padding-left: 20px;
}
.reservation .reservation_wrap .reservation_links .link_line .link_txt::before, .reservation .reservation_wrap .reservation_links .link_hpb .link_txt::before {
  content: "";
  background: url(img/cmn/icon_line.png);
  background-size: contain;
  position: absolute;
  top: 0;
  left: -20px;
  width: 30px;
  height: 30px;
}
.reservation .reservation_wrap .reservation_links .link_hpb .link_txt::before {
  content: "";
  background: url(img/cmn/icon_hpb.png);
  background-size: contain;
  position: absolute;
  top: 0;
  left: -20px;
  width: 30px;
  height: 30px;
}

/*========= voice 1280px以下表示 ===============*/
@media (max-width: 1280px) {
  .reservation {
    background-position: 78% 50%;
    height: 300px;
  }
  .reservation .reservation_wrap {
    width: 90%;
  }
  .reservation .reservation_wrap .reservation_ttl {
    margin-bottom: 30px;
  }
}
/*========= reservation スマホ表示 ===============*/
@media (max-width: 767px) {
  .reservation {
    background-size: cover;
    background-position: 78% 50%;
    height: 420px;
    margin-bottom: 100px;
  }
  .reservation .reservation_wrap {
    width: 90%;
    top: 50%;
    padding: 30px;
  }
  .reservation .reservation_wrap .reservation_ttl {
    font-size: 30px;
    margin-bottom: 20px;
    margin-bottom: 50px;
  }
  .reservation .reservation_wrap .reservation_txt {
    margin-bottom: 30px;
  }
  .reservation .reservation_wrap .reservation_links {
    flex-direction: column;
    gap: 20px;
  }
  .reservation .reservation_wrap .reservation_links .link_line, .reservation .reservation_wrap .reservation_links .link_hpb {
    display: block;
    background-color: #A48669;
    border-radius: 5px;
    padding: 5px 20px;
    width: 220px;
    margin: 0 auto;
  }
  .reservation .reservation_wrap .reservation_links .link_line .link_txt, .reservation .reservation_wrap .reservation_links .link_hpb .link_txt {
    display: block;
    color: #fff;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    position: relative;
    padding-left: 20px;
  }
  .reservation .reservation_wrap .reservation_links .link_line .link_txt::before, .reservation .reservation_wrap .reservation_links .link_hpb .link_txt::before {
    content: "";
    background: url(img/cmn/icon_line.png) no-repeat center/contain;
    position: absolute;
    top: 0;
    left: -20px;
    width: 30px;
    height: 30px;
  }
  .reservation .reservation_wrap .reservation_links .link_hpb .link_txt::before {
    content: "";
    background: url(img/cmn/icon_hpb.png) no-repeat center/contain;
    position: absolute;
    top: 0;
    left: -20px;
    width: 30px;
    height: 30px;
  }
}
/*========= links ===============*/
.links {
  display: flex;
  margin-bottom: 200px;
}
.links .link_about {
  width: 50%;
  height: 400px;
  background: url(img/top/btn_bg01.png) no-repeat center/cover;
  position: relative;
}
.links .link_menu {
  width: 50%;
  height: 400px;
  background: url(img/top/btn_bg02.png) no-repeat center/cover;
  position: relative;
}
.links .links_ttl {
  color: #fff;
  font-size: 30px;
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.links .links_ttl::before {
  content: "";
  position: absolute;
  border-bottom: 1px solid #fff;
  top: 150%;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
}

/*=========links 1280px以下表示 ===============*/
@media (max-width: 1280px) {
  .links .link_about, .links .link_menu {
    height: 300px;
  }
}
/*========= links スマホ表示 ===============*/
@media (max-width: 767px) {
  .links {
    margin-bottom: 150px;
  }
  .links .link_about {
    height: 150px;
    background-size: cover;
  }
  .links .link_menu {
    height: 150px;
    background-size: cover;
  }
  .links .links_ttl {
    font-size: 18px;
    white-space: nowrap;
  }
  .links .links_ttl::before {
    top: 100%;
    width: 40px;
  }
}
/*========= information ===============*/
.info {
  margin-bottom: 200px;
}
.info .info_ttl {
  position: relative;
  z-index: 0;
  margin-bottom: 80px;
}
.info .info_ttl::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 65%;
  transform: translateX(-50%);
  width: 300px;
  height: 200px;
  background: url(img/top/information.png) no-repeat center/contain;
  z-index: -1;
}
.info .info_wrap {
  display: flex;
  gap: 30px;
  box-sizing: border-box;
}
.info .info_wrap .info_table {
  width: 50%;
}
.info .info_wrap .info_table th {
  width: 20%;
  font-weight: bold;
  text-align: left;
  vertical-align: top;
  border-bottom: 1.5px solid #c5a68a;
  padding: 10px;
  color: #8b7662;
}
.info .info_wrap .info_table td {
  font-weight: lighter;
  vertical-align: top;
  border-bottom: 1.5px solid #ddd;
  padding: 10px;
  color: #8b7662;
}
.info .info_wrap .info_table td span {
  font-size: 20px;
  margin-right: 10px;
  font-family: "Outfit", sans-serif;
}
.info .info_wrap .map {
  width: 50%;
}

/*========= about 1280px位下表示 ===============*/
@media (max-width: 1280px) {
  .info {
    padding: 0 5%;
    box-sizing: border-box;
  }
  .info .info_ttl {
    margin-bottom: 50px;
  }
  .info .info_ttl::before {
    top: -70px;
    left: 68%;
    width: 250px;
    height: 150px;
  }
  .info .info_wrap {
    display: block;
  }
  .info .info_wrap .info_table {
    margin-bottom: 50px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 50px;
  }
  .info .info_wrap .info_table th {
    width: 25%;
  }
  .info .info_wrap .info_table td {
    width: 75%;
  }
  .info .info_wrap .map {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    height: 300px;
  }
}
/*========= information スマホ表示 ===============*/
@media (max-width: 767px) {
  .info {
    margin-bottom: 150px;
  }
  .info .info_ttl {
    margin-bottom: 30px;
  }
  .info .info_ttl::before {
    top: -80px;
    left: 65%;
    width: 220px;
    height: 150px;
  }
  .info .info_wrap {
    display: block;
  }
  .info .info_wrap .info_table {
    margin-bottom: 50px;
    width: 100%;
  }
  .info .info_wrap .info_table th {
    width: 60px;
    min-width: 60px;
  }
  .info .info_wrap .info_table td {
    width: 75%;
  }
  .info .info_wrap .map {
    width: 100%;
    height: 300px;
  }
}
/*========= menu ===============*/
.menu {
  margin-bottom: 200px !important;
}
.menu .menu_ttl {
  position: relative;
  background-color: #F5F4F1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px;
  margin: 0 auto;
  line-height: 60px;
  z-index: 10;
}
.menu .menu_ttl span {
  font-size: 14px;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  white-space: nowrap;
}
.menu .menu_list {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}
.menu .menu_list.last {
  margin-bottom: 0 !important;
}
.menu .maintxt {
  margin-bottom: 50px;
}
.menu .benefits_box {
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 30px;
  margin: 0 auto;
}
.menu .menu_benefits {
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 50px;
}
.menu .menu_wrap {
  display: flex;
  padding: 80px 50px 50px 50px;
  box-sizing: border-box;
  border: solid 1px #cfb8a3;
  position: relative;
  top: -50px;
  align-items: center;
}
.menu .menu_wrap .eyelash_detail_wrap {
  display: flex;
  align-items: center;
  width: 50%;
}
.menu .menu_wrap .eyelash_detail_wrap .eyelash_img {
  width: 60%;
  margin-right: 30px;
}
.menu .menu_wrap .eyelash_detail_wrap .eyelash_img img {
  max-width: 250px;
}
.menu .menu_wrap .eyelash_detail_wrap .eyelash_detail {
  width: 50%;
}
.menu .menu_wrap .eyelash_detail_wrap .eyelash_detail .star {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: left;
  color: #8b7662;
  border-bottom: solid 1px #8b7662;
  padding-bottom: 10px;
}
.menu .menu_wrap .eyelash_detail_wrap .eyelash_detail .star tr th {
  width: 50%;
  font-weight: lighter;
}
.menu .menu_wrap .eyelash_detail_wrap .eyelash_detail .star tr td {
  width: 50%;
  text-align: right;
}
.menu .menu_wrap .eyelash_detail_wrap .eyelash_detail_txt {
  padding-top: 10px;
}
.menu .menu_wrap .table_box {
  max-width: 500px;
}
.menu .menu_wrap .w40 {
  width: 45%;
}
.menu .menu_wrap .lashlift_img img {
  max-width: 250px;
  margin: 0 auto;
}
.menu .menu_wrap .comment {
  font-weight: bold;
  margin-bottom: 30px;
  font-family: "Zen Old Mincho", serif;
}
.menu .menu_wrap .comment .underline {
  text-decoration: underline;
  -webkit-text-decoration-style: dotted;
          text-decoration-style: dotted;
  -webkit-text-decoration-color: #b43e3e;
          text-decoration-color: #b43e3e;
}
.menu .menu_wrap .comment .red {
  font-size: 18px;
  color: #b43e3e;
}
.menu .menu_wrap .other_price tr th, .menu .menu_wrap .other_price tr td {
  text-align: right;
  padding: 0;
  white-space: nowrap;
  color: #8b7662;
}
.menu .menu_wrap .other_price tr th {
  text-align: left;
  padding-right: 30px;
}
.menu .menu_wrap .w60 {
  width: 55%;
}
.menu .menu_wrap .eyelash_kinds {
  font-size: 20px;
  margin-bottom: 10px;
}
.menu .menu_wrap .menu_list {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 50px;
}
.menu .menu_wrap .menu_list tr th, .menu .menu_wrap .menu_list tr td {
  text-align: center;
  font-weight: lighter;
  line-height: 1.2;
}
.menu .menu_wrap .menu_list tr th {
  background-color: #A48669;
  color: #fff;
  font-size: 16px;
  width: 33.3333333333%;
}
.menu .menu_wrap .menu_list tr td {
  color: #8b7662;
  padding: 10px;
  font-size: 18px;
}
.menu .menu_wrap .menu_list tr td span {
  font-size: 14px;
}
.menu .menu_wrap .menu_list tr .red {
  color: #b43e3e;
}
.menu .menu_wrap .menu_list.mb30 {
  margin-bottom: 30px !important;
}
.menu .menu_wrap .menu_txt {
  margin-bottom: 30px;
}
.menu .menu_wrap .and_healthy_img img {
  max-width: 250px;
  margin: 0 auto;
}
.menu .menu_wrap .eyelash_box {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 50px;
}
.menu .menu_wrap .eyelash_box .table_box {
  width: 50%;
  max-width: 500px;
}
.menu .menu_wrap .eyelash_box .eyelash_detail_wrap {
  display: flex;
  align-items: center;
  width: 50%;
}
.menu .menu_wrap .eyelash_box .eyelash_detail_wrap .eyelash_img {
  width: 45%;
  margin-right: 30px;
}
.menu .menu_wrap .eyelash_box .eyelash_detail_wrap .eyelash_img img {
  max-width: 250px;
}
.menu .menu_wrap .eyelash_box .eyelash_detail_wrap .eyelash_detail {
  width: 55%;
}
.menu .menu_wrap .eyelash_box .eyelash_detail_wrap .eyelash_detail .star {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: left;
  color: #8b7662;
  border-bottom: solid 1px #8b7662;
  padding-bottom: 10px;
}
.menu .menu_wrap .eyelash_box .eyelash_detail_wrap .eyelash_detail .star tr th {
  width: 50%;
  font-weight: lighter;
}
.menu .menu_wrap .eyelash_box .eyelash_detail_wrap .eyelash_detail .star tr td {
  width: 50%;
  text-align: right;
}
.menu .menu_wrap .eyelash_box .eyelash_detail_wrap .eyelash_detail_txt {
  padding-top: 10px;
}
.menu .eyelash_box.row-reverse {
  flex-direction: row-reverse;
}
.menu .menu_wrap.column {
  flex-direction: column;
  gap: 50px;
}
.menu .lashlift {
  margin-bottom: 50px;
}
.menu .menu_ah {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  margin-bottom: 50px;
}
.menu .menu_ah .menu_ah_bg .menu_wrap .eyelash_text {
  position: absolute;
  max-width: 200px;
  top: 100px;
  right: 50px;
}

.goods {
  position: relative;
  margin-bottom: 200px;
}
.goods .goods_ttl {
  position: relative;
  margin-bottom: 80px;
}
.goods .goods_ttl::before {
  content: "";
  position: absolute;
  top: -110px;
  left: 46%;
  width: 210px;
  height: 200px;
  background: url(img/menu/lineup.png) no-repeat center/contain;
  z-index: -1;
}
.goods .goods_wrap .goods_txt {
  margin-bottom: 50px;
}
.goods .goods_wrap .goods_box {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.goods .goods_wrap .goods_box li {
  width: 30%;
}
.goods .goods_wrap .goods_box li .goods_img {
  margin-bottom: 30px;
}
.goods .goods_wrap .goods_box li .goods_img img {
  max-width: 300px;
  max-height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
.goods .goods_wrap .goods_box li .goods_name {
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.2;
}
.goods .goods_wrap .goods_box li .goods_detail {
  text-align: center;
}
.goods .bg02 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

/*========= menu スマホ表示 ===============*/
@media (max-width: 767px) {
  .menu {
    padding: 0 5%;
  }
  .menu .menu_wrap {
    padding: 100px 20px 50px 20px;
    display: block;
  }
  .menu .menu_wrap .w40 {
    width: 100%;
  }
  .menu .menu_wrap .w40 .lashlift_img {
    margin-bottom: 20px;
  }
  .menu .menu_wrap .w40 .lashlift_img img {
    max-width: 150px;
  }
  .menu .menu_wrap .w60 {
    width: 100%;
  }
  .menu .menu_wrap .eyelash_box {
    display: block;
  }
  .menu .menu_wrap .eyelash_box .table_box {
    width: 100%;
    margin-bottom: 20px;
  }
  .menu .menu_wrap .eyelash_box .eyelash_detail_wrap {
    width: 100%;
  }
  .menu .menu_wrap .eyelash_box .eyelash_detail_wrap .eyelash_detail .star, .menu .menu_wrap .eyelash_box .eyelash_detail_wrap .eyelash_detail .eyelash_detail_txt {
    font-size: 13px;
  }
  .menu .menu_wrap .eyelash_box .eyelash_detail_wrap .star tr th, .menu .menu_wrap .eyelash_box .eyelash_detail_wrap .star tr td {
    line-height: 1.5;
  }
  .menu .menu_wrap .eyelash_box .eyelash_detail_wrap .eyelash_img {
    margin-right: 20px;
  }
  .menu .menu_wrap .menu_list {
    margin-bottom: 20px;
  }
  .menu .menu_wrap .menu_list tr th, .menu .menu_wrap .menu_list tr td {
    font-size: 14px;
    padding: 10px 5px;
  }
  .menu .maintxt {
    text-align: left !important;
  }
  .menu .benefits_box {
    display: block;
    max-width: 250px;
  }
  .menu .benefits_box .menu_benefits {
    margin-bottom: 20px;
  }
  .menu .lashlift {
    margin-bottom: 0;
  }
  .goods {
    padding: 0 5%;
    margin-bottom: 100px !important;
  }
  .goods .goods_ttl::before {
    width: 130px;
    top: -100px;
    left: 45%;
  }
  .goods .goods_txt {
    text-align: left;
  }
  .goods .goods_wrap .goods_box {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
  }
  .goods .goods_wrap .goods_box li {
    width: 45%;
    max-width: 45%;
    margin-bottom: 50px;
  }
  .goods .goods_wrap .goods_box li .goods_name {
    margin-bottom: 10px;
  }
  .goods .goods_wrap .goods_box li .goods_img img {
    max-width: 150px;
    max-height: 250px;
    -o-object-fit: contain;
       object-fit: contain;
    margin: 0 auto;
  }
  .goods .bg02 {
    width: 1200px;
  }
}
/*========= contact ===============*/
.page_reservation {
  background-size: cover;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 380px;
  z-index: 0;
  padding: 0 5%;
  box-sizing: border-box;
}
.page_reservation .reservation_wrap {
  background-color: #fff;
  padding: 50px;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  border: solid 1px #be9e80;
}
.page_reservation .reservation_wrap .reservation_ttl {
  position: relative;
  z-index: 10;
  font-size: 35px;
  margin-bottom: 50px;
}
.page_reservation .reservation_wrap .reservation_ttl::before {
  content: "";
  position: absolute;
  border-bottom: 1px solid #A48669;
  top: 150%;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
}
.page_reservation .reservation_wrap .reservation_txt {
  margin-bottom: 30px;
}
.page_reservation .reservation_wrap .reservation_links {
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  gap: 30px;
}
.page_reservation .reservation_wrap .reservation_links .link_line, .page_reservation .reservation_wrap .reservation_links .link_hpb {
  display: block;
  background-color: #A48669;
  border-radius: 5px;
  padding: 5px 20px;
  width: 250px;
  margin: 0 auto;
}
.page_reservation .reservation_wrap .reservation_links .link_line .link_txt, .page_reservation .reservation_wrap .reservation_links .link_hpb .link_txt {
  display: block;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  padding-left: 20px;
}
.page_reservation .reservation_wrap .reservation_links .link_line .link_txt::before, .page_reservation .reservation_wrap .reservation_links .link_hpb .link_txt::before {
  content: "";
  background: url(img/cmn/icon_line.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: -20px;
  width: 30px;
  height: 30px;
}
.page_reservation .reservation_wrap .reservation_links .link_hpb .link_txt::before {
  content: "";
  background: url(img/cmn/icon_hpb.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: -20px;
  width: 30px;
  height: 30px;
}

.contact_txt {
  margin-bottom: 30px;
}

.container {
  margin-bottom: 100px !important;
  padding: 0 5%;
  box-sizing: border-box;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.sub-contact .table02 {
  border: none;
}

.must {
  font-style: normal;
  color: #fff;
  padding: 1px 5px 2px;
  font-size: 13px;
  font-weight: bold;
  margin-left: 10px;
}

.formRow {
  margin-bottom: 0;
  row-gap: 0;
}

.formTh {
  line-height: 1.7;
  background: #a48669;
  color: #fff;
  padding: 10px;
  font-size: 16px;
  width: 30%;
  box-sizing: border-box;
  display: flex;
}

.label_ttl {
  color: #fff;
}

.formTd {
  line-height: 1.7;
  background: #f7f7f7;
  padding: 10px;
  font-size: 16px;
  width: 70%;
  box-sizing: border-box;
}

.formTd input[type=text],
.formTd input[type=tel],
.formTd input[type=email],
.formTd textarea {
  padding: 5px 10px;
  background: #fff;
  border: 1px solid #eee;
  box-sizing: border-box;
  width: 100%;
}

.formTd textarea {
  height: 250px;
}

.zipInput {
  width: 23% !important;
}

label {
  margin-bottom: 0px !important;
}

.addArea {
  margin-bottom: 10px;
}

.radio-label {
  margin-right: 8px;
  display: block;
}

input[type=radio] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  margin-right: 5px;
}

input[type=checkbox] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  margin-right: 5px;
}

.cv-submit td {
  border-bottom: none !important;
  border-right: none;
  border-left: none;
  text-align: center;
}

.formBtnTd {
  text-align: center;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 100px;
}

.formBtnTd .formBtn {
  text-align: center;
  font-size: 18px;
  color: #fff;
  padding: 10px 100px;
  line-height: 1;
  border: solid 1px #a48669;
  margin-top: 30px;
  cursor: pointer;
  transition: 0.3s;
  background: #a48669;
  min-width: 90%;
  border-radius: 5px;
}

.formBtnTd .formBtn:hover {
  background: #fff;
  color: #a48669;
}

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

@media (min-width: 768px) {
  .formRow {
    margin-bottom: 1px;
  }
  .formTh,
.formTd {
    padding: 20px;
  }
  .formTd input[type=text],
.formTd input[type=tel],
.formTd input[type=email],
.formTd textarea {
    padding: 12px 15px;
  }
  .radio-label {
    display: flex;
  }
  .radio-label + .radio-label {
    margin-top: 5px;
  }
}
/* cv-privacy */
.cv-privacy {
  padding: 20px 30px 30px;
  width: calc(100% - 0px);
  height: 300px;
  overflow-y: scroll;
  margin-bottom: 20px;
  background: #fff;
  font-size: 90%;
  border: 1px solid #ddd;
  box-sizing: border-box;
}

.cv-privacy__head {
  margin-bottom: 30px;
}

.cv-privacy__item:not(:last-of-type) {
  margin-bottom: 20px;
}

.title__privacy {
  font-size: 15px;
  font-weight: 500;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.cv-privacy_item + .cv-privacy_item {
  margin-top: 30px;
}

.cv-privacy_item .disc-list {
  margin-top: 5px;
}

.cv-privacy_item .disc-list li + li {
  margin-top: 3px;
}

.privacyLabel {
  letter-spacing: 0;
  white-space: nowrap;
  color: #8b7662;
}

@media (min-width: 767px) {
  .cv-privacy {
    padding: 15px 10px;
  }
  .title__privacy {
    font-size: 17px;
  }
}
/* cv-submit */
.cv-submit td {
  border-bottom: none !important;
  border-right: none;
  border-left: none;
  text-align: center;
}

.cv-submit input {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 500;
  color: #3e3c38;
  padding: 19px 70px;
  line-height: 1;
  border: solid 1px #3e3c38;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 20px;
}

.cv-submit input:hover {
  color: #fff;
  background-color: #3e3c38;
}

.cv-tel {
  display: block;
  padding: 0;
}

.cv-tel_box:last-child {
  width: 100%;
  padding: 13px;
  background: #fff;
  border: 1px solid #e9e7e7;
}

.cv-tel_box:first-child {
  width: 100%;
  padding: 13px;
  border-right: none;
  border: 1px solid #e9e7e7;
}

@media (min-width: 768px) and (max-width: 1040px) {
  .cv-submit input {
    font-size: 1.5rem;
    padding: 15px 50px;
  }
  .cv-submit::after {
    width: 26px;
  }
}
@media (min-width: 767px) {
  .cv-submit input {
    font-size: 1.7rem;
    margin-top: 30px;
  }
}
.fileArea {
  margin-bottom: 20px;
}

.fileCaution {
  font-size: 14px;
  line-height: 1.5;
}

/*========= contact スマホ表示 ===============*/
@media (max-width: 767px) {
  .page_reservation {
    padding: 0 5%;
    box-sizing: border-box;
  }
  .page_reservation .reservation_wrap {
    width: 100%;
    padding: 30px;
  }
  .page_reservation .reservation_wrap .reservation_ttl {
    font-size: 24px;
  }
  .page_reservation .reservation_wrap .reservation_links {
    flex-direction: column;
    gap: 20px;
  }
  .page_reservation .reservation_wrap .reservation_links .link_line, .page_reservation .reservation_wrap .reservation_links .link_hpb {
    display: block;
    background-color: #A48669;
    border-radius: 5px;
    padding: 5px 20px;
    width: 220px;
    margin: 0 auto;
  }
  .page_reservation .reservation_wrap .reservation_links .link_line .link_txt, .page_reservation .reservation_wrap .reservation_links .link_hpb .link_txt {
    display: block;
    color: #fff;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    position: relative;
    padding-left: 20px;
  }
  .page_reservation .reservation_wrap .reservation_links .link_line .link_txt::before, .page_reservation .reservation_wrap .reservation_links .link_hpb .link_txt::before {
    content: "";
    background: url(img/cmn/icon_line.png) no-repeat center/contain;
    position: absolute;
    top: 0;
    left: -20px;
    width: 30px;
    height: 30px;
  }
  .container {
    padding: 0 5%;
    box-sizing: border-box;
  }
  .container .row {
    display: block;
    width: 100%;
    margin: 0 auto;
  }
  .container .row .col-md-4 {
    width: 100%;
    font-size: 14px;
    padding: 4px 10px 2px 10px;
  }
  .container .row .col-md-8 {
    width: 100%;
  }
  .privacyLabel {
    font-size: 13px;
  }
}
/*========= footer ===============*/
#footer {
  width: 100%;
}
#footer .ft_bg {
  background-color: #a48669;
}
#footer .ft_bg .ft_wrap {
  display: flex;
  justify-content: space-between;
  padding: 50px 0;
  flex-direction: row-reverse;
}
#footer .ft_bg .ft_wrap .ft_left img {
  max-width: 180px;
  margin-bottom: 20px;
}
#footer .ft_bg .ft_wrap .ft_left .ft_info {
  color: #fff;
}
#footer .ft_bg .ft_wrap .ft_left .ft_info span {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  letter-spacing: 0.5rem;
}
#footer .ft_bg .ft_wrap .ft_right .ft_nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
#footer .ft_bg .ft_wrap .ft_right .ft_nav a {
  color: #fff;
  font-family: "Outfit", sans-serif;
  position: relative;
  padding-bottom: 5px;
}
#footer .ft_bg .ft_wrap .ft_right .ft_nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: #fff;
  border-radius: 10px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
#footer .ft_bg .ft_wrap .ft_right .ft_nav a:hover::after {
  transform: scaleX(1);
}
#footer .ft_bg .ft_wrap .ft_right .ft_link {
  display: flex;
  gap: 30px;
}
#footer .ft_bg .ft_wrap .ft_right .ft_link .ft_line {
  background: url(img/cmn/ft_line.png) no-repeat center center;
  background-size: contain;
  width: 100px;
  height: 40px;
  border-radius: 5px;
}
#footer .ft_bg .ft_wrap .ft_right .ft_link .ft_hpb {
  background: url(img/cmn/ft_hpb.png) no-repeat center center;
  background-size: contain;
  width: 120px;
  height: 40px;
  border-radius: 5px;
}
#footer .ft_bg .ft_wrap .ft_right .ft_link .ft_insta {
  background: url(img/cmn/ft_insta.png) no-repeat center center;
  background-size: contain;
  width: 120px;
  height: 40px;
  border-radius: 5px;
}
#footer .ft_bg .ft_copyright {
  font-size: 12px;
  color: #fff;
  text-align: center;
  padding-bottom: 20px;
}
#footer .ft_wave {
  margin-bottom: -1px;
}
#footer .ft_wave img {
  width: 100%;
}

/*========= footer 1280px位下表示 ===============*/
@media (max-width: 1280px) {
  #footer .ft_bg {
    padding: 0 5%;
  }
  #footer .ft_bg .ft_wrap .ft_left img {
    max-width: 150px;
  }
}
/*========= footer スマホ表示 ===============*/
@media (max-width: 767px) {
  #footer .ft_bg .ft_wrap {
    flex-direction: column;
  }
  #footer .ft_bg .ft_wrap .ft_left {
    margin-bottom: 30px;
  }
  #footer .ft_bg .ft_wrap .ft_left img {
    max-width: 120px;
  }
  #footer .ft_bg .ft_wrap .ft_right {
    margin-bottom: 50px;
  }
  #footer .ft_bg .ft_wrap .ft_right .ft_nav {
    justify-content: flex-start;
    gap: 20px;
  }
  #footer .ft_bg .ft_wrap .ft_right .ft_link {
    gap: 20px;
  }
  #footer .ft_bg .ft_wrap .ft_right .ft_link .ft_line {
    width: 90px;
    height: 35px;
    border-radius: 5px;
    background-size: cover;
  }
  #footer .ft_bg .ft_wrap .ft_right .ft_link .ft_hpb {
    width: 100px;
    height: 35px;
    border-radius: 5px;
    background-size: cover;
  }
  #footer .ft_bg .ft_wrap .ft_right .ft_link .ft_insta {
    width: 100px;
    height: 35px;
    border-radius: 5px;
    background-size: cover;
  }
}
/*========= body ===============*/
html {
  font-size: 62.5%;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.75;
  margin: 0;
  color: #585757;
  background-color: #f5f4f1;
  letter-spacing: 1px;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

h1, h2, h3 {
  margin: 0;
  padding: 0;
  font-weight: lighter;
  font-family: "Zen Old Mincho", serif;
  color: #8b7662;
}

h1 {
  color: #fff;
  z-index: 1;
  font-size: 30px;
  line-height: 50px;
  letter-spacing: 10px;
  padding-right: 10px;
  padding-left: 10px !important;
  font-family: "Outfit", sans-serif;
}

h2 {
  font-size: 4rem;
  line-height: 3rem;
}

h3 {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.8rem;
}

ul, li, span {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: #8b7662;
  margin: 0;
  padding: 0;
}

a:hover {
  opacity: 0.8;
  transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

p {
  margin: 0;
  padding: 0;
  line-height: 30px;
  color: #8b7662;
}

figure {
  margin: 0;
}

img {
  display: block;
  width: 100%;
}

.mw1280 {
  max-width: 1280px;
  margin: 0 auto;
}

.mw1200 {
  max-width: 1200px;
  margin: 0 auto;
}

.mw1000 {
  max-width: 1000px;
  margin: 0 auto;
}

.sp_only {
  display: none;
}

.pc_only {
  display: block;
}

.row-reverse {
  flex-direction: row-reverse;
}

.center {
  text-align: center;
}

.bg01 {
  max-width: 1400px;
  position: relative;
  left: 0;
  z-index: -1;
}

.wave02 {
  position: relative;
  z-index: -100;
}
.wave02 img {
  width: 100%;
}

.mb50 {
  margin-bottom: 50px;
}

.btnarrow {
  position: relative;
  margin-top: 50px;
  margin-right: 100px;
}
.btnarrow a {
  color: #8b7662;
  padding-left: 15px;
  position: relative;
  z-index: 10;
}

.btnarrow::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 45px;
  background: url(img/cmn/btnarrow.png) no-repeat center/contain;
  transition: all 0.3s;
  left: 0;
  bottom: -20px;
}

.btnarrow::after {
  content: "";
  position: absolute;
  left: 160px;
  width: 50px;
  height: 50px;
  background: url(img/cmn/btncircle.png) no-repeat center/contain;
  transition: all 0.3s;
}

.btnarrow:hover::before {
  left: 10px;
}

.btnarrow-container {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 1280px) {
  h1 {
    font-size: 4rem;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
    width: 100%;
    overflow: hidden;
  }
  h1 {
    font-size: 20px !important;
    padding-left: 0 !important;
    letter-spacing: 6px;
    line-height: 2;
  }
  h2 {
    font-size: 3rem;
  }
  h3 {
    font-size: 2.2rem;
  }
  p {
    line-height: 2;
  }
  .sp_only {
    display: block;
  }
  .pc_only {
    display: none;
  }
  .btnarrow {
    margin-right: 60px;
  }
  .btnarrow::before {
    width: 150px;
  }
  .btnarrow::after {
    width: 40px;
    left: 115px;
    top: -4px;
  }
}
.js-pagetop a {
  display: block;
  z-index: 99;
  width: 70px;
  max-width: 100%;
  bottom: 0;
  right: 0;
  position: fixed;
  opacity: 0;
  transition: 0.5s;
  pointer-events: none;
  padding: 20px;
}

.js-pagetop.active a {
  opacity: 1;
  pointer-events: fill;
}

/* 1文字ずつ表示 */
.eachTextAnime span {
  opacity: 0;
  display: inline-block;
}

.eachTextAnime.appeartext span {
  -webkit-animation: text_anime_on 1s ease-out forwards;
          animation: text_anime_on 1s ease-out forwards;
}

@-webkit-keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.delayAnime span {
  opacity: 0;
  display: inline-block;
}

.delayAnime.startAnimation span {
  -webkit-animation: text_anime_on 1s ease-out forwards;
          animation: text_anime_on 1s ease-out forwards;
}

.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeDown {
  -webkit-animation-name: fadeDownAnime;
          animation-name: fadeDownAnime;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左から */
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time02 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.delay-time03 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.delay-time04 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.delay-time05 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.box {
  opacity: 0;
}

@media (max-width: 767px) {
  .js-pagetop a {
    width: 60px;
    right: 0;
    bottom: 20px;
  }
  .js-pagetop a img {
    width: 60px;
  }
}
/*========= パンクズリスト ===============*/
.bread_crumb_list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  margin-bottom: 100px;
}
.bread_crumb_list .bread_crumb {
  padding: 15px 0 0;
  font-size: 15px;
  text-align: left;
}
.bread_crumb_list .bread_crumb li {
  display: inline;
}
.bread_crumb_list .bread_crumb li::after {
  content: "/";
  padding-left: 5px;
  color: #8b7662;
}
.bread_crumb_list .bread_crumb li:last-child:after {
  content: "";
}
.bread_crumb_list .bread_crumb li.current {
  color: #8b7662;
}
.bread_crumb_list .bread_crumb li a {
  color: #8b7662;
  border-bottom: 1px solid #8b7662;
  transition: all 0.2s ease;
}
.bread_crumb_list .bread_crumb li a:hover {
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

@media screen and (max-width: 1330px) {
  .bread_crumb_list {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .bread_crumb_list {
    width: 90%;
    margin-bottom: 50px;
  }
  .bread_crumb_list .bread_crumb {
    font-size: 12px;
  }
  .sp_only {
    display: block; /* 強制的にブロック表示し、改行させる */
  }
}
/* ローディング画面 */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #cab39e; /* ローディング画面の背景色 */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* 他のコンテンツの上に表示 */
}

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

.loading_txt {
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  position: relative;
  font-size: 30px;
  color: #f5f5f5;
  letter-spacing: 5px;
}

.loading_txt::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #a48669;
  overflow: hidden;
  -webkit-animation: animate 5s linear infinite;
          animation: animate 5s linear infinite;
  border-right: 3px solid #a48669;
}

@-webkit-keyframes animate {
  0% {
    width: 0;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

@keyframes animate {
  0% {
    width: 0;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
.thanks {
  max-width: 800px;
  margin: 0 auto;
  border: solid 1px #cab39e;
  padding: 20px;
  box-sizing: border-box;
  margin-top: 100px;
  margin-bottom: 100px;
}
.thanks h1 {
  font-size: 24px;
  color: #8b7662;
  letter-spacing: normal;
  padding: 0 !important;
  text-align: center;
  margin-bottom: 30px;
}
.thanks p {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .thanks {
    max-width: 90%;
    margin: 0 auto;
    margin-top: 100px;
    margin-bottom: 100px;
  }
  .thanks h1 {
    font-size: 18px !important;
  }
}
/*# sourceMappingURL=style.css.map */