*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/*html,
body {
  overflow-x: hidden;
}*/

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family:
    "Yu Gothic", "游ゴシック", "YuGothic", "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  /*background: #eff7ed url("img/bg.webp") center center / cover fixed;*/
  background: #eff7ed;
  color: #333;
  line-height: 1.6;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style-type: none;
}

/* 左ロゴ */
.side-logo {
  display: none;
}

/* 右PCナビ（navi） */
.pc-nav {
  display: none;
}

.content-wrap {
  max-width: 750px;
  margin: 0 auto;
  box-shadow:
    0 4px 40px rgba(0, 0, 0, 0.12),
    0 1px 8px rgba(0, 0, 0, 0.06);
}

#top {
  position: relative;
}

/* 1281px以上で3カラム */
@media (min-width: 1281px) {
  .side-logo {
    display: flex;
    align-items: center;
    /*justify-content: flex-end;*/
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: calc((100vw - 750px) / 2.5);
    height: 100vh;
    z-index: 100;
    /*padding-right: 4vw;*/
    box-sizing: border-box;
  }

  .side-logo img {
    width: 42%;
    max-width: 280px;
    min-width: 180px;
  }

  .pc-nav {
    display: flex;
    align-items: center;
    /*justify-content: flex-start;*/
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    width: calc((100vw - 750px) / 2.2);
    height: 100vh;
    z-index: 100;
    /*padding-left: 4vw;*/
    box-sizing: border-box;
  }

  .pc-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .pc-nav a {
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
    transition: color 0.2s;
  }
}

@media (min-width: 1460px) {
  .pc-nav {
    width: calc((100vw - 750px) / 2);
  }
}

section {
  width: 100%;
  background: #fff;
}

/* CTA */
@media (hover: hover) {
  /*.cta-btn:hover {
    opacity: 0.8;
  }*/

  .pc-nav a:hover {
    color: #dfaebe;
  }
}

a img {
  transition: opacity 0.2s ease;
}

@media (hover: hover) {
  a:not(.p-tvcm__movie__link):hover img {
    opacity: 0.6;
  }
}

.cta_btn {
  position: absolute;
  top: 10%;
  /*width: 79%;*/
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.nav_cta_btn_wrap {
  margin-top: 1em;
}

/*.nav_cta_btn_wrap a.nav_cta_btn {
  font-size: 1.4rem;
}*/

a.nav_cta_btn {
  font-size: 1.5rem;
  padding: 0.5em 2em;
  background-color: #dfaebe;
  border-radius: 100px;
  color: #fff;
  transition: 0.2s;
  box-shadow: 0 4px 8px rgba(100, 100, 100, 0.3);
}

@media (hover: hover) {
  a.nav_cta_btn:hover {
    opacity: 0.8;
    color: #fff;
  }
}

.pc-nav a {
  display: flex;
  align-items: center;
}

.nav-icon {
  width: 1.5em;
  height: auto;
  margin-right: 12px;
}

.nav-meneu_list {
  width: 5.5em;
  height: auto;
}

.cta_btn {
  position: relative;
  /*aspect-ratio: 800 / 1705;*/
}

.cta_btn img {
  width: 100%;
  max-width: 100%;
  vertical-align: bottom;
}

.cta_btn a,
.cta_btn p {
  position: absolute;
  bottom: 13.26%;
  width: 76%;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 10;
}

/* sp nav */
body.is-menuOpen {
  overflow: hidden;
}

.menu-button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: absolute;
  /*top: 16px;
  right: 16px;*/
  top: 3%;
  right: 3.5%;
  z-index: 1201;
  /* PC用ロゴのサイズ調整 */
  width: 48px;
  height: 48px;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.menu-button_line {
  display: none;
}

/* PC用のロゴ画像スタイル */
.menu-button_pcLogo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: none;
}

