@charset "UTF-8";
@import url("../css/reset.css");
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+Antique&display=swap");
@font-face {
  font-family: "BirchStd";
  font-weight: normal;
  font-style: normal;
  src: url("../font/birch-std.otf");
}
/*-------------------------------------------/
    ページ共通要素
/-------------------------------------------*/
/* 表示切替 ----------------------------- */
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .tab {
    display: none !important;
  }
  .pc_none {
    display: none !important;
  }
}
@media screen and (max-width: 1300px) {
  .pc2 {
    display: none !important;
  }
}
@media screen and (max-width: 1023px) {
  .pc_only {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .pc2 {
    display: none !important;
  }
  .tab {
    display: none !important;
  }
}
/* カラー */
:root {
  --white: #fff;
  --black: #000;
  --color-01: #faf9f0;
  --color-02: #8e6832;
  --color-03: #efecb7;
  --color-04: #f7ecd8;
  --color-05: #234860;
  --font-BirchStd: "BirchStd", serif;
  --font-ZenOldMincho: "Zen Old Mincho", serif;
}

/*=====================================================

		メイン設定

======================================================*/
html {
  -webkit-overflow-scrolling: touch;
  font-size: clamp(7px, 0.52083vw, 10px);
}
@media screen and (max-width: 767px) {
  html {
    font-size: min(1.3333333333vw, 5px);
  }
}

body {
  position: relative;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
  font-size: 2rem;
  line-height: 1.5;
  max-width: 100%;
  background: url("../images/bg.jpg") center top repeat;
  background-size: auto;
  color: var(--black);
  animation: fade 1s ease forwards;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 3rem;
  }
}

.wrapper {
  position: relative;
  overflow: clip;
}

/*=================================================

		共通設定

==================================================*/
img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: auto;
}

img,
object,
embed {
  max-width: 100%;
  height: auto;
  *width: inherit;
  vertical-align: middle;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  cursor: pointer;
}

a:hover {
  color: inherit;
}

a img {
  transition: all 0.3s ease;
  display: block;
}

a.btn:hover {
  opacity: 0.8;
}

