@charset "UTF-8";
/**
 * VARIABLE
 * Global...............プロジェクト全体を通して使用される変数です。
 * Component...............コンポーネントで使用される変数です。
 */
/**
 * #Global
 */
.block_width {
  width: 100%;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}

.block_title {
  margin-top: 1.1em;
  font-size: 6.4rem;
  font-weight: medium;
  color: #000;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .block_title {
    font-size: 2.8rem;
  }
}

body {
  font-family: "roboto", "Noto Serif JP", sans-serif;
  color: #333;
  background-color: #fff;
  overflow: hidden;
}

a:focus,
input:focus,
button:focus,
textarea:focus,
select:focus {
  outline: 1px solid #004ea7;
}

[data-whatinput="mouse"] *:focus,
[data-whatinput="touch"] *:focus {
  outline: none;
}

/*
* 共通
*/
.contents__inner {
  margin-right: 3%;
  margin-left: 3%;
}

/*
* ヘッダー
*/
.global_header {
  width: 100%;
  position: relative;
  z-index: 10;
}

.global_header__inner {
  position: relative;
  height: 80px;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 2%;
  padding-left: 2%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.global_header__link:hover {
  color: #e4007b;
  transition: 0.2s;
}

.global_header__link--disabled {
  pointer-events: none;
}

.notice {
  position: relative;
}

.notice__inner {
  padding-top: 15px;
  padding-right: 40px;
  padding-bottom: 15px;
  padding-left: 40px;
  overflow: hidden;
  position: relative;
  transition: 0.5s;
  background-color: orange;
  text-align: center;
}

.notice__text {
  line-height: 1.5;
  font-size: 1.2rem;
  text-align: center;
  color: #ffffff;
  display: inline-block;
  overflow: hidden;
  max-height: 18px;
}

.notice__text.hidden {
  overflow: hidden;
}

.notice-more-btn {
  display: none;
  width: 10px;
  height: 10px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(135deg);
  transition: 0.1s;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1;
}

.notice-more-btn.rotate {
  transform: rotate(-45deg);
  margin-top: 5px;
}

.notice-more-btn.show {
  display: block;
}

.global_header_logo {
  width: 50%;
  display: flex;
  align-items: center;
  padding-right: 45px;
}

.global_header_logo__link {
  display: inline-block;
  max-width: 150px;
  width: 150px;
  margin-right: 10%;
  transition: all 0.3s;
}

.global_header_logo__link:last-child {
  margin-right: 0;
}

.global_header_logo__link.--width-s {
  max-width: 105px;
}

.global_header_logo__link:hover {
  opacity: 0.6;
}

.global_header_nav {
  width: 50%;
}

.global_header_menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.global_header_menu li a {
  display: block;
  line-height: 1.2;
  font-size: clamp(1.1rem, 1.11vw, 1.6rem);
  text-decoration: none;
}

.global_header_menu .global_header__btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  padding: 8px 0;
  border-radius: 5px;
  background-color: #e4007b;
  color: #ffffff;
}

.global_header_menu .global_header__btn-link:hover {
  color: #ffffff;
  background-color: #ff4ead;
}

.global_header_menu .global_header__btn-link .global_header__shop-icon {
  width: 32px;
  margin-bottom: 3px;
  margin-left: 8px;
}

.global_header_menu > li {
  display: inline-flex;
  align-items: center;
  width: auto;
  height: 80px;
  margin-right: 2%;
  cursor: pointer;
  position: relative;
}

.global_header_menu > li:last-child {
  margin-right: 0;
}

.global_header_menu > li > a {
  list-style: none;
  color: #000;
  padding: 30px 0;
}

.global_header_list:hover .dropdown_parent {
  visibility: visible;
  opacity: 1;
}

.global_header_list ul.focused {
  opacity: 1;
  visibility: visible;
}

.dropdown_parent {
  background-color: #f5008c;
  width: 260px;
  width: max-content;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 80px;
  left: 0;
  box-shadow: 6px 5px 15px -5px #777777;
}

.dropdown_parent a {
  color: #ffffff;
  text-align: left;
}

.dropdown_parent__list {
  padding: 3px 15px;
  transition: all 0.2s ease;
}

.dropdown_parent__list:hover {
  background-color: #fbe6f2;
}

.dropdown_parent__list:hover .dropdown_child {
  visibility: visible;
  opacity: 1;
  position: absolute;
  left: 100%;
  top: 0;
  height: 100%;
}

