@charset "UTF-8";
/* 共通設定
-------------------------------------------- */
html {
  font-size: clamp(14px, 1.4vw, 19px);
}

body {
  font-family: "fot-tsukuaoldmin-pr6n", "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-weight: 300;
  font-style: normal;
  background-color: #000;
  color: white;
  line-height: 1.85;
  font-size: 1rem;
}

.background-logo {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 335px;
  height: 70vh;
  background-image: url("../img/back-logo.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  z-index: -1;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .background-logo {
    width: 670px;
    height: 80vh;
    background-size: contain;
    left: 0px;
  }
}

section:not(:first-of-type) {
  padding-bottom: 120px;
}
@media screen and (min-width: 768px) {
  section:not(:first-of-type) {
    padding-bottom: 240px;
  }
}

.l-inner {
  max-width: 930px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-title {
  margin: -50px auto 2rem;
  width: 110px;
  height: 110px;
  background-color: #fff;
  color: #000;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.section-title .title {
  writing-mode: vertical-rl;
  display: inline-block;
  font-size: 1.2em;
  padding: 10px;
  line-height: 1.2;
  letter-spacing: 3px;
}
.section-title .title .ft {
  font-size: 2em;
}
@media screen and (min-width: 1024px) {
  .section-title {
    width: 170px;
    height: 170px;
    font-size: 1.1rem;
  }
}

.read__title {
  font-size: 2rem;
  display: block;
}
.read .fs {
  font-size: 0.6em;
}
.read p {
  display: inline;
  font-size: 1rem;
  line-height: 2;
  padding: 3px;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .read h3,
  .read p {
    display: none;
  }
}

img {
  width: 100%;
  height: auto;
}

section:before {
  content: "";
  display: block;
  height: 50px;
  margin-top: -50px;
  padding-top: 50px;
}

.br-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .br-pc {
    display: block;
  }
}

.br-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .br-sp {
    display: none;
  }
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

/* Header
-------------------------------------------- */
.header {
  background-color: rgba(0, 0, 0, 0.6392156863);
  width: 100%;
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
.header__inner {
  max-width: 930px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}

/* ヘッダーのロゴ部分 */
.header__title {
  width: 135px;
}
@media screen and (min-width: 768px) {
  .header__title {
    width: 140px;
  }
}
.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}

/* ヘッダーのナビ部分 */
.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  transform: translateY(-100%);
  background-color: #000;
  transition: ease 0.4s;
}
@media screen and (min-width: 1024px) {
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 80%;
  }
}

.nav-items {
  padding-top: 50px;
}
@media screen and (min-width: 1024px) {
  .nav-items {
    width: 100%;
    display: flex;
    align-items: center;
    height: initial;
    justify-content: space-between;
    padding-top: inherit;
    padding-bottom: inherit;
  }
  .nav-items li {
    width: 100%;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
  }
  .nav-items li + li {
    border-left: 0;
    border-right: 1px solid #fff;
  }
}

/* ナビのリンク */
.nav-items__item a {
  color: white;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 1rem;
  margin-bottom: 24px;
  border-bottom: 0.5px solid white;
}
@media screen and (min-width: 1024px) {
  .nav-items__item a {
    margin-bottom: 0;
    border-bottom: none;
    font-size: 0.74rem;
  }
}
.nav-items__item a:hover {
  color: #c84f2f;
  transition: ease 0.4s;
}

.nav-items__item:last-child a {
  margin-bottom: 0;
}

/* ハンバーガーメニュー */
.header__hamburger {
  width: 48px;
  height: 100%;
}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}
@media screen and (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 1px;
  background-color: white;
  position: relative;
  transition: ease 0.4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}

/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateY(0);
}

.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}

/* Footer
-------------------------------------------- */
footer {
  background-color: white;
  padding: 46px 0 80px 0;
}
@media screen and (min-width: 1024px) {
  footer {
    padding: 46px 0 0 0;
  }
}

