@charset "UTF-8";


/*================================================
 *  一般・共通設定
 ================================================*/
:root {
  --color-red: #c9171e;
  --color-black: #111;
  --color-lite: #f9f9f9;
  --color-white: #fff;
  --mincho: "Noto Serif JP", serif;
  --en: "Cormorant Unicase", serif;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.5rem;
  color: var(--color-black);
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, serif;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.1em;
  font-weight: normal;
  background: var(--color-white);
  overflow-x: hidden;
}

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

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

a {
  color: var(--color-dark);
  text-decoration: none;
}

a:hover {
  opacity: .7;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

a.underline {
  text-decoration: underline;
}

p {
  margin: 0 0 0.5em 0;
}

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

}

img.shadow {
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}

em {
  font-weight: bold;
}

strong {
  font-weight: bold;
}

ul,
ol,
dl {
  margin: 0;
}

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

ol li {
  list-style: decimal;
}

/* タイトル */
h2 {
  font-size: 3rem;
  margin-bottom: 50px;
}

h2 span {
  display: block;
  font-size: 1.2rem;
  font-family: var(--en);
  text-transform: uppercase;
  position: relative;
  padding-left: 20px;
}

h2 span::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-red);
  top: 7px;
  left: 0;
}

h3 {
  font-size: 1.7rem;
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
}

h3::before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-red);
  top: 14px;
  left: 0;
}


@media screen and (max-width:768px) {
  html {
    font-size: 58%;
  }

  .wrap,
  .widewrap {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }

  h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }

  h3::before {
    top: 8px;
  }
}


/* ==================================================
  splash
====================================================*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #fff;
  display: flex;
}

#splash_logo {
  margin: auto;
  width: 80px;
}

@media screen and (max-width:768px) {
  #splash_logo {
    width: 50px;
  }
}

/* =======================================================
* header
* ======================================================= */
#g-nav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: url(../images/bg-header.webp) no-repeat center / cover;
  transition: all 0.3s;
}

#g-nav::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(1, 1, 1, 0.5);
}

#g-nav.panelactive {
  opacity: 1;
  z-index: 99;
}

#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav ul {
  display: none;
}

#g-nav.panelactive ul {
  display: block;
  padding: 130px;
}

#g-nav li {
  line-height: 2;
  position: relative;
  font-family: var(--en);
  text-transform: uppercase;
}

#g-nav li a {
  padding: 10px 0;
  display: block;
  font-size: 4rem;
  color: #fff;
  font-family: var(--en);
}

#g-nav li span {
  font-size: 1.6rem;
  padding-left: 20px;
  font-family: var(--mincho);
}

#g-nav li a:hover::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--color-red);
  top: 40px;
  left: -25px;
}

/* nav_sns */
#g-nav .nav_sns {
  position: absolute;
  bottom: 50px;
  right: 50px;
}

#g-nav .nav_sns div {
  display: inline-block;
  margin: 0 20px;
}

#g-nav .nav_sns div a {
  color: var(--color-white);
}