/*=================================================

		tel リンク

==================================================*/
@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
a.nolink {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

/*---------------------------------------
  ハンバーガー
---------------------------------------*/
.nav-toggle {
  position: absolute;
  width: 10rem;
  height: 7rem;
  top: 3rem;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  pointer-events: auto;
}
.nav-toggle div {
  position: relative;
  width: 7rem;
  height: 3.2rem;
}
.nav-toggle div span {
  position: absolute;
  content: "";
  width: 7rem;
  height: 0.4rem;
  border-radius: 0.2rem;
  top: 0;
  left: 0;
  transition: 0.3s ease all;
}
.nav-toggle div span:first-child {
  top: 0;
  background: #e70013;
}
.nav-toggle div span:nth-child(2) {
  top: 1.4rem;
  background: #fff;
}
.nav-toggle div span:nth-child(3) {
  top: 2.8rem;
  background: #e70013;
}
.nav-toggle::after {
  content: "MENU";
  font-family: var(--font-ZenOldMincho);
  font-weight: 400;
  text-align: center;
  font-size: 1.8rem;
  color: var(--white);
}

.nav-toggle.active div {
  position: relative;
}
.nav-toggle.active div span {
  position: absolute;
  content: "";
  height: 0.5rem;
  width: 7rem;
  border-radius: 0.25rem;
  top: 50%;
}
.nav-toggle.active div span:first-child {
  left: 50%;
  transform: translate(-50%, -50%) rotate(30deg);
  z-index: 1;
}
.nav-toggle.active div span:nth-child(2) {
  width: 100%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
}
.nav-toggle.active div span:nth-child(3) {
  display: none;
}
.nav-toggle.active::after {
  content: "CLOSE";
}

/*=================================================

		ヘッダー

==================================================*/
@media screen and (min-width: 768px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .site-header .line-deco {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  .site-header .line-deco::before {
    position: absolute;
    top: 1rem;
    left: 0;
    content: "";
    width: 100%;
    height: 0.4rem;
    background: var(--color-01);
  }
  .site-header .line-deco::after {
    position: absolute;
    top: 2.2rem;
    left: 0;
    content: "";
    width: 100%;
    height: 0.2rem;
    background: var(--color-01);
  }
  .site-header .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .site-header .logo .logo-cafe {
    width: 18.4rem;
  }
  .site-header .logo .unionjack {
    width: 6.2rem;
  }
  .site-header .logo a {
    display: inline-block;
    transition: 0.3s all;
  }
  .site-header .logo a:hover {
    opacity: 0.8;
  }
  .home .site-header {
    position: absolute;
    top: 0;
    left: 0;
    aspect-ratio: 1920/1080;
    gap: 5rem;
  }
  .home .site-header .logo {
    gap: 5rem;
  }
  .home .site-header .logo .logo-cafe {
    width: min(47.6041666667vw, 91.4rem);
  }
  .home .site-header .logo .unionjack {
    width: min(15.625vw, 30rem);
  }
  .lower .site-header {
    position: absolute;
    aspect-ratio: unset;
    padding-top: 4.5rem;
    gap: 2.5rem;
  }
  .lower .site-header .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .lower .site-header .logo .logo-cafe {
    width: 18.4rem;
  }
  .lower .site-header .logo .unionjack {
    width: 6.2rem;
  }
  .lower .site-header .logo a {
    display: inline-block;
    transition: 0.3s all;
  }
  .lower .site-header .logo a:hover {
    opacity: 0.8;
  }
  .scroll .site-header,
  .lower.scroll .site-header,
  .home.scroll .site-header {
    position: fixed;
    aspect-ratio: unset;
    padding-top: 4.5rem;
    gap: 2.5rem;
    animation: fadeInDown 1s ease forwards;
  }
  .scroll .site-header .logo,
  .lower.scroll .site-header .logo,
  .home.scroll .site-header .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-left: 2.5rem;
    margin-right: auto;
    position: relative;
    z-index: 1;
    width: 18.4rem;
  }
  .scroll .site-header .logo .logo-cafe,
  .lower.scroll .site-header .logo .logo-cafe,
  .home.scroll .site-header .logo .logo-cafe {
    width: 18.4rem;
    filter: drop-shadow(0 0 2px var(--color-05));
  }
  .scroll .site-header .logo .unionjack,
  .lower.scroll .site-header .logo .unionjack,
  .home.scroll .site-header .logo .unionjack {
    width: 6.2rem;
  }
  .scroll .site-header .logo a,
  .lower.scroll .site-header .logo a,
  .home.scroll .site-header .logo a {
    display: inline-block;
    transition: 0.3s all;
  }
  .scroll .site-header .logo a:hover,
  .lower.scroll .site-header .logo a:hover,
  .home.scroll .site-header .logo a:hover {
    opacity: 0.8;
  }
  .nav-wrap {
    position: relative;
    z-index: 0;
    width: 100rem;
  }
  .nav-wrap::before {
    position: absolute;
    z-index: -1;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 8.3rem;
    background: url("../images/bg_nav.png") center top no-repeat;
    background-size: 100% auto;
  }
  .scroll .nav-wrap {
    margin-top: -15rem;
  }
  .main-navigation {
    position: relative;
    z-index: 1;
    width: 100%;
  }
  .main-navigation .gnav {
    width: 100%;
    height: 5.5rem;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem 5rem;
    flex-wrap: wrap;
  }
  .main-navigation .gnav li a {
    display: block;
    transition: 0.3s all;
  }
  .main-navigation .gnav li a .nav-item img {
    width: auto;
    height: 2.1rem;
  }
  .main-navigation .gnav li a:hover {
    transform: translateY(0.2rem);
  }
  .nav-toggle {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .site-header .line-deco {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  .site-header .line-deco::before {
    position: absolute;
    top: 1rem;
    left: 0;
    content: "";
    width: 100%;
    height: 0.4rem;
    background: var(--color-01);
  }
  .site-header .line-deco::after {
    position: absolute;
    top: 2.2rem;
    left: 0;
    content: "";
    width: 100%;
    height: 0.2rem;
    background: var(--color-01);
  }
  .site-header .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .site-header .logo .logo-cafe {
    width: 18.4rem;
  }
  .site-header .logo .unionjack {
    width: 6.2rem;
  }
  .site-header .logo a {
    display: inline-block;
    transition: 0.3s all;
  }
  .site-header .logo a:hover {
    opacity: 0.8;
  }
  .home .site-header {
    position: absolute;
    aspect-ratio: unset;
    height: 133.4rem;
    max-height: 100vh;
  }
  .home .site-header .logo {
    gap: 3rem;
    min-height: 62rem;
  }
  .home .site-header .logo .logo-cafe {
    width: 59.2rem;
  }
  .home .site-header .logo .unionjack {
    width: 19.4rem;
  }
  .nav-wrap {
    display: none;
  }
  .scroll .site-header,
  .home.scroll .site-header,
  .lower .site-header,
  .lower.scroll .site-header {
    position: fixed;
    width: 100%;
    height: 17rem;
    background: url("../images/bg_header_sp.png") center no-repeat;
    background-size: 100% 100%;
    aspect-ratio: unset;
    padding-top: 4.5rem;
    gap: 2.5rem;
    animation: fadeInDown 1s ease forwards;
  }
  .scroll .site-header .logo,
  .home.scroll .site-header .logo,
  .lower .site-header .logo,
  .lower.scroll .site-header .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-height: unset;
  }
  .scroll .site-header .logo .logo-cafe,
  .home.scroll .site-header .logo .logo-cafe,
  .lower .site-header .logo .logo-cafe,
  .lower.scroll .site-header .logo .logo-cafe {
    width: 18.4rem;
  }
  .scroll .site-header .logo .unionjack,
  .home.scroll .site-header .logo .unionjack,
  .lower .site-header .logo .unionjack,
  .lower.scroll .site-header .logo .unionjack {
    width: 6.2rem;
  }
  .scroll .site-header .logo a,
  .home.scroll .site-header .logo a,
  .lower .site-header .logo a,
  .lower.scroll .site-header .logo a {
    display: inline-block;
    transition: 0.3s all;
  }
  .scroll .site-header .logo a:hover,
  .home.scroll .site-header .logo a:hover,
  .lower .site-header .logo a:hover,
  .lower.scroll .site-header .logo a:hover {
    opacity: 0.8;
  }
  .site-header.open,
  .scroll .site-header.open,
  .home .site-header.open,
  .home.scroll .site-header.open,
  .lower .site-header.open,
  .lower.scroll .site-header.open {
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    background: url("../images/bg_header_open_sp.png") no-repeat;
    background-size: cover;
    justify-content: flex-start;
    gap: 9rem;
    padding-top: 9.4rem;
    animation: none;
  }
  .site-header.open::-webkit-scrollbar,
  .scroll .site-header.open::-webkit-scrollbar,
  .home .site-header.open::-webkit-scrollbar,
  .home.scroll .site-header.open::-webkit-scrollbar,
  .lower .site-header.open::-webkit-scrollbar,
  .lower.scroll .site-header.open::-webkit-scrollbar {
    display: none;
  }
  .site-header.open .logo,
  .scroll .site-header.open .logo,
  .home .site-header.open .logo,
  .home.scroll .site-header.open .logo,
  .lower .site-header.open .logo,
  .lower.scroll .site-header.open .logo {
    gap: 2rem;
    min-height: unset;
  }
  .site-header.open .logo .logo-cafe,
  .scroll .site-header.open .logo .logo-cafe,
  .home .site-header.open .logo .logo-cafe,
  .home.scroll .site-header.open .logo .logo-cafe,
  .lower .site-header.open .logo .logo-cafe,
  .lower.scroll .site-header.open .logo .logo-cafe {
    width: 37.7rem;
  }
  .site-header.open .logo .unionjack,
  .scroll .site-header.open .logo .unionjack,
  .home .site-header.open .logo .unionjack,
  .home.scroll .site-header.open .logo .unionjack,
  .lower .site-header.open .logo .unionjack,
  .lower.scroll .site-header.open .logo .unionjack {
    width: 12.4rem;
  }
  .site-header.open .nav-wrap,
  .scroll .site-header.open .nav-wrap,
  .home .site-header.open .nav-wrap,
  .home.scroll .site-header.open .nav-wrap,
  .lower .site-header.open .nav-wrap,
  .lower.scroll .site-header.open .nav-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .site-header.open .nav-wrap .btn-instagram,
  .scroll .site-header.open .nav-wrap .btn-instagram,
  .home .site-header.open .nav-wrap .btn-instagram,
  .home.scroll .site-header.open .nav-wrap .btn-instagram,
  .lower .site-header.open .nav-wrap .btn-instagram,
  .lower.scroll .site-header.open .nav-wrap .btn-instagram {
    width: 5rem;
    margin-top: 5rem;
  }
  .site-header.open .nav-wrap .sub-menu-txt,
  .scroll .site-header.open .nav-wrap .sub-menu-txt,
  .home .site-header.open .nav-wrap .sub-menu-txt,
  .home.scroll .site-header.open .nav-wrap .sub-menu-txt,
  .lower .site-header.open .nav-wrap .sub-menu-txt,
  .lower.scroll .site-header.open .nav-wrap .sub-menu-txt {
    margin-top: 9rem;
  }
  .site-header.open .nav-wrap .sub-menu-txt img,
  .scroll .site-header.open .nav-wrap .sub-menu-txt img,
  .home .site-header.open .nav-wrap .sub-menu-txt img,
  .home.scroll .site-header.open .nav-wrap .sub-menu-txt img,
  .lower .site-header.open .nav-wrap .sub-menu-txt img,
  .lower.scroll .site-header.open .nav-wrap .sub-menu-txt img {
    width: auto;
    height: 3rem;
  }
  .site-header.open .main-navigation,
  .scroll .site-header.open .main-navigation,
  .home .site-header.open .main-navigation,
  .home.scroll .site-header.open .main-navigation,
  .lower .site-header.open .main-navigation,
  .lower.scroll .site-header.open .main-navigation {
    width: 50rem;
  }
  .site-header.open .main-navigation .gnav,
  .scroll .site-header.open .main-navigation .gnav,
  .home .site-header.open .main-navigation .gnav,
  .home.scroll .site-header.open .main-navigation .gnav,
  .lower .site-header.open .main-navigation .gnav,
  .lower.scroll .site-header.open .main-navigation .gnav {
    width: 100%;
    font-family: var(--font-BirchStd);
    font-weight: normal;
    color: var(--white);
    font-size: 5rem;
    line-height: 1;
    border-top: 1px solid #a7b7c2;
  }
  .site-header.open .main-navigation .gnav li,
  .scroll .site-header.open .main-navigation .gnav li,
  .home .site-header.open .main-navigation .gnav li,
  .home.scroll .site-header.open .main-navigation .gnav li,
  .lower .site-header.open .main-navigation .gnav li,
  .lower.scroll .site-header.open .main-navigation .gnav li {
    border-bottom: 1px solid #a7b7c2;
  }
  .site-header.open .main-navigation .gnav li a,
  .scroll .site-header.open .main-navigation .gnav li a,
  .home .site-header.open .main-navigation .gnav li a,
  .home.scroll .site-header.open .main-navigation .gnav li a,
  .lower .site-header.open .main-navigation .gnav li a,
  .lower.scroll .site-header.open .main-navigation .gnav li a {
    width: 100%;
    display: block;
    text-align: center;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }
  .site-header.open .main-navigation .gnav li a .nav-item img,
  .scroll .site-header.open .main-navigation .gnav li a .nav-item img,
  .home .site-header.open .main-navigation .gnav li a .nav-item img,
  .home.scroll .site-header.open .main-navigation .gnav li a .nav-item img,
  .lower .site-header.open .main-navigation .gnav li a .nav-item img,
  .lower.scroll .site-header.open .main-navigation .gnav li a .nav-item img {
    width: auto;
    height: 3.8rem;
    margin: 0 auto;
  }
}
/*=================================================

		フッター

==================================================*/
.footer-img-box {
  width: 100%;
  height: min(57.2916666667vw, 110rem);
}
.footer-img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (max-width: 767px) {
  .footer-img-box {
    height: 110rem;
    padding-bottom: 8rem;
  }
}

.site-footer {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: url("../images/bg_footer.png") center top no-repeat;
  background-size: auto 100%;
}
@media screen and (min-width: 1920px) {
  .site-footer {
    background-size: 100% 100%;
  }
}
@media screen and (max-width: 767px) {
  .site-footer {
    position: relative;
    margin-top: -16rem;
    background: url("../images/bg_footer_sp.png") center top no-repeat;
    background-size: 100% 21.5rem;
    padding-bottom: 50px;
  }
}
.site-footer .footer__inner {
  width: 100%;
  height: 13rem;
  padding: 1.5rem 0;
}
.site-footer .footer__inner .footer-logo {
  width: 18rem;
  margin: 0 auto;
}
.site-footer .footer__inner .footer-info {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 192rem);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 11rem;
  color: var(--color-03);
}
.site-footer .footer__inner .footer-info .sub-menu-txt {
  transition: 0.3s all;
}
.site-footer .footer__inner .footer-info .sub-menu-txt span {
  display: inline-block;
}
.site-footer .footer__inner .footer-info .sub-menu-txt span img {
  width: auto;
  height: 1.8rem;
}
.site-footer .footer__inner .footer-info .sub-menu-txt:hover {
  transform: translateX(0.2rem);
}
.site-footer .footer__inner .footer-info .copyright {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .site-footer .footer__inner {
    height: 21.5rem;
  }
  .site-footer .footer__inner .footer-logo {
    width: 21.2rem;
    margin: 0 auto;
  }
  .site-footer .footer__inner .footer-info {
    position: relative;
    bottom: unset;
    left: unset;
    transform: unset;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 3.5rem 5rem 1.5rem;
    color: var(--color-03);
  }
  .site-footer .footer__inner .footer-info .sub-menu-txt {
    display: none;
  }
  .site-footer .footer__inner .footer-info .copyright {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.2em;
  }
}

/* ページトップへ */
#pagetop {
  display: none;
  position: fixed;
  z-index: 9999;
  top: auto;
  bottom: calc(5.5rem + 60px);
  right: 2.5rem;
}
#pagetop a {
  display: block;
  width: 6rem;
  height: 6rem;
  background: url("../images/totop.png") center center no-repeat;
  background-size: 100% 100%;
}
@media screen and (max-width: 767px) {
  #pagetop {
    bottom: 70px;
    right: 1.5rem;
  }
}