.dropdown_parent__list:hover > a {
  color: #e4007b;
  transition: 0.3s;
}

.dropdown_parent__link--disabled {
  pointer-events: none;
}

.dropdown_child {
  background-color: #ffffff;
  width: 100%;
  position: absolute;
  top: 0;
  left: 100%;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
  background-position: -100% 0;
  box-shadow: 6px 5px 15px -5px #777777;
}

.dropdown_child.focused {
  visibility: visible;
  opacity: 1;
  position: absolute;
  left: 100%;
  top: 0;
  height: 100%;
}

.dropdown_child__list {
  padding: 3px 15px;
}

.dropdown_child__list a {
  color: #000000;
}

.dropdown_child__list:hover > a {
  color: #e4007b;
  transition: 0.3s;
}

.header_image {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 60px;
}

.global_header_ham {
  display: none;
}

.global_header_ham__btn {
  display: none;
}

/*
* フッター
*/
.global_footer {
  background-color: #ffffff;
  margin-top: 62px;
}

.global_footer__inner {
  margin-right: 3%;
  margin-left: 3%;
  border-top: solid 1px #cacaca;
}

.global_footer_logo {
  margin-top: 30px;
  max-width: 640px;
  display: flex;
  align-items: center;
}

.global_footer_logo__link {
  display: inline-block;
  max-width: 150px;
  width: 150px;
  margin-right: 10%;
  transition: all 0.3s;
}

.global_footer_logo__link:last-child {
  margin-right: 0;
}

.global_footer_logo__link.--width-s {
  max-width: 105px;
}

.global_footer_logo__link:hover {
  opacity: 0.6;
}

.global_footer_menu {
  display: flex;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 32px;
}

.global_footer_col {
  width: 33.33%;
  border-left: solid 1px #e4007b;
  padding: 10px;
}

.global_footer_col:first-child {
  border-left: none;
  padding-left: 0;
}

.global_footer_nav__item {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 3px;
}

.global_footer_nav__item--fws {
  font-weight: 400;
}

.global_footer_nav__link {
  text-decoration: none;
  color: #000000;
}

.global_footer_nav__link:hover {
  color: #e4007b;
  transition: 0.3s;
}

.global_footer_contact--sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}

.global_footer_contact__dt {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin-right: 8px;
}

