@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 1050px) {
  html {
    font-size: 1.5238095238vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #2B2B2B;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

@media screen and (max-width: 768px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1050px;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.footer {
  background-color: #FFF5B8;
  padding-top: 4.375rem;
  padding-bottom: 0.8125rem;
}
@media screen and (max-width: 2560px) {
  .footer {
    padding-top: 6.25rem;
    padding-bottom: 1rem;
  }
}
@media screen and (max-width: 1500px) {
  .footer {
    padding-top: 4.375rem;
    padding-bottom: 0.8125rem;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 5.625rem;
    padding-bottom: 1rem;
  }
}

.footer__logo {
  max-width: 21.625rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    max-width: 13.75rem;
  }
}

.footer__logo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer__copyright {
  display: block;
  text-align: center;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #747474;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    font-size: 0.5625rem;
    margin-top: 2.1875rem;
  }
}

.header {
  background-color: #FFF5B8;
  padding-left: 2.0625rem;
  padding-right: 2.0625rem;
  height: 7.5rem;
}
@media screen and (max-width: 768px) {
  .header {
    height: 5.0625rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.header__inner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background-color: #FFFFFF;
  -webkit-box-shadow: 6px 6px 6px rgba(163, 163, 163, .16);
          box-shadow: 6px 6px 6px rgba(163, 163, 163, .16);
  border-radius: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 2.7818%;
  padding-right: 3%;
  margin-top: 1.75rem;
  margin-bottom: 1.375rem;
  max-width: 81.25rem;
  width: 95.168%;
  height: 5.625rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    margin-top: 0.6875rem;
    margin-bottom: 0.625rem;
    margin-left: auto;
    margin-right: auto;
    width: 92%;
    height: 4.375rem;
  }
}

.header__name {
  margin-right: 1.875rem;
  position: relative;
  z-index: 5001;
}
.header__logo:hover {
  opacity: 1;
}

.header__logo-img {
  max-width: 21.625rem;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .header__logo-img {
    max-width: 12.3125rem;
  }
}

.header__nav {
  height: inherit;
}

.header__items {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__item {
  height: inherit;
  display: inline-block;
}

.header__link {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.9375rem;
  -webkit-transition: color 0.2s, background-color 0.2s;
  transition: color 0.2s, background-color 0.2s;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #2B2B2B;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 768px) {
  .header__link {
    font-size: 1.1875rem;
  }
}

.header__link:hover {
  color: #EF833D;
  opacity: 1;
}

.hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  .hamburger {
    position: relative;
    top: 0;
    right: 0;
    z-index: 9999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 1.875rem;
    height: 1.3125rem;
    cursor: pointer;
    text-align: center;
  }
}

.hamburger.is-open {
  top: 1.25rem;
}
@media screen and (max-width: 500px) {
  .hamburger.is-open {
    top: 0.625rem;
    right: -0.3125rem;
  }
}
@media screen and (max-width: 425px) {
  .hamburger.is-open {
    top: 0.3125rem;
    right: -0.625rem;
  }
}

.hamburger__wrap {
  display: none;
}
@media screen and (max-width: 768px) {
  .hamburger__wrap {
    display: block;
    position: relative;
  }
}

.hamburger__line {
  position: relative;
  left: 0;
  top: 0.625rem;
  width: 1.875rem;
  height: 0.1875rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  border-radius: 1rem;
  background-color: #EF833D;
  display: block;
}
.hamburger__line::before, .hamburger__line::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: inherit;
  transition: inherit;
  border-radius: 1rem;
  background-color: #EF833D;
}
.hamburger__line::before {
  top: -0.625rem;
}
.hamburger__line::after {
  top: 0.625rem;
}

.hamburger.is-open .hamburger__line {
  background-color: transparent;
}
.hamburger.is-open .hamburger__line::before, .hamburger.is-open .hamburger__line::after {
  top: 1vh;
  right: 1vh;
  background-color: #EF833D;
}
.hamburger.is-open .hamburger__line::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.hamburger.is-open .hamburger__line::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-menu {
  position: absolute;
  z-index: 5000;
  top: 0;
  left: -4.4%;
  display: none;
  width: 100vw;
  height: 100vh;
  background-color: #FFF5B8;
}

