/* -------------------------------------
  base
------------------------------------- */

:root {
  --text-color: #333;
  --accent-color-brown: #704640;
  --color-pink: #e8447e;
  --color-orange: #ea8032;
  --color-blue: #20aee7;
  --color-thin-blue: #19b6db;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.75;
}

img {
  width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


/* -------------------------------------
  common
------------------------------------- */

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  z-index: 9999;
  background-color: #fff3d2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-logo {
  opacity: 0;
  animation: fadeIn 1.4s forwards;
  width: min(70%, 400px);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

.is-pc {
  display: block;
}

.is-sp {
  display: none;
}

.inner {
  padding: 0 6.7%;
}

.lato-font {
  font-family: "Lato", sans-serif;
}

.sub-sec {
  margin-top: 80px;
}

.sub-sec__lead {
  font-size: 1.8rem;
  font-weight: 500;
}

.sub-sec__content {
  margin-top: 50px;
}

.sub-sec__content h3 {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  color: var(--accent-color-brown);
  margin-bottom: 20px;
}

.main-title {
  position: relative;
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  color: #fff;
  padding: 24px 10px;
}

.main-title::before {
  position: absolute;
  content: '';
  top: -52px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  z-index: -1;
}

.main-title::after {
  position: absolute;
  content: '';
  left: 50%;
  transform: translateX(-50%);
  background-repeat: no-repeat;
  background-size: contain;
}

.sub-title {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  color: var(--accent-color-brown);
  margin-bottom: 30px;
}

.indent {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}

.notes {
  font-size: 1.4rem !important;
}

.btn {
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  color: #fff;
  text-decoration: none;
  width: min(100%, 400px);
  min-height: 60px;
  margin: 40px auto 0;
  padding: 10px;
  border-radius: 40px;
  background-color: var(--accent-color-brown);
  background-image: url(../img/link-arrow.svg);
  background-size: 30px auto;
  background-repeat: no-repeat;
  background-position: center right 15px;
  border: 2px solid var(--accent-color-brown);
  transition: all .3s;
}

.btn:hover {
  color: var(--accent-color-brown);
  background-color: #fcf5e6;
  background-image: url(../img/link-arrow-brown.svg);
}

.btn.comingsoon {
  background-color: #bbb;
  border: none;
  pointer-events: none;
}

.btn + .btn {
  margin-top: 15px;
}

.image + .image {
  margin-top: 40px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 20px;
}

.list li {
  font-size: 1.6rem;
  padding-left: 1em;
  text-indent: -1em;
}

.cautions {
  margin-top: 40px;
  padding: 25px 0;
  border-top: 2px solid var(--accent-color-brown);
  border-bottom: 2px solid var(--accent-color-brown);
}

.cautions__title {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.cautions__lead {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer {
  display: grid;
  place-items: center;
  height: 60px;
  background-color: var(--accent-color-brown);
}

.footer__copyright {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
}

.to-top {
  margin-top: 80px;
}

#page-top {
  position: fixed;
  right: 30px;
  bottom: 10px;
  z-index: 999;
}

#page-top button {
  display: block;
  width: 40px;
  height: 40px;
  background: url(../img/page-top.svg) no-repeat center center / contain;
  border: none;
  transition: transform 0.3s;
  cursor: pointer;
  transition: transform .3s;
}

#page-top button:hover {
  transform: scale(1.1);
}

.mfp-image-holder .mfp-content {
  width: min(80%, 900px);
}

img.mfp-img {
  width: 100%;
  object-fit: contain;
}

.mfp-figure:after {
  display: none;
}

.link-text {
  color: var(--text-color);
  text-decoration-line: underline;
}


/* -------------------------------------
  modal
------------------------------------- */

#first-popup.modal {
  max-width: 600px;
}

#first-popup .modal__inner-body {
  position: relative;
}

#first-popup .modal__inner-body p {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}

#first-popup .checkbox {
  text-align: center;
  margin-top: 40px;
}

#first-popup .checkbox label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 1.4rem;
}

#first-popup #popupClose {
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-color);
  width: 120px;
  height: 40px;
  margin: 20px auto 0;
  border: none;
  text-align: center;
  cursor: pointer;
}

#first-popup .image {
  position: absolute;
  width: 17%;
  bottom: 3%;
  right: 0;
}

#character .modal__inner-body_content .body {
  display: flex;
  gap: 40px;
}

#character .modal__inner-body_content .char-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#character .modal__inner-body_content h3 {
  font-size: 2.4rem;
  color: #f08300;
}

