@charset "UTF-8";

:root {
  --easing: cubic-bezier(.2, 1, .2, 1);
  --transition: .8s var(--easing);
  --dblue: #002257;
  --blue: #1D2087;
  --lblue: #c1d2e9;
  --gray: #9ca5b9;
  --dgray: #949495;
  --whiteh: rgba(255, 255, 255, 0.644);
}

html {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Meiryo","Hiragino Kaku Gothic ProN","MS PGothic",sans-serif;
  color: black;
  text-transform: none;
  line-height: 1.4;
  word-break: break-word;
}

@keyframes scroll-lock {
  from { overflow: hidden; }
  to { overflow: visible; }
}

@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Zen Kaku Gothic Antique';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/zen-kaku-gothic-antique-v13-japanese-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/zen-kaku-gothic-antique-v13-japanese-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/zen-kaku-gothic-antique-v13-japanese-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/zen-kaku-gothic-antique-v13-japanese-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/zen-kaku-gothic-antique-v13-japanese-700.svg#ZenKakuGothicAntique') format('svg'); /* Legacy iOS */
}

@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/oswald-v49-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/oswald-v49-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/oswald-v49-latin-500.woff') format('woff'), /* Modern Browsers */
       url('../fonts/oswald-v49-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/oswald-v49-latin-500.svg#Oswald') format('svg'); /* Legacy iOS */
}

@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Zen Old Mincho';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/zen-old-mincho-v11-japanese-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/zen-old-mincho-v11-japanese-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/zen-old-mincho-v11-japanese-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/zen-old-mincho-v11-japanese-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/zen-old-mincho-v11-japanese-regular.svg#ZenOldMincho') format('svg'); /* Legacy iOS */
}

/*Wrapper
--------------------------------------------------*/

.all-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg-image {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100vw;
  height: 100vh;
  background: url(../images/main0.webp) no-repeat;
  background-size: cover;
  background-position: center;

} @media (orientation: portrait) {
  .bg-image {
    background: url(../images/main0sp.webp) no-repeat;
    background-size: cover;
    background-position: center;
  }
}

/*Loader
--------------------------------------------------*/

#loading {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  background: white;
  transition: all 1s;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader,
.loader::before,
.loader::after {
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  animation-fill-mode: both;
  animation: load7 1.8s infinite ease-in-out;
}

.loader {
  position: relative;
  margin: 80px auto;
  font-size: 0.625rem;
  color: var(--lblue);
  text-indent: -9999em;
  transform: translateZ(0);
  animation-delay: -0.16s;
}

.loader::before,
.loader::after {
  content: '';
  position: absolute;
  top: 0;
}

.loader::before {
  left: -3.5em;
  animation-delay: -0.32s;
}

.loader::after {
  left: 3.5em;
}

@-webkit-keyframes load7 {
  0%, 80%, 100% { box-shadow: 0 2.5em 0 -1.3em; }
  40% { box-shadow: 0 2.5em 0 0; }
}

@keyframes load7 {
  0%, 80%, 100% { box-shadow: 0 2.5em 0 -1.3em; }
  40% { box-shadow: 0 2.5em 0 0; }
}

/*Header
--------------------------------------------------*/

header {
  width: 100%;
  height: 100vh;

} @media (700px <= height) and (orientation: portrait) {
  header {
    height: min(65vh, 900px);
  }

} @media (1024 <= width) and (min-aspect-ratio: 16/9) {
  header {
    height: 100vh;
  }
}
header #header_fixed {
	position: fixed;
	background-color: rgba(0,34,87,1);
	width: 100%;
	height: 80px;
	top: -80px;
	right: 0;
	z-index: 99999999;
	transition: .5s;
	color: #ffffff;
	font-size: clamp(0.575rem, 0.484rem + 0.45vw, 1.125rem);
}
header #header_fixed.is-show {
	top: 0;
}
header #header_fixed .header_logo {
	text-align: center;
	padding: 10px 0 0;
}
header #header_fixed .header_marche {
	position: absolute;
	top: 0;
	right: 0;
	width: 170px;
	text-align: center;
	padding: 10px;
}
header #header_fixed  a:hover{
	opacity: 0.5;
}