.drawer-menu.is-open {
  display: block;
}

.drawer-menu__inner {
  background-color: #FFFFFF;
  border-radius: 0.375rem;
  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;
  margin-top: 6.2%;
  margin-bottom: 6.2%;
  margin-right: 6.1333%;
  margin-left: 6.1333%;
  max-height: 93.6376%;
}

.drawer-menu__items {
  text-align: center;
  width: 100%;
  height: inherit;
  padding-top: 1.25rem;
  padding-bottom: 2.8125rem;
}

.drawer-menu__item {
  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-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.drawer-menu__item.drawer-menu__item-bottom {
  padding-top: 3.25rem;
  display: inline-block;
  margin-right: auto;
  margin-left: auto;
}

.drawer-menu__link {
  font-size: 1.1875rem;
  color: #2B2B2B;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  width: 100%;
  line-height: 1;
  padding-bottom: 1.25rem;
  padding-top: 1.25rem;
  -webkit-transition: color 0.2s, background-color 0.2s;
  transition: color 0.2s, background-color 0.2s;
}

.drawer-menu__link:hover {
  color: #EF833D;
  opacity: 1;
}

.drawer-menu__logo-img {
  max-width: 5.625rem;
  margin-bottom: 0.625rem;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: auto;
  margin-left: auto;
}

.drawer-menu {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

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

.drawer-menu.closed {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.body--fixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.mv {
  position: relative;
  background-color: #FFF5B8;
  padding-top: 1.375rem;
  padding-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .mv {
    padding-top: 0.625rem;
    padding-bottom: 6.25rem;
  }
}
@media screen and (max-width: 500px) {
  .mv {
    padding-bottom: 5rem;
  }
}

.mv__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding-inline: 0.625rem;
  margin-right: auto;
  margin-left: auto;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .mv__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 37.5rem;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    gap: 0.625rem;
  }
}

.mv__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .mv__right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0.625rem;
  }
}

.mv__left img, .mv__right img {
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  border-radius: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .mv__left img, .mv__right img {
    border-radius: 0.3125rem;
  }
}

.mv__left img {
  width: 100%;
  aspect-ratio: 750/563;
}
@media screen and (max-width: 768px) {
  .mv__left img {
    aspect-ratio: 345/362;
  }
}

@media screen and (max-width: 768px) {
  .mv__right picture {
    width: 100%;
  }
}

.mv__right img {
  width: 100%;
  aspect-ratio: 560/280;
}
@media screen and (max-width: 768px) {
  .mv__right img {
    aspect-ratio: 1/1;
    width: 100%;
    height: auto;
    height: 100%;
  }
}

.mv__bottom {
  position: relative;
}

.mv__bottom img {
  position: absolute;
  left: 50%;
  top: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin-top: -2.375rem;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .mv__bottom img {
    margin-top: -5rem;
  }
}
@media screen and (max-width: 500px) {
  .mv__bottom img {
    margin-top: -3.0625rem;
  }
}

@media screen and (max-width: 768px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .md-show {
    display: block;
  }
}

.section-title {
  text-align: center;
}
.section-title__main {
  font-size: 2.8125rem;
  font-weight: 700;
  line-height: 1.22222;
  letter-spacing: 0.02em;
  font-family: "Montserrat", sans-serif;
  color: #2B2B2B;
}
@media screen and (max-width: 768px) {
  .section-title__main {
    font-size: 2.1875rem;
    line-height: 1.22857;
  }
}

.section-title__sub {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.28571;
  letter-spacing: 0.05em;
  font-family: "Univers", sans-serif;
}
@media screen and (max-width: 768px) {
  .section-title__sub {
    font-size: 0.75rem;
    line-height: 1.25;
    letter-spacing: 0.05em;
  }
}

.common__button {
  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;
  text-align: center;
}

.common__button-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.6875rem 2.1875rem;
  color: #000000;
  border: 2px solid #EE823D;
  border-radius: 5rem;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.28571;
  letter-spacing: 0.07em;
  font-family: "Montserrat", sans-serif;
  -webkit-transition: background-color 0.2s, color 0.2s;
  transition: background-color 0.2s, color 0.2s;
}

