*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  background: transparent;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #000000;
  background-color: #FFFDE6;
}

html,
body {
  overflow-x: hidden;
}

body.drawer-open .header__logo {
  opacity: 0;
  visibility: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  width: 100%;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 26px 22px 16px;
}
@media (min-width: 1920px) {
  .header__inner {
    padding-right: 56px;
  }
}

.header__logo {
  position: relative;
  display: block;
  width: 64px;
  z-index: 10;
  transition: opacity 0.8s ease;
}
@media (min-width: 1920px) {
  .header__logo {
    width: 132px;
  }
}

.header__logo img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  z-index: 10;
}

@media (max-width: 767px) {
  body.drawer-open .header__logo {
    opacity: 0;
    pointer-events: none;
  }
}
.header__hamburger {
  position: relative;
  width: 40px;
  height: 50px;
  padding: 0;
  border: none;
  background: transparent;
  z-index: 1000;
}
@media (min-width: 1920px) {
  .header__hamburger {
    width: 59px;
  }
}

.header__menu-icon {
  position: absolute;
  top: 10px;
  left: 0;
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.25s ease;
}

.header__menu-icon:first-child {
  opacity: 1;
}

.header__menu-icon--close {
  opacity: 0;
}

.header__hamburger.is-open .header__menu-icon:first-child {
  opacity: 0;
}

.header__hamburger.is-open .header__menu-icon--close {
  opacity: 1;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: 100%;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.5s ease;
  background: #FCC800;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 768px) {
  .drawer {
    width: 375px;
    border-left: 4px solid #000000;
  }
}
@media (min-width: 1200px) {
  .drawer {
    width: 600px;
  }
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer__inner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  padding: 78px 20px;
  background: #FCC800;
}

.drawer__list {
  text-align: center;
}

.drawer__list li + li {
  margin-top: 28px;
}

.drawer__list a {
  font-family: "Coiny", cursive;
  font-size: 25px;
  color: #FFFFFF;
}

.drawer__list span {
  display: block;
  margin-top: -4px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
}

.drawer__btn {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 33px;
}

.drawer__btn-img {
  display: block;
}

.drawer__btn-img img {
  width: 75px;
}

.drawer_btn-img--hold img {
  width: 87px;
}

.drawer__info {
  margin: 40px auto;
  width: 276px;
}

.drawer__info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer__row {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: start;
}

.drawer__row dt {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
}

.drawer__row dd {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  transform: translateX(-30px);
}

.drawer__contact {
  margin-top: -10px;
}

.drawer__contact h2 {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
}