@media (max-width: 820px) {
  .menu-button {
    width: 48px;
    height: 48px;
    top: 16px;
    right: 16px;
  }

  .menu-button_pcLogo {
    display: none;
  }

  .menu-button_line {
    display: block;
    width: 28px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    transition:
      top 0.3s ease,
      transform 0.3s ease,
      opacity 0.3s ease,
      background-color 0.3s ease;
  }

  .menu-button_line:nth-child(2) {
    top: 14px;
  }

  .menu-button_line:nth-child(3) {
    top: 23px;
  }

  .menu-button_line:nth-child(4) {
    top: 32px;
  }

  .menu-button.is-active .menu-button_line {
    background: #333;
  }

  .menu-button.is-active .menu-button_line:nth-child(2) {
    top: 23px;
    transform: translateX(-50%) rotate(45deg);
  }

  .menu-button.is-active .menu-button_line:nth-child(3) {
    opacity: 0;
  }

  .menu-button.is-active .menu-button_line:nth-child(4) {
    top: 23px;
    transform: translateX(-50%) rotate(-45deg);
  }
}

.nav-menu {
  width: min(420px, 100%);
  height: 100dvh;
  padding: 120px 40px 40px;
  background: #eff7ed;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1150;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
}

.nav-menu.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.sp-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/*.sp-nav li + li {
      margin-top: 24px;
}*/

.sp-nav a {
  color: #333;
  font-size: clamp(24px, 5vw, 38px);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.c-overlay {
  width: 100%;
  height: 100dvh;
  padding: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.42);
  position: fixed;
  inset: 0;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  cursor: pointer;
  outline: none;
}

.c-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* review */
.revico-star {
  margin-top: 0 !important;
}

.revico-star .revico-star-graph-wrapper {
  width: 100% !important;
}

.revico-star .revico-review {
  width: 100% !important;
  margin: 0 auto 30px !important;
}

.revico-star .revico-logo {
  width: 100% !important;
  margin: 0 auto;
}

.revico-multicomment-top
  .revico-review-comment-row-wrapper
  .revico-review-comment-row
  .revico-review-comment-detail
  a {
  margin-right: 24px !important;
}

@media only screen and (min-width: 821px) {
  a.nav_cta_btn {
    padding: 0.5em 1em;
  }
}

.revico-multicomment-top
  .revico-review-comment-row-wrapper
  .revico-review-comment-row
  .revico-review-comment-detail
  .revico-review-comment-detail--action-sns {
  display: flex;
}

.revico-multicomment-top
  .revico-review-comment-row-wrapper
  .revico-review-comment-row
  .revico-review-comment-detail
  .revico-review-comment-detail--action-sns
  img {
  margin-right: 0 !important;
}

.revico-multicomment-top .revico-comment-footer {
  padding-bottom: 50px !important;
}

.revico-seo-content {
  width: 520px;
  margin: 0 auto;
  padding: 30px 0 30px;
}

.revico-seo-content {
  text-align: center;
}

.revico-seo-content a {
  background-color: #444;
  color: #fff;
  padding: 10px;
  font-size: 16px;
  display: block;
  margin: 0 auto;
  border-radius: 2px;
  transition: all 0.6s;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .revico-seo-content {
    max-width: 91%;
    margin: 0px auto;
    padding: 0 0 30px;
  }

  .revico-seo-content a {
    width: 100%;
    padding: 10px 0;
    font-size: 14px;
  }

  .revico-multicomment-top
    .revico-review-comment-row-wrapper
    .revico-review-comment-row
    .revico-review-comment-detail
    .revico-review-comment-detail--action-sns {
    margin-right: 20px !important;
  }

  .revico-star .revico-logo {
    width: 96% !important;
  }

  .revico-star .revico-review {
    width: 92% !important;
  }

  .revico-star .revico-star-graph {
    padding: 60px 25px 60px !important;
  }

  .nav_cta_btn_wrap {
    margin-top: 2em;
  }

  a.nav_cta_btn {
    padding: 0.5em 2.5em;
  }

  .revico-multicomment-top
    .revico-review-comment-row-wrapper
    .revico-review-comment-row
    .revico-review-comment-detail
    a {
    margin-right: 0 !important;
  }

  .revico-multicomment-top
    .revico-review-comment-row-wrapper
    .revico-review-comment-row
    .revico-review-comment-detail
    .revico-review-comment-detail--action-sns
    img {
    height: auto !important;
    width: 40%;
  }
}