/* 言語切り替えボタン位置調整 */
#gt_float_wrapper {
  right: 1rem !important;
  bottom: 5.5rem !important;
}

@media screen and (max-width: 767px) {
  #gt_float_wrapper {
    right: 1rem !important;
    bottom: 0.5rem !important;
  }
}
/*=================================================

		共通

==================================================*/
.bg-top-line {
  position: relative;
  z-index: 0;
  margin-top: 1.7rem;
}
.bg-top-line::before {
  content: "";
  position: absolute;
  top: -1.7rem;
  left: 0;
  width: 100%;
  height: 1.7rem;
  background: url("../images/bg-line.jpg") repeat-x;
  background-size: auto 100%;
}

.btn-viewmore {
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.3em;
  font-weight: 700;
}
.btn-viewmore span {
  width: 35rem;
  padding: 2rem 2rem 4rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 0.2rem solid var(--white);
  color: var(--white);
}
.btn-viewmore span::after {
  content: ">";
  transition: 0.3s all;
}
.btn-viewmore:hover {
  opacity: 0.8;
}
.btn-viewmore:hover span::after {
  transform: translateX(0.5rem);
}
.btn-viewmore.brown span {
  color: var(--color-02);
  border-bottom: 0.2rem solid var(--color-02);
}

/*=================================================

		トップ

==================================================*/
.home .top-mv {
  position: relative;
  z-index: -1;
  width: 100%;
  aspect-ratio: 1920/1080;
  overflow: hidden;
}
.home .top-mv img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (max-width: 767px) {
  .home .top-mv {
    aspect-ratio: unset;
    height: 177.8666666667vw;
    max-height: 100vh;
  }
}
.home #secStory {
  padding-top: 20rem;
  padding-left: 10rem;
  padding-right: 10rem;
}
@media screen and (max-width: 767px) {
  .home #secStory {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
.home #secStory h2.content-ttl {
  font-size: 13rem;
  font-family: var(--font-BirchStd);
  font-weight: normal;
  color: var(--color-02);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.home #secStory h2.content-ttl span {
  display: inline-block;
  line-height: 1;
}
.home #secStory h2.content-ttl span.ttl-txt-img img {
  width: auto;
  height: 10rem;
}
.home #secStory h2.content-ttl span.deco-bottom-line {
  width: 31.2rem;
  aspect-ratio: 312/10;
  background: url("../images/deco_bottom.png") center no-repeat;
  background-size: 100% 100%;
}
.home #secStory p {
  line-height: 2;
}
.home #secStory p.sub-ttl {
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: var(--color-02);
  font-family: var(--font-ZenOldMincho);
  font-weight: 400;
}
.home #secStory p.sub-ttl span {
  display: inline-block;
  text-align: center;
  line-height: 1.5;
}
.home #secStory p.sub-ttl span.txt-en {
  font-size: 2rem;
}
.home #secStory p.sub-ttl span.txt-jp {
  font-size: 3rem;
}
.home #secStory p.en-txt-deco {
  font-family: var(--font-BirchStd);
  font-size: 11rem;
  color: var(--color-05);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .home #secStory p.sub-ttl span.txt-en {
    font-size: 2.6rem;
  }
  .home #secStory p.sub-ttl span.txt-jp {
    font-size: 4rem;
  }
  .home #secStory p.en-txt-deco {
    text-align: center;
  }
}
.home #secStory .box-wrap {
  width: min(100%, 150rem);
  margin: 0 auto;
}
.home #secStory .box-wrap .layout-box {
  width: min(100%, 80rem);
  margin: 0 auto;
  padding: 12rem 6rem 6rem;
  background: var(--white);
}
.home #secStory .box-wrap .layout-box .inner {
  width: min(100%, 55rem);
  margin: 7rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 1023px) {
  .home #secStory .box-wrap .layout-box {
    width: min(100%, 800px);
  }
  .home #secStory .box-wrap .layout-box .inner {
    width: min(100%, 550px);
  }
}
.home #secAccess {
  padding-top: 16rem;
  padding-bottom: 11rem;
  padding-left: 10rem;
  padding-right: 10rem;
}
@media screen and (max-width: 1023px) {
  .home #secAccess {
    padding-top: 12rem;
  }
}
@media screen and (max-width: 767px) {
  .home #secAccess {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
.home #secAccess h2.content-ttl {
  font-size: 13rem;
  font-family: var(--font-BirchStd);
  font-weight: normal;
  color: var(--color-02);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.home #secAccess h2.content-ttl span {
  display: inline-block;
  line-height: 1;
}
.home #secAccess h2.content-ttl span.ttl-txt-img img {
  width: auto;
  height: 10rem;
}
.home #secAccess h2.content-ttl span.deco-bottom-line {
  width: 31.2rem;
  aspect-ratio: 312/10;
  background: url("../images/deco_bottom.png") center no-repeat;
  background-size: 100% 100%;
}
.home #secAccess p {
  line-height: 2;
}
.home #secAccess p.sub-ttl {
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: var(--color-02);
  font-family: var(--font-ZenOldMincho);
  font-weight: 400;
}
.home #secAccess p.sub-ttl span {
  display: inline-block;
  text-align: center;
  line-height: 1.5;
}
.home #secAccess p.sub-ttl span.txt-en {
  font-size: 2rem;
}
.home #secAccess p.sub-ttl span.txt-jp {
  font-size: 3rem;
}
.home #secAccess p.en-txt-deco {
  font-family: var(--font-BirchStd);
  font-size: 11rem;
  color: var(--color-05);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .home #secAccess p.sub-ttl span.txt-en {
    font-size: 2.6rem;
  }
  .home #secAccess p.sub-ttl span.txt-jp {
    font-size: 4rem;
  }
  .home #secAccess p.en-txt-deco {
    text-align: center;
  }
}
.home #secAccess .box-wrap {
  width: min(100%, 150rem);
  margin: 0 auto;
}
.home #secAccess .box-wrap .layout-box {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10rem;
}
.home #secAccess .box-wrap .layout-box .item-box {
  width: min((100% - 10rem) / 2, 70rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6rem;
}
.home #secAccess .box-wrap .layout-box .item-box:nth-child(2) {
  margin-top: 10rem;
}
.home #secAccess .box-wrap .layout-box .item-box .img-box {
  width: 100%;
}
.home #secAccess .box-wrap .layout-box .item-box .text-box {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem 4rem;
}
.home #secAccess .box-wrap .layout-box .item-box .text-box .txt {
  width: 36rem;
  flex-grow: 1;
}
.home #secAccess .box-wrap .layout-box .item-box .text-box .txt .inner {
  margin-top: -5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  color: var(--white);
}
.home #secAccess .box-wrap .layout-box .item-box .text-box .txt .inner p.ttl {
  font-family: var(--font-ZenOldMincho);
  font-size: 3.5rem;
  line-height: 1.5714285714;
}
.home #secAccess .box-wrap .layout-box .item-box .text-box .txt .inner p.ttl span {
  font-size: 2rem;
  display: block;
}
.home #secAccess .box-wrap .layout-box .item-box .text-box .txt .inner .btn-bnr {
  display: inline-block;
  width: 28rem;
  margin-top: 4rem;
}
.home #secAccess .box-wrap .layout-box .item-box .text-box .map {
  width: 30rem;
  height: 25rem;
  background: #ccc;
  flex-grow: 1;
}
.home #secAccess .box-wrap .layout-box .item-box .text-box .map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .home #secAccess .box-wrap .layout-box {
    flex-direction: column;
    align-items: center;
  }
  .home #secAccess .box-wrap .layout-box .item-box {
    width: min(100%, 700px);
  }
}
@media screen and (max-width: 767px) {
  .home #secAccess .box-wrap .layout-box {
    width: min(100% - 8rem, 100%);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 10rem;
  }
  .home #secAccess .box-wrap .layout-box .item-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .home #secAccess .box-wrap .layout-box .item-box:nth-child(2) {
    margin-top: unset;
  }
  .home #secAccess .box-wrap .layout-box .item-box .img-box {
    width: 100%;
  }
  .home #secAccess .box-wrap .layout-box .item-box .text-box {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem 4rem;
  }
  .home #secAccess .box-wrap .layout-box .item-box .text-box .txt {
    width: 100%;
    flex-grow: unset;
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .home #secAccess .box-wrap .layout-box .item-box .text-box .txt .inner {
    margin-top: -5rem;
    padding-left: 0;
    padding-right: 0;
    color: var(--white);
    text-align: center;
  }
  .home #secAccess .box-wrap .layout-box .item-box .text-box .txt .inner p.ttl {
    font-family: var(--font-ZenOldMincho);
    font-size: 5rem;
    line-height: 1.4;
  }
  .home #secAccess .box-wrap .layout-box .item-box .text-box .txt .inner p.ttl span {
    font-size: 2.6rem;
    display: block;
  }
  .home #secAccess .box-wrap .layout-box .item-box .text-box .txt .inner .btn-bnr {
    text-align: center;
    margin-top: 4rem;
  }
  .home #secAccess .box-wrap .layout-box .item-box .text-box .map {
    width: calc(100% - 8rem);
    aspect-ratio: 500/250;
    height: auto;
    background: #ccc;
    flex-grow: unset;
  }
}
.home #secMenu {
  padding-top: 20rem;
  padding-bottom: 19rem;
  padding-left: 11rem;
  padding-right: 11rem;
  background: url("../images/index/bg_sec-menu.jpg") center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .home #secMenu {
    padding-top: 8rem;
    padding-bottom: 52rem;
    padding-left: 8rem;
    padding-right: 8rem;
    background: url("../images/index/bg_sec-menu_sp.jpg") center center no-repeat;
    background-size: cover;
    overflow: hidden;
  }
}
.home #secMenu h2.content-ttl {
  font-size: 15rem;
  font-family: var(--font-BirchStd);
  font-weight: normal;
  color: var(--color-03);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.home #secMenu h2.content-ttl span {
  display: inline-block;
  line-height: 1;
}
.home #secMenu h2.content-ttl span.ttl-txt-img img {
  width: auto;
  height: 11.4rem;
}
.home #secMenu p {
  line-height: 2;
}
.home #secMenu p.sub-ttl {
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: var(--color-03);
  font-family: var(--font-ZenOldMincho);
  font-weight: 400;
}
.home #secMenu p.sub-ttl span {
  display: inline-block;
  text-align: center;
  line-height: 1.5;
}
.home #secMenu p.sub-ttl span.txt-en {
  font-size: 2rem;
}
.home #secMenu p.sub-ttl span.txt-jp {
  font-size: 3rem;
}
.home #secMenu p.en-txt-deco {
  font-family: var(--font-BirchStd);
  font-size: 11rem;
  color: var(--color-05);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .home #secMenu p.sub-ttl span.txt-en {
    font-size: 2.6rem;
  }
  .home #secMenu p.sub-ttl span.txt-jp {
    font-size: 4rem;
  }
  .home #secMenu p.en-txt-deco {
    text-align: center;
  }
}
.home #secMenu .box-wrap {
  position: relative;
  z-index: 0;
  width: min(100%, 150rem);
  margin: 0 auto;
}
.home #secMenu .box-wrap .layout-box {
  width: 100%;
  display: flex;
  align-items: flex-start;
}
.home #secMenu .box-wrap .layout-box .deco {
  width: 15rem;
}
.home #secMenu .box-wrap .layout-box .deco img {
  width: 10.6rem;
}
.home #secMenu .box-wrap .layout-box .text-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4rem;
  color: var(--white);
}
.home #secMenu .box-wrap .img-box {
  position: absolute;
  z-index: -1;
  top: -10rem;
  left: 56.6666666667%;
  width: min(58.5294117647%, 99.5rem);
}
@media screen and (max-width: 767px) {
  .home #secMenu .box-wrap {
    width: 100%;
  }
  .home #secMenu .box-wrap .layout-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .home #secMenu .box-wrap .layout-box .deco {
    width: -moz-fit-content;
    width: fit-content;
  }
  .home #secMenu .box-wrap .layout-box .deco img {
    width: 36.7rem;
  }
  .home #secMenu .box-wrap .layout-box .text-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    color: var(--white);
  }
  .home #secMenu .box-wrap .img-box {
    position: absolute;
    z-index: -1;
    top: calc(100% + 5rem);
    left: auto;
    right: -13rem;
    width: 69.8rem;
  }
}
.home #secShop {
  padding-top: 15rem;
  padding-bottom: 15rem;
  padding-left: 5rem;
  padding-right: 5rem;
  background: var(--color-04);
}
@media screen and (max-width: 1023px) {
  .home #secShop {
    padding-top: 6rem;
    padding-bottom: 12rem;
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
.home #secShop h2.content-ttl {
  font-size: 13rem;
  font-family: var(--font-BirchStd);
  font-weight: normal;
  color: var(--color-02);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.home #secShop h2.content-ttl span {
  display: inline-block;
  line-height: 1;
}
.home #secShop h2.content-ttl span.ttl-txt-img img {
  width: auto;
  height: 10rem;
}
.home #secShop h2.content-ttl span.deco-top {
  width: 31.7rem;
  aspect-ratio: 317/104;
  background: url("../images/deco_top.png") center no-repeat;
  background-size: 100% 100%;
}
.home #secShop p {
  line-height: 2;
}
.home #secShop p.sub-ttl {
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: var(--color-02);
  font-family: var(--font-ZenOldMincho);
  font-weight: 400;
}
.home #secShop p.sub-ttl span {
  display: inline-block;
  text-align: center;
  line-height: 1.5;
}
.home #secShop p.sub-ttl span.txt-en {
  font-size: 2rem;
}
.home #secShop p.sub-ttl span.txt-jp {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .home #secShop p.sub-ttl span.txt-en {
    font-size: 2.6rem;
  }
  .home #secShop p.sub-ttl span.txt-jp {
    font-size: 4rem;
  }
}
.home #secShop .box-wrap {
  width: min(100%, 150rem);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 10rem;
}
.home #secShop .box-wrap .img-box {
  width: min(50%, 75rem);
  text-align: center;
}
.home #secShop .box-wrap .text-box {
  width: min(50%, 75rem);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8rem;
  padding: 0 7rem;
}
.home #secShop .box-wrap .text-box .inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3rem;
}
@media screen and (max-width: 1023px) {
  .home #secShop .box-wrap {
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .home #secShop .box-wrap .img-box {
    width: min(100%, 75rem);
    text-align: center;
  }
  .home #secShop .box-wrap .text-box {
    width: 100%;
    flex-shrink: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    padding: 0 4rem;
  }
  .home #secShop .box-wrap .text-box .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .home #secShop .box-wrap .sp-order_1 {
    order: 1;
  }
  .home #secShop .box-wrap .sp-order_2 {
    order: 2;
  }
  .home #secShop .box-wrap .sp-order_3 {
    order: 3;
  }
  .home #secShop .box-wrap .sp-order_4 {
    order: 4;
  }
}
.home #secNews {
  padding-top: 18rem;
  padding-bottom: 12rem;
  padding-left: 11rem;
  padding-right: 11rem;
}
@media screen and (max-width: 1023px) {
  .home #secNews {
    padding-top: 12rem;
    padding-bottom: 12rem;
    padding-left: 8rem;
    padding-right: 8rem;
  }
}
.home #secNews h2.content-ttl {
  font-size: 9rem;
  font-family: var(--font-BirchStd);
  font-weight: normal;
  color: var(--color-02);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3rem;
}
.home #secNews h2.content-ttl span {
  display: inline-block;
  line-height: 1;
}
.home #secNews h2.content-ttl span.ttl-txt-img img {
  width: 12.4rem;
  height: auto;
}
.home #secNews .box-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13rem;
}
.home #secNews .news-wrap {
  width: min(100%, 120rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
}
.home #secNews .news-wrap .news-content {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 3rem 7rem;
}
.home #secNews .news-wrap .news-content .title-box {
  flex-shrink: 0;
}
.home #secNews .news-wrap .news-content .news-list {
  flex-grow: 1;
  color: var(--white);
}
.home #secNews .news-wrap .news-content .news-list .news-item {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: first baseline;
  gap: 1rem 5rem;
  padding: 2rem;
}
.home #secNews .news-wrap .news-content .news-list .news-item::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  content: "";
  width: 100%;
  height: 12px;
  background: url("../images/bg_line.png") center right no-repeat;
  background-size: 100% auto;
}
.home #secNews .news-wrap .news-content .news-list .news-item .post-date {
  width: 10rem;
  flex-shrink: 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-03);
}
.home #secNews .news-wrap .news-content .news-list .news-item .post-title {
  flex-grow: 1;
  font-size: 2rem;
  color: var(--white);
  font-family: var(--font-ZenOldMincho);
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .home #secNews .news-wrap .news-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 4rem;
  }
  .home #secNews .news-wrap .news-content .title-box {
    width: 100%;
    flex-shrink: unset;
    padding: 0 1.5rem;
  }
  .home #secNews .news-wrap .news-content .news-list {
    width: 100%;
    flex-grow: unset;
  }
  .home #secNews .news-wrap .news-content .news-list .news-item {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
  }
  .home #secNews .news-wrap .news-content .news-list .news-item::after {
    position: absolute;
    bottom: -6px;
    left: 0;
    content: "";
    width: 100%;
    height: 12px;
    background: url("../images/bg_line.png") center right no-repeat;
    background-size: auto 100%;
  }
  .home #secNews .news-wrap .news-content .news-list .news-item .post-date {
    width: 100%;
    flex-shrink: unset;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--color-03);
  }
  .home #secNews .news-wrap .news-content .news-list .news-item .post-title {
    flex-grow: unset;
    font-size: 3rem;
    line-height: 1.3333333333;
    color: var(--white);
    font-family: var(--font-ZenOldMincho);
    font-weight: 400;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
  }
}
.home #secNews .instagram-wrap {
  width: min(100%, 150rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
}
.home #secNews .instagram-wrap .title-box h2.ttl-instagram {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--color-03);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
.home #secNews .instagram-wrap .title-box h2.ttl-instagram::before {
  content: "";
  width: 5rem;
  aspect-ratio: 50/50;
  background: url("../images/Instagram.svg") no-repeat;
  background-size: 100% 100%;
}
.home #secNews .instagram-wrap .instagram-feed {
  width: 100%;
}
.home #secNews .instagram-wrap .instagram-feed-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 5rem;
}
.home #secNews .instagram-wrap .instagram-feed-wrap .inbox {
  width: calc(50% - 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .home #secNews .instagram-wrap .instagram-feed-wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 5rem;
  }
  .home #secNews .instagram-wrap .instagram-feed-wrap .inbox {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .home #secNews .instagram-wrap .instagram-feed-wrap .inbox .feed-title {
    font-family: var(--font-BirchStd);
    color: var(--white);
    font-size: 5rem;
    transform: scaleX(1.7);
  }
}