.drawer__contact p {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.drawer__contact a {
  color: inherit;
  text-decoration: underline;
}

.drawer__instagram {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.drawer__instagram img {
  width: 19px;
  height: 19px;
}

.footer {
  position: relative;
  background-color: #FFFDE6;
  padding-bottom: 120px;
  margin-top: -38px;
  z-index: 2;
}

.footer__inner {
  margin: 0 auto;
}

.footer__head {
  position: relative;
}

.footer__head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: #000000;
}

.footer__character {
  position: absolute;
  display: block;
  width: 113px;
  left: 10%;
  top: -80px;
}
@media (min-width: 768px) {
  .footer__character {
    width: 165px;
    top: -114px;
  }
}

.footer__main {
  display: block;
}
@media (min-width: 768px) {
  .footer__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 31px;
    align-items: start;
    width: 560px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
}
@media (min-width: 1024px) {
  .footer__main {
    grid-template-columns: repeat(2, 1fr);
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 80px;
  }
}
@media (min-width: 1920px) {
  .footer__main {
    width: 1150px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 80px;
  }
}

.footer__map {
  padding-top: 40px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .footer__map {
    margin-top: 0;
  }
}

.footer__map iframe {
  display: block;
  width: 100%;
  height: 212px;
}
@media (min-width: 768px) {
  .footer__map iframe {
    width: 296px;
    height: 306px;
  }
}
@media (min-width: 1024px) {
  .footer__map iframe {
    width: 541px;
    height: 306px;
  }
}

.footer__content {
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1920px) {
  .footer__content {
    width: 545px;
  }
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
  width: 276px;
  text-align: center;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .footer__info {
    width: 500px;
    gap: 18px;
  }
}
@media (min-width: 1920px) {
  .footer__info {
    font-size: 20px;
    margin-left: 0;
  }
}

.footer__row {
  display: grid;
  grid-template-columns: 64px 1fr;
  text-align: left;
}
@media (min-width: 1920px) {
  .footer__row {
    grid-template-columns: 80px 1fr;
  }
}

.footer__row dt {
  color: #FCC800;
  font-weight: 700;
}

.footer__row dd {
  font-weight: 700;
  transform: translateX(-25px);
}
@media (min-width: 768px) {
  .footer__row dd {
    transform: translateX(-9px);
  }
}

.footer__map-link {
  display: inline-block;
  color: inherit;
  text-decoration: underline;
  line-height: 1.8;
}

.footer__contact {
  width: 280px;
  text-align: left;
  margin: 10px auto;
}
@media (min-width: 1024px) {
  .footer__contact {
    width: 500px;
    position: relative;
    margin-top: 18px;
  }
}
@media (min-width: 1920px) {
  .footer__contact {
    width: 600px;
  }
}

.footer__contact h2 {
  color: #FCC800;
  font-weight: 700;
  font-size: 16px;
}

.footer__contact-text {
  line-height: 2;
  font-weight: 700;
  margin-top: 4px;
}
@media (min-width: 768px) {
  .footer__contact-text {
    font-size: 14px;
  }
}
@media (min-width: 1920px) {
  .footer__contact-text {
    font-size: 19px;
  }
}

.footer__contact span {
  text-decoration: underline;
}

.footer__instagram {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.footer__instagram span {
  text-decoration: underline;
}

.footer__instagram img {
  width: 19px;
}

.footer__shop-image {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .footer__shop-image {
    justify-content: end;
  }
}
@media (min-width: 1024px) {
  .footer__shop-image {
    position: absolute;
    top: 130px;
    margin-left: 240px;
  }
}
@media (min-width: 1920px) {
  .footer__shop-image {
    margin-left: 275px;
  }
}

.footer__shop-image img {
  width: 215px;
  height: auto;
}
@media (min-width: 768px) {
  .footer__shop-image img {
    width: 180px;
  }
}
@media (min-width: 1024px) {
  .footer__shop-image img {
    width: 140px;
  }
}
@media (min-width: 1920px) {
  .footer__shop-image img {
    width: 180px;
  }
}

.footer__btns {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 19px;
}
@media (min-width: 768px) {
  .footer__btns {
    margin-top: 45px;
  }
}
@media (min-width: 1024px) {
  .footer__btns {
    flex-direction: row;
    width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
  }
}
@media (min-width: 1920px) {
  .footer__btns {
    width: 1100px;
  }
}

.footer__btn {
  text-align: center;
  margin: 0 auto;
}

.footer__btn-text {
  margin-bottom: 2px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  color: #907332;
}
@media (min-width: 1920px) {
  .footer__btn-text {
    font-size: 20px;
  }
}

.footer__btn-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 290px;
  height: 65px;
  background-color: #FCC800;
  border-radius: 18px;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  transition: opacity 0.3s;
}
@media (min-width: 768px) {
  .footer__btn-link {
    width: 343px;
  }
}
@media (min-width: 1920px) {
  .footer__btn-link {
    font-size: 24px;
    width: 484px;
    height: 94px;
  }
}

.footer__btn img {
  width: 24px;
}

.footer__privacy {
  display: block;
  text-align: center;
  margin-top: 50px;
  font-size: 12px;
  text-decoration: underline;
}
@media (min-width: 1024px) {
  .footer__privacy {
    font-size: 14px;
  }
}

.footer__copyright {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .footer__copyright {
    font-size: 16px;
  }
}

.fixed-nav {
  position: fixed;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 80px;
  padding: 0 16px 8px;
  padding-left: 150px;
  background: url("../img/fixed_nav_bg.png") no-repeat center top;
  background-size: cover;
  z-index: 100;
  border: none !important;
  border-top: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}
@media (min-width: 768px) {
  .fixed-nav {
    top: 0;
    right: 0;
    left: auto;
    bottom: auto;
    width: 90px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    padding: 90px 0 0;
    background: none;
  }
}
@media (min-width: 1920px) {
  .fixed-nav {
    width: 150px;
    gap: 20px;
    padding-top: 120px;
  }
}

.fixed-nav__item img {
  display: block;
  width: auto;
  height: 68px;
  transition: transform 0.2s ease;
}
@media (min-width: 1920px) {
  .fixed-nav__item img {
    height: 110px;
  }
}
@media (min-width: 768px) and (hover: hover) {
  .fixed-nav__item img:hover {
    transform: rotate(8deg);
  }
}

@media (min-width: 768px) {
  .fixed-nav__item--online {
    align-self: flex-end;
  }
}

@media (min-width: 768px) {
  .fixed-nav__item--online img {
    height: 94px;
  }
}
@media (min-width: 1920px) {
  .fixed-nav__item--online img {
    height: 154px;
  }
}

.fixed-top {
  position: fixed;
  left: calc((100vw - 375px) / 2 + 30px);
  bottom: -15px;
  z-index: 101;
  display: block;
}
@media (min-width: 768px) {
  .fixed-top {
    display: block;
    position: fixed;
    left: auto;
    right: 24px;
    bottom: 24px;
    z-index: 101;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
  }
}
@media (min-width: 768px) and (hover: hover) {
  .fixed-top:hover {
    animation: topBounce 0.5s ease;
  }
}

.fixed-top img {
  display: block;
  height: 92px;
  width: auto;
}

.fixed-top.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@keyframes topBounce {
  0% {
    transform: translateY(0) scale(1);
  }
  35% {
    transform: translateY(-8px) scale(1.08);
  }
  65% {
    transform: translateY(2px) scale(0.98);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
.news-page {
  position: relative;
  background-color: #FFFDE6;
  padding: 100px 20px 160px;
  overflow: visible;
}

.news-page__inner {
  position: relative;
  max-width: 990px;
  margin: 0 auto;
  overflow: visible;
}
@media (min-width: 768px) {
  .news-page__inner {
    width: 610px;
  }
}
@media (min-width: 1024px) {
  .news-page__inner {
    max-width: 990px;
    width: 100%;
  }
}

.news-page__title {
  text-align: center;
  font-family: "Coiny", cursive;
  font-size: 45px;
  color: #FCC800;
}

.news-page__sub {
  margin-top: -8px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #907332;
  opacity: 1;
  text-align: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 40px 0 32px;
  font-size: 14px;
  font-weight: 700;
  color: #000;
}

.breadcrumb a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.breadcrumb span {
  display: inline-block;
}

.news-category {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}

.news-category a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 14px;
  border-radius: 999px;
  background: #907332;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}

.news-category a.is-active {
  background: #FCAE00;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin: 64px 0 0;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  color: #000;
  font-family: "Coiny", cursive;
  font-size: 24px;
  font-weight: 500;
  text-decoration: none;
  padding-top: 3px;
}

.pagination .page-numbers.current {
  background: #ffc400;
  border-radius: 50%;
  display: flex;
  padding-top: 3px;
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding-bottom: 3px;
}

.news-back {
  margin: 56px 0 120px;
  display: flex;
  justify-content: center;
}

.news-back__button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: #000;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: opacity 0.3s;
}

.news-back__button:hover {
  opacity: 0.8;
}

.news-back__icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.news-back__icon img {
  display: block;
  width: 18px;
  height: auto;
}

.single-news {
  padding: 64px 16px 40px;
  background: #fffde6;
}
@media (min-width: 768px) {
  .single-news {
    padding-left: 80px;
    padding-right: 80px;
  }
}

.single-news__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.breadcrumb {
  display: block;
  font-weight: 700;
  margin-bottom: 55px;
  line-height: 1.8;
}

.breadcrumb a,
.breadcrumb .separator,
.breadcrumb .current {
  display: inline;
  vertical-align: baseline;
}

.breadcrumb a {
  color: #000;
  text-decoration: underline;
  white-space: nowrap;
}

.breadcrumb .separator {
  margin: 0 4px 0 10px;
  white-space: nowrap;
}

.breadcrumb .current {
  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere;
}

.single-news__title {
  color: #907332;
  font-size: 26px;
  line-height: 1.5;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .single-news__title {
    margin-left: 40px;
    margin-right: 40px;
    font-size: 50px;
  }
}

.single-news__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 38px;
}
@media (min-width: 1024px) {
  .single-news__meta {
    margin-left: 40px;
    margin-right: 40px;
  }
}

.single-news__meta time {
  color: #ffa800;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.single-news__thumbnail {
  margin-bottom: 60px;
  border: 3px solid #000;
  border-radius: 20px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .single-news__thumbnail {
    margin-left: 40px;
    margin-right: 40px;
  }
}

.single-news__thumbnail img {
  display: block;
  width: 100%;
  height: auto;
}

.single-news__content h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  margin: 64px 0 0px;
  color: #907332;
}
@media (min-width: 1024px) {
  .single-news__content h2 {
    font-size: 26px;
  }
}