#character .modal__inner-body_content h3 span {
  font-size: 0.75em;
}

#character .modal__inner-body_content .image {
  display: flex;
  align-items: center;
  height: 200px;
  margin-top: 30px;
}

#character .modal__inner-body_content .image img {
  width: auto;
  height: 100%;
}

#character .modal__inner-body_content .char-item:nth-of-type(1) .image img {
  height: 70%;
}

#character .modal__inner-body_content p {
  padding: 20px;
  background-color: #fff3d2;
  border-radius: 15px;
}


/* -------------------------------------
  top
------------------------------------- */

.side-container {
  position: fixed;
  top: 0;
  height: 100vh;
}

.left-column {
  left: 0;
  width: 42.5%;
  background: url(../img/left-bg.png) center / cover no-repeat;
}

.left-column .inner {
  padding: 0 5.8%;
}

.site-name {
  margin-top: 5%;
}

.site-name a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-name .logo {
  width: 40%;
}

.site-name .lead {
  flex: 1;
}

.swiper-container {
  position: relative;
  margin-top: 6%;
}

.swiper-bottom {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #fff;
  border: 1px solid #704640;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #704640 !important;
}

.swiper-pagination {
  position: static;
  width: fit-content !important;
}

.swiper-button-prev,
.swiper-button-next {
  position: static;
  height: 30px;
  width: 30px;
  margin: 0;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  width: 9px;
  height: 14px;
  margin: auto;
}

.swiper-button-prev::after {
  background-image: url(../img/prev-arrow.svg);
}

.swiper-button-next::after {
  background-image: url(../img/next-arrow.svg);
}

.swiper-slide a img {
  transition: transform .3s;
}

.swiper-slide a:hover img {
  transform: scale(1.05);
}

.floating-bnr {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: auto;
  width: min(70%, 300px);
  height: 60px;
}

.floating-bnr a {
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  outline: 1px solid #FFFFFF;
  outline-offset: -5px;
  width: 100%;
  height: 100%;
  transition: all .3s;
}

.petit-page .floating-bnr a  {
  background-color: var(--color-pink);
}

.petit-page .floating-bnr a:hover {
  color: var(--color-pink);
  outline-color: var(--color-pink);
  background-color: #ffebf3;
}

.petit-page .floating-bnr a span {
  padding-right: 30px;
  background: url(../img/sheet-icon.svg) no-repeat center right / 20px auto;
  transition: background-image .3s;
}

.petit-page .floating-bnr a:hover span {
  background-image: url(../img/sheet-icon-pink.svg);
}

.right-column {
  right: 0;
  width: 20%;
  padding-bottom: 6%;
  background: url(../img/right-bg.png) center / cover no-repeat;
  z-index: 999;
}

.right-column .inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.right-column .inner {
  padding: 0 9.5%;
}

.nav-menu {
  margin-top: auto;
}

.nav-menu h2 {
  font-size: min(1.5vw, 2.4rem);
  font-weight: 900;
  color: var(--accent-color-brown);
}

.nav-menu ul {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.nav-menu ul li {
  font-size: min(1vw, 1.6rem);
  font-weight: 700;
  color: var(--accent-color-brown);
  padding: 4px 0;
}

.nav-menu ul li a {
  color: var(--accent-color-brown);
  text-decoration: none;
}

.has-submenu > span {
  cursor: pointer;
}

.has-submenu > span::before {
  content: '＋ ';
}

.has-submenu > span.is-active::before {
  content: 'ー ';
}

.nav-menu .submenu {
  display: none;
  padding-left: 1em;
  margin-top: 10px;
}

.sns-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10%;
  margin-top: 13%;
  padding: 8%;
  border: 2px solid var(--accent-color-brown);
}

.sns-share p {
  flex-shrink: 0;
  font-size: min(0.875vw, 1.4rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--accent-color-brown);
}

.sns-share ul {
  display: flex;
  align-items: center;
  gap: 9%;
}

.sns-share ul li {
  width: 25%;
}

.sns-share ul li a {
  display: grid;
  place-items: center;
}

.drawer-btn {
  display: none;
}

.center-column {
  width: 37.5%;
  margin-left: 42.5%;
  border-left: 2px solid var(--accent-color-brown);
  border-right: 2px solid var(--accent-color-brown);
}

.top-sec .image {
  margin: 30px auto 0;
}

.top-sec .text {
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 30px;
}

.content-head {
  text-align: center;
  margin-top: 35px;
  padding: 10px 20px 20px;
}