/* flashyVideo */
.flashyVideo {
  aspect-ratio: 16 / 8.9;
  overflow: hidden;
  border-radius: 20px;
  /*max-width: 664px;*/
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.flashyVideo img {
  margin-top: -0.4%;
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
}

.flashyVideo a {
  display: block;
  position: relative;
}

.flashyVideo a:after {
  content: "play_arrow";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-family: "Material Icons";
  line-height: 1;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  z-index: 1;
  font-size: 60px;
  padding: 1%;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  white-space: nowrap;
}

@media only screen and (max-width: 1200px) and (max-width: 800px) {
  .flashyVideo a:after {
    font-size: 50px;
  }
}

/*** footer ***/
#footer {
  position: relative;
  /* brands */
  /* footer-link */
  /* copy */
}

/*@media screen and (min-width: 769px) {
	#footer {
		margin-left: auto;
		margin-right: auto;
		padding-bottom: 60px;
		min-width: 1200px;
	}
}*/

/*@media screen and (max-width: 768px) {
	#footer {
		padding-bottom: 30px;
	}
}*/

#footer .brands {
  text-align: center;
}

@media screen and (min-width: 769px) {
  #footer .brands {
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 100px;
    padding-top: 100px;
    width: 1094px;
  }
}

@media screen and (max-width: 768px) {
  #footer .brands {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}

#footer .brands h2 a {
  display: inline-block;
}

#footer .brands h2 img {
  pointer-events: none;
}

@media screen and (min-width: 769px) {
  #footer .brands h2 img {
    width: 330px;
  }
}

@media screen and (max-width: 768px) {
  #footer .brands h2 img {
    width: 241px;
  }
}

#footer .brands h2 .sub {
  color: #454545;
  display: block;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0;
  font-size: 14px;
  line-height: 19px;
  margin-top: 15px;
}

#footer .brands ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 769px) {
  #footer .brands ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 60px;
  }
}

@media screen and (max-width: 768px) {
  #footer .brands ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 11px;
    margin-right: 11px;
    margin-top: 30px;
  }
}

@media screen and (min-width: 769px) {
  #footer .brands ul li {
    height: auto;
    width: 260px;
  }

  #footer .brands ul li:not(:first-child) {
    margin-left: 18px;
  }
}

@media screen and (max-width: 768px) {
  #footer .brands ul li {
    padding: 5px;
    width: 50%;
  }
}

#footer .brands ul li a {
  display: block;
}

#footer .brands ul li a img {
  pointer-events: none;
}

#footer .footer-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 769px) {
  #footer .footer-link {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  #footer .footer-link {
    font-size: 12px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 30px;
    padding-right: 30px;
    text-align: center;
  }
}

#footer .footer-link li {
  line-height: 1;
}

@media screen and (min-width: 769px) {
  #footer .footer-link li:not(:first-child) {
    border-left: 1px solid #9fa0a0;
    margin-left: 10px;
    padding-left: 10px;
  }
}

@media screen and (max-width: 768px) {
  #footer .footer-link li:not(:last-child):after {
    content: "|";
    margin-left: 1em;
    margin-right: 0.5em;
    opacity: 0.5;
  }
}

@media screen and (max-width: 768px) {
  #footer .footer-link li {
    line-height: 16px;
    white-space: nowrap;
  }
}

#footer .footer-link li:nth-child(3):after,
#footer .footer-link li:nth-child(5):after {
  font-size: 0;
  content: "\A";
  white-space: pre;
}

#footer .footer-link li a {
  color: #454545;
  line-height: 1;
}

#footer .copyright {
  color: #454545;
  margin-top: 30px;
  text-align: center;
}

@media screen and (min-width: 769px) {
  #footer .copyright {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  #footer .copyright {
    font-size: 13px;
  }
}

#footer .globalsign {
  width: 87px;
}

