@charset "UTF-8";
@font-face {
  font-family: "UoqMunThenKhung";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../font/UoqMunThenKhung.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@media screen and (max-width: 999px) {
  .pc {
    display: none;
  }
}

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

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

/* SP nav */
#sp_nav {
  position: relative;
}

.fv__hamburger {
  background: #A4907C;
  cursor: pointer;
  position: fixed;
  border: 0px;
  top: 0;
  right: 10px;
  height: 50px;
  width: 50px;
  z-index: 10;
}
.fv__hamburger span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 8px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  color: #fff;
  font-size: 12px;
  width: 32px;
}
.fv__hamburger span:nth-child(1) {
  top: 16px;
}
.fv__hamburger span:nth-child(2) {
  top: 26px;
}
.fv__hamburger span:nth-child(3) {
  top: 36px;
}
.fv__hamburger.active span:nth-child(1) {
  top: 30px;
  left: 5px;
  transform: translateY(-6px) rotate(45deg);
  width: 35px;
}
.fv__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.fv__hamburger.active span:nth-child(3) {
  top: 18px;
  left: 5px;
  transform: translateY(6px) rotate(-45deg);
  width: 35px;
}

#sp__bg {
  background: #F5F0E8;
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  z-index: 8;
}
#sp__bg .sp_menu {
  padding-top: 70px;
  font-size: 1rem;
  color: #000;
}
#sp__bg .sp_menu .sp_menu_item {
  padding: 1em;
  border-bottom: 1px solid #fff;
}
#sp__bg .sp_menu .sp_menu_item a .en {
  font-family: "UoqMunThenKhung", serif;
  color: #9E7676;
  margin-left: 1em;
}
#sp__bg .sp_menu_icon {
  margin: 1em auto;
}
#sp__bg .sp_menu_icon img {
  width: auto;
  height: 40px;
  margin: 0 0.5em;
}

/* PC nav */
.pc_nav,
.pc_menu {
  display: flex;
}

.pc_nav {
  background: #A4907C;
  z-index: 10;
  color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0.25em 2em;
}
@media screen and (max-width: 999px) {
  .pc_nav {
    padding: 0.5em 1em;
  }
}
.pc_nav .pc_menu_logo img {
  max-height: 45px;
}
.pc_nav .pc_menu {
  text-align: center;
  margin: 0.4em 1em 0.4em auto;
}
@media screen and (max-width: 999px) {
  .pc_nav .pc_menu {
    display: none;
  }
}
.pc_nav .pc_menu li {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  font-size: 0.75rem;
  padding: 0 1.1em;
  line-height: 1.4em;
}
.pc_nav .pc_menu li a {
  display: block;
  padding: 0 0.5em 3px;
  border-bottom: 1px solid #A4907C;
}
.pc_nav .pc_menu li a:hover {
  border-bottom: 1px solid #C8B6A6;
}
.pc_nav .pc_menu li a span {
  font-family: "UoqMunThenKhung", serif;
  color: #fff;
  font-size: 1rem;
}
.pc_nav .pc_menu_icon {
  margin: 0.7em 1em 0;
}
@media screen and (max-width: 999px) {
  .pc_nav .pc_menu_icon {
    display: none;
  }
}
.pc_nav .pc_menu_icon img {
  width: auto;
  height: 30px;
  margin: 0 0.2em;
}

.css-carousel-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.css-carousel-slider img {
  width: 100%;
  height: 90vh;
  max-height: 900px;
  vertical-align: top;
}
@media screen and (max-width: 999px) {
  .css-carousel-slider img {
    height: 80vh;
    max-height: 1080px;
  }
}
.css-carousel-slider .slide-wrap {
  width: 400%; /* 画像の合計数*100% */
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  z-index: 0;
  animation: css-carousel-slider 25s infinite; /* スライダーアニメーション全体の時間(3) */
  animation-delay: 2.5s; /* スライダーが始まるまでの時間(4) */
}