.single-news__content {
  font-size: 16px;
  line-height: 1.8;
  color: #000;
  font-family: "Zen Maru Gothic", sans-serif;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .single-news__content {
    margin-left: 70px;
    margin-right: 70px;
    font-size: 18px;
  }
}

.single-news__content p {
  margin: 0 0 26px;
}

.single-news__content p:last-child {
  margin-bottom: 0;
}

.single-news__content a {
  color: #907332;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.single-news__content a:hover {
  opacity: 0.7;
}

.single-news__share-title {
  position: relative;
  width: 103px;
  margin: 0 auto 15px;
}

.single-news__share-title img {
  display: block;
  width: 100%;
}

.single-news__share-title span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-family: "Coiny", cursive;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.single-news__share {
  margin-top: 120px;
  text-align: center;
}

.single-news__sns {
  display: flex;
  justify-content: center;
  gap: 11px;
}

.single-news__sns a img {
  width: 41px;
  display: block;
}

.single-news__share-text {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .pc__none {
    display: none;
  }
}

.pc__only {
  display: none;
}
@media (min-width: 1024px) {
  .pc__only {
    display: block;
  }
}

.fv {
  position: relative;
  height: 100svh;
  overflow: hidden;
}
@media (min-width: 768px) {
  .fv {
    width: calc(100vw - 90px);
    height: 100svh;
    overflow: visible;
  }
}
@media (min-width: 1920px) {
  .fv {
    width: calc(100vw - 180px);
  }
}

.fv__slider,
.fv__slider .swiper-wrapper,
.fv__slider .swiper-slide {
  height: 100%;
}

.fv__slider picture,
.fv__slider img {
  display: block;
  width: 100%;
  height: 100%;
}

.fv__slider img {
  -o-object-fit: cover;
     object-fit: cover;
}

.fv__content {
  position: absolute;
  top: 48.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 20;
}
@media (min-width: 768px) {
  .fv__content {
    top: 44.5%;
  }
}