.footer {
  background: #fff;
  color: #000;
}
.footer__inner {
  max-width: 930px;
  margin: 0 auto;
}
.footer .footer-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.footer .footer-nav__mainlogo {
  max-width: 120px;
  margin: 0 auto;
}
.footer .footer-nav__logo {
  max-width: 200px;
  margin: 46px auto 15px;
}
.footer .footer-nav__box {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .footer .footer-nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .footer .footer-nav__mainlogo {
    max-width: 240px;
    margin: 0 0 30px 0;
  }
  .footer .footer-nav__logo {
    max-width: 260px;
    margin: 0 auto;
  }
  .footer .footer-nav__box {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    text-align: right;
  }
}
.footer .footer-nav__menu {
  width: 150px;
  margin: 0 auto 20px;
}
@media screen and (min-width: 1024px) {
  .footer .footer-nav__menu {
    margin: auto 0 30px auto;
  }
}
.footer .footer-nav__menu li {
  display: flex;
  align-items: center;
  max-width: 200px;
  gap: 0 5px;
  font-size: 0.812rem;
}
.footer .footer-nav__menu li::before {
  content: "";
  display: inline-block;
  margin-right: 0.5em;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid #000;
}
.footer__copyright {
  font-size: 0.8em;
  background: #AA9109;
}

