@charset "UTF-8";
/* CSS Document */
/*
page: 1440px
content: 1204px
margin: 118px x 2 (98px + 20px content padding)
*/
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
*, *:after, *:before {
  box-sizing: border-box;
}
body {
  color: #463539; /* RGB */
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: .16rem;
  line-height: 1.8;
  text-align: left;
  vertical-align: baseline;
  background-image: url("../images/common/ns-bg-2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
img {
  width: 100%
}
.img-radius {
  border-radius: 8px;
}
a:hover {
  opacity: 0.5;
}
.none {
  display: none;
}
/*open-new-windowロゴの前の余白*/
.title {
  padding-right: 10px
}
h3 {
  font-size: 2.4rem;
  letter-spacing: .3rem;
  line-height: 4.5rem;
  font-weight: 400;
  margin-bottom: 30px;
}
h3 span {
  display: inline-block;
}
 .pc-view {
    display: none;
  }
@media(min-width:1000px) {
  body {
    font-size: 1.8rem;
    letter-spacing: .18rem;
  }
  h3 {
    font-size: 3.2rem;
    letter-spacing: .5rem;
    line-height: 5.6rem;
    margin-bottom: 56px;
  }
   .mobile-view {
    display: none;
  }
  .pc-view {
    display: block;
  }
}
.section-bg {
  background-color: #FFF;
  width: 100%;
}
/*コンテナ―設定*/
.container {
  max-width: 1204px;
  margin: 0 auto;
  padding: 0 24px 160px 24px;
}
@media(min-width:1000px) {
  .container {
    padding: 0 0 160px 0;
  }
}
/* ヘッダー */
.header {
  height: 50px;
  width: 100%;
  z-index: 99; /*z-indexは必ずpositionと併用*/
  position: fixed;
  background-color: rgba(255, 255, 255, .8);
  top: 0; /*positionを指定するときは位置も指定する*/
}
.header .container {
  display: flex;
  position: relative;
  padding: 20px 40px 0;
  line-height: 1.6rem;
}
.header__logo-area .logo {
  display: block;
} /* aタグはインラインなのでブロックへ */
.header__logo-area .logo img {
  height: 25px;
  /* レスポンシブ対応で高さのみ指定 */
  vertical-align: bottom;
}
.nav-content {
  display: none;
}
.facebook-icon img, .instagram-icon img {
  height: 22px;
  width: 22px;
}
/* ヘッダーナビ */
@media (max-width: 1000px) {
  #nav-drawer {
    width: 100%;
    text-align: right;
    position: relative;
  }
  #nav-open {
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 40px;
  }
  #nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 1px;
    width: 25px;
    background: #463539;
    display: block;
    content: "";
  }
  #nav-open span:before {
    bottom: -8px;
  }
  #nav-open span:after {
    bottom: -16px;
  }
  #nav-close {
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
  }
  #nav-content {
    transform: translateX(-120%);
    z-index: 9999;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 55%;
    background-color: #faf4f1;
    text-align: left;
    padding: 20px 0 0 55px;
    transition: 0.3s ease-in-out;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.5);
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    color: #463539;
  }
  .nav-content__title {
    display: block; /*PC版ではdisplay:noneにしている為、モバイルだけ表示*/
    font-size: 2.0rem;
    margin-bottom: 46px;
    color: #463539;
    font-family: 'Shippori Mincho', serif;
  }
  .nav-drawer__link-top {
    display: block; /*PC版ではdisplay:noneにしている為、モバイルだけ表示*/
  }
  #nav-content ul li {
    margin-bottom: 30px;
  }
  #nav-content ul li a {
    text-decoration: none;
    font-size: 1.6rem;
  }
  #nav-input:checked ~ #nav-close {
    display: block;
  }
  #nav-input:checked ~ #nav-content {
    transform: translateX(0%);
  }
}
@media (min-width: 1000px) {
  .header {
    height: 80px;
  }
  .header .container {
    display: flex;
    position: relative;
    padding-top: 40px;
  }
  .nav-drawer {
    margin-left: auto;
    /*
	font-family:'Inter', sans-serif;
    font-weight: 300;
	  font-size:1.5rem;
	  letter-spacing: 0.05rem;*/
  }
  .nav-content {
    display: block;
    align-items: center;
  }
  .nav-content__title {
    display: none;
  }
  .nav-content__list {
    display: flex;
    align-items: center;
    position: relative;
  }
  .nav-content__list > li + li {
    padding-left: 40px;
  }
  .nav-content__list a {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    letter-spacing: 0.05rem;
    display: inline-block;
    transition: all 0.3s;
  }
  .nav-content__list a:hover {
    color: #FF5CB4;
  }
}
.img-pc {
  display: none;
}
@media(min-width:1000px) {
  .img-sp {
    display: none;
  }
  .img-pc {
    display: block;
  }
}
/*ページタイトル*/
.page-ttl {
  padding: 88px 0 80px;
}
.page-ttl-en {
  font-family: 'Inter', sans-serif;
  color: rgba(255, 92, 180, .2);
  font-size: 9.6rem;
  line-height: 10.4rem;
  font-weight: 100;
  height: 0px;
}
.page-ttl-jp {
  font-size: 2.4em;
  letter-spacing: .25rem;
  font-weight: 400;
  padding-top: 45px;
  padding-left: 40px;
}
@media(min-width:1000px) {
  .page-ttl {
    padding: 180px 0 200px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .page-ttl-en {
    font-size: 20.0rem;
    line-height: 13.0rem;
    height: 64px;
  }
  .page-ttl-jp {
    font-size: .3.2rem;
    line-height: 3.2rem;
    letter-spacing: .25rem;
    font-weight: 400;
    padding-top: 40px;
    padding-left: 0px;
  }
}
/*サブタイトル*/
.page-sub-ttl {
  text-align: center;
  margin-bottom: 40px;
}
.page-sub-ttl-en {
  font-family: 'Inter', sans-serif;
  color: rgba(255, 92, 180, .2);
  font-size: 7.2rem;
  line-height: 9.6rem;
  font-weight: 100;
  height: 40px;
}
.page-sub-ttl-jp h2 {
  font-size: 3.2rem;
  letter-spacing: .4rem;
  font-weight: 400;
}
@media(min-width:1000px) {
  .page-sub-ttl {
    text-align: center;
    margin-bottom: 40px;
  }
  .page-sub-ttl-en {
    font-size: 14.4rem;
    line-height: 15.2rem;
    height: 80px;
  }
  .page-sub-ttl-jp h2 {
    font-size: 4.0rem;
    letter-spacing: .37rem;
    font-weight: 400;
  }
}
/*CTAボタン*/
.cta-box {
  padding-right: 10px;
}
.cta-link {
  display: flex;
  justify-content: flex-end;
}
.cta-text {
  letter-spacing: .1em;
  text-align: left;
  display: block;
  height: 50px;
  padding-right: 20px;
  padding-top: 15px;
}
/*CTA-new window*/
.cta-icn-nw {
  width: 10px;
  height: 35px;
}
.link-nw .text {
  padding-right: 7px;
  font-size: 1.6rem;
}
/*contact mobile*/
.section-contact {
  background-color: #FFF;
  display: block;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
}
.contact-bg-sakura-pc {
  display: none;
}
.contact-bg-sakura-mobile {
  max-width: 320px;
  margin: 0 auto;
}
.section-contact__inner {
  flex-grow: 3;
}
.contact-sub-ttl-jp {
  font-size: 3.2rem;
  letter-spacing: .14rem;
  padding-top: 48px;
  padding-bottom: 24px;
}
.contact-sub-ttl-en {
  font-family: 'Inter', sans-serif;
  color: rgba(255, 92, 180, .2);
  letter-spacing: .09rem;
  font-weight: 100;
  height: 15px;
  font-size: 7.2rem;
}
.contact_form {
  background: rgba(255, 92, 180, .2);
  padding: 24px 16px;
  text-align: center;
  border-radius: 120px;
  max-width: 320px;
  margin: 32px auto;
  font-weight: bold;
  font-size: 1.8rem;
}
/*メールボタン*/
.mail-img {
  width: 40px;
}
.mail-cta-btn {
  position: relative;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  padding: 20px;
  text-align: center;
  display: inline-block;
  outline: none;
  transtion: all .5s;
  box-shadow: inset 5px 5px 30px rgba(255, 92, 180, .2), inset -10px -10px 33px rgba(255, 92, 180, .2);
}
.mail-cta-btn:hover {
  color: #fff;
  background-color: #FF5CB4;
  box-shadow: inset 5px 5px 30px rgba(255, 255, 255, .6), inset -10px -10px 33px rgba(255, 255, 255, .8);
}
.mail-cta-btn span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all .2s;
  display: block;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  line-height: 2.4rem;
}
/*差し替わるテキストの設定*/
.mail-cta-btn span:nth-child(2) {
  opacity: 0; /*透過0に*/
}
/*hoverするとテキストが入れ替わる設定*/
.mail-cta-btn:hover span:nth-child(1) {
  opacity: 0; /*透過0に*/
}
.mail-cta-btn:hover span:nth-child(2) {
  opacity: 1; /*不透明に*/
}
/*contact pc*/
@media(min-width:1100px) {
  .section-contact {
    display: flex;
    padding: 0px;
  }
  .contact-bg-sakura-mobile {
    display: none;
  }
  .contact-bg-sakura-pc {
    display: block;
    max-width: 300px;
    flex-grow: 1;
    padding-top: 120px;
  }
  .section-contact__inner {
    flex-grow: 3;
  }
  .contact-sub-ttl-jp {
    font-size: 4.0rem;
    letter-spacing: .14rem;
    padding-top: 156px;
    padding-bottom: 40px;
  }
  .contact-sub-ttl-en {
    letter-spacing: .09rem;
    font-size: 16rem;
  }
  .section-contact__inner p {
    font-size: 1.8rem;
  }
  .contact_form {
    max-width: 400px;
    padding: 32px 8px;
    margin: 24px auto 40px;
  }
  .mail-img {
    width: 50px;
  }
  .mail-cta-btn {
    width: 150px;
    height: 150px;
  }
  .mail-cta-btn span {
    font-size: 1.6rem;
  }
}
/*footer*/
.footer {
  background-color: #ffffff;
  text-align: center;
  font-family: 'Inter', sans-serif;
  letter-spacing: .01rem;
  padding-bottom: 40px;
  padding-top: 40px;
  font-weight: 300;
}
.footer__contact p {
  padding: 20px 24px 0;
}