.global_footer_contact__dd {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 3px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.global_footer_contact__link {
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

.global_footer_contact__link--tel {
  pointer-events: none;
}

.global_footer_contact__link:hover {
  color: #e4007b;
}

.global_footer_sns {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.global_footer_sns__item {
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.global_footer_copy {
  display: block;
  width: 100%;
  background-color: #e4007b;
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 400;
}

/* subscribe */
.mail-subscribe {
  position: relative;
  margin: 62px 3%;
  padding-top: 62px;
  border-top: solid 1px #cacaca;
}

.mail-subscribe--flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mail-subscribe__item {
  margin-right: 2%;
  margin-left: 2%;
}

.mail-subscribe__text {
  font-size: 1.8rem;
  line-height: 1.3;
}

.mail-subscribe__text--large {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
}

.mail-subscribe__text--pink {
  color: #f5008c;
}

.mail-subscribe label {
  font-size: 1.4rem;
}

.mail-subscribe .ig_es_form_field_name,
.mail-subscribe .es_txt_email {
  display: block;
  width: 100%;
  font-size: 2rem;
  padding: 0.4em 0.6em;
  border: 1px solid #f5008c;
  margin-top: 0.2em;
  margin-bottom: 1em;
}

.mail-subscribe .ig_es_form_field_name::placeholder,
.mail-subscribe .es_txt_email::placeholder {
  font-weight: 100;
  color: #dcdcdc;
}

.mail-subscribe .es_submit_button {
  display: block;
  width: 100%;
  align-items: center;
  padding: 0.3em 0.6em;
  color: #ffffff;
  background-color: #f5008c;
  text-decoration: none;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  transition: 0.3s;
}

.mail-subscribe .es_submit_button:hover {
  cursor: pointer;
  opacity: 0.5;
}

.mail-subscribe .es_subscription_message {
  display: block;
  font-size: 1.4rem;
  margin-top: 0.5em;
}

.mail-subscribe .es_subscription_form {
  display: none;
}

.mail-subscribe__success {
  position: absolute;
  top: 31px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: none;
  justify-content: center;
  align-items: center;
}

.mail-subscribe__success__close {
  position: absolute;
  top: 0;
  right: 10px;
  color: #f5008c;
  cursor: pointer;
}

.mail-subscribe__success__close svg {
  width: 30px;
  height: 30px;
}

.mail-subscribe__success__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}

.mail-subscribe__success__img {
  margin-right: 3%;
}

.mail-subscribe__success__txt {
  line-height: 1.3;
}

.mail-subscribe__success__txt__main {
  font-size: 3.4rem;
  font-weight: bold;
}

.mail-subscribe__success__txt__main__pink {
  color: #e4007b;
}

.mail-subscribe__success__txt__sub {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 0.2em;
}

@media screen and (max-width: 960px) {
  .global_header_nav {
    display: none;
  }
  .global_header__inner {
    display: block;
    height: auto;
    padding-top: 15px;
    padding-bottom: 10px;
  }
  .global_header_logo {
    justify-content: center;
    width: 100%;
    max-width: 500px;
    padding-right: 0;
    padding-left: 45px;
    margin-right: auto;
    margin-left: auto;
  }
  .global_header_logo__link.--width-s {
    max-width: 90px;
  }
  .global_header_ham {
    display: block;
  }
  .global_header_ham__menu {
    height: 100%;
  }
  .global_header_ham__container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateX(-100%);
    transition: transform 0.25s;
    z-index: 1;
    background-color: #fff;
  }
  .global_header_ham__container--bgWhite {
    background-color: #ffffff;
    height: 100%;
  }
  .global_header_ham__container--bgPink {
    background-color: #f5008c;
  }
  .global_header_ham__container--heightFull {
    height: 100%;
  }
  .global_header_ham__container.is-open {
    transform: translate3d(0, 0, 0);
  }
  .global_header_ham__btn {
    display: block;
    position: absolute;
    top: 15px;
  }
  .global_header_ham__btn svg {
    border: solid 1px #cacaca;
    border-radius: 3px;
  }
  .global_header_ham__return-btn {
    position: absolute;
    top: 8px;
    right: 5px;
  }
  .global_header_ham__cover.active {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(3, 3, 3, 0.8);
    display: block;
  }
  .bar {
    height: 55px;
    display: flex;
    align-items: center;
    background-color: #ffffff;
  }
  .bar__heading {
    color: #f5008c;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.2;
    padding-left: 0.833em;
    text-decoration: none;
  }
  .bar__heading--disabled {
    pointer-events: none;
  }
  .menu--cPrimary > .menu__list > a {
    color: #ffffff;
  }
  .menu__list {
    border-bottom: solid 1px #d6d5d5;
  }
  .menu__list--bgPink {
    background-color: #f5008c;
  }
  .menu__link {
    display: block;
    text-align: left;
    word-break: break-all;
    padding: 0.555em 0.833em;
    line-height: 47px;
    text-decoration: none;
    color: #333;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
    position: relative;
  }
  .menu__link--rSpace {
    margin-right: 40px;
  }
  .menu__link--disabled {
    pointer-events: none;
  }
  .menu__link:active {
    color: pink;
  }
  /* activeが付与された直下のクラス */
  .active > .global_header_ham__container {
    transform: translate3d(0, 0, 0);
  }
  .global_footer_contact__link--tel {
    pointer-events: auto;
  }
}

@media screen and (max-width: 768px) {
  .global_footer {
    background-color: #ffffff;
  }
  .global_footer__inner {
    border-top: none;
  }
  .global_footer_logo {
    display: none;
  }
  .global_footer_menu {
    flex-direction: column-reverse;
    margin-bottom: 0;
  }
  .global_footer_col {
    width: 100%;
    border-left: none;
    border-top: solid 1px #e4007b;
  }
  .global_footer_col:first-child {
    padding-left: 10px;
    border-bottom: none;
  }
  .mail-subscribe--flex {
    display: block;
    text-align: center;
  }
  .mail-subscribe__item {
    margin-bottom: 5%;
  }
  .mail-subscribe__mail-img {
    width: 80px;
  }
  .mail-subscribe__btn {
    font-size: 2.4rem;
  }
  .mail-subscribe__success__inner {
    flex-wrap: wrap;
  }
  .mail-subscribe__success__img {
    margin: 0 auto 30px;
  }
  .mail-subscribe__success__txt {
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 600px) {
  .global_header_logo__link {
    margin-right: 6.5%;
    max-width: 100px;
    width: 100px;
  }
  .global_header_logo__link.--width-s {
    max-width: 70px;
  }
}