.common__button-link:hover {
  background-color: #000000;
  border: 0.125rem solid #000000;
  color: #FFFFFF;
  opacity: 1;
}

.color-orange {
  color: #EF833D;
}

.color-orange2 {
  color: #EE823D;
}

.color-green {
  color: #009E7F;
}

.background-orange {
  background-color: #EF833D;
}

.background-orange2 {
  background-color: #EE823D;
}

.background-blue {
  background-color: #42AFF4;
}

.background-green {
  background-color: #009E7F;
}

.background-purple {
  background-color: #BCA0FC;
}

.background-gray {
  background-color: #E0E0E0;
}

.background-yellow {
  background-color: #F3D259;
}

.border-orange {
  border: 1px solid #EF833D;
}

.border-green {
  border: 1px solid #009E7F;
}

.border-blue {
  border: 1px solid #42AFF4;
}

.border-purple {
  border: 1px solid #BCA0FC;
}

.border-yellow {
  border: 1px solid #F3D259;
}

.border-gray {
  border: 1px solid #C8C9CA;
}

.border-gray2 {
  border: 1px solid #808080;
}

.section__bottom {
  position: relative;
}

.section__bottom img {
  position: absolute;
  left: 50%;
  top: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin-top: -1.25rem;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .section__bottom img {
    margin-top: -0.9375rem;
  }
}

.event {
  padding-top: 7.3125rem;
  padding-bottom: 8.125rem;
  background-color: #D2E9ED;
}
@media screen and (max-width: 768px) {
  .event {
    padding-top: 9.0625rem;
    padding-bottom: 6.25rem;
  }
}
@media screen and (max-width: 500px) {
  .event {
    padding-top: 6.5625rem;
    padding-bottom: 5.625rem;
  }
}

.event__inner {
  width: 100%;
  max-width: 65.625rem;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .event__inner {
    padding-left: 1.875rem;
    margin-right: 0;
    margin-left: 0;
  }
}

.event__button {
  margin-top: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .event__button {
    margin-top: 3.75rem;
  }
}

.guide {
  padding-top: 7rem;
  padding-bottom: 14.6875rem;
  background-color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .guide {
    padding-top: 5rem;
    padding-bottom: 7.5rem;
  }
}

.guide__img-container {
  width: 100%;
  max-width: 77.5rem;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  margin-right: auto;
  margin-left: auto;
  margin-top: 1.4375rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .guide__img-container {
    max-width: 37.5rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    margin-top: 3.125rem;
  }
}

.guide__img-circle {
  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;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  left: 15%;
  top: 30%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  border-radius: 50%;
  background-color: #FFEBA2;
  width: 12.625rem;
  height: 12.625rem;
}
@media screen and (max-width: 1200px) {
  .guide__img-circle {
    width: 11.25rem;
    height: 11.25rem;
  }
}
@media screen and (max-width: 768px) {
  .guide__img-circle {
    left: 16%;
    top: 4%;
    width: 10.625rem;
    height: 10.625rem;
  }
}
@media screen and (max-width: 600px) {
  .guide__img-circle {
    left: 16.6%;
    width: 9.375rem;
    height: 9.375rem;
  }
}
@media screen and (max-width: 500px) {
  .guide__img-circle {
    left: 18%;
    width: 9.125rem;
    height: 9.125rem;
  }
}
@media screen and (max-width: 425px) {
  .guide__img-circle {
    left: 23%;
    top: 3%;
  }
}

.guide__img-circle-text1 {
  margin-top: 0.625rem;
  color: #000000;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  line-height: 1.71428;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .guide__img-circle-text1 {
    margin-top: 1.5625rem;
    font-size: 0.8125rem;
    line-height: 1.3846;
  }
}

.guide__img-circle-text2 {
  margin-top: 0.625rem;
  color: #000000;
  font-size: 0.6875rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.454545;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .guide__img-circle-text2 {
    margin-top: 0.5rem;
    font-size: 0.625rem;
    line-height: 1.4;
  }
}

