@charset "UTF-8";
/*=============================================*/
/*import */
/*=============================================*/
/*=============================================*/
/*Reset CSS*/
/*=============================================*/
article, aside, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, main {
  display: block;
}

blockquote, body, dd, div, dl, dt, fieldset, figure, form, h1, h2, h3, h4, h5, h6, input, li, ol, p, pre, td, textarea, th, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

li {
  list-style: none;
}

a,
a:link {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  height: auto;
  vertical-align: bottom;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

button, input, select, textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input[type=radio]::-ms-check,
input[type=checkbox]::-ms-check {
  display: none;
}

i {
  font-style: normal;
}

textarea {
  resize: none;
  font-family: sans-serif;
}

* {
  box-sizing: border-box;
}

/*=============================================*/
/*Common Base*/
/*=============================================*/
html {
  font-size: 62.5%;
  overflow: auto;
}

body {
  margin: auto;
  width: auto;
  font-family: "Zen Kaku Gothic New", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  color: #0E131B;
  font-size: 16px;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

a, b, dd, dt, li, p, span, td, th {
  letter-spacing: 0.1em;
  font-size: 1em;
  line-height: 1.2;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0.1em;
  color: inherit;
}

@media screen and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
}
@media print, screen and (min-width: 769px) {
  .sp_only {
    display: none !important;
  }
}
.center {
  margin: auto;
  text-align: center;
  line-height: 180%;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.txt_base {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
}
.txt_base p {
  line-height: 2.2;
  color: inherit;
  font-size: 1em;
}
.txt_base p:not(:last-child) {
  margin-bottom: 1.5em;
}
.txt_base.white {
  color: #fff;
}
.txt_base.fs14 {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
}
.txt_base.fs15 {
  font-size: clamp(1.3rem, 2vw, 1.5rem);
}
.txt_base.fs18 {
  font-size: clamp(1.5rem, 2vw, 1.8rem);
}
.txt_base.pc_center {
  text-align: center;
}
@media (max-width: 768px) {
  .txt_base.pc_center {
    text-align: left;
  }
}

.mb20 {
  margin-bottom: 20px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.tel_link,
.tel_link a {
  color: inherit;
  font-size: 1em;
}

/*=============================================*/
/*  layout  Base                        */
/*=============================================*/
.main_width {
  width: calc(100% - 60px);
  max-width: 1200px;
  margin: auto;
}
@media (max-width: 768px) {
  .main_width {
    width: calc(100% - 40px);
  }
}
.main_width .main_width {
  width: 100%;
}
.main_width.size900 {
  max-width: 900px;
}
.main_width.size1000 {
  max-width: 1000px;
}
.main_width.size1500 {
  max-width: 1500px;
}

section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

/********************************************/
/* body fixed*/
/********************************************/
@media (max-width: 768px) {
  body {
    width: 100%;
  }
  body.fixed {
    position: fixed;
    width: 100%;
  }
}
/*=============================================*/
/*  layout                               */
/*=============================================*/
/********************************************/
/*header */
/********************************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 50px 48px;
  z-index: 9990;
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .header {
    padding: 10px 20px;
  }
}
.header .logo {
  position: relative;
  width: 10%;
  max-width: 160px;
  z-index: 9999;
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .header .logo {
    width: 20%;
    max-width: 68px;
  }
}
.header .logo a {
  display: block;
  transition: all 0.3s;
}
.header .logo a:hover {
  opacity: 0.7;
}
.header:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, transparent, #023562 40%);
  z-index: -1;
  opacity: 0;
  transition: all 0.3s;
}

.header.page_header {
  align-items: center;
  padding: 10px 20px;
}
.header.page_header .logo {
  width: 20%;
  max-width: 68px;
}

.header.is-scroll {
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 22px;
}
@media (max-width: 1024px) {
  .header.is-scroll {
    padding: 10px 20px;
  }
}
.header.is-scroll .logo {
  max-width: 68px;
}
.header.is-scroll:after {
  opacity: 1;
}

.nav_list {
  display: flex;
  justify-content: space-between;
}
.nav_list > li {
  color: #fff;
  font-size: 1.5rem;
}
.nav_list > li:not(:last-child) {
  margin-right: 2em;
}
.nav_list > li > a {
  font-size: 1em;
  font-weight: 500;
  padding: 0.3em 0;
  text-align: center;
  color: inherit;
  transition: all 0.3s;
}
.nav_list > li > a:hover {
  color: #B7AB9A;
}
.nav_list .shop a {
  border-bottom: solid 1px #fff;
}
.nav_list .shop a:before {
  position: relative;
  top: 3px;
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 5px;
  background: url(../img/common/shop-ico.svg) no-repeat center/cover;
  transition: all 0.3s;
}
.nav_list .shop a:hover {
  border-color: #B7AB9A;
}
.nav_list .shop a:hover:before {
  background: url(../img/common/shop-ico-secondary.svg) no-repeat center/cover;
}
.nav_list .instagram {
  display: none;
  font-size: 2.2rem;
  color: #B7AB9A;
}
.nav_list .instagram a {
  font-size: 1em;
}

/********************************************/
/*  Sp-menu*/
/********************************************/
.sp_menu_trigger,
.sp_nav {
  display: none;
}

/********************************************/
/*  Sp-menu btn*/
/********************************************/
@media (max-width: 1024px) {
  .sp_menu_trigger,
  .sp_menu_trigger span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
    cursor: pointer;
  }
  .sp_menu_trigger {
    position: fixed;
    top: 23px;
    right: 20px;
    width: 35px;
    height: 30px;
    z-index: 9999;
    transition: all 0.3s;
  }
  .sp_menu_trigger span {
    position: absolute;
    background: #fff;
    width: 100%;
    height: 1px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .sp_menu_trigger span:nth-of-type(1) {
    top: 6px;
  }
  .sp_menu_trigger span:nth-of-type(2) {
    top: 0;
    bottom: 0;
  }
  .sp_menu_trigger span:nth-of-type(3) {
    bottom: 6px;
  }
  .sp_menu_trigger.nogap {
    top: 0;
    right: 0;
  }
  .sp_menu_trigger.active span:nth-of-type(1) {
    transform: translateY(9px) rotate(-330deg);
  }
  .sp_menu_trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .sp_menu_trigger.active span:nth-of-type(3) {
    transform: translateY(-9px) rotate(330deg);
  }
}
/********************************************/
/*  Sp-menu list*/
/********************************************/
@media (max-width: 1024px) {
  header .main_nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #023562;
    width: 100vw;
    height: 100vh;
    -webkit-overflow-scrolling: touch;
    z-index: 9998;
    overflow-y: scroll;
    padding: 100px 30px 60px;
    box-sizing: border-box;
    text-align: left;
  }
  .nav_list > li {
    display: block;
    padding: 0.7em 0;
    text-align: center;
  }
  .nav_list > li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .nav_list {
    width: 100%;
    display: block;
    overflow: hidden;
  }
  .nav_list .instagram {
    display: block;
  }
}
@media (max-width: 768px) {
  header .main_nav {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/********************************************/
/* loading */
/********************************************/
.loading {
  /*ローディング画面の縦横幅を画面いっぱいになるように指定*/
  width: 100vw;
  height: 100vh;
  /*ローディング画面の表示位置を固定*/
  position: fixed;
  top: 0;
  left: 0;
  background: #023562;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /*ローディング画面を0.5秒かけて非表示にする*/
  transition: all 0.5s;
  z-index: 9999;
}
.loading .img {
  animation: opacity 0.5s linear;
}

/* アニメーションの設定 */
@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*ローディング画面を非表示にする*/
.loading.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/********************************************/
/* main_visual */
/********************************************/
.main_visual {
  position: relative;
}
.main_visual:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #B7AB9A;
  opacity: 0.8;
  mix-blend-mode: multiply;
  z-index: 2;
}
.main_visual .swiper .swiper-slide {
  overflow: hidden;
}
.main_visual .swiper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main_visual .mv_logo {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 220px;
  height: 240px;
  margin: auto;
  z-index: 3;
}
.main_visual .txt_area {
  position: absolute;
  bottom: 150px;
  left: 0;
  right: 0;
  z-index: 4;
}
@media (max-width: 1440px) {
  .main_visual .txt_area {
    bottom: 100px;
  }
}
@media (max-width: 1024px) {
  .main_visual .txt_area {
    bottom: 60px;
  }
}
@media (max-width: 768px) {
  .main_visual .txt_area {
    bottom: 25px;
  }
}
.main_visual .txt_area p {
  line-height: 2;
  letter-spacing: 0.16em;
  color: #fff;
  font-size: clamp(2.5rem, 2.5vw, 4.6rem);
  font-weight: 500;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.55);
}

/* Animation */
@keyframes zoomDown {
  0% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes paginationProgressBar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.main_visual .swiper-bg {
  overflow: hidden;
}
.main_visual .swiper-slide-active-prev .swiper-bg img,
.main_visual .swiper-slide-active .swiper-bg img {
  animation: zoomDown 10s linear 0s 1 normal both;
}
.main_visual .swiper-button-prev.swiper-button-disabled-user,
.main_visual .swiper-button-next.swiper-button-disabled-user {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.main_visual .swiper-pagination-not-clickable {
  opacity: 0.5;
  pointer-events: none;
}

/********************************************/
/* top_top_block */
/********************************************/
.top_top_wrapper:after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 565px;
  opacity: 0.8;
  background-image: linear-gradient(0, #023562, rgba(2, 53, 98, 0));
  mix-blend-mode: multiply;
  z-index: 2;
}
@media (max-width: 1024px) {
  .top_top_wrapper:after {
    height: 80px;
  }
}

.top_top_block {
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 1677px;
  padding-top: 150px;
  padding-bottom: 100px;
  z-index: 10;
}
@media (max-width: 768px) {
  .top_top_block {
    display: block;
    padding-top: 0;
    padding-bottom: 20px;
  }
}
.top_top_block .img {
  width: 48%;
}
@media (max-width: 768px) {
  .top_top_block .img {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-bottom: 32px;
  }
}
.top_top_block .txt_box {
  width: 42.6%;
}
@media (max-width: 768px) {
  .top_top_block .txt_box {
    width: 100%;
  }
}
.top_top_block .ttl {
  margin-bottom: 0.8em;
  line-height: 2;
  color: #B7AB9A;
  font-size: clamp(2.4rem, 3vw, 4rem);
  font-weight: 500;
}

/********************************************/
/* about_block */
/********************************************/
.about_block {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-flow: row-reverse;
  flex-wrap: wrap;
  max-width: 1920px;
  margin: auto;
  padding-bottom: 565px;
  padding-left: 18.7%;
  z-index: 10;
}
@media (max-width: 1024px) {
  .about_block {
    padding-bottom: 80px;
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  .about_block {
    display: block;
  }
}
.about_block .txt_box {
  width: 41%;
}
@media (max-width: 1024px) {
  .about_block .txt_box {
    padding-left: 30px;
  }
}
@media (max-width: 768px) {
  .about_block .txt_box {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.about_block .img {
  width: 50%;
}
@media (max-width: 768px) {
  .about_block .img {
    width: 100%;
    margin-bottom: 32px;
  }
}
.about_block .catch_txt {
  margin-bottom: 1em;
  line-height: 2;
  color: #fff;
  font-size: clamp(2rem, 2.5vw, 2.3rem);
}
@media (max-width: 1024px) {
  .about_block .img_box {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    margin-top: 60px;
  }
}
.about_block .img_box .img01 {
  position: absolute;
  left: 0;
  bottom: 340px;
  width: 15%;
  max-width: 286px;
  z-index: 20;
}
@media (max-width: 1024px) {
  .about_block .img_box .img01 {
    position: relative;
    bottom: 0;
    width: 32%;
  }
}
.about_block .img_box .img02 {
  position: absolute;
  bottom: 200px;
  left: 28%;
  width: 26%;
  max-width: 498px;
  z-index: 20;
}
@media (max-width: 1024px) {
  .about_block .img_box .img02 {
    position: relative;
    left: 0;
    bottom: 30px;
    width: 61%;
  }
}

/********************************************/
/* fixed_bg */
/********************************************/
.fixed_bg {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 36%;
  background: url(../img/top/fixed-img.webp) no-repeat center/cover;
  background-attachment: fixed;
}
@media (max-width: 768px) {
  .fixed_bg {
    padding-top: 39%;
    background-attachment: unset;
  }
}
.fixed_bg:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #B7AB9A;
  opacity: 0.8;
  mix-blend-mode: multiply;
}

/********************************************/
/* store_block */
/********************************************/
.store_block {
  position: relative;
  padding: 130px 0;
  z-index: 10;
}
@media (max-width: 768px) {
  .store_block {
    padding: 60px 0;
  }
}
.store_block .store_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 50px;
  row-gap: 50px;
}
.store_block .store_list li {
  width: 48%;
}
@media (max-width: 768px) {
  .store_block .store_list li {
    width: 100%;
  }
}
.store_block .store_list li:nth-child(even) {
  margin-top: 70px;
}
@media (max-width: 768px) {
  .store_block .store_list li:nth-child(even) {
    margin-top: 0;
  }
}
.store_block .store_list li a {
  display: block;
  transition: all 0.3s;
}
.store_block .store_list li a:hover {
  opacity: 0.7;
}
.store_block .store_list li .txt {
  display: block;
  margin-top: 20px;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/********************************************/
/* company_block */
/********************************************/
@media (max-width: 768px) {
  .company_block_wrapper {
    padding-bottom: 66%;
  }
}
.company_block_wrapper:before {
  z-index: 3;
}
.company_block_wrapper:after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 43%;
  height: 100%;
  background: url(../img/top/company-bg.webp) no-repeat center/cover;
  z-index: 1;
}
@media (max-width: 768px) {
  .company_block_wrapper:after {
    top: auto;
    bottom: 0;
    width: 100%;
    height: auto;
    padding-top: 66%;
  }
}

.company_block {
  position: relative;
  width: 57%;
  padding-top: 120px;
  padding-bottom: 120px;
  padding-left: clamp(30px, 50vw - 795px, 165px);
}
@media (max-width: 768px) {
  .company_block {
    width: 100%;
    padding: 75px 20px 30px;
  }
}
.company_block:after {
  position: absolute;
  left: 100%;
  top: 0;
  content: "";
  width: 10%;
  height: 100%;
  background-image: linear-gradient(90deg, #023562, rgba(2, 53, 98, 0));
  z-index: 2;
}
@media (max-width: 768px) {
  .company_block:after {
    left: 0;
    top: 100%;
    width: 100%;
    height: 15%;
    background-image: linear-gradient(0deg, rgba(2, 53, 98, 0), #023562);
  }
}
.company_block .inner {
  position: relative;
  width: 100%;
  max-width: 530px;
  z-index: 10;
}
@media (max-width: 768px) {
  .company_block .inner {
    max-width: 100%;
  }
}

/********************************************/
/* online_store_block */
/********************************************/
.online_store_block {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 0;
  z-index: 10;
}
@media (max-width: 768px) {
  .online_store_block {
    display: block;
  }
}
.online_store_block .img {
  width: 47%;
}
@media (max-width: 768px) {
  .online_store_block .img {
    width: 100%;
  }
}
.online_store_block .img:after {
  padding-top: 105%;
}
@media (max-width: 768px) {
  .online_store_block .img:after {
    content: none;
  }
}
@media (max-width: 768px) {
  .online_store_block .img img {
    position: relative;
    height: auto;
  }
}
.online_store_block .txt_box {
  width: 53%;
  padding: 50px 5%;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .online_store_block .txt_box {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.online_store_block .txt_box .inner {
  width: 100%;
  max-width: 626px;
  margin: auto;
}
@media (max-width: 768px) {
  .online_store_block .txt_box .inner {
    max-width: 100%;
  }
}

/********************************************/
/* footer */
/********************************************/
.footer {
  padding-top: 100px;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  .footer {
    padding-top: 60px;
  }
}
.footer .inner {
  position: relative;
  z-index: 10;
}
.footer .footer_logo {
  width: 30%;
  max-width: 105px;
  margin: 0 auto 60px;
}
@media (max-width: 768px) {
  .footer .footer_logo {
    max-width: 90px;
    margin-bottom: 40px;
  }
}
.footer .footer_logo a {
  transition: all 0.3s;
}
.footer .footer_logo a:hover {
  opacity: 0.7;
}
.footer .footer_link {
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 768px) {
  .footer .footer_link {
    margin-bottom: 20px;
  }
}
.footer .footer_link li {
  display: inline-block;
  color: #fff;
  font-size: clamp(1.4rem, 2vw, 1.5rem);
}
@media (max-width: 768px) {
  .footer .footer_link li {
    display: block;
  }
}
.footer .footer_link li:not(:last-child) {
  margin-right: 33px;
}
@media (max-width: 768px) {
  .footer .footer_link li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.footer .footer_link li a {
  display: block;
  font-weight: 500;
  transition: all 0.3s;
}
.footer .footer_link li a:hover {
  color: #B7AB9A;
}

.footer .shop_link {
  margin-bottom: 40px;
  color: #fff;
  text-align: center;
  font-size: clamp(1.4rem, 2vw, 1.5rem);
}
@media (max-width: 768px) {
  .footer .shop_link {
    margin-bottom: 20px;
  }
}
.footer .shop_link a {
  display: inline-block;
  padding-bottom: 0.3em;
  border-bottom: solid 1px #fff;
  font-weight: 500;
  transition: all 0.3s;
}
.footer .shop_link a:before {
  position: relative;
  top: 3px;
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 5px;
  background: url(../img/common/shop-ico.svg) no-repeat center/cover;
  transition: all 0.3s;
}
.footer .shop_link a:hover {
  border-color: #B7AB9A;
  color: #B7AB9A;
}
.footer .shop_link a:hover:before {
  background: url(../img/common/shop-ico-secondary.svg) no-repeat center/cover;
}
.footer .instagram_link {
  margin-bottom: 60px;
  color: #B7AB9A;
  text-align: center;
  font-size: 1.7rem;
}
.footer .instagram_link i {
  font-size: 1em;
}
.footer .instagram_link a {
  display: inline-block;
  transition: all 0.3s;
}
.footer .instagram_link a:hover {
  opacity: 0.7;
}
.footer .copyright {
  display: block;
  text-align: center;
  letter-spacing: 0.1em;
  color: #fff;
  font-size: 1.1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  opacity: 0.7;
}

/*=============================================*/
/*media query    Tablet */
/*=============================================*/
/*=============================================*/
/*media query    Tablet ipad 5.7inch */
/*=============================================*/
/*=============================================*/
/*media query    SmartPhone */
/*=============================================*//*# sourceMappingURL=style.css.map */