@charset "UTF-8";
.l-container {
  max-width: 1230px;
  padding: 0 15px;
  margin: 0 auto;
}

.l-container--small {
  max-width: 1030px;
  padding: 0 15px;
  margin: 0 auto;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}
.l-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(217, 235, 242)), to(rgba(217, 235, 242, 0)));
  background: linear-gradient(to bottom, rgb(217, 235, 242) 0%, rgba(217, 235, 242, 0) 100%);
  opacity: 0;
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
}
.l-header.is-bg::before {
  opacity: 1;
}
.l-header.is-home:not(.is-bg) .l-header__logo-link::after {
  opacity: 1;
}
.l-header.is-home:not(.is-bg) .l-header__logo-link img {
  opacity: 0;
}
.l-header.is-home:not(.is-bg) .l-header-shop__link {
  color: #fff;
  border-color: #fff;
}
.l-header.is-home:not(.is-bg) .l-header-shop__link:hover {
  color: #535353;
  background-color: #fff;
}
.l-header.is-home:not(.is-bg) .l-header-btn::before, .l-header.is-home:not(.is-bg) .l-header-btn::after {
  background-color: #fff;
}
.l-header__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 180px;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .l-header__container {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: 68px;
    padding-left: 15px;
  }
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    width: 83px;
  }
}
.l-header__logo-link {
  position: relative;
  display: inline-block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 769px) {
  .l-header__logo-link:hover {
    opacity: 0.7;
  }
}
.l-header__logo-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/common/logo01.svg) no-repeat center/cover;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .l-header__logo-link::after {
    background-size: contain;
  }
}
.l-header__logo-link img {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.l-header__logo-image {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.l-header-nav {
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  z-index: 3000;
  height: 100%;
  max-width: 626px;
  width: 100%;
  background: rgba(250, 246, 243, 0.9);
  padding: 60px 50px;
  -webkit-transition: -webkit-transform ease 0.5s;
  transition: -webkit-transform ease 0.5s;
  transition: transform ease 0.5s;
  transition: transform ease 0.5s, -webkit-transform ease 0.5s;
  overflow-y: auto;
}
@media screen and (max-width: 768px) {
  .l-header-nav {
    background: rgb(250, 246, 243);
    padding: 44px 40px 100px;
  }
}
.l-header-nav.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.l-header-nav__logo {
  padding-left: 15px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .l-header-nav__logo {
    width: 95px;
    padding-left: 10px;
    margin-bottom: 60px;
  }
}
.l-header-nav__list {
  margin-bottom: 65px;
}
@media screen and (max-width: 768px) {
  .l-header-nav__list {
    margin-bottom: 40px;
  }
}
.l-header-nav__item {
  display: block;
  border-bottom: 1px solid #BEBEBE;
  padding: 28px 0;
}
@media screen and (max-width: 1024px) {
  .l-header-nav__item {
    padding: 20px 0;
  }
}
.l-header-nav__link {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 769px) {
  .l-header-nav__link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .l-header-nav__link {
    font-size: 12px;
    padding-left: 10px;
  }
}
.l-header-nav__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 47px;
}
@media screen and (max-width: 768px) {
  .l-header-nav__sns {
    gap: 0 31px;
  }
}
@media screen and (max-width: 768px) {
  .l-header-nav__sns-item {
    width: 18px;
  }
}
.l-header-nav__sns-item a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 769px) {
  .l-header-nav__sns-item a:hover {
    opacity: 0.7;
  }
}
.l-header-nav__close {
  position: absolute;
  top: 57px;
  right: 50px;
  width: 32px;
  height: 32px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 769px) {
  .l-header-nav__close:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .l-header-nav__close {
    top: 44px;
    right: 40px;
    width: 22px;
    height: 22px;
  }
}
.l-header-nav__close::before, .l-header-nav__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  background: #535353;
}
.l-header-nav__close::before {
  -webkit-transform: translate(-50%, -50%) rotateZ(45deg);
          transform: translate(-50%, -50%) rotateZ(45deg);
}
.l-header-nav__close::after {
  -webkit-transform: translate(-50%, -50%) rotateZ(-45deg);
          transform: translate(-50%, -50%) rotateZ(-45deg);
}
.l-header-shop {
  position: absolute;
  top: 50%;
  right: 64px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .l-header-shop {
    right: 30px;
  }
}
@media screen and (max-width: 768px) {
  .l-header-shop {
    right: 70px;
  }
}
.l-header-shop__link {
  display: inline-block;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: #535353;
  border: 1px solid #535353;
  border-radius: 21px;
  padding: 8px 40px;
  -webkit-transition: color 0.3s, background-color 0.3s, border-color 0.3s;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}
