@charset "utf-8";
html {
  font-size: 62.5%;
}
a:link {
  color: #000;
  text-decoration: underline;
  transition: 0.3s;
}
a:visited {
  color: #000;
  text-decoration: underline;
}
a:hover {
  color: #666;
  text-decoration: none;
}
a[href*="tel:"] {
  cursor: default;
  color: #666;
  text-decoration: none;
}
@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
  }
}
hr {
  width: 100%;
  border: solid 1px #7d7d7d;
  margin: 40px 0;
}
.center {
  text-align: center;
  margin-top: 10px;
}
a img {
  transition: 0.3s;
}
a img:hover {
  opacity: 0.7;
}
picture {
  display: block;
}
.pc_none {
  display: none;
}
.maT10 {
  margin-top: 10px;
}
body {
  font-size: 1.6rem;
  color: #000;
  line-height: 1.8;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  background-color: #f7f7f7;
}
/* ページ自体をふわっと表示 */
body {
  animation: fadein 1s forwards;
}
@keyframes fadein {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
img {
  max-width: 100%;
  height: auto;
}
/* main
------------------------------------------------- */
main {
  max-width: 1920px;
  margin: auto;
  background-image: url("../images/top_bg.jpg");
  background-size: cover;
  width: 100%;
  padding: 180px 4% 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8%;
}
.fadeIn0s {
  animation-name: fadeIn0s;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeIn0s {
  0% {}
  100% {
    opacity: 1;
  }
}
/* ここから時間差フェードインアニメーション */
/* 1秒間かけてフェードイン */
.fadeIn05s {
  animation-name: fadeIn05s;
  animation-delay: 0.5s;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  transform: translateY(-50px);
  opacity: 0;
}
@keyframes fadeIn05s {
  0% {}
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* 香りの美学と酒造りの匠
------------------------------------------------- */
section.about {
  max-width: 1920px;
  margin: auto;
}
.about_flex_wrap {
  background-color: #080808;
}
.about_flex {
  background-image: url("../images/about_bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  color: #FFF;
  padding: 0 10% 0 5%;
  display: flex;
  justify-content: space-between;
  line-height: 2.6;
}
.collabo {
  padding: 500px 0 250px;
  margin-right: 50px;
  max-width: 680px;
  text-shadow: 0px 0px 7px rgba(0, 0, 0, 1);
}
h1.h1_ttl {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 60px;
}
h1.h1_ttl span {
  font-size: 3rem;
  display: block;
  font-weight: 500;
}
h1.h1_ttl strong {
  font-size: 6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.about_flex picture {
  overflow: hidden;
}
.about_flex picture img {
  width: 550px;
  height: calc(100% + 50px);
  object-fit: cover; /* この一行を追加するだけ！ */
  object-position: center;
}
.pala_wrap2 {
  overflow: hidden;
}
.pala_wrap2 img {
  height: calc(100% + 50px) !important;
  width: auto !important;
}
/* 商品説明
------------------------------------------------- */
section.about article {
  padding: 100px 5%;
  display: flex;
  align-items: center;
  gap: 10%;
  background-color: #f7f7f7;
}
section.about article picture {
  width: 45%;
  max-width: 600px;
}
section.about article div {
  width: 45%;
}
section.about article dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;
  margin-bottom: 30px;
}
section.about article dl dt {
  width: 80px;
  box-sizing: content-box;
  margin-bottom: 10px;
  position: relative;
  color: #666;
}
section.about article dl dd {
  width: calc(100% - 100px);
  margin-bottom: 10px;
  border-left: 1px solid #999;
  padding-left: 20px;
}
.btn a {
  color: #fff;
  border: 1px solid #000;
  background-color: #000;
  display: block;
  position: relative;
  max-width: 300px;
  text-align: center;
  padding: 12px 45px;
  text-decoration: none;
  z-index: 999;
  transition: all 0.3s;
  margin: 40px 0;
  letter-spacing: 0.1em;
}
.btn a:hover {
  color: #000;
  border: 1px solid #000;
  background-color: #FFF;
}
.btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 60px;
  height: 1px;
  background: #999;
  transition: all 0.3s ease;
}
.btn a:hover::after {
  animation: OutIn-Line 700ms;
  transition: all 0.3s;
}
.company .btn {
  margin-top: auto;
}
.company .btn a {
  border: 1px solid #999;
}
@keyframes OutIn-Line {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0
  }
  50% {
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0
  }
  50.1% {
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0
  }
}
/* 手法
------------------------------------------------- */
section.method {
  max-width: 1920px;
  margin: auto;
  padding: 250px 10% 0 0;
  background-image: url("../images/mist_right.webp");
  background-position: top right;
  background-repeat: no-repeat;
}
section.method h1.h1_ttl {
  margin-left: 5%;
}
section.method dl {
  line-height: 2.6;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  margin-top: 120px;
}
section.method dl dt {
  width: 55%;
  margin-top: 150px;
}
section.method dl dt picture {
  margin-top: 60px;
  aspect-ratio: 3 / 2;
}
section.method dd {
  width: 35%;
  margin-right: 10%;
  aspect-ratio: 59 / 88;
}
/* 想い
------------------------------------------------- */
section.philosophy {
  max-width: 1920px;
  margin: auto;
  padding: 250px 0;
  position: relative;
}
section.philosophy article {
  padding: 0 10%;
  line-height: 2.6;
  max-width: 1400px;
  margin: 0 auto 100px;
}
.philosophy_photo {
  background-image: url("../images/philosophy_bg.webp");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 150px 5% 0;
  width: 100%;
  text-align: center;
}
.philosophy_photo p {
  xheight: 680px;
  max-width: 1300px;
  overflow: hidden;
  margin: auto;
  aspect-ratio: 65 / 34;
}
.vtl_sign {
  writing-mode: vertical-rl;
  color: #ccc;
  font-size: 7vw;
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  position: absolute;
  left: 0;
  top: 0;
  letter-spacing: 0.1em;
  line-height: 1;
}
/* 誕生の背景
------------------------------------------------- */
section.story {
  width: 100%;
  max-width: 1920px;
  margin: auto;
  padding: 0 0 0 5%;
}
article.story_txt {
  background-image: url("../images/story_bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  width: 100%;
}
.story {
  padding: 150px 5% 150px 5%;
  background-color: #f7f7f7;
  width: 65%;
  line-height: 2.6;
  margin-left: 0.5%;
}
picture.set {
  margin: 5% 0 0 10%;
  aspect-ratio: 5 / 3;
  width: 45%;
}
/* 商品説明
------------------------------------------------- */
.okoh_online {
  padding: 100px 10% 250px 0;
  display: flex;
  align-items: center;
  gap: 10%;
}
.okoh_online picture {
  width: 45%;
}
.okoh_online div {
  width: 45%;
}
.okoh_online dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;
  margin-bottom: 30px;
}
.okoh_online dl dt {
  width: 80px;
  box-sizing: content-box;
  margin-bottom: 10px;
  position: relative;
  color: #666;
}
.okoh_online dl dd {
  width: calc(100% - 100px);
  margin-bottom: 10px;
  border-left: 1px solid #999;
  padding-left: 20px;
}
.okoh_online h1 rt {
  font-size: 100%;
  zoom: 0.3;
}
/* フォトギャラリー
------------------------------------------------- */
/* 横スクロールセクション */
.horizontal-section {
  height: 100vh;
  overflow: hidden;
  position: relative;
  background-color: #FFF;
}
.horizontal-container {
  height: 100%;
  display: flex;
  align-items: center;
}
.horizontal-container img {
  max-width: inherit;
  height: inherit;
}
.horizontal-scroll {
  display: flex;
  width: max-content;
  list-style: none;
  gap: 10px;
}
.scroll-item {
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
/* 会社紹介
------------------------------------------------- */
aside.company {
  padding: 7% 7% 100px 7%;
  background-color: #FFF;
  max-width: 1920px;
  margin: auto;
}
aside.company ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  color: #FFF;
  line-height: 2;
  font-size: 1.5rem;
  position: relative;
}
aside.company ul:before {
  content: "";
  width: 10%;
  height: 1px;
  background-color: #ccc;
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translateX(-75px);
  transform: rotate(45deg);
  z-index: 100;
}
aside.company ul:after {
  content: "";
  width: 10%;
  height: 1px;
  background-color: #ccc;
  position: absolute;
  top: 50%;
  left: 45%;
  transform: rotate(-45deg);
  z-index: 101;
}
aside.company ul li {
  width: 49%;
  padding: 5%;
  background-image: url("../images/company_miyaizumi.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  text-shadow: 0px 0px 7px rgba(0, 0, 0, 1);
}
aside.company ul li:last-child {
  background-image: url("../images/company_nk.webp");
}
aside.company h2 {
  font-weight: 500;
  font-size: 2.6rem;
  margin-bottom: 20px;
}
aside.company h3 {
  font-weight: 500;
  font-size: 1.8rem;
  margin-bottom: 20px;
  line-height: 1.6;
}
.collabo_sign {
  color: #ccc;
  font-size: 7vw;
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: center;
}
/* footer
------------------------------------------------- */
footer {
  padding: 20px 5% 5% 5%;
  font-size: 1.5rem;
  background-color: #FFF;
}
footer ul {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  list-style: none;
}
#f_logo {
  text-align: center;
  margin-bottom: 20px;
}
address {
  text-align: center;
  font-style: normal;
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
}
footer a:link {
  color: #333;
  text-decoration: none;
  -webkit-transition: 0.4s;
}
footer a:visited {
  color: #333;
  text-decoration: none;
}
footer a:hover {
  color: #331577;
  text-decoration: underline;
}






/* movie
------------------------------------------------- */
section.movie {
  width: 100%;
  max-width: 1920px;
  margin: auto;
  padding: 0 5%;
  background-color: #fff;
  text-align: center;
}

.youtubelink {
	position: relative;
	display: inline-block;
	
}
.youtubelink a {
	display: block;
}
.svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
	cursor: pointer;
}
/* アニメーション */
.stroke-solid {
	stroke-dashoffset: 0;
	stroke-dashArray: 300;
	stroke-width: 2px;
	transition: stroke-dashoffset 1s ease, opacity 1s ease;
}
.icon {
	transform: scale(.7);
	transform-origin: 50% 50%;
	transition: transform 200ms ease-out;
}
.youtubelink:hover .stroke-solid {
	opacity: 1;
	stroke-dashoffset: 300;
}
.youtubelink:hover .icon {
	transform: scale(.8);
}