@charset "UTF-8";

/*================================================
 *  一般・共通設定
================================================*/
html {
  font-size: 62.5%;
  line-height: 1.8;
  height: 100%;
  color: #333;
  overflow-x: hidden;
  scroll-behavior: smooth;
  word-break: break-word;
  background-color: var(--color-base);
  -webkit-tap-highlight-color: transparent;
}

:root {
  --main-color: #2f2424;
  --main-color01: #d6b6b1;
  --sab-color: #2E1F1D;
  --blak: #333;
  --easing: cubic-bezier(.2, 1, .2, 1);
  --transition: .8s var(--easing);
  --color-base: #f8f8f8;
  --color-gray: #ddd;
  --color-theme: #ddcecd;
  --color-red: #de0e0e;
  --box-shadow: .8rem .8rem 1.2rem rgba(0, 0, 0, .05), -.8rem -.8rem 1.2rem #fff;
  --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, .08), -1rem -1rem 1.5rem #fff;
  --box-shadow-inset: inset .8rem .8rem 1.2rem rgba(0, 0, 0, .05), inset -.8rem -.8rem 1.2rem #fff;
  --box-shadow-dark: .8rem .8rem 1.2rem rgba(0, 0, 0, .1), -.8rem -.8rem 1.2rem rgba(#fff, .2);
}

body {
  font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  overflow-x: hidden;
  line-height: 1.6;
  letter-spacing: .05em;
  color: #333;
  background-color: #fff;
  font-size: 1.6rem;
  margin: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

a {
  color: #555;
  text-decoration: none;
}

a:hover {
  opacity: .7;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

figure {
  margin: 0;
}

p {
  margin-bottom: 1em;
}

strong {
  font-weight: bold;
}

small {
  font-size: smaller;
}

ul,
ol,
dl {
  margin: 0;
  padding: 0;
  list-style: none;
}

h2,
p,
img,
ul,
ol {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

ul li {
  list-style: none;
  margin-left: 0;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none !important;
}

@media screen and (max-width:768px) {
  .pc_only {
    display: none !important;
  }

  .sp_only {
    display: block !important;
  }
}

/* section */
section {
  padding-bottom: 7rem;
}

.section {
  padding-top: 7rem;
}

/* タイトル */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1.6rem;
  margin: 0;
  padding: 0;
}

h2 {
  text-align: center;
  font-size: 30px;
  font-family: 'Noto Serif KR', serif;
  margin-bottom: 30px;
  color: #5e4e4a;
}

h3 {
  font-family: 'Noto Serif KR', serif;
  text-transform: uppercase;
  font-size: 25px;
  color: #5e4e4a;
  border-bottom: 1px solid #5e4e4a;
  padding-bottom: 5px;
  margin-bottom: 30px;
}

.red {
  color: red;
  font-weight: 700;
}

.markker {
  background-image: linear-gradient(rgba(0, 0, 0, 0), 30%, rgba(239, 237, 99, 0.58) 70%);
}

.markker_p {
  background-image: linear-gradient(rgba(0, 0, 0, 0), 70%, rgba(199, 132, 142, 0.58) 30%);
  word-break: auto-phrase;
}

/*----------------------------
scroll_up ｜
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(20px);
  opacity: 0;
}

.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

/* ボタン */
.linkBtn {
  margin-top: 60px;
  text-align: center;
}

.linkBtn a {
  font-family: 'Noto Serif KR', serif;
  text-transform: uppercase;
  border: 1px solid hsl(12, 12%, 33%);
  padding: 15px 80px;
  border-radius: 50px;
}

.linkBtn.white a {
  background: #fff;
  color: #2f2424;
}

.linkBtn.white a:hover {
  background: #2f2424;
  color: #fff;
}

.linkBtn.brown a {
  background: #2f2424;
  color: #fff;
}

.linkBtn.brown a:hover {
  background: #fff;
  color: #2f2424;
}

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

.web_btn {
  font-weight: bold;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1em 2em 1em calc(5em - 15px);
  transition: 0.3s;
  text-decoration: none;
  color: #fff;
  border-radius: 0.5rem;
  background: #45B173;
  box-shadow: 0 5px 0 #19934e;
  margin-left: 10px;
}

.web_btn p {
  margin: 0;
}

.web_btn .web_btn_copy {
  position: absolute;
  bottom: 0.5em;
  left: -10px;
  display: inline-block;
  width: 5em;
  height: 5em;
  line-height: 5em;
  text-align: center;
  color: #45B173;
  font-size: 80%;
  font-weight: bold;
  background: #fff;
  border: 3px solid #45B173;
  border-radius: 50%;
  box-sizing: border-box;
  transform: rotate(-10deg);
}

.web_btn .web_btn_copy::before {
  position: absolute;
  content: "";
  bottom: -5px;
  right: -10px;
  border: 9px solid transparent;
  border-left: 15px solid #FFF;
  z-index: 0;
  transform: rotate(45deg);
}

/* マウスオーバーした際のデザイン */
.web_btn:hover {
  transform: translate(0, 3px);
  background: #19934e;
  box-shadow: 0 2px 0 #19934e;
}

.menu_list {
  font-weight: bold;
  line-height: 1.5;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  padding: 1em 2em 1em;
  transition: 0.3s;
  text-decoration: none;
  color: #fff;
  border-radius: 0.5rem;
  background: #c492b1;
  box-shadow: 0 5px 0 #9e6c8b;
  margin: 100px auto;
}

.menu_list:hover {
  background: #c492b1;
  box-shadow: 0 2px 0 #c492b1;
}

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

  .wrap {
    width: 100%;
    /* padding-left: 20px;
    padding-right: 20px; */
  }
}

/*================================================
 *  ヘッダー
 ================================================*/
header {
  position: fixed;
  width: 100%;
  z-index: 100;
  top: 0;
  left: 0;
  box-sizing: border-box;
  background: var(--main-color);
  height: 90px;
  transition: .5s;
}

header.inActive {
  transform: translateY(-100%);
}

header .inner {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}

/* inner-left */
header .inner-left {
  width: 40%;
  margin-left: 10%;
  position: relative;
  top: -7px;
}

header .inner-left h1 {
  font-size: 23px;
  font-family: 'Noto Serif KR', serif;
}

header .inner-left h1 a {
  font-family: 'Noto Serif KR', serif;
  color: #fff;
  font-size: 2.2rem;
  white-space: nowrap;
}

header .inner-left p {
  display: inline-block;
  margin: 0 auto;
  color: #fff;
  font-size: 1.4rem;
}

/* inner-right */
header .inner-right {
  width: 70%;
}

nav.gnav ul {
  text-align: right;
}

nav.gnav ul li {
  position: relative;
  float: left;
  width: calc(55vw / 6);
  text-align: center;
}

.noLink {
  cursor: pointer;
}

span.child_nemu_button {
  display: none;
}

nav.gnav ul li .child {
  position: relative;
  display: inline-block;
  height: 40px;
  line-height: 54px;
  text-align: center;
  color: #fff;
  margin-right: 5px;
  padding-bottom: 69px;

}

nav.gnav ul li .child::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 40px;
  left: 50%;
  transition: width 0.3s ease, left 0.3s ease;
}

