@charset "utf-8";
/* *************************************
hamburger
************************************* */
.hamburger {
  width: fit-content;
  text-align: center;
}

@media (any-hover: hover) {
  .hamburger:hover {
    cursor: pointer;
  }
}

.hamburger__btn {
  padding: calc(8 * var(--rem));
}

.hamburger__btn span {
  display: block;
  width: calc(32 * var(--rem));
  height: calc(2 * var(--rem));
  background-color: var(--black);
  transition: 0.3s ease;
}

.hamburger__btn span:nth-child(2) {
  margin: calc(8 * var(--rem)) 0;
}

/* is-open */
.hamburger.is-open .hamburger__btn span:nth-child(1) {
  transform: translateY(calc(10 * var(--rem))) rotate(45deg);
}
.hamburger.is-open .hamburger__btn span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open .hamburger__btn span:nth-child(3) {
  transform: translateY(calc(-10 * var(--rem))) rotate(-45deg);
}

.hamburger__menu,
.hamburger__close {
  text-transform: uppercase;
  font-size: calc(12 * var(--rem));
  font-weight: bold;
  font-family: var(--jp);
  line-height: 1;
  letter-spacing: 0.05em;
}

.hamburger.is-open .hamburger__menu {
  display: none;
}

.hamburger__close {
  display: none;
}

.hamburger.is-open .hamburger__close {
  display: block;
}

/* *************************************
page-hed
************************************* */
.page-head {
  position: relative;
  height: calc(300 * var(--rem));
}

.page-head__img {
  clip-path: polygon(30% 0, 100% 0%, 100% 100%, 5% 100%);
  height: inherit;

  img {
    aspect-ratio: 1440 /300;
    width: 100%;
    height: 100%;
    object-fit: cover;
    @media (width < 768px) {
      aspect-ratio: 3 /4;
    }
  }
}

.page-head__title {
  position: absolute;
  top: calc(50% + calc(20 * var(--rem)));
  left: 10%;
  transform: translate(0%, -50%);
}

.page-head__title-jp {
  width: fit-content;
  padding: calc(8 * var(--rem)) calc(24 * var(--rem));
  font-size: calc(40 * var(--rem));
  color: var(--white);
  background-color: var(--black);
  line-height: 1;
  @media (width < 768px) {
    font-size: calc(30 * var(--rem));
  }
}

.page-head__title-en {
  width: fit-content;
  padding: calc(8 * var(--rem)) calc(24 * var(--rem));
  font-size: calc(30 * var(--rem));
  color: var(--white);
  background-color: var(--black);
  line-height: 1;
  margin-block-start: calc(8 * var(--rem));
  text-transform: uppercase;
  @media (width < 768px) {
    font-size: calc(20 * var(--rem));
  }
}

/* *************************************
btn1
************************************* */
.btn1 {
  display: inline-grid;
  min-width: calc(350 * var(--rem));
  grid-template-columns: 1fr auto;
  gap: calc(8 * var(--rem));
  align-items: center;
  background-color: var(--main);
  padding-block: calc(24 * var(--rem));
  padding-inline: calc(38 * var(--rem)) calc(24 * var(--rem));
  font-size: calc(18 * var(--rem));
  color: var(--white);
  font-weight: bold;
  letter-spacing: 0.2em;
  border-radius: 100vmax;
  @media (width < 768px) {
    min-width: calc(300 * var(--rem));
    font-size: calc(16 * var(--rem));
    letter-spacing: 0.15em;
  }
}

.btn1::after {
  content: '';
  display: inline-block;
  width: calc(18 * var(--rem));
  aspect-ratio: 1;
  background: url(../../library/images/common/arrow-w.svg) no-repeat center / contain;
  margin-block-start: calc(2 * var(--rem));
}

.btn1[data-color='yellow'] {
  background-color: var(--yellow);
  color: var(--text);
}

.btn1[data-color='yellow']::after {
  background: url(../../library/images/common/arrow-k.svg) no-repeat center / contain;
}

.btn1[data-color='white'] {
  background-color: var(--white);
  color: var(--main);
  border: 2px solid var(--main);
  padding-block: calc(17 * var(--rem));
  min-width: calc(310 * var(--rem));
}

.btn1[data-color='white']::after {
  background: url(../../library/images/common/arrow-r.svg) no-repeat center / contain;
}

