@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
}
body {
  position: relative;
  background-color: #fff;
  overflow-x: hidden
}
.container {
  position: relative;
  overflow-x: hidden;
}
a, h3, small {
  font-size: 1.6rem;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
}
h4 {
  font-size: 1.8rem;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  color: #BA835F;
}
p {
  font-size: 1.6rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  color: #9C7E80;
  line-height: 2;
}
img {
  width: 100%;
}
@media(max-width:599px) {
  p, h4, li {
    font-size: 1.4rem;
  }
}
/*ヘッダー*/
#g-nav {
  display: none;
}
.follow {
  position: fixed;
  z-index: 9000;
  top: calc(50% - 80px);
  left: 40px;
  transition: 0.3s;
}
.follow a {
  display: block;
  writing-mode: vertical-rl;
  font-family: 'Noto Sans JP', sans-serif;
  color: #9C7E80; /*紫色*/
}
.follow a::after {
  content: "";
  display: inline-block;
  transform: rotate(90deg);
  width: 36px;
  height: 36px;
  margin-top: 24px;
  background-image: url("../images/Instagram@2x.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 36px 36px;
}
.follow:hover {
  opacity: 0.7;
}
header {
  top: 0;
  width: 100%;
  height: 88px;
}
.logo {
  width: 18vw;
  cursor: pointer;
}
.logo_sp {
  display: none;
}
.nav_pc1 {
  justify-content: center;
  position: relative;
  height: 88px;
  margin: 0 120px;
  z-index: 9000;
}
.nav_pc ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2% 0;
  border-radius: 20px;
  text-align: left;
  color: #BA835F;
  z-index: 9000;
}
.nav_pc ul li a {
  position: relative;
  font-size: 1.2vw;
}
.nav_pc ul li a::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #BA835F;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
}
.nav_pc ul li a:hover::after {
  transform: scale(1, 1);
}
.nav_pc ul li:last-child a::after, .nav_pc ul li:first-child a::after {
  background: none;
}
.nav_pc1.close {
  display: none;
}
.nav_pc2 {
  display: none;
}
/*JSを使いfixedクラスが付与された際の設定*/
.nav_pc2.fixed {
  display: inline-block;
  position: fixed; /*fixedを設定して固定*/
  justify-content: flex-end;
  z-index: 9000; /*最前面へ*/
  top: 0; /*位置指定*/
  right: 104px; /*位置指定*/
  height: initial;
}
.nav_pc2.fixed ul {
  padding: 16px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.6);
}
.nav_pc2.fixed li {
  margin-right: 40px;
}
.nav_pc2.fixed li:last-child {
  margin-right: 0;
}
.inquiry_btn_header {
  position: relative;
  top: 0;
  padding: 10px 20px;
  display: inline-block;
  border: 1px solid #9C7E80;
  color: #9C7E80;
  background-color: #fff;
  text-decoration: none;
  outline: none;
  border-radius: 20px;
  /*アニメーションの設定*/
  transition: all .3s;
}
.inquiry_btn_header:hover {
  top: 3px;
  color: #fff;
  background-color: #9C7E80;
}
.contact {
  position: fixed;
  z-index: 8999;
  top: calc(50% - 80px);
  transform: translateY(-25px);
  right: 40px;
  background-color: #BA835F;
  border-radius: 2px;
  height: auto;
  font-family: 'Kiwi Maru', serif;
  color: #fff;
  writing-mode: vertical-rl;
}
.contact a {
  display: inline-block;
  padding: 19px 24px;
  line-height: 1;
}
.contact::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 60px;
  background-color: #BA835F;
  border-radius: 50% 50% 50% 50% / 51% 50% 50% 49%;
}
.contact::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 60px;
  background-color: #BA835F;
  border-radius: 50% 50% 50% 50% / 51% 50% 50% 49%;
}
.contact:hover {
  opacity: 0.7;
  transition: 0.5s;
}