@media screen and (max-width: 768px) {
  .l-header-shop__link {
    font-size: 12px;
    padding: 4px 13px;
  }
}
.l-header-shop__link:hover {
  color: #fff;
  background-color: #535353;
}
.l-header-btn {
  position: absolute;
  top: 50%;
  left: 48px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 54px;
  height: 13px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 769px) {
  .l-header-btn:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1024px) {
  .l-header-btn {
    left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .l-header-btn {
    left: auto;
    right: 15px;
    width: 32px;
    height: 8px;
  }
}
.l-header-btn::before, .l-header-btn::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #535353;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.l-header-btn::before {
  top: 0;
}
.l-header-btn::after {
  bottom: 0;
}
.l-header__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.l-footer__container {
  padding: 124px 0 74px;
}
@media screen and (max-width: 768px) {
  .l-footer__container {
    padding: 76px 0 86px;
  }
}
.l-footer__logo {
  text-align: center;
  margin-bottom: 78px;
}
@media screen and (max-width: 768px) {
  .l-footer__logo {
    max-width: 96px;
    margin: 0 auto 56px;
  }
}
.l-footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 20px;
  margin-bottom: 76px;
}
@media screen and (max-width: 768px) {
  .l-footer__sns {
    gap: 0 12px;
    margin-bottom: 55px;
  }
}
.l-footer__sns a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 769px) {
  .l-footer__sns a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__sns img {
    width: 16px;
  }
}
.l-footer__copyright {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  text-align: center;
  color: #747474;
}