#sb_instagram .sb_instagram_header {
  color: var(--white);
}
#sb_instagram .sb_instagram_header .sbi_header_text {
  justify-content: center !important;
  flex: unset;
}
#sb_instagram .sb_instagram_header .sbi_header_text .sbi_feedtheme_header_text {
  flex: unset;
}
#sb_instagram .sb_instagram_header .sbi_header_text .sbi_bio {
  font-family: var(--font-ZenOldMincho);
  font-size: 1.15em;
}

/*=================================================

		共通

==================================================*/
.page-header {
  width: 100%;
  margin-bottom: 5rem;
}
.page-header .page-title {
  text-align: center;
  font-family: var(--font-BirchStd);
  font-weight: normal;
  font-size: 13rem;
  line-height: 1.1538461538;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-02);
}
.page-header .page-title span {
  display: inline-block;
  transform: scaleX(1.2);
  letter-spacing: 0.05em;
}
.page-header .page-title::after {
  content: "";
  width: 31.2rem;
  aspect-ratio: 312/10;
  background: url("../images/deco_bottom.png") center no-repeat;
  background-size: 100% 100%;
}
.page-header .page-title-img {
  text-align: center;
  font-family: var(--font-BirchStd);
  font-weight: normal;
  font-size: 13rem;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-02);
}
.page-header .page-title-img span {
  display: inline-block;
}
.page-header .page-title-img span img {
  width: auto;
  height: 10rem;
}
.page-header .page-title-img::after {
  content: "";
  width: 31.2rem;
  aspect-ratio: 312/10;
  background: url("../images/deco_bottom.png") center no-repeat;
  background-size: 100% 100%;
}