/* *************************************
btn2
************************************* */
.btn2 {
  display: inline-grid;
  min-width: calc(400 * var(--rem));
  grid-template-columns: auto 1fr auto;
  gap: calc(8 * var(--rem));
  align-items: center;
  background-color: var(--main);
  padding-block: calc(20 * var(--rem));
  padding-inline: calc(32 * var(--rem)) calc(30 * var(--rem));
  font-size: calc(18 * var(--rem));
  color: var(--white);
  letter-spacing: 0.2em;
  border-radius: 100vmax;
  @media (width < 768px) {
    min-width: calc(280 * var(--rem));
    font-size: calc(16 * var(--rem));
    letter-spacing: 0.15em;
    padding-inline: calc(10 * var(--rem));
  }
}

.btn2::before,
.btn2::after {
  content: '';
  display: inline-block;
  aspect-ratio: 1;
}

.btn2::before {
  background: url(../../library/images/common/tel-w.svg) no-repeat center / contain;
  width: calc(33 * var(--rem));
  @media (width < 768px) {
    width: calc(26 * var(--rem));
  }
}

.btn2::after {
  background: url(../../library/images/common/arrow-w.svg) no-repeat center / contain;
  width: calc(18 * var(--rem));
}

.btn2[data-color='white'] {
  background-color: var(--white);
  border: 2px solid var(--main);
  color: var(--main);
}

.btn2[data-color='white']::before {
  background: url(../../library/images/common/mail-r.svg) no-repeat center / contain;
  width: calc(24 * var(--rem));
}

.btn2[data-color='white']::after {
  background: url(../../library/images/common/arrow-r.svg) no-repeat center / contain;
}

/* *************************************
title1
************************************* */
.title1 {
  display: inline-block;
  text-align: center;
  position: relative;
}

.title1::before,
.title1::after {
  background-color: var(--main);
  content: '';
  height: calc(1 * var(--rem));
  width: calc(60 * var(--rem));
  position: absolute;
  top: calc(55 * var(--rem));
}

.title1::before {
  left: calc(-100 * var(--rem));
  transform: rotate(50deg);
  @media (width < 768px) {
    left: calc(-80 * var(--rem));
  }
}

.title1::after {
  right: calc(-78 * var(--rem));
  transform: rotate(-50deg);
  @media (width < 768px) {
    right: calc(-58 * var(--rem));
  }
}

.title1__jp {
  font-size: calc(30 * var(--rem));
  letter-spacing: 0.08em;
  position: relative;
}

.title1__jp::before {
  content: '';
  display: inline-block;
  width: calc(45 * var(--rem));
  aspect-ratio: 1;
  background: url(../../library/images/common/sale.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: calc(-55 * var(--rem));
  transform: translate(0%, -50%);
  @media (width < 768px) {
    left: calc(-45 * var(--rem));
    width: calc(40 * var(--rem));
  }
}

.title1__en {
  margin-block-start: calc(6 * var(--rem));
  letter-spacing: 0.04em;
  color: var(--main);
  font-weight: bold;
}

.title1__en::first-letter {
  text-transform: uppercase;
}

.title1.title1[data-before='none']::before {
  left: calc(-64 * var(--rem));
}

.title1.title1[data-before='none']::after {
  right: calc(-64 * var(--rem));
}

.title1.title1[data-before='none'] .title1__jp::before {
  display: none;
}

.title1.title1[data-before='none'] .title1__jp {
  @media (width < 768px) {
    font-size: calc(28 * var(--rem));
  }
}

/* *************************************
title2
************************************* */
.title2 {
  display: inline-block;
}

.title2__jp {
  font-size: calc(30 * var(--rem));
  letter-spacing: 0.08em;
  position: relative;
}

.title2__jp::before,
.title2__jp::after {
  content: '';
  display: inline-block;
  position: relative;
  aspect-ratio: 1;
}

.title2__jp::before {
  width: calc(43 * var(--rem));
  background: url(../../library/images/common/chirashi.svg) no-repeat center / contain;
  top: calc(7 * var(--rem));
  left: calc(-10 * var(--rem));
}

.title2__jp::after {
  width: calc(16 * var(--rem));
  background: url(../../library/images/common/cyon.svg) no-repeat center / contain;
  top: calc(-18 * var(--rem));
  right: calc(-1 * var(--rem));
}

.title2__en {
  letter-spacing: 0.04em;
  color: var(--main);
  font-weight: bold;
  text-align: center;
}

.title2__en::first-letter {
  text-transform: uppercase;
}

.title2[data-text-align='left'] {
  .title2__jp::before {
    background: url(../../library/images/common/shop.svg) no-repeat center / contain;
  }

  .title2__jp::after {
    display: none;
  }

  .title2__en {
    margin-inline-start: calc(40 * var(--rem));
  }
}

/* *************************************
title3
************************************* */
.title3 {
  display: inline-block;
  text-align: center;
}

.title3__jp {
  font-size: calc(40 * var(--rem));
  color: var(--white);
  letter-spacing: 0.08em;
  display: grid;
  justify-items: center;
  @media (width < 768px) {
    font-size: calc(30 * var(--rem));
  }
}

.title3__jp::before {
  content: '';
  display: inline-block;
  width: calc(60 * var(--rem));
  aspect-ratio: 1;
  background: url(../../library/images/common/megaphone-w.svg) no-repeat center / contain;
  @media (width < 768px) {
    width: calc(40 * var(--rem));
  }
}

.title3__en {
  font-size: calc(20 * var(--rem));
  letter-spacing: 0.04em;
  color: var(--white);
  font-weight: bold;
  text-transform: capitalize;
}

/* *************************************
title4
************************************* */
.title4 {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: repeat(2, auto);
  gap: calc(0 * var(--rem)) calc(16 * var(--rem));
  align-items: center;
  position: relative;
  @media (width < 768px) {
    column-gap: calc(8 * var(--rem));
  }
}

.title4::before,
.title4::after {
  background-color: var(--main);
  content: '';
  height: calc(2 * var(--rem));
  width: calc(100 * var(--rem));
  position: absolute;
  top: calc(100 * var(--rem));
  @media (width < 768px) {
    display: none;
  }
}

.title4::before {
  left: calc(-105 * var(--rem));
  transform: rotate(55deg);
}

.title4::after {
  right: calc(-63 * var(--rem));
  transform: rotate(-55deg);
}

.title4__name {
  grid-column: 2/3;
  grid-row: 1/2;
  font-size: calc(18 * var(--rem));
  color: var(--white);
  letter-spacing: 0.05em;
  background-color: var(--main);
  padding: calc(2 * var(--rem)) calc(18 * var(--rem));
  border-radius: 100vmax;
  position: relative;
  margin-block-start: calc(8 * var(--rem));
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
    padding-inline: calc(8 * var(--rem));
  }
}