nav.gnav ul li .child:hover::after {
  width: 100%;
  left: 0;
}

nav.gnav ul li .child:hover {
  opacity: .7;
}

ul.gnav_sab,
ul.gnav_open01 {
  opacity: 0;
  pointer-events: none;
  transition: .5s;
  margin-top: 0;
}

ul.gnav_open01 {
  position: absolute;
  top: 89px;
  left: 50%;
  transform: translateX(-50%);
}

ul.gnav_sab.open-show,
ul.gnav_open01.open-show {
  opacity: 1;
  pointer-events: auto;
}

.open_nav {
  width: 100%;
  background: linear-gradient(to right, rgb(199 162 162 / 86%), rgb(186, 186, 152));
}

ul.ddmenu ul {
  position: absolute;
}

.sub_menu_list {
  width: 600px;
  display: flex;
  margin: 0 auto;
  padding-top: 20px;
  justify-content: space-between
}

.sub_menu_list a {
  display: block;
  padding: 0 10px;
}

ul.gnav_sab a img {
  width: 150px;
}

ul.gnav_sab a p span {
  background-color: #fff;
  padding: 10px;
  display: block;
  color: #000;
  text-align: center;
  font-size: 11px;
}

.menuPrice {
  width: 1500px;
  display: flex;
  justify-content: center;

}

ul.gnav_sab .menuPrice img {
  width: 150px;
  height: auto;
  object-fit: cover;
  border-top-left-radius: 10px;
}

ul.gnav_sab .menuPrice p {
  font-size: 12px;
}

li.sub_menuBox01 {
  width: 1200px;
  margin: 0 auto;
  display: flex;
}

@media screen and (max-width:1280px) {
  a.child {
    font-size: 12px;
}
.noLink.child_nemu.child.child_open01 {
  font-size: 12px;
}
.noLink.child_nemu.child.child_open {
  font-size: 12px;
}
}

@media screen and (max-width:1024px) {
  nav.gnav ul li a.child {
    font-size: 10px;
  }
  a.child {
    font-size: 13px;
}

}

@media screen and (max-width:1030px) {
  header {
    height: 70px;
    padding: 10px;
  }

  header .inner-left {
    width: 70%;
    top: -19px;
  }

  header .inner-left h1 {
    font-size: 24px;
  }

  header .inner-left h1 a {
    position: relative;
    top: -9px;
    left: 14px;
  }

  header .inner-left p {
    position: relative;
    top: -16px;
    left: -1px;
  }

  /* ハンバーガーメニュー */
  nav.global_nav {
    position: fixed;
    top: 0;
    right: -275px;
    width: 270px;
    height: 100vh;
    padding-top: 40px;
    background: #2F2424;
    transition: all .2s ease-out;
    z-index: 200;
    overflow-y: auto;
    padding: 70px 30px 40px 40px;
  }

  .open_nav nav.global_nav {
    right: 0px;
    width: 50%;
  }

  nav.gnav.global_nav ul li {
    width: 100%;
    font-size: 11px;
    position: relative;
  }

  nav.gnav ul li a,
  nav.gnav ul li div {
    margin-bottom: 5px;
    color: #fff;
    font-size: 1.7rem;
  }

  ul.ddmenu ul {
    display: none;
    margin: 0px;
    padding: 0px;
    position: static;
  }

  .hamburger {
    position: absolute;
    right: 10px;
    top: 5px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 300;
  }

  .global-nav__list {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .global-nav__item a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #fff;
    line-height: 1.3;
  }

  .global-nav__item a:hover {
    background-color: #eee;
  }

  .hamburger__line {
    position: absolute;
    left: -5px;
    width: 30px;
    height: 1px;
    background-color: #fff;
    transition: all .2s ease-out;
  }

  .hamburger__line--1 {
    top: 18px;
  }

  .hamburger__line--2 {
    top: 26px;
  }

  .hamburger__line--3 {
    top: 33px;
  }

  .black-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }

  /* 表示された時用のCSS */
  .nav-open .global-nav {
    right: 0;
  }

  .nav-open .black-bg {
    opacity: .8;
    visibility: visible;
  }

  .nav-open .hamburger__line--1 {
    transform: rotate(45deg);
    top: 20px;
  }

  .nav-open .hamburger__line--2 {
    width: 0;
    left: 50%;
  }

  .nav-open .hamburger__line--3 {
    transform: rotate(-45deg);
    top: 20px;
  }

  .child_menu_button .icon:before {
    content: '+';
    font-size: 13px;
    color: #aaa;
    text-align: center;
    display: block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border: 1px solid #555;
    border-radius: 100%;
    position: absolute;
    left: 20px;
    top: 15px;
  }

  span.child_nemu_button {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 17px;
    right: 10px;
  }

  span.icon {
    color: #fff;
  }
}

@media screen and (max-width:768px) {
  .open_nav {
    background: #2F2424
  }

  .open_nav nav.global_nav {
    width: 100%;
  }

  .black-bg {
    background-color: transparent;
  }

  header .inner-left {
    margin-left: 1%;
    top: -20px;
  }

  /* スマホ用 */
  nav {
    height: 100vh;
    overflow-y: auto;
  }

  nav ul {
    height: auto;
  }

  nav.gnav.global_nav.sp_only {
    top: 57px;
    pointer-events: auto;
  }

  .sp_childImg {
    display: flex;
    width: 100%;
  }

  .sp_childImg img {
    width: 150px;
    height: auto;
    margin-right: 20px;
  }


  .sp_childImg .sp_childTxt {
    flex: 1;
    padding: 5px;
  }

  .sp_childOpen {
    /* height: 0; */
    display: none;
    overflow: hidden;
    transition: 1s;
  }

  .sp_childOpen.open {
    /* height: 750px; */
    height: auto;
  }
}


/* =======================================================
* main
* ======================================================= */
main {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  z-index: 10;
}

::-moz-selection {
  color: #fff;
  background: var(--color-theme);
}

::selection {
  color: #fff;
  background: var(--color-theme);
}

main {
  display: block;
  padding-top: 80px;
}

.l-inner {
  position: relative;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10rem;
}

.l-section {
  border-top: 1px solid #eee;
}

.l-section .l-inner {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

[class*=swiper]:focus {
  outline: none;
}

.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}

.slide-media img,
.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next {
  display: grid;
  place-content: center;
  width: 6.4rem;
  height: 6.4rem;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.swiper-button-prev::before,
.swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid var(--color-gray);
  border-width: 3px 3px 0 0;
}