.fv__catch {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #FFFFFF;
  font-size: 19px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: 0;
  text-align: center;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5019607843);
}
@media (min-width: 768px) {
  .fv__catch {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .fv__catch {
    font-size: 28px;
  }
}
@media (min-width: 1920px) {
  .fv__catch {
    font-size: 40px;
  }
}

.fv__logo {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .fv__logo {
    margin-top: 18px;
  }
}
@media (min-width: 1920px) {
  .fv__logo {
    margin-top: 30px;
  }
}

.fv__logo img {
  display: block;
  width: 285px;
  height: auto;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .fv__logo img {
    width: 346px;
  }
}
@media (min-width: 1024px) {
  .fv__logo img {
    width: 430px;
  }
}
@media (min-width: 1920px) {
  .fv__logo img {
    width: 566px;
  }
}

.fv-slider__pagination.fv-pagination {
  position: absolute;
  bottom: clamp(60px, 11vw, 150px) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 11;
  display: flex;
  justify-content: center;
}
@media (min-width: 1920px) {
  .fv-slider__pagination.fv-pagination {
    bottom: 190px !important;
  }
}

.fv-slider__pagination .swiper-pagination-bullet {
  width: 9px !important;
  height: 9px !important;
  background: #FFFFFF !important;
  border: 2px solid #000000 !important;
  opacity: 1 !important;
  margin: 0 2px !important;
}

.fv-slider__pagination .swiper-pagination-bullet-active {
  background: #000000 !important;
}

.fv__wave {
  position: absolute;
  left: 0;
  bottom: -3px;
  z-index: 10;
  width: 100%;
  pointer-events: none;
}

.fv__wave img {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .fv__wave img {
    width: calc(100% + 2px);
    max-width: none;
  }
}

.news {
  position: relative;
  background-color: #FFFDE6;
  padding: 10px 20px 160px;
  overflow: visible;
}
@media (min-width: 768px) {
  .news {
    margin-top: 50px;
    padding-bottom: 150px;
  }
}

.news__inner {
  position: relative;
  max-width: 990px;
  margin: 0 auto;
  overflow: visible;
}
@media (min-width: 768px) {
  .news__inner {
    width: 610px;
  }
}
@media (min-width: 1024px) {
  .news__inner {
    max-width: 990px;
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .news__contents {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 70px;
  }
}

@media (min-width: 1024px) {
  .news__left {
    width: 620px;
  }
}

@media (min-width: 1024px) {
  .news__right {
    width: 310px;
    flex-shrink: 0;
  }
}

.news__character {
  position: relative;
  width: 162px;
  margin: 0 auto 40px;
}
@media (min-width: 768px) {
  .news__character {
    position: absolute;
    top: -180px;
    left: 35px;
    width: 140px;
    z-index: 14;
  }
}
@media (min-width: 1024px) {
  .news__character {
    top: -252px;
    left: 116px;
    width: 200px;
  }
}
@media (min-width: 1920px) {
  .news__character {
    width: 260px;
    top: -341px;
    left: -36px;
  }
}

.news__character-main {
  display: block;
  width: 100%;
  height: auto;
}

.news__bubble {
  position: absolute;
  height: auto;
}

.news__bubble--mog {
  left: -63px;
  top: 94px;
  width: 58px;
  opacity: 0;
  transform: translateY(15px) scale(0.8);
}
.news__bubble--mog.is-show {
  animation: bubblePop 0.6s ease-out 0.5s forwards;
}
@media (min-width: 1024px) {
  .news__bubble--mog {
    width: 62px;
    left: -69px;
    top: 109px;
  }
}
@media (min-width: 1920px) {
  .news__bubble--mog {
    width: 93px;
    left: -103px;
    top: 165px;
  }
}

.news__bubble--hug {
  right: -68px;
  top: 44px;
  width: 62px;
  opacity: 0;
  transform: translateY(15px) scale(0.8);
}
.news__bubble--hug.is-show {
  animation: bubblePop 0.6s ease-out 1s forwards;
}
@media (min-width: 1024px) {
  .news__bubble--hug {
    width: 68px;
    right: -75px;
    top: 65px;
  }
}
@media (min-width: 1920px) {
  .news__bubble--hug {
    width: 100px;
    right: -106px;
    top: 75px;
  }
}

@keyframes bubblePop {
  0% {
    opacity: 0;
    transform: translateY(15px) scale(0.8);
  }
  60% {
    opacity: 1;
    transform: translateY(-6px) scale(1.08);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.news__title {
  text-align: center;
  font-family: "Coiny", cursive;
  font-size: 45px;
  color: #FCC800;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .news__title {
    font-size: 60px;
  }
}
@media (min-width: 1920px) {
  .news__title {
    font-size: 80px;
  }
}

.news__sub {
  margin-top: -8px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #907332;
  opacity: 1;
  text-align: center;
}
@media (min-width: 1024px) {
  .news__sub {
    font-size: 22px;
    margin-top: -16px;
  }
}
@media (min-width: 1920px) {
  .news__sub {
    font-size: 26px;
  }
}

.news-list {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .news-list {
    margin-top: 30px;
  }
}

.news-list__item {
  position: relative;
  border-top: 1px solid #707070;
}
.news-list__item:last-child {
  border-bottom: 1px solid #707070;
}

.news-list__link {
  display: block;
  position: relative;
  padding: 18px 0;
}

.news-list__meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-list__date {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  color: #fcae00;
  font-weight: 700;
}

.news-list__pickup,
.news-list__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 24px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  opacity: 1;
}

.news-list__pickup {
  background-color: #fcae00;
  color: #FFFFFF;
  font-family: "Coiny", cursive;
  padding-top: 9px;
  gap: 6px;
}

.news-list__pickup img {
  width: 15px;
  height: auto;
}

.news-list__category {
  background-color: #907332;
  color: #FFFFFF;
  padding-top: 4px;
}

.news-list__body {
  position: relative;
  padding-right: 70px;
}

.news-list__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #907332;
  line-height: 1.6;
}

.news-list__new {
  display: inline-block;
  margin-left: 8px;
  font-family: "Coiny", cursive;
  font-size: 18px;
  color: #fcae00;
  white-space: nowrap;
}

.news-list__arrow {
  position: absolute;
  top: 13%;
  right: 0;
  transform: translateY(-50%);
  width: 42px;
  height: auto;
}

.news__bottom {
  margin-top: 30px;
}

.news__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 4px 13px;
  border-radius: 5px;
  background-color: #000000;
  color: #FFFFFF;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-top: 26px;
  transition: background-color 0.5s ease;
}
.news__btn:hover {
  background-color: #FCC800;
  color: #000000;
}
@media (min-width: 768px) {
  .news__btn {
    margin-top: 30px;
  }
}
@media (min-width: 1024px) {
  .news__btn {
    margin-top: 30px;
  }
}

.news__btn img {
  width: 18px;
}

