@charset "UTF-8";
/* Sass Document */
/* ----------------------------------------------------------------------------------------------------
*  基本情報
* --------------------------------------------------------------------------------------------------*/
html, body {
  height: 100%;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
}

body {
  -webkit-text-size-adjust: 100%;
  font-size: 1.6rem;
  min-width: 1270px;
}

body.is-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
}

@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
  }
}

body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  list-style-type: none;
  font-style: normal;
  font-weight: normal;
  font-family: YakuHanJP, "Noto Sans JP", Meiryo, sans-serif;
  text-align: left;
  color: #333333;
  letter-spacing: .02em;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

* {
  line-height: 1.4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
          overflow-wrap: break-word;
          word-wrap: break-word;
}

h1, h2, h3 {
  line-height: 1.2;
}

figure,
picture {
  display: block;
  margin: 0;
}

main {
  display: block;
}
@media screen and (max-width: 767px){
  main{
    padding-top: 6.4rem;
  }
}

.ie11 img[src$=".svg"] {
  width: 100%;
  height: auto;
}


  a[href*="tel:"] {
    text-decoration: none;
    cursor: default;
    pointer-events: none;
  }

  @media screen and (max-width: 767px) {
    footer a[href*="tel:"] {
      pointer-events: auto !important;
    }
  }
  

.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
}

.pc {
  display: block;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none!important;
  }
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.ly-inner {
  padding: 0 2rem;
  max-width: calc(1230px + 4rem);
  margin: 0 auto;
  width: 1270px;
}

@media screen and (max-width: 767px) {
  .ly-inner {
    max-width: inherit;
    width: auto;
  }
}

.ly-inner.narrow {
  width: 900px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .ly-inner.narrow {
    min-width: inherit;
    width: auto;
  }
}

.bg-gray {
  background-color: #edebec;
}

.hp-textcenter {
  text-align: center;
}

.hp-flexcenter {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hp-white {
  color: white;
}

.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.content-title {
  font-size: 2.2rem;
  text-align: center;
  font-family: YakuHanJP,'Noto Serif JP', serif;
  font-weight: bold;
}
.content-title .text-small{
  font-size: 75%;
}
.content-title .icon {
  width: 26rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 767px) {
  .content-title .icon {
    width: 16rem;
    margin-bottom: .5rem;
  }
}

@media screen and (max-width: 767px) {
  .content-title {
    font-size: 1.8rem;
  }
}

/* ボタン */
.btn-wrapper {
  text-align: center;
  margin-top: 8rem;
}

@media screen and (max-width: 767px) {
  .btn-wrapper {
    margin-top: 2.5rem;
  }
}

.m-btn {
  font-size: 1.6rem;
  text-align: center;
  min-width: 46rem;
  padding: 2.4rem 1rem;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 767px) {
  .m-btn {
    min-width: inherit;
    font-size: 1.2rem;
    min-width: 25rem;
    padding: 1.5rem;
  }
}

.m-btn.m-white {
  color: currentColor;
  background-color: #fff;
  border: 1px solid #000;
}

.m-btn.m-white:hover {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.8);
}

/* 短い下線 */
.short-line {
  position: relative;
  margin-bottom: 3rem;
  text-align: center;
}

.short-line::after {
  content: '';
  position: absolute;
  width: 6.8rem;
  height: 2px;
  background-color: #666;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -2.5rem;
}

@media screen and (max-width: 767px) {
  .short-line::after {
    width: 3.5rem;
    bottom: -1.5rem;
    height: 1px;
  }
}

/* ----------------------------------------------------------------------------------------------------
*  ヘッダー
* --------------------------------------------------------------------------------------------------*/
.header__inner {
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: calc(1230px + 4rem);
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 10;
    height: 6.4rem;
  }
  .header__inner {
    padding: 0;
    max-width: inherit;
    width: auto;
  }
}

.site-header__top {
  height: 12rem;
}

@media screen and (max-width: 767px) {
  .site-header__top {
    height: auto;
    padding: 1rem 2rem 1rem 1rem;
    position: relative;
  }
}