.content-head h3 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent-color-brown);
}

.content-head .term {
  font-size: clamp(1.2rem, 1.1vw, 2rem);
  font-weight: 700;
  margin-top: 10px;
  background-color: #fff;
  border-radius: 20px;
}

.content-head .head-notes {
  font-size: clamp(1.2rem, 1.1vw, 2rem);
  text-align: left;
  line-height: 1.5;
  margin-top: 10px;
}

.dl-content {
  padding: 5px 20px;
  background-color: #fcf5e6;
}

.dl-content dl {
  display: flex;
  gap: 15px;
  padding: 15px 0;
}

.dl-content dl:nth-of-type(n+2) {
  border-top-width: 1px;
  border-top-style: solid;
}

.dl-content dt {
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  min-width: 80px;
  height: 30px;
  padding: 0 0.8em;
}

.dl-content dd {
  flex: 1;
  font-size: 1.6rem;
}

.dl-content dd span {
  font-size: 1.2rem;
  margin-top: 5px;
}

/* petit
------------------------------------- */

.petit {
  padding-top: 70px;
}

.petit .main-title,
.petit .main-title::before,
.petit .dl-content dt {
  background-color: var(--color-pink);
}

.petit .main-title::after {
  background-image: url(../img/petit-icon.svg);
  width: 40px;
  height: 37px;
  top: -32px;
}

.petit .image {
  width: min(100%, 320px);
}

.petit .content-head {
  background-color: #fcd2e2;
}

.petit .content-head .term {
  color: var(--color-pink);
}

.petit .dl-content {
  margin-bottom: 10px;
}

.petit .dl-content dl {
  border-top-color: var(--color-pink);
}

.petit .wrap {
  display: flex;
  gap: 20px;
}

.petit .wrap .notes-list {
  flex: 1;
}

.ticket {
  width: 20%;
}

.ticket p {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  color: var(--accent-color-brown);
}

.ticket p span {
  display: inline-block;
}

.ticket .image {
  margin: 0;
}

/* nagomeshi
------------------------------------- */

.nagomeshi {
  margin-top: 60px;
  padding-top: 50px;
}

.nagomeshi .main-title,
.nagomeshi .main-title::before,
.nagomeshi .dl-content dt {
  background-color: var(--color-orange);
}

.nagomeshi .main-title::after {
  background-image: url(../img/nagomeshi-icon.svg);
  width: 28px;
  height: 40px;
  top: -35px;
}

.nagomeshi .content-head {
  background-color: #ffcfae;
}

.nagomeshi .content-head .term {
  color: var(--color-orange);
}

.nagomeshi .dl-content dl {
  border-top-color: var(--color-orange);
}

/* campaign
------------------------------------- */

.campaign {
  margin-top: 60px;
  padding-top: 50px;
}

.campaign .main-title,
.campaign .main-title::before,
.campaign .dl-content dt {
  background-color: var(--color-blue);
}

.campaign .main-title::after {
  background-image: url(../img/campaign-icon.svg);
  width: 52px;
  height: 45px;
  top: -36px;
}

.campaign .content-head {
  background-color: #c3e9f4;
}

.campaign .content-head .term {
  color: var(--color-blue);
}

.campaign .dl-content dl {
  border-top-color: var(--color-blue);
}

/* ga
------------------------------------- */

.ga__content {
  padding: 30px 0;
  border-top: 1px solid var(--accent-color-brown);
  border-bottom: 1px solid var(--accent-color-brown);
}

.ga h2 {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}

.ga .btn {
  width: 250px;
  height: 40px;
  min-height: auto;
  font-size: 1.4rem;
  margin-top: 20px;
  padding: 0;
  background-size: 20px auto;
  background-position: center right 12px;
}

.modal {
  max-width: 1000px;
  background: #fff;
  margin: 0 auto;
  position: relative;
}

.modal__inner {
  position: relative;
}

.modal .popup-modal-dismiss {
  position: absolute;
  top: 0;
  right: 0;
  text-indent: -9999px;
}

.modal__inner-body {
  padding: 30px;
}

.modal__inner-body h3 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.modal__inner-body p {
  font-size: 1.6rem;
  margin-top: 30px;
}

/* links
------------------------------------- */

.links__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 4%;
}

.links__item {
  width: 48%;
}

/* contact
------------------------------------- */

.contact {
  padding: 50px 0;
  background-color: #f9e7b7;
}

.contact__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact__content p:nth-of-type(1) {
  font-size: 2rem;
  font-weight: 700;
}