/*========= ボタンのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 999;
  cursor: pointer;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  top: 30px;
  right: 30px;
  background: var(--color-red);
}

/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 24px;
  height: 1px;
  background: #fff;
  width: 40%;
}

.openbtn span:nth-of-type(1) {
  top: 23px;
}

.openbtn span:nth-of-type(2) {
  top: 31px;
}

.openbtn span:nth-of-type(3) {
  top: 38px;
}

.openbtn span:nth-of-type(3)::after {
  content: "MENU";
  position: absolute;
  top: 6px;
  left: -2px;
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: .15em;
  font-family: var(--en);
}

.openbtn.active span:nth-of-type(1) {
  top: 22px;
  left: 22px;
  transform: translateY(6px) rotate(-45deg);
  width: 40%;
  background: #fff;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 34px;
  left: 23px;
  transform: translateY(-6px) rotate(45deg);
  width: 40%;
  background: #fff;
}

.openbtn.active span:nth-of-type(3)::after {
  content: "CLOSE";
  transform: translateY(0) rotate(-45deg);
  top: 11px;
  left: 20px;
  color: #fff;
}

@media screen and (max-width:768px) {
  #g-nav {
    background-position: center right 20%;
  }

  #g-nav.panelactive #g-nav-list .bg_list {
    display: none;
  }

  #g-nav.panelactive ul {
    padding: 100px 50px 0;
  }

  #g-nav li a {
    font-size: 2.5rem;
    line-height: 1.8;
  }

  #g-nav li span {
    font-size: 1.2rem;
    padding-left: 10px;
  }

  /* nav_sns */
  #g-nav .nav_sns {
    position: static;
    padding: 100px 50px;
    font-size: 1.3rem;
  }

  #g-nav .nav_sns div {
    display: block;
    margin: 10px 0px;
  }

  /* ボタン */
  .openbtn {
    width: 60px;
    height: 60px;
    top: 10px;
    right: 10px;
  }

  .openbtn span {
    left: 18px;
  }

  .openbtn span:nth-of-type(1) {
    top: 17px;
  }

  .openbtn span:nth-of-type(2) {
    top: 23px;
  }

  .openbtn span:nth-of-type(3) {
    top: 29px;
  }

  /* OPEN */
  .openbtn span:nth-of-type(3)::after {
    top: 5px;
    left: -3px;
    font-size: 1rem;
  }

  /* CLOSE */
  .openbtn.active span:nth-of-type(1) {
    left: 17px;
    top: 16px;
  }

  .openbtn.active span:nth-of-type(3) {
    left: 18px;
    top: 27px;
  }

  .openbtn.active span:nth-of-type(3)::after {
    top: 5px;
    left: 11px;
  }
}


/* =======================================================
* section・ボタン
* ======================================================= */
section {
  padding-bottom: 10rem;
  position: relative;
}

.section {
  padding-top: 10rem;
}

/* ボタン */
.btn {
  margin-top: 50px;
}

.link {
  position: relative;
  font-size: 1.2rem;
  padding: 0 15px 0 0;
}

.link img {
  width: 30px;
}

.link span {
  font-family: var(--en);
  text-transform: uppercase;
  font-size: 1.7rem;
}

.link::before {
  background: #555;
  bottom: -5px;
  content: '';
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.link::after {
  background: var(--color-red);
  bottom: -5px;
  content: '';
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  transition: all .4s ease-in-out;
  width: 0;
  z-index: 2;
}

.link:hover::after {
  width: 100%;
}

/* link_white */
.link.link_white {
  color: var(--color-white);
}

.link.link_white::before {
  background: var(--color-white);
}



@media screen and (max-width:768px) {
  section {
    padding-bottom: 7rem;
  }

  .section {
    padding-top: 7rem;
  }
}

/* =======================================================
* main
* ======================================================= */
#main {
  height: 100vh;
  position: relative;
}

.main_catch {
  position: absolute;
  top: 6%;
  left: 3%;
  z-index: 2;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: upright;
  text-orientation: upright;
  font-family: var(--mincho);
  font-size: 2.3rem;
  letter-spacing: .15em;
  text-align: center;
  background: rgb(255 255 255 / 85%);
  padding: 35px 0px;
}

.main_catch-en {
  position: absolute;
  bottom: -130px;
  font-size: 14rem;
  letter-spacing: .1em;
  z-index: 2;
  font-family: var(--en);
  color: rgb(255 255 255 / 60%);
  width: 100%;
  text-align: center;
}

.swiper-wrap {
  margin: 0 calc(50% - 50vw);
  max-width: 100vw;
  position: relative;
  overflow: hidden;
}

@keyframes zoom-in {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  animation: zoom-in 10s linear 0s 1 normal both;
  height: 100vh;
}

.slide-img.slide01 {
  background: url(../images/slide01.webp) no-repeat center/cover;
}