.swiper-button-prev::after {
  margin-left: 0.4rem;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.swiper-button-next::after {
  margin-right: 0.4rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.topSwiper {
  margin-bottom: 16rem;
}

.topSwiper .l-inner {
  padding-bottom: 0;
}

.topSwiper .swiper-area {
  position: relative;
}

.topSwiper .swiper-main {
  height: 800px;
  margin-right: min(40rem, 25vw);
  border-radius: 0 5rem 5rem 0;
}

.topSwiper .swiper-thumb {
  position: absolute;
  top: 10rem;
  right: 0;
  bottom: 10rem;
  width: min(48rem, 30vw);
}

.topSwiper .slide {
  display: grid;
  height: 80%;
  padding: 0 4rem;
  text-align: center;
  color: #fff;
}

.topSwiper .slide-media {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.topSwiper .slide-content {
  -webkit-transition: 3s 0.5s var(--easing);
  transition: 3s 0.5s var(--easing);
  -webkit-transform: translateY(-6rem);
  transform: translateY(-6rem);
  opacity: 0;
}

.topSwiper .slide-title {
  font-size: 5rem;
  line-height: 1.1;
  color: var(--color-base);
}

.topSwiper .slide-text {
  font-size: 4rem;
  margin: 4rem 0 6rem;
}

.topSwiper .swiper-slide[class*=-active] .slide-content {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.topSwiper .thumb {
  font-weight: bold;
  position: relative;
  display: grid;
  overflow: hidden;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  height: 100%;
  padding: 0 4rem;
  cursor: pointer;
  -webkit-transition: 2s var(--easing);
  transition: 2s var(--easing);
  color: #fff;
}

.topSwiper .thumb::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  content: "";
  -webkit-transition: 1s var(--easing);
  transition: 1s var(--easing);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  background-color: var(--main-color);
}

.topSwiper .thumb-media {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #eee2e2;
}

.topSwiper .thumb-media img {
  -webkit-transition: 2s var(--easing);
  transition: 2s var(--easing);
}

.thumb-media.img-cover {
  border-radius: 10px;
}

.topSwiper .thumb-title {
  font-size: 2.2rem;
  line-height: 1.5;
  position: relative;
  top: 25px;
  color: var(--box-shadow);
  z-index: 1;
}

.topSwiper .thumb-date {
  font-size: 1.2rem;
  margin-top: 0.3em;
  letter-spacing: 0.1em;
}

.swiper-initialized.swiper-pointer-events {
  pointer-events: auto;
}

.topSwiper .swiper-slide-thumb-active .thumb {
  color: var(--main-color);
}

.topSwiper .swiper-slide-thumb-active .thumb::before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.topSwiper .swiper-slide-thumb-active .thumb-media img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  opacity: 0.3;
  -webkit-filter: blur(3px);
  filter: blur(3px);
  mix-blend-mode: hard-light;
}

@media only screen and (max-width: 1024px) {
  html {
    -webkit-text-size-adjust: 100%;
  }

  .l-inner {
    padding: 0 4rem;
  }

  .pc {
    display: none !important;
  }

  .topSwiper .swiper-main {
    height: max(70vh, 70vw);
  }

  .topSwiper .slide-title {
    font-size: 3.2rem;
    margin-top: 69px;
    line-height: 40px;
  }

  .topSwiper .slide-text {
    font-size: 2rem;
    margin: 2.4rem 0 3.2rem;
  }

  .topSwiper .slide-date {
    font-size: 1.8rem;
  }

  .topSwiper .thumb {
    padding: 0 2.4rem;
  }

  .topSwiper .thumb-title {
    font-size: 1.4rem;
  }
}

@media only screen and (max-width: 599px) {
  html {
    font-size: 50%;
  }

  main {
    padding-top: 58px;
  }

  .pc-tab {
    display: none !important;
  }

  .topSwiper .swiper-main {
    margin-right: 4rem;
  }

  .topSwiper .swiper-thumb {
    top: 375px;
    bottom: -6rem;
    width: 20rem;
    height: 32rem;
    border-radius: 1rem 0 0 1rem;
  }

  .topSwiper .slide {
    padding-top: 20%;
  }

  .topSwiper .thumb-date {
    display: none;
  }
}

@media only screen and (min-width: 1025px) {
  .tab-sp {
    display: none !important;
  }

  .swiper-button-prev::before,
  .swiper-button-next::before {
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }

  .swiper-button-prev:hover::before,
  .swiper-button-next:hover::before {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  .topSwiper .slide img {
    -webkit-transition: 2s var(--easing);
    transition: 2s var(--easing);
  }

  .topSwiper .slide:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0.9;
  }
}

@media only screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }

  .topSwiper .slide {
    place-content: center;
  }

  .topSwiper .thumb {
    border-radius: 4px 0 0 4px;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 600px) {
  main {
    padding-top: 58px;
  }

  .topSwiper .thumb-date {
    font-size: 1rem;
  }
}

/* =======================================================
* sec_01
* ======================================================= */
.sec_01 {
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 150px;
}

.card-container {
  margin: 25px auto 0;
  position: relative;
  width: 390px;
}

.card {
  background-color: #fbf4f4;
  padding: 30px;
  position: relative;
  box-shadow: 0 0 5px rgba(75, 75, 75, .07);
  z-index: 1;
  height: 600px;
}

.card-circle {
  border: 1px solid #aaa;
  border-radius: 50%;
  display: inline-block;
  line-height: 22px;
  font-size: 12px;
  height: 25px;
  text-align: center;
  width: 25px;
}

.card-title {
  position: absolute;
  top: 0;
  font-size: 3rem;
  display: inline-block;
  font-weight: 300;
  line-height: 60px;
  padding: 10px 90px;
  box-shadow: -1px 21px 33px -11px #7d7878;
  border-radius: 6px;
}

.card-description {
  display: inline-block;
  font-weight: 300;
  line-height: 22px;
  margin: 80px -12px 20px -12px;
}

.card-media {
  float: right;
}

img.card-media {
  border-radius: 10px;
}

.card-shadow {
  background-color: #fff;
  box-shadow: 0 2px 25px 2px rgba(0, 0, 0, 1), 0 2px 50px 2px rgba(0, 0, 0, 1), 0 0 100px 3px rgba(0, 0, 0, .25);
  height: 1px;
  margin: -1px auto 0;
  width: 80%;
  z-index: -1;
}

@media screen and (max-width:1024px) {
  .sec_01 {
    margin-top: -100px;
  }

  .card-container {
    width: 400px;
  }

  .card-title {
    font-size: 2rem;
  }
}

@media screen and (max-width:768px) {

  .card-container {
    max-width: 600px;
  }

  .sec_01.wrap {
    margin-top: -80px;
    padding-left: 0;
  }

  .card-title {
    left: 19%;
  }

  .card-description {
    padding-right: 20px;
  }
}

/*=========================================
sec_02
=========================================*/
.sec_02 {
  display: flex;
  justify-content: center;
  padding: 80px 0;
  background: linear-gradient(#292525, #735353);
  color: #FFF;
}

.content {
  width: 1200px;
  display: flex;
  justify-content: center;
}

.container .image {
  position: relative;
  width: 600px;
  height: 300px;
  overflow: hidden;
}

.content .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  z-index: 10;
}

.content .text_box {
  z-index: 20;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  max-width: 600px;
  transform: translate(-100px, 40px);
  backdrop-filter: blur(20px);
  border-radius: 10px;
  border-radius: 1px solid rgba(255, 255, 255, 0.1);
}

.content .text_box h3 {
  color: #FFF;
}

@media screen and (max-width:768px) {
  .content {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
  }

  .content .text_box {
    font-weight: bold;
    background: rgba(255, 255, 255, .5);
    padding: 15px;
    max-width: 350px;
    height: 400px;
    transform: translate(-140px, 40px);
    backdrop-filter: blur(50px);
    border-radius: 10px;
    color: var(--main-color);
  }

  .container .image {
    width: 600px;
    height: 350px;
    left: 23%;
  }
}

/*=========================================
sec_03
=========================================*/
.news {
  text-align: center;
  padding-bottom: 50px;
  padding-top: 20px;
  background-color: #f6f6f6;
}

.news h2 {
  margin-top: 70px;
}

.news dl {
  height: 200px;
  overflow-y: scroll;
  overflow-x: hidden;
  text-align: left;
  line-height: 2.3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  box-sizing: border-box;
  max-width: 700px;
  margin: 0 auto;
}

.news dt,
.news dd {
  border-bottom: 1px dotted #ccc;
  padding-bottom: 5px;
  margin-bottom: 5px;
}

.news dt {
  width: 20%;
}

.news dd {
  width: 80%;
}

.news dd img {
  width: 10px;
}

.news dd a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 640px) {
  .news dl {
    margin: 0 15px;
    line-height: 1.9;
  }

  .news dt {
    width: 25%;
    font-size: 13px;
  }

  .news dd {
    width: 75%;
    font-size: 13px;
  }
}