.contact__content p:nth-of-type(2) {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-top: 20px;
}

.contact__content p:nth-of-type(2) span {
  display: block;
  font-size: 0.9em;
  line-height: 1.5;
  padding-left: 1em;
  text-indent: -1em;
  margin-top: 10px;
}

.contact__content p:nth-of-type(3) {
  font-size: 1.6rem;
  margin-top: 30px;
}

.contact__content a {
  text-decoration: none;
  color: var(--text-color);
}


/* -------------------------------------
  sub-page
------------------------------------- */

.anchor-menu {
  padding: 35px 0 40px;
}

.anchor-menu h2 {
  font-size: 2.4rem;
  font-weight: 900;
  text-align: center;
}

.anchor-menu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 2.3%;
  margin-top: 20px;
}

.anchor-menu ul li {
  width: 31.8%;
  aspect-ratio: 165 / 80;
}

.anchor-menu ul li a {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-size: clamp(1.4rem, 1.125vw, 1.8rem);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  overflow: hidden;
  transition: color .3s;
  z-index: 1;
}

.anchor-menu ul li a:hover {
  color: #fff !important;
}

.anchor-menu ul li a::before {
  position: absolute;
  content: '';
  bottom: 0;
  right: 0;
  width: 12.5%;
  aspect-ratio: 1;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  transform-origin: right bottom;
  transition: all .3s;
  z-index: -1;
}

.anchor-menu ul li a:hover::before {
  transform: scale(12);
}



/* petit page
------------------------------------- */

.petit-page .anchor-menu {
  background-color: #ffebf3;
}

.petit-page .anchor-menu h2 {
  color: var(--color-pink);
}

.petit-page .anchor-menu ul li a {
  color: var(--color-pink);
  border: 2px solid var(--color-pink);
}

.petit-page .anchor-menu ul li a::before {
  background-color: var(--color-pink);
}

.about-toku {
  margin-bottom: 40px;
  padding: 20px;
  border: 3px solid var(--color-pink);
  background-color: #ffebf3;
  border-radius: 15px;
}

.about-toku h3 {
  display: flex;
  align-items: center;
  font-size: 2rem;
}

.about-toku h3 img {
  width: 40px;
  margin-right: 5px;
}

.about-toku p {
  margin-top: 10px;
  font-size: 1.4rem;
}

.store-info__items + .store-info__items {
  margin-top: 20px;
}

.store-info__items .head {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 100px;
  padding: 1% 4% 2%;
}

.store-info__items .head .num {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: clamp(1.6rem, 2vw, 3.2rem);
  font-weight: 700;
  width: clamp(30px, 11.5%, 60px);
  height: 100%;
  aspect-ratio: 1;
  background-color: #fff;
  border-radius: 50%;
}

.store-info__items .head h3 {
  flex: 1;
  font-size: 2.4rem;
  line-height: 1.5;
  color: #fff;
  word-break: break-word;
  overflow-wrap: break-word;
}

.store-info__items .head h3 span {
  display: inline-block;
  font-size: 0.75em;
  font-weight: 500;
  margin-bottom: 8px;
}

.store-info__items .body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background-color: #fcf5e6;
}

.store-info__items h4 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  padding-left: 14px;
  border-left-width: 4px;
  border-left-style: solid;
}

.store-info__items .text {
  font-size: 1.6rem;
}

.store-info__items .wrap {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.store-info__items .popup-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 4%;
  width: 50%;
}

.store-info__items .popup-gallery a:nth-of-type(1) {
  width: 100%;
}

.store-info__items .popup-gallery a:nth-of-type(2),
.store-info__items .popup-gallery a:nth-of-type(3) {
  width: 48%;
}

.store-info__items .wrap .text {
  flex: 1;
}

.store-info__items dl.toku {
  display: flex;
  align-items: center;
  gap: 8px;
}

.store-info__items dl dt {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  width: fit-content;
  padding: 4px 10px;
}

.store-info__items dl.toku dt {
  width: 40px;
  background-color: transparent !important;
  padding: 0;
}

.store-info__items dl dd {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: 5px;
}

.store-info__items dl.toku dd {
  flex: 1;
  margin: 0;
}

.store-info__items .other {
  padding-top: 15px;
}

.store-info__items .info {
  font-size: 1.4rem;
  padding-top: 15px;
}

.store-info__items .info a {
  color: var(--text-color);
  text-decoration: underline;
  word-break: break-all;
}