.slide-img.slide02 {
  background: url(../images/slide02.webp) no-repeat center/cover;
}

.slide-img.slide03 {
  background: url(../images/slide03.webp) no-repeat center/cover;
}

.slide-img.slide04 {
  background: url(../images/slide04.webp) no-repeat center/cover;
}

.slide-img.slide05 {
  background: url(../images/slide05.webp) no-repeat center/cover;
}

@media screen and (max-width:1175px) {
  .main_catch-en {
    font-size: 10rem;
  }
}

@media screen and (max-width:768px) {
  .slide-img.slide01 {
    background-position: center left 43%;
  }

  .slide-img.slide02 {
    background-position: center left 30%;
  }

  .main_catch {
    top: 20px;
    left: 20px;
    font-size: 1.8rem;
    padding: 20px 3px;
  }

  .main_catch-en {
    font-size: 9rem;
    line-height: 1;
    bottom: -90px;
  }
}


/*================================================
 *  copy
 ================================================*/
#copy {
  background: url(../images/bg-copy.webp) no-repeat center/cover;
  position: relative;
  z-index: 1;
  padding: 14rem 0 10rem;
}

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

#copy .copy_txt {
  line-height: 2.5;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
}

#copy .copy_txt p {
  margin-bottom: 17px;
}

@media screen and (max-width:768px) {
  #copy .copy_txt {
    line-height: 2.1;
    font-size: 1.5rem;
    text-align: left;
  }

  #copy .copy_txt p {
    margin-bottom: 10px;
  }

  #copy p.japan_logo {
    width: 170px;
    margin: 0 auto 20px;
  }
}

/*================================================
 *  news
 ================================================*/
#news .newsArea {
  width: 60%;
}

#news .newsArea iframe {
  width: 100%;
}

.news_img {
  background: url(../images/img-news.webp) no-repeat center/cover;
  width: 35%;
  position: absolute;
  top: 0;
  right: 0;
  height: 550px;
}

@media screen and (max-width:768px) {
  #news {
    padding-bottom: 0;
  }

  #news .newsArea {
    width: 100%;
  }
  .news_img {
    width: 100%;
    position: static;
    margin: 70px auto 0;
    height: 300px;
  }

}

/*================================================
 *  message
 ================================================*/
#message .message_img {
  width: 27%;
}

#message .message_txt {
  width: 60%;
  margin: 0 auto;
}

#message .message_txt p {
  margin-bottom: 15px;
  line-height: 2;
}

@media screen and (max-width:768px) {
  #message .message_txt {
    width: 100%;
    padding: 0 20px;
  }

  #message .message_txt p {
    margin-bottom: 5px;
    line-height: 1.9;
  }

  #message .message_img {
    width: 60%;
    margin: 20px auto 0 0;
  }
}


/*================================================
 *  phArea
 ================================================*/
#phArea {
  padding-top: 4rem;
}

#phArea .swiper-wrap {
  width: 80%;
  margin: 0 0 0 auto;
  height: 75vh;
}

.slide-img img {
  object-fit: cover;
  height: 75vh;
  width: 100vw;
}

#phArea .phArea_catch {
  font-family: var(--en);
  font-size: 14rem;
  line-height: 1;
  position: absolute;
  bottom: 40px;
  left: 0;
  color: #B2A0D0;
  z-index: 9;
}

@media screen and (max-width:768px) {
  #phArea .phArea_catch {
    font-size: 6rem;
    bottom: auto;
    top: 10px;
  }

  #phArea .swiper-wrap {
    width: 85%;
    height: 60vh;
  }

  .slide-img img {
    height: 60vh;
  }
}

/*================================================
 *  shop
 ================================================*/
#shop .shop_img {
  width: 37%;
  position: relative;
}

#shop .shop_txt {
  width: 50%;
  margin: 0 0 0 auto;
}

#shop .shop_txt p {
  margin-bottom: 15px;
}

#shop h3 {
  font-size: 1.5rem;
  margin: 30px 0 5px;
}