/* スライド設定 */
.css-carousel-slider .css-carousel-slider .slide-wrap-main {
  width: 100%;
  margin: 0 auto;
  z-index: 1;
  animation: css-carousel-slider-main 25s infinite; /* (3) */
  animation-delay: 2.5s; /* (4) */
}

.css-carousel-slider .slide {
  width: 100%;
  margin: 0 auto;
}

/* アニメーション */
@keyframes css-carousel-slider {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-25%);
  }
  25% {
    transform: translateX(-25%);
  }
  45% {
    transform: translateX(-50%);
  }
  50% {
    transform: translateX(-50%);
  }
  70% {
    transform: translateX(-75%);
  }
  75% {
    transform: translateX(-75%);
  }
  95% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes css-carousel-slider-main {
  0% {
    transform: translateX(100%);
  }
  75% {
    transform: translateX(100%);
  }
  95% {
    transform: translateX(0%);
  }
}
body {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

html {
  font-size: 16px;
  line-height: 1.6em;
}

img {
  object-fit: cover;
}

.posi_re {
  position: relative;
}

/* grid layout */
.grid_base {
  width: 1500px;
  max-width: 90%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
}
.grid_base .grid2_1 {
  width: 48%;
}
.grid_base .grid3_1 {
  width: 31.3333333333%;
}
.grid_base .grid3_2 {
  width: 64.6666666667%;
}
.grid_base .grid4_1 {
  width: 22.5%;
}
.grid_base .grid4_3 {
  width: 73%;
}
.grid_base .grid2_1,
.grid_base .grid3_1,
.grid_base .grid3_2,
.grid_base .grid4_1,
.grid_base .grid4_3 {
  overflow: hidden;
  margin-left: 3%;
}
@media screen and (max-width: 787px) {
  .grid_base .grid2_1,
  .grid_base .grid3_1,
  .grid_base .grid3_2,
  .grid_base .grid4_1,
  .grid_base .grid4_3 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 999px) {
  .grid_base .grid2_1,
  .grid_base .grid3_1,
  .grid_base .grid3_2 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .grid_base .grid2_1:first-child,
  .grid_base .grid3_1:first-child,
  .grid_base .grid3_2:first-child {
    margin-left: auto;
  }
  .grid_base .grid2_1 img,
  .grid_base .grid3_1 img,
  .grid_base .grid3_2 img {
    width: 80%;
  }
}
@media screen and (max-width: 787px) {
  .grid_base .grid2_1,
  .grid_base .grid3_1,
  .grid_base .grid3_2 {
    width: 100%;
  }
  .grid_base .grid2_1 img,
  .grid_base .grid3_1 img,
  .grid_base .grid3_2 img {
    width: 100%;
  }
}
.grid_base .grid2_1:first-child,
.grid_base .grid2_1:nth-child(2n+1),
.grid_base .grid3_1:first-child,
.grid_base .grid4_1:first-child,
.grid_base .grid4_1:nth-child(4n+1) {
  margin-left: 0;
}
@media screen and (max-width: 999px) {
  .grid_base .grid2_1:first-child,
  .grid_base .grid2_1:nth-child(2n+1),
  .grid_base .grid3_1:first-child,
  .grid_base .grid4_1:first-child,
  .grid_base .grid4_1:nth-child(4n+1) {
    margin-left: auto;
    margin-right: auto;
  }
}
.grid_base img {
  max-width: 100%;
}

/* mds */
h2.mds02 {
  color: #69443c;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6em;
  padding: 1.5em 0;
}
h2.mds02 .en {
  color: #b3a498;
  font-family: "UoqMunThenKhung", serif;
  font-size: 3.75rem;
  font-weight: 400;
}

h3.mds03 {
  color: #69443c;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  font-weight: 600;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.4em;
  margin: 1em auto;
}
@media screen and (max-width: 999px) {
  h3.mds03 {
    font-size: 1.25rem;
  }
}

/* text */
.tac {
  text-align: center;
}

.txt_mini {
  color: #69443c;
  font-size: 95%;
}

.txt_mini2 {
  color: #69443c;
  font-size: 80%;
}
@media screen and (max-width: 999px) {
  .txt_mini2 {
    font-size: 75%;
  }
}

.txt_atn {
  display: inline-block;
  text-indent: -1em;
  margin-left: 1em;
}
.txt_atn::before {
  content: "※";
}

/* img */
.img_bdr img {
  border: 1px solid #C3C2C0;
}

/* margin */
.mlrauto {
  margin-left: auto;
  margin-right: auto;
}

.mt30 {
  margin-top: 30px;
}

.mb05em {
  margin-bottom: 0.5em;
}

.mb1em {
  margin-bottom: 1em;
}

.mb2em {
  margin-bottom: 2em;
}

.mb50 {
  margin-bottom: 50px;
}

/* 〇btn */
.contact_btn a {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  background: #8D7B68;
  font-weight: 600;
  position: fixed;
  right: 3%;
  bottom: 4%;
  color: #fff;
  border: 4px double #fff;
  border-radius: 50%;
  width: 160px;
  height: 160px;
  display: block;
  padding: 1.3em 1em;
  font-size: 1.25rem;
  text-align: center;
  line-height: 1em;
  z-index: 5;
}
@media screen and (max-width: 787px) {
  .contact_btn a {
    font-weight: 500;
    right: 2.5%;
    bottom: 2.5%;
    width: 110px;
    height: 110px;
    padding: 0.8em 0.5em 0;
    font-size: 1rem;
  }
}
.contact_btn a span {
  font-size: 0.9em;
  margin-top: 0.7em;
  display: inline-block;
}
.contact_btn a:hover {
  background: #827055;
}

/* □btn */
.square_btn {
  font-family: "UoqMunThenKhung", serif;
  background: #8D7B68;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto 2em;
  max-width: 90%;
  border: 4px double #F5F0E8;
  font-size: 1.2rem;
}
.square_btn a {
  display: block;
  text-align: center;
  padding: 1em;
  width: 100%;
}
.square_btn:hover {
  background: #827055;
}

/* icon */
.exlink {
  display: inline-block;
  position: relative;
  padding-right: 1.5em;
}
.exlink::before, .exlink::after {
  content: "";
  position: absolute;
  border: 1px solid #F5F0E8;
  display: block;
  top: 50%;
  width: 0.7em;
  height: 0.5em;
  transform: translateY(-50%);
}
.exlink::before {
  right: 0px;
  margin-top: -0.1em;
}
.exlink::after {
  right: 0.18em;
  margin-top: 0.05em;
}
.exlink.on_btn::before {
  right: 1em;
}
.exlink.on_btn::after {
  right: 1.18em;
}

.exlink.col_bl::before, .exlink.col_bl::after {
  border: 1px solid #000;
}

/* TOP */
.top_area .fv {
  position: relative;
}
.top_area .fv .fv_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.top_area .fv .fv_logo img {
  max-width: 300px;
}
@media screen and (max-width: 999px) {
  .top_area .fv .fv_logo img {
    max-width: 50vw;
  }
}
.top_area .concept {
  background: #F5F0E8;
  padding: 2em 0 100px;
}
.top_area .concept h2 {
  color: #b3a498;
  font-family: "UoqMunThenKhung", serif;
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 0.2em;
  z-index: 1;
}
.top_area .concept h3 {
  color: #69443c;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  position: relative;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1em;
  line-height: 1.6em;
  z-index: 2;
}
@media screen and (max-width: 787px) {
  .top_area .concept h3 {
    font-size: 1.125rem;
  }
}
.top_area .concept h3 span.line {
  border-bottom: 2px solid #C8B6A6;
}
.top_area .concept h3 span.symbol {
  font-size: 80%;
}
.top_area .concept p {
  text-align: center;
}
@media screen and (max-width: 787px) {
  .top_area .concept p {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ABOUT */
.about_area {
  padding-bottom: 100px;
}
.about_area .feature .grid3_1 img {
  width: 100%;
  max-width: 600px;
}
@media screen and (max-width: 999px) {
  .about_area .feature .grid3_1 {
    margin-bottom: 40px;
  }
}
.about_area .feature p {
  max-width: 93%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 999px) {
  .about_area .feature p {
    max-width: 100%;
  }
}
.about_area .feature .number {
  font-family: "UoqMunThenKhung", serif;
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 2;
  color: #fff;
  font-size: 3.75rem;
}
.about_area .feature .number span {
  display: inline-block;
  font-size: 1.5rem;
  margin-bottom: 0.5em;
}
.about_area .prof_area {
  background: #F7F6F5;
  max-width: 75%;
  padding: 2em;
  margin-top: 50px;
}
@media screen and (max-width: 999px) {
  .about_area .prof_area {
    max-width: 94%;
    padding: 2em 1em;
    margin-top: 10px;
  }
}
.about_area .prof_area img {
  border-radius: 50%;
  width: 80%;
  height: auto;
  max-width: 500px;
}
@media screen and (max-width: 999px) {
  .about_area .prof_area img {
    width: 50%;
  }
}
@media screen and (max-width: 787px) {
  .about_area .prof_area img {
    width: 80%;
  }
}
.about_area .prof_area h4 {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  color: #69443c;
  font-size: 1.5rem;
  margin: 0.5em auto;
}
.about_area .prof_area h4 span {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 60%;
  display: inline-block;
  margin-bottom: 0.2em;
}
.about_area .prof_area .qualification {
  color: #69443c;
  font-size: 80%;
  text-align: center;
  text-indent: -1em;
  margin-left: 1em;
}
.about_area .prof_area .qualification::before {
  content: "■";
  padding-right: 0.25em;
}

/* MENU */
.menu_area {
  padding-bottom: 100px;
}
.menu_area .menu img {
  margin-top: 30px;
  width: 100%;
  max-width: 750px;
}
.menu_area .menu p {
  max-width: 88%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 999px) {
  .menu_area .menu p {
    max-width: 95%;
  }
}
.menu_area .menu .price {
  width: 88%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 999px) {
  .menu_area .menu .price {
    width: 100%;
  }
}
.menu_area .menu .price tr.table_line_t {
  border-top: 1px solid #C8B6A6;
}
.menu_area .menu .price tr.table_line_b {
  border-bottom: 1px solid #C8B6A6;
}
.menu_area .menu .price tr th {
  color: #69443c;
  padding: 1em 1em 0.5em;
}
@media screen and (max-width: 999px) {
  .menu_area .menu .price tr th {
    width: 100%;
    display: block;
    padding: 0 1em 0;
  }
  .menu_area .menu .price tr th:first-child {
    padding-top: 0.5em;
  }
}
.menu_area .menu .price tr td {
  padding: 0 1em 1em;
  font-size: 90%;
}
@media screen and (max-width: 999px) {
  .menu_area .menu .price tr td {
    width: 100%;
    display: block;
  }
}
.menu_area .menu .price tr td:first-child {
  width: 40%;
}
@media screen and (max-width: 999px) {
  .menu_area .menu .price tr td:first-child {
    width: 100%;
  }
}
.menu_area .menu .price span {
  font-size: 85%;
}

/* CASE */
.case_area {
  padding-bottom: 100px;
}
@media screen and (max-width: 999px) {
  .case_area .grid4_1 {
    width: 48%;
  }
  .case_area .grid4_1:nth-child(2n+1) {
    margin-left: 0;
  }
}
@media screen and (max-width: 787px) {
  .case_area .grid4_1 {
    width: 100%;
  }
}
@media screen and (max-width: 787px) {
  .case_area img {
    width: 90%;
    max-width: 1000px;
  }
}
.case_area .comment {
  background: #F7F6F5;
  padding: 1em 0.5em;
  text-align: center;
}
.case_area .comment h3 {
  background: #fff;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.case_area .comment p {
  font-size: 85%;
}
.case_area .comment span {
  border-top: 3px solid #fff;
  display: block;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding-top: 0.5em;
}

/* Q&A */
.qa_area {
  padding-bottom: 100px;
}
.qa_area .question {
  max-width: 70%;
  margin: 1em auto;
}
@media screen and (max-width: 999px) {
  .qa_area .question {
    max-width: 90%;
  }
}
.qa_area .question .qa_inner {
  width: 100%;
  margin-bottom: 0.5em;
  border: 1px solid #C3C2C0;
}
.qa_area .question .qa_inner[open] summary::after {
  transform: rotate(225deg);
}
.qa_area .question .qa_inner[open] p {
  transform: none;
  opacity: 1;
  background: #F7F6F5;
}
.qa_area .question .qa_inner p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 1em 0.5em 1.5em 3em;
  color: #333;
  background: #fff;
  transition: transform 0.5s, opacity 0.5s;
}
.qa_area .question .qa_inner p::before {
  line-height: 1.2;
  content: "A";
}
.qa_area .question summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em 1em 3em;
  color: #333333;
  cursor: pointer;
  background: #fff;
}
.qa_area .question summary::before {
  content: "Q";
}
.qa_area .question summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-bottom: 2px solid #69443c;
  border-right: 2px solid #69443c;
  content: "";
  transition: transform 0.5s;
}
.qa_area .question summary::before,
.qa_area .question p::before {
  position: absolute;
  left: 1em;
  font-size: 1.25rem;
  font-weight: 400;
  color: #69443c;
}