.store-info__items.blue .head,
.store-info__items.blue dl dt {
  background-color: var(--color-thin-blue);
}

.store-info__items.pink .head,
.store-info__items.pink dl dt {
  background-color: var(--color-pink);
}

.store-info__items.blue .head .num,
.store-info__items.blue h4 {
  color: var(--color-thin-blue);
}

.store-info__items.pink .head .num,
.store-info__items.pink h4 {
  color: var(--color-pink);
}

.store-info__items.blue h4 {
  border-left-color: var(--color-thin-blue);
}

.store-info__items.pink h4 {
  border-left-color: var(--color-pink);
}

.store-info__items.blue .other,
.store-info__items.blue .info {
  border-top: 1px solid var(--color-thin-blue);
}

.store-info__items.pink .other,
.store-info__items.pink .info {
  border-top: 1px solid var(--color-pink);
}

.store-info .more-btn {
  margin-bottom: 40px;
}

.course__text {
  font-size: 1.4rem;
  margin-top: 10px;
}

.course__menu {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.course__menu .item {
  width: 48%;
  overflow: hidden;
}

.course__menu .item img {
  aspect-ratio: 25 / 18;
  object-fit: cover;
  transition: transform .3s;
}

.course__menu .item a:hover img {
  transform: scale(1.05);
}

.course__menu .item p {
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: var(--accent-color-brown);
  height: 40px;
}

.course__content {
  margin-top: 40px;
}

.course__content + .course__content {
  /* margin-top: 80px; */
  margin-top: 50px;
}

.course__content h3 {
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  height: 60px;
}

.course__content .flow {
  display: flex;
  flex-direction: column;
  gap: 45px;
  margin-top: 20px;
}

.course__content .flow-item {
  position: relative;
  padding: 15px 20px;
  border-width: 2px;
  border-style: solid;
}

.course__content .flow-item:nth-of-type(n+2)::before {
  position: absolute;
  content: '';
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 30px;
}

.course__content.blue .flow-item:nth-of-type(n+2)::before {
  border-left: 6px dotted var(--color-thin-blue);
}

.course__content.pink .flow-item:nth-of-type(n+2)::before {
  border-left: 6px dotted var(--color-pink);
}

.course__content .flow-item.flow-item.border-bold:nth-of-type(n+2)::before {
  top: -43px;
}

.course__content .flow-item > *:first-child {
  margin-top: 0;
}

.course__content .flow-item.border-bold {
  border-width: 6px;
}

.course__content .flow-item h4 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}

.course__content .flow-item .tag {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  margin-top: 8px;
  padding: 4px 10px;
  width: fit-content;
}

.course__content .flow-item .wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.course__content .flow-item .wrap::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 90%;
  background-color: var(--text-color);
}

.course__content .flow-item .wrap > * {
  width: 45%;
  margin-top: 0;
}

.course__content .flow-item p {
  font-size: 1.6rem;
  margin-top: 15px;
}

.course__content .flow-item .image {
  margin-top: 20px;
}

.course__menu .item:nth-of-type(1) p {
  background-color: #b9ecef;
}

.course__menu .item:nth-of-type(2) p {
  background-color: #fcd2e2;
}

.course__content.blue h3,
.course__content.blue .flow-item .tag {
  background-color: var(--color-thin-blue);
}

.course__content.pink h3,
.course__content.pink .flow-item .tag {
  background-color: var(--color-pink);
}

.course__content.blue .flow-item {
  border-color: var(--color-thin-blue);
}

.course__content.pink .flow-item {
  border-color: var(--color-pink);
}

.course__content.blue .flow-item h4 {
  color: var(--color-thin-blue);
}

.course__content.pink .flow-item h4 {
  color: var(--color-pink);
}

.course .map {
  margin-top: 20px;
}

.map-image {
  margin-top: 10px;
}

.stamp-rally {
  padding: 70px 0 80px;
  background-color: #fcf5e6;
}

.stamp-rally .step {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.stamp-rally .step dt {
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  width: 90px;
  min-height: 70px;
  margin-top: 10px;
  background-color: var(--color-pink);
}

.stamp-rally .step dd {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 500;
  width: calc(100% - 90px);
  margin-top: 10px;
  padding: 5px 15px;
  background-color: #fff;
}

.stamp-rally .step .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.stamp-rally .step .wrap p {
  flex: 1;
}

.stamp-rally .step .wrap .image {
  width: 30px;
}

.others {
  padding: 70px 0 80px;
  background-color: #ffebf3;
}

.map {
  margin-top: 40px;
}

.map iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
}