/* =======================================================
*instaArea
* ======================================================= */
#instaArea {
  max-width: 1260px;
  margin: 0 auto;
}

#instaArea h2 {
  font-family: serif;
  margin-top: 70px;
}

/* =======================================================
*about
* ======================================================= */
#under_main {
  background: url(../images/about_images/about_top.jpg);
}

/* intro */
#intro .wrap h2.intro_ttl {
  font-size: 3.5rem;
}

#intro .wrap p {
  margin-top: 40px;
  text-align: center;
  font-size: 2rem;
}

ul.intro_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

#intro .intro_box li img {
  height: 150px;
}

.point {
  position: relative;
  top: 10px;
  left: 20px;
  width: 80px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background-color: #bc6c6c;
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

#intro .into_ttl>p {
  font-size: 1.8rem;
  margin-top: 20px;
  width: 250px;
}

#intro .room {
  text-align: center;
}

#intro .room img {
  border-radius: 20px;
}

/* check */
.check {
  margin-top: 80px;
}

.check_ttl {
  max-width: 800px;
  margin: 0 auto;
}

#intro p.check_text {
  margin-bottom: 10px;
  font-size: 3rem;
}

.check_container li:nth-child(odd) {
  background-color: #edecec;
  padding: 30px;
  margin-bottom: 20px;
}

.check_container li:nth-child(even) {
  background-color: #FFFFFF;
  padding-left: 30px;
  margin-top: 30px;
  margin-bottom: 20px;
}

#intro_row p {
  margin-top: 30px;
  font-size: 2rem;
}

@media screen and (max-width:1024px) {
  #intro .wrap {
    padding: 0 20px;
  }
  p.al.intro {
    padding: 0 20px;
  }
}

@media screen and (max-width:768px) {

  #intro .wrap h2.intro_ttl {
    font-size: 2.5rem;
  }

  #intro .wrap p {
    text-align: left;
    padding: 0 15px;
  }

  ul.intro_box {
    justify-content: space-around;
  }

  #intro p.check_text {
    font-size: 2.2rem;
  }

  #intro .into_ttl>p {
    width: 150px;
  }

  #intro_row P {
    padding: 0 25px;
  }

  .check_ttl {
    font-size: 2.8rem;
  }
}

/* map */
#map {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #f5f5f5;
}

#map h2 {
  font-size: 2.8rem;
}

#map .map_container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding: 20px;
}

#map .map_container .googl_map {
  width: 40%;
  text-align: center;
}

.googl_map iframe {
  width: 450px;
  height: 450px;
}

#map .map_container .map_txt {
  background-color: #FFF;
  width: 55%;
  padding: 20px;
  display: inline-grid;
  align-items: center;
}

#map .map_container .map_txt p span {
  font-size: 14px;
}

@media screen and (max-width:768px) {
  #map .map_container {
    flex-direction: column
  }

  #map .map_container .googl_map {
    width: 100%;
    margin-bottom: 30px;
  }

  .googl_map iframe {
    width: 350px;
    height: 300px;
  }

  #map .map_container .map_txt {
    width: 100%;
  }
}


/* =======================================================
*about salon
* ======================================================= */
#under_main.room_01 {
  background: url(../images/about_images/room01.jpg);
}

/* welcom */
.welcom {
  margin-top: 80px;
}

#salon ul.flex li .step_num {
  width: 60px;
  padding: 15px 0px;
  text-align: center;
  border-radius: 50%;
  margin: 0 auto 15px;
  font-size: 17px;
  background: radial-gradient(circle, rgb(255 255 255) 20%, rgb(228 200 206) 100%);
  font-family: 'Cormorant', serif;
}

#salon ul.flex li {
  width: 14%;
  text-align: center;
  position: relative;
  font-size: 13px;
}

#salon ul.flex li:not(:last-child)::after {
  position: absolute;
  top: 30px;
  right: -5px;
  content: '';
  width: 10px;
  height: 10px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  box-sizing: border-box;
}

p.step_ja {
  display: inline-block;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  writing-mode: vertical-lr;
}

/* welcom_01*/
.welcom_01 {
  margin-top: 50px;
}

.fadeIn {
  opacity: 0;
  transform: translateY(80px);
}

.fadeIn.is-active {
  opacity: 1;
  transform: translateY(0);
  transition: all 2s cubic-bezier(0.22, 1, 0.36, 1);
}

.welcom_01 .welcom_ttl {
  font-size: 2.4rem;
  font-weight: bold;
}

.welcom_01 .flex {
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: row;
}

.welcom_01_txt {
  width: 100%;
  padding-right: 30px;
}

/* customer-request */
.customer-request {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #f5f5f5;
  padding: 20px;
  margin-bottom: 20px;
}

.section-title {
  color: #333;
  font-size: 24px;
  margin-bottom: 15px;
}

/* @media screen and (max-width:1024px) {
  .welcom_01_txt {
    padding: 0 20px;
  }
} */

@media screen and (min-width: 1024px) {
  .welcom_01 {
    padding: 0 30px;
}
  .welcom_01_txt {
    padding-left: 30px;
    padding-right: 30px;
  }
}


@media screen and (max-width:768px) {
  h2.salon_ttl {
    font-size: 2rem;
  }

  #salon ul.flex li .step_num {
    width: 30px;
    padding: 5px 0px;
    margin: 0 auto 10px;
    font-size: 12px;
  }

  #salon ul.flex li:not(:last-child)::after {
    top: 15px;
  }

  p.step_ja {
    text-align: justify;
    font-size: 13px;
  }

  .welcom {
    margin-top: 50px;
  }

  .welcom_01 .flex {
    flex-wrap: wrap
  }

  .welcom_01_txt {
    padding: 0 20px;
    width: 100%;
  }

  .w35 {
    margin: 0 auto;
    width: 70%;
  }

  .w35 img {
    border-radius: 50%;
  }
}