@media screen and (max-width: 768px) {
	header #header_fixed {
		height: 50px;
		top: -50px;
	}
	header #header_fixed .header_logo {
		padding: 5px 0 0;
	}
	header #header_fixed .header_logo img {
		height: 40px;
	}
	header #header_fixed .header_marche {
		width: 100px;
		padding: 3px;
	}
	header #header_fixed .header_marche img {
		width: 30px;
	}
	
}


.main-image {
  position: relative;
  margin: 0 auto;
  padding: 0;
  z-index: -1;
  opacity: 1;
}

.main-image li {
  position: absolute;
  width: 100%;
  height: 200vh;
}

.main-image li:nth-child(1) {
  filter: blur(20px);
  backdrop-filter: blur(20px);
  transform: translateZ(0);
  animation: blur-anim 3s 0.7s ease forwards;
}

.main-image li:nth-child(2) {
  opacity: 1;
  animation: change-anim 2s 0.5s ease forwards;
}

@keyframes blur-anim {
  100% { 
    filter: blur(0);
    backdrop-filter: blur(0);
  }
}

@keyframes change-anim {
  100% { opacity: 0; }
}

.main-image div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;

} @media (700px <= height) and (orientation: portrait) {
  .main-image div {
    justify-content: center;
    align-items: end;
    height: min(65vh, 900px);
  }

} @media (1024 <= width) and (min-aspect-ratio: 16/9) {
  .main-image div {
    height: 100vh;
  }
}

.main-image img {
  display: block;
  width: min(100%, 768px);
  margin: 0 auto;
}

.main-image li:nth-child(1) img {
  filter: drop-shadow(2px 2px 10px rgb(255, 255, 255));
  transform: translateZ(0);
}

/*Introduction
--------------------------------------------------*/

.intro {
  width: clamp(280px, 90vw, 800px);
  margin: 0 auto;
  text-align: center;
}

.intro h1, .intro h2 {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  color: var(--dblue);
  text-shadow: 2px 2px 10px rgb(255, 255, 255),-2px -2px 10px rgb(255, 255, 255),
  2px 2px 10px rgb(255, 255, 255),-2px -2px 10px rgb(255, 255, 255);
}

.intro h1 {
  font-size: clamp(1.375rem, 0.511rem + 4.32vw, 3.75rem);
}

.intro h2 {
  margin-top: clamp(0.625rem, 0.398rem + 1.14vw, 1.25rem);
  font-size: clamp(1.25rem, 0.568rem + 3.41vw, 3.125rem);
}

.intro h2 span.logo {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
}

.intro p {
  margin-top: 20px;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-size: clamp(1rem, 0.682rem + 1.59vw, 1.875rem);
  text-shadow: 2px 2px 10px rgb(255, 255, 255),-2px -2px 10px rgb(255, 255, 255),
  2px 2px 10px rgb(255, 255, 255),-2px -2px 10px rgb(255, 255, 255),
  2px 2px 10px rgb(255, 255, 255),-2px -2px 10px rgb(255, 255, 255);
}

/*Main
--------------------------------------------------*/

.main {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background-color: 0;
}

.contents {
  width: min(80%, 1200px);
  margin: 65px auto 0;
  padding-top: 30px;
  padding-bottom: 40px;
  background: white;
  border-radius: 20px;
}

.contents h2 {
  margin: 0 auto;
  margin-bottom: 15px;
  color: var(--dgray);
  text-align: center;
}

h2.en {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 1.136rem + 6.82vw, 6.25rem);
}

h2.jp {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-size: clamp(1.125rem, 0.58rem + 2.73vw, 2.625rem);
}

.bg-white { background: white; }
.bg-t { background: var(--whiteh); }

/*Features
--------------------------------------------------*/