.guide__img-link span {
  margin-top: 1.5625rem;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 0.75rem;
  height: 0.75rem;
  border: 2px solid #6C6C6C;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translateY(-25%) rotate(135deg);
          transform: translateY(-25%) rotate(135deg);
  -webkit-transition: color 0.2s, background-color 0.2s;
  transition: color 0.2s, background-color 0.2s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .guide__img-link span {
    margin-top: 1.125rem;
    width: 0.375rem;
    height: 0.375rem;
    border: 1px solid #6C6C6C;
    border-left: 0;
    border-bottom: 0;
    -webkit-transform: translateY(-25%) rotate(135deg);
            transform: translateY(-25%) rotate(135deg);
  }
}

.guide__img-text {
  position: absolute;
  right: 0%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #000000;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  letter-spacing: 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .guide__img-text {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 768px) {
  .guide__img-text {
    width: 100%;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 500;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    left: 50%;
    top: 78%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .guide__img-text {
    font-size: 0.87rem;
  }
}

.tab {
  width: 100%;
  max-width: 43.875rem;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .tab {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.tab__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.75rem;
  gap: 1.0625rem 0.625rem;
}
@media screen and (max-width: 768px) {
  .tab__menu {
    margin-top: 2.5rem;
    gap: 0.625rem 0.4375rem;
  }
}

.tab__menu-item {
  padding: 0.625rem;
  width: 9.6875rem;
  height: 2.5rem;
  border-radius: 1.9375rem;
  background-color: #FFFFFF;
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #232323;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  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;
  -webkit-transition: color 0.2s, background-color 0.2s;
  transition: color 0.2s, background-color 0.2s;
  cursor: pointer;
}
.tab__menu-item:hover {
  color: #fff;
}
.tab__menu-item.is-active, .tab__menu-item:hover {
  background: #808080;
  color: #FFFFFF;
}
.tab__menu-item.is-active.border-orange, .tab__menu-item:hover.border-orange {
  background: #EF833D;
}
.tab__menu-item.is-active.border-green, .tab__menu-item:hover.border-green {
  background: #009E7F;
}
.tab__menu-item.is-active.border-blue, .tab__menu-item:hover.border-blue {
  background: #42AFF4;
}
.tab__menu-item.is-active.border-purple, .tab__menu-item:hover.border-purple {
  background: #BCA0FC;
}
.tab__menu-item.is-active.border-yellow, .tab__menu-item:hover.border-yellow {
  background: #F3D259;
}
.tab__menu-item.is-active.border-gray, .tab__menu-item:hover.border-gray {
  background: #C8C9CA;
}
.tab__menu-item.is-active.border-gray2, .tab__menu-item:hover.border-gray2 {
  background: #808080;
}

.tab__menu-item.is-active {
  color: #FFFFFF;
}

.guide__inner {
  width: 100%;
  max-width: 65.625rem;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  margin-right: auto;
  margin-left: auto;
  margin-top: 3.375rem;
}
@media screen and (max-width: 768px) {
  .guide__inner {
    max-width: 43.75rem;
    margin-top: 2.8125rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.guide__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.75rem;
}
@media screen and (max-width: 768px) {
  .guide__container {
    gap: 2.5rem;
  }
}

.guide__content-title {
  display: inline-block;
  margin-top: 3.75rem;
  margin-bottom: -0.75rem;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.23076;
  color: #808080;
  font-family: "Montserrat", sans-serif;
  position: relative;
  padding-right: 1.25rem;
}
@media screen and (max-width: 768px) {
  .guide__content-title {
    margin-top: 1.25rem;
    margin-bottom: 0;
    font-size: 1.25rem;
    line-height: 1.6;
  }
}

.guide__content-title--thin {
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .guide__content-title--thin {
    font-size: 1.25rem;
  }
}

.guide__content-title::after {
  width: 6.25rem;
  height: 2px;
  background-color: #808080;
  content: "";
  position: absolute;
  top: 50%;
  margin-left: 1.25rem;
}
@media screen and (max-width: 768px) {
  .guide__content-title::after {
    width: 3.125rem;
    margin-left: 0.625rem;
    height: 1px;
  }
}

.guide__content-title--thin::after {
  height: 1px;
}

.guide__container:first-child .guide__content-title {
  margin-top: 0;
}

/* グリッド用のスタイル */
.guide__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem 3.125rem;
}
@media screen and (max-width: 768px) {
  .guide__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.375rem 1.1875rem;
  }
}

.guide__content-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  .guide__content-item {
    margin-bottom: 2.5rem;
  }
}