/* =======================================================
*about profile
* ======================================================= */
#under_main.room_02 {
  background: url(../images/about_images/room02.jpg);
}

#profile .profile_01_txt {
  width: 50%;
}

.qualifications_box {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: row-reverse;
}

p.photo {
  width: 30%;
}

ul.qualifications li {
  list-style-type: disc;
  list-style-type: square;
  line-height: 2;
}

.photo img {
  width: 100%;
  border-radius: 50%;
}

p.profile_txt {
  max-width: 1000px;
  margin: 60px 25px 0;
  font-size: 2rem;
}

.daisy_box {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  margin: 70px 0;
}

figure.daisy_img {
  width: 30%;
}

figure.daisy_img img {
  border-radius: 50%;
  width: 100%;
}


@media screen and (max-width:768px) {
  h2.profile_ttl {
    font-size: 2.4rem;
  }

  .qualifications_box {
    flex-direction: column-reverse
  }

  ul.qualifications li {
    list-style-position: inside;
    padding-left: 5px;
  }

  p.photo {
    width: 70%;
  }

  .photo img {
    width: 100%;
    margin: 0 auto;
  }

  .daisy_box {
    flex-direction: column;
  }

  figure.daisy_img {
    width: 70%;
  }
}

/* =======================================================
* menu
* ======================================================= */
#under_main.menu {
  background: url(../images/menu_images/mene01.jpg);
}

/* menu_contaneBox */
#menu .wrap h2.menu_ttl {
  font-size: 3.5rem;
}

.menu_contaneBox {
  display: flex;
  justify-content: space-around
}

.menu_contaneBox .menu_type {
  margin-top: 60px;
  width: 40%;
}

.gsap-box2 {
  margin-bottom: 150px
}

h2.menu01 {
  font-size: 2.6rem;
  line-height: 1;
}

.menu_contaneBox h2 span {
  font-size: 1.5rem;
}

p.price {
  color: #7f7e7e;
  font-family: fantasy;
}

p.price:before {
  content: "\f04b";
  font-family: 'font Awesome 5 free';
  font-weight: bold;
  font-size: 10px;
}


.single_line {
  line-height: 1.5;
  height: 1.5em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.single_line_12 {
  line-height: 1.2;
  height: 1.2rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.plan_contaner>p {
  margin-top: 40px;
  font-size: 2rem;
  text-align: center;
}

.plan_contaner ul li {
  list-style: disc;
  font-size: 14px;
}

.plan_flex {
  display: flex;
  justify-content: space-evenly
}

.plan_flex>img {
  width: 70px;
}

.ttxContent {
  position: relative;
  margin: 2em 0;
  padding: 0.5em 1em;
  border: solid 2px #457d4d;
  border-radius: 8px;
  height: 200px;
}

.ttxContent .box-title {
  position: absolute;
  display: inline-block;
  top: -13px;
  left: 10px;
  padding: 0 9px;
  line-height: 1;
  font-size: 19px;
  background: #FFF;
  color: #6faa66;
  font-weight: bold;
}

.ttxContent p {
  margin: 0;
  padding: 5px;
}

@media screen and (max-width:1024px) {
  h2.menu01 {
    font-size: 2rem;
}
}

@media screen and (max-width:768px) {
  .ttxContent {
    margin: 2em 10px;
    padding: 0.5em 0.5em;
  }
}

/* =======================================================
*menu_course
* ======================================================= */
#menu_course {
  background-color: #F9F9F9;
  padding-bottom: 40px;
}

.course {
  margin-top: 50px;
}

.course p.red {
  font-size: 12px;
}

h3.ac {
  font-size: 2.4rem;
  color: #5d4e4a;
}

@media screen and (max-width:1024px) {
  #menu_course {
    padding: 40px;
}
  h3.ac {
    font-size: 2rem;
}

}

@media screen and (max-width:768px) {
  #menu .wrap h2.menu_ttl {
    font-size: 2.5rem;
  }

  .menu_contaneBox {
    flex-direction: column
  }

  h2.menu01 {
    font-size: 2.3rem;
    line-height: 1.5;
  }

  p.ac.fadeIn.js-fadeIn.is-active {
    padding: 0 20px;
  }

  .plan_flex {
    margin-bottom: 30px;
  }

  p.price {
    text-align: center;
  }

  p.price:before {
    font-size: 8px;
    position: relative;
    top: -2px;
  }

  .menu_contaneBox .menu_type {
    width: 100%;
  }

  .menu_img {
    width: 80%;
    margin: 0 auto;
  }

  /* menu_course */
  h2.menu_ttl {
    font-size: 2.4rem;
  }

  p.fadeIn.js-fadeIn.is-active {
    padding: 0 20px;
  }

  .course li p {
    padding: 0 20px;
  }
}

/* =======================================================
*menu_table
* ======================================================= */
#menu_table h2 {
  margin-bottom: 6rem;
}

.scrollx ul {
  width: 1200px;
  display: flex;
  margin: 0 auto;
}

.scrollx ul li {
  width: 400px;
  padding: 12px 0;
  border-top: 1px solid #232323;
  border-left: 1px solid #232323;
  border-bottom: 1px solid #232323;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scrollx ul li i.fas {
  padding: 0 8px;
}

.scrollx ul li:nth-of-type(3n) {
  border-right: 1px solid #232323;
}

.scrollx ul li.back {
  padding: 5px 2px;
  margin-right: 0;
  border: 1px solid #ccc;
  background-color: #e8e8e8;
  text-align: center;
  font-weight: bold;
}

.table_center {
  text-align: center;
}

.menu_table_p {
  margin-top: 30px;
  padding: 0 20px;
}

.menu_table_p+p {
  padding: 0 20px;
}

@media screen and (max-width:768px) {
  .scrollx {
    overflow-x: scroll;
    word-break: keep-all;
    white-space: nowrap;
  }

  .scrollx ul {
    width: 800px;
  }

  .scrollx ul li {
    width: 280px;
  }
}

/* =======================================================
*menu_01_course01
* ======================================================= */
/* menu共通トップ画像 */
#under_main.menu_01 {
  background: url(../images/menu_images/menu_top.jpg);
  background-position: 80% 20%;
  background-size: cover;
}

#course_info {
  position: relative;
  margin-bottom: 17rem;
}

.colorRight {
  margin-bottom: 100px;
}

#course_info .course_info_left {
  position: relative;
  width: 60%;
  z-index: 2;
}

#course_info .course_info_right {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 55%;
  height: auto;
  padding: 1%;
  background: #FDFBF2;
  box-sizing: border-box;
  line-height: 2.5;
}

.text_left {
  font-size: 1.4rem;
  padding-left: 360px;
}

.text_left p.marginB--0,
.text_row p.marginB--0 {
  font-size: 1.8rem;
}