@media(min-width:1441px) {
  .nav_pc1 {
    max-width: 1200px;
    margin: 0 auto;
  }
  .nav_pc ul li a {
    font-size: 1.6rem;
  }
  .logo {
    width: 260px
  }
  .nav_pc1 {
    max-width: 1200px;
    margin: 0 auto;
  }
  .nav_pc2.fixed {
    right: calc(50% - 616px);
  }
}
@media(max-width:1024px) {
  header {
    height: 56px;
  }
  .nav_pc {
    display: none;
  }
	.nav_pc2.fixed {
		display: none;
	}
  .logo_sp {
    position: relative;
    display: block;
    top: 10px;
    left: 10px;
    width: 234px;
    height: auto;
    z-index: 8000;
  }
  /*========= ハンバーガー ===============*/
  #g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    display: block;
    z-index: 8888;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -120%;
    width: 72%;
    height: 63vh; /*ナビの高さ*/
    background: #fff;
    /*動き*/
    transition: all 0.6s;
  }
  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive {
    right: 0;
  }
  /*ナビゲーション*/
  #g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 9000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  /*リストのレイアウト設定*/
  #g-nav li {
    list-style: none;
    text-align: center;
    white-space: nowrap;
  }
  #g-nav li a {
    color: #BA835F;
    text-decoration: none;
    padding: 10px;
    display: block;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
  #g-nav li:nth-last-child(1) a, #g-nav li:nth-last-child(2) a {
    color: #9C7E80;
  }
  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    position: fixed;
    z-index: 9998; /*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 46px;
    height: 46px;
    background-color: #BA835F;
    background-position: center;
    background-size: cover;
    border-radius: 50%;
  }
  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 13px;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    width: 45%;
  }
  .openbtn span:nth-of-type(1) {
    top: 14px;
  }
  .openbtn span:nth-of-type(2) {
    top: 22px;
  }
  .openbtn span:nth-of-type(3) {
    top: 30px;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 16px;
    left: 16px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 28px;
    left: 16px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  .inquiry_btn_g-nav {
    padding: 8px 16px;
    margin: 45px 0 16px 0;
    border: solid #9C7E80 1px;
    border-radius: 20px;
  }
  .inquiry_btn_g-nav:hover {
    background-color: #9C7E80;
    color: #fff;
  }
  .IG_btn_g-nav {
    position: relative;
    transform: translateX(6%);
  }
  .IG_btn_g-nav::before {
    content: "";
    position: absolute;
    display: inline-block;
    top: 0;
    bottom: 0;
    left: 4%;
    width: 32px;
    height: 32px;
    background-image: url("../images/Instagram@2x.png");
    background-size: contain;
    background-repeat: no-repeat;
  }
  .g-nav_bg {
    display: none;
  }
  .open {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 8880;
    background: rgba(186, 131, 95, 0.6);
  }
  /*
  .g-nav_bg.open {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 8880;
    background: rgba(186, 131, 95, 0.6);
  }
	*/
  /*========= ハンバーガー終わり ===============*/
  .follow {
    display: none;
  }
  .contact {
    top: initial;
    transform: none;
    right: 0;
    bottom: 130px;
  }
  .contact a {
    padding: 14px;
    font-size: 1.2rem;
  }
  .contact::before {
    content: "";
    position: absolute;
    top: -33px;
    left: 50%;
    transform: translateX(-50%);
    width: 9px;
    height: 40px;
    background-color: #BA835F;
    border-radius: 50% 50% 50% 50% / 51% 50% 50% 49%;
  }
  .contact::after {
    content: "";
    position: absolute;
    bottom: -33px;
    left: 50%;
    transform: translateX(-50%);
    width: 9px;
    height: 40px;
    background-color: #BA835F;
    border-radius: 50% 50% 50% 50% / 51% 50% 50% 49%;
  }
  .contact:hover {
    opacity: 0.7;
    transition: 0.5s;
  }
}
/*ページビジュアル*/
.page_visual_wrap {
  display: flex;
  margin: 90px 120px 130px 120px;
}
.page_visual_bg {
  position: relative;
  width: 54%;
  min-width: 315px;
  height: 420px;
  border-radius: 4px 60px 60px 4px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.page_visual_wrap h1 {
  position: relative;
  display: flex;
  height: 420px;
  margin-left: 14%;
}
.page_visual_wrap h1 img {
  object-fit: contain;
}
.category_sp {
  display: none;
}
@media(min-width:1441px) {
  .page_visual_wrap {
    width: 100%;
    max-width: 1200px;
    margin: 90px auto 130px auto;
  }
}
@media(max-width:1024px) {
  .page_visual_wrap {
    flex-direction: column;
    margin: 40px 0 80px;
  }
  .page_visual_bg {
    width: 84%;
    min-width: 315px;
    border-radius: 0 60px 60px 0;
  }
  .page_visual_wrap h1 {
    display: block;
    width: 182px;
    height: inherit;
    margin: 40px 21% 0 auto;
  }
  .category_pc {
    display: none;
  }
  .category_sp {
    display: block;
  }
}
.fluid1 {
  position: absolute;
  top: -14vw;
  left: -14vw;
  width: 54vw; /*横幅*/
  height: 40vw; /*縦幅*/
  background: #FCEEC4; /*背景色*/
  animation: fluidrotate1 15s ease 0s infinite; /*アニメーションの設定*/
}
@keyframes fluidrotate1 {
  0%, 100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}
.fluid2 {
  position: absolute;
  top: 500px;
  right: -8vw;
  width: 50vw;
  height: 38vw; /*縦幅*/
  background: #FCEEC4; /*背景色*/
  animation: fluidrotate2 15s ease 0s infinite; /*アニメーションの設定*/
}
@keyframes fluidrotate2 {
  0%, 100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}
@media(max-width:1024px) {
  .fluid1 {
    top: -10vw;
    left: -14vw;
    width: 80vw; /*横幅*/
    height: 46vw; /*縦幅*/
  }
  .fluid2 {
    top: 500px;
    right: -15vw;
    width: 80vw;
    height: 40vw; /*縦幅*/
  }
}
@media(max-width:599px) {
  .fluid2 {
    top: 470px;
    right: -15vw;
    width: 98vw;
    height: 50vw;
  }
}
/*フッター*/
footer {
  background-color: #FCEEC4;
}
.footer_container {
  position: relative;
  width: 75%;
  margin: 0 auto;
}
.footer1 {
  position: absolute;
  top: 40px;
  left: 0;
  width: 30%;
  min-width: 295px;
}
.footer1 img {
  margin-bottom: 40px;
}
.footer1 p {
  color: #BA835F;
  font-size: 1.4rem;
  font-weight: 300;
}
.footer_wrapper {
  display: flex;
  justify-content: flex-end;
  width: 54%;
  padding: 40px 0;
  margin: 0 0 0 auto;
  background-color: #FCEEC4;
}
.footer2 {
  line-height: 2;
  padding-right: 16%;
  border-right: dashed #BA835F 2px;
  color: #BA835F;
  transition: 0.3s;
}
.footer2 a:hover {
  opacity: 0.7;
}
.footer3 {
  text-align: center;
  padding-left: 7%;
  line-height: 3;
  color: #9C7E80;
}
.inquiry_btn_footer {
  position: relative;
  padding: 8px 16px;
  border: solid #9C7E80 1px;
  border-radius: 20px;
  font-size: 2.0rem;
  transition: all .3s;
}
.inquiry_btn_footer:hover {
  top: 3px;
  color: #fff;
  background-color: #9C7E80;
}
.IG_btn_footer {
  position: relative;
  font-size: 2.4rem;
}
.IG_btn_footer:hover {
  opacity: 0.7;
}
.IG_btn_footer::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 0;
  bottom: 0;
  left: -40px;
  width: 32px;
  height: 32px;
  background-image: url("../images/Instagram@2x.png");
  background-size: contain;
  background-repeat: no-repeat;
}
#return_btn {
  position: fixed;
  bottom: 20px;
  right: 40px;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