.news-instagram__visual-wrap {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 130px auto 0;
}
@media (min-width: 1024px) {
  .news-instagram__visual-wrap {
    margin: 0 auto;
  }
}

.news-instagram__visual {
  display: block;
  width: 271px;
  height: auto;
}

.news-instagram__check {
  position: absolute;
  top: -60px;
  left: 21px;
  z-index: 10;
}

.news-instagram__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 17px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: #000000;
}

.news-instagram__icon {
  width: 26px;
}

.news-instagram__arrow {
  width: 36px;
}

.news__deco-m {
  position: absolute;
  right: 0px;
  bottom: -17px;
  z-index: 1;
  width: 130px;
  height: auto;
  pointer-events: none;
}
@media (min-width: 768px) {
  .news__deco-m {
    width: 153px;
  }
}
@media (min-width: 1024px) {
  .news__deco-m {
    width: 200px;
    right: 66px;
  }
}
@media (min-width: 1920px) {
  .news__deco-m {
    width: 259px;
  }
}

.concept {
  position: relative;
  background-color: #FCC800;
  padding: 92px 20px 150px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .concept {
    padding-top: 112px;
    padding-bottom: 200px;
  }
}
@media (min-width: 1024px) {
  .concept {
    padding-bottom: 120px;
    padding-top: 50px;
  }
}

.concept__inner {
  position: relative;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .concept__inner {
    display: flex;
    flex-direction: row-reverse;
    width: 900px;
  }
}
@media (min-width: 1920px) {
  .concept__inner {
    width: 1100px;
  }
}