@media screen and (max-width:768px) {
  #shop {
    padding-top: 3rem;
  }

  #shop .shop_txt {
    width: 100%;
    padding: 0 20px;
  }

  #shop .shop_txt p {
    margin-bottom: 5px;
    line-height: 1.9;
  }

  #shop h3 {
    margin: 20px 0 5px;
  }

  #shop .btn {
    text-align: center;
  }

  #shop .shop_img {
    width: 100%;
    margin: 50px auto 0 0;
  }

  #shop .shop_img p:first-child {
    width: 80%;
    margin: 0 auto 20px 0;
  }

  #shop .shop_img p:nth-child(2) {
    width: 80%;
    margin: 0 0 0 auto;
  }
}

/*================================================
 *  product
 ================================================*/
#product {
  background: var(--color-white);
  padding-bottom: 0;
}

#product .flex {
  margin-bottom: 8rem;
}

.product_txt {
  width: 50%;
  padding: 0 5%;
  font-size: 1.4rem;
}

#product .swiper-wrapper {
  transition-timing-function: linear !important
}

@media screen and (max-width:768px) {
  #product .flex {
    margin-bottom: 5rem;
  }

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

/*================================================
 *  sns
 ================================================*/
#sns .snsEmbed {
  width: 900px;
  height: 530px;
  max-width: 100%;
  overflow: scroll;
  margin-bottom: 80px;
}

.japan_logo img {
  max-width: 200px;
  margin: 0 auto;
}

@media screen and (max-width:768px) {
  #sns .snsEmbed {
    margin-bottom: 50px;
  }

  .japan_logo img {
    max-width: 150px;
  }
}

/*================================================
 *  sub_main
 ================================================*/
#sub_main {
  height: 70vh;
  position: relative;
  background-attachment: fixed;
}

#sub_main div {
  position: absolute;
  bottom: 10px;
  left: 30px;
  color: var(--color-white);
  font-size: 1.9rem;
  letter-spacing: .15em;
}

#sub_main div span {
  display: block;
  font-family: var(--en);
  font-size: 12rem;
  line-height: 1;
  text-transform: uppercase;
}


@media screen and (max-width:768px) {
  #sub_main {
    background-attachment: unset;
  }

  #sub_main div {
    left: 20px;
    font-size: 1.6rem;
  }

  #sub_main div span {
    font-size: 6rem;
  }
}



/*================================================
 *  footer
 ================================================*/
footer {
  padding: 8rem 0 5rem;
  background: url(../images/bg-footer.webp) no-repeat center/ cover;
  position: relative;
  z-index: 1;
  color: var(--color-white);
  text-align: center;
}

footer a {
  color: var(--color-white);
}

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

.footer_logo {
  width: 100px;
  margin: 0 auto 30px;
}

.footer_menu li {
  display: inline-block;
  margin: 0 10px;
  font-size: 1.3rem;
}

.copyright {
  margin-top: 50px;
  font-size: 1rem;
  letter-spacing: .15em;
}

@media screen and (max-width:768px) {
  footer {
    padding: 6rem 0 4rem;
  }

  .footer_logo {
    width: 70px;
    margin: 0 auto 20px;
  }

  .footer_menu li {
    display: block;
    margin: 0 20px 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgb(249 249 249 / 20%);
    padding: 0px 0 5px 25px;
    position: relative;
  }

  .footer_menu li::before {
    position: absolute;
    content: "-";
    top: 0;
    left: 10px;
    color: var(--color-lite);
  }
}

/*================================================
 *  pagetop
 ================================================*/
#pagetop {
  position: fixed;
  right: 15px;
  bottom: 10px;
  cursor: pointer;
  overflow: visible !important;
  z-index: 98;
}

#pagetop .arrow-up {
  width: 15px;
  height: 15px;
  border: 1px solid;
  border-color: var(--color-red) var(--color-red) transparent transparent;
  transform: rotate(-45deg);
}