.point h3 {
  width: 90%;
  margin: 0 auto;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-size: clamp(1.125rem, 0.58rem + 2.73vw, 2.625rem);
  color: var(--blue);
  
} @media (min-aspect-ratio: 16/9) and (min-width: 1024px) {
  .point h3 {
    width: 80%;
  }
}

ul.point-list li:nth-child(1) {
  margin-bottom: 50px;
}

ul.point-list li p {
  width: 90%;
  margin: 20px auto;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-size: clamp(0.875rem, 0.784rem + 0.45vw, 1.125rem);
  color: black;
  
} @media (min-aspect-ratio: 16/9) and (min-width: 1024px) {
  ul.point-list li p {
    width: 80%;
  }
}

ul.point-list li p br {
  display: none;

} @media (min-aspect-ratio: 16/9) and (min-width: 1024px) {
  ul.point-list li p br {
    display: unset;
  }
}

ul.point-list li p.notes {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: clamp(0.625rem, 0.534rem + 0.45vw, 0.875rem);
}

.point .video_wrapper {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  background: white;
}

.point .video_wrapper video {
  width: 90%;
  filter: drop-shadow(0px 0px rgba(0,0,0,0));
  outline: none;
  border: none;
}

/*HowtoUse
--------------------------------------------------*/

ul.step-list {
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  gap: 20px;
  width: min(90%, 500px);
  margin: 0 auto;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;

} @media (min-aspect-ratio: 16/9) and (min-width: 1024px) {
  ul.step-list {
    flex-direction: row;
    width: 90%;
  }
}

.step-list ul {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
}

.step-list ul li {
  width: 90%;
  margin: 0 auto;
  text-align: left;
}

.step-list span.num {
  margin-right: 5px;
  padding-bottom: 3px;
  font-size: 1.25rem;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  color: var(--dgray);
  border-bottom: var(--dgray) solid 2px;
}

.step-list p {
  font-size: clamp(0.875rem, 0.784rem + 0.45vw, 1.125rem);
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
}

.step-list img{
  display: block;
  width: 90%;
  margin: 0 auto;
}

/*Recommend
--------------------------------------------------*/

.drink h3 {
  width: 100%;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
  color: var(--dblue);
  text-align: center;
}

ul.drink-list {
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  gap: 20px;
  width: min(90%, 500px);
  margin: 0 auto;

} @media (min-aspect-ratio: 16/9) and (min-width: 1024px) {
  ul.drink-list {
    flex-direction: row;
    width: 90%;
  }
}

.drink-list ul {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
}

.drink-list img{
  display: block;
  width: 90%;
  margin: 0 auto;
}

/*Design
--------------------------------------------------*/

.product h3 {
  width: 90%;
  margin: 0 auto 40px;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-size: clamp(1.125rem, 0.58rem + 2.73vw, 2.625rem);
  color: var(--dblue);
  text-align: center;
}

.product hr {
  display: block;
  width: 50px;
  margin: 0 auto 40px;
  border: 1px solid var(--dblue);
  transform: rotate(90deg);

} @media (min-aspect-ratio: 16/9) and (min-width: 1024px) {
  .product hr {
    width: 60px;
  }
}

.product h4 {
  font-size: clamp(0.875rem, 0.648rem + 1.14vw, 1.5rem);
  font-family: 'Zen Old Mincho', serif;
}

ul.product-list {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;

} @media (min-aspect-ratio: 16/9) and (min-width: 1024px) {
  ul.product-list {
    flex-direction: row;
  }
}

ul.variation {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  padding: 20px;
}

.product-list .sv {
  color: #746d6b;
  background: linear-gradient(to right,rgba(175, 175, 175, 0),rgba(175, 175, 175, 1),rgba(175, 175, 175, 0));
}

.product-list .gd {
  color: #73694d;
  background: linear-gradient(to right,rgba(187, 163, 85, 0),rgba(187, 163, 85, 1),rgba(187, 163, 85, 0));
}

@media (min-aspect-ratio: 16/9) and (min-width: 1024px) {
  .gd ul.variation {
    flex-direction: row-reverse;
    gap: 0;
  }
}