.concept__visual {
  position: relative;
}
@media (min-width: 768px) {
  .concept__visual {
    width: 366px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .concept__visual {
    width: 400px;
    margin-top: 46px;
  }
}
@media (min-width: 1920px) {
  .concept__visual {
    width: 493px;
  }
}

.concept__image {
  position: relative;
  width: 100%;
  z-index: 2;
}

.concept__logo {
  position: absolute;
  top: -27px;
  right: -19px;
  width: 145px;
  z-index: 2;
}
@media (min-width: 768px) {
  .concept__logo {
    width: 161px;
  }
}
@media (min-width: 1024px) {
  .concept__logo {
    width: 190px;
    right: -25px;
  }
}
@media (min-width: 1920px) {
  .concept__logo {
    width: 217px;
  }
}

.concept__character {
  position: absolute;
  right: -4px;
  bottom: -54px;
  width: 106px;
  z-index: 2;
}
@media (min-width: 768px) {
  .concept__character {
    width: 114px;
  }
}

.concept__content {
  margin-top: 107px;
  text-align: center;
}

.concept__title {
  font-family: "Coiny", cursive;
  font-size: 45px;
  line-height: 1;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .concept__title {
    font-size: 60px;
  }
}
@media (min-width: 1920px) {
  .concept__title {
    font-size: 80px;
  }
}

.concept__sub {
  margin-top: 5px;
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
}
@media (min-width: 1024px) {
  .concept__sub {
    font-size: 22px;
    margin-top: -6px;
  }
}
@media (min-width: 1920px) {
  .concept__sub {
    font-size: 26px;
  }
}

.concept__text {
  margin-top: 23px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.2;
  color: #000000;
}
@media (min-width: 1920px) {
  .concept__text {
    font-size: 18px;
  }
}

.concept__text + .concept__text {
  margin-top: 5px;
}

.concept__deco-h img {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 110px;
  height: auto;
  z-index: 2;
  pointer-events: none;
}
@media (min-width: 768px) {
  .concept__deco-h img {
    width: 128px;
    left: 46px;
    bottom: 23px;
  }
}
@media (min-width: 1024px) {
  .concept__deco-h img {
    width: 140px;
    bottom: 50px;
  }
}
@media (min-width: 1920px) {
  .concept__deco-h img {
    width: 233px;
  }
}

.concept__wave {
  position: absolute;
  left: 0;
  bottom: -3px;
  z-index: 1;
  width: 100%;
  line-height: 0;
  overflow: hidden;
  pointer-events: none;
}
@media (min-width: 1920px) {
  .concept__wave {
    display: flex;
    bottom: -3px;
    transform: translateY(1px);
  }
}

.concept__wave img {
  display: block;
  width: 100%;
  height: auto;
}

.sweets {
  position: relative;
  background-color: #FFFFFF;
  padding: 46px 20px 190px;
  overflow: hidden;
  margin-top: -2px;
  border-top: none;
}

.sweets__inner {
  margin: 0 auto;
  position: relative;
}
@media (min-width: 1440px) {
  .sweets__inner {
    max-width: 2000px;
    margin: 0 auto;
  }
}

.sweets__title {
  font-family: "Coiny", cursive;
  font-size: 45px;
  line-height: 1;
  color: #FCC800;
  text-align: center;
  letter-spacing: 2px;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .sweets__title {
    font-size: 60px;
  }
}
@media (min-width: 1920px) {
  .sweets__title {
    font-size: 80px;
  }
}

.sweets__sub {
  margin-top: 5px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #907332;
  text-align: center;
}
@media (min-width: 1024px) {
  .sweets__sub {
    font-size: 22px;
    margin-top: 0;
  }
}
@media (min-width: 1920px) {
  .sweets__sub {
    font-size: 26px;
  }
}

.sweets__character {
  position: relative;
  width: 150px;
  left: 40%;
  top: 20px;
  transform: translateX(-50%);
  z-index: 0;
}
.sweets__character.is-show {
  animation: characterFadeIn 0.8s ease-out forwards;
}
@media (min-width: 768px) {
  .sweets__character {
    left: 59%;
    top: 22px;
    width: 160px;
  }
}
@media (min-width: 1024px) {
  .sweets__character {
    width: 180px;
    left: 61%;
  }
}
@media (min-width: 1920px) {
  .sweets__character {
    width: 280px;
    left: 62%;
  }
}

@keyframes characterFadeIn {
  from {
    opacity: 1;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
.sweets_character--main {
  display: block;
  width: 100%;
}

.sweets_character-balloon {
  position: absolute;
  top: 66px;
  right: -100px;
}
@media (min-width: 1920px) {
  .sweets_character-balloon {
    top: 112px;
    right: -112px;
  }
}

.sweets_character--text-bg {
  width: 111px;
}
@media (min-width: 1920px) {
  .sweets_character--text-bg {
    width: 136px;
  }
}

.sweets_character--text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Coiny", cursive;
  font-size: 19px;
  color: #FFFFFF;
  margin-top: 5px;
}

.sweets-character--cookie {
  position: relative;
  width: 165px;
  top: -80px;
  left: 66%;
  transform: translateX(-50%);
  z-index: 2;
}
.sweets-character--cookie.is-show {
  animation: characterFadeIn 0.8s ease-out forwards;
}
@media (min-width: 768px) {
  .sweets-character--cookie {
    left: 58%;
    top: -112px;
  }
}
@media (min-width: 1024px) {
  .sweets-character--cookie {
    width: 172px;
    left: 68%;
  }
}
@media (min-width: 1920px) {
  .sweets-character--cookie {
    font-size: 25px;
  }
}

@keyframes characterFadeIn {
  from {
    opacity: 1;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
.sweets-character__main {
  position: absolute;
  width: 96px;
}
@media (min-width: 1024px) {
  .sweets-character__main {
    width: 120px;
  }
}
@media (min-width: 1920px) {
  .sweets-character__main {
    width: 172px;
  }
}

.sweets-character__balloon {
  position: absolute;
  top: 66px;
  right: -37px;
  width: 94px;
}
@media (min-width: 1024px) {
  .sweets-character__balloon {
    right: -53px;
  }
}
@media (min-width: 1920px) {
  .sweets-character__balloon {
    width: 142px;
    right: -154px;
  }
}

.sweets-character__balloon img {
  display: block;
  width: 100%;
}

.sweets-character__text {
  position: absolute;
  color: #FFFFFF;
  font-family: "Coiny", cursive;
  font-weight: 500;
  line-height: 1;
  font-size: 15px;
}
@media (min-width: 1920px) {
  .sweets-character__text {
    font-size: 23px;
  }
}

.sweets-character__text--top {
  top: 33px;
  left: 12px;
}
@media (min-width: 1920px) {
  .sweets-character__text--top {
    top: 46px;
    left: 22px;
  }
}

.sweets-character__text--bottom {
  top: 75px;
  left: 33px;
}
@media (min-width: 1920px) {
  .sweets-character__text--bottom {
    top: 111px;
    left: 50px;
  }
}

@media (min-width: 768px) {
  .sweets__wrapper--cake {
    display: flex;
    align-items: flex-start;
    gap: 46px;
    margin-top: -100px;
  }
}
@media (min-width: 1920px) {
  .sweets__wrapper--cake {
    margin-top: -280px;
  }
}

@media (min-width: 768px) {
  .sweets__wrap--cake {
    flex-shrink: 0;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
  }
}

@media (min-width: 768px) {
  .sweets__wrapper--cookie {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 20px;
  }
}

.sweets__wrap--cookie {
  position: relative;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .sweets__wrap--cookie {
    width: -moz-fit-content;
    width: fit-content;
  }
}

.sweets-slider__pagination-wrap {
  width: calc(100vw - 15px);
  display: flex;
  margin-left: -25px;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .sweets-slider__pagination-wrap {
    width: calc(446px + 686 * (100vw - 768px) / 1152);
    max-width: 1132px;
  }
}

.sweets-slider__pagination-wrap--right {
  margin-left: auto;
  width: calc(100vw - 15px);
  display: flex;
  justify-content: flex-start;
  margin-right: -22px;
}
@media (min-width: 768px) {
  .sweets-slider__pagination-wrap--right {
    margin-left: -1px;
    width: calc(422px + 710 * (100vw - 768px) / 1152);
    max-width: 1132px;
    border-radius: 180px 0 0 0;
  }
}

.sweets-slider__frame {
  position: relative;
  overflow: hidden;
  height: 384px;
  width: calc(100vw - 15px);
  border: 5px solid #000000;
  z-index: 2;
}

.sweets-slider__frame--left {
  border-radius: 0 180px 0 0;
  margin-top: -75px;
  margin-left: -25px;
}
@media (min-width: 768px) {
  .sweets-slider__frame--left {
    width: calc(446px + 686 * (100vw - 768px) / 1152);
    height: 540px;
  }
}
@media (min-width: 1024px) {
  .sweets-slider__frame--left {
    height: 610px;
  }
}
@media (min-width: 1920px) {
  .sweets-slider__frame--left {
    height: 714px;
  }
}

.sweets-slider__frame--right {
  border-radius: 180px 0 0 0;
  margin-top: 140px;
  margin-left: auto;
  position: relative;
  margin-right: -25px;
}
@media (min-width: 768px) {
  .sweets-slider__frame--right {
    width: calc(446px + 686 * (100vw - 768px) / 1152);
    max-width: 1132px;
    height: 540px;
    margin-left: 0;
  }
}
@media (min-width: 1024px) {
  .sweets-slider__frame--right {
    height: 610px;
  }
}
@media (min-width: 1920px) {
  .sweets-slider__frame--right {
    width: 1132px;
  }
}

.sweets-slider,
.sweets-slider .swiper-wrapper,
.sweets-slider .swiper-slide {
  height: 100%;
}

.sweets-slider {
  position: relative;
  z-index: 2;
}

.sweets-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.sweets-slider__pagination.swiper-pagination {
  position: static !important;
  width: auto !important;
}

.sweets-slider__pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: #FFFFFF;
  border: 2px solid #000000;
  opacity: 1;
  margin: 0 2px !important;
}

.sweets-slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #000000;
  border: 2px solid #000000;
}

.sweets__content {
  margin-top: 28px;
  width: 340px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .sweets__content--cake {
    flex-shrink: 0;
    margin-left: 0;
    margin-top: 150px;
    width: 220px;
  }
}
@media (min-width: 1920px) {
  .sweets__content--cake {
    margin-top: 330px;
  }
}
@media (min-width: 1920px) {
  .sweets__content--cake {
    width: 300px;
  }
}

.sweets__content--cookie {
  margin-top: 96px;
}
@media (min-width: 768px) {
  .sweets__content--cookie {
    width: 220px;
    flex-shrink: 0;
    margin-top: 286px;
  }
}
@media (min-width: 1024px) {
  .sweets__content--cookie {
    width: 300px;
    margin-right: 0;
  }
}
@media (min-width: 1920px) {
  .sweets__content--cookie {
    width: 390px;
  }
}

.sweets__category {
  font-family: "Coiny", cursive;
  font-size: 45px;
  line-height: 1.1;
  color: #000000;
}
@media (min-width: 1024px) {
  .sweets__category {
    font-size: 60px;
  }
}
@media (min-width: 1920px) {
  .sweets__category {
    font-size: 80px;
  }
}

.sweets__category-ja {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
}
@media (min-width: 1024px) {
  .sweets__category-ja {
    font-size: 22px;
  }
}
@media (min-width: 1920px) {
  .sweets__category-ja {
    font-size: 25px;
  }
}

.sweets__text {
  margin-top: 27px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  color: #000000;
}
@media (min-width: 1920px) {
  .sweets__text {
    font-size: 20px;
  }
}

.sweets__insta {
  margin-top: 24px;
  font-family: "Coiny", cursive;
  font-size: 20px;
  color: #000000;
}
@media (min-width: 1920px) {
  .sweets__insta {
    font-size: 23px;
  }
}

.sweets__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 25px;
  border-radius: 5px;
  background-color: #000000;
  color: #FFFFFF;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .sweets__btn {
    gap: 10px;
  }
}
@media (min-width: 1920px) {
  .sweets__btn {
    font-size: 22px;
  }
}