.card {
  grid-row: span 5;
  display: grid;
  grid-template-rows: subgrid;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .card {
    gap: 0.625rem;
  }
}

.card__img {
  width: 100%;
}

.card__img-wrap {
  width: 100%;
  position: relative;
}

.card__img img {
  aspect-ratio: 300/225;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 0.625rem;
}
@media screen and (max-width: 768px) {
  .card__img img {
    aspect-ratio: 163/122.25;
    width: 100%;
  }
}

.card__img a:before {
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  width: 100%;
}

.card__label {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0;
  color: #000000;
  font-size: 0.625rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  padding: 0.375rem 0.625rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .card__label {
    padding: 0.3125rem 0.625rem;
  }
}

.card__heading {
  margin-bottom: -0.5rem;
  margin-top: -0.3125rem;
}
@media screen and (max-width: 768px) {
  .card__heading {
    margin-bottom: -0.5rem;
  }
}

.card__heading span {
  padding-left: 0.4375rem;
  padding-right: 0.5625rem;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 2;
  font-family: "Montserrat", sans-serif;
  color: #535353;
  background-color: #E3E3E3;
}
@media screen and (max-width: 768px) {
  .card__heading span {
    font-size: 0.6875rem;
  }
}

.card__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .card__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.card__title--long {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.card__title-sub {
  position: relative;
  margin-right: 1.25rem;
  font-size: 0.8125rem;
  line-height: 1.2;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #808080;
}
@media screen and (max-width: 768px) {
  .card__title-sub {
    margin-right: 0.625rem;
    margin-top: 0.3125rem;
  }
}

.card__title-sub::after {
  content: "";
  position: absolute;
  margin-left: 0.4375rem;
  width: 1px;
  height: 0.875rem;
  background-color: #808080;
}
@media screen and (max-width: 768px) {
  .card__title-sub::after {
    margin-top: 0.125rem;
  }
}

.card__title-main {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.647058;
  font-family: "Noto Sans JP", sans-serif;
  color: #2B2B2B;
  letter-spacing: 0.03em;
  word-break: break-all;
  -ms-hyphens: auto;
      hyphens: auto;
}
@media screen and (max-width: 768px) {
  .card__title-main {
    font-size: 0.9375rem;
  }
}

.card__text {
  margin-top: 0.4375rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.71428;
  font-family: "Noto Sans JP", sans-serif;
  color: #747474;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .card__text {
    margin-top: 0;
    font-size: 0.8125rem;
    line-height: 1.461538;
  }
}

.card__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .card__bottom {
    margin-top: 0.375rem;
  }
}

.card__time {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.6666667;
  font-family: "Noto Sans JP", sans-serif;
  color: #747474;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .card__time {
    font-size: 0.6875rem;
    letter-spacing: 0;
  }
}

.card__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0.8125rem;
  padding-right: 0.8125rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  font-family: "Noto Sans", sans-serif;
  color: #2B2B2B;
  letter-spacing: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .card__link {
    font-size: 0.6875rem;
    padding-left: 0.25rem;
    padding-right: 0.5rem;
  }
}
.card__link:before {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.card__link:hover {
  opacity: 0.7;
}

.card__link:after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1.2px solid #000000;
  border-right: 1.2px solid #000000;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 43%;
  right: 0;
  border-radius: 1px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .card__link:after {
    width: 0.3125rem;
    height: 0.3125rem;
  }
}

.card__overlay {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.guide__icon-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.125rem;
}
@media screen and (max-width: 768px) {
  .guide__icon-items {
    gap: 2.1875rem 1.1875rem;
  }
}
@media screen and (max-width: 500px) {
  .guide__icon-items {
    width: 90%;
  }
}
@media screen and (max-width: 425px) {
  .guide__icon-items {
    width: 100%;
  }
}

.guide__icon-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .guide__icon-item {
    gap: 0.625rem;
    width: calc(50% - 0.59375rem);
  }
}

.guide__icon-item img {
  width: 4.5rem;
  height: 4.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .guide__icon-item img {
    width: 4.125rem;
    height: 4.125rem;
  }
}

