@charset "UTF-8";
* {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
button {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

html,body {
  overflow-x: hidden;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
  display: block;
}

body {
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  background: #e9f6f8;
  color: #4a3636;
  z-index: 1;
}

img {
  max-width: 100%;
  height: auto;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #4a3636;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.util-title {
  text-align: center;
  position: relative;
}

.util-title-icon {
  width: 37.33px;
  height: 37.33px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 6px;
}
@media screen and (min-width: 1280px) {
  .util-title-icon {
    width: 48px;
    height: 48px;
  }
}

.util-title-en {
  color: #4a3636;
  text-align: center;
  font-family: "Courgette", cursive;
  font-size: 16px;
  line-height: 20px;
}
@media screen and (min-width: 1280px) {
  .util-title-en {
    font-size: 20px;
  }
}

.util-title-jp {
  color: #4a3636;
  text-align: center;
  font-family: "Kiwi Maru", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
  border-bottom: 6px solid #ffee56;
  padding-bottom: 7px;
  display: inline-block;
}
@media screen and (min-width: 767px) {
  .util-title-jp {
    font-size: 25px;
  }
}
@media screen and (min-width: 1280px) {
  .util-title-jp {
    font-size: 32px;
  }
}

@media screen and (min-width: 1280px) {
  .pc--hidden {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .pc--hidden {
    display: none;
  }
}

.tb--hidden {
  display: none;
}
@media screen and (min-width: 767px) {
  .tb--hidden {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .tb--hidden {
    display: block !important;
  }
}

header {
  height: 64px;
  margin-bottom: 0;
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
}
@media screen and (min-width: 1280px) {
  header {
    width: 100%;
    height: 64px;
  }
}

.header__inner {
  height: 64px;
  display: flex;
  align-items: center;
  padding: 16px 20px;
}
@media screen and (min-width: 1280px) {
  .header__inner {
    padding-left: 24px;
    padding-right: 24px;
    height: 64px;
  }
}

.header__logo a {
  width: 210px;
  height: auto;
}
.header__logo a img {
  width: 210px;
  height: auto;
  display: block;
}
@media screen and (min-width: 1280px) {
  .header__logo a {
    width: 183px;
    height: auto;
  }
  .header__logo a img {
    width: 183px;
    height: auto;
    display: block;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 1280px) {
  .header__nav {
    font-size: 12px;
    display: flex;
    align-items: center;
    padding-top: 0px;
    gap: 12px;
    margin-left: auto;
  }
}

.header__nav-title:hover {
  color: #67b0c7;
  -webkit-text-decoration-color: #67b0c7;
  text-decoration-color: #67b0c7;
}
.header__nav-button {
  display: flex;
  height: 40px;
  padding: 6px 24px 8px 24px;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #ffffff;
  box-shadow: 0px 4px 0px 0px #4a3636;
}
.header__nav-button:hover {
  background: #ffee56;
}

.drawer__icon {
  position: fixed;
  top: 18px;
  right: 20px;
  width: 33px;
  height: 24px;
  z-index: 30;
}
@media screen and (min-width: 1280px) {
  .drawer__icon {
    display: none;
  }
}

.drawer__icon-bars {
  width: 100%;
  height: 100%;
  position: relative;
  background: inherit;
  border: none;
  cursor: pointer;
  transition: transform 0.3s linear, top 0.3s linear;
}
.drawer__icon-bars .drawer__icon-bar {
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  top: 0;
  left: 0;
  width: 36px;
  height: 3px;
  border-radius: 6px;
  background: #4a3636;
  transition: transform 0.3s linear, top 0.3s linear;
}
.drawer__icon-bars .drawer__icon-bar:nth-child(1) {
  width: 27.6px;
}
.drawer__icon-bars .drawer__icon-bar:nth-child(2) {
  top: 12px;
}
.drawer__icon-bars .drawer__icon-bar:nth-child(3) {
  top: 24px;
}
.drawer__icon-bars.is--checked .drawer__icon-bar:nth-of-type(1) {
  display: none;
}
.drawer__icon-bars.is--checked .drawer__icon-bar:nth-of-type(2) {
  top: 10px;
  transform: rotate(45deg);
  width: 30px;
}
.drawer__icon-bars.is--checked .drawer__icon-bar:nth-of-type(3) {
  top: 10px;
  transform: rotate(-45deg);
  width: 30px;
}
.drawer__icon-bars .drawer__icon-bar .drawer__icon-dot {
  position: absolute;
  top: 0;
  right: 0;
  left: 30px;
  width: 5px;
  height: 3px;
  background: #4a3636;
  border-radius: 6px;
}

.drawer__nav-button {
  width: 100%;
  display: flex;
  height: 40px;
  margin-top: 40px;
  padding: 6px 18px 8px 18px;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #ffffff;
  box-shadow: 0px 4px 0px 0px #4a3636;
  font-size: 16px;
}
@media screen and (min-width: 767px) {
  .drawer__nav-button {
    margin-top: 60px;
  }
}
.drawer__nav-button:hover {
  background: #ffee56;
}

.drawer__overlay {
  text-align: center;
  background: #ffffff;
  position: fixed;
  top: 64px;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateX(100%);
  transition: transform 0.3s linear;
}
.drawer__overlay.is--checked {
  transform: translateX(0);
}

.drawer__header {
  width: 141.74px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 82px;
  font-size: 14px;
  line-height: 22px;
}
@media screen and (min-width: 767px) {
  .drawer__header {
    width: 260px;
    font-size: 18px;
  }
}
.drawer__header li + li {
  margin-top: 40px;
}
@media screen and (min-width: 767px) {
  .drawer__header li + li {
    margin-top: 60px;
  }
}

.main-visual {
  margin-top: 64px;
}
.main-visual__bg {
  background: url(img/onomichi-main-pc.png) no-repeat center center/cover;
  height: 554px;
  position: relative;
}
@media screen and (min-width: 1280px) {
  .main-visual__bg {
    height: 738px;
  }
}

.main__subtitle {
  color: #4a3636;
  text-align: center;
  text-shadow: 0px 0px 30px #fff;
  font-family: "Kiwi Maru", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 17.5px;
  padding-top: 17px;
}
@media screen and (min-width: 1280px) {
  .main__subtitle {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    padding-top: 34px;
  }
}

.main-visual__top {
  max-width: 335px;
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .main-visual__top {
    max-width: 520px;
    margin-top: 24px;
  }
}

.main-visual__bottom {
  max-width: 239.87px;
  margin-top: 12px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .main-visual__bottom {
    max-width: 359px;
    margin-top: 15px;
  }
}

.main__phone-background {
  margin-top: 113px;
  margin-right: auto;
  margin-left: auto;
  width: 200px;
  height: 408px;
  position: relative;
}
@media screen and (min-width: 1280px) {
  .main__phone-background {
    margin-top: 33px;
    width: 240px;
    height: 489.6px;
  }
}

.main__phone-img {
  width: 100%;
  height: 100%;
  background: url(img/img_smartphone@3x.png) no-repeat center center/contain;
  position: absolute;
  z-index: 2; /* 背景画像を持つ要素のz-indexを設定 */
  top: 0;
  left: 0;
}
@media screen and (min-width: 1280px) {
  .main__phone-img {
    width: 249px;
    height: 517.6px;
  }
}

.main__top-left {
  width: 142px;
  height: 80px;
  position: absolute;
  top: -96px;
  left: -70px;
}
@media screen and (min-width: 1280px) {
  .main__top-left {
    width: 237px;
    height: 144px;
    flex-shrink: 0;
    top: -32px;
    left: -263px;
  }
}
.main__top-right {
  width: 110px;
  height: 110px;
  position: absolute;
  top: -105px;
  right: -42px;
  z-index: 1;
}
@media screen and (min-width: 1280px) {
  .main__top-right {
    width: 180px;
    height: 180px;
    top: -18px;
    right: -177px;
  }
}
.main__bottom-left {
  width: 84px;
  height: 141px;
  position: absolute;
  bottom: -17px;
  left: -66px;
  z-index: 3;
}
@media screen and (min-width: 1280px) {
  .main__bottom-left {
    width: 205px;
    height: 335px;
    bottom: -47px;
    left: -302px;
  }
}
.main__bottom-right-1 {
  width: 62px;
  height: 69px;
  position: absolute;
  bottom: 47px;
  right: -66px;
  z-index: 3;
}
@media screen and (min-width: 1280px) {
  .main__bottom-right-1 {
    width: 170px;
    height: 190px;
    bottom: 24px;
    right: -238px;
  }
}
.main__bottom-right-2 {
  width: 98px;
  height: 72px;
  position: absolute;
  bottom: -11px;
  right: -57px;
  z-index: 3;
}
@media screen and (min-width: 1280px) {
  .main__bottom-right-2 {
    width: 233px;
    height: 174px;
    bottom: -83px;
    right: -300px;
  }
}
.about {
  margin-top: 188px;
}
@media screen and (min-width: 1280px) {
  .about {
    margin-top: 179px;
  }
}

.about__bg {
  max-width: 335px;
  margin-right: auto;
  margin-left: auto;
  padding: 40px 12px;
  border-radius: 24px;
  text-align: center;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 767px) {
  .about__bg {
    max-width: 700px;
  }
}
@media screen and (min-width: 1280px) {
  .about__bg {
    max-width: 848px;
  }
}

.about_item {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.cat-foot-img {
  width: 54px;
  height: 120px;
  position: absolute;
  top: -11px;
  right: -20px;
  z-index: -2;
}
@media screen and (min-width: 767px) {
  .cat-foot-img {
    width: 100px;
    height: 220px;
    position: absolute;
    top: -80px;
    right: -84px;
    z-index: 1;
  }
}
@media screen and (min-width: 1280px) {
  .cat-foot-img {
    width: 100px;
    height: 220px;
    position: absolute;
    top: -80px;
    right: -166px;
    z-index: 1;
  }
}
.about__title {
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 1280px) {
  .about__title {
    margin-top: 4px;
  }
}

.about__title-jp {
  margin-top: 7px;
  padding-bottom: 5px;
}
@media screen and (min-width: 1280px) {
  .about__title-jp {
    margin-top: 17px;
    padding-bottom: 18px;
  }
}

.about__title-left-img {
  position: absolute;
  top: 32px;
  left: 34px;
  width: 88px;
  height: 66px;
  z-index: 10;
}
@media screen and (min-width: 767px) {
  .about__title-left-img {
    width: 145px;
    height: 140px;
    left: 66px;
    top: 8px;
  }
}
@media screen and (min-width: 1280px) {
  .about__title-left-img {
    width: 145px;
    height: 114px;
    left: 83px;
    top: 43px;
  }
}

.about__title-right-img {
  position: absolute;
  top: 32px;
  right: 20px;
  width: 88px;
  height: 66px;
  z-index: 10;
}
@media screen and (min-width: 767px) {
  .about__title-right-img {
    width: 145px;
    height: 140px;
    right: 66px;
    top: 8px;
  }
}
@media screen and (min-width: 1280px) {
  .about__title-right-img {
    width: 145px;
    height: 114px;
    top: 48px;
    right: 86px;
  }
}

.about__sub-title {
  margin-top: 24px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
}
@media screen and (min-width: 1280px) {
  .about__sub-title {
    font-size: 16px;
  }
}
@media screen and (min-width: 767px) {
  .about__sub-title {
    font-size: 16px;
  }
}

.about__sub-title-pc {
  display: none;
}
@media screen and (min-width: 1280px) {
  .about__sub-title-pc {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 25.6px;
    text-align: center;
    margin-top: 33px;
  }
}

.about__text {
  font-size: 12px;
  line-height: 19.2px;
  position: relative;
  margin-top: 18px;
  z-index: 3;
}
@media screen and (min-width: 767px) {
  .about__text {
    font-size: 16px;
    line-height: 28px;
    text-align: center;
  }
}
@media screen and (min-width: 1280px) {
  .about__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 25.6px;
    text-align: center;
    margin-top: 33px;
  }
}
.about__text a {
  text-decoration: underline;
}
.about__text a:hover {
  color: #67b0c7;
}
.about__text strong {
  font-size: 12px;
}
@media screen and (min-width: 1280px) {
  .about__text strong {
    font-size: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .about__text:nth-of-type(2) {
    margin-top: 26px;
  }
  .about__text:nth-of-type(3) {
    margin-top: 28px;
  }
  .about__text:nth-of-type(4) {
    margin-top: 26px;
  }
}

.about__text-bottom {
  margin-top: 32px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 22.4px;
  padding-bottom: 5px;
  display: inline-block;
  border-bottom: 2px dashed #9ed0e0;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 767px) {
  .about__text-bottom {
    font-size: 18px;
  }
}
@media screen and (min-width: 1280px) {
  .about__text-bottom {
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    text-align: center;
    margin-top: 44px;
    padding-bottom: 10px;
  }
}

.about__button {
  width: 192px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  font-weight: 700;
  margin-top: 26px;
  display: flex;
  height: 40px;
  padding: 6px 22px 8px 22px;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #ffffff;
  box-shadow: 0px 4px 0px 0px #4a3636;
  line-height: 25.6px;
  position: relative;
  z-index: 3;
  cursor: pointer;
}
@media screen and (min-width: 1280px) {
  .about__button {
    font-size: 20px;
    width: 260px;
    height: 56px;
    font-size: 20px;
    padding: 12px 37px 12px 37px;
    margin-top: 32px;
  }
}
.about__button:hover {
  background: #ffee56;
}
.about__button a {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 1280px) {
  .about__button a {
    font-size: 20px;
  }
}

.about__bg-left-img {
  width: 200px;
  height: 200px;
  position: absolute;
  top: 395px;
  left: -160px;
}
@media screen and (min-width: 1280px) {
  .about__bg-left-img {
    top: 73px;
    left: -670px;
    width: 480px;
    height: 480px;
    z-index: 10;
  }
}
.about__bg-left-square-img {
  display: none;
}
@media screen and (min-width: 1280px) {
  .about__bg-left-square-img {
    display: block;
    width: 250px;
    height: 250px;
    position: absolute;
    top: -22px;
    left: -354px;
    z-index: 9;
  }
}

.about__bg-right-img {
  width: 200px;
  height: 200px;
  position: absolute;
  top: 274px;
  right: -160px;
}
.about__bg-right-img img {
  width: 200px;
  height: 200px;
}
@media screen and (min-width: 1280px) {
  .about__bg-right-img {
    top: 71px;
    right: -617px;
    width: 480px;
    height: 480px;
  }
  .about__bg-right-img img {
    width: 480px;
    height: 480px;
  }
}

.about__bg-triangle {
  width: 100px;
  height: 36px;
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1280px) {
  .about__bg-triangle {
    width: 136px;
    height: 36px;
  }
}

.about__right-stone-img {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 719px;
  right: 2px;
  display: block !important;
}
@media screen and (min-width: 1280px) {
  .about__right-stone-img {
    width: 100px;
    height: 100px;
    top: -8px;
    left: 52px;
  }
}

.about__right-pochette-img {
  width: 133px;
  height: 65px;
  position: absolute;
  top: 762px;
  right: 37px;
}
@media screen and (min-width: 1280px) {
  .about__right-pochette-img {
    width: 308px;
    height: 150.6px;
    position: absolute;
    top: 760px;
    right: -260px;
  }
}

@media screen and (min-width: 1280px) {
  .about__right-wave {
    display: block;
    position: absolute;
    width: 844px;
    height: 12.01px;
    top: 607px;
    left: 878px;
    z-index: 10;
  }
}
@media screen and (min-width: 1280px) {
  .gallery {
    margin-top: 9px;
  }
}

.gallery__bg {
  position: relative;
  z-index: 1;
  padding-bottom: 21px;
}

.gallery__left-img {
  transform: scale(0.35);
  position: absolute;
  top: -211px;
  left: -137px;
}
@media screen and (min-width: 767px) {
  .gallery__left-img {
    transform: scale(1);
    top: -161px;
    left: -117px;
    scale: 0.5;
  }
}
@media screen and (min-width: 1280px) {
  .gallery__left-img {
    top: -1330px;
    left: -528px;
    scale: 0.33;
  }
}

.gallery__onomichi-text-img {
  position: relative;
  margin-top: 0;
}
@media screen and (min-width: 767px) {
  .gallery__onomichi-text-img {
    position: relative;
    z-index: 1;
    width: 890.6px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 21px;
  }
}
@media screen and (min-width: 1280px) {
  .gallery__onomichi-text-img {
    position: relative;
    z-index: 1;
    width: 74%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 21px;
  }
}
.gallery__onomichi-text-img img {
  position: absolute;
  width: 355px;
  top: 115px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1280px) {
  .gallery__onomichi-text-img img {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 767px) {
  .gallery__onomichi-text-img img {
    width: 80%;
    height: auto;
  }
}

.gallery__swiper {
  padding-top: 200px;
}
@media screen and (min-width: 767px) {
  .gallery__swiper {
    margin-top: 60px;
  }
}
@media screen and (min-width: 1280px) {
  .gallery__swiper {
    margin-top: 50px;
  }
}

.gallery__slide {
  width: 100px;
  height: 100px;
}
@media screen and (min-width: 767px) {
  .gallery__slide {
    width: 200px;
    height: 200px;
  }
}
@media screen and (min-width: 1280px) {
  .gallery__slide {
    height: 200px;
    width: 200px;
  }
}
.gallery__wrapper {
  margin-top: -45px;
}
@media screen and (min-width: 1280px) {
  .gallery__wrapper {
    margin-top: -23px;
  }
}

.enter {
  margin-top: 74px;
}
@media screen and (min-width: 1280px) {
  .enter {
    margin-top: 128px;
  }
}

.enter__bg {
  position: relative;
  max-width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 36px;
}

.enter__title {
  position: relative;
  text-align: center;
  z-index: 5;
}

.enter__icon {
  margin-top: -6px;
}

@media screen and (min-width: 1280px) {
  .enter__title-en {
    margin-top: 11px;
  }
}

.enter__title-jp {
  margin-top: 5px;
}
@media screen and (min-width: 1280px) {
  .enter__title-jp {
    margin-top: 18px;
    padding-bottom: 17px;
  }
}

.enter__left-img-map {
  position: absolute;
  width: 44%;
  max-width: 149px;
  height: auto;
  top: -3px;
  left: -21px;
}
@media screen and (min-width: 767px) {
  .enter__left-img-map {
    width: 298px;
    max-width: 298px;
    top: -60px;
    left: -64px;
  }
}
@media screen and (min-width: 1280px) {
  .enter__left-img-map {
    width: 460px;
    max-width: 460px;
    top: -59px;
    left: 21px;
  }
}

.enter__left-img-2 {
  position: absolute;
  width: 18%;
  max-width: 55px;
  height: auto;
  top: 548px;
  left: -1px;
}
@media screen and (min-width: 1280px) {
  .enter__left-img-2 {
    width: 100px;
    max-width: 100px;
    height: auto;
    top: 577px;
    left: 15px;
  }
  .enter__left-img-2 img {
    width: 300px;
    height: auto;
  }
}

.enter__right-img-1 {
  position: absolute;
  width: 50%;
  max-width: 160px;
  height: auto;
  top: 0;
  right: -51px;
}
@media screen and (min-width: 767px) {
  .enter__right-img-1 {
    width: 320px;
    max-width: 320px;
  }
}

.enter__right-gold-cat {
  position: absolute;
  width: 50%;
  max-width: 160px;
  height: auto;
  top: 0;
  right: -51px;
}
@media screen and (min-width: 1280px) {
  .enter__right-gold-cat img {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 1280px) {
  .enter__right-gold-cat {
    top: -26px;
    max-width: 238px;
    right: 211px;
    width: 238px;
    height: 141px;
  }
}

.enter__right-black-cat {
  position: absolute;
  width: 50%;
  max-width: 160px;
  height: auto;
  top: 0;
  right: -51px;
}
@media screen and (min-width: 1280px) {
  .enter__right-black-cat {
    top: -19px;
    right: 88px;
    width: 214px;
    height: 181px;
    max-width: 214px;
  }
}

.enter__right-pawpads {
  position: absolute;
  width: 50%;
  max-width: 160px;
  height: auto;
  top: 0;
  right: -51px;
}
@media screen and (min-width: 1280px) {
  .enter__right-pawpads {
    top: 146px;
    right: 13px;
    width: 100px;
    height: 220px;
  }
}

.enter__right-img-2 {
  position: absolute;
  width: 18%;
  max-width: 55px;
  height: auto;
  top: 877px;
  right: 0;
}
@media screen and (min-width: 767px) {
  .enter__right-img-2 {
    display: none;
  }
}

.enter__items {
  margin-top: 32px;
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 767px) {
  .enter__items {
    display: flex;
    max-width: 969px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1280px) {
  .enter__items {
    margin-top: 39px;
    justify-content: space-between;
    max-width: 1008px;
  }
}

.enter__item {
  text-align: center;
}
@media screen and (min-width: 767px) {
  .enter__item {
    width: 30.5%;
  }
}
@media screen and (min-width: 1280px) {
  .enter__item {
    position: relative;
  }
}

@media screen and (min-width: 1280px) {
  .enter__item-center {
    margin-top: 66px;
  }
}

.enter__item-img {
  width: 196px;
  height: 210px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 767px) {
  .enter__item-img {
    width: 100%;
    max-width: 280px;
    height: auto;
  }
}
.enter__item-title {
  margin-top: 16px;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%; /* 25.6px */
}
@media screen and (min-width: 1280px) {
  .enter__item-title {
    margin-top: 27px;
    font-size: 20px;
    margin-bottom: 16px;
  }
}

.enter__item-text {
  margin-top: 16px;
  line-height: 1.59;
}
@media screen and (min-width: 1280px) {
  .enter__item-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 25.6px;
    text-align: center;
    width: 103%;
    margin-top: 15px;
  }
}
.enter__item-text a {
  text-decoration: underline;
}
.enter__item-text a:hover {
  color: #67b0c7;
}

.enter__item-btn {
  background: #ffffff;
  width: 226px;
  height: 38px;
  margin-top: 16px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1280px) {
  .enter__item-btn {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.6; /* 25.6px */
    width: 254px;
    height: 42px;
    padding: 3px 12px 8px 12px;
    gap: 8px;
    opacity: 0px;
    font-size: 16px;
  }
}

.enter__follow-button {
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.enter__follow-button:hover {
  border: 1px solid #67b0c7;
}

.enter__follow-button__icon {
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 1280px) {
  .enter__follow-button__icon {
    width: 24px;
    height: 24px;
  }
  .enter__follow-button__icon img {
    width: 100%;
    height: auto;
  }
}

.enter__follow-button-text {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 22.4px;
  margin-left: 8px;
}
@media screen and (min-width: 1280px) {
  .enter__follow-button-text {
    font-size: 16px;
  }
}

.connect__icon {
  margin-top: 16px;
  width: 7px;
  height: 34px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 767px) {
  .connect__icon {
    transform: rotate(90deg);
    margin-top: 100px;
  }
}
.connect__icon img {
  width: 7px;
  height: 34px;
}

@media screen and (min-width: 1280px) {
  .connect__icon-pc {
    position: absolute;
    top: 204px;
    left: 247px;
    width: 113px;
    height: 24px;
  }
}
@media screen and (min-width: 1280px) {
  .connect__icon-pc-second {
    position: absolute;
    top: 139px;
    left: 259px;
    width: 113px;
    height: 24px;
  }
}
.enter__button {
  width: 100%;
  max-width: 335px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(12px, 4.26vw, 16px);
  margin-top: -21px;
  display: flex;
  height: 40px;
  padding: 6px 22px 8px 22px;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #ffffff;
  box-shadow: 0px 4px 0px 0px #4a3636;
  margin-bottom: 38.6px;
  cursor: pointer;
}
@media screen and (min-width: 767px) {
  .enter__button {
    margin-top: 36px;
  }
}
@media screen and (min-width: 1280px) {
  .enter__button {
    max-width: 437px;
    font-size: 20px;
    padding: 26px 36px 26px 36px;
    margin-top: 15px;
  }
}
.enter__button a {
  text-align: center;
  font-weight: 700;
}
.enter__button:hover {
  background: #ffee56;
}

@media screen and (min-width: 1280px) {
  .prize {
    margin-top: 126px;
  }
}

.prize__bg {
  width: 100%;
  height: auto;
  background: #ffffff;
  margin-top: -93px;
  padding-bottom: 34px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 374px) {
  .prize__bg {
    margin-top: -111px;
  }
}
@media screen and (min-width: 767px) {
  .prize__bg {
    max-width: 1024px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: -106px;
  }
}
@media screen and (min-width: 1280px) {
  .prize__bg {
    margin-top: -17px;
    padding-top: 30px;
  }
}

.prize__title-circle {
  width: 200px;
  height: 200px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  background: #ffffff;
  z-index: 2;
  display: flex;
  justify-content: center;
  overflow: visible;
}
@media screen and (min-width: 1280px) {
  .prize__title-circle {
    width: 330px;
    height: 165px;
    border-radius: 165px 165px 0 0;
    z-index: 2;
  }
}

.prize__title-triangle-left {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 25px 20px 25px;
  border-color: transparent transparent #ffffff transparent;
  position: absolute;
  top: 70px;
  left: -19px;
}
@media screen and (min-width: 1280px) {
  .prize__title-triangle-left {
    top: 132px;
  }
}

.prize__title-triangle-right {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 25px 20px 25px;
  border-color: transparent transparent #ffffff transparent;
  position: absolute;
  top: 68px;
  right: -19px;
}
@media screen and (min-width: 1280px) {
  .prize__title-triangle-right {
    top: 132px;
  }
}

@media screen and (min-width: 1280px) {
  .prize__title-top {
    display: flex;
    justify-content: space-between;
    width: 80%;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
  }
}

.prize__title-left {
  display: none;
}
@media screen and (min-width: 1280px) {
  .prize__title-left {
    display: block;
    width: 313px;
    margin-top: 28px;
  }
}
.prize__title-right {
  display: none;
}
@media screen and (min-width: 1280px) {
  .prize__title-right {
    display: block;
    width: 313px;
    margin-top: 29px;
  }
}
.prize__title {
  padding-top: 20px;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .prize__title {
    margin-top: 8px;
  }
}

.prize__icon {
  margin-top: 0;
}
@media screen and (min-width: 1280px) {
  .prize__icon {
    margin-top: 0;
  }
}

.prize__title-en {
  margin-top: 0;
}
@media screen and (min-width: 1280px) {
  .prize__title-en {
    margin-top: 9px;
  }
}

.prize__title-jp {
  margin-top: 5px;
}
@media screen and (min-width: 1280px) {
  .prize__title-jp {
    margin-top: 18px;
    width: 260px;
    padding-bottom: 17px;
  }
}

.prize__text {
  max-width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-top: -58px;
  z-index: 5;
  text-align: center;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (min-width: 767px) {
  .prize__text {
    width: 60%;
    font-size: 15px;
  }
}
@media screen and (min-width: 1280px) {
  .prize__text {
    margin-top: 34px;
    font-size: 16px;
    width: 100%;
  }
}

.prize__items {
  max-width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  padding-top: 141px;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列のフレキシブルなサイズ */
  gap: 39px 15px; /* 縦のギャップが39px、横のギャップが15px */
  justify-items: center; /* 水平方向に中央揃え */
  align-items: start; /* 垂直方向に上揃え */
}
@media screen and (min-width: 1280px) {
  .prize__items {
    padding-top: 79px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: calc(100% - 112px);
    gap: 0px;
  }
}

.prize__item {
  position: relative;
  width: 100%;
  background: #f5f5f5;
  border-radius: 8px;
}
@media screen and (min-width: 1280px) {
  .prize__item {
    border-radius: 20px;
  }
}
.prize__item .prize__item-img {
  overflow: hidden;
}
.prize__item .prize__item-img img {
  transition: all;
  aspect-ratio: 440/330;
}
.prize__item:hover {
  cursor: pointer;
  border: 3px solid #67b0c7;
  border-radius: 8px;
}
@media screen and (min-width: 1280px) {
  .prize__item:hover {
    border-radius: 20px;
  }
}
.prize__item:hover .prize__item-img img {
  transform: scale(1.2, 1.2);
  transition: 1s all;
}

.prize__items .prize__item:nth-of-type(5) {
  grid-column: span 2; /* 1列全体を占める */
  justify-self: center; /* 水平方向に中央揃え */
  align-self: center; /* 垂直方向に中央揃え */
  width: 48%;
  margin-top: 1px;
}

@media screen and (min-width: 1280px) {
  .prize__items .prize__item {
    flex: 0 0 calc(50% - 16px);
    margin-bottom: 81px;
  }
}

@media screen and (min-width: 1280px) {
  .prize__items .prize__item:nth-child(n+4) {
    flex-basis: calc(33.33% - 18px);
  }
}

.prize__item-no-icon {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: url(img/Star@3x.png) no-repeat center center/cover;
  padding-top: 5.76px;
  z-index: 2;
}
@media screen and (min-width: 767px) {
  .prize__item-no-icon {
    width: 60px;
    height: 60px;
  }
}
@media screen and (min-width: 1280px) {
  .prize__item-no-icon {
    top: -49px;
    width: 100px;
    height: 100px;
  }
}

.prize__item-no-text {
  color: #ffffff;
  text-align: center;
  font-size: 7.68px;
  font-weight: 700;
  line-height: 12.288px;
}
@media screen and (min-width: 767px) {
  .prize__item-no-text {
    font-size: 10px;
  }
}
@media screen and (min-width: 1280px) {
  .prize__item-no-text {
    font-size: 16px;
    margin-top: 10px;
  }
}

.prize__item-no {
  color: #ffffff;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  font-size: 23.04px;
  font-weight: 700;
}
@media screen and (min-width: 767px) {
  .prize__item-no {
    font-size: 28px;
    margin-top: 4px;
  }
}
@media screen and (min-width: 1280px) {
  .prize__item-no {
    font-size: 48px;
    margin-top: 10px;
  }
}

.prize__item-img {
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  z-index: 1;
}
@media screen and (min-width: 1280px) {
  .prize__item-img {
    border-top-right-radius: 17px;
    border-top-left-radius: 17px;
  }
}
.prize__item-text {
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 19px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 767px) {
  .prize__item-text {
    font-size: 15px;
  }
}
@media screen and (min-width: 1280px) {
  .prize__item-text {
    font-size: 20px;
    line-height: 1.6;
    margin: 36px auto;
  }
}

.prize__zoom-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 36px;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (min-width: 767px) {
  .prize__zoom-icon {
    width: 45px;
    height: 45px;
  }
}
@media screen and (min-width: 1280px) {
  .prize__zoom-icon {
    width: 100px;
    height: 100px;
  }
}
.prize__zoom-icon img {
  width: 100%;
  height: 100%;
  border-bottom-right-radius: 8px;
}
@media screen and (min-width: 1280px) {
  .prize__zoom-icon img {
    border-bottom-right-radius: 17px;
  }
}

@media screen and (min-width: 1280px) {
  .item-icon-s {
    width: 80px;
    height: 80px;
  }
}
@media screen and (min-width: 1280px) {
  .item-icon-s .prize__item-no-text {
    font-size: 12.8px;
  }
}
@media screen and (min-width: 1280px) {
  .item-icon-s .prize__item-no {
    font-size: 38.4px;
    line-height: 38.4px;
  }
}

@media screen and (min-width: 1280px) {
  .item-img-s {
    max-height: 237px !important;
  }
}

@media screen and (min-width: 1280px) {
  .item-text-s {
    font-size: 16px;
    line-height: 25.6px;
    margin-top: 18px;
    margin-bottom: 12px;
  }
}

@media screen and (min-width: 1280px) {
  .zoom-icon-s {
    width: 64px;
    height: 64px;
  }
}

.prize__item-modal {
  inset: 0;
  width: calc(100% - 40px);
  max-width: 335px;
  margin-left: auto;
  margin-right: auto;
  z-index: 5;
  height: 480px;
  border: none;
  padding: 0;
  border-radius: 24px;
}
.prize__item-modal::-webkit-backdrop {
  background: #4a3636;
  opacity: 0.5;
}
.prize__item-modal::backdrop {
  background: #4a3636;
  opacity: 0.5;
}
@media screen and (min-width: 767px) {
  .prize__item-modal {
    max-width: 480px;
    height: 686px;
  }
}

dialog img {
  width: 100%;
  height: 210px;
  -o-object-fit: cover;
  object-fit: cover;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}
@media screen and (min-width: 767px) {
  dialog img {
    height: 300px;
  }
}

.prize__item-modal-img {
  width: 100%;
  height: 210px;
}
@media screen and (min-width: 767px) {
  .prize__item-modal-img {
    height: 300px;
  }
}
.prize__item-modal-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  margin-top: 39px;
}
@media screen and (min-width: 767px) {
  .prize__item-modal-title {
    font-size: 18px;
  }
}

.prize__item-modal-text {
  margin-top: 12px;
  line-height: 19px;
  text-align: center;
  margin-left: 20px;
  margin-right: 20px;
}
@media screen and (min-width: 767px) {
  .prize__item-modal-text {
    margin-left: 40px;
    margin-right: 40px;
    font-size: 14px;
  }
}

.prize__item-modal-button {
  width: 96px;
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  display: flex;
  height: 40px;
  padding: 6px 22px 8px 22px;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #ffffff;
  box-shadow: 0px 4px 0px 0px #4a3636;
  font-weight: 700;
  cursor: pointer;
}
.prize__item-modal-button:hover {
  background: #ffee56;
}
.prize__item-modal-button:hover button {
  background: #ffee56;
}
@media screen and (min-width: 767px) {
  .prize__item-modal-button {
    margin-top: 32px;
  }
}
.prize__item-modal-button button {
  text-align: center;
  background: #ffffff;
}

.prize__button {
  width: 100%;
  max-width: 335px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(12px, 4.26vw, 16px);
  margin-top: 18px;
  display: flex;
  height: 40px;
  padding: 6px 22px 8px 22px;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #ffffff;
  box-shadow: 0px 4px 0px 0px #4a3636;
  margin-bottom: 0.6px;
  cursor: pointer;
}
@media screen and (min-width: 767px) {
  .prize__button {
    margin-top: 36px;
  }
}
@media screen and (min-width: 1280px) {
  .prize__button {
    width: 100%;
    max-width: 441px;
    font-size: 20px;
    padding: 24px 40px 27px 40px;
    margin-top: -41px;
    margin-bottom: 20px;
  }
}
.prize__button a {
  text-align: center;
  font-weight: 700;
}
.prize__button:hover {
  background: #ffee56;
}

.slope-photo {
  margin-top: -43px;
  height: 260px;
  overflow: hidden;
}
@media screen and (min-width: 767px) {
  .slope-photo {
    height: auto;
  }
}
@media screen and (min-width: 1280px) {
  .slope-photo {
    margin-top: -19px;
  }
}
.slope-photo img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
@media screen and (min-width: 767px) {
  .slope-photo img {
    height: auto;
  }
}

.spot {
  background: #67b0c7;
  height: 702px;
}
@media screen and (min-width:413px) {
  .spot {
    height: 702px;
  }
}
@media screen and (min-width: 767px) {
  .spot {
    height: 800px;
  }
}
@media screen and (min-width: 1280px) {
  .spot {
    margin-top: 0;
    height: 894px;
  }
}

.spot__bg-top {
  margin-top: -45px;
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .spot__bg-top {
    margin-top: -143px;
    padding-top: 0;
    background: #67b0c7;
  }
}
@media screen and (max-width: 374px) {
  .spot__bg-top {
    margin-top: -31px;
  }
}
.spot__bg-top img {
  width: 100%;
  height: 100%;
}

.spot__bg {
  text-align: center;
  margin-top: -1px;
  padding-bottom: 20px;
}
@media screen and (min-width: 1280px) {
  .spot__bg {
    padding-top: 10px;
    margin-top: -50px;
    position: relative;
    z-index: 5;
    background: #67b0c7;
  }
}

.spot__title {
  font-family: "Kiwi Maru", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 35px;
  color: #ffffff;
  position: relative;
  display: inline-block;
  text-align: center;
  padding-left: 36px;
}
@media screen and (min-width: 767px) {
  .spot__title {
    font-size: 32px;
    padding-left: 46px;
  }
}
@media screen and (min-width: 1280px) {
  .spot__title {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: upright;
    text-orientation: upright;
    font-size: 40px;
    font-weight: 500;
    line-height: 50px;
    padding-left: 248px;
    background: #67b0c7;
    text-align: start;
    margin-top: 90px;
    margin-right: 32px;
    letter-spacing: 10.7px;
  }
}
.spot__title::before {
  content: "";
  display: block;
  background: url(img/yellowstar@3x.png) no-repeat center/contain;
  width: 28px;
  height: 28px;
  background-size: 28px 28px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 767px) {
  .spot__title::before {
    width: 36px;
    height: 36px;
    background-size: 36px 36px;
  }
}
@media screen and (min-width: 1280px) {
  .spot__title::before {
    width: 56px;
    height: 56px;
    background-size: 56px 56px;
    top: -40px;
    right: -1px;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: upright;
    text-orientation: upright;
  }
}

@media screen and (min-width: 1280px) {
  .spot__recommendation {
    display: flex;
    margin-top: 12px;
  }
}

.spot__item {
  width: 240px;
  height: 402.2px;
  background: #ffffff;
  border-radius: 12px;
  margin-top: 24px;
  padding-bottom: 31.16px;
}
@media screen and (min-width: 1280px) {
  .spot__item {
    height: auto;
    width: 344px;
    min-height: 542px;
  }
}

.spot__item-img {
  border-top-right-radius: 12px;
  border-top-left-radius: 12px;
}
.spot__item-img img {
  width: 100%;
  height: 100%;
  border-top-right-radius: 12px;
  border-top-left-radius: 12px;
}

.spot__item-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  margin-top: 12px;
  margin-bottom: 16px;
  font-size: clamp(16px, 4.266vw, 18px);
}
@media screen and (min-width: 767px) {
  .spot__item-title span {
    font-size: 14px;
  }
}

.spot__item-text {
  position: relative;
  line-height: 19.2px;
  letter-spacing: 0em;
  text-align: left;
  margin-left: 24px;
  margin-right: 24px;
  height: 133px;
  font-size: clamp(12px, 3.2vw, 13px);
}
@media screen and (min-width: 767px) {
  .spot__item-text {
    font-size: clamp(10px, 1.3vw, 13px);
    height: 160px;
  }
}
@media screen and (min-width: 1280px) {
  .spot__item-text {
    line-height: 25.2px;
    font-size: clamp(10px, 1.3vw, 16px);
  }
}

.swiper-button-next,
.swiper-button-prev {
  display: none;
}
@media screen and (min-width: 767px) {
  .swiper-button-next,
  .swiper-button-prev {
display: none;
  }
  .swiper-button-next::after,
  .swiper-button-prev::after {
    color: #67b0c7;
  }
}
@media screen and (min-width: 1280px) {
  .swiper-button-next,
  .swiper-button-prev {
    margin-top: 233px;
    width: 80px;
    height: 80px;
  }
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 32px;
  }
}

@media screen and (min-width: 1280px) {
  .swiper-button-next {
    margin-right: 272px;
    margin-top: 126px;
  }
}

.swiper-button-prev {
  margin-left: -9px;
}
@media screen and (min-width: 1280px) {
  .swiper-button-prev {
    margin-left: 272px;
    margin-top: 126px;
  }
}

@media screen and (min-width: 1280px) {
  .spot__bottom {
    display: flex;
    margin-left: 244px;
    margin-top: 69px;
    position: relative;
  }
}

@media screen and (min-width: 1280px) {
  .spot__text {
    display: block;
    margin-left: 81px;
    margin-top: -13px;
  }
}

.spot__en-title img {
  width: 255px;
  height: 55px;
}
@media screen and (min-width: 1280px) {
  .spot__en-title img {
    width: 495px;
    height: 107px;
  }
}

.spot__subtitle {
  font-size: 11.44px;
  line-height: 18px;
  text-align: center;
  color: #ffffff;
  margin-top: 14px;
}
@media screen and (min-width: 1280px) {
  .spot__subtitle {
    font-size: 16px;
    line-height: 1.6; /* 25.6px */
  }
}

.spot__button {
  width: 100%;
  max-width: 335px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(12px, 4.26vw, 16px);
  margin-top: 24px;
  display: flex;
  height: 40px;
  padding: 6px 22px 8px 22px;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #ffffff;
  box-shadow: 0px 4px 0px 0px #4a3636;
  margin-bottom: 37.6px;
  cursor: pointer;
  position: relative;
}
@media screen and (min-width: 1280px) {
  .spot__button {
    font-size: 20px;
    width: 100%;
    max-width: 437px;
    height: 56px;
    padding: 10px 38px 12px 38px;
  }
}
.spot__button a {
  text-align: center;
  font-weight: 700;
}
.spot__button:hover {
  background: #ffee56;
}

.spot__pawpads {
  position: absolute;
  left: -206px;
  bottom: 32px;
  width: 100px;
  z-index: 1;
}
@media screen and (min-width: 1280px) {
  .spot__pawpads {
    left: -213px;
    bottom: 33px;
  }
}
.spot__pawpads img {
  width: 100%;
}

.spot__bg-bottom {
  margin-top: -38px;
  z-index: 1;
}
@media screen and (min-width:413px) {
  .spot__bg-bottom {
    margin-top: -64px;
  }
}
@media screen and (min-width: 767px) {
  .spot__bg-bottom {
    margin-top: -19px;
  }
}
@media screen and (min-width: 1280px) {
  .spot__bg-bottom {
    margin-top: -54px;
  }
}
.spot__bg-bottom img {
  width: 100%;
  top: 100%;
}

.qa {
  padding-top: 63px;
  padding-bottom: 0px;
}
@media screen and (min-width: 767px) {
  .qa {
    padding-top: 160px;
  }
}
@media screen and (min-width: 1280px) {
  .qa {
    padding-top: 183px;
  }
}

.qa-title {
  text-align: center;
}

.qa__title-en {
  margin-top: -3px;
}
@media screen and (min-width: 1280px) {
  .qa__title-en {
    margin-top: 15px;
  }
}

.qa__title-jp {
  margin-top: 6px;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .qa__title-jp {
    margin-top: 15px;
    padding-bottom: 19px;
  }
}

.qa__items {
  max-width: calc(100% - 40px);
  margin: 24px auto 30px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 767px) {
  .qa__items {
    max-width: 1024px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1280px) {
  .qa__items {
    margin: 40px auto 120px;
  }
}

.qa__item {
  border: 2px solid #4a3636;
  background: #ffffff;
  border-radius: 12px;
  margin-top: 11px;
  position: relative;
}
@media screen and (min-width: 1280px) {
  .qa__item {
    margin-top: 17px;
  }
}
.qa__item button {
  cursor: pointer;
}
.qa__item.is--open .a__line {
  display: flex;
  align-items: center;
  flex-direction: row;
}
.qa__item.is--open .qa__top {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.qa__item.is--open .qa__box-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.q__icon {
  color: #67b0c7;
  font-family: "Josefin Sans", sans-serif;
  font-size: 24px;
  line-height: 36px;
  margin-left: 1px;
}
@media screen and (min-width: 1280px) {
  .q__icon {
    font-size: 32px;
  }
}

.qa__top {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #ffffff;
  position: relative;
  border: none;
  border-radius: 12px;
  display: flex;
  justify-content: flex-start;
  -moz-text-align-last: left;
  text-align-last: left;
}

.qa__box-icon {
  margin-top: 19px;
  margin-right: 14px;
  margin-left: auto;
  width: 24px;
  height: 24px;
  background: #67b0c7;
  border-radius: 50px;
  position: relative;
}
@media screen and (min-width: 767px) {
  .qa__box-icon {
    width: 28px;
    height: 28px;
  }
}
@media screen and (min-width: 1280px) {
  .qa__box-icon {
    width: 48px;
    height: 48px;
    margin-top: 17px;
    margin-right: 18px;
  }
}
.qa__box-icon::before, .qa__box-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  content: "";
  background: #fff;
  border-radius: 50px;
  transition: transform 0.3s;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 1280px) {
  .qa__box-icon::before, .qa__box-icon::after {
    width: 20px;
    height: 4px;
  }
}
.qa__box-icon::after {
  width: 2px;
  height: 10px;
}
@media screen and (min-width: 1280px) {
  .qa__box-icon::after {
    width: 4px;
    height: 20px;
  }
}

.q__line {
  width: 88%;
  display: flex;
  justify-content: flex-start;
  -moz-text-align-last: left;
  text-align-last: left;
  padding: 12px 16px 9px 12px;
}
@media screen and (min-width: 1280px) {
  .q__line {
    padding: 30px 16px 30px 20px;
  }
}

.q__text {
  flex-grow: 1;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.57;
  text-align: left;
  margin-left: 13px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 767px) {
  .q__text {
    font-size: 20px;
  }
}

.a__line {
  width: 100%;
  display: none;
  align-items: center;
  background: #f5f5f5;
  padding: 16px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
@media screen and (min-width: 1280px) {
  .a__line {
    padding: 24px;
  }
}

.a__icon {
  color: #67b0c7;
  font-family: "Josefin Sans", sans-serif;
  font-size: 24px;
  line-height: 30px;
}
@media screen and (min-width: 1280px) {
  .a__icon {
    font-size: 32px;
  }
}

.a__text {
  width: 90.1%;
  font-size: 14px;
  line-height: 22px;
  margin-left: 14px;
}
@media screen and (min-width: 767px) {
  .a__text {
    font-size: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .a__text {
    font-size: 16px;
  }
}

.entry {
  margin-top: 0;
  padding-bottom: 23px;
}
@media screen and (min-width: 1280px) {
  .entry {
    padding-bottom: 115px;
  }
}

.entry__wrapper {
  max-width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  border: 8px solid #ffffff;
  background: #f4fafb;
  padding: 23px 15px 21px;
}
@media screen and (min-width: 767px) {
  .entry__wrapper {
    max-width: 1024px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1280px) {
  .entry__wrapper {
    padding: 40px 56px;
  }
}

.entry__title {
  text-align: center;
  margin-top: -8px;
}

.entry__icon {
  margin-top: 0;
}

.entry__title-en {
  margin-top: 1px;
}
@media screen and (min-width: 1280px) {
  .entry__title-en {
    margin-top: 9px;
  }
}

.entry__title-jp {
  margin-top: 7px;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .entry__title-jp {
    margin-top: 18px;
    padding-bottom: 14px;
  }
}

.entry__requirement {
  margin-top: 22px;
}
@media screen and (min-width: 1280px) {
  .entry__requirement {
    margin-top: 45px;
  }
}

@media screen and (min-width: 1280px) {
  .entry__requirement-item {
    display: flex;
  }
}

.entry__requirement-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  text-align: left;
  position: relative;
  margin-left: 16px;
}
@media screen and (min-width: 767px) {
  .entry__requirement-title {
    font-size: 16px;
    margin-left: 24px;
  }
}
@media screen and (min-width: 1280px) {
  .entry__requirement-title {
    font-size: 16px;
    width: 23.4%;
    height: 21px;
  }
}
.entry__requirement-title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9ed0e0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -16px;
}
@media screen and (min-width: 767px) {
  .entry__requirement-title::before {
    width: 16px;
    height: 16px;
    left: -24px;
    top: 53%;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 1280px) {
  .entry__requirement-title::before {
    width: 8px;
    height: 8px;
    left: -16px;
  }
}

.entry__requirement-text {
  margin-top: 8px;
  line-height: 19px;
  text-align: left;
}
.entry__requirement-text a {
  text-decoration: underline;
}
.entry__requirement-text a:hover {
  color: #67b0c7;
}
@media screen and (min-width: 767px) {
  .entry__requirement-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1280px) {
  .entry__requirement-text {
    font-size: 16px;
    width: 76.6%;
    margin-top: 2px;
    line-height: 25.6px;
    margin-right: -31px;
    margin-bottom: -6px;
  }
}

.entry__requirement-bar {
  margin-top: 15px;
  margin-bottom: 12px;
  width: 100%;
  height: 1px;
  background: #cccccc;
}

@media screen and (min-width: 1280px) {
  .entry__requirement-item-dd {
    margin-top: -9px;
  }
}

@media screen and (min-width: 1280px) {
  .entry__requirement-item-dd > .entry__requirement-text {
    width: 91%;
    max-width: 672px;
    display: block;
    margin-left: 66px;
  }
}

@media screen and (min-width: 1280px) {
  .entry__last-title {
    width: 18.4%;
  }
}

.entry__last-text-1 {
  position: relative;
  margin-left: 19px;
  margin-top: 9px;
}
@media screen and (min-width: 1280px) {
  .entry__last-text-1 {
    margin-top: 12px;
  }
}
.entry__last-text-1::before {
  content: "・";
  position: absolute;
  top: 0;
  left: -15.5px;
}

.entry__last-text-2 {
  position: relative;
  margin-left: 19px;
  margin-top: 0;
}
@media screen and (min-width: 767px) {
  .entry__last-text-2 {
    margin-top: 6px;
  }
}
@media screen and (min-width: 1280px) {
  .entry__last-text-2 {
    margin-top: 7px;
  }
}
.entry__last-text-2::before {
  content: "・";
  position: absolute;
  top: 0;
  left: -15.5px;
}

.scenery {
  width: 100%;
  height: auto;
  margin-top: 8px;
}
@media screen and (min-width: 1280px) {
  .scenery {
    margin-top: 0;
  }
}
.scenery img {
  width: 100%;
  height: 100%;
}

.contact {
  background: #ffffff;
}

@media screen and (min-width: 1280px) {
  .contact__wrapper {
    margin-bottom: 109px;
  }
}

.contact {
  padding-top: 40px;
  padding-bottom: 5px;
}
@media screen and (min-width: 1280px) {
  .contact {
    padding-top: 124px;
  }
}

.contact__title {
  text-align: center;
}

.contact__title-en {
  margin-top: -1px;
}
@media screen and (min-width: 1280px) {
  .contact__title-en {
    margin-top: 5px;
  }
}

.contact__title-jp {
  margin-top: 6px;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .contact__title-jp {
    margin-top: 16px;
    padding-bottom: 16px;
  }
}

.contact__item {
  max-width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  margin-top: -3px;
}
@media screen and (min-width: 767px) {
  .contact__item {
    max-width: 1024px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1280px) {
  .contact__item {
    max-width: 848px;
  }
}

.contact__control {
  margin-top: -1px;
}
@media screen and (min-width: 1280px) {
  .contact__control {
    display: flex;
    align-items: center;
    margin-top: 14px;
  }
}
@media screen and (min-width: 1280px) {
  .contact__control dt {
    width: 25.9%;
  }
}
@media screen and (min-width: 1280px) {
  .contact__control dd {
    width: 74.1%;
  }
}

@media screen and (min-width: 1280px) {
  .contact__controls {
    width: 100%;
    margin-top: 34px;
  }
}

.contact__description {
  text-align: center;
  margin-top: 24px;
  line-height: 19.1px;
}
@media screen and (min-width: 1280px) {
  .contact__description {
    font-size: 16px;
    margin-top: 30px;
    line-height: 1.6; /* 25.6px */
  }
}

.contact__label {
  font-size: 14px;
  font-weight: 700;
  line-height: 22.4px;
  margin-top: 24px;
}
@media screen and (min-width: 1280px) {
  .contact__label {
    font-size: 16px;
    margin-top: 16px;
  }
}
.contact__label.contact__label--required {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.contact__label.contact__label--required::after {
  content: "必須";
  margin-left: 12px;
  font-size: 12px;
  color: #ffffff;
  background: #ce2073;
  border-radius: 4px;
  padding: 4px 8px;
}
@media screen and (min-width: 1280px) {
  .contact__label.contact__label--required::after {
    font-size: 12px;
    padding: 2px 8px;
  }
}

@media screen and (min-width: 1280px) {
  .contact__label-message {
    margin-bottom: 123px;
  }
}

input[type=text],
input[type=email],
select,
textarea {
  box-shadow: none;
  background: #ffffff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  resize: none;
  font-size: 14px;
  width: 100%;
  margin-top: 8px;
  border: none;
  background: #f5f5f5;
  padding: 16px 16px 18px 16px;
  border-radius: 8px;
  font-size: 14px;
}
@media screen and (min-width: 1280px) {
  input[type=text],
  input[type=email],
  select,
  textarea {
    font-size: 16px;
  }
}
input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #cccccc;
}
input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
  color: #cccccc;
}
input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #cccccc;
}
input[type=text]::-ms-input-placeholder,
input[type=email]::-ms-input-placeholder,
select::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #cccccc;
}
input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #cccccc;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #cccccc;
}
input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #cccccc;
}
input[type=text]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #cccccc;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #cccccc;
}

select {
  background: #f5f5f5 url(img/select-arrow@3x.png) no-repeat right 0px center/auto 100%;
  cursor: pointer;
}

.contact__radio {
  margin-top: 24px;
}
@media screen and (min-width: 1280px) {
  .contact__radio {
    margin-top: 36px;
    display: flex;
    align-items: center;
  }
  .contact__radio dt {
    width: 25.9%;
  }
  .contact__radio dd {
    width: 74.1%;
    display: flex;
    align-items: center;
  }
}
.contact__radio input[type=radio] {
  display: none;
}
.contact__radio span {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  line-height: 22.4px;
  padding-left: 31px;
  margin-right: 24px;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 1280px) {
  .contact__radio span {
    font-size: 16px;
    margin-top: 6px;
    padding-left: 34px;
  }
}
.contact__radio span::before {
  content: "";
  width: 24px;
  height: 24px;
  border: none;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #f5f5f5;
  border-radius: 50%;
}
.contact__radio span:hover::before, input[type=radio]:checked + .contact__radio span::before {
  border: 1px solid #67b0c7;
}
.contact__radio span::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #67b0c7;
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  display: none;
}
.contact__radio [type=radio]:checked + span::after {
  display: block;
}

.form-textarea {
  height: 160px;
}
@media screen and (min-width: 1280px) {
  .form-textarea {
    margin-top: 27px;
  }
}

.contact__check {
  margin: 22px auto 26px;
  display: flex;
  justify-content: center;
  font-size: 14px;
  line-height: 22.4px;
  cursor: pointer;
}
@media screen and (min-width: 1280px) {
  .contact__check {
    margin: 42px auto 46px;
  }
}
.contact__check a {
  text-decoration: underline;
}
.contact__check input[type=checkbox] {
  display: none;
}
.contact__check span {
  display: inline-block;
  padding-left: 38px;
  position: relative;
}
@media screen and (min-width: 1280px) {
  .contact__check span {
    font-size: 16px;
  }
}
.contact__check span::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #f5f5f5;
  cursor: pointer;
}
@media screen and (min-width: 1280px) {
  .contact__check span::before {
    height: 28px;
    width: 28px;
  }
}
.contact__check span::after {
  font-family: "Material Icons";
  content: "\e876";
  color: #67b0c7;
  font-size: 24px;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 1px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  display: none;
}
@media screen and (min-width: 1280px) {
  .contact__check span::after {
    width: 28px;
    height: 28px;
    font-size: 28px;
  }
}
.contact__check span:hover::before, input[type=checkbox]:checked + .contact__check span::before {
  border: 1px solid #67b0c7;
}
.contact__check [type=checkbox]:checked + span::after {
  display: block;
}

.contact__submit input[type=submit] {
  width: 62.08%;
  max-width: 335px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(12px, 4.26vw, 16px);
  margin-top: 16px;
  display: flex;
  height: 40px;
  padding: 6px 22px 8px 22px;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #ffffff;
  box-shadow: 0px 4px 0px 0px #4a3636;
  margin-bottom: 37.6px;
  text-align: center;
  font-weight: 700;
  cursor: pointer;
}
@media screen and (min-width: 1280px) {
  .contact__submit input[type=submit] {
    width: auto;
    height: auto;
    padding: 6px 39px 8px 39px;
    margin-top: -6px;
  }
}
.contact__submit input[type=submit]:hover {
  background: #ffee56;
}

.access__bg {
  max-width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  margin-top: 1px;
}
@media screen and (min-width: 767px) {
  .access__bg {
    max-width: 1024px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1280px) {
  .access__bg {
    padding-bottom: 120px;
  }
}

.access__title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 24px;
}
@media screen and (min-width: 767px) {
  .access__title {
    font-size: 28px;
  }
}
@media screen and (min-width: 1280px) {
  .access__title {
    margin-top: 87px;
  }
}
@media screen and (min-width: 1280px) {
  .access__title {
    font-size: 24px;
    line-height: 125%; /* 30px */
  }
}

.access__sns {
  display: flex;
  justify-content: center;
  align-items: center;
}

.access__sns-icon {
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 767px) {
  .access__sns-icon {
    width: 42px;
    height: 42px;
  }
}
@media screen and (min-width: 1280px) {
  .access__sns-icon {
    width: 40px;
    height: 40px;
  }
}
.access__sns-icon img {
  width: 100%;
  height: 100%;
}

.access__sns-icon + .access__sns-icon {
  margin-left: 40px;
}

.access__logo {
  width: 100%;
  margin-top: 14px;
}
@media screen and (min-width: 1280px) {
  .access__logo {
    width: 755px;
    margin-top: 38px;
    margin-right: auto;
    margin-left: auto;
  }
}
.access__logo img {
  width: 100%;
}

.access__card {
  margin-top: -3px;
}
@media screen and (min-width: 1280px) {
  .access__card {
    display: flex;
    flex-direction: row-reverse;
  }
}

.access__map {
  aspect-ratio: 335/271;
  max-width: 1024px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
@media screen and (min-width: 1280px) {
  .access__map {
    width: 50%;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }
}

.access__map iframe {
  width: 100%;
  height: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
@media screen and (min-width: 1280px) {
  .access__map iframe {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }
}

.access__card-items {
  background: #ffffff;
  padding: 22px 24px 30px 24px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
@media screen and (min-width: 767px) {
  .access__card-items {
    padding-top: 42px;
  }
}
@media screen and (min-width: 1280px) {
  .access__card-items {
    width: 50%;
    border-top-left-radius: 10px;
    padding: 106px 59.5px 106px 69.5px;
  }
}

.access__card-logo {
  width: 153px;
  height: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 767px) {
  .access__card-logo {
    width: 229.5px;
    height: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .access__card-logo {
    width: 183px;
    height: 24px;
    margin-left: -7px;
    margin-right: auto;
  }
}
.access__card-logo img {
  width: 100%;
  height: 100%;
}

.access__card-item-list {
  margin-top: 30px;
}
@media screen and (min-width: 1280px) {
  .access__card-item-list {
    margin-top: 29px;
  }
}

.access__card-item-line {
  display: flex;
  align-items: center;
  margin-top: 8px;
}
@media screen and (min-width: 767px) {
  .access__card-item-line {
    margin-top: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .access__card-item-line {
    margin-top: 19px;
    width: 100%;
  }
}

.access__card-item-title {
  font-weight: 700;
  line-height: 19.2px;
  position: relative;
  margin-left: 20px;
  width: 64px;
}
@media screen and (min-width: 767px) {
  .access__card-item-title {
    font-size: 16px;
    margin-left: 40px;
    width: 96px;
  }
}
@media screen and (min-width: 1280px) {
  .access__card-item-title {
    margin-left: 10px;
    width: 27.8%;
  }
}
.access__card-item-title::before {
  content: "●";
  position: absolute;
  left: -16px;
  font-size: 8px;
  color: #9ed0e0;
}
@media screen and (min-width: 1280px) {
  .access__card-item-title::before {
    font-size: 8px;
    left: -19px;
  }
}

.access__card-item-text {
  line-height: 19.2px;
}
@media screen and (min-width: 767px) {
  .access__card-item-text {
    font-size: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .access__card-item-text {
    width: 72.1%;
  }
}

.top-page__icon {
  display: block;
  width: 75px;
  height: 78px;
  margin: 24px auto;
}
.top-page__icon:hover {
  opacity: 0.7;
}
@media screen and (min-width: 1280px) {
  .top-page__icon {
    width: 105px;
    height: 109.2px;
    position: fixed;
    right: 50px;
    bottom: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease 0s;
    z-index: 999;
  }
  .top-page__icon.is-show {
    opacity: 1;
    visibility: visible;
  }
}
.top-page__icon img {
  width: 100%;
  height: 100%;
}

.footer__top {
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .footer__top {
    margin-top: -11px;
  }
}
.footer__top img {
  width: 100%;
}

.footer__bg {
  margin-top: -1px;
  text-align: center;
  background: #67b0c7;
  padding-bottom: 24px;
}
@media screen and (min-width: 1280px) {
  .footer__bg {
    margin: -3px;
    padding-bottom: 32px;
  }
}
.footer__bg small {
  color: #ffffff;
  font-size: 10px;
  line-height: 16px; /* 16px */
}
@media screen and (min-width: 1280px) {
  .footer__bg small {
    font-size: 14px;
  }
}