@charset "UTF-8";
/*
 * HTML
 * -------------------------------------------------------------------
 font-size: 62.5%; // 1rem = 10px
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@4.1.1/dist/css/yakuhanjp.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@500&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700&display=swap");
html {
  font-size: 62.5%;
}

:root {
  scroll-padding-top: 120px;
  scroll-behavior: smooth;
}
@media (max-width: 600px) {
  :root {
    scroll-padding-top: 50px;
  }
}

body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 100%;
  line-height: 1.6;
  letter-spacing: 0.05em;
  overflow-x: hidden;
  position: relative;
}

a {
  text-decoration: none;
  outline: none;
}

.container {
  max-width: 1260px;
  width: 100%;
  padding: 0px 1rem;
  box-sizing: border-box;
  margin: 0 auto;
}

.swiper {
  margin-top: 120px;
}

.is-pc {
  display: block !important;
}

.is-sp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .is-pc {
    display: none !important;
  }
  .is-sp {
    display: block !important;
  }
}
/* Modern CSS Reset (おすすめ最小構成) */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* メディア */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* フォーム */
input,
button,
textarea,
select {
  font: inherit;
}

/* テキスト */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

@keyframes menu-container-appeared {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes menu-container-leaved {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes menu-overlay-appeared {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes menu-overlay-leaved {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * MODAL PHOTO
 * -------------------------------------------------------------------
 */
@keyframes modal-photo-open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes modal-photo-close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * Mixin
 * -------------------------------------------------------------------
 */
/*
 * Module
 * -------------------------------------------------------------------
 */
.header.is-scrolled .dropdown {
  top: 80px;
}

.header__nav-item--dropdown {
  position: relative;
}
.header__nav-item--dropdown .dropdown {
  position: fixed;
  top: 121px;
  left: 0;
  width: 100%;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
  z-index: 10;
}
.header__nav-item--dropdown .dropdown .dropdown__container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 1rem 2rem;
}
.header__nav-item--dropdown .dropdown .dropdown__container .dropdown__container-title {
  font-size: 2rem;
  font-weight: bold;
  color: #C2182B;
  margin-bottom: 1rem;
}
.header__nav-item--dropdown .dropdown .dropdown__container .dropdown__container-recommend {
  width: 100%;
}
.header__nav-item--dropdown .dropdown .dropdown__container .dropdown__container-recommend-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  list-style: none;
}
.header__nav-item--dropdown .dropdown .dropdown__container .dropdown__container-recommend-list-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.25s ease;
}
.header__nav-item--dropdown .dropdown .dropdown__container .dropdown__container-recommend-list-item a .tag {
  display: flex;
  gap: 0.5rem;
}
.header__nav-item--dropdown .dropdown .dropdown__container .dropdown__container-recommend-list-item a .tag li {
  color: #7A0F1B;
}
.header__nav-item--dropdown .dropdown .dropdown__container .dropdown__container-recommend-list-item a:hover {
  opacity: 0.6;
}
.header__nav-item--dropdown .dropdown .dropdown__container .dropdown__container-recommend-list-item a:hover img {
  transform: scale(1.1);
}
.header__nav-item--dropdown .dropdown .dropdown__container .dropdown__container-recommend-list-item a .img-wrap {
  width: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.header__nav-item--dropdown .dropdown .dropdown__container .dropdown__container-recommend-list-item a img {
  width: 200px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  overflow: hidden;
}
.header__nav-item--dropdown .dropdown .dropdown__container .dropdown__container-recommend-list-item a .text {
  flex: 1;
}
.header__nav-item--dropdown .dropdown .dropdown__container .dropdown__container-recommend-list-item a .text .date {
  font-size: 1.4rem;
  margin-bottom: 1.6rem;
}
.header__nav-item--dropdown .dropdown .dropdown__container .dropdown__container-recommend-list-item a .text .title {
  font-size: 1.6rem;
  font-weight: bold;
}
.header__nav-item--dropdown .dropdown .dropdown__container .dropdown__container-category {
  width: 100%;
}
.header__nav-item--dropdown .dropdown .dropdown__container .dropdown__container-category .type {
  width: 100%;
  display: flex;
}
.header__nav-item--dropdown .dropdown .dropdown__container .dropdown__container-category .type .category__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-left: 1rem;
  box-sizing: border-box;
}
.header__nav-item--dropdown .dropdown .dropdown__container .dropdown__container-category .type .category__list li {
  width: auto;
}
.header__nav-item--dropdown .dropdown .dropdown__container .dropdown__container-category .type .category__list li a {
  display: flex;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 1rem 2rem 1rem 1rem;
  text-decoration: none;
  position: relative;
  transition: opacity 0.25s ease;
}
.header__nav-item--dropdown .dropdown .dropdown__container .dropdown__container-category .type .category__list li a:hover {
  opacity: 0.6;
}
.header__nav-item--dropdown .dropdown .dropdown__container .dropdown__container-category .type .category__title {
  width: 20%;
  position: relative;
  color: #000;
  border-right: 1px solid #DFDFDF;
  box-sizing: border-box;
  padding: 1rem;
  font-size: 1.4rem;
  font-weight: bold;
}
.header__nav-item--dropdown .dropdown .dropdown__container .dropdown__container-category .type .category__title a {
  display: block;
}
.header__nav-item--dropdown .dropdown .dropdown__container .dropdown__container-category .type .category__title:hover::after {
  transform: translateY(-50%) translateX(-6px);
}
.header__nav-item--dropdown .dropdown .dropdown__container .dropdown__container-category .type .category__title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-image: url("../img/icon/right-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.25s ease;
}
.header__nav-item--dropdown .dropdown .dropdown__container .dropdown__container-category .genre {
  margin-bottom: 3rem;
}
.header__nav-item--dropdown .dropdown .dropdown__container .dropdown__container-category .genre ul {
  display: flex;
  flex-wrap: wrap;
}
.header__nav-item--dropdown .dropdown .dropdown__container .dropdown__container-category .genre ul li {
  width: 16.6666666667%;
}
.header__nav-item--dropdown .dropdown .dropdown__container .dropdown__container-category .genre ul li a {
  display: flex;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 1rem 2rem 1rem 1rem;
  position: relative;
  text-decoration: none;
  color: #000;
}
.header__nav-item--dropdown .dropdown .dropdown__container .dropdown__container-category .genre ul li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-image: url("../img/icon/right-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.25s ease;
}
.header__nav-item--dropdown .dropdown .dropdown__container .dropdown__container-category .genre ul li a:hover::after {
  transform: translateY(-50%) translateX(-6px);
}
.header__nav-item--dropdown:hover .dropdown, .header__nav-item--dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__nav-item--dropdown .icon {
  margin-left: 0.5rem;
  transition: transform 0.3s;
}

.header__nav-item--dropdown:hover .icon {
  transform: rotate(180deg);
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
}
@media screen and (min-width: 1260px) {
  .header.is-scrolled {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  }
}
@media screen and (min-width: 1260px) {
  .header.is-scrolled .header__wrapper {
    height: 80px;
  }
}
@media screen and (min-width: 1260px) {
  .header.is-scrolled .header__logo {
    padding: 0.6rem 1.5rem;
  }
}
@media screen and (min-width: 1260px) {
  .header.is-scrolled .header__logo p {
    margin: 0.5rem 0px;
    font-size: 1rem;
  }
}
@media screen and (min-width: 1260px) {
  .header.is-scrolled .header__logo img {
    max-width: 260px;
  }
}
.header__wrapper {
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
  border-bottom: 1px solid #DFDFDF;
  transition: height 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header__wrapper {
    height: auto;
    border-bottom: none;
  }
}
@media screen and (min-width: 764px) and (max-width: 1000px) {
  .header__wrapper {
    border-bottom: none;
    height: auto;
  }
}
.header__logo {
  align-items: center;
  padding: 2rem 2.2rem;
  transition: padding 0.3s ease;
  max-width: 340px;
}
@media screen and (max-width: 768px) {
  .header__logo {
    max-width: auto;
  }
}
@media screen and (min-width: 0px) and (max-width: 900px) {
  .header__logo {
    padding: 1.2rem 1rem;
  }
}
.header__logo img {
  width: 40vw;
  max-width: 340px;
  transition: max-width 0.3s ease;
}
@media screen and (min-width: 0px) and (max-width: 900px) {
  .header__logo img {
    min-width: 220px;
    width: auto;
  }
}
.header__logo p {
  font-size: 1rem;
  line-height: 1.4;
  margin-top: 1.5rem;
  transition: all 0.2s;
}
@media screen and (min-width: 0px) and (max-width: 900px) {
  .header__logo p {
    display: none;
  }
}
.header__nav {
  display: flex;
  position: relative;
}
@media screen and (min-width: 764px) and (max-width: 1000px) {
  .header__nav {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__nav--favorite {
  background: #C2182B;
  width: 120px;
}
.header__nav--search {
  background: #E46B8A;
  width: 120px;
  position: relative;
}
.header__nav--search form {
  position: absolute;
  top: 100%;
  right: 0;
  width: 240px;
  padding: 13px;
  background: #FFF;
  opacity: 1;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.2s;
  z-index: 10;
}
.header__nav--search form input[type=text] {
  width: 100%;
  padding: 10px;
  border: 1px solid #DFDFDF;
}
.header__nav--search .is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header__nav-border {
  border-left: 1px solid #DFDFDF;
}
.header__nav-box {
  background: #fff;
  display: flex;
  height: 100%;
  width: calc(760 / 1440 * 100vw);
}
@media screen and (min-width: 760px) and (max-width: 900px) {
  .header__nav-box {
    max-width: 700px;
    margin-left: 2.5vw;
  }
}
.header__nav-box-list {
  list-style: none;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 100%;
}
.header__nav-box-list-item {
  font-size: clamp(0.875rem, 0.176rem + 1.47vw, 1.4rem);
  color: #333333;
  display: flex;
  align-items: center;
  transition: all 0.2s;
  padding: 0 1.8rem;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.header__nav-box-list-item:hover {
  opacity: 0.5;
}
.header__nav-box-list-item img {
  transition: transform 0.2s ease;
}
.header__nav-box-list-item:hover img {
  transform: scale(1.2);
}
.header__nav-box-list-item-input {
  position: absolute;
  border-radius: 40px;
  box-sizing: border-box;
  width: 220px;
  right: 0;
  top: 0;
  padding: 18px 20px;
  border: 1px solid #E46B8A;
  background: #fff;
  z-index: 1;
  display: none;
}
.header__nav-box-list-item-input.is-open {
  display: block;
}
.header__nav-box-list-item-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  transition: all 0.2s;
  padding: 0;
  border: none;
  background: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  z-index: 2;
}
.header__nav-box-list-item-icon:hover {
  opacity: 0.5;
}
.header__nav-box-list-item-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: #ecc1ca;
}
.header__nav-box-list-item-icon img {
  position: relative;
  width: 18px;
  height: 18px;
  z-index: 1;
  display: block;
}

.sp-nav {
  position: fixed;
  top: 0;
  right: 0;
  display: none;
  z-index: 3000;
}
@media screen and (min-width: 0px) and (max-width: 1000px) {
  .sp-nav {
    display: block;
  }
}
.sp-nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.sp-nav__link {
  display: flex;
  height: 100%;
  padding: 2rem 0rem;
  color: #fff;
  text-decoration: none;
}
.sp-nav {
  /* MAIL */
}
.sp-nav__item--mail {
  width: 50%;
}
.sp-nav__item--mail .sp-nav__link {
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.sp-nav__item--mail img {
  width: 40px;
  flex-shrink: 0;
}
.sp-nav__item--mail p {
  margin: 0 0 0 1.2rem;
}
.sp-nav {
  /* TOP */
}
.sp-nav__item--top {
  width: 25%;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
.sp-nav__item--top .sp-nav__link {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.sp-nav__item--top svg {
  width: 28px;
  fill: #fff;
}
.sp-nav__item--top p {
  margin: 0;
  font-size: 1.2rem;
}
.sp-nav {
  /* Nav */
}
.sp-nav__item--drawer {
  width: 25%;
}
.sp-nav__item--drawer .sp-nav__link {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.drawer-toggle {
  position: fixed;
  opacity: 0;
  pointer-events: none;
}

.drawer-icon {
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  position: relative;
  transition: background 0.3s ease;
}
.drawer-icon::before, .drawer-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  transition: transform 0.3s ease, top 0.3s ease;
}
.drawer-icon::before {
  top: -8px;
}
.drawer-icon::after {
  top: 8px;
}

.drawer-toggle:checked ~ .sp-nav .drawer-icon {
  background: transparent;
}
.drawer-toggle:checked ~ .sp-nav .drawer-icon::before {
  top: 0;
  transform: rotate(45deg);
}
.drawer-toggle:checked ~ .sp-nav .drawer-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.sp-search {
  position: fixed;
  top: -3px;
  right: 45px;
  width: 18px;
  height: auto;
  transition: opacity 0.3s ease;
  z-index: 1000;
  cursor: pointer;
  display: none;
}
@media screen and (min-width: 0px) and (max-width: 1000px) {
  .sp-search {
    display: block;
  }
}
.sp-search_icon {
  color: #1a1a1a;
}

.sp-nav__item--drawer label,
.drawer-trigger,
.sp-nav__item--drawer .sp-nav__link {
  cursor: pointer;
}

.drawer-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  padding: 24px;
  background: #F7F2EE;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.drawer-panel .accordion {
  list-style: none;
}
.drawer-panel .accordion input {
  display: none;
}
.drawer-panel .accordion label {
  display: block;
  padding: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  font-size: 1.8rem;
  border-bottom: 1px solid #DFDFDF;
}
.drawer-panel .accordion label::after {
  content: "+";
  position: absolute;
  right: 1rem;
  transition: 0.3s;
}
.drawer-panel .accordion {
  /* 中身 */
}
.drawer-panel .accordion .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 1rem;
}
.drawer-panel .accordion .accordion-content li {
  position: relative;
}
.drawer-panel .accordion .accordion-content li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-image: url("../img/icon/right-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.25s ease;
}
.drawer-panel .accordion .accordion-content li a {
  display: block;
  padding: 1rem;
  text-decoration: none;
  color: #1a1a1a;
  transition: opacity 0.25s ease;
  font-size: 1.4rem;
}
.drawer-panel .accordion .accordion-content li a:hover {
  opacity: 0.6;
}
.drawer-panel .accordion {
  /* 開いた状態 */
}
.drawer-panel .accordion input:checked + label + .accordion-content {
  max-height: 300px;
}
.drawer-panel .accordion input:checked + label::after {
  content: "-";
}

.drawer-toggle:checked ~ .drawer-panel {
  transform: translateX(0);
}

.nav-pagetop {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  bottom: 60px;
  right: 15px;
  z-index: -1000;
  width: 70px;
  height: 70px;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  background: #E46B8A;
  border-radius: 50%;
  opacity: 0;
  cursor: pointer;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  transition: all 0.2s;
}
.nav-pagetop.active {
  opacity: 1;
  z-index: 1000;
}
.nav-pagetop:before {
  display: block;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  content: "\e5ce";
  transition: all 0.2s;
}
.nav-pagetop:after {
  content: "PAGETOP";
  display: block;
  padding: 4px 0px;
}
.nav-pagetop:hover {
  background: rgb(224.0657142857, 85.4342857143, 120.9514285714);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
}
.nav-pagetop:hover:before {
  transform: translateY(-4px);
}

.mainvisual {
  position: relative;
  padding: 7rem 0px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .mainvisual {
    padding: 9rem 0px 3rem;
  }
}
.mainvisual__title {
  position: relative;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0rem 3rem;
}
@media screen and (max-width: 768px) {
  .mainvisual__title {
    padding: 0rem 2rem;
  }
}
.mainvisual__title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 3.2rem;
  font-weight: bold;
  color: #1a1a1a;
  margin: 0px auto 3rem;
}
@media screen and (max-width: 1024px) {
  .mainvisual__title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .mainvisual__title {
    font-size: 2rem;
    padding: 0 3rem;
  }
  .mainvisual__title img {
    width: 30px;
  }
}

/* ----------------------------------------------------
Swiper 
---------------------------------------------------- */
.swiper-container {
  position: relative;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0rem 3rem;
}
@media screen and (max-width: 768px) {
  .swiper-container {
    padding: 0rem 2rem;
  }
}
.swiper-container {
  padding: 3rem 0 7rem;
  overflow: visible;
  position: relative;
}
@media screen and (max-width: 768px) {
  .swiper-container {
    padding: 0 0px 4rem;
  }
}
.swiper-container__lead {
  position: absolute;
  left: calc(400px + 5rem);
  top: -4rem;
  width: 48.13vw;
}
@media screen and (max-width: 768px) {
  .swiper-container__lead {
    left: 3rem;
    top: -13rem;
    width: 100%;
  }
}
.swiper-container .swiper-slide {
  width: 300px !important;
  min-height: 400px;
  margin: 0;
  display: flex !important;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .swiper-container .swiper-slide {
    min-height: 450px;
  }
}
.swiper-container .swiper-slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.swiper-container .swiper-slide figure figcaption {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 1rem;
}
.swiper-container .swiper-slide figure figcaption::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../img/icon/star.png");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.swiper-container .swiper-slide.swiper-slide-active {
  z-index: 1;
  width: 400px !important;
  height: 400px;
}
@media screen and (max-width: 768px) {
  .swiper-container .swiper-slide.swiper-slide-active {
    height: 450px;
  }
}

/* inactive bullets */
/* active bullet */
.swiper-pagination-bullet-active {
  background-color: #E46B8A !important;
}

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.swiper-pagination-bullet-active {
  transform: scale(1.3);
}

.page-heading__content {
  margin: 0;
  padding: 0;
}
.page-heading__content--left {
  text-align: left;
}
.page-heading__content--center {
  text-align: center;
}
.page-heading__content--right {
  text-align: right;
}
.page-heading__text-main {
  font-weight: 700;
  font-family: "Comfortaa", cursive;
  font-size: 4rem;
}
.page-heading__text-main:after {
  display: block;
  max-width: 240px;
  padding-top: 2.4rem;
  border-bottom: 3px solid #1a1a1a;
  content: "";
}
.page-heading__content--left .page-heading__text-main::after {
  margin-left: 0;
  margin-right: auto;
}
.page-heading__content--center .page-heading__text-main::after {
  margin-left: auto;
  margin-right: auto;
}
.page-heading__content--right .page-heading__text-main::after {
  margin-left: auto;
  margin-right: 0;
}
.page-heading__text-sub {
  font-weight: 400;
  font-size: 1.6rem;
  color: #1a1a1a;
  padding-top: 2.4rem;
}
.page-heading__message {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 6.4rem;
  color: #aaaaaa;
  font-weight: 400;
  font-size: 1.6rem;
  text-align: center;
}

.footer {
  position: relative;
  width: 100%;
}
.footer .copyright {
  text-align: center;
  font-size: 1.4rem;
  color: #aaaaaa;
  padding: 2rem 0px;
  background: #F7F2EE;
  width: 100%;
}
.footer .inner {
  position: relative;
  width: 100%;
  padding-bottom: 12rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .footer .inner {
    padding: 3rem 0px;
  }
}
.footer .inner .logo {
  max-width: 460px;
  margin: 5rem 0px 0px 0px;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .footer .inner .logo {
    margin: 0px auto;
    max-width: 300px;
  }
}
.footer__profile {
  position: absolute;
  right: 20px;
  top: -140px;
  max-width: 200px;
}
@media screen and (max-width: 768px) {
  .footer__profile {
    position: static;
    margin: 2rem auto 0px auto;
  }
}
.footer__profile img {
  display: block;
  margin: 0 auto;
}
.footer__profile .name {
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  margin: 1rem 0px;
}
.footer__profile .description {
  text-align: center;
  font-size: 1.4rem;
}
.footer__breadcrumb {
  background: #E46B8A;
  padding: 2.4rem 0;
}
.footer__breadcrumb p {
  color: #fff;
}
.footer__breadcrumb a {
  color: #fff;
  text-decoration: underline;
}

.button .button__basic--next, .button .button__basic--prev, .button .button__basic--back, .button .button__basic, .button .button__link {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s;
  text-align: center;
  box-sizing: border-box;
  font-size: 1.8rem;
  border-radius: 20px;
  background: #C2182B;
  color: #ffffff;
  position: relative;
  display: block;
  margin: 0 auto;
  text-align: center;
  max-width: 360px;
  width: 100%;
  padding: 2rem 0rem 2rem 0rem;
}
.button .button__basic--next:hover, .button .button__basic--prev:hover, .button .button__basic--back:hover, .button .button__basic:hover, .button .button__link:hover, .button .button__basic--next:focus, .button .button__basic--prev:focus, .button .button__basic--back:focus, .button .button__basic:focus, .button .button__link:focus {
  background: #E46B8A;
  color: #ffffff;
}
.button-center {
  margin: 0 auto;
}
.button__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("../img/icon/external-link.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: right 0.3s ease;
  pointer-events: none;
}
.button__link:hover {
  opacity: 0.8;
}
.button__basic::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("../img/icon/right-arrow-white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: right 0.3s ease;
  pointer-events: none;
}
.button__basic:hover {
  opacity: 0.8;
}
.button__basic:hover::after {
  right: 5px;
}
.button__basic--back {
  width: 100%;
}
.button__basic--back:before {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  content: "\e896";
  margin-right: 0.8rem;
}
@media screen and (min-width: 1260px) {
  .button__basic--prev {
    width: calc(50% - 15px);
    margin-right: 15px;
  }
}
.button__basic--prev {
  width: 100%;
}
.button__basic--prev:before {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  content: "\e5cb";
  margin-right: 0.8rem;
}
@media screen and (min-width: 1260px) {
  .button__basic--next {
    width: calc(50% - 15px);
    margin-left: 15px;
  }
}
.button__basic--next {
  width: 100%;
}
.button__basic--next:after {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  content: "\e5cc";
  margin-left: 0.8rem;
}

.pagination__list,
.pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.pagination__list-item,
.pagination .page-numbers > li {
  margin: 0.3rem;
}
.pagination .pagination__link--next, .pagination .pagination__link.next,
.pagination .page-numbers > li > a--next, .pagination .pagination__link--prev, .pagination .pagination__link.prev,
.pagination .page-numbers > li > a--prev, .pagination .pagination__link,
.pagination .page-numbers > li > a {
  transition: background-color 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 1.6rem;
  border-radius: 6px;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}
.pagination__link,
.pagination .page-numbers > li > a {
  background-color: #eeeeee;
  color: #1a1a1a;
}
.pagination__link:hover, .pagination__link:focus,
.pagination .page-numbers > li > a:hover,
.pagination .page-numbers > li > a:focus {
  background-color: #E46B8A;
  color: #ffffff;
}
.pagination__link--prev, .pagination__link.prev,
.pagination .page-numbers > li > a--prev,
.pagination .page-numbers > li > a.prev {
  min-width: 12rem;
  background-color: #eeeeee;
  color: #1a1a1a;
}
.pagination__link--prev:before, .pagination__link.prev:before,
.pagination .page-numbers > li > a--prev:before,
.pagination .page-numbers > li > a.prev:before {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  content: "\e5cb";
  display: inline-block;
  margin-right: 0.6rem;
  transition: transform 0.2s;
}
.pagination__link--prev:hover, .pagination__link--prev:focus, .pagination__link.prev:hover, .pagination__link.prev:focus,
.pagination .page-numbers > li > a--prev:hover,
.pagination .page-numbers > li > a--prev:focus,
.pagination .page-numbers > li > a.prev:hover,
.pagination .page-numbers > li > a.prev:focus {
  background-color: #E46B8A;
  color: #ffffff;
}
.pagination__link--prev:hover:before, .pagination__link--prev:focus:before, .pagination__link.prev:hover:before, .pagination__link.prev:focus:before,
.pagination .page-numbers > li > a--prev:hover:before,
.pagination .page-numbers > li > a--prev:focus:before,
.pagination .page-numbers > li > a.prev:hover:before,
.pagination .page-numbers > li > a.prev:focus:before {
  transform: translateX(-4px);
}
.pagination__link--next, .pagination__link.next,
.pagination .page-numbers > li > a--next,
.pagination .page-numbers > li > a.next {
  min-width: 12rem;
  background-color: #eeeeee;
  color: #1a1a1a;
}
.pagination__link--next:after, .pagination__link.next:after,
.pagination .page-numbers > li > a--next:after,
.pagination .page-numbers > li > a.next:after {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  content: "\e5cc";
  display: inline-block;
  margin-left: 0.6rem;
  transition: transform 0.2s;
}
.pagination__link--next:hover, .pagination__link--next:focus, .pagination__link.next:hover, .pagination__link.next:focus,
.pagination .page-numbers > li > a--next:hover,
.pagination .page-numbers > li > a--next:focus,
.pagination .page-numbers > li > a.next:hover,
.pagination .page-numbers > li > a.next:focus {
  background-color: #E46B8A;
  color: #ffffff;
}
.pagination__link--next:hover:after, .pagination__link--next:focus:after, .pagination__link.next:hover:after, .pagination__link.next:focus:after,
.pagination .page-numbers > li > a--next:hover:after,
.pagination .page-numbers > li > a--next:focus:after,
.pagination .page-numbers > li > a.next:hover:after,
.pagination .page-numbers > li > a.next:focus:after {
  transform: translateX(4px);
}
.pagination .pagination__text--dots, .pagination .pagination__text.dots,
.pagination .page-numbers > li > span--dots, .pagination .pagination__text--current, .pagination .pagination__text.current,
.pagination .page-numbers > li > span--current, .pagination .pagination__text,
.pagination .page-numbers > li > span {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 1.6rem;
  border-radius: 6px;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
}
.pagination__text,
.pagination .page-numbers > li > span {
  background-color: #eeeeee;
  color: #1a1a1a;
}
.pagination__text--current, .pagination__text.current,
.pagination .page-numbers > li > span--current,
.pagination .page-numbers > li > span.current {
  background-color: #E46B8A;
  color: #ffffff;
}
.pagination__text--dots, .pagination__text.dots,
.pagination .page-numbers > li > span--dots,
.pagination .page-numbers > li > span.dots {
  background-color: #eeeeee;
  color: #1a1a1a;
}

@media screen and (min-width: 1260px) {
  .form__form-group {
    display: flex;
  }
}
@media screen and (min-width: 1260px) {
  .form__form-group-title {
    width: 260px;
    padding: 1.6rem;
  }
}
.form__form-group-title {
  padding: 1rem;
}
@media screen and (min-width: 1260px) {
  .form__form-group-content {
    width: calc(100% - 260px);
    padding: 1.6rem;
  }
}
.form__form-group-content {
  padding: 1rem;
  display: flex;
}
.form .form__label--required, .form .form__label--itemname, .form .form__label {
  display: inline-block;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
}
.form__label--itemname {
  color: #1a1a1a;
}
.form__label--required {
  margin-left: 0.4rem;
  padding: 0.4em 0.6em;
  border-radius: 3px;
  background: #FAF1D9;
  color: #aaaaaa;
  font-size: 1.4rem;
}
.form__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.form__list-item {
  margin-bottom: 0.6rem;
}
.form .form__input--check, .form .form__input--radio, .form .form__input--select, .form .form__input--textarea-half, .form .form__input--textarea, .form .form__input--text-half, .form .form__input--text, .form .form__input {
  position: relative;
  width: 100%;
  padding: 0.4rem;
}
.form .form__input--select select, .form__input--select .form select, .form .form__input--textarea-half textarea, .form__input--textarea-half .form textarea, .form .form__input--textarea textarea, .form__input--textarea .form textarea, .form .form__input--text-half input, .form__input--text-half .form input, .form .form__input--text input, .form__input--text .form input {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 100%;
  margin: 0;
  border: 2px solid #efefef;
  background: #ffffff;
  font-weight: 400;
  font-size: 1.6rem;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form .form__input--select select::-ms-expand, .form__input--select .form select::-ms-expand, .form .form__input--textarea-half textarea::-ms-expand, .form__input--textarea-half .form textarea::-ms-expand, .form .form__input--textarea textarea::-ms-expand, .form__input--textarea .form textarea::-ms-expand, .form .form__input--text-half input::-ms-expand, .form__input--text-half .form input::-ms-expand, .form .form__input--text input::-ms-expand, .form__input--text .form input::-ms-expand {
  display: none;
}
.form .form__input--select select::-moz-placeholder, .form__input--select .form select::-moz-placeholder, .form .form__input--textarea-half textarea::-moz-placeholder, .form__input--textarea-half .form textarea::-moz-placeholder, .form .form__input--textarea textarea::-moz-placeholder, .form__input--textarea .form textarea::-moz-placeholder, .form .form__input--text-half input::-moz-placeholder, .form__input--text-half .form input::-moz-placeholder, .form .form__input--text input::-moz-placeholder, .form__input--text .form input::-moz-placeholder {
  color: #cccccc;
}
.form .form__input--select select::placeholder, .form__input--select .form select::placeholder, .form .form__input--textarea-half textarea::placeholder, .form__input--textarea-half .form textarea::placeholder, .form .form__input--textarea textarea::placeholder, .form__input--textarea .form textarea::placeholder, .form .form__input--text-half input::placeholder, .form__input--text-half .form input::placeholder, .form .form__input--text input::placeholder, .form__input--text .form input::placeholder {
  color: #cccccc;
}
.form .form__input--select select, .form__input--select .form select, .form .form__input--textarea-half textarea, .form__input--textarea-half .form textarea, .form .form__input--textarea textarea, .form__input--textarea .form textarea, .form .form__input--text-half input, .form__input--text-half .form input, .form .form__input--text input, .form__input--text .form input {
  /* 旧Edge対応 */
}
.form .form__input--select select::-ms-input-placeholder, .form__input--select .form select::-ms-input-placeholder, .form .form__input--textarea-half textarea::-ms-input-placeholder, .form__input--textarea-half .form textarea::-ms-input-placeholder, .form .form__input--textarea textarea::-ms-input-placeholder, .form__input--textarea .form textarea::-ms-input-placeholder, .form .form__input--text-half input::-ms-input-placeholder, .form__input--text-half .form input::-ms-input-placeholder, .form .form__input--text input::-ms-input-placeholder, .form__input--text .form input::-ms-input-placeholder {
  color: #cccccc;
}
.form .form__input--select select, .form__input--select .form select, .form .form__input--textarea-half textarea, .form__input--textarea-half .form textarea, .form .form__input--textarea textarea, .form__input--textarea .form textarea, .form .form__input--text-half input, .form__input--text-half .form input, .form .form__input--text input, .form__input--text .form input {
  /* IE対応 */
}
.form .form__input--select select:-ms-input-placeholder, .form__input--select .form select:-ms-input-placeholder, .form .form__input--textarea-half textarea:-ms-input-placeholder, .form__input--textarea-half .form textarea:-ms-input-placeholder, .form .form__input--textarea textarea:-ms-input-placeholder, .form__input--textarea .form textarea:-ms-input-placeholder, .form .form__input--text-half input:-ms-input-placeholder, .form__input--text-half .form input:-ms-input-placeholder, .form .form__input--text input:-ms-input-placeholder, .form__input--text .form input:-ms-input-placeholder {
  color: #cccccc;
}
.form .form__input--text-half input, .form__input--text-half .form input, .form .form__input--text input, .form__input--text .form input {
  padding: 0.8rem 1.6rem;
  transition: border-color 0.4s;
}
.form .form__input--text-half input:focus, .form__input--text-half .form input:focus, .form .form__input--text input:focus, .form__input--text .form input:focus {
  border: 2px solid #E46B8A;
}
.form .form__input--textarea-half textarea, .form__input--textarea-half .form textarea, .form .form__input--textarea textarea, .form__input--textarea .form textarea {
  padding: 1.6rem;
  transition: border-color 0.4s;
}
.form .form__input--textarea-half textarea:focus, .form__input--textarea-half .form textarea:focus, .form .form__input--textarea textarea:focus, .form__input--textarea .form textarea:focus {
  border: 2px solid #E46B8A;
}
.form__input--text-half {
  max-width: 50%;
}
.form__input--textarea-half {
  max-width: 50%;
}
.form__input--select {
  max-width: 300px;
}
.form__input--select select {
  padding: 0.8rem 2.4rem 0.8rem 1.6rem;
  cursor: pointer;
}
.form__input--select::after {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  z-index: 1;
  width: 0;
  height: 0;
  margin: auto 0;
  border-width: 6px 4px 0;
  border-style: solid;
  border-color: #cccccc transparent transparent transparent;
  content: "";
  pointer-events: none;
}
.form__input--radio {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.form__input--radio .radio-input {
  display: block !important;
  visibility: visible !important;
  opacity: 0 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 4px !important;
  height: 4px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: none !important;
}
.form__input--radio .radio-icon {
  display: inline-block;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.8rem;
  border: 1px solid #cccccc;
  border-radius: 50%;
}
.form__input--radio .radio-icon:before {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin: auto;
  border-radius: 50%;
  background: #E46B8A;
  content: "";
  transition: opacity 0.4s;
}
.form__input--radio .radio-text {
  color: #cccccc;
  transition: color 0.4s;
}
.form__input--radio .radio-input:checked + .radio-icon {
  border-color: #E46B8A;
}
.form__input--radio .radio-input:checked + .radio-icon:before {
  opacity: 1;
}
.form__input--radio .radio-input:checked ~ .radio-text {
  color: #E46B8A;
}
.form__input--check {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.form__input--check .check-input {
  display: block !important;
  visibility: visible !important;
  opacity: 0 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 4px !important;
  height: 4px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: none !important;
}
.form__input--check .check-icon {
  display: inline-block;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.8rem;
  border: 2px solid #cccccc;
}
.form__input--check .check-icon:after {
  opacity: 0;
  position: absolute;
  top: 0.5rem;
  left: 0.3rem;
  width: 1.6rem;
  height: 0.8rem;
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;
  content: "";
  transition: opacity 0.4s;
}
.form__input--check .check-text {
  color: #cccccc;
  transition: color 0.4s;
}
.form__input--check .check-input:checked + .check-icon {
  border-color: #E46B8A;
}
.form__input--check .check-input:checked + .check-icon:after {
  opacity: 1;
  transform: rotate(-45deg);
  border-bottom: 2px solid #E46B8A;
  border-left: 2px solid #E46B8A;
}
.form__input--check .check-input:checked ~ .check-text {
  color: #E46B8A;
}

.table-overview {
  width: 100%;
  line-height: 1.8;
  text-align: left;
}
.table-overview tr th {
  width: 16rem;
  padding: 0.8rem;
  vertical-align: top;
}
.table-overview tr td {
  width: calc(100% - 16rem);
  padding: 0.8rem 1.6rem;
  vertical-align: top;
}

.side-profile {
  width: 100%;
  position: relative;
  background: #fff;
  box-sizing: border-box;
  padding: 10rem 2rem 2rem 2rem;
  margin: 10rem 0px 3rem 0px;
}
@media screen and (max-width: 768px) {
  .side-profile {
    margin: 13rem 0px 3rem 0px;
  }
}
.side-profile__img {
  position: absolute;
  top: -110px;
  right: 0;
  left: 0;
  margin: auto;
  width: 190px;
}
.side-profile .name {
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  margin: 1rem 0px;
}
.side-profile .description {
  text-align: center;
  font-size: 1.4rem;
}

.side-title {
  font-size: 3.2rem;
  margin-bottom: 2rem;
  color: #7A0F1B;
}

.side-article {
  display: flex;
  width: 100%;
  align-items: stretch;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  margin-bottom: 2.4rem;
}
.side-article__date {
  font-size: 1.2em;
  margin-bottom: 1.2rem;
}
.side-article__title {
  font-size: 1.4em;
}
.side-article__link {
  display: flex;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.side-article__img {
  width: 200px;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.side-article__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.side-article__content {
  width: 50%;
  background: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .side-article {
    flex-direction: column;
  }
  .side-article__img, .side-article__content {
    width: 100%;
  }
}

.side-article:hover {
  opacity: 0.6;
}
.side-article:hover .side-article__img img {
  transform: scale(1.1);
}

.l-2col {
  display: flex;
  width: 100%;
  gap: 3.2rem;
  margin-bottom: 6rem;
}
.l-2col__main {
  flex: 1;
  min-width: 0;
}
.l-2col__side {
  width: 380px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .l-2col {
    flex-direction: column;
    margin-bottom: 4rem;
  }
  .l-2col__side {
    width: 100%;
  }
}

.gap-content {
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .gap-content {
    margin-bottom: 3rem;
  }
}

.section-title {
  font-size: 4rem;
  margin-bottom: 3.2rem;
  color: #7A0F1B;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
}
.section-title span {
  color: #333333;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .section-title span {
    font-size: 1.6rem;
  }
}

.lip-section-title {
  position: relative;
  font-size: 2.4rem;
  margin-bottom: 2.4rem;
  box-sizing: border-box;
  padding-left: 40px;
}
.lip-section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background-image: url("../img/icon/lip.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
}

.article {
  width: 100%;
}
.article__body {
  box-sizing: border-box;
  padding: 40px 20px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
@media screen and (max-width: 768px) {
  .article__body {
    padding: 2rem;
  }
}
.article__list {
  width: 100%;
  display: grid;
}
.article__list--2col {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.article__list--3col {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .article__list--3col {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.article__post-card {
  width: 100%;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  transition: all 0.3s ease;
  position: relative;
}
.article__post-card-rank {
  position: absolute;
  top: -30px;
  left: 10px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .article__post-card-rank {
    top: -10px;
    left: 5px;
    width: 48px;
    height: 48px;
  }
}
.article__post-card-rank .icon {
  position: absolute;
  width: 100%;
  height: 100%;
}
.article__post-card-rank .num {
  position: relative;
  font-size: 2.4rem;
  font-weight: bold;
  z-index: 1;
}
.article__post-card:hover {
  opacity: 0.6;
}
.article__post-card a {
  display: block;
  color: #333333;
  transition: all 0.3s ease;
}
.article__post-card a:hover {
  color: #7A0F1B;
}
.article__post-card-body {
  background: #fff;
  box-sizing: border-box;
  padding: 1.6rem;
}
.article__post-card-body .date {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}
.article__post-card-body .title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.article__post-card-body .tag {
  display: flex;
  gap: 0.5rem;
}
.article__post-card-body .tag a {
  color: #7A0F1B;
}
.article__post-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.article__post-card-thumb-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  border-radius: 20px;
  background: #E46B8A;
  color: #fff;
  padding: 8px 12px;
  font-size: 1.4rem;
}
.article__post-card-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.article__post-card:hover .article__post-card-thumb img {
  transform: scale(1.08);
}
.article__thumbnail {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (min-width: 480px) and (max-width: 764px) {
  .article__thumbnail {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .article__thumbnail {
    grid-template-columns: repeat(1, 1fr);
  }
}
.article__thumbnail-item {
  overflow: hidden;
}
.article__thumbnail img {
  width: 100%;
  transition: transform 0.3s ease;
}
.article__thumbnail img:hover {
  transform: scale(1.1);
  opacity: 0.6;
}
.article__title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .article__title {
    font-size: 1.8rem;
  }
}
.article__heading-date {
  width: 100%;
  box-sizing: border-box;
  font-size: 1.4rem;
  padding: 0px 2rem 2.8rem 2rem;
  border-bottom: 1px solid #333333;
}
@media screen and (max-width: 768px) {
  .article__heading-date {
    padding: 0px 1rem 2.8rem 0rem;
  }
}
.article__heading-tagline {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  gap: 1rem;
  list-style: none;
  padding-top: 1rem;
  margin-bottom: 3rem;
}
.article__heading-tagline li a {
  display: block;
  padding: 5px 1rem;
  text-align: center;
  border-radius: 5px;
  border: #333333 1px solid;
  transition: all 0.3s ease;
}
.article__heading-tagline li a:hover {
  background-color: #333333;
  color: #fff;
}
.article .article__tab {
  display: flex;
  border-left: 1px solid #E9E9E9;
}
@media screen and (max-width: 768px) {
  .article .article__tab {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-left: none;
  }
}
.article .article__tab-item {
  flex: 1;
  position: relative;
  background: #F9F9F9;
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid #E9E9E9;
  border-left: 1px solid #E9E9E9;
  color: #7A0F1B;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .article .article__tab-item {
    padding: 1.5rem 1rem;
    font-size: 1.4rem;
    min-width: 100px;
  }
}
.article .article__tab-item:last-child {
  border-right: 1px solid #E9E9E9;
}
.article .article__tab-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #E9E9E9;
  transition: height 0.3s;
}
.article .article__tab-item--active {
  background: #F7F2EE;
  border-top: 1px solid transparent;
}
.article .article__tab-item--active::before {
  height: 5px;
  background: #7A0F1B;
}
.article .article__tab-item:hover {
  background: #7A0F1B;
  color: #fff;
}
.article .article__tab-content {
  display: none;
  padding: 2rem;
  box-sizing: border-box;
  background: #F7F2EE;
}
.article .article__tab-content.is-active {
  display: block;
}

.detail {
  position: relative;
}
.detail__title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .detail__title {
    font-size: 1.8rem;
  }
}
.detail-favorite {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #E46B8A;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  margin-top: 1rem;
}
.detail-favorite .icon {
  width: 20px;
  height: auto;
}
.detail-favorite .icon path {
  fill: #E46B8A;
  transition: fill 0.3s ease;
}
.detail-favorite:hover {
  background: #E46B8A;
}
.detail-favorite:hover .icon path {
  fill: #fff;
}
.detail-favorite.is-active {
  background: #E46B8A;
  color: #fff;
}
.detail-tagline {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.detail__tag {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  gap: 1rem;
  list-style: none;
  padding-top: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.detail__tag li a {
  display: block;
  padding: 5px 1rem;
  text-align: center;
  border-radius: 5px;
  border: #333333 1px solid;
  transition: all 0.3s ease;
}
.detail__tag li a:hover {
  background-color: #333333;
  color: #fff;
}
.detail__inner {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  padding: 40px 20px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.detail-category {
  border-bottom: 1px solid #333333;
  padding-bottom: 1.4rem;
  width: 100%;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .detail-category {
    flex-direction: column;
  }
}
.detail-category .date {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .detail-category .date {
    font-size: 1.2rem;
  }
}
.detail-category .list {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.detail-category .list a {
  display: block;
  background: #E46B8A;
  border-radius: 10px;
  text-align: center;
  padding: 1rem 2.4rem;
  color: #fff;
  transition: all 0.3s ease;
}
.detail-category .list a:hover {
  opacity: 0.6;
}
.detail__layout {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .detail__layout {
    gap: 2rem;
  }
}
.detail__articles {
  flex: 1;
}
.detail__headline {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.detail__headline-jp {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 4rem;
  color: #7A0F1B;
}
@media screen and (max-width: 768px) {
  .detail__headline-jp {
    font-size: 3rem;
  }
}
.detail__headline-en {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.detail__headline-en span {
  display: inline-block;
  transform: rotate(90deg);
  transform-origin: center;
  font-size: 2rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .detail__headline-en span {
    font-size: 1.6rem;
  }
}

.news__list {
  width: 100%;
  margin-bottom: 3.6rem;
}
.news__list-item {
  display: flex;
  border-bottom: 1px solid #E9E9E9;
  padding: 2.8rem;
  box-sizing: border-box;
  gap: 40px;
  width: 100%;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .news__list-item {
    flex-direction: column;
    padding: 1.6rem;
    gap: 1rem;
  }
}
.news__list-item:hover {
  background-color: #F7F2EE;
}
.news__list-item .date {
  font-weight: bold;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .news__list-item .date {
    font-size: 1.2rem;
  }
}
.news__list-item .title {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .news__list-item .title {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .news {
    margin-top: 2rem;
  }
}

.post__img-center {
  width: 100%;
  margin: 0 auto 2.6rem auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .post__img-center {
    margin-bottom: 2rem;
  }
}
.post-text {
  line-height: 1.8;
  margin-bottom: 2.6rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .post-text {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}
.post-heading-block {
  display: flex;
  align-items: stretch;
  margin: 0 0px 2rem 0px;
  border: 1px solid #E46B8A;
}
.post-heading-block::before {
  content: "";
  width: 56px;
  min-width: 56px;
  display: block;
  background-color: #F7F2EE;
  background-image: url("../img/icon/lip.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px 28px;
}
.post-heading-block h2 {
  margin: 0;
  padding: 1rem 1.5rem;
  background: #E46B8A;
  font-size: 2.4rem;
  color: #fff;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .post-heading-block h2 {
    font-size: 1.8rem;
    padding: 0.8rem 1rem;
  }
}
.post h3 {
  position: relative;
  padding: 1.5rem;
  font-size: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .post h3 {
    font-size: 1.7rem;
    padding: 1.2rem;
  }
}
.post h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: #7A0F1B;
  border-radius: 999px;
}
.post h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: #7A0F1B;
  border-radius: 999px;
}
.post h4 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .post h4 {
    font-size: 1.5rem;
  }
}
.post .rank {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-sizing: border-box;
  padding: 1.8rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .post .rank {
    padding: 1.3rem;
  }
}
.post .rank__icon {
  position: relative;
  width: 58px;
  height: 58px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.post .rank__number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
}
.post .rank__title {
  font-size: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .post .rank__title {
    font-size: 2.4rem;
  }
}
.post .rank {
  /* ===== variations ===== */
}
.post .rank--gold {
  border: 1px solid #d0a900;
}
.post .rank--gold .rank__icon {
  background-image: url("../img/icon/crown-1.svg");
}
.post .rank--gold .rank__title {
  color: #d0a900;
}
.post .rank--silver {
  border: 1px solid #c0c0c0;
}
.post .rank--silver .rank__icon {
  background-image: url("../img/icon/crown-2.svg");
}
.post .rank--silver .rank__title {
  color: #c0c0c0;
}
.post .rank--bronze {
  border: 1px solid #9a6229;
}
.post .rank--bronze .rank__icon {
  background-image: url("../img/icon/crown-3.svg");
}
.post .rank--bronze .rank__title {
  color: #9a6229;
}
.post .badge-emphasis {
  position: relative;
  text-align: center;
  padding: 2.5rem 1rem;
  font-size: 3.4rem;
  font-weight: bold;
  overflow: visible;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .post .badge-emphasis {
    font-size: 2.5rem;
    padding: 2rem 1rem;
  }
}
.post .badge-emphasis::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.3);
  width: 120px;
  height: 120px;
  background: url("../img/icon/lip.svg") no-repeat center/contain;
  opacity: 0.25;
  filter: blur(1px);
  z-index: 0;
}
.post-memo {
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 768px) {
  .post-memo {
    margin-bottom: 2rem;
  }
}
.post-memo__title {
  background: #7A0F1B;
  padding: 2rem 2rem 2rem 6rem;
  box-sizing: border-box;
  width: 100%;
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .post-memo__title {
    font-size: 2rem;
    padding: 1.5rem 1rem 1.5rem 6rem;
  }
}
.post-memo__title::before {
  content: "";
  position: absolute;
  left: 2.2rem;
  top: 1.5rem;
  width: 29px;
  height: 29px;
  background-image: url("../img/icon/pencil-fill.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.post-memo__text {
  padding: 2rem;
  box-sizing: border-box;
  background: #f1f1f1;
}
.post-memo__text p {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .post-memo__text {
    padding: 1.5rem;
  }
  .post-memo__text p {
    font-size: 1.5rem;
  }
}
.post-info {
  margin-bottom: 3.2rem;
  border: 2px solid #1a1a1a;
  border-radius: 20px;
  padding: 2rem;
}
.post-info__title {
  padding-left: 4rem;
  box-sizing: border-box;
  width: 100%;
  font-size: 2.4rem;
  font-weight: bold;
  position: relative;
  margin-bottom: 1.6rem;
}
.post-info__title::before {
  content: "";
  position: absolute;
  left: 0rem;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 999px;
  width: 30px;
  height: 4px;
  background: #7A0F1B;
}
.post-info__text {
  font-size: 1.6rem;
}
.post-check-list {
  margin-bottom: 3.2rem;
}
.post-check-list__title {
  background: #E46B8A;
  border-radius: 20px 20px 0px 0px;
  text-align: center;
  padding: 2rem;
  box-sizing: border-box;
  width: 100%;
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .post-check-list__title {
    font-size: 2rem;
    padding: 1.4rem;
  }
}
.post-check-list ul {
  background: #F7F2EE;
  padding: 2rem;
  box-sizing: border-box;
  border-radius: 0px 0px 20px 20px;
}
@media screen and (max-width: 768px) {
  .post-check-list ul {
    padding: 1.4rem;
  }
}
.post-check-list li {
  position: relative;
  padding-left: 3.2rem;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .post-check-list li {
    font-size: 1.5rem;
  }
}
.post-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 19px;
  height: 19px;
  background-image: url("../img/icon/check-fill.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.post-check-list li:last-child {
  margin-bottom: 0;
}
.post-check-list--bad .post-check-list__title {
  background: #333333;
}
.post-check-list--bad li::before {
  background-image: url("../img/icon/baseline-close.svg");
}
.post-check-list--check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 1rem;
  height: 1rem;
  background-image: url("/icons/check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.dummy-image {
  width: 100%;
  height: 200px;
  border: 2px dashed #bbb;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 14px;
  font-family: sans-serif;
  margin-bottom: 3.6rem;
}

/*
 * Fonts
 * -------------------------------------------------------------------
 */
/*
 * Page
 * -------------------------------------------------------------------
 */
.slider {
  width: 100%;
}
.slider .slick-slide {
  padding: 0 10px;
  opacity: 0.5;
  transform: scale(0.85);
  transition: 0.3s;
}
.slider .slick-center {
  opacity: 1;
  transform: scale(1);
}
.slider img {
  width: 100%;
  border-radius: 12px;
}

.recommend {
  position: relative;
}
.recommend__inner {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  padding: 40px 20px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.recommend__layout {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .recommend__layout {
    gap: 2rem;
  }
}
.recommend__articles {
  flex: 1;
}
.recommend__headline {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.recommend__headline-jp {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 4rem;
  color: #7A0F1B;
}
@media screen and (max-width: 768px) {
  .recommend__headline-jp {
    font-size: 3rem;
  }
}
.recommend__headline-en {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.recommend__headline-en span {
  display: inline-block;
  transform: rotate(90deg);
  transform-origin: center;
  font-size: 2rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .recommend__headline-en span {
    font-size: 1.6rem;
  }
}

.news__list {
  width: 100%;
  margin-bottom: 3.6rem;
}
.news__list-item {
  display: flex;
  border-bottom: 1px solid #E9E9E9;
  padding: 2.8rem;
  box-sizing: border-box;
  gap: 40px;
  width: 100%;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .news__list-item {
    flex-direction: column;
    padding: 1.6rem;
    gap: 1rem;
  }
}
.news__list-item:hover {
  background-color: #F7F2EE;
}
.news__list-item .date {
  font-weight: bold;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .news__list-item .date {
    font-size: 1.2rem;
  }
}
.news__list-item .title {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .news__list-item .title {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .news {
    margin-top: 2rem;
  }
}

.mainBg {
  background: #F7F2EE;
  width: 100%;
  box-sizing: border-box;
  padding: 80px 0px;
}
@media screen and (min-width: 764px) and (max-width: 1000px) {
  .mainBg {
    padding: 50px 0px;
  }
}
@media screen and (max-width: 768px) {
  .mainBg {
    padding: 40px 0px;
  }
}
@media screen and (max-width: 768px) {
  .mainBg {
    padding: 40px 0px;
  }
}
.mainBg .container {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.page-top {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 1000;
  background-color: #fff;
  border: 1px solid #c13855;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.2s;
}
.page-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  .page-top {
    display: none;
  }
}
.page-top img {
  max-width: 24px;
  display: block;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  overflow: hidden;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
}
.modal {
  /* 背景 */
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.modal {
  /* コンテンツ枠 */
}
.modal__wrap {
  position: relative;
  width: 90%;
  max-width: 760px;
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-sizing: border-box;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 1;
  max-height: 80vh;
  overflow-y: auto;
}
.modal__intro-title {
  font-size: 2.4rem;
  color: #7A0F1B;
  margin-bottom: 2rem;
}
.modal__search {
  position: relative;
  width: 100%;
  align-items: center;
  margin: 0 auto 1rem;
}
.modal__input {
  width: 100%;
  padding: 30px 56px 18px 20px;
  border-radius: 40px;
  border: none;
  background: #F7F2EE;
  box-sizing: border-box;
}
.modal__input-icon {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 2;
}
.modal__input-icon:hover {
  opacity: 0.5;
}
.modal__input-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: #ecc1ca;
}
.modal__input-icon img {
  position: relative;
  width: 18px;
  height: 18px;
  z-index: 1;
  display: block;
}
.modal {
  /* 閉じるボタン */
}
.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
}
.modal__body {
  margin: 3rem 0px;
}

.modal-content {
  display: none;
}
.modal-content-movie {
  margin-bottom: 3rem;
}
.modal-content-info {
  margin-bottom: 3rem;
}
.modal-content-info dl {
  width: 100%;
  display: flex;
  box-sizing: border-box;
  flex-wrap: wrap;
}
.modal-content-info dl dt {
  width: 30%;
  font-weight: bold;
  border-bottom: 1px solid #707070;
  padding: 2rem 0px;
  box-sizing: border-box;
}
.modal-content-info dl dd {
  width: 70%;
  border-bottom: 1px solid #707070;
  padding: 2rem 0px;
  box-sizing: border-box;
}

.modal-content.is-active {
  display: block;
}

/* SVG */
.icon-close {
  width: 24px;
  height: 24px;
  color: #333;
}
.icon-close line {
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}
.icon-close:hover {
  color: #E46B8A;
}

.thumbnail {
  margin: 3rem 0px;
}

.thumbnail .slick-list {
  overflow: visible;
}

.thumbnail .slick-track {
  width: auto !important;
  transform: none !important;
  display: flex !important;
  justify-content: center;
}

.thumbnail .slick-slide {
  margin: 0 6px;
  width: auto !important;
}

.thumbnail .slick-list {
  display: flex !important;
  justify-content: center;
}

.thumbnail .slick-list {
  margin: 0 -6px;
}

.thumbnail img {
  width: 80px;
  display: block;
  cursor: pointer;
}

.marquee {
  overflow: hidden;
  width: 100%;
}
.marquee a {
  display: block;
}
.marquee__track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: marquee-scroll 20s linear infinite;
  gap: 3rem;
}
.marquee__item {
  flex: 0 0 auto;
  width: auto;
}
.marquee__item img {
  height: auto;
  width: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.marquee__item:nth-child(odd) {
  padding-top: 20px;
}
.marquee__item:nth-child(even) {
  padding-top: 0;
}
.marquee:hover .marquee__track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}/*# sourceMappingURL=style.css.map */