/* KV
-------------------------------------------- */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  /* video */
}
.hero__logo {
  width: 150px;
  margin-left: calc(50% - 75px);
  margin-top: 60px;
  margin-bottom: 30px;
  filter: brightness(0) invert(1);
}
@media screen and (min-width: 768px) {
  .hero__logo {
    width: 230px;
    margin-left: calc(50% - 115px);
  }
}
.hero__title {
  color: white;
  font-size: 1.125rem;
  text-align: center;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .hero__title {
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .hero__title {
    font-size: 1.667rem;
  }
}
.hero__subtitle {
  color: white;
  font-size: 0.812rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .hero__subtitle {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .hero__subtitle {
    font-size: 1.1rem;
  }
}
.hero .video-hero {
  width: 100%;
  height: 100vh;
  background: url(../img/otomisan-20.jpg) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}
.hero .video-hero video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

#pv .video {
  display: block;
  max-width: 850px;
  width: 100%;
  aspect-ratio: 16/9;
  margin: 0 auto;
}

/* prologue
-------------------------------------------- */
.prologue .section-title {
  margin: 0px auto 2rem;
}
.prologue__inner {
  position: relative;
  z-index: 1;
  padding: 50px 0px;
}
.prologue__inner::before {
  content: "";
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: 65%;
  background: url("../img/photo-1.jpg") no-repeat center top;
  background-size: cover;
  z-index: -1;
}
.prologue__inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35%;
  background: url("../img/photo-2.jpg") no-repeat center center;
  background-size: cover;
  z-index: -1;
}
.prologue__inner .read {
  padding-top: 7rem;
  padding-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .prologue__inner .read {
    padding-top: 16rem;
    padding-bottom: 6rem;
  }
}
@media screen and (min-width: 1024px) {
  .prologue__inner .read {
    padding-top: 25rem;
    padding-bottom: 10rem;
  }
}
.prologue__inner .read-text {
  display: none;
}
@media screen and (min-width: 768px) {
  .prologue__inner .read-text {
    display: block;
    width: 30.83vw;
    margin: 0 10% 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .prologue__inner .read-text {
    display: block;
    max-width: 350px;
    width: 23.83vw;
    margin: 0 10% 0 auto;
  }
}

/* product
-------------------------------------------- */
.product {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product__inner {
  position: relative;
  z-index: 1;
  padding: 0px 0 100px 0;
  margin: 0 auto;
  width: 100%;
  height: auto;
  background-image: url("../img/photo-3.jpg");
  background-size: cover;
  background-position: 30% top;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .product__inner {
    background-position: center top;
  }
}
.product__items {
  position: relative;
  margin-top: 240px;
}
@media screen and (min-width: 768px) {
  .product__items {
    margin-top: 420px;
  }
}
.product__items .map {
  position: absolute;
  top: -50px;
  right: 0;
  width: min(470px, 46vw);
  aspect-ratio: 1/1;
  background-image: url(../img/map.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .product__items .map {
    top: -150px;
    right: inherit;
    width: min(470px, 30vw);
  }
}
@media screen and (min-width: 1024px) {
  .product__items .map {
    top: -230px;
    right: inherit;
    left: clamp(50px, (100vw - 1300px) * 0.4 + 80px, 335px);
    width: min(470px, 27vw);
  }
}
.product .read-text {
  display: none;
}
@media screen and (min-width: 768px) {
  .product .read-text {
    display: block;
    width: 78vw;
    max-width: 600px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .product .read-text {
    display: block;
    max-width: 760px;
    width: 65.43vw;
    margin: 0 auto;
  }
}

.flexbox {
  display: flex;
  flex-wrap: wrap;
}
.flexbox img {
  width: 50%;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .flexbox img {
    width: 25%;
  }
}

/* producer
-------------------------------------------- */
.producer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.producer__inner {
  position: relative;
  z-index: 1;
  padding: 0px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  /*背景画像の位置を固定*/
  background-size: 150% auto;
  background-position: top;
  background-repeat: no-repeat;
  background-image: url("../img/photo-4re.jpg");
}
.producer__items {
  margin-top: 30%;
}
@media screen and (min-width: 768px) {
  .producer__items {
    margin-top: 30%;
  }
  .producer__inner {
    background-size: contain;
  }
}
.producer .read-text {
  display: none;
}
@media screen and (min-width: 768px) {
  .producer .read-text {
    display: block;
    width: 78vw;
    max-width: 600px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .producer .read-text {
    display: block;
    max-width: 760px;
    width: 65.43vw;
    margin: 0 auto;
  }
}

/* interview
-------------------------------------------- */
.interview__inner {
  position: relative;
  z-index: 1;
  padding: 0px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}
.interview .image-box {
  position: relative;
}
.interview .image-box img {
  position: absolute;
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease;
  z-index: -1;
}
.interview .image-box .bg1 {
  top: -50px;
  right: 0;
  width: 55.2vw;
}
.interview .image-box .bg2 {
  top: 100px;
  left: 0;
  width: 41.07vw;
}
.interview .image-box .bg3 {
  top: 125px;
  left: 45%;
  width: 29.33vw;
}
@media screen and (min-width: 768px) {
  .interview .image-box .bg1 {
    top: 0;
    right: 5%;
    width: 38.41vw;
  }
  .interview .image-box .bg2 {
    top: 135px;
    left: 5%;
    width: 35.07vw;
  }
  .interview .image-box .bg3 {
    top: 230px;
    left: 43%;
    width: 18.1vw;
  }
}
@media screen and (min-width: 1024px) {
  .interview .image-box .bg1 {
    top: -50px;
    right: 15%;
    width: 24.41vw;
    max-width: 375px;
  }
  .interview .image-box .bg2 {
    top: 150px;
    left: 20%;
    width: 24.41vw;
    max-width: 375px;
  }
  .interview .image-box .bg3 {
    top: 240px;
    left: 46%;
    width: 15vw;
    max-width: 230px;
  }
}
.interview__titlebox {
  position: relative;
  /* h3をabsoluteで基準にするため必須 */
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* --- PC時のみh3をabsolute配置に変更 --- */
}
.interview__titlebox .voice__title {
  order: 1;
  /* スマホでは普通に流れに沿って表示 */
  position: static;
  margin: 0 auto 0 0;
}
.interview__titlebox .interview__imgbox {
  order: 2;
  width: 100%;
  height: auto;
  display: block;
}
.interview__titlebox .interview__profbox {
  order: 3;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .interview__titlebox {
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
    max-width: 640px;
    margin: 0 auto;
    padding: 0;
  }
  .interview__titlebox .voice__title {
    position: absolute;
    top: -20%;
    left: 0;
    margin: 0;
    z-index: 2;
  }
  .interview__titlebox .interview__profbox {
    order: 2;
  }
  .interview__titlebox .interview__imgbox {
    order: 3;
    flex-shrink: 0;
    max-width: 500px;
    width: 68%;
  }
}
@media screen and (min-width: 1024px) {
  .interview__titlebox {
    max-width: inherit;
  }
  .interview__titlebox img {
    width: auto;
  }
}

/* voice
-------------------------------------------- */
.voice {
  margin-top: 120px;
}
@media screen and (min-width: 1024px) {
  .voice {
    margin-top: 300px;
  }
}
.voice__inner {
  position: relative;
  z-index: 1;
  padding: 50px 0px;
  margin: 50px auto 0;
}
.voice__inner::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #5A5A5A;
  z-index: -1;
}
.voice__content {
  padding: 0 50px 80px;
  max-width: 640px;
}
.voice__content p {
  text-align: justify;
  margin: 15px 0;
}
.voice__content p.cap {
  font-size: 0.8em;
}
@media screen and (min-width: 768px) {
  .voice__content {
    padding-top: 60px;
  }
  .voice__content p {
    font-size: 1.125rem;
  }
}
.voice__titlebox {
  display: flex;
  flex-direction: column;
  padding: 0 30px;
}
@media screen and (min-width: 768px) {
  .voice__titlebox {
    flex-direction: row;
    align-items: stretch;
    gap: 60px;
  }
  .voice__titlebox.fukusima {
    align-items: flex-end;
    flex-direction: row-reverse;
    justify-content: center;
  }
  .voice__titlebox.fukusima img {
    margin: 0;
    max-width: 500px;
    width: 50vw;
  }
}
.voice .voice__image {
  flex-shrink: 0;
  height: auto;
}
@media screen and (min-width: 768px) {
  .voice .voice__image {
    margin: 0 0 0 15%;
    max-width: 748px;
    width: 48vw;
  }
}
.voice__profbox {
  box-sizing: border-box;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  padding: 20px 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .voice__profbox {
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
  }
}
.voice__title {
  writing-mode: vertical-rl;
  display: inline-block;
  font-size: 2.3rem;
  margin: 5px auto 10px 3%;
  padding: 0;
  line-height: 1.6;
  letter-spacing: 3px;
  height: auto;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .voice__title {
    font-size: 3.4em;
  }
}
.voice__profile {
  line-height: 1.4;
}
.voice__profile .area {
  display: inline-block;
  border-bottom: solid 1px #fff;
  margin-bottom: 10px;
}
.voice__profile .name {
  font-size: 2em;
}
.voice__profile .furigana {
  font-size: 0.889em;
}

/* recipe
-------------------------------------------- */
.recipe__copy {
  width: 80%;
  max-width: 432px;
  margin: 0 auto 60px;
}
.recipe__block {
  position: relative;
  padding: 0;
  overflow: hidden;
  margin-bottom: 120px;
}
@media screen and (min-width: 768px) {
  .recipe__block {
    margin-bottom: 180px;
  }
}
.recipe .main-photo {
  height: 400px;
  overflow: hidden;
  position: relative;
}
.recipe .main-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  display: block;
}
@media screen and (min-width: 768px) {
  .recipe .main-photo {
    height: inherit;
  }
}
.recipe .box {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .recipe .box {
    flex-direction: row;
    align-items: flex-end;
    gap: 50px;
  }
}
.recipe__content {
  position: relative;
  margin: -30px auto 0 0;
  padding-bottom: 60px;
  background-color: #fff;
  color: #000;
  max-width: 97%;
  z-index: 2;
}
.recipe__content p {
  text-align: justify;
}
.recipe__content .number,
.recipe__content .copy,
.recipe__content .title,
.recipe__content .text,
.recipe__content dl,
.recipe__content ol {
  margin-left: 18%;
  margin-right: 8%;
}
@media screen and (min-width: 1024px) {
  .recipe__content .number,
  .recipe__content .copy,
  .recipe__content .title,
  .recipe__content .text,
  .recipe__content dl,
  .recipe__content ol {
    margin-left: 25%;
  }
}
.recipe__content .number {
  font-size: 5em;
  display: inline-block;
  position: relative;
  line-height: 1.2;
  margin-top: 36px;
  margin-bottom: 36px;
}
.recipe__content .number::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 4px;
  background-color: #000;
}
@media screen and (min-width: 1024px) {
  .recipe__content .number {
    font-size: 5.625rem;
  }
}
.recipe__content .copy {
  font-size: 1.25rem;
}
.recipe__content .title {
  font-size: 2.25rem;
  line-height: 1;
}
.recipe__content .text {
  padding: 20px 0;
}
.recipe__content .list {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 20px;
  flex-direction: column;
}
.recipe__content .list dt,
.recipe__content .list dd {
  box-sizing: border-box;
  align-items: flex-start;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .recipe__content .list {
    flex-direction: row;
  }
  .recipe__content .list dt {
    display: flex;
    width: 20%;
  }
  .recipe__content .list dd {
    display: flex;
    width: 80%;
    margin-left: 0;
  }
}
.recipe__content .col {
  display: inline-block;
  border: 1px solid #000;
  padding: 2px 2%;
  margin: 0;
  line-height: 1.4;
  font-size: 0.8em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .recipe__content .col {
    width: 90%;
    padding: 0 auto;
    margin: 8px 10px 0 0;
  }
}
.recipe__content li {
  margin-left: 20px;
  /* リストの左側のマージンを調整 */
}
@media screen and (min-width: 768px) {
  .recipe__content {
    max-width: 500px;
    margin: -60px 0 0 0;
  }
}
@media screen and (min-width: 1024px) {
  .recipe__content {
    max-width: 39.6vw;
    margin: -284px 0 0 13%;
  }
}
.recipe .sub-photo {
  position: relative;
  margin: -40px 0 0 auto;
  width: 46vw;
  line-height: 0;
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  .recipe .sub-photo {
    width: 100%;
    max-width: 417px;
    margin: inherit;
  }
}

.lineup {
  background-color: #5A5A5A;
  padding: 90px 30px;
}
.lineup__flexbox {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 40px;
}
.lineup__flexbox .item-link {
  text-decoration: none;
  color: inherit;
}
@media screen and (min-width: 768px) {
  .lineup__flexbox {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
  }
  .lineup__flexbox .item-link {
    flex: 1 1 calc(50% - 50px);
    display: flex;
  }
}
.lineup__flexbox .item {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: #fff;
  text-align: center;
  margin-top: 2.5em;
}
@media screen and (min-width: 768px) {
  .lineup__flexbox .item + .item {
    border-left: 1px solid #434343;
  }
}
.lineup__flexbox .item img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 150px;
  /*高さを指定*/
  -o-object-fit: contain;
     object-fit: contain;
}
.lineup__flexbox .item img.img-blank {
  display: none;
}
@media screen and (min-width: 768px) {
  .lineup__flexbox .item img.img-blank {
    display: block;
    opacity: 0.2;
  }
}
.lineup__flexbox .item:hover {
  opacity: 0.8;
  transition: 0.3s;
}
.lineup__flexbox .item-name {
  display: inline-block;
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: auto;
}
.lineup__flexbox .item-price {
  display: block;
  font-size: 1.6rem;
  margin: 0.5em auto;
  line-height: 1.4;
}
.lineup__flexbox .item-text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 1.5em;
}
.lineup__flexbox span {
  font-size: 0.8rem;
}
.lineup__flexbox .fs12 {
  font-size: 1.1rem;
}
.lineup__flexbox .item-box {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 1em;
  border: none;
  border-radius: 25px;
  background-color: #930000;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  font-family: "fot-tsukuaoldmin-pr6n", "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  line-height: 1.2;
  transition: ease 0.4s;
}
.button:hover {
  background-color: #830000;
}
.button__store {
  background-color: inherit;
  color: #AA9109;
  border: solid 1px #AA9109;
  font-size: 1rem;
  max-width: 80%;
  width: 260px;
}
.button__store:hover {
  background-color: #AA9109;
  color: white;
}
.button__item {
  background-color: inherit;
  color: #AA9109;
  border: solid 1px #AA9109;
  font-size: 1rem;
  line-height: 1;
  padding: 0.8em 1.2em;
}
.button__item:hover {
  background-color: #AA9109;
  color: white;
}
.button__item::before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  margin-right: 10px;
  fill: #AA9109;
  filter: invert(47%) sepia(96%) saturate(728%) hue-rotate(24deg) brightness(93%) contrast(93%);
  background-image: url("../img/shopping.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: ease 0.4s;
}
.button__item:hover::before {
  filter: brightness(0) invert(1);
}

