@charset "UTF-8";

html {
  font-size: 62.5%;
}
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  font-feature-settings: "palt";
  line-height: 1;
  letter-spacing: 0;
  color: #646464;
  padding: 0;
  margin: 0;
}
@media print, screen and (min-width: 750px) {
  body {
    padding-top: 71px;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
a,
a:hover,
a:visited {
  color: #646464;
  text-decoration: none;
}
@media print, screen and (min-width: 750px) {
  a:hover {
    opacity: 0.8;
  }
}
li {
  list-style:none;
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
main {
  display: block;
}

/* inview */
/* フェードイン(初期値) */
.inview-fadeUp {
  opacity: 0; /* 最初は非表示 */
  transform: translateY(30px); /* 下に30pxの位置から */
  transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
}
/* フェードイン(スクロールした後) */
.inview-fadeUp.is-inview {
  opacity: 1; /* 表示領域に入ったら表示 */
  transform: translateY(0); /* 30px上に移動する */
  transition-delay: .5s; /* フェード開始を0.5秒遅らせる */
}
.inview-fadeSlide {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .8s, transform .8s;
}
.inview-fadeSlide.is-inview {
  opacity: 1;
  transform: translateX(0);
  transition-delay: .5s;
}
.inview-fadeIn {
  opacity: 0;
  transition: opacity .8s;
}
.inview-fadeIn.is-inview {
  opacity: 1;
}

/* common */
.commonInner {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
}
@media print, screen and (min-width: 750px) {
  .commonInner {
    max-width: 1394px;
    padding: 0 27px;
    margin: 0 auto;
  }
}
.is-pc {
  display: none;
}
@media print, screen and (min-width: 750px) {
  .is-pc {
    display: block;
  }
}
.is-sp {
  display: block;
}
@media print, screen and (min-width: 750px) {
  .is-sp {
    display: none;
  }
}

/* header */
.header {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  background: #fff;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
}
@media screen and (max-width: 749px) {
  .header {
    width: 50px;
    background: transparent;
  }
}
@media print, screen and (min-width: 750px) {
  .header {
    height: 71px;
    opacity: 1;
    transition: all .3s ease;
  }
  .header.hide {
    transform: translateY(-71px);
    opacity: 0.5;
  }
}
.header-wrap {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding: 28px 10px 0;
  margin: 0;
}
@media print, screen and (min-width: 750px) {
  .header-wrap {
    justify-content: space-between;
    padding: 0;
  }
}
.header-wrap-left {
  display: none;
}
@media print, screen and (min-width: 750px) {
  .header-wrap-left {
    display: block;
    width: 280px;
    padding: 22px 0 12px;
    margin: 0;
  }
}
.header-wrap-right {
  display: block;
  width: 50px;
  padding: 0;
  margin: 0;
}
@media print, screen and (min-width: 750px) {
  .header-wrap-right {
    width: calc(100% - 280px);
    padding: 17px 0 19px 30px;
    margin: 0;
  }
}
.header-logo {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
}
.header-logo .is-logo {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
}
.header-logo .is-logo img {
  display: block;
  width: 100%;
  height: auto;
  /* image-rendering: pixelated; */
}
.header-gnaviArea {
  display: none;
}
@media print, screen and (min-width: 750px) {
  .header-gnaviArea {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
  }
}
.header-hnaviArea {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
}
@media print, screen and (min-width: 750px) {
  .header-hnaviArea {
    display: none;
  }
}
.header-naviList {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 19px;
  padding: 0;
  margin: 0;
}
@media print, screen and (min-width: 750px) {
  .header-naviList {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 20px;
  }
}
.header-naviList-item {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  line-height: 1;
}
@media print, screen and (min-width: 750px) {
  .header-naviList-item {
    width: auto;
  }
}
.header-naviList-item .is-link {
  display: inline-block;
  width: auto;
  padding: 10px 0;
  margin: 0;
}
.header-naviList-item .is-img {
  display: block;
  /* display: inline-block; */
  padding: 0;
  margin: 0;
  /* background: no-repeat center center / contain;
  text-align: left;
  text-indent: -1000px;
  white-space: nowrap;
  font-size: 12px;
  overflow: hidden; */
}
.header-naviList-item .is-img.img-about {
  width: 75px;
  height: 18px;
  /* background-image: url(../img/gnavi_about_sp.png); */
}
@media print, screen and (min-width: 750px) {
  .header-naviList-item .is-img.img-about {
    width: 53px;
    height: 14px;
    /* background-image: url(../img/gnavi_about_pc.png); */
  }
}
.header-naviList-item .is-img.img-products {
  width: 119px;
  height: 19px;
  /* background-image: url(../img/gnavi_products_sp.png); */
}
@media print, screen and (min-width: 750px) {
  .header-naviList-item .is-img.img-products {
    width: 83px;
    height: 14px;
    /* background-image: url(../img/gnavi_products_pc.png); */
  }
}
.header-naviList-item .is-img.img-shop {
  width: 61px;
  height: 18px;
  /* background-image: url(../img/gnavi_shop_sp.png); */
}
@media print, screen and (min-width: 750px) {
  .header-naviList-item .is-img.img-shop {
    width: 43px;
    height: 14px;
    /* background-image: url(../img/gnavi_shop_pc.png); */
  }
}
.header-naviList-item .is-img picture {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
}
.header-naviList-item .is-img img {
  display: block;
  width: 100%;
  height: auto;
  /* image-rendering: pixelated; */
}
.header-hnaviArea-openBtn {
  display: block;
  width: 100%;
  height: 29px;
  padding: 0;
  margin: 0;
  background: url(../img/hnavi_btn_open.svg) no-repeat center center / auto 21px;
  text-align: left;
  text-indent: -1000px;
  font-size: 12px;
  overflow: hidden;
}

/* hnav */
.hnav {
  /* display: none; */
  display: block;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  padding: 0;
  margin: 0;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100000;
  opacity: 0;
  transform: translateX(100vw);
  transition: opacity .8s, transform .8s;
}
.hnav.is-active {
  /* display: block; */
  opacity: 1;
  transform: translateX(0);
  transition-delay: .1s;
}
.hnav-bg {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  position: absolute;
  z-index: 1;
}
.hnav-body {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 300px;
  height: 100%;
  padding: 57px 0 0;
  margin: 0;
  background: #3d73b3CC; /* CC opacity .8 */
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.hnav-body::-webkit-scrollbar {
  display: none;
}
.hnav-body-closeBtn {
  display: block;
  width: 50px;
  height: 29px;
  padding: 0;
  margin: 0 0 0 auto;
  background: url(../img/hnavi_btn_close.svg) no-repeat center center / auto 21px;
  text-align: left;
  text-indent: -1000px;
  font-size: 12px;
  position: absolute;
  top: 28px;
  right: 10px;
  z-index: 1;
  overflow: hidden;
}
.hnav-body-wrap {
  display: block;
  width: 100%;
  padding: 0 30px;
  margin: 0;
}
.hnav-shopBtn {
  display: block;
  width: 100%;
  padding: 0;
  margin: 63px 0 0;
}
.hnav-shopBtn .is-link {
  display: block;
  width: 183px;
  padding: 10px 0;
  margin: 0;
}
.hnav-shopBtn .is-link img {
  display: block;
  width: 100%;
  height: auto;
  /* image-rendering: pixelated; */
}

/* footer */
.footer {
  display: block;
  width: 100%;
  padding: 37px 0 26px;
  margin: 0;
  background: #3d73b3;
  color: #fff;
}
@media print, screen and (min-width: 750px) {
  .footer {
    padding: 62px 0 40px;
  }
}
.footer-logo {
  display: block;
  width: calc(100% - 20px - 20px);
  max-width: 121px;
  padding: 0;
  margin: 0 auto 19px;
}
@media print, screen and (min-width: 750px) {
  .footer-logo {
    max-width: 200px;
    margin-bottom: 35px;
  }
}
.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
  /* image-rendering: pixelated; */
}
.footer-nav {
  display: block;
  width: calc(100% - 20px - 20px);
  padding: 0;
  margin: 0 auto 10px;
  text-align: center;
  font-size: 12px;
  line-height: 1.2;
}
@media print, screen and (min-width: 750px) {
  .footer-nav {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
  }
}
.footer-nav .is-link {
  color: #fff;
}
.footer-copyright {
  display: block;
  width: calc(100% - 20px - 20px);
  padding: 0;
  margin: 0 auto;
  text-align: center;
  font-size: 10px;
  line-height: 1.44;
}
@media print, screen and (min-width: 750px) {
  .footer-copyright {
    font-size: 12px;
    line-height: 2;
  }
}

/* fixCartBtnArea */
.fixCartBtnArea {
  display: block;
  width: 48px;
  padding: 0;
  margin: 0;
  position: fixed;
  top: 100px;
  right: 0;
  z-index: 100;
}
@media print, screen and (min-width: 750px) {
  .fixCartBtnArea {
    top: unset;
    bottom: 10px;
  }
}
.fixCartBtnArea .is-link {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
}
.fixCartBtnArea .is-link img {
  display: block;
  width: 100%;
  height: auto;
  /* image-rendering: pixelated; */
}

/* mainPage */
.mainPage {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
}

/* mvArea */
.mvArea {
  display: block;
  width: 100%;
  height: 0;
  padding: 176% 0 0;
  margin: 0;
  background: url(../img/mvArea_sp.jpg) no-repeat top center / 100% auto;
  text-align: left;
  text-indent: -1000px;
  font-size: 12px;
  overflow: hidden;
  position: relative;
}
@media print, screen and (min-width: 750px) {
  .mvArea {
    /* padding-top: 49.25%; */
    padding-top: 43.77%;
    background-image: url(../img/mvArea_pc.jpg);
    background-size: auto 100%;
  }
}
@media print, screen and (min-width: 1800px) {
  .mvArea {
    height: 788px;
    padding-top: 0;
    background-size: auto 100%;
  }
}
@media print, screen and (min-width: 2001px) {
  .mvArea {
    height: 0;
    padding-top: 39.4%;
    background-size: 100% auto;
  }
}
.mvArea-spLogo {
  display: block;
  width: 100%;
  height: 0;
  padding: 48.53% 0 0;
  margin: 0;
  background: url(../img/mvArea_logo.png) no-repeat bottom center / 33.06vw auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media print, screen and (min-width: 750px) {
  .mvArea-spLogo {
    display: none;
  }
}

/* aboutArea */
.aboutArea {
  display: block;
  width: 100%;
  padding: 68px 0 63px;
  margin: 0;
}
@media print, screen and (min-width: 750px) {
  .aboutArea {
    padding: 87px 0 93px;
  }
}
.aboutArea-title {
  display: block;
  width: calc(100% - 20px - 20px);
  max-width: 201px;
  padding: 0;
  margin: 0 auto 45px;
}
@media print, screen and (min-width: 750px) {
  .aboutArea-title {
    max-width: 340px;
  }
}
.aboutArea-title img {
  display: block;
  width: 100%;
  height: auto;
}
.aboutArea-catch {
  display: block;
  width: calc(100% - 20px - 20px);
  padding: 0;
  margin: 0 auto 36px;
  color: #3d73b3;
  text-align: center;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-size: 21px;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
@media print, screen and (min-width: 750px) {
  .aboutArea-catch {
    margin-bottom: 32px;
    font-size: 36px;
    line-height: 1.66;
  }
}
.aboutArea-text {
  display: block;
  width: calc(100% - 20px - 20px);
  padding: 0;
  margin: 0 auto;
  color: #3d73b3;
  text-align: center;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 2.14;
}
@media print, screen and (min-width: 750px) {
  .aboutArea-text {
    font-size: 1.6rem;
    line-height: 2.75;
  }
}

/* productsArea */
.productsArea {
  display: block;
  width: 100%;
  padding: 20px 0 60px;
  margin: 0;
}
@media print, screen and (min-width: 750px) {
  .productsArea {
    padding: 40px 0 150px;
  }
}
.productsArea-title {
  display: block;
  width: calc(100% - 20px - 20px);
  max-width: 335px;
  padding: 0;
  margin: 0 auto 47px;
}
@media screen and (max-width: 434px) {
  .productsArea-title {
    width: 100%;
    max-width: 100%;
    position: relative;
  }
  .productsArea-title::before,
  .productsArea-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 100%;
    padding: 0;
    margin: 0;
    background: #fff;
    position: absolute;
    top: 0;
    z-index: 2;
  }
  .productsArea-title::before {
    left: 0;
  }
  .productsArea-title::after {
    right: 0;
  }
}
@media print, screen and (min-width: 750px) {
  .productsArea-title {
    max-width: 1000px;
    margin-bottom: 65px;
  }
}
.productsArea-title picture {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 434px) {
  .productsArea-title picture {
    width: calc(100% - 20px - 20px);
    max-width: 335px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
}
.productsArea-title img {
  display: block;
  width: 100%;
  height: auto;
}
.productsArea-contentsList {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  padding: 0;
  margin: 0;
}
@media print, screen and (min-width: 750px) {
  .productsArea-contentsList {
    gap: 60px;
  }
}
.productsArea-contentsList-item {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
}
@media print, screen and (min-width: 750px) {
  .productsArea-contentsList-item {
    border-radius: 100px;
    overflow: hidden;
  }
}
.productsArea-imgBlocSP {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
}
@media print, screen and (min-width: 750px) {
  .productsArea-imgBlocSP {
    display: none;
  }
}
.productsArea-imgBlocSP img {
  display: block;
  width: 100%;
  height: auto;
}
.productsArea-imgBlocPC {
  display: none;
}
@media print, screen and (min-width: 750px) {
  .productsArea-imgBlocPC {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
  }
}
.productsArea-imgBlocPC img {
  display: block;
  width: 100%;
  height: auto;
}
.productsArea-imgBlocPC-body {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 142px 49px 40px;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
}
#financier .productsArea-imgBlocPC-body {
  align-items: center;
  justify-content: flex-end;
  padding: 40px 60px 40px 49px;
}
#financier .productsArea-imgBlocPC-body .productsArea-imgBlocPC-body-text {
  width: auto;
}
#assortment .productsArea-imgBlocPC-body {
  padding-top: 100px;
}
#cookie .productsArea-imgBlocPC-body {
  justify-content: flex-end;
  padding: 188px 97px 40px 49px;
}
#cookie .productsArea-imgBlocPC-body .productsArea-imgBlocPC-body-text {
  width: auto;
}
.productsArea-imgBlocPC-body-text {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  color: #fff;
}
.productsArea-imgBlocPC-body-text .is-name {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0 0 30px;
}
.productsArea-imgBlocPC-body-text .is-name img {
  width: 100%;
  max-width: 344px;
  padding: 0;
  margin: 0;
}
.productsArea-imgBlocPC-body-text .is-name.name-financier img {
  max-width: 246px;
}
.productsArea-imgBlocPC-body-text .is-name.name-assortment img {
  max-width: 346px;
}
.productsArea-imgBlocPC-body-text .is-name.name-cookie img {
  max-width: 210px;
}
.productsArea-imgBlocPC-body-text .is-btn {
  display: block;
  width: 100%;
  max-width: 200px;
  padding: 0;
  margin: 0;
}
.productsArea-imgBlocPC-body-text .is-btn-img {
  display: none;
  width: 100%;
  height: 0;
  padding: 18% 0 0;
  margin: 0;
  background: url(../img/productsArea_acd_open.svg) no-repeat center center / contain;
  text-align: left;
  text-indent: -1000px;
  font-size: 12px;
  overflow: hidden;
  cursor: pointer;
}
@media print, screen and (min-width: 750px) {
  .productsArea-imgBlocPC-body-text .is-btn-img:hover {
    background-image: url(../img/productsArea_acd_open_hover.svg);
  }
}
.productsArea-imgBlocPC-body-text .is-btn-img.is-active {
  display: block;
}
.productsArea-bodyBlock {
  display: none;
  width: 100%;
  /* padding: 61px 30px 20px; */
  padding: 61px 10px 20px 27px;
  margin: 0;
  background: #fffaea;
  position: relative;
}
@media print, screen and (min-width: 750px) {
  .productsArea-bodyBlock {
    padding: 71px 30px 37px;
  }
}
.productsArea-bodyBlock-bg {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 400px) {
  .productsArea-bodyBlock-bg {
    display: none;
  }
}
.productsArea-bodyBlock-bg::before,
.productsArea-bodyBlock-bg::after {
  content: '';
  display: block;
  width: 19.55%;
  max-width: 262px;
  height: 100%;
  padding: 0;
  margin: 0;
  background: no-repeat center center / contain;
  position: absolute;
  /* top: 65px; */
  top: 0;
  z-index: 1;
}
.productsArea-bodyBlock-bg::before {
  background-image: url(../img/productsArea_bodyBlock_bg_left.png);
  left: 25px;
  left: 1.86%;
}
.productsArea-bodyBlock-bg::after {
  background-image: url(../img/productsArea_bodyBlock_bg_right.png);
  right: 25px;
  right: 1.86%;
}
.productsArea-bodyBlock-wrap {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}
.productsArea-typeList {
  display: flex;
  flex-direction: column;
  gap: 33px;
  width: 100%;
  max-width: 354px;
  padding: 0;
  margin: 0 auto 85px;
}
@media print, screen and (min-width: 750px) {
  .productsArea-typeList {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 50px;
    /* max-width: 1012px; */
    max-width: 1110px;
    margin-bottom: 55px;
  }
}
.productsArea-typeList-item {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
}
@media print, screen and (min-width: 750px) {
  .productsArea-typeList-item {
    width: calc(33.333% - 33.33px);
  }
}
.productsArea-typeBlock {
  display: flex;
  gap: 14px;
  width: 100%;
  padding: 0;
  margin: 0;
}
@media print, screen and (min-width: 750px) {
  .productsArea-typeBlock {
    flex-direction: column;
    gap: 20px;
  }
}
.productsArea-typeBlock-img {
  display: block;
  width: 72px;
  padding: 0;
  margin: 0;
}
@media print, screen and (min-width: 750px) {
  .productsArea-typeBlock-img {
    width: 100%;
    max-width: 146px;
    margin: 0 auto;
  }
}
.productsArea-typeBlock-img .is-img {
  display: block;
  width: 100%;
  height: 0;
  padding: 120.83% 0 0;
  margin: 0;
  background: no-repeat center center / contain;
  text-align: left;
  text-indent: -1000px;
  font-size: 12px;
  overflow: hidden;
}
.productsArea-typeBlock-img .is-img.img-hanalangueOriginal {
  background-image: url(../img/productsArea_hanalangue_type_original.png);
}
.productsArea-typeBlock-img .is-img.img-hanalangueBerry {
  background-image: url(../img/productsArea_hanalangue_type_berry.png);
}
.productsArea-typeBlock-img .is-img.img-hanalanguePistachio {
  background-image: url(../img/productsArea_hanalangue_type_pistachio.png);
}
.productsArea-typeBlock-contents {
  display: block;
  width: calc(100% - 72px - 14px);
  padding: 0;
  margin: 0;
}
@media print, screen and (min-width: 750px) {
  .productsArea-typeBlock-contents {
    width: 100%;
  }
}
.productsArea-typeBlock-contents-title {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0 0 6px;
  color: #3d73b3;
  text-align: left;
  font-weight: bold;
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1.88;
}
@media print, screen and (min-width: 750px) {
  .productsArea-typeBlock-contents-title {
    margin-bottom: 8px;
    text-align: center;
    font-size: 2rem;
    /* line-height: 2.2; */
    line-height: 1.6;
  }
}
.productsArea-typeBlock-contents-text {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  color: #3d73b3;
  text-align: left;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0;
  line-height: 1.5;
}
@media print, screen and (min-width: 750px) {
  .productsArea-typeBlock-contents-text {
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.productsArea-productList {
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 100%;
  /* max-width: 400px; */
  max-width: 294px;
  padding: 0;
  margin: 0 auto 63px;
}
@media print, screen and (min-width: 750px) {
  .productsArea-productList {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 14px;
    max-width: 1202px;
    margin-bottom: 54px;
  }
}
.productsArea-productList-item {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
}
@media print, screen and (min-width: 750px) {
  .productsArea-productList-item {
    width: calc(25% - 10.5px);
  }
}
.productsArea-productBlock {
  display: flex;
  gap: 30px;
  width: 100%;
  padding: 0;
  margin: 0;
  /* cursor: pointer; */
}
@media print, screen and (min-width: 750px) {
  .productsArea-productBlock {
    flex-direction: column;
    gap: 0;
  }
  .productsArea-productBlock:hover {
    opacity: 1;
  }
}
.productsArea-productBlock-img {
  display: block;
  width: 128px;
  padding: 0;
  margin: 0;
}
@media print, screen and (min-width: 750px) {
  .productsArea-productBlock-img {
    width: 100%;
  }
}
.productsArea-productBlock-img .is-img {
  display: block;
  width: 100%;
  padding: 89.06% 0 0;
  margin: 0;
  background: no-repeat center center / contain;
  text-align: left;
  text-indent: -1000px;
  font-size: 12px;
  overflow: hidden;
}
@media print, screen and (min-width: 750px) {
  .productsArea-productBlock-img .is-img {
    padding-top: 100%;
    background-size: calc(100% - 20px - 20px) auto;
    transition: background-size .8s;
  }
  /*
  .productsArea-productBlock:hover .productsArea-productBlock-img .is-img {
    background-size: calc(110% - 20px - 20px) auto;
  }
  */
}
.productsArea-productBlock-img .is-img.img-hanalangueProduct-01 {
  background-image: url(../img/productsArea_hanalangue_product_01.png);
}
.productsArea-productBlock-img .is-img.img-hanalangueProduct-02 {
  background-image: url(../img/productsArea_hanalangue_product_02.png);
}
.productsArea-productBlock-img .is-img.img-hanalangueProduct-03 {
  background-image: url(../img/productsArea_hanalangue_product_03.png);
}
.productsArea-productBlock-img .is-img.img-hanalangueProduct-04 {
  background-image: url(../img/productsArea_hanalangue_product_04.png);
}
.productsArea-productBlock-img .is-img.img-hanalangueProduct-05 {
  background-image: url(../img/productsArea_hanalangue_product_05.png);
}
.productsArea-productBlock-img .is-img.img-hanalangueProduct-06 {
  background-image: url(../img/productsArea_hanalangue_product_06.png);
}
.productsArea-productBlock-img .is-img.img-hanalangueProduct-07 {
  background-image: url(../img/productsArea_hanalangue_product_07.png);
}
.productsArea-productBlock-img .is-img.img-hanalangueProduct-08 {
  background-image: url(../img/productsArea_hanalangue_product_08.png);
}
.productsArea-productBlock-img .is-img.img-financierProduct-01 {
  background-image: url(../img/productsArea_financier_product_01.png);
}
.productsArea-productBlock-img .is-img.img-financierProduct-02 {
  background-image: url(../img/productsArea_financier_product_02.png);
}
.productsArea-productBlock-img .is-img.img-assortmentProduct-01 {
  background-image: url(../img/productsArea_assortment_product_01.png);
}
.productsArea-productBlock-img .is-img.img-cookieProduct-01 {
  background-image: url(../img/productsArea_cookie_product_01.png);
}
.productsArea-productBlock-contents {
  display: block;
  width: calc(100% - 128px - 30px);
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 749px) {
  .productsArea-productBlock-contents {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media print, screen and (min-width: 750px) {
  .productsArea-productBlock-contents {
    width: 100%;
  }
}
.productsArea-productBlock-contents-title {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0 0 8px;
  color: #3d73b3;
  text-align: left;
  font-weight: normal;
  font-size: 1.2rem;
  letter-spacing: 0;
  line-height: 1.5;
}
@media print, screen and (min-width: 750px) {
  .productsArea-productBlock-contents-title {
    margin-bottom: 4px;
    text-align: center;
    font-size: 1.6rem;
  }
  /*
  .productsArea-productBlock:hover .productsArea-productBlock-contents-title {
    text-decoration: underline;
  }
  */
  .productsArea-productBlock-contents-title.is-wide {
    width: calc(100% + 40px);
    margin-left: -20px;
  }
}
.productsArea-productBlock-contents-price {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  color: #3d73b3;
  text-align: left;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1.5;
}
@media print, screen and (min-width: 750px) {
  .productsArea-productBlock-contents-price {
    text-align: center;
    font-size: 1.8rem;
  }
  /*
  .productsArea-productBlock:hover .productsArea-productBlock-contents-price {
    text-decoration: underline;
  }
  */
}
.productsArea-productBlock-contents-price .is-small {
  font-size: 1rem;
}
@media print, screen and (min-width: 750px) {
  .productsArea-productBlock-contents-price .is-small {
    font-size: 1.2rem;
  }
}
.productsArea-bodyBlock-introText {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0 0 45px;
  color: #3d73b3;
  text-align: center;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0;
  line-height: 2;
}
@media print, screen and (min-width: 750px) {
  .productsArea-bodyBlock-introText {
    margin-bottom: 30px;
    font-size: 1.6rem;
  }
}
.productsArea-bodyBlock-onlineshopBtn {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
}
.productsArea-bodyBlock-onlineshopBtn .is-btn {
  display: block;
  width: calc(100% - 20px);
  max-width: 195px;
  padding: 0;
  margin: 0 auto;
}
@media print, screen and (min-width: 750px) {
  .productsArea-bodyBlock-onlineshopBtn .is-btn {
    max-width: 260px;
  }
  .productsArea-bodyBlock-onlineshopBtn .is-btn:hover {
    opacity: .7;
  }
}
.productsArea-bodyBlock-onlineshopBtn .is-btn img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 260 / 72;
}
.productsArea-bodyBlock-closeBtn {
  display: block;
  width: 100%;
  padding: 0;
  margin: 14px 0 0;
}
@media print, screen and (min-width: 750px) {
  .productsArea-bodyBlock-closeBtn {
    margin-top: 40px;
  }
}
.productsArea-bodyBlock-closeBtn .is-btn {
  display: block;
  width: 68px;
  height: calc(14px + 10px + 10px);
  padding: 0;
  margin: 0 auto;
  background: url(../img/productsArea_acd_close_sp.svg) no-repeat center center / contain;
  text-align: left;
  text-indent: -1000px;
  font-size: 12px;
  overflow: hidden;
  cursor: pointer;
}
@media print, screen and (min-width: 750px) {
  .productsArea-bodyBlock-closeBtn .is-btn {
    width: 82px;
    height: 44px;
    background: url(../img/productsArea_acd_close_pc.svg);
  }
  .productsArea-bodyBlock-closeBtn .is-btn:hover {
    opacity: .7;
  }
}

/* shopArea */
.shopArea {
  display: block;
  width: 100%;
  padding: 20px 0 60px;
  margin: 0;
}
@media print, screen and (min-width: 750px) {
  .shopArea {
    padding: 40px 0 150px;
  }
}
.shopArea-title {
  display: block;
  width: calc(100% - 20px - 20px);
  max-width: 335px;
  padding: 0;
  margin: 0 auto 30px;
}
@media screen and (max-width: 434px) {
  .shopArea-title {
    width: 100%;
    max-width: 100%;
    position: relative;
  }
  .shopArea-title::before,
  .shopArea-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 100%;
    padding: 0;
    margin: 0;
    background: #fff;
    position: absolute;
    top: 0;
    z-index: 2;
  }
  .shopArea-title::before {
    left: 0;
  }
  .shopArea-title::after {
    right: 0;
  }
}
@media print, screen and (min-width: 750px) {
  .shopArea-title {
    max-width: 1000px;
    margin-bottom: 80px;
  }
}
.shopArea-title picture {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 434px) {
  .shopArea-title picture {
    width: calc(100% - 20px - 20px);
    max-width: 335px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
}
.shopArea-title img {
  display: block;
  width: 100%;
  height: auto;
}
.shopArea-contents {
  display: flex;
  flex-direction: column;
  gap: 27px;
  width: 100%;
  max-width: 1000px;
  padding: 0;
  margin: 0 auto;
}
@media print, screen and (min-width: 750px) {
  .shopArea-contents {
    flex-direction: row;
    gap: 60px;
  }
}
.shopArea-contents-map {
  display: block;
  width: calc(100% - 20px - 20px);
  max-width: 261px;
  padding: 0;
  margin: 0 auto;
}
@media print, screen and (min-width: 750px) {
  .shopArea-contents-map {
    width: 47%;
    max-width: 47%;
    margin: 0;
  }
}
.shopArea-contents-map-wrap {
  display: block;
  width: 100%;
  height: 0;
  padding: 76.62% 0 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}
@media print, screen and (min-width: 750px) {
  .shopArea-contents-map-wrap {
    padding-top: 76.8%;
  }
}
.shopArea-contents-map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.shopArea-contents-body {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
}
@media print, screen and (min-width: 750px) {
  .shopArea-contents-body {
    width: calc(100% - 47% - 60px);
  }
}
.shopArea-contents-body-logo {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0 0 8px;
}
@media print, screen and (min-width: 750px) {
  .shopArea-contents-body-logo {
    margin-bottom: 12px;
  }
}
.shopArea-contents-body-logo img {
  display: block;
  width: 100%;
  max-width: 121px;
  margin: 0 auto;
}
@media print, screen and (min-width: 750px) {
  .shopArea-contents-body-logo img {
    max-width: 201px;
    margin: 0;
  }
}
.shopArea-contents-body-shopName {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0 0 20px;
  color: #3d73b3;
  text-align: center;
  font-family: "Shippori Mincho B1", serif;
  font-weight: normal;
  font-size: 2rem;
  letter-spacing: 0.07em;
  line-height: 1.8;
}
@media print, screen and (min-width: 750px) {
  .shopArea-contents-body-shopName {
    margin-bottom: 30px;
    text-align: left;
    font-size: 3.2rem;
    line-height: 1.875;
  }
}
.shopArea-contents-body-info {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0 0 15px;
  text-align: center;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1.42;
}
@media print, screen and (min-width: 750px) {
  .shopArea-contents-body-info {
    margin-bottom: 12px;
    text-align: left;
    font-size: 2rem;
    line-height: 1.8;
  }
}
.shopArea-contents-body-note {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  text-align: center;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0;
  line-height: 1.5;
}
@media print, screen and (min-width: 750px) {
  .shopArea-contents-body-note {
    text-align: left;
    font-size: 1.6rem;
  }
  .shopArea-contents-body-note .is-link:hover {
    text-decoration: underline;
    opacity: 1;
  }
}