.guide__icon-text {
  margin-top: 0.625rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #2B2B2B;
}
@media screen and (max-width: 768px) {
  .guide__icon-text {
    margin-top: 0.3125rem;
    font-size: 0.875rem;
    line-height: 1.285714;
  }
}

.guide__icon-text span {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.428571;
  letter-spacing: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #2B2B2B;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .guide__icon-text span {
    font-size: 0.75rem;
    line-height: 1.285714;
    white-space: unset;
  }
}

.rental {
  padding-top: 7.5rem;
  padding-bottom: 11rem;
  background-color: #FFF5B8;
}
@media screen and (max-width: 768px) {
  .rental {
    padding-top: 5.125rem;
    padding-bottom: 7.5rem;
  }
}

.rental__text {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .rental__text {
    font-size: 0.875rem;
    line-height: 2.28571;
  }
}

@media screen and (max-width: 768px) {
  .rental__container {
    padding-left: 0.9375rem;
  }
}

.rental__button {
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .rental__button {
    margin-top: 3.75rem;
  }
}

/* 画像のスタイル */
.rental__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.625rem;
  overflow: hidden;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .rental__images {
    margin-top: 1.875rem;
  }
}

.rental__image {
  max-width: 25rem;
  width: 100%;
}

.rental__image img {
  aspect-ratio: 400/300;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 768px) {
  .rental__image img {
    aspect-ratio: 300/225;
  }
}

.access {
  padding-top: 7.5rem;
  padding-bottom: 6.875rem;
  background-color: #D2E9ED;
}
@media screen and (max-width: 768px) {
  .access {
    padding-top: 5.625rem;
    padding-bottom: 7.5rem;
  }
}