.button-shop {
  position: fixed;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.4392156863);
  transition: opacity 0.3s ease;
  border: solid 1px #fff;
  line-height: 1.2;
  width: 90%;
  height: 50px;
  bottom: 10px;
  left: 5%;
  transition: ease 0.4s;
}
.button-shop:hover {
  background-color: #c84f2f;
}
.button-shop img {
  width: auto;
  height: 50px;
}
@media screen and (min-width: 1024px) {
  .button-shop {
    flex-direction: column;
    width: 120px;
    height: 120px;
    bottom: inherit;
    top: 80px;
    right: 10%;
    left: auto;
    font-size: 0.938rem;
    text-align: center;
    padding: 10px;
  }
  .button-shop img {
    height: 74px;
  }
}

.member {
  padding: 0 50px 80px;
  margin-bottom: 100px;
  max-width: 720px;
  gap: 50px;
}
.member__title {
  display: inline-block;
  font-size: 2.3rem;
  margin: 5%;
  padding: 0;
  line-height: 1.6;
  letter-spacing: 3px;
  height: auto;
  white-space: nowrap;
}
.member img.member-photo {
  max-height: inherit;
}
.member .item-price {
  margin: 0 auto;
  line-height: inherit;
}

.item-cate {
  display: inline-block;
  position: relative;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
  line-height: 1.4;
}
@media screen and (min-width: 1024px) {
  .item-cate {
    height: 3em;
  }
}
.item-cate::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #AA9109;
}/*# sourceMappingURL=style.css.map */