.site-header__bottom {
  height: 6.5rem;
}

@media screen and (max-width: 767px) {
  .site-header__bottom {
    height: auto;
  }
}

.site-header__top .site-header__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}

.site-header__bottom .site-header__wrapper {
  height: 100%;
}

.site-header__start {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (max-width: 767px) {
  .site-header__start {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

/* ヘッダーロゴ */
.site-header__logo {
  width: 12rem;
}

@media screen and (max-width: 767px) {
  .site-header__logo {
    width: 9rem;
  }
}

.site-header__logo a {
  -webkit-transition: .3s;
  transition: .3s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.site-header__logo a:hover {
  opacity: .7;
}

/* 社名 */
.site-header__text {
  font-size: 1.8rem;
  font-family: YakuHanJP, 'Noto Serif JP', serif;
  margin-left: .7em;
  letter-spacing: .08em;
  line-height: normal;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .site-header__text {
    font-size: 1rem;
  }
}

.site-header__end {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: center;
  -ms-flex-align: end;
  align-items: center;
  margin-top: 2rem;
  gap: 10px;
}
.ap-transactions{
  margin-bottom:1.5rem;
  margin-right: 20px;
}
.ap-transactions a{
  color: rgb(237, 9, 9);
  font-size: 1.4rem;
  font-weight: bold;
}
.ap-transactions a:hover{
  opacity: 0.7;
 }


@media screen and (max-width: 767px) {
  .ap-transactions{ 
    margin-right: 0px;
    margin-bottom:0px;
    line-height: 0.7!important;
  }
  .ap-transactions a{
    color:rgb(237, 9, 9);
    font-size: 0.8rem;
    line-height: 0!important;
  }
  .site-header__end {
    gap: 0px;
  }
  
}
@media screen and (max-width: 767px) {
  .site-header__end {
    margin-top: 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.site-header__link.topics {
  margin-right: 3rem;
  font-size: 1.2rem;
  border: 1px solid #333;
  padding: .4rem 2.5rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-decoration: none;
  color: currentColor;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  -webkit-transition: .3s;
  transition: .3s;
}

.site-header__link.topics:hover {
  background-color: #333;
  color: #fff;
}
a.e-menu{
  font-size: 1.7rem;
  margin-right: 2.5rem;
  font-family:serif; 
  color: currentColor;
  text-decoration: none;
  font-weight: bold;
  padding-bottom: 0;
  height: 30px;
  display: flex;
  align-items: center;
}
 .global-nav__item.e-menu-box:first-of-type .global-nav__link {
  border: none!important;
}
.e-menu.global-nav__link.header-cart {
}
.e-menu.global-nav__link.header-cart span {
  width: 20px;
  display: block;
  padding-bottom: 3px;
}
.e-menu.global-nav__link.header-mypage {
  border-bottom: none;
}
.e-menu.global-nav__link.header-en{
  margin-right: 0;
  border-bottom: none;
}
.e-menu.global-nav__link.header-en span {
  width: 30px;
  display: block;
  padding-top: 8px;
}
.e-menu.global-nav__link.header-en span img{
  width:100%;
}
.e-menu.global-nav__link.header-mypage span {
  width: 25px;
  display: block;
  padding-bottom:0;
}
.e-menu.global-nav__link.magazine span {
  width: 50px;
}

@media screen and (max-width: 767px){
  .global-nav__item.e-menu-box .global-nav__link::after {
    content: none!important;
    
}
a.e-menu{
  margin-right: 0;
  padding: 0 5px;
}
a.e-menu span{
  padding-bottom: 0;
  font-size: 14px;
}


}

/* カートとマイページ */
.site-header__button {
  width: 5.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 0.5em;
  text-decoration: none;
  color: currentColor;
  -webkit-transition: .3s;
  transition: .3s;
}

.site-header__button:hover {
  opacity: .7;
}

@media screen and (max-width: 767px) {
  .site-header__button {
    width: 2.5rem;
    margin: 0 .8rem;
    padding: 0;
  }
}

.site-header__button .icon {
  display: block;
}

.site-header__button .text {
  font-size: 1.0rem;
  white-space: nowrap;
  margin-top: .5em;
}

@media screen and (max-width: 767px) {
  .site-header__button .text {
    display: none;
  }
}

.site-header__button.mypage .icon {
  width: 2.3rem;
}
a.magazine.site-header__button .icon {
  width: 5rem;
}


@media screen and (max-width: 767px) {
  .site-header__button.mypage .icon {
    width: 100%;
  }
  a.magazine.site-header__button .icon{
    width: 4rem;
  }
}

.site-header__button.cart {
  margin-right: 0;
}

.site-header__button.cart .icon {
  width: 3.1rem;
}

@media screen and (max-width: 767px) {
  .site-header__button.cart .icon {
    width: 100%;
  }
}

/* グローバルナビゲーション */
.global-nav {
  height: 100%;
  margin-top: auto;
}

@media screen and (max-width: 767px) {
  .global-nav {
    top: 6rem;
    display: block;
    position: fixed;
    right: 0;
    width: 100%;
    text-align: center;/* 
    height: calc(100vh - 6rem);
    height: calc((var(--vh, 1vh) * 100) - 6rem); */
    padding: 0;
    -webkit-transition: .75s;
    transition: .75s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    z-index: 10;
    background-color: #fff;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    padding-bottom: 10rem;
  }
  .global-nav.is-active {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    pointer-events: auto;
  }
}

.global-nav * {
  font-family: YakuHanJP,'Noto Serif JP', serif;
  font-weight: bold;
}

.global-nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 100%;
  padding-bottom: 2rem;
}

@media screen and (max-width: 767px) {
  .global-nav__list {
    display: block;
    height: auto;
  }
}

.global-nav__item {
  position: relative;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .global-nav__item {
    height: auto;
  }
  .global-nav__item.has__sub-nav .global-nav__link::before {
    position: absolute;
    content: '';
    width: 1px;
    height: 1.1rem;
    background-color: gray;
    -webkit-transform: rotate(0) translateY(-50%) translateX(50%);
            transform: rotate(0) translateY(-50%) translateX(50%);
    top: 50%;
    right: 4rem;
  }
  .global-nav__item.has__sub-nav .global-nav__link::after {
    content: "";
    border: none;
    width: 1.1rem;
    height: 1px;
    background-color: gray;
    -webkit-transform: rotate(0) translateY(-50%) translateX(50%);
            transform: rotate(0) translateY(-50%) translateX(50%);
    top: 50%;
    right: 4rem;
  }
  .global-nav__item.is-active .global-nav__link::before {
    display: none;
  }
  .global-nav__item:first-of-type .global-nav__link {
    border-top: 1px solid #e5e5e5;
  }

}

@media screen and (min-width: 768px) {
  .global-nav__item:hover .sub-nav__list {
    opacity: 1;
    pointer-events: auto;
  }
  .global-nav__item:hover .global-nav__link::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
  .global-nav__item .sub-nav__list.box-width {
    width: 280px;
  }
}

.global-nav__link {
  font-size: 1.50rem;
  color: currentColor;
  text-decoration: none;
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 100%;
  position: relative;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .global-nav__link {
    padding: 1em 2rem;
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
  }
}

.global-nav__link span {
  position: relative;
  display: block;
  padding-bottom: .2em;
}

.global-nav__link::after {
  content: '';
  position: absolute;
  width: calc(100% + 1.5em);
  left: -0.8em;
  bottom: 0;
  background-color: #000;
  height: 1px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

@media screen and (max-width: 767px) {
  .global-nav__link span::after {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .global-nav__link::after {
    content: '';
    position: absolute;
    width: 0.6rem;
    height: 0.6rem;
    -webkit-transform: scaleX(100%);
            transform: scaleX(100%);
    background-color: transparent;
    border-top: 1px solid gray;
    border-right: 1px solid gray;
    -webkit-transform: rotate(45deg) translateY(-50%);
            transform: rotate(45deg) translateY(-50%);
    top: 48%;
    right: 4rem;
    left: auto;
  }

  .e-menu.global-nav__link.header-en span {
    width: 24px;
    padding-top: 5px;
  }
  .e-menu.global-nav__link.header-mypage{
    margin-right: 0px;
  }
  .e-menu.global-nav__link.header-mypage span {
    width: 20px;
    height: 21px;
  } 
}

/* サブナビゲーション */
.sub-nav__list {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 196px;
  background-color: rgba(247, 247, 247, 0.8);
  margin-top: 0;
  padding: 1rem 0;
  -webkit-transition: .7s;
  transition: .7s;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .sub-nav__list {
    padding: 0;
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: none;
    transition: none;
    display: none;
    margin-top: 0;
    position: static;
    -webkit-transform: none;
            transform: none;
    width: 100%;
    background-color: #fff;
  }
}

.sub-nav__item {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .sub-nav__item {
    text-align: left;
  }
}

.sub-nav__link {
  font-size: 1.50rem;
  display: inline-block;
  color: currentColor;
  text-decoration: none;
  padding: .5rem 0;
  margin: 0.4rem 0 ;
  position: relative;
}

@media screen and (max-width: 767px) {
  .sub-nav__link {
    font-size: 1.4rem;
    padding: 1em 2rem;
    background-color: #f7f7f7;
    width: 100%;
    margin: 0 0 ;
    border-bottom: 1px solid #e5e5e5;
  }
}

@media screen and (min-width: 768px) {
  .sub-nav__link:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
}

.sub-nav__link::after {
  content: '';
  position: absolute;
  width: 100%;
  background-color: #000;
  height: 1px;
  left: 0;
  bottom: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

@media screen and (max-width: 767px) {
  .sub-nav__link::after {
    width: 0.6rem;
    height: 0.6rem;
    -webkit-transform: scaleX(100%);
            transform: scaleX(100%);
    background-color: transparent;
    border-top: 1px solid gray;
    border-right: 1px solid gray;
    -webkit-transform: rotate(45deg) translateY(-50%);
            transform: rotate(45deg) translateY(-50%);
    top: 54%;
    right: 4rem;
    left: auto;
  }
}

/* ハンバーガー */
.hamburger {
  display: none;
  position: relative;
  margin-left: .5rem;
}

@media screen and (max-width: 767px) {
  .hamburger {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-left: 1.2rem;
  }
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  -webkit-transition: all .4s;
  transition: all .4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.menu-trigger {
  position: relative;
  width: 2.6rem;
  height: 1.8rem;
  background: none;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
  -webkit-animation: menu-bar01 .75s forwards;
          animation: menu-bar01 .75s forwards;
}

.menu-trigger span:nth-of-type(2) {
  top: calc(50% - 1px);
  -webkit-animation: menu-bar02 .75s forwards;
          animation: menu-bar02 .75s forwards;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
  -webkit-animation: menu-bar03 .75s forwards;
          animation: menu-bar03 .75s forwards;
}

.menu-trigger.is-active span:nth-of-type(1) {
  -webkit-animation: active-menu-bar01 .75s forwards;
          animation: active-menu-bar01 .75s forwards;
}

.menu-trigger.is-active span:nth-of-type(2) {
  -webkit-animation: active-menu-bar02 .75s forwards;
          animation: active-menu-bar02 .75s forwards;
}

.menu-trigger.is-active span:nth-of-type(3) {
  -webkit-animation: active-menu-bar03 .75s forwards;
          animation: active-menu-bar03 .75s forwards;
}

@-webkit-keyframes menu-bar01 {
  0% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: calc(50% - 1px);
  }
  50% {
    top: calc(50% - 1px);
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    top: 0;
  }
}

@keyframes menu-bar01 {
  0% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: calc(50% - 1px);
  }
  50% {
    top: calc(50% - 1px);
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    top: 0;
  }
}

@-webkit-keyframes active-menu-bar01 {
  0% {
    top: 0;
  }
  50% {
    top: calc(50% - 1px);
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    top: calc(50% - 1px);
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

@keyframes active-menu-bar01 {
  0% {
    top: 0;
  }
  50% {
    top: calc(50% - 1px);
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    top: calc(50% - 1px);
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

@-webkit-keyframes menu-bar02 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes menu-bar02 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes active-menu-bar02 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes active-menu-bar02 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes menu-bar03 {
  0% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    bottom: calc(50% - 1px);
  }
  50% {
    bottom: calc(50% - 1px);
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    bottom: 0;
  }
}

@keyframes menu-bar03 {
  0% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    bottom: calc(50% - 1px);
  }
  50% {
    bottom: calc(50% - 1px);
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    bottom: 0;
  }
}

@-webkit-keyframes active-menu-bar03 {
  0% {
    bottom: 0;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    bottom: calc(50% - 1px);
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    bottom: calc(50% - 1px);
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

@keyframes active-menu-bar03 {
  0% {
    bottom: 0;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    bottom: calc(50% - 1px);
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    bottom: calc(50% - 1px);
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

/* ----------------------------------------------------------------------------------------------------
*  フッター
* --------------------------------------------------------------------------------------------------*/
.footer {
  background-color: #edeeed;
  padding: 10rem 0 7rem;
}

@media screen and (max-width: 767px) {
  .footer {
    min-width: inherit;
  }
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 4rem 2rem;
    max-width: inherit;
    width: 100%;
  }
}

.footer .footer-logo {
  width: 100px;
  margin: 0 auto 20px;
}

.footer .copyright {
  font-size: 1.3rem;
  text-align: center;
  line-height: 1.6;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .footer .footer-logo {
    width: 80px;
    margin-bottom: 15px;
  }

  .footer .copyright {
    font-size: 1.1rem;
  }
}

.sns-link {
  margin-bottom: 6.5rem;
}

@media screen and (max-width: 767px) {
  .sns-link {
    margin-bottom: 3rem;
  }
}

.sns-link__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sns-link__item {
  width: 4.6rem;
  height: 4.6rem;
  margin: 0 2rem;
}

.sns-link__item.twitter {
  width: 4.8rem;
}

@media screen and (max-width: 767px) {
  .sns-link__item {
    margin: 0 1rem;
    width: 3rem;
    height: 3rem;
  }
  .sns-link__item.twitter {
    width: 2.4rem;
  }
}

.sns-link__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  -webkit-transition: .3s;
  transition: .3s;
}

.sns-link__link:hover {
  opacity: .7;
}

/* フッターナビゲーション */
.footer-nav {
  margin: 4rem 0;
}

@media screen and (max-width: 767px) {
  .footer-nav {
    margin: 0 0 2.5rem;
  }
}

.footer-nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .footer-nav__list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer-nav__item {
  margin: 1rem;
}

@media screen and (max-width: 767px) {
  .footer-nav__item {
    width: 48%;
    margin: .5rem 0;
  }
}

.footer-nav__link {
  font-size: 1.6rem;
  display: inline-block;
  text-align: center;
  min-width: 26.7rem;
  padding: 1.4rem 0;
  border: 1px solid #4f4d4d;
  color: currentColor;
  text-decoration: none;
  -webkit-transition: .3s;
  transition: .3s;
}

.footer-nav__link:hover {
  background-color: #4f4d4d;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .footer-nav__link {
    min-width: inherit;
    width: 100%;
    font-size: 1.1rem;
  }
}

.incidental-link {
  margin-bottom: 7rem;
}

@media screen and (max-width: 767px) {
  .incidental-link {
    margin-bottom: 3rem;
  }
}

.incidental-link__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 0;
}

.incidental-link__item {
  margin: 0 2rem;
}

@media screen and (max-width: 767px) {
  .incidental-link__item {
    margin: 0 1rem;
  }
}

.incidental-link__link {
  font-size: 1.3rem;
  color: currentColor;
  text-decoration: none;
  -webkit-transition: .3s;
  transition: .3s;
}

.incidental-link__link:hover {
  opacity: .7;
}

@media screen and (max-width: 767px) {
  .incidental-link__link {
    font-size: 1.1rem;
  }
}

.tel-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tel-text .tel-title {
  font-size: 1.6rem;
}

.tel-text .icon {
  width: 1.5rem;
  height: 2rem;
  display: block;
  margin: 0 .5rem 0 2rem;
}

.tel-text .tel-num {
  font-size: 2.3rem;
  font-weight: 600;
}

/* ------------------------------
    clearfix
------------------------------ */
.cf:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

.cf {
  display: inline-block;
}

/* Hides from IE Mac */
* html .cf {
  height: 1%;
}

.cf {
  display: block;
}
@media screen and (max-width: 767px) {
  .ap-youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
  }
  .ap-youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
}

.reserve_banner {
  margin-top: 10px;
  text-align: center;
}
.sale_period h3,.sale_period p{
  text-align: center;
  font-weight: bold; 
  margin-top: 40px;
  margin-bottom: 30px;
  font-size: 3rem;

}
.reception,.pre_order{
  width: 70%;
    margin: 50px auto;
}

.reception p, .pre_order p{
  line-height: 2;
}
p.order_font {
  font-size: 2rem;
  font-weight: bold;
}
.sale_period{
  margin-top:80px;
}
.reception_delivery th {
  background-color: #b7b7b7;
  padding-top: 1.7rem;
  padding-bottom: 1.7rem;
}
.reception_delivery th,.reception_delivery td{
  font-size: 1.5rem;
  line-height: 1.5;
}
.reception_delivery .size {
  /*width: 245px;*/
}
.reception_delivery td, .reception_delivery th {
  border-bottom: 1px solid #161616;
  border-right: 1px solid #161616;
  padding: 1rem;
}
.reception_delivery {
  width: 70%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #161616;
  border-bottom: none;
  border-right: none;
  table-layout: fixed;
  margin: 60px auto;
  margin-bottom: -15px;
}
.ap-special_page .reception_delivery {
  margin: 60px auto 10px;
}
.ap-comment{
  text-align: center;
}

@media screen and (max-width: 767px) {
    .reception_delivery {
      width: 100%;
      margin: 30px auto;

    }
    .qa th,.qa td{
      font-size: 1.2rem!important;
      line-height: 1.3;
    }  
    .reception, .pre_order {
      width: 100%;
      margin: 40px auto;
    }
    .sale_period h3, .sale_period p {
      margin-top: 20px;
      margin-bottom: 0px;
      font-size: 2rem;
    }
      p.order_font {
      font-size: 1.6rem!important;
    }
    .reception p, .pre_order p{
      font-size: 1.3rem;
    }
    .sale_period p{
      text-align: justify;
      margin:40px auto;
      display: table;
      line-height: 1.3;
    }
    .reserve_banner {
      margin-top: 8px;
    }
      .sale_period {
        margin-top: 50px;
    }
    .reception_delivery td, .reception_delivery th {
      padding: 1rem 0.4rem;
    }
}
@media screen and (max-width: 420px) {
  .ap-comment{
    text-align: justify;
    font-size: 1.3rem;
    line-height: 1.4;
   }
  }
.qa-Box {
  width: 70%;
  margin: 0 auto;
  margin-bottom:100px;
  margin-top:-130px
}

.qa-Box .qa dt,
.qa-Box .qa dd {
  display: flex;
  align-items: baseline;
}

.qa-Box .qa dt p {
  margin: 0;
  padding-left: 15px;
  font-weight: bold;
  width: 100%;
  line-height: 2;
}

.qa-Box .qa dd p {
  margin: 0;
  padding-left: 15px;
  width: 100%;
  line-height: 2;
}
.qa_t{
  font-size: 2rem;
  font-weight: bold;
  
}
.qa {
  margin-top: 40px!important;
}
.ly-inner .qa-Box p.qa_t{
  line-height: 0!important;
  
}
ul.cards.product-catds.ap-catds {
  margin-top: 0rem;
  display: flex;
  justify-content: space-around;
}
ul.cards.product-catds.ap-catds  li.card.fadeUpTrigger.fadeUp{
  width: calc(100% / 3);
  padding:30px;
  margin-right: 0rem!important;

}
p.idea-period {
  color: #ed0909;
}
.summer-gift {
  margin: 40px auto 0;
  display: table;
}


@media screen and (max-width: 767px) {
  .qa-Box {
    width: 100%;
    margin:0 auto;
    margin-bottom:50px;
    margin-top: -20px;
  }
  .qa-Box .qa dt p,.qa-Box .qa dd p {
    font-size: 1.3rem!important;

  }
  
  .ly-inner .qa-Box p.qa_t{
    font-size: 1.6rem!important;
    
  }
  .qa {
    margin-top: 20px!important;
  }
  ul.cards.product-catds.ap-catds li.card.fadeUpTrigger.fadeUp {
    width: 48%;
    padding:8px;

  }
}
@media screen and (max-width: 420px) {
  p.idea-period {
    font-size: 1.3rem;
  }
  .summer-gift {
    margin: 30px auto;
    display: table;
}
}
/* End Hack */
/*# sourceMappingURL=common.css.map */


.shopify-buy__btn{
  background-color: #bca475;
  border-radius: 0px;
  background-image: url(https://www.mirinya.com/wp/wp-content/themes/mirinya/img/common/icon_cart_w.svg);
  background-repeat: no-repeat;
  background-size: 29px 31px;
  background-position: calc(50% - 4em) center;
  width: 100%;
  padding: 1.8rem 1rem 1.8rem 2em;
  font-size: 1.4rem;
  -webkit-transition: .3s;
  transition: .3s;
  display: -flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -justify-content: center;  
  color: white;
  font-size: 20px;
  margin:15px 0;
}

.shopify-buy__btn:disabled{
  background-color: grey;
}

.shopify-buy__link.disabled{
  cursor: not-allowed;
  pointer-events: none; 
}
.shopify-buy__link.disabled .shopify-buy__btn {
  background-color: #939393;
}
.speech_bubble {
  position: relative;
  max-width: 700px;
  height: 100%;
  background: #f3f3f3;
  padding: 20px;
  text-align: left;
  color: #333333;
  font-size: 14px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  width: 100%;
  margin-left: 30px
}
.speech_bubble:after{
  border: solid transparent;
  content:'';
  height:0;
  width:0;
  pointer-events:none;
  position:absolute;
  border-color: rgba(90, 230, 40, 0);
  border-top-width:10px;
  border-bottom-width:10px;
  border-left-width:30px;
  border-right-width:30px;
  margin-top: -10px;
  border-right-color:#f3f3f3;
  right:100%;
  top:50%;
}
.speech_bubble-fx{
  display: flex;
  align-items: center;
  margin: 4rem auto;
}
.introductory-dishes-fx{
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 5rem;
}
.introductory-dishes-fx div{
  width: calc(100%/3 - 10px);
}
.introductory-dishes-fx img {
  aspect-ratio: 100/100;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.reading-materialblog-hover:hover{
  transition: .5s;
  opacity: 0.7;
}
.speech_bubble a:hover{
  transition: .5s;
  opacity: 0.7;
}
.speech_bubble-img{
  width: 20%;
}
.speech_bubble{
  width: 80%;
}
.speech_bubble-img img {
  aspect-ratio: 155/173;
  object-fit: cover;
  width: 100%;
  height: 100%;
  margin-top: 0;
}
.insta_btn {
  display: inline-block;
  text-align: center;/*中央揃え*/
  font-size: 20px;/*文字サイズ*/
  text-decoration: none;/*下線消す*/
}

.insta-folloow-btn:hover {/*ホバー時*/
  transition: .5s;/*ゆっくり変化*/
  opacity: 0.7;
}

.insta-folloow-btn .insta-folloow{/*アイコンの背景*/
  position: relative;/*相対配置*/
  display: inline-block;
  width: 40px;/*幅*/
  height: 40px;/*高さ*/
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;/*グラデーション①*/
  overflow: hidden;/*はみ出た部分を隠す*/
  border-radius: 13px;/*角丸に*/
  margin-top: 0;

}

.insta-folloow-btn .insta-folloow:before{/*グラデーションを重ねるため*/
  content: '';
  position: absolute;/*絶対配置*/
  top: 23px;/*ずらす*/
  left: -18px;/*ずらす*/
  width: 60px;/*グラデーションカバーの幅*/
  height: 60px;/*グラデーションカバーの高さ*/
  background: -webkit-radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
  background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);/*グラデーション②*/
}

.insta-folloow-btn .fa-instagram {/*アイコン*/
  color: #FFF;/*白に*/
  position: relative;/*z-indexを使うため*/
  z-index: 2;/*グラデーションより前に*/
  font-size: 35px;/*アイコンサイズ*/
  line-height: 50px;/*高さと合わせる*/
}
.insta-folloow img {
  width: 30px;
  vertical-align: bottom;
  height: 40px;
  object-fit: contain;
  z-index: 9999;
  position: relative;
  display: table;
  margin: 0 auto;
}
a.insta-folloow-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 10px;
  text-decoration: none;
}
.insta-folloow-wrap {
  margin: 2rem 0;
  position: relative;
}
.insta-folloow-wrap::before {
  content: "▶️";
  position: absolute;
  left: 0;
  color: rgb(85, 26, 139);
  top: 5px;
}
.insta-folloow-txt {
  font-size: 21px!important;
}


@media screen and (max-width: 500px) {
  .speech_bubble{
    width: 70%;
  }
  .speech_bubble-img img {
    aspect-ratio: 67/67;
  }
  .insta-folloow img {
    width: 20px;
    height: 27px;
  }
.insta-folloow-btn .insta-folloow {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  }
  .insta-folloow-wrap::before {
    top: -1px;
  }
  .insta-folloow-txt {
    font-size: 16px!important;
  }
.insta-folloow-wrap::before {
  font-size: 14px;
  }
  .insta-folloow-btn .insta-folloow:before {
    top: 10px;
    left: -25px;
  }
  
}
.form-inquiry{
  padding: 8rem 0 13rem;
}
.form-inquiry .field {
  margin-bottom: 22px;
}
@media screen and (max-width: 500px) {

  .form-inquiry {
      padding: 2rem 0 5rem;
    }

}

/* ポップアップ */
.popup {
  position: fixed;
  bottom: 30px;
  right: 0;
  width: 100%;
  padding: 0 20px;
  max-width: 400px;
  margin: 0 auto;
  z-index: 10;
  animation: popupFadeIn .7s ease 0s 1 normal;
}
@keyframes popupFadeIn {
  0% {
    opacity: 0;
    transform: translateY(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.popup-in {
  width: 100%;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  padding: 15px 12px;
  position: relative;
}
.popup-in p {
  line-height: 1.4;
}
.popup-in p a {
  display: block;
  margin-top: 7px;
}
.popup-in p a img {
  max-height: 45px;
  width: auto;
}
.popup-close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: -10px;
  right: -10px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  cursor: pointer;
}
.popup-close::before {
  content: "";
  width: 15px;
  height: 2px;
  background: #ccc;
  transform: translate(-50%, -50%) rotate(45deg);
  position: absolute;
  top: 50%;
  left: 50%;
}
.popup-close::after {
  content: "";
  width: 15px;
  height: 2px;
  background: #ccc;
  transform: translate(-50%, -50%) rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 50%;
}
.popup-heading {
  font-weight: bold;
  text-align: center;
  margin: 0 auto 8px;
  position: relative;
  width: fit-content;
}
.popup-heading p {
  display: flex;
  align-items: center;
  gap: 0 12px;
}
.popup-heading img {
  width: 30px;
  height: 30px;
}
.popup-txt {
  font-size: 14px;
  text-align: center;
}
.popup-txt img {
  width: 100%;
  margin: 10px 0;
}
.popup-link {
  background: #bca475;
  color: #fff;
  width: 240px;
  margin: 8px auto 0;
  padding: 10px;
  text-align: center;
  display: block;
  text-decoration: none;
  transition: all .4s ease;
  font-size: 14px;
}
.popup-link:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .popup {
    right: 30px;
    bottom: 30px;
    padding: 0;
    max-width: 380px;
  }
  .popup-in {
    padding: 20px 25px;
  }
}