.sweets-thumb {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 51px 36px;
  margin-top: 35px;
  width: 360px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .sweets-thumb {
    grid-template-columns: repeat(4, 1fr);
    width: 85%;
    margin-top: 40px;
  }
}
@media (min-width: 1024px) {
  .sweets-thumb {
    width: 70%;
  }
}
@media (min-width: 1920px) {
  .sweets-thumb {
    width: 60%;
  }
}

.sweets-thumb__item {
  padding: 0;
  border: none;
  background: transparent;
  text-align: center;
}

.sweets-thumb__item:nth-child(even) {
  transform: translateY(60px);
}

.sweets-thumb__item img {
  width: 140px;
  height: auto;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .sweets-thumb__item img {
    width: 130px;
  }
}
@media (min-width: 1024px) {
  .sweets-thumb__item img {
    width: 160px;
  }
}
@media (min-width: 1920px) {
  .sweets-thumb__item img {
    width: 200px;
  }
}

.sweets-thumb__item span {
  display: block;
  margin-top: 17px;
  font-size: 18px;
  font-weight: 500;
  color: #907332;
  text-align: center;
}
@media (min-width: 768px) {
  .sweets-thumb__item span {
    font-size: 14px;
  }
}
@media (min-width: 1920px) {
  .sweets-thumb__item span {
    font-size: 18px;
  }
}

.experience {
  position: relative;
  padding: 0 20px 70px;
  overflow: visible;
  background-color: #FFFFFF;
}