.l-breadcrumb {
  padding: 0 15px;
}
.l-breadcrumb__container {
  max-width: 1800px;
  border-bottom: 1px solid #535353;
  padding-bottom: 200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-breadcrumb__container {
    padding-bottom: 48px;
  }
}
.l-breadcrumb__list {
  max-width: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-breadcrumb__list {
    padding: 0 15px;
  }
}
.l-breadcrumb__item {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  .l-breadcrumb__item {
    font-size: 12px;
  }
}
.l-breadcrumb__item:not(:last-of-type) {
  position: relative;
  padding-right: 16px;
}
.l-breadcrumb__item:not(:last-of-type)::after {
  content: ">";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 3px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-breadcrumb__link {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 769px) {
  .l-breadcrumb__link:hover {
    opacity: 0.7;
  }
}

.l-side-cta {
  background: #7E88B7;
}
@media screen and (max-width: 768px) {
  .l-side-cta {
    background: none;
  }
}
.l-side-cta__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  max-width: 900px;
  padding: 126px 15px 155px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-side-cta__container {
    display: block;
    padding: 0;
  }
}
.l-side-cta-shop {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
  max-width: 360px;
}
@media screen and (max-width: 768px) {
  .l-side-cta-shop {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .l-side-cta-shop__head {
    background: url(../img/common/bg_aside01.webp) no-repeat center/cover;
    padding: 178px 0 154px;
  }
}
.l-side-cta-shop__title {
  font-size: 16px;
  letter-spacing: 0.25em;
  text-align: center;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .l-side-cta-shop__title {
    font-size: 12px;
    text-align: center;
    color: #7E88B7;
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.l-side-cta-shop__title-en {
  display: block;
  font-family: "Shippori Mincho", serif;
  font-size: 28px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .l-side-cta-shop__title-en {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .l-side-cta-shop__body {
    background: #7E88B7;
    padding: 62px 30px 103px;
  }
}
@media screen and (max-width: 768px) {
  .l-side-cta-shop__wrap {
    position: relative;
    padding-left: 15px;
  }
  .l-side-cta-shop__wrap::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-48%);
            transform: translateY(-48%);
    width: 1px;
    height: 90%;
    background: #fff;
  }
}
.l-side-cta-shop__text {
  font-size: 12px;
  line-height: 2.3;
  color: #fff;
  margin-bottom: 24px;
}
.l-side-cta-shop__btn {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-side-cta-shop__btn {
    text-align: left;
  }
}
.l-side-cta-faq {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
  max-width: 360px;
}
@media screen and (max-width: 768px) {
  .l-side-cta-faq {
    max-width: calc(100% - 30px);
    border-bottom: 1px solid #535353;
    padding: 100px 0;
    margin: 0 auto;
  }
}
.l-side-cta-faq__title {
  font-size: 16px;
  letter-spacing: 0.25em;
  text-align: center;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .l-side-cta-faq__title {
    font-size: 12px;
    color: #535353;
    border: none;
    padding-bottom: 0;
    margin-bottom: 60px;
  }
}
.l-side-cta-faq__title-en {
  display: block;
  font-family: "Shippori Mincho", serif;
  font-size: 28px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.l-side-cta-faq__btn {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-side-cta-faq__btn .c-btn02 {
    color: #535353;
  }
}
@media screen and (max-width: 768px) {
  .l-side-cta-faq__btn .c-btn02::before {
    border-color: #535353;
  }
}
@media screen and (max-width: 768px) {
  .l-side-cta-faq__btn .c-btn02::after {
    background-image: url(../img/common/icon_chevron_r01.svg);
  }
}

.c-btn01, .c-btn03, .c-btn04, .c-btn02 {
  position: relative;
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 13px;
  letter-spacing: 0.3em;
  padding: 13px 55px 13px 0;
}
@media screen and (max-width: 768px) {
  .c-btn01, .c-btn03, .c-btn04, .c-btn02 {
    font-size: 12px;
    padding: 7px 36px 7px 0;
  }
}
.c-btn01::before, .c-btn03::before, .c-btn04::before, .c-btn02::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 39px;
  height: 39px;
  border: 1px solid #535353;
  border-radius: 50%;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
}
@media screen and (max-width: 768px) {
  .c-btn01::before, .c-btn03::before, .c-btn04::before, .c-btn02::before {
    width: 27px;
    height: 27px;
  }
}
.c-btn01::after, .c-btn03::after, .c-btn04::after, .c-btn02::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 13px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 14px;
  background: url(../img/common/icon_chevron_r01.svg) no-repeat center/contain;
  -webkit-transition: background-image 0.3s;
  transition: background-image 0.3s;
}
@media screen and (max-width: 768px) {
  .c-btn01::after, .c-btn03::after, .c-btn04::after, .c-btn02::after {
    right: 9px;
    width: 8px;
    height: 10px;
  }
}
.c-btn01:hover::before, .c-btn03:hover::before, .c-btn04:hover::before, .c-btn02:hover::before {
  background-color: #7E88B7;
  border-color: #7E88B7;
}
.c-btn01:hover::after, .c-btn03:hover::after, .c-btn04:hover::after, .c-btn02:hover::after {
  background-image: url(../img/common/icon_chevron_r02.svg);
}
.c-btn02 {
  font-size: 16px;
  color: #fff;
  padding: 15px 60px 15px 0;
}
@media screen and (max-width: 768px) {
  .c-btn02 {
    font-size: 12px;
    padding: 7px 36px 7px 0;
  }
}
.c-btn02::before {
  width: 46px;
  height: 46px;
  border-color: #fff;
}
@media screen and (max-width: 768px) {
  .c-btn02::before {
    width: 27px;
    height: 27px;
  }
}
.c-btn02::after {
  content: "";
  right: 15px;
  width: 12px;
  height: 16px;
  background-image: url(../img/common/icon_chevron_r02.svg);
}
@media screen and (max-width: 768px) {
  .c-btn02::after {
    right: 9px;
    width: 8px;
    height: 10px;
  }
}
.c-btn02:hover::before {
  background-color: #fff;
}
.c-btn02:hover::after {
  background-image: url(../img/common/icon_chevron_r01.svg);
}
.c-btn03, .c-btn04 {
  display: block;
  max-width: 286px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.1em;
  color: #7E88B7;
  background: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 0 10px #7E88B7;
          box-shadow: 0 0 10px #7E88B7;
  padding: 14px 0;
}
@media screen and (max-width: 768px) {
  .c-btn03, .c-btn04 {
    max-width: 161px;
    font-size: 12px;
    padding: 17px 25px 17px 0;
  }
}
.c-btn03::before, .c-btn04::before {
  right: 8px;
  width: 27px;
  height: 27px;
  border-color: #7E88B7;
}
.c-btn03::after, .c-btn04::after {
  content: "";
  right: 17px;
  width: 8px;
  height: 10px;
  background-image: url(../img/common/icon_chevron_r03.svg);
}
.c-btn03:hover::before, .c-btn04:hover::before {
  background-color: #7E88B7;
}
.c-btn03:hover::after, .c-btn04:hover::after {
  background-image: url(../img/common/icon_chevron_r04.svg);
}
.c-btn04 {
  max-width: 363px;
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(153, 184, 207)), to(rgb(126, 136, 183)));
  background: linear-gradient(to bottom, rgb(153, 184, 207) 0%, rgb(126, 136, 183) 100%);
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media screen and (max-width: 768px) {
  .c-btn04 {
    max-width: 225px;
    padding-right: 0;
  }
}
.c-btn04::before {
  border-color: #fff;
}
.c-btn04::after {
  background-image: url(../img/common/icon_chevron_r04.svg);
}
.c-btn04:hover::before {
  background-color: #fff;
}
.c-btn04:hover::after {
  background-image: url(../img/common/icon_chevron_r03.svg);
}