#return_btn a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding-top: 16px;
  background-color: #BA835F;
  background-position: center;
  background-size: cover;
  border-radius: 58% 42% 50% 50% / 40% 60% 40% 60%;
  text-align: center;
  color: #fff;
  line-height: 1.2;
  font-size: 1.4rem;
  transition: all 0.3s;
}
#return_btn :hover {
  opacity: 0.7;
}
#return_btn a::after {
  content: '';
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 10px;
  left: 50%;
  /*矢印の形状*/
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateX(-50%) rotate(-45deg);
}
/*　上に上がる動き　*/
#return_btn.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#return_btn.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
@media(min-width:1441px) {
  .footer_container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
}
@media(max-width:1024px) {
  .footer_container {
    width: 90%;
  }
  .footer1 {
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
  }
  .footer_wrapper {
    justify-content: center;
    align-items: center;
    padding: 120px 0 40px;
    width: 100%;
  }
  .footer1 {
    text-align: center;
  }
  .footer1 img {
    margin-bottom: 150px;
  }
  .footer2 {
    line-height: 2;
    padding: 0 24px 0 0;
    border-right: dashed #BA835F 2px;
    color: #BA835F;
  }
  .footer2 li {
    position: relative;
    z-index: 8000;
  }
  .footer3 li {
    position: relative;
    z-index: 8000;
  }
  #return_btn {
    right: 0px;
  }
}
@media(max-width:599px) {
  .footer1 p {
    line-height: 1;
  }
  .footer2 a {
    font-size: 1.4rem;
  }
  .inquiry_btn_footer {
    padding: 8px 12px;
    border: solid #9C7E80 1px;
    border-radius: 20px;
    font-size: 1.6rem;
  }
  .IG_btn_footer {
    position: relative;
    font-size: 1.8rem;
  }
}
@media(max-width:374px) {
  .footer3 {
    padding-left: 8px;
  }
}