.experience::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  bottom: 30px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url("../img/experience_bg.svg");
  background-repeat: repeat;
  background-size: 415px auto;
  background-position: left top;
  z-index: 1;
}
@media (min-width: 768px) {
  .experience::before {
    top: 215px;
    bottom: 5px;
  }
}
@media (min-width: 1024px) {
  .experience::before {
    border-radius: 9999px;
    width: 1250px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (min-width: 1920px) {
  .experience::before {
    border-radius: 9999px;
    width: 1610px;
    left: 50%;
    transform: translateX(-50%);
    top: 310px;
  }
}

.experience__inner {
  position: relative;
  margin: 0 auto;
  z-index: 2;
}

.experience__title {
  font-family: "Coiny", cursive;
  font-size: 45px;
  color: #FCC800;
  text-align: center;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .experience__title {
    font-size: 60px;
  }
}
@media (min-width: 1920px) {
  .experience__title {
    font-size: 80px;
  }
}

.experience__sub {
  margin-top: 8px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #907332;
  text-align: center;
}
@media (min-width: 1024px) {
  .experience__sub {
    font-size: 22px;
    margin-top: -16px;
  }
}
@media (min-width: 1920px) {
  .experience__sub {
    font-size: 26px;
  }
}

.experience__foot {
  position: absolute;
  width: 88px;
  pointer-events: none;
  z-index: 3;
}
@media (min-width: 768px) {
  .experience__foot {
    width: 101px;
  }
}
@media (min-width: 1920px) {
  .experience__foot {
    width: 131px;
  }
}

.experience__foot-item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  display: block;
}

.experience__foot--top {
  position: absolute;
  top: 120px;
  right: calc(50% - 187.5px + 12px);
}
@media (min-width: 768px) {
  .experience__foot--top {
    top: -7px;
    right: calc(50% - 350px + 38px);
  }
}
@media (min-width: 1024px) {
  .experience__foot--top {
    top: 192px;
    right: calc(50% - 350px - 210px);
  }
}
@media (min-width: 1920px) {
  .experience__foot--top {
    top: 250px;
    right: calc(50% - 350px - 394px);
  }
}

.experience__foot--bottom {
  left: calc(50% - 187.5px + 45px);
  bottom: 80px;
}
@media (min-width: 768px) {
  .experience__foot--bottom {
    left: calc(50% - 187.5px - 168px);
    bottom: 20px;
  }
}
@media (min-width: 1024px) {
  .experience__foot--bottom {
    left: calc(50% - 187.5px - 395px);
    bottom: 130px;
  }
}
@media (min-width: 1920px) {
  .experience__foot--bottom {
    left: calc(50% - 187.5px - 596px);
    bottom: 220px;
  }
}

.experience.is-show .experience__foot-item {
  animation: footAppear 0.35s ease-out forwards;
}
.experience.is-show .experience__foot-item--01 {
  animation-delay: 0s;
}
.experience.is-show .experience__foot-item--02 {
  animation-delay: 0.25s;
}
.experience.is-show .experience__foot-item--03 {
  animation-delay: 0.5s;
}
.experience.is-show .experience__foot-item--04 {
  animation-delay: 0.75s;
}
.experience.is-show .experience__foot-item--05 {
  animation-delay: 1s;
}
.experience.is-show .experience__foot-item--06 {
  animation-delay: 1.25s;
}

@keyframes footAppear {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }
  70% {
    opacity: 1;
    transform: scale(1.08);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.experience__body {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .experience__body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 23px;
    align-items: start;
    width: 730px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1024px) {
  .experience__body {
    width: 800px;
  }
}
@media (min-width: 1920px) {
  .experience__body {
    width: 1100px;
  }
}

.experience__image {
  overflow: hidden;
  width: 100%;
  height: 650px;
  border: 5px solid #000000;
  border-radius: 50% 50% 0 0;
}

.experience__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.experience__image--large {
  height: 453px;
  border: 5px solid #000000;
  border-radius: 250px 250px 0px 0px;
  width: min(502px, 130vw);
  margin-left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .experience__image--large {
    grid-column: 1/2;
    width: 227px;
    height: 296px;
    margin-left: 0;
    transform: none;
  }
}
@media (min-width: 1024px) {
  .experience__image--large {
    width: 250px;
    height: 326px;
  }
}
@media (min-width: 1920px) {
  .experience__image--large {
    width: 338px;
    height: 442px;
  }
}

.experience__image--large img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 30% center;
     object-position: 30% center;
}

.experience__text {
  margin-top: 51px;
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
}
@media (min-width: 768px) {
  .experience__text {
    grid-column: 1/-1;
    grid-row: 2;
    margin-top: 24px;
  }
}

.experience__text p {
  font-size: 16px;
  line-height: 2;
}
@media (min-width: 768px) {
  .experience__text p {
    font-size: 18px;
  }
}

.experience__text p + p {
  margin-top: 5px;
}

.experience__small-images {
  display: flex;
  gap: 24px;
  justify-content: center;
  width: 498px;
  margin-left: 50%;
  transform: translateX(-50%);
  margin-top: 40px;
}
@media (min-width: 768px) {
  .experience__small-images {
    display: contents;
  }
}
@media (min-width: 1024px) {
  .experience__small-images {
    gap: 10px;
  }
}

.experience__image--small {
  width: 234px;
  height: 309px;
  overflow: hidden;
  border: 5px solid #000000;
  border-radius: 120px 120px 0 0;
}
@media (min-width: 1024px) {
  .experience__image--small {
    border-radius: 169px 169px 0 0;
  }
}

.experience__image--small img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.experience__image--left {
  margin-top: 0;
}
@media (min-width: 768px) {
  .experience__image--left {
    grid-column: 2/3;
    width: 227px;
    height: 296px;
    margin-top: 0;
  }
}
@media (min-width: 1024px) {
  .experience__image--left {
    width: 250px;
    height: 326px;
  }
}
@media (min-width: 1920px) {
  .experience__image--left {
    width: 338px;
    height: 442px;
  }
}

.experience__image--right {
  margin-top: 70px;
}
@media (min-width: 768px) {
  .experience__image--right {
    grid-column: 3/4;
    width: 227px;
    height: 296px;
    margin-top: 0;
  }
}
@media (min-width: 1024px) {
  .experience__image--right {
    width: 250px;
    height: 326px;
  }
}
@media (min-width: 1920px) {
  .experience__image--right {
    width: 338px;
    height: 442px;
  }
}

.footer-visual {
  background-color: #FFFFFF;
  padding-top: 80px;
}
@media (min-width: 768px) {
  .footer-visual {
    padding-top: 140px;
  }
}

.footer-visual__line {
  height: 5px;
  background-color: #000000;
}

.footer-visual__image {
  display: block;
  width: 100%;
  height: auto;
}