.c-title01__en {
  position: relative;
  font-size: 108px;
  line-height: 1;
  color: #7E88B7;
}
@media screen and (max-width: 768px) {
  .c-title01__en {
    font-size: 46px;
  }
}
.c-title01__en::before {
  content: "";
  position: absolute;
  top: 30px;
  left: -55px;
  width: 50px;
  height: 40px;
  background: url(../img/common/icon_stack01.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .c-title01__en::before {
    top: 10px;
    left: -33px;
    width: 28px;
    height: 22px;
  }
}
.c-title01__ja {
  display: block;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-title01__ja {
    font-size: 17px;
  }
}
.c-title02, .c-title02--white {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .c-title02, .c-title02--white {
    font-size: 12px;
    padding: 0 15px;
  }
}
.c-title02__wrap {
  position: relative;
}
.c-title02__wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 20px);
  width: 80px;
  height: 1px;
  background: currentColor;
}
@media screen and (max-width: 768px) {
  .c-title02__wrap::after {
    left: calc(100% + 15px);
  }
}
.c-title02--white {
  color: #fff;
}
.c-title03, .c-title03--spwhite, .c-title03--white, .c-title03--mincho {
  position: relative;
  font-family: "Lato", sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 140px;
}
@media screen and (max-width: 768px) {
  .c-title03, .c-title03--spwhite, .c-title03--white, .c-title03--mincho {
    font-size: 14px;
    margin-bottom: 95px;
  }
}
.c-title03::after, .c-title03--spwhite::after, .c-title03--white::after, .c-title03--mincho::after {
  content: "";
  position: absolute;
  top: calc(100% + 25px);
  left: 50%;
  width: 1px;
  height: 80px;
  background: currentColor;
  -webkit-animation: line 2.5s infinite;
          animation: line 2.5s infinite;
}
@media screen and (max-width: 768px) {
  .c-title03::after, .c-title03--spwhite::after, .c-title03--white::after, .c-title03--mincho::after {
    top: calc(100% + 10px);
    height: 60px;
  }
}
.c-title03--mincho {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
}
.c-title03--white {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .c-title03--spwhite {
    color: #fff;
  }
}