.text_row {
  margin-top: 70px;
  font-size: 1.2rem;
  padding-left: 3%;
}

.text_row02 {
  position: absolute;
  top: 435px;
  left: -51%;
  width: 514px;
  font-size: 1.2rem;
}

.grid-container {
  display: grid;
  grid-template-columns: auto auto;
  padding: 10px;
}

.grid-item {
  padding: 5px;
  text-align: center;
  border: 1px solid black;
  margin: 10px;
}

.text_left p:last-child  {
  text-align: right;
  padding-right: 10px;
  font-size: 2rem;
  line-height: 1;
}

@media only screen 
  and (min-device-width: 1024px) 
  and (max-device-width: 1366px) 
  and (-webkit-min-device-pixel-ratio: 2) 
  and (orientation: portrait) {
    .course_info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #course_info .course_info_left,  
    #course_info .course_info_right {
        width: 100%;
        text-align: center;
    }

    #course_info .course_info_right {
      position: absolute;
      top: 78%;
      right: 0%;
      width: 100%;
      height: auto;
      padding: 5%;
    }
    .text_left {
padding-left: 0;
    }
}

@media screen and (max-width:768px) {
  #under_main.menu_01 {
    background: url(../images/menu_images/menu_top_sp.jpg);
    background-position: 80% 20%;
    background-size: cover;
  }

  #course01.section {
    padding-top: 0;
    padding-bottom: 0;
  }

  #course_info {
    margin-bottom: 0;
  }

  #course_info .course_info_right {
    position: static;
    background: linear-gradient(90deg, white 0%, white 100px, #FDFBF2 100px, #FDFBF2 100%);
    width: 100%;
    padding: 30px 20px 30px;
  }

  #course_info .course_info_left {
    width: 100%;
  }

  .text_left {
    padding-left: 0;
  }

  .text_row02 {
    top: 620px;
    left: 10%;
    width: 300px;
  }

}

/* course_effect */
#course_effect.section.p_120 {
  padding-top: 120px;
}

#course_effect.section.p_135 {
  padding-top: 135px;
}

#course_effect.section.p_165 {
  padding-top: 165px;
}

#course_effect.section.p_200 {
  padding-top: 200px;
}

#course_effect.section.p_320 {
  padding-top: 320px;
}

#course_effect .bk_color {
  background-color: #dae0e6;
  padding-bottom: 30px;
}

#course_effect ul {
  margin-top: 10rem;
}

#course_effect ul li {
  width: 30%;
}

#course_effect ul li p.ac {
  font-size: 2rem;
  margin-top: 20px;
}

p.circle img {
  border-radius: 50%;
}

@media screen and (max-width:1024px) {
  #course_effect.section.p_120 {
    padding-top: 520px;
  }

  #course_effect ul.flex {
    padding: 0 20px;
}
}

@media screen and (max-width:768px) {
  #course_effect.section {
    padding-top: 0;
    padding-bottom: 0;
  }

  #course_effect.section.p_120,
  #course_effect.section.p_135,
  #course_effect.section.p_165,
  #course_effect.section.p_200,
  #course_effect.section.p_320 {
    padding-top: 0;
  }

  #course_effect ul li {
    width: 100%;
  }

  .section .flex li:nth-child(n+2) .ac {
    padding-top: 80px;
  }

  .flex li:last-child p:last-child {
    margin-bottom: 30px;
  }

  #course_effect .bk_color {
    margin-top: 120px;
  }

  #course_effect .bk_color .mt_0 {
    margin-top: 0px;
  }

  #course_effect .bk_color .mt_10 {
    margin-top: 20px;
  }

  p.circle img {
    width: 300px;
  }

  p.circle {
    text-align: center;
  }

  p.circle+p {
    padding: 0 20px;
  }
}

/* =======================================================
*voice
* ======================================================= */
#under_main.voice {
  background: url(../images/voice.images/voice.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top 65%;
}

#voice {
  background-color: #e7e1d9;
  margin-top: 60px;
}

.voice_info {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.voice_contents {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  flex-direction: row;
}

.voice_contents img {
  position: absolute;
  top: 40px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 65px;
  width: 100px;
}

.voice_contents .txt_wrap {
  background: #fff;
  padding: 30px;
  margin: 0 50px 0 0;
  border-radius: 3px;
}

@media screen and (max-width:768px) {
  .voice_inner h2 {
    font-size: 3rem;
  }

  .voice_contents img {
    top: 113px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -4px;
    width: 75px;
  }

  .voice_contents .txt_wrap {
    margin: 0;
  }

  .voice_contents .txt_wrap p {
    padding-left: 40px;
  }
}

/* voice_info */
#voice_info .voice_wrap {
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 80px auto 0;
}

#voice_info .voice_box {
  width: calc(50% - 10px);
  border: 1px solid #827c7c;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
  padding: 20px;
}

#voice_info .voice_box p.ttl_right {
  text-align: right;
}

@media screen and (max-width:768px) {
  #voice_info .voice_wrap {
    width: auto;
  }

  #voice_info .voice_box {
    width: 100%;
    margin: 0 15px 20px;
  }
}

/* =======================================================
*question
* ======================================================= */
#under_main.question {
  background: url(../images/question.images/question.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top 96%;
}

#question dl {
  max-width: 800px;
  margin: 80px auto 80px;
}

#question dl dt {
  position: relative;
  display: block;
  padding: 10px 10px 10px 40px;
}

#question dl dt::before {
  position: absolute;
  content: "Q.";
  top: 4px;
  left: 9px;
  font-family: 'cormorant', serif;
  font-size: 2.2rem;
}

#question dl dt span.under {
  background: linear-gradient(transparent 70%, #f5b5c3 70%);
}

#question dl dd {
  margin-bottom: 35px;
  padding-left: 20px;
  line-height: 2;
  font-size: 1.4rem;
}

@media screen and (max-width:768px) {
  #under_main.question {
    background-position: center;
  }

  #question dl dd {
    padding: 0 15px 10px 15px;
  }
}

/* =======================================================
*contact
* ======================================================= */
#under_main.contact {
  background: url(../images/contact.images/contact02.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top 50%;
}

#contact {
  background-image: url(../images/contact.images/contact01.jpg);
  position: relative;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

#contact::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -5;
}

.contact_info {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.contact_contents img {
  position: absolute;
  top: 66px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -54px;
  width: 100px;
}

.contact_contents .txt_wrap {
  background: #fff;
  padding: 30px;
  margin: 0 50px 0 0;
  border-radius: 3px;
}

.ac-spalBox {
 margin: 0 auto;
}

p.ac-spal.text_from {
  padding-top: 80px;
}

form {
  max-width: 700px;
  margin: 40px auto 50px;
}

label {
  display: block;
  margin: 35px auto 10px;
}

label small {
  font-size: 11px;
}

input,
select {
  vertical-align: text-top;
  font-size: 30px;
  margin: 3px;
}

input[type="email"],
input[type="number"],
input[type="text"],
input[type="tel"],
input[type="zipcode"],
input[type="date"],
input[type="city"],
input[type="address"],
input[type="datetime-local"],
select,
textarea {
  width: 100%;
  display: block;
  border: 1px solid #ccc;
  outline: none;
  height: 5.5rem;
  line-height: 1.8;
  background: #f9f9f9;
  font-size: 1.2rem;
  padding-left: 10px;
  border-radius: 5px;
  box-sizing: border-box;
}

input[type="zipcode"] {
  width: 40%;
}

label#dateError1 {
  margin-top: 3px;
  margin-left: 8px;
}