.lower .page-content {
  padding-top: 27.5rem;
  padding-left: 11rem;
  padding-right: 11rem;
}
.lower .page-content .content__inner {
  background: var(--white);
  padding-top: 7rem;
  padding-bottom: 23rem;
  padding-left: 4rem;
  padding-right: 4rem;
}
.lower .page-content .content__inner .entry-content {
  width: min(100%, 150rem);
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .lower .page-content {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .lower .page-content {
    padding-top: 8.5rem;
  }
}
.lower article.not-found .entry-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.lower p.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.breadcrumb {
  width: 100%;
  padding: 1rem 0;
  font-family: var(--font-ZenOldMincho);
  font-weight: 400;
}
.breadcrumb ul {
  font-size: 1.6rem;
  line-height: 1.5;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.breadcrumb ul li {
  position: relative;
}
.breadcrumb ul li a {
  display: inline-block;
  color: var(--color-02);
  text-decoration: underline;
}
.breadcrumb ul li a:hover {
  color: var(--color-02);
}
.breadcrumb ul li span {
  display: inline-block;
  padding: 0.15em 0.5em;
}
.breadcrumb ul li.current {
  color: var(--black);
  background: var(--color03);
  border-radius: 5px;
}
.breadcrumb ul li:not(:last-child) {
  display: inline-flex;
  align-items: center;
}
.breadcrumb ul li:not(:last-child)::after {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  content: "/";
  margin-left: 0.5rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb ul {
    font-size: 2.4rem;
  }
}

/* ページネーション */
.pagenation {
  font-size: 3rem;
  font-family: var(--font-ZenOldMincho);
  font-weight: 400;
  line-height: 1;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 10rem auto 0;
}
.pagenation .page-numbers {
  min-width: 4rem;
  height: 4rem;
  padding: 0 0.25em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--black);
}
.pagenation .page-numbers.current {
  color: var(--color-02);
}
.pagenation .page-numbers.current:hover {
  background: transparent;
}
.pagenation .page-numbers.next {
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagenation .page-numbers.prev {
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagenation .page-numbers:hover {
  opacity: 0.8;
  background: var(--color-01);
}

/*-------------------------------------------------
  SHOP/MENU
-------------------------------------------------*/
.product-list .post-detail p {
  line-height: 1.5;
}
.product-list .post-detail p.sub-ttl {
  font-family: var(--font-ZenOldMincho);
  font-weight: 400;
  color: var(--color-02);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.product-list .post-detail p.sub-ttl span {
  display: inline-block;
}
.product-list .post-detail p.sub-ttl span.txt-en {
  font-size: 2rem;
}
.product-list .post-detail p.sub-ttl span.txt-jp {
  font-size: 3rem;
}
.product-list .post-detail p.info-txt {
  font-family: var(--font-ZenOldMincho);
  font-weight: 400;
  display: inline-block;
  padding: 0 1.5em;
  color: var(--white);
  background: var(--color-02);
  border-radius: 1.5rem;
  text-align: center;
}
.product-list .post-detail .lead-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.product-list .post-detail .item-list-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10rem;
  margin-top: 5rem;
}
.product-list .post-detail .item-list-wrap .item-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}
.product-list .post-detail .item-list-wrap .category-title-jp {
  width: 100%;
  font-family: var(--font-ZenOldMincho);
  font-weight: 400;
  font-size: 5rem;
  color: var(--color-02);
  text-align: center;
}
.product-list .post-detail .item-list-wrap .category-title-en {
  width: 100%;
  font-family: var(--font-BirchStd);
  font-weight: 400;
  font-size: 8rem;
  line-height: 1.2;
  color: var(--color-02);
  text-align: center;
  padding: 0 0.85em;
}
.product-list .post-detail .item-list-wrap .category-title-en span {
  display: inline-block;
  transform: scaleX(1.7);
  max-width: 60%;
}
.product-list .post-detail .item-list-wrap .item-list {
  width: min(100%, 150rem);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 4.5rem;
  justify-content: center;
}
.product-list .post-detail .item-list-wrap .item-list:has(> .item-box:nth-child(4)) {
  justify-content: flex-start;
}
.product-list .post-detail .item-list-wrap .item-list .item-box {
  width: min((100% - 9.1rem) / 3, 47rem);
  display: flex;
  flex-direction: column;
}
.product-list .post-detail .item-list-wrap .item-list .item-box .img-box {
  width: 100%;
  aspect-ratio: 470/330;
  overflow: clip;
  background: #d4d4d4;
}
.product-list .post-detail .item-list-wrap .item-list .item-box .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-list .post-detail .item-list-wrap .item-list .item-box .text-box {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}
.product-list .post-detail .item-list-wrap .item-list .item-box .text-box .innerBox {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product-list .post-detail .item-list-wrap .item-list .item-box .text-box p.item-ttl {
  font-family: var(--font-ZenOldMincho);
  color: var(--color-02);
  font-weight: 400;
  font-size: 3.5rem;
}
.product-list .post-detail .item-list-wrap .item-list .item-box .text-box p.price span {
  display: inline-block;
}
.product-list .post-detail .item-list-wrap .item-list .item-box .text-box p.price span.num {
  font-size: 2.2rem;
  font-weight: 700;
}
.product-list .post-detail .item-list-wrap .item-list .item-box .text-box p.price span.tax {
  font-size: 1.8rem;
}
.product-list .post-detail .item-list-wrap .item-list .item-box .text-box ul.variation-list {
  padding-left: 1.5em;
}
.product-list .post-detail .item-list-wrap .item-list .item-box .text-box ul.variation-list li {
  list-style: disc;
}
.product-list .post-detail .item-list-wrap .item-list .item-box .text-box ul.variation-list li::marker {
  color: var(--color-02);
}
.product-list .post-detail .other-item-group {
  width: min(100%, 120rem);
  margin: 5rem auto;
  display: flex;
  justify-content: center;
  gap: 4.5rem;
}
.product-list .post-detail .other-item-group .item-list {
  width: 55rem;
}
.product-list .post-detail .other-item-group .item-list .sub-category-ttl {
  font-size: 3rem;
  font-weight: 700;
}
.product-list .post-detail .other-item-group .item-list ul.other-menu-list {
  margin: 2rem auto;
  padding: 0 2rem;
}
.product-list .post-detail .other-item-group .item-list ul.other-menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 0 1em;
  margin: 0.5em 0;
}
.product-list .post-detail .other-item-group .item-list ul.other-menu-list li .item-name {
  font-family: var(--font-ZenOldMincho);
  font-weight: 400;
  font-size: 2.5rem;
  color: var(--color-02);
}
.product-list .post-detail .other-item-group .item-list ul.other-menu-list li .item-price {
  font-size: 2.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.product-list .post-detail .other-item-group .item-list ul.other-menu-list li .item-price .tax {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 400;
}
@media screen and (max-width: 1023px) {
  .product-list .post-detail .item-list-wrap .item-list {
    gap: 3rem;
  }
  .product-list .post-detail .item-list-wrap .item-list .item-box .text-box p.item-ttl {
    font-size: 3rem;
  }
  .product-list .post-detail .other-item-group {
    flex-direction: column;
    align-items: center;
  }
  .product-list .post-detail .other-item-group .item-list {
    width: min(100%, 70rem);
    min-width: 100%;
    max-width: 100%;
  }
  .product-list .post-detail .other-item-group .item-list .sub-category-ttl {
    text-align: center;
  }
  .product-list .post-detail .other-item-group .item-list ul.other-menu-list {
    margin: 2rem auto;
    padding: 0;
    width: -moz-fit-content;
    width: fit-content;
  }
  .product-list .post-detail .other-item-group .item-list ul.other-menu-list li {
    justify-content: center;
  }
  .product-list .post-detail .other-item-group .item-list ul.other-menu-list li .item-name {
    margin-right: auto;
  }
  .product-list .post-detail .other-item-group .item-list ul.other-menu-list li .item-price {
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .product-list .post-detail p {
    line-height: 1.5;
  }
  .product-list .post-detail p.sub-ttl span.txt-en {
    font-size: 2.6rem;
  }
  .product-list .post-detail p.sub-ttl span.txt-jp {
    font-size: 4rem;
  }
  .product-list .post-detail p.info-txt {
    font-size: 2.6rem;
    line-height: 1.5384615385;
    border-radius: 2rem;
  }
  .product-list .post-detail .lead-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .product-list .post-detail .item-list-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10rem;
    margin-top: 5rem;
  }
  .product-list .post-detail .item-list-wrap .item-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }
  .product-list .post-detail .item-list-wrap .category-title-jp {
    font-family: var(--font-ZenOldMincho);
    font-weight: 400;
    font-size: 5rem;
    color: var(--color-02);
    text-align: center;
    word-break: keep-all;
  }
  .product-list .post-detail .item-list-wrap .item-list {
    width: min(100% - 10rem, 470px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    justify-content: flex-start;
  }
  .product-list .post-detail .item-list-wrap .item-list:has(> .item-box:nth-child(4)) {
    justify-content: flex-start;
  }
  .product-list .post-detail .item-list-wrap .item-list .item-box {
    width: 100%;
  }
  .product-list .post-detail .item-list-wrap .item-list .item-box .img-box {
    width: 100%;
    aspect-ratio: 470/330;
    overflow: clip;
    background: #d4d4d4;
  }
  .product-list .post-detail .item-list-wrap .item-list .item-box .img-box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .product-list .post-detail .item-list-wrap .item-list .item-box .text-box {
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .product-list .post-detail .item-list-wrap .item-list .item-box .text-box p {
    line-height: 1.5;
  }
  .product-list .post-detail .item-list-wrap .item-list .item-box .text-box p.item-ttl {
    font-size: 4rem;
  }
  .product-list .post-detail .item-list-wrap .item-list .item-box .text-box p.price span.num {
    font-size: 3rem;
  }
  .product-list .post-detail .item-list-wrap .item-list .item-box .text-box p.price span.tax {
    font-size: 2.6rem;
  }
  .product-list .post-detail .other-item-group {
    flex-direction: column;
    align-items: center;
  }
  .product-list .post-detail .other-item-group .item-list {
    width: 100%;
  }
  .product-list .post-detail .other-item-group .item-list .sub-category-ttl {
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
  }
  .product-list .post-detail .other-item-group .item-list ul.other-menu-list {
    margin: 2rem auto;
    padding: 0;
  }
  .product-list .post-detail .other-item-group .item-list ul.other-menu-list li {
    flex-wrap: wrap;
  }
  .product-list .post-detail .other-item-group .item-list ul.other-menu-list li .item-name {
    font-size: 3.5rem;
    margin-right: auto;
  }
  .product-list .post-detail .other-item-group .item-list ul.other-menu-list li .item-price {
    font-size: 3rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-left: auto;
  }
  .product-list .post-detail .other-item-group .item-list ul.other-menu-list li .item-price .tax {
    display: inline-block;
    font-size: 2.6rem;
    font-weight: 400;
  }
}

/*-------------------------------------------------
  プライバシーポリシー
-------------------------------------------------*/
.privacy-policy .page-content .content__inner article .entry-content {
  width: min(100%, 130rem);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-family: var(--font-ZenOldMincho);
  font-weight: 400;
}
.privacy-policy .page-content .content__inner article .entry-content h2 {
  font-size: 3rem;
  padding: 0.5em 0;
  border-bottom: 1px solid var(--color-02);
  margin-bottom: 1em;
  text-indent: -1.75em;
  padding-left: 2em;
}
.privacy-policy .page-content .content__inner article .entry-content p {
  line-height: 1.75;
}
.privacy-policy .page-content .content__inner article .entry-content ol.wp-block-list > li {
  list-style-type: none;
  counter-increment: number;
  text-indent: -1.5em;
  padding-left: 1.5em;
  margin-bottom: 1rem;
}
.privacy-policy .page-content .content__inner article .entry-content ol.wp-block-list > li::before {
  content: "(" counter(number) ") ";
}
.privacy-policy .page-content .content__inner article .entry-content ol.wp-block-list > li > ul {
  margin-left: 1.5em;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.privacy-policy .page-content .content__inner article .entry-content ol.wp-block-list > li > ul > li {
  list-style: disc;
  padding-left: 0;
  text-indent: 0;
}
.privacy-policy .page-content .content__inner article .entry-content ol.wp-block-list > li > ul > li::marker {
  color: #d1d1d1;
}
@media screen and (max-width: 767px) {
  .privacy-policy .page-content .content__inner article .entry-content {
    width: 100%;
  }
  .privacy-policy .page-content .content__inner article .entry-content h2 {
    font-size: 3.4rem;
  }
}

/*-------------------------------------------------
  NEWS
-------------------------------------------------*/
.news .page-content .news-list {
  width: min(100%, 130rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.news .page-content .news-list .news-item {
  position: relative;
  padding: 3rem 0;
  transition: 0.3s all;
}
.news .page-content .news-list .news-item::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  content: "";
  width: 100%;
  height: 12px;
  background: url(../images/bg_line_02.png) center right no-repeat;
  background-size: 100% auto;
}
.news .page-content .news-list .news-item p.post-date {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-02);
}
.news .page-content .news-list .news-item p.post-ttl {
  font-size: 3rem;
  font-family: var(--font-ZenOldMincho);
  font-weight: 400;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
}
.news .page-content .news-list .news-item .post-excerpt {
  line-height: 2.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
.news .page-content .news-list .news-item:hover {
  opacity: 0.8;
}
.news .page-content .news-list .news-item:hover::before {
  content: "";
  width: calc(100% + 2rem);
  height: calc(100% - 2rem);
  position: absolute;
  z-index: -1;
  background: var(--color-01);
  position: absolute;
  top: 0;
  left: -1rem;
}
@media screen and (max-width: 767px) {
  .news .page-content .news-list {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }
  .news .page-content .news-list .news-item {
    position: relative;
    padding: 2rem;
    transition: 0.3s all;
  }
  .news .page-content .news-list .news-item::after {
    position: absolute;
    bottom: -6px;
    left: 0;
    content: "";
    width: 100%;
    height: 12px;
    background: url(../images/bg_line_02.png) center right no-repeat;
    background-size: auto 100%;
  }
  .news .page-content .news-list .news-item p.post-date {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--color-02);
  }
  .news .page-content .news-list .news-item p.post-ttl {
    font-size: 3.2rem;
    font-family: var(--font-ZenOldMincho);
    font-weight: 400;
    line-height: 1.5;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .news .page-content .news-list .news-item .post-excerpt {
    font-size: 2.6rem;
    line-height: 1.9230769231;
  }
  .news .page-content .news-list .news-item:hover {
    opacity: 0.8;
  }
}

.single-post .page-content .content__inner .entry-content {
  width: min(100%, 120rem);
}
.single-post .entry-content .entry-header {
  margin: 2rem auto;
}
.single-post .entry-content .entry-header .post-date {
  font-size: 2rem;
  color: var(--color-02);
  font-weight: 700;
}
.single-post .entry-content .entry-header .post-ttl {
  font-size: 3rem;
  font-family: var(--font-ZenOldMincho);
  font-weight: 400;
  line-height: 1.5;
}
.single-post .entry-content .entry-detail {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.single-post .entry-content .entry-detail p {
  line-height: 2;
}
.single-post .entry-content .entry-detail p a {
  text-decoration: underline;
  color: var(--color-02);
}
.single-post .entry-content .entry-detail p.txt-link a {
  font-weight: 700;
  color: var(--color-02);
  text-decoration: none;
  border-bottom: 1px solid var(--color-02);
}
.single-post .entry-content .entry-detail p.txt-link a::after {
  content: ">";
  margin-left: 0.5em;
}
.single-post .entry-content .entry-detail h2 {
  font-size: 3rem;
  font-family: var(--font-ZenOldMincho);
  line-height: 1.6666666667;
  color: var(--color-02);
  padding: 0.25em 1em;
  border: 1px solid var(--color-02);
  margin-bottom: 0.5em;
}
.single-post .entry-content .entry-detail h2:not(:first-child) {
  margin-top: 1em;
}
.single-post .entry-content .entry-detail h3 {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.4rem;
  font-family: var(--font-ZenOldMincho);
  line-height: 1.6666666667;
  color: var(--white);
  background: var(--color-02);
  padding: 0.25em 1em;
  margin-bottom: 0.5em;
}
.single-post .entry-content .entry-detail h3:not(:first-child) {
  margin-top: 1em;
}
.single-post .entry-content .entry-detail h4 {
  font-size: 2.2rem;
  font-family: var(--font-ZenOldMincho);
  line-height: 1.8181818182;
  color: var(--color-02);
  margin-bottom: 0.5em;
}
.single-post .entry-content .entry-detail h4:not(:first-child) {
  margin-top: 0.5em;
}
.single-post .entry-content .entry-detail ul {
  padding-left: 1.5em;
}
.single-post .entry-content .entry-detail ul li {
  list-style: disc;
}
.single-post .entry-content .entry-detail ul li::marker {
  color: #dfdfdf;
}
.single-post .entry-content .entry-detail ul li:not(:last-child) {
  margin-bottom: 1rem;
}
.single-post .entry-content .entry-detail ol {
  padding-left: 1.25em;
}
.single-post .entry-content .entry-detail ol li::marker {
  color: var(--color-02);
  font-family: var(--font-ZenOldMincho);
  margin-right: 0.25em;
}
.single-post .entry-content .entry-detail ol li:not(:last-child) {
  margin-bottom: 1rem;
}
.single-post .entry-content .entry-footer {
  margin: 10rem auto 0;
}
@media screen and (max-width: 767px) {
  .single-post .entry-content .entry-header {
    margin: 2rem auto;
  }
  .single-post .entry-content .entry-header .post-date {
    font-size: 2.6rem;
  }
  .single-post .entry-content .entry-header .post-ttl {
    font-size: 4rem;
  }
  .single-post .entry-content .entry-detail {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  .single-post .entry-content .entry-detail p {
    line-height: 1.5;
  }
  .single-post .entry-content .entry-detail h2 {
    font-size: 4rem;
    line-height: 1.25;
    color: var(--color-02);
  }
  .single-post .entry-content .entry-detail h3 {
    font-size: 3.5rem;
    line-height: 1.5625;
  }
  .single-post .entry-content .entry-detail h4 {
    font-size: 3.2rem;
    line-height: 1.3333333333;
  }
}

/*-------------------------------------------------
  検索フォーム
-------------------------------------------------*/
.searchform {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem;
  background: var(--white);
  border: 1px solid var(--color-02);
}
.searchform .search_input {
  width: 27rem;
  font-size: 1.8rem;
  background: transparent;
  border: none;
}
.searchform .search_input::-moz-placeholder {
  color: #ccc;
}
.searchform .search_input::placeholder {
  color: #ccc;
}
.searchform .search_input:focus {
  border: none;
  outline: none;
}
.searchform .btn-search {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: var(--color-02);
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--white);
  padding: 0.5em;
}

/*-------------------------------------------------
  サイト内検索　結果表示ページ
-------------------------------------------------*/
.search .page-content .search-result-wrap {
  width: min(100%, 130rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.search .page-content .search-result-wrap .search-page-header {
  margin: 2rem auto;
}
.search .page-content .search-result-wrap .search-item {
  position: relative;
  padding: 3rem 0;
  transition: 0.3s all;
}
.search .page-content .search-result-wrap .search-item::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  content: "";
  width: 100%;
  height: 12px;
  background: url(../images/bg_line_02.png) center right no-repeat;
  background-size: 100% auto;
}
.search .page-content .search-result-wrap .search-item p.post-date {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-02);
}
.search .page-content .search-result-wrap .search-item p.post-ttl {
  font-size: 3rem;
  font-family: var(--font-ZenOldMincho);
  font-weight: 400;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
}
.search .page-content .search-result-wrap .search-item .post-excerpt {
  line-height: 2.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
.search .page-content .search-result-wrap .search-item:hover {
  background: var(--color-01);
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .search .page-content .search-result-wrap {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .search .page-content .search-result-wrap .search-item {
    position: relative;
    padding: 2rem 0;
    transition: 0.3s all;
  }
  .search .page-content .search-result-wrap .search-item::after {
    position: absolute;
    bottom: -6px;
    left: 0;
    content: "";
    width: 100%;
    height: 12px;
    background: url(../images/bg_line_02.png) center right no-repeat;
    background-size: auto 100%;
  }
  .search .page-content .search-result-wrap .search-item p.post-date {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--color-02);
  }
  .search .page-content .search-result-wrap .search-item p.post-ttl {
    font-size: 3rem;
    font-family: var(--font-ZenOldMincho);
    font-weight: 400;
    line-height: 1.5;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .search .page-content .search-result-wrap .search-item .post-excerpt {
    font-size: 2.6rem;
    line-height: 1.9230769231;
  }
  .search .page-content .search-result-wrap .search-item:hover {
    background: var(--color-01);
    opacity: 0.8;
  }
}

.entry-content {
  width: min(100%, 130rem);
  margin: 0 auto;
}
.entry-content .entry-item {
  position: relative;
  padding: 3rem 0;
  transition: 0.3s all;
}
.entry-content .entry-item::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  content: "";
  width: 100%;
  height: 12px;
  background: url(../images/bg_line_02.png) center right no-repeat;
  background-size: 100% auto;
}
.entry-content .entry-item p.post-date {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-02);
}
.entry-content .entry-item p.post-ttl {
  font-size: 3rem;
  font-family: var(--font-ZenOldMincho);
  font-weight: 400;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
}
.entry-content .entry-item .post-excerpt {
  line-height: 2.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
.entry-content .entry-item:hover {
  background: var(--color-01);
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .entry-content {
    width: 100%;
  }
  .entry-content .entry-item {
    position: relative;
    padding: 2rem 0;
    transition: 0.3s all;
  }
  .entry-content .entry-item::after {
    position: absolute;
    bottom: -0.6rem;
    left: 0;
    content: "";
    width: 100%;
    height: 1.2rem;
    background: url(../images/bg_line_02.png) center right no-repeat;
    background-size: auto 100%;
  }
  .entry-content .entry-item p.post-date {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--color-02);
  }
  .entry-content .entry-item p.post-ttl {
    font-size: 3rem;
    font-family: var(--font-ZenOldMincho);
    font-weight: 400;
    line-height: 1.5;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .entry-content .entry-item .post-excerpt {
    font-size: 2.6rem;
    line-height: 1.9230769231;
  }
  .entry-content .entry-item:hover {
    background: var(--color-01);
    opacity: 0.8;
  }
}

/*-------------------------------------------------
  アニメーション
-------------------------------------------------*/
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-2rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=style.css.map */