.title4__name::after {
  content: '';
  display: inline-block;
  width: calc(20 * var(--rem));
  aspect-ratio: 1;
  background-color: var(--main);
  position: absolute;
  top: 55%;
  left: -1%;
  clip-path: polygon(50% 0%, 0 70%, 100% 70%);
  rotate: 105deg;
  @media (width < 768px) {
    top: 49%;
    left: -2%;
  }
}

.title4__num {
  grid-column: 1/2;
  grid-row: span 2;
  font-size: calc(110 * var(--rem));
  font-weight: bold;
  color: var(--main);
  position: relative;
  @media (width < 768px) {
    font-size: calc(70 * var(--rem));
  }
}

.title4__num::before {
  content: '';
  display: inline-block;
  width: calc(24 * var(--rem));
  aspect-ratio: 1;
  background: url(../../library/images/common/cyon.svg) no-repeat center / contain;
  position: absolute;
  top: calc(31 * var(--rem));
  left: calc(-25 * var(--rem));
  transform: scale(-1, 1);
  @media (width < 768px) {
    top: calc(7 * var(--rem));
    left: calc(-12 * var(--rem));
  }
}

.title4__text {
  grid-column: 2/3;
  grid-row: 2/3;
  font-size: calc(45 * var(--rem));
  font-weight: bold;
  letter-spacing: 0.13em;
  line-height: 1;
  margin-block-start: calc(-66 * var(--rem));
  margin-inline-start: calc(-4 * var(--rem));
  text-align: left;
  @media (width < 768px) {
    font-size: calc(40 * var(--rem));
    margin-block-start: calc(-26 * var(--rem));
    margin-inline-start: calc(-9 * var(--rem));
  }
}

/* *************************************
title5
************************************* */
.title5 {
  display: inline-flex;
  font-size: calc(35 * var(--rem));
  justify-content: center;
  align-items: flex-end;
  position: relative;

}

.title5::before {
  content: '';
  display: inline-block;
  width: calc(30 * var(--rem));
  aspect-ratio: 1;
  background: url(../../library/images/common/cyon.svg) no-repeat center / contain;
  position: absolute;
  top: calc(-18 * var(--rem));
  right: calc(-30 * var(--rem));
}

.title5::after {
  content: '';
  display: inline-block;
  width: calc(80 * var(--rem));
  height: calc(2 * var(--rem));
  background-color: var(--main);
  position: absolute;
  top: calc(100% + calc(16 * var(--rem)));
  left: 50%;
  transform: translate(-50%, 0%);
}