label#dateError2 {
  margin-top: 4px;
  margin-left: 7px;
}

.custom-select01 {
  width: 100%;
}

textarea {
  height: 300px;
  padding: 10px;
}

/* radioBtn */
.radioBtn {
  position: relative;
  cursor: pointer;
  padding-left: 25px;
  display: inline;
  font-weight: normal;
  margin-right: 20px;
  line-height: 2.5;
}

.radioBtn::before,
.radioBtn::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}

.radioBtn::before {
  background-color: #fff;
  border: 1px solid #555;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  left: 5px;
}

.radioBtn::after {
  background-color: #ad3c3c;
  border-radius: 50%;
  opacity: 0;
  width: 11px;
  height: 11px;
  left: 7px;
}

input:checked+.radioBtn::after {
  opacity: 1;
}

.checkbox {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}

form sup {
  background-color: #ad3c3c;
  color: #fff;
  font-size: 10px;
  margin-left: 4px;
  padding: 3px 5px;
  border-radius: 5px;
  vertical-align: text-top;
}

form sup.any {
  background-color: #959796;
}

#message::placeholder {
  letter-spacing: .1em;
}

/* 送信ボタン */
button {
  font-size: 14px;
  padding: 10px 70px;
  border-radius: 5px;
  border: 1px solid var(--main-color);
  background-color: var(--main-color);
  color: #fff;
  letter-spacing: .2em;
}

button:hover {
  background-color: #fff;
  color: #000000;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width:1024px) {

  .contact_ttl.fadeIn.js-fadeIn.is-active {
    font-size: 2.6rem;
}
  .contact_contents img {
    top: 90px;
    left: 2px;
  }
  .contact_contents .txt_wrap {
    width: 800px;
    margin: 0 auto;

}
}

@media screen and (max-width:768px) {
  #contact {
    padding: 40px 20px 0;
  }

  #contact h2 {
    padding: 0 20px;
    font-size: 2rem;
  }

  .contact_contents .txt_wrap {
    margin: 0;
  }

  .contact_contents img {
    top: 142px;
    left: -5px;
    width: 75px;
  }

  p.ac-spal.text_from {
    padding-top: 80px;
    padding: 50px 20px 10px;
  }

  .txt_wrap p {
    padding-left: 30px;
    text-align: left;
  }

  form .custom-label {
    padding: 0 20px;
  }

  input#date1,
  input#date2 {
    width: 380px;
  }

  input[type=date] {
    font-size: 24px;
  }

  .custom-select01 {
    font-size: 20px;
  }

  .radioBtn {
    display: block;
    margin: 5px 0 0;
  }
}

sup {
  color: #d65956;
  font-size: 11px;
  padding-left: 5px;
}

@media screen and (max-width:768px) {
  #about {
    background-size: cover;
  }
}

/* =======================================================
*policy
* ======================================================= */
#policy dt {
  font-weight: bold;
  margin-bottom: 10px;
}

#policy dd {
  margin-bottom: 20px;
  background-color: initial;
}

#policy ol {
  list-style-type: decimal;
  padding-left: 20px;
  padding-left: 20px;
  color: #333;
  line-height: 1.6;
}

#policy ol li {
  list-style-type: decimal;
  margin-bottom: 10px;
}

#policy ol ul {
  list-style-type: disc;
  padding-left: 20px;
}

.np {
  list-style-type: square;
  padding-left: 20px;
}

@media screen and (max-width:768px) {
  #policy h2 {
    font-size: 20px;
  }
}

/* =======================================================
*footer
* ======================================================= */
#cancel-policy {
  color: #333;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  margin: 20px auto;
  max-width: 800px;
  box-sizing: border-box;
}

#cancel-policy h2,
#cancel-policy h3 {
  color: #d35400;
}

#cancel-policy ul {
  list-style-type: none;
  padding: 0;
}

#cancel-policy ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

#cancel-policy ul li::before {
  content: '•';
  position: absolute;
  left: 0;
}

#cancel-policy p {
  line-height: 1.6;
}

#cancel-policy strong {
  color: #000;
}

@media (min-width: 1280px) {

.footer_menu {
  margin: 50px 30px;
}

footer .daisy_flower::before {
  left: 227px;
}
}


@media (min-width: 1024px) {
  #cancel-policy {
    padding: 25px;
    margin: 20px auto;
  }

  #cancel-policy h2 {
    font-size: 24px;
  }

  #cancel-policy h3 {
    font-size: 22px;
  }

  #cancel-policy p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  #cancel-policy {
    padding: 15px;
    margin: 10px;
  }

  #cancel-policy h2 {
    font-size: 20px;
  }

  #cancel-policy h3 {
    font-size: 18px;
  }

  #cancel-policy p {
    font-size: 14px;
  }
}



/* =======================================================
*disclaimer
* ======================================================= */
#disclaimer h2 {
  margin-top: 50px;
}

#disclaimer ul {
  list-style-type: none;
  padding: 0;
}

#disclaimer li {
  padding-bottom: 15px;
  font-weight: bold;
}

#disclaimer p {
  margin: 0 0 20px 20px;
}

@media screen and (max-width:768px) {
  #disclaimer h2 {
    font-size: 20px;
  }
}

/* =======================================================
*footer
* ======================================================= */
footer {
  position: relative;
  /* top: 100px; */
  padding: 50px 0;
  background: var(--main-color);
  z-index: 0;
}