/* ACCESS */
.access_area {
  padding-bottom: 100px;
}
.access_area .gmap {
  max-width: 90%;
  margin: 0 auto 50px;
}
.access_area .gmap iframe {
  width: 100%;
  height: 60vh;
}
@media screen and (max-width: 999px) {
  .access_area .gmap iframe {
    height: 70vh;
  }
}
.access_area .spec {
  max-width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 999px) {
  .access_area .spec {
    max-width: 100%;
  }
}
.access_area .spec .grid_base {
  padding: 1.5em 0;
  border-bottom: 1px solid #F5F0E8;
}
.access_area .spec .grid_base:first-child {
  padding: 0 0 1.5em;
}
.access_area .spec .grid_base:last-child {
  border-bottom: none;
  padding: 1.5em 0 0;
}
.access_area .spec .grid_base .grid4_1 {
  background: #F7F6F5;
}
.access_area .spec .grid_base .grid4_3 {
  margin: 1em auto;
}
.access_area .spec .grid_base .grid4_3 p {
  margin-left: 1em;
}
@media screen and (max-width: 999px) {
  .access_area .spec .grid_base .grid4_3 p {
    margin-left: 0;
  }
}
.access_area .spec .grid_base h3 {
  color: #69443c;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  font-weight: 600;
  font-size: 1.125rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 999px) {
  .access_area .spec .grid_base h3 {
    position: static;
    transform: none;
    padding: 1em;
    text-align: center;
  }
}
.access_area .spec .grid_base h4 {
  color: #69443c;
  font-weight: 500;
}
.access_area .spec .grid_base h4::before {
  content: "■";
  margin-right: 5px;
}
.access_area .spec .grid_base h5 {
  font-weight: 500;
  margin-left: 1em;
}
@media screen and (max-width: 999px) {
  .access_area .spec .grid_base h5 {
    margin-left: 0;
  }
}

/* CONTACT */
.contact_area {
  padding-bottom: 200px;
}

footer {
  background: #8D7B68;
  color: #fff;
  padding: 1em;
}

#about,
#menu,
#case,
#qa,
#access,
#contact {
  margin-top: -60px;
  padding-top: 60px;
}

#about,
#case,
#access {
  background: #fff;
}

#menu,
#qa,
#contact {
  background: #F5F0E8;
}/*# sourceMappingURL=style.css.map */