.access__inner {
  width: 100%;
  max-width: 53.125rem;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .access__inner {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.access__text-wrap {
  text-align: center;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .access__text-wrap {
    margin-top: 2.0625rem;
  }
}

.access__description {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  font-family: "Univers", sans-serif;
}
@media screen and (max-width: 768px) {
  .access__description {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    line-height: 1.6;
  }
}

.access__address {
  margin-top: 2.125rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0;
  font-family: "Univers", sans-serif;
}
@media screen and (max-width: 768px) {
  .access__address {
    margin-top: 0.9375rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.75;
  }
}

.access__map-wrap {
  margin-top: 1.875rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .access__map-wrap {
    margin-top: 1.4375rem;
    max-width: 37.5rem;
  }
}

.access__map {
  max-width: 100%;
  position: relative;
  padding-bottom: 50%;
  height: 0;
}
@media screen and (max-width: 500px) {
  .access__map {
    padding-bottom: 100%;
  }
}

iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0; /* 枠線を非表示にする */
  border-radius: 0.9375rem;
}
.access__map-text__wrap {
  text-align: center;
  margin-top: 1.25rem;
}

.access__map-text {
  margin-top: 0.625rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  color: #838383;
  font-family: "Univers", sans-serif;
}
@media screen and (max-width: 768px) {
  .access__map-text {
    margin-top: 1.5625rem;
  }
}

.access__container {
  margin-top: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .access__container {
    margin-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.access__img-wrap {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .access__img-wrap {
    max-width: 37.5rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.access__img-wrap img {
  width: 100%;
  border-radius: 0.9375rem;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 400/328;
}
@media screen and (max-width: 768px) {
  .access__img-wrap img {
    margin-top: 2.5rem;
    margin-right: auto;
    margin-left: auto;
    max-width: 25rem;
    aspect-ratio: 345/283;
  }
}

.access__body {
  margin-left: 7.5%;
  width: 42.5%;
}
@media screen and (max-width: 768px) {
  .access__body {
    margin-top: 2.5rem;
    width: 88%;
    max-width: 37.5rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.access__body-title-ja {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.875;
  letter-spacing: 0;
  color: #2B2B2B;
  font-family: "Noto Sans JP", sans-serif;
}

.access__body-title-en {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  color: #2B2B2B;
  font-family: "Noto Sans JP", sans-serif;
}

.access__body-text {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.71428;
  letter-spacing: 0;
  color: #707070;
  font-family: "Noto Sans JP", sans-serif;
  width: 88%;
}
@media screen and (max-width: 768px) {
  .access__body-text {
    width: 100%;
  }
}

.access__content-wrap {
  margin-top: 1.25rem;
}

.access__content-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.875;
  letter-spacing: 0;
  color: #2B2B2B;
  font-family: "Noto Sans JP", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .access__content-title {
    margin-top: 1.0625rem;
  }
}

.access__content-title img {
  width: 100%;
  max-width: 1.875rem;
  -o-object-fit: cover;
     object-fit: cover;
  padding-right: 0.3125rem;
}

.access__content-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.92857;
  letter-spacing: 0;
  color: #2B2B2B;
  font-family: "Noto Sans JP", sans-serif;
}

.about {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #D2E9ED), color-stop(50%, #FFFFFF));
  background: linear-gradient(to bottom, #D2E9ED 50%, #FFFFFF 50%);
  position: relative;
}
.about picture {
  position: relative;
}
@media screen and (max-width: 768px) {
  .about__inner {
    position: relative;
    background-color: #FFF5B8;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.about__title {
  position: absolute;
  left: 50%;
  top: 20%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .about__title {
    position: relative;
    left: auto;
    top: auto;
    -webkit-transform: none;
            transform: none;
    margin: 0 auto;
    width: 91.3%;
  }
}

.about__text-wrap {
  position: absolute;
  left: 30%;
  top: 55%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .about__text-wrap {
    position: relative;
    left: auto;
    top: auto;
    -webkit-transform: none;
            transform: none;
    margin: 0 auto;
    width: 91.3%;
    max-width: 31.25rem;
  }
}

.about__text-title {
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1.869565;
  letter-spacing: 0.06em;
  color: #2B2B2B;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .about__text-title {
    font-size: 1.3125rem;
    line-height: 1.9047619;
    margin-top: 2.5rem;
  }
}

.about__text {
  margin-top: 2.8125rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2.285714;
  color: #2B2B2B;
  letter-spacing: 0.02em;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 768px) {
  .about__text {
    margin-top: 1.875rem;
  }
}

@media screen and (max-width: 768px) {
  .about__img-wrap {
    display: block;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .about__img-wrap img {
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
    width: 100%;
  }
}

.contact {
  padding-top: 6.5625rem;
  padding-bottom: 12.9375rem;
  background-color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .contact {
    padding-top: 3.8125rem;
    padding-bottom: 10rem;
  }
}
@media screen and (max-width: 500px) {
  .contact {
    padding-bottom: 8.125rem;
  }
}

.contact__inner {
  width: 100%;
  max-width: 49rem;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .contact__inner {
    max-width: 37.5rem;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.contact__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .contact__title {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.contact__title .section-title__sub {
  margin-left: 1rem;
  margin-top: 1.75rem;
}
@media screen and (max-width: 768px) {
  .contact__title .section-title__sub {
    margin-left: 0;
    margin-top: 1.25rem;
  }
}

.contact__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.0625rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .contact__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 2.5rem;
  }
}

.contact__text {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2.28571;
  letter-spacing: 0;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .contact__text {
    margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .contact__button {
    margin-top: 2.5rem;
  }
}

.contact__button-link {
  display: inline-block;
  width: 11.25rem;
  padding: 0.875rem 2.5rem;
  color: #000000;
  border-radius: 0.3125rem;
  -webkit-transition: background-color 0.2s, color 0.2s;
  transition: background-color 0.2s, color 0.2s;
}

.contact__bottom {
  position: relative;
}

.contact__bottom img {
  position: absolute;
  left: 50%;
  top: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin-top: -2.375rem;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .contact__bottom img {
    margin-top: -5rem;
  }
}
@media screen and (max-width: 500px) {
  .contact__bottom img {
    margin-top: -3.0625rem;
  }
}

.textLeft {
  text-align: Left !important;
}

.textCenter {
  text-align: Center !important;
}

.textRight {
  text-align: Right !important;
}

.textJustify {
  text-align: Justify !important;
}

@media screen and (max-width: 767px) {
  .textMdLeft {
    text-align: Left !important;
  }
  .textMdCenter {
    text-align: Center !important;
  }
  .textMdRight {
    text-align: Right !important;
  }
  .textMdJustify {
    text-align: Justify !important;
  }
}
/*# sourceMappingURL=styles.css.map */