.title5 span {
  font-size: calc(65 * var(--rem));
  color: var(--main);
  line-height: 1;
}

.title5[data-position='position']::before {
  top: calc(-15 * var(--rem));
  left: calc(30 * var(--rem));
  right: auto;
}

/* *************************************
card1-list
************************************* */
.card1-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(28 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: 1fr;
  }
}

.card1-list__item {
  background: linear-gradient(to bottom, #ffffff 0%, #f5eadd 100%);
  padding-block: calc(30 * var(--rem)) calc(23 * var(--rem));
  padding-inline: calc(16 * var(--rem));
  border: calc(1 * var(--rem)) solid var(--brown);
  outline: calc(6 * var(--rem)) solid var(--main);
  outline-offset: calc(-7 * var(--rem));
}

.card1-list__img {
  width: calc(50 * var(--rem));
  margin-inline: auto;

  img {
    aspect-ratio: 113 /150;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.card1-list__title {
  font-size: calc(30 * var(--rem));
  line-height: 1;
  letter-spacing: 0.03em;
  width: fit-content;
  margin-inline: auto;
  border-bottom: 1px solid var(--main);
  padding-inline: calc(12 * var(--rem));
  padding-bottom: calc(21 * var(--rem));
  margin-block-start: calc(24 * var(--rem));
}

.card1-list__text {
  margin-block-start: calc(33 * var(--rem));
  text-align: center;
  letter-spacing: 0.001em;
}

.card1-list__text span {
  color: var(--main);
  font-weight: bold;
}

/* *************************************
post-list
************************************* */
.post-list {
}

.post-list__link {
  padding-block: calc(12 * var(--rem));
  padding-inline: calc(40 * var(--rem)) calc(24 * var(--rem));
  display: grid;
  grid-template-columns: calc(90 * var(--rem)) auto 1fr;
  gap: calc(16 * var(--rem));
  align-items: self-start;
  border-bottom: 1px solid var(--gray);
  @media (width < 768px) {
    display: block;
    padding-inline: calc(16 * var(--rem));
  }
}

.post-list__cat {
  text-align: center;
  background-color: var(--main);
  padding: calc(2 * var(--rem));
  color: var(--white);
  font-size: calc(14 * var(--rem));
  margin-block-start: calc(4 * var(--rem));

  @media (width < 768px) {
    display: inline-block;
    padding-inline: calc(16 * var(--rem));
  }
}

.post-list__time {
  margin-inline-start: calc(16 * var(--rem));
  margin-block-start: calc(4 * var(--rem));
  letter-spacing: 0.05em;
}

.post-list__title {
  margin-inline-start: calc(20 * var(--rem));
  letter-spacing: 0.01em;
  font-weight: 500;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: calc(8 * var(--rem));
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
    margin-inline-start: 0;
    margin-block-start: calc(8 * var(--rem));
  }
}

.post-list__title::after {
  content: '';
  display: inline-block;
  width: calc(16 * var(--rem));
  aspect-ratio: 1;
  background: url(../../library/images/common/arrow-r.svg) no-repeat center / contain;
  margin-block-start: calc(4 * var(--rem));
  @media (width < 768px) {
    margin-block-start: calc(7 * var(--rem));
  }
}

/* *************************************
slider1
************************************* */
.slider1 {
  .slider1__img img {
    aspect-ratio: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .slider1__btn-prev,
  .slider1__btn-next {
    width: calc(47 * var(--rem));
    height: calc(60 * var(--rem));
    background: url(../../library/images/common/slider-arrow.svg) no-repeat center / cover;
    @media (width < 768px) {
      width: calc(30 * var(--rem));
      height: calc(50 * var(--rem));
    }
    svg {
      display: none;
    }
  }

  .slider1__btn-next {
    rotate: 180deg;
  }
}

/* *************************************
image-list
************************************* */
.image-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(20 * var(--rem));
  @media (width < 768px) {
    gap: 0;
    background: linear-gradient(180deg, var(--main) 0%, var(--main) 50%, var(--yellow) 50%, var(--yellow) 100%);
  }
}

.image-list__item {
}

.image-list__item:nth-child(2) {
  margin-block-start: calc(40 * var(--rem));
  margin-inline-start: calc(-40 * var(--rem));
  @media (width < 768px) {
    margin: 0;
  }
}

.image-list__item:nth-child(3) {
  margin-inline-start: calc(-60 * var(--rem));
  @media (width < 768px) {
    margin: 0;
  }
}

.image-list__img {
  width: calc(278 * var(--rem));
  clip-path: polygon(37% 0, 100% 0, 68% 89%, 3% 89%);
  overflow: clip;
  @media (width < 768px) {
    width: 100%;
    clip-path: polygon(25% 0%, 100% 0, 100% 77%, 83% 100%, 0 100%, 0 24%);
  }
}

.image-list__img img {
  aspect-ratio: 796 / 1063;
  width: 100%;
  height: 100%;
  object-fit: cover;
  @media (width < 768px) {
  }
}

.image-list__item:nth-child(1) .image-list__img img {
  transform: translateX(calc(47 * var(--rem)));
  scale: 1.4;
  @media (width < 768px) {
    transform: translateX(0);
    scale: 1.4;
  }
}

/* *************************************
table1
************************************* */
.table1 {
  display: grid;
  gap: calc(4 * var(--rem));
  @media (width < 768px) {
    gap: 0;
  }
}

.table1__item {
  display: grid;
  grid-template-columns: calc(220 * var(--rem)) 1fr;
  border: 1px solid var(--main);
  @media (width < 768px) {
    grid-template-columns: 1fr;
  }
}

.table1__item dt {
  color: var(--white);
  font-weight: bold;
  display: grid;
  place-content: center;
  padding: calc(16 * var(--rem)) calc(4 * var(--rem));
  text-align: center;
  background-color: var(--main);
  position: relative;
}

.table1__item dt::after {
  content: '';
  display: inline-block;
  width: calc(40 * var(--rem));
  aspect-ratio: 1;
  background-color: var(--main);
  position: absolute;
  top: 50%;
  right: -17%;
  transform: translate(0%, -50%);
  clip-path: polygon(0 0, 0% 100%, 60% 50%);
  @media (width < 768px) {
    width: calc(20 * var(--rem));
    clip-path: polygon(0 0, 50% 60%, 100% 0);
    top: calc(100% - 1px);
    right: 50%;
    transform: translate(50%, 0%);
  }
}

.table1__item dd {
  display: grid;
  align-items: center;
  padding-block: calc(16 * var(--rem));
  padding-inline: calc(32 * var(--rem)) calc(16 * var(--rem));
  background-color: var(--white);
  @media (width < 768px) {
    padding-inline: calc(16 * var(--rem));
  }
}

/* *************************************
store-list
************************************* */
.store-list {
  display: grid;
  gap: calc(40 * var(--rem));
}

.store-list__item {
  position: relative;
  padding-block: calc(80 * var(--rem));
  @media (width < 768px) {
    padding-block: calc(40 * var(--rem));
  }
}

.store-list__item::before {
  content: '';
  display: block;
  width: min(60%, calc(800 * var(--rem)));
  height: 100%;
  background-color: #f4f4f6;
  position: absolute;
  top: 0;
  right: 0;
}

.store-list__item:nth-child(even)::before {
  top: 0;
  left: 0;
  right: auto;
}

.store-list__container {
  display: flex;
  gap: calc(40 * var(--rem));
  position: relative;
  z-index: 1;
  @media (width < 768px) {
    flex-direction: column;
  }
}

.store-list__item:nth-child(even) .store-list__container {
  flex-direction: row-reverse;
  @media (width < 768px) {
    flex-direction: column;
  }
}

.store-list__img {
  width: 50%;
  @media (width < 768px) {
    width: 100%;
  }
  img {
    aspect-ratio: 628 /471;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.store-list__wrap {
  width: 50%;
  @media (width < 768px) {
    width: 100%;
  }
}

.store-list__title {
  font-size: calc(26 * var(--rem));
  border-left: 4px solid var(--main);
  padding-inline-start: calc(16 * var(--rem));
  @media (width < 768px) {
    font-size: calc(20 * var(--rem));
  }
}

.store-list__address {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: calc(4 * var(--rem));
  width: fit-content;
  margin-block-start: calc(16 * var(--rem));
  font-size: calc(18 * var(--rem));
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
  }
}

.store-list__address::before {
  content: '';
  display: inline-block;
  width: 1lh;
  aspect-ratio: 1;
  background: url(../../library/images/common/map.svg) no-repeat center / contain;
}

.store-list__contact-wrap {
  display: inline-grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  gap: calc(8 * var(--rem));
  align-items: center;
  @media (width < 768px) {
    grid-template-columns: 1fr;
    margin-block-start: calc(8 * var(--rem));
  }
}

.store-list__tel {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: calc(4 * var(--rem));
  width: fit-content;
  padding-block: calc(16 * var(--rem));
  font-size: calc(18 * var(--rem));
  font-weight: bold;
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
    padding-block: calc(4 * var(--rem));
  }
}

.store-list__tel::before {
  content: '';
  display: inline-block;
  width: 1lh;
  aspect-ratio: 1;
  background: url(../../library/images/common/tel.svg) no-repeat center / contain;
}

.store-list__tel[data-contact='fax']::before {
  background: url(../../library/images/common/fax.svg) no-repeat center / contain;
}

.store-list__table {
  margin-block-start: calc(8 * var(--rem));
}

.store-list__item[date-layout='small'] .store-list__container {
  justify-content: center;
  @media (width < 768px) {
    gap: 0;
  }
}

.store-list__item[date-layout='small'] .store-list__img {
  width: auto;
}

.store-list__item[date-layout='small'] .store-list__wrap {
  width: auto;
}

/* *************************************
table2
************************************* */
.table2 {
}

.table2__item {
  display: grid;
  grid-template-columns: calc(180 * var(--rem)) 1fr;
  border-bottom: 1px solid #e0e0e0;
  @media (width < 768px) {
    grid-template-columns: calc(115 * var(--rem)) 1fr;
  }
}

.table2__item dt {
  display: grid;
  place-content: center;
  padding: calc(16 * var(--rem));
  border-bottom: 1px solid var(--main);
  @media (width < 768px) {
    padding-inline: calc(8 * var(--rem));
  }
}

.table2__item dd {
  padding: calc(16 * var(--rem)) calc(16 * var(--rem));
  @media (width < 768px) {
  }
}

/* *************************************
history-list
************************************* */
.history-list {
}

.history-list__item {
  display: grid;
  grid-template-columns: calc(150 * var(--rem)) 1fr;
  gap: calc(16 * var(--rem));
  padding-block: calc(24 * var(--rem));
  position: relative;
  padding-inline-start: calc(32 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: 1fr;
  }
}

.history-list__item::before {
  content: '';
  display: block;
  width: calc(16 * var(--rem));
  aspect-ratio: 1;
  background-color: var(--main);
  border-radius: 100vmax;
  position: absolute;
  top: calc(28 * var(--rem));
  left: 0;
  z-index: 1;
  outline: 2px solid var(--white);
  outline-offset: calc(-4 * var(--rem));
}

.history-list__item:not(:last-child)::after {
  content: '';
  display: block;
  width: calc(2 * var(--rem));
  height: 100%;
  background-color: var(--main);
  position: absolute;
  top: calc(34 * var(--rem));
  left: calc(7 * var(--rem));
}

/* *************************************
strengths-list
************************************* */
.strengths-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: calc(80 * var(--rem)) calc(24 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: 1fr;
    gap: calc(64 * var(--rem));
  }
}

.strengths-list__item {
  background: linear-gradient(to bottom, #ffffff 0%, #f5eadd 100%);
  padding-block: calc(56 * var(--rem)) calc(23 * var(--rem));
  padding-inline: calc(40 * var(--rem));
  border: calc(1 * var(--rem)) solid var(--brown);
  outline: calc(6 * var(--rem)) solid var(--main);
  outline-offset: calc(-7 * var(--rem));
  counter-increment: num;
  position: relative;
  @media (width < 768px) {
    padding-inline: calc(20 * var(--rem));
    padding-block-end: calc(40 * var(--rem));
  }
}

.strengths-list__item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 1;
  @media (width < 768px) {
    grid-column: revert;
    grid-row: revert;
  }
}
.strengths-list__item:nth-child(2) {
  grid-column: span 1;
  grid-row: 2/3;
  @media (width < 768px) {
    grid-column: revert;
    grid-row: revert;
  }
}
.strengths-list__item:nth-child(3) {
  grid-column: 2/3;
  grid-row: 2/3;
  @media (width < 768px) {
    grid-column: revert;
    grid-row: revert;
  }
}

.strengths-list__item::before {
  content: counter(num, decimal-leading);
  font-size: calc(60 * var(--rem));
  font-weight: bold;
  color: var(--white);
  position: absolute;
  top: calc(-57 * var(--rem));
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 1;
  @media (width < 768px) {
    font-size: calc(48 * var(--rem));
    top: calc(-40 * var(--rem));
  }
}

.strengths-list__item::after {
  content: '';
  display: block;
  width: calc(100 * var(--rem));
  aspect-ratio: 1;
  border-radius: 100vmax;
  background-color: var(--main);
  position: absolute;
  top: calc(-55 * var(--rem));
  left: 50%;
  transform: translate(-50%, 0%);
  @media (width < 768px) {
    width: calc(80 * var(--rem));
    top: calc(-42 * var(--rem));
  }
}

.strengths-list__title {
  font-size: calc(40 * var(--rem));
  text-align: center;
  @media (width < 768px) {
    font-size: calc(30 * var(--rem));
  }
}



.strengths-list__text {
  margin-block-start: calc(24 * var(--rem));
  text-align: center;
  @media (width < 768px) {
    text-align: left;
    order: 2;
  }
}

.strengths-list__title2 {
  font-size: calc(40 * var(--rem));
  text-align: center;
  margin-block-start: calc(40 * var(--rem));
  @media (width < 768px) {
    font-size: calc(30 * var(--rem));
  }
}

.strengths-list__item-btn {
text-align: center;
margin-block-start: calc(24 * var(--rem));
}

.strengths-list__table {
  margin-block-start: calc(24 * var(--rem));
  width: min(100%, calc(1000 * var(--rem)));
  margin-inline: auto;
  border-radius: 10px;
  @media (width < 768px) {
    width: 100%;
  }
}

.strengths-list__time-service {
  text-align: center;
  font-size: calc(30 * var(--rem));
  color: var(--main);
  margin-block-start: calc(40 * var(--rem));
  @media (width < 768px) {
    font-size: calc(20 * var(--rem));
    margin-block-start: calc(24 * var(--rem));
  }
}

.strengths-list__img {
  margin-block-start: calc(16 * var(--rem));
  @media (width < 768px) {
    order: 1;
  }
}

.strengths-list__img img {
  aspect-ratio: 3/2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* *************************************
table3
************************************* */
.table3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(16 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: 1fr;
  }
}

.table3__item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: calc(24 * var(--rem));
  border: 2px solid var(--brown);
  padding: calc(24 * var(--rem)) calc(32 * var(--rem));
  border-radius: 100vmax;
  background-color: var(--white);
  filter: drop-shadow(0px 5px 10px rgb(0 0 0 / 0.2));
  @media (width < 768px) {
    padding: calc(16 * var(--rem)) calc(24 * var(--rem));
  }
}