.prize + .prize {
  margin-top: 30px;
}

.prize__text {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.prize__text span {
  font-size: 1.25em;
  font-weight: 700;
}



/* -------------------------------------
  responsive
------------------------------------- */

@media (width < 1280px) {
  .store-info__items .wrap {
    flex-direction: column;
  }

  .store-info__items .popup-gallery {
    width: 100%;
  }
}


@media (width < 1026px) {
  #page-top {
    right: 15px;
    bottom: 15px;
    z-index: 998;
  }

  .drawer-btn {
    position: fixed;
    top: 15px;
    right: 15px;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: 2px solid var(--accent-color-brown);
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
  }

  .drawer-btn span {
    display: block;
    width: 50%;
    height: 2px;
    margin: 4px auto;
    background-color: var(--accent-color-brown);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .drawer-btn.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .drawer-btn.is-active span:nth-child(2) {
    opacity: 0;
  }

  .drawer-btn.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .drawer-overlay {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    z-index: 99;
  }
  
  .drawer-overlay.is-active {
    opacity: 1;
    visibility: visible;
  }

  .left-column {
    width: 50%;
  }

  .right-column {
    width: 300px;
    padding-bottom: 0;
    background-color: #fcf5e6;
    background-image: none;
    transform: translateX(100%);
    transition: transform .3s;
  }
  
  .right-column.is-open {
    transform: translateX(0);
  }

  .right-column .inner {
    overflow: auto;
    padding-bottom: 60px;
  }

  .nav-menu {
    margin-top: 40px;
  }

  .nav-menu h2 {
    font-size: 2rem;
  }

  .nav-menu ul li {
    font-size: 1.6rem;
  }

  .center-column {
    width: 50%;
    margin-left: auto;
  }

  .sns-share p {
    font-size: 1.2rem;
  }
}


@media (width < 768px) {
  html {
    font-size: 54.6875%;
  }

  .is-pc {
    display: none;
  }

  .is-sp {
    display: block;
  }

  .sub-sec {
    margin-top: 60px;
  }

  .sub-sec__content {
    margin-top: 40px;
  }

  .main-title::before {
    width: 130px;
    height: 130px;
  }

  .to-top {
    margin-top: 60px;
  }

  .mfp-container {
    padding-inline: 4.5vw;
  }

  #character .modal__inner-body_content .body {
    flex-direction: column;
  }

  #character .modal__inner-body_content .image {
    width: 30%;
    height: auto;
  }

  #character .modal__inner-body_content .image img {
    width: 100%;
    height: auto !important;
  }

  #character .modal__inner-body_content .body {
    height: 70dvh;
    overflow: scroll;
  }

  .site-name {
    width: 100%;
    margin: auto;
  }

  body:not(.top-page) .site-name {
    margin: 0 auto;
    padding: 60px 0 110px;
  }

  body.top-page .left-column {
    padding: 45px 0 85px;
  }

  .left-column {
    position: static;
    width: 100%;
    height: auto;
    background-image: url(../img/left-bg-sp.png);
  }

  .floating-bnr {
    position: fixed;
    bottom: 15px;
    left: 15px;
    transform: translateX(0);
    height: 40px;
    width: 200px;
    z-index: 999;
  }

  .floating-bnr a {
    font-size: 1.4rem;
  }

  .petit-page .floating-bnr a span {
    padding-right: 18px;
    background-size: 12px auto;
  }

  body:not(.top-page) .left-column .swiper-container {
    display: none;
  }

  .swiper-bottom {
    bottom: -40px;
  }

  .center-column {
    width: 100%;
    margin: 0;
    border: none;
  }

  body:not(.top-page) .petit {
    position: relative;
    margin-top: -100px;
    z-index: 1;
  }

  .content-head .term {
    font-size: 1.4rem;
  }

  .dl-content dt {
    min-width: 60px;
  }

  .store-info__items .head {
    gap: 15px;
    min-height: auto;
  }

  .store-info__items .head .num {
    width: 30px;
  }

  .course__content + .course__content {
    /* margin-top: 60px; */
    margin-top: 40px;
  }

  .course__content .flow {
    gap: 30px;
  }

  .course__content .flow-item:nth-of-type(n+2)::before {
    top: -27px;
    height: 18px;
  }

  .course__content .flow-item.flow-item.border-bold:nth-of-type(n+2)::before {
    top: -30px;
  }

  .stamp-rally,
  .others {
    padding: 50px 0 60px;
  }
}