/* アイコン用 */
/* フォーム用 */
.c-text01 {
  font-size: 16px;
  line-height: 2.25;
}
@media screen and (max-width: 768px) {
  .c-text01 {
    font-size: 14px;
    line-height: 1.85;
  }
}

/* ナビ用 */
/* 画像用 */
/* リスト用 */
.c-list01__item {
  position: relative;
  font-size: 16px;
  line-height: 1.875;
  padding-left: 1.7em;
}
@media screen and (max-width: 768px) {
  .c-list01__item {
    font-size: 14px;
    line-height: 2;
  }
}
.c-list01__item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0.3em;
}
.c-list02 {
  counter-reset: list-num;
}
.c-list02__item {
  position: relative;
  font-size: 15px;
  line-height: 1.74;
  padding-left: 1.7em;
}
@media screen and (max-width: 768px) {
  .c-list02__item {
    font-size: 13px;
  }
}
.c-list02__item::before {
  counter-increment: list-num;
  content: counter(list-num) ".";
  position: absolute;
  top: 0;
  left: 0;
}

/* テーブル用 */
.c-table01 {
  width: 100%;
}
.c-table01 tr:not(:last-of-type) {
  border-bottom: 1px solid #CECECE;
}
.c-table01 th {
  width: 25%;
  font-size: 18px;
  font-weight: 700;
  vertical-align: middle;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .c-table01 th {
    width: 110px;
    font-size: 16px;
    padding: 15px 0;
  }
}
.c-table01 td {
  font-size: 16px;
  vertical-align: middle;
  line-height: 2;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .c-table01 td {
    font-size: 14px;
    padding: 15px 0;
  }
}
.c-table01 small {
  font-size: 12px;
}
.c-table01 a {
  text-decoration: underline;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 769px) {
  .c-table01 a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
}

/* 罫線用 */
/* ビデオ用 */
/* スライド用 */
/* カード用 */
/* その他 */
.p-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10000001;
  max-width: 1000px;
  max-height: 90%;
  width: calc(100% - 30px);
  background: #FAF6F3;
  overflow-y: auto;
}
.p-modal__close {
  position: absolute;
  top: 30px;
  right: 28px;
  width: 25px;
  height: 25px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media screen and (min-width: 769px) {
  .p-modal__close:hover {
    opacity: 0.7;
  }
}
.p-modal__close::before, .p-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotateZ(45deg);
          transform: translate(-50%, -50%) rotateZ(45deg);
  width: 35px;
  height: 1px;
  background: #535353;
}
.p-modal__close::after {
  -webkit-transform: translate(-50%, -50%) rotateZ(-45deg);
          transform: translate(-50%, -50%) rotateZ(-45deg);
}
.p-modal__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000000;
  width: 100vw;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.p-modal-shop__content {
  padding: 68px 30px 60px;
}
@media screen and (max-width: 768px) {
  .p-modal-shop__content {
    padding: 60px 30px;
  }
}
.p-modal-shop__title {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 50px;
}
.p-modal-shop__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 27px 0;
}
.p-modal-shop__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
.p-modal-shop__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 346px;
  width: 100%;
  height: 50px;
  border: 1px solid #535353;
  border-radius: 25px;
  margin: 0 auto 6px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 769px) {
  .p-modal-shop__link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .p-modal-shop__link {
    max-width: 227px;
    margin-bottom: 4px;
  }
}
.p-modal-shop__text {
  font-size: 14px;
  line-height: 2.1;
  letter-spacing: 0.025em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-modal-shop__text {
    font-size: 12px;
  }
}