.table3__item dt {
  color: var(--white);
  line-height: 1;
  font-weight: bold;
  position: relative;
  z-index: 1;
  display: grid;
  place-content: center;
}

.table3__item dt::before {
  content: '';
  display: block;
  width: calc(40 * var(--rem));
  aspect-ratio: 1;
  background-color: var(--black);
  border-radius: 100vmax;
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.table3__item:nth-child(6) dt {
  color: var(--white);
}
.table3__item:nth-child(6) dt::before {
  background-color: #4285f4;
}
.table3__item:nth-child(7) dt {
  color: var(--white);
}
.table3__item:nth-child(7) dt::before {
  background-color: var(--main);
}

/* *************************************
worry-list
************************************* */
.worry-list {
  @media (width < 768px) {
    display: grid;
    gap: calc(40 * var(--rem));
  }
}

.worry-list__item {
  display: flex;
  gap: calc(16 * var(--rem));
  align-items: flex-start;
  @media (width < 768px) {
    flex-direction: column-reverse;
    gap: calc(24 * var(--rem));
  }
}

.worry-list__item:nth-child(even) {
  flex-direction: row-reverse;
  @media (width < 768px) {
    flex-direction: column-reverse;
  }
}

.worry-list__img {
  width: calc(105 * var(--rem));
  @media (width < 768px) {
    margin-inline-end: auto;
  }
}

.worry-list__item:nth-child(even) .worry-list__img {
  width: calc(125 * var(--rem));
  @media (width < 768px) {
    margin-inline: auto 0;
  }
}

.worry-list__item:last-child .worry-list__img {
  margin-block-start: calc(40 * var(--rem));
  @media (width < 768px) {
    margin-block: 0;
  }
}

.worry-list__img img {
  aspect-ratio: 393/596;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.worry-list__text-block {
  width: 65%;
  background-color: var(--white);
  padding: calc(24 * var(--rem)) calc(40 * var(--rem));
  border-radius: 10px;
  position: relative;
  @media (width < 768px) {
    width: 100%;
    padding-inline: calc(24 * var(--rem));
  }
}

.worry-list__text-block::before {
  content: '';
  display: block;
  width: calc(40 * var(--rem));
  aspect-ratio: 1;
  background-color: var(--white);
  position: absolute;
  bottom: calc(-9 * var(--rem));
  left: calc(-9 * var(--rem));
  clip-path: polygon(30% 0, 0% 100%, 100% 60%);
  rotate: 5deg;
  @media (width < 768px) {
    bottom: calc(-25 * var(--rem));
    left: calc(61 * var(--rem));
    rotate: -29deg;
  }
}

.worry-list__item:nth-child(even) .worry-list__text-block::before {
  bottom: calc(-9 * var(--rem));
  left: auto;
  right: calc(-9 * var(--rem));
  clip-path: polygon(30% 0, 0% 100%, 100% 60%);
  rotate: -90deg;
  @media (width < 768px) {
    bottom: calc(-20 * var(--rem));
    left: auto;
    right: calc(87 * var(--rem));
    rotate: -59deg;
  }
}

/* *************************************
pagination
************************************* */
.pagination {
}

.page-numbers {
  display: flex;
  justify-content: center;
  gap: calc(16 * var(--rem));
}

.page-numbers li {
}

.page-numbers li a,
.page-numbers li span {
  display: block;
  border: 2px solid var(--main);
  color: var(--green);
  font-weight: bold;
  padding: calc(8 * var(--rem)) calc(10 * var(--rem));
  transition:
    color 0.3s ease,
    background-color 0.3s ease;
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
    padding: calc(8 * var(--rem));
  }
}

.page-numbers li span.current {
  background-color: var(--main);
  color: var(--white);
}

@media (any-hover: hover) {
  .page-numbers li a:hover {
    background-color: var(--main);
    color: var(--white);
    opacity: 1;
  }
}

/* *************************************
gain-list
************************************* */
.gain-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(40 * var(--rem));
  @media (width < 768px) {
    grid-template-columns:1fr;
    gap: calc(16 * var(--rem));
  }
}