@media screen and (min-width: 769px) {
  #footer .globalsign {
    bottom: 160px;
    left: 53%;
    position: absolute;
    -webkit-transform: translateX(397px);
    transform: translateX(397px);
  }
}

@media screen and (max-width: 768px) {
  #footer .globalsign {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: 16px;
    margin-top: -10px;
  }
}

#footer .globalsign img {
  width: 87px !important;
}

@media screen and (min-width: 769px) {
  #footer .brands ul {
    flex-wrap: wrap;
    gap: 18px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  #footer .brands ul li {
    width: 167.33px;
  }

  #footer .brands ul li:not(:first-child) {
    margin-left: 0;
  }
}

/*** footer ***/
/*@media screen and (max-width: 768px) {
	#footer {
		padding-bottom: 40px;
	}
}*/

@media screen and (min-width: 769px) {
  #footer .brands {
    padding-top: 60px;
  }
}

@media screen and (max-width: 768px) {
  #footer .brands {
    padding-top: 35px;
  }
}

.js-non-touch-device #footer a:hover {
  opacity: 0.7 !important;
}

#footer .pagetop a {
  background: transparent linear-gradient(135deg, #8f262a 0%, #b95154 100%) 0%
    0% no-repeat padding-box;
  bottom: 45px;
  display: block;
  -webkit-box-shadow: 0 7px 7px rgba(149, 134, 111, 0.24);
  box-shadow: 0 7px 7px rgba(149, 134, 111, 0.24);
  opacity: 0;
  position: fixed;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
  z-index: 1000;
}

@media screen and (min-width: 769px) {
  #footer .pagetop a {
    height: 50px;
    right: 86px;
    width: 50px;
  }
}

@media screen and (max-width: 768px) {
  #footer .pagetop a {
    height: 50px;
    right: 15px;
    width: 50px;
  }
}

#footer .pagetop a i {
  display: block;
}

@media screen and (min-width: 769px) {
  #footer .pagetop a i {
    height: 50px;
    width: 50px;
  }
}

@media screen and (max-width: 768px) {
  #footer .pagetop a i {
    height: 50px;
    width: 50px;
  }
}

#footer .pagetop a i:after {
  background: url(/common/img/icon-arrow-02.svg) 0 0 no-repeat;
  content: "";
  height: 8px;
  width: 20px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-90deg);
  transform: translateX(-50%) rotate(-90deg);
  -webkit-transition: top 0.25s;
  transition: top 0.25s;
  top: 21px;
  z-index: 1;
}

.js-non-touch-device #footer .pagetop a i:hover:after {
  top: 19px;
}

#footer .pagetop.js-visibled a {
  opacity: 1;
}

#footer .pagetop.js-absolute a {
  position: absolute;
  top: -25px;
}

.footer-brand-wrap {
  max-width: 750px;
  margin: 0 auto;
  background: #fff;
  padding-bottom: 30px;
}

.footer-brand-top {
  max-width: 335px;
  margin: 0 auto 60px;
  padding-top: 50px;
}

.footer-brand-top a {
  transition: 0.3s ease-in-out;
  display: block;
}

.footer-brand-top a:hover {
  opacity: 0.7;
}

.footer-brand-top .footer-brand-top-text {
  margin-top: 15px;
  font-size: 14px;
  color: #454545;
  text-align: center;
}

.footer-brand-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 20px 23px;
  padding: 0 50px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer-brand-list a {
  display: block;
  width: 200px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.footer-brand-list a:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 640px) {
  .footer-brand-wrap {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    margin: 0 auto;
    padding-bottom: 30px;
  }

  .footer-brand-top {
    margin-bottom: 25px;
  }

  .footer-brand-top a {
    display: block;
    max-width: 251px;
    margin: 0 auto 10px;
  }

  .footer-brand-top .footer-brand-top-text {
    font-size: 12px;
    text-align: center;
    margin-top: 0;
  }

  .footer-brand-list {
    gap: 18px 10px;
    padding: 0;
  }

  .footer-brand-list a {
    width: calc((100% - 20px) / 3);
  }
}