ul.variation img {
  width: min(30vw, 300px);
}

.product-slide {
  position: relative;
  width: min(90%, 800px);
  aspect-ratio: 3/2;
  margin: 0 auto 30px;
  overflow: hidden;
}

.slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slide-anim 15s ease infinite;
  opacity: 0;
}

.slide-item:nth-of-type(1) { animation-delay: 0s; }
.slide-item:nth-of-type(2) { animation-delay: 5s; }
.slide-item:nth-of-type(3) { animation-delay: 10s; }

@keyframes slide-anim {
  0% {opacity: 0;}
  16% {opacity: 1;}
  33% {opacity: 1;}
  49% {opacity: 0;}
  100% {opacity: 0;}
}

/*LineUp                                  
--------------------------------------------------*/

.subcontents.spec h2 {
  font-size: clamp(1.875rem, 1.42rem + 2.27vw, 3.125rem);
}

.spec h3 {
  margin: 20px auto;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
  text-align: center;
}

.spec div:nth-of-type(2) {
  margin-top: 50px;
}

.spec figure img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: clamp(150px, 20vh, 300px);
  margin: 5px auto 10px;
  padding: 10px;
}	

ul.spec-list {
  display: grid;
  grid-template-columns: max-content 1fr;
  justify-content: space-between;
  justify-items: start;
  gap: 5px 10px;
  width: max-content;
  margin: 0 auto 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: clamp(0.625rem, 0.489rem + 0.68vw, 1rem);
  color: black;
}

ul.spec-list li:nth-child(2n+1) {
  width: 100%;
  text-align: right;
}

ul.spec-list li:nth-child(2n) {
  width: 100%;
  text-align: left;
}

span.icon-l {
  margin-right: 5px;
}

.mgc_shopping_cart_2_line::before {
  color: white;
}

.mgc_pdf_fill::before {
  color: white;
}

ul.btn_a {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 auto;

} @media (min-aspect-ratio: 16/9) and (min-width: 1024px) {
  ul.btn_a {
    flex-direction: row;
  }
}

ul.btn_a li a {
  display: block;
  position: relative;
  width: 210px;
  min-height: 50px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-size: clamp(0.75rem, 0.659rem + 0.45vw, 1.125rem);
  color: white;
  text-decoration: none;
  text-align: center;
  background: var(--blue);
  border: none;

} @media (390px <= width) and (orientation: portrait) {
  ul.btn_a li a {
    width: 260px;
  }

} @media (min-aspect-ratio: 16/9) and (min-width: 1024px) {
  ul.btn_a li a {
    width: 400px;
  }
}

ul.btn_a li a::after {
  content: ">";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.btn_a a:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
  transition: all .4s;
  transform: translateZ(0);
}

/*Pagetop
--------------------------------------------------*/

#page-top {
  position: fixed;
  bottom: 0;
  right: 0;
  margin: 0;
  z-index: 9999;
}

#page-top span {
  visibility: hidden;
}

#page-top a {
  position: relative;
  display: block;
  width: 45px;
  height: 45px;
  background: var(--dblue);
  filter: alpha(opacity=85);
  opacity: 0.85;
  transition: opacity .6s ease;
  transform: translateZ(0);
}

#page-top a:hover {
  filter: alpha(opacity=60);
  opacity: 0.6;
  transform: translateZ(0);
}

#page-top a::before {
  position: absolute;
  top: 5px;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 10px;
  height: 10px;
  margin: auto;
  content: '';
  transform: rotate(-45deg);
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
}

/*Footer
--------------------------------------------------*/

footer {
  width: 90%;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 20px;
  text-align: center;
}

p.copyright {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-size: clamp(0.625rem, 0.534rem + 0.45vw, 0.875rem);
  color: var(--dblue);
}

.btn_doco {
  width: clamp(120px, 40%, 250px);
  margin: 10px auto 8px;
}

.btn_do {
  width: clamp(100px, 30%, 230px);
  margin: 0px auto 10px;
}