.gain-list__img img {
  aspect-ratio: auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* *************************************
flyer-list
************************************* */
.flyer-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(40 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: 1fr;
    gap: calc(16 * var(--rem));
  }
}

.flyer-list__img img {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flyer-list__period {
  font-size: calc(14 * var(--rem));
  font-weight: bold;
  color: var(--main);
  text-align: center;
}

.flyer-list__period span {
  @media (width < 768px) {
    display: none;
  }
}

/* *************************************
モーダル
************************************* */
 /* ===== モーダル全体 ===== */
.flyer-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.flyer-modal.is-open {
  display: flex;
}

/* オーバーレイ */
.flyer-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .75);
  cursor: pointer;
}

/* コンテンツ枠 */
.flyer-modal__content {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: calc(4 * var(--rem));
  padding: calc(48 * var(--rem)) calc(24 * var(--rem)) calc(24 * var(--rem));
  max-width: min(90vw, calc(800 * var(--rem)));
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-sizing: border-box;
  @media (width < 768px) {
  padding-inline:calc(10 * var(--rem));
  }
}

/* 閉じるボタン */
.flyer-modal__close {
  position: absolute;
  top: calc(12 * var(--rem));
  right: calc(12 * var(--rem));
  width: calc(36 * var(--rem));
  height: calc(36 * var(--rem));
  background: #333;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: calc(6 * var(--rem));
}
.flyer-modal__close span {
  display: block;
  width: calc(18 * var(--rem));
  height: calc(2 * var(--rem));
  background: #fff;
  border-radius: calc(2 * var(--rem));
  transition: transform .2s;
}
.flyer-modal__close span:first-child {
  transform: translateY(calc(4 * var(--rem))) rotate(45deg);
}
.flyer-modal__close span:last-child {
  transform: translateY(calc(-4 * var(--rem))) rotate(-45deg);
}
.flyer-modal__close:hover {
  background: #555;
}

/* メイン画像 */
.flyer-modal__main {
  text-align: center;
}
.flyer-modal__main img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* サムネイル一覧 */
.flyer-modal__thumbs {
  display: flex;
  justify-content: center;
  gap: calc(12 * var(--rem));
  margin-top: calc(16 * var(--rem));
  flex-wrap: wrap;
}
.flyer-modal__thumb {
  width: calc(80 * var(--rem));
  height: calc(80 * var(--rem));
  object-fit: cover;
  cursor: pointer;
  border: calc(2 * var(--rem)) solid transparent;
  border-radius: calc(2 * var(--rem));
  transition: border-color .2s, opacity .2s;
  opacity: .6;
}
.flyer-modal__thumb.is-active,
.flyer-modal__thumb:hover {
  border-color: #333;
  opacity: 1;
}

/* サムネイルが1枚のときは非表示 */
.flyer-modal__thumbs:has(.flyer-modal__thumb:only-child) {
  display: none;
}

/* トリガー画像にカーソル */
.js-image1,
.js-image2 {
  cursor: zoom-in;
}