footer .daisy_flower::before {
  position: absolute;
  top: 126px;
  left: 424px;
  content: '';
  display: inline-block;
  width: 800px;
  height: 200px;
  background-image: url(../images/daisy_img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: inherit;
  vertical-align: middle;
  transform: rotate(0deg);
  opacity: .5;
  border-radius: 20px;
  z-index: -1;
}

.footer_name {
  text-align: center;
  font-family: 'Poiret One', cursive;
  text-transform: uppercase;
  font-size: 30px;
  margin-top: 150px;
  margin-bottom: 0;
}

.footer_name a {
  color: #fff;
  font-family: 'Noto Serif KR', serif;
  font-weight: bold;
}

p.ttl_row {
  text-align: center;
  color: #fff;
  font-family: 'Noto Serif KR', serif;
}

.footer_menu {
  display: flex;
  text-align: center;
  margin: 50px 0;
  font-family: 'Noto Serif KR', serif;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
}

.footer_menu li {
  display: inline-block;
  padding: 0 10px;
  font-size: 20px;
  width: 180px;
}

.footer_menu li a {
  color: #fff;
}

.footer_menu p.c_nav {
  position: relative;
  width: 250px;
  top: 20px;
  left: 28px;
  text-align: left;
  font-size: 1.4rem;
}

.footer_sns {
  text-align: center;
  margin-bottom: 30px;
}

.footer_sns li {
  display: inline-block;
  padding: 0 10px;
  font-size: 1.5rem;
}

.footer_sns li img {
  height: 25px;
  object-fit: cover;
}

li.maine_menu span {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
}

li.maine_menu a {
  font-size: 1.4rem;
  font-weight: bold;
}

.footer_menu p.c_nav a {
  position: relative;
  font-size: 1.4rem;
  font-weight: 100;
}

.footer_menu p.c_nav a::after {
  position: absolute;
  top: 13px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
  background: #fff;
  bottom: -1px;
}

.footer_menu p.c_nav a:hover::after {
  visibility: visible;
  transform: scale(1, 1);
}

.copyright {
  text-align: center;
  font-size: 11px;
  color: #fff;
}

@media screen and (max-width:1024px) {
  footer {
    height: 1200px;
  }

  .footer_name {
    margin-top: 154px;
  }

  .footer_menu {
    margin: 50px 30px;
  }

  .footer_menu li {
    font-size: 16px;
    width: 140px;
  }

  footer .daisy_flower::before {
    width: 800px;
    left: 125px;
  }

  .footer_menu p.c_nav {
    font-size: 1rem;
    text-align: left;
    text-indent: -2em;
  }

  .footer_menu p.c_nav a {
    font-size: 1.2rem;
  }

  li.maine_menu a {
    font-size: 1.1rem;
}

li.maine_menu span {
  font-size: 1.1rem;
}
}

@media screen and (max-width:768px) {
  footer .daisy_flower::before {
    top: 72px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 100px;
    opacity: .7;
  }

  .footer_name a {
    font-size: 2.8rem;
  }

  .footer_menu {
    text-align: left;
    flex-direction: column;
    margin-bottom: 10px;
  }

  .footer_menu li {
    display: block;
    margin-bottom: 15px;
    width: auto;
  }

  .footer_menu p.c_nav {
    top: 0;
    left: 10%;
  }

  li.maine_menu a {
    padding-left: 20px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width:768px) {
  .footer_name {
    margin-top: 27px;
  }
}


/*================================================
 *  ページトップへの戻り
================================================*/
#pagetop {
  width: 90px;
  height: 90px;
  position: fixed;
  right: 0;
  bottom: 0;
  opacity: 0.6;
  z-index: 100;
}

#pagetop a {
  position: relative;
  display: block;
  width: 90px;
  height: 90px;
  text-decoration: none;
}

#pagetop a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: var(--main-color);
  position: absolute;
  width: 25px;
  height: 25px;
  top: -40px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

#pagetop a::after {
  content: 'PAGE TOP';
  font-size: 13px;
  position: absolute;
  top: 45px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  color: var(--main-color);
}

@media screen and (max-width:767px) {
  #pagetop {
    width: 50px;
    height: 50px;
  }

  #pagetop a::after {
    top: -18px;
    right: 60px;
    display: block;
    margin: 0 auto;
    font-size: 10px;
  }

  #pagetop a::before {
    top: -180px;
    right: 60px;
  }
}

/* 
=======================================================
*下層ページのタイトル under_main
* ======================================================= */
#under_main,
#under_main.room_01,
#under_main.room_02,
#under_main.menu {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 44%;
}

#under_main {
  position: relative;
  top: 10px;
  height: 300px;
}

/* サブページの「タイトル」共通 */
#under_main span.sub_ttl {
  position: absolute;
  top: 33%;
  left: 10%;
  text-align: center;
  font-size: 4em;
  color: #FFF;
  text-shadow:
    0 0.03em 0.03em #3e272d,
    0 0.03em 0.03em #634e4e,
    0 0.03em 0.03em #FBE9E7;
}

#under_main .sub_ttl span {
  display: block;
  font-size: 2rem;
}

/* ページ タイトル共通 */
.effect,
.voice_btn {
  margin-top: 60px;
}

.effect.marginT--0 {
  margin-top: 0px !important;
}

.effect.marginT--350 {
  margin-top: 350px !important;
}

#totaruTtl p,
#totaruTtl_menu p,
#totaruTtl.effect p,
#totaruTtl.voice_btn p,
.totaruTtl.brown p {
  position: relative;
  padding: 1rem;
  color: #534b4b;
  border-radius: 2em .6em 3em .4em/.3em 4em .6em 2em;
  background-color: #ecd9dd;
  font-weight: bold;
  margin: 0 auto;
  width: 500px;
  text-align: center;
  font-size: 2.8rem;
}

#totaruTtl p:before,
#totaruTtl_menu p:before,
#totaruTtl.effect p::before,
#totaruTtl.voice_btn p::before,
.totaruTtl.brown p::before {
  position: absolute;
  inset: 5px 5px -5px -5px;
  border: 2px solid;
  border-radius: 2em .6em 3em .4em/.3em 4em .6em 2em;
  color: #503939;
  content: '';
}

#totaruTtl.effect p {
  background-color: #e0ebc7;
}

.totaruTtl.brown p {
  background-color: #c9baa7;
  font-size: 2rem;
}

.totaruTtl.brown+.voice_wrap+.totaruTtl.brown {
  margin-top: 100px;
}

#totaruTtl.voice_btn p {
  background-color: #d1d3e7;
}

.voice_wrap .voice_box:nth-of-type(n+3) {
  margin-top: 50px;
}

@media screen and (max-width:1024px) {
  #under_main span.sub_ttl {
    font-size: 3.4rem;
  }
}

@media screen and (max-width:768px) {
  #under_main {
    height: 250px;
    top: 2px;
  }

  #under_main span.sub_ttl {
    top: 55%;
    font-size: 1.8em;
  }

  #totaruTtl p,
  #totaruTtl_menu p,
  #totaruTtl.effect p,
  #totaruTtl.voice_btn p,
  .totaruTtl.brown p {
    width: 330px;
    padding: 10px;
    font-size: 2rem;
  }

  #totaruTtl_menu p {
    margin-top: 80px;
  }
}

/* ページお知らせ共通 */
.salon_infomation,
.salon_infomation_three {
  margin-top: 100px;
  background-color: #d8e2da;
  padding-bottom: 0;
}

.salon_container,
.salon_infomation_three {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly
}

.salon_inner,
.salon_inner_three {
  position: relative;
  text-align: center;
  margin: 50px;
}


.salon_inner img {
  width: 350px;
  height: auto;
  display: block;
}

.salon_inner_three img {
  width: 250px;
  height: auto;
  display: block;
}

.text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgb(39, 37, 37);
  font-size: 20px;
  background-color: rgba(255, 255, 255, 0.755);
  width: 100%;
  padding: 15px;
}

@media screen and (max-width:1024px) {
  .salon_inner_three img {
    width: 200px;
  }
}

@media screen and (max-width:768px) {
  #under_main.room_01 {
    background-position: center left 81%;
  }

  .salon_inner_three {
    margin: 20px 10px;
  }

  .salon_inner_three img {
    width: 350px;
  }
}