@charset "UTF-8";
/***************************

foundation/base.scss

***************************/
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300..700&display=swap");
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-all;
  word-wrap: break-word;
}

:root {
  --black: #584d3f;
  --pink: #cd356f;
  --light-pink: #f8f2f0;
  --gray: #92959c;
  --en: "Cormorant Garamond", serif;
  --ja: "Shippori Mincho B1", serif;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  color: #363b48;
  font-family: "YuMincho", "Yu Mincho", "游明朝", serif;
  font-weight: normal;
  height: 100%;
  color: var(--black);
  margin: 0;
  padding: 0;
  line-height: 1;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  display: block;
}

a:hover {
  opacity: 0.6;
}

a:active,
a:hover {
  outline-width: 0;
}

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

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  text-align: left;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

figcaption,
figure,
main {
  display: block;
}

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

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

::-webkit-file-upload-button {
  -webkit-appearance: none;
  font: inherit;
}

[hidden] {
  display: none;
}

address {
  font-style: normal;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
}

/***************************

layout/_header.scss

***************************/
.header {
  position: fixed;
  max-width: 410px;
  width: 100%;
  top: 0;
  z-index: 5;
  padding: 3rem 0 0;
  transition: all 0.5s ease-in-out;
}
@media screen and (min-width: 901px) {
  .header {
    margin-top: 8.5rem;
  }
}
.header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (min-width: 901px) {
  .header.is-show {
    margin-top: 0;
  }
}
.header.is-show .toggle {
  opacity: 1;
  pointer-events: fill;
}
.header.is-show .header-logo {
  color: #08a6e5;
}
.header-logo {
  color: #fff;
}
.header-logo .f15 {
  margin-top: 5px;
  display: block;
  letter-spacing: 3px;
}

/* Hamburger menu */
.gnav {
  position: fixed;
  right: 32%;
  top: 0;
  max-width: 410px;
  padding-top: 8rem;
  width: 100%;
  height: 100vh;
  z-index: 6;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
  pointer-events: none;
  align-items: stretch;
}
@media screen and (max-width: 1200px) {
  .gnav {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
.gnav.active {
  opacity: 1;
  visibility: visible;
  pointer-events: fill;
  background-color: #fff;
  overflow-y: auto;
}
.gnav-logo {
  width: 50%;
  margin: 0 auto;
}
.gnav-list {
  margin-top: 3.5rem;
  color: #2bb3e9;
  font-size: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 450px) {
  .gnav-list {
    font-size: 1.4rem;
  }
}
.gnav-item {
  margin-top: 2em;
}
.gnav-other {
  margin-top: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}
.gnav-other img {
  max-width: 2rem;
}
.gnav-other a:nth-of-type(3) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}
.gnav-other a:nth-of-type(3) .material-symbols-outlined {
  font-size: 1.3rem;
}
.gnav-reserve {
  margin: 11rem auto 0;
  width: 96%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

/* toggle button */
.toggle.active .toggle__bar {
  background-color: #fff;
  -webkit-transform: translateY(-2.5px) rotate(135deg);
  transform: translateY(-2.5px) rotate(135deg);
}

.toggle.active .toggle__bar:nth-child(2) {
  -webkit-transform: translateY(2.5px) rotate(-135deg);
  transform: translateY(2.5px) rotate(-135deg);
}

.toggle {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: block;
  background: transparent;
  border: none;
  outline: none;
  text-align: center;
  z-index: 100;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  pointer-events: none;
}
.toggle.active {
  background-color: #08a6e5;
}

.toggle__bar {
  position: absolute;
  top: 55%;
  left: calc(50% - 9px);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: block;
  width: 18px;
  height: 1px;
  background-color: #08a6e5;
  outline: 1px solid transparent;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  transition-property: background-color, transform, -webkit-transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.toggle__bar:nth-child(2) {
  top: calc(55% - 5px);
}

/***************************

layout/_footer.scss

***************************/
.footer {
  padding: 5.5rem 0 9rem;
  background-color: #fff;
}
.footer-logo {
  width: 80%;
  margin: 0 auto 2rem;
}
.footer-btm {
  margin-top: 5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #ccc6be;
}
.footer-btm p.f12 {
  margin: 1.5rem 0;
}
.footer-btm a.f12 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}
.footer-btm a.f12 img {
  max-width: 1.25rem;
}
.footer .gnav-other {
  margin-top: 1rem;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.copy {
  display: block;
  margin-top: 3.5rem;
  color: #ccc6be;
}

/***************************

object/object/project/_mv.scss

***************************/
.fv {
  margin-top: 7rem;
  height: calc(100vh - 8.5rem - 4.8rem);
  max-height: 80rem;
}
.fv-catch {
  margin: 0 0 0 auto;
  writing-mode: vertical-rl;
  letter-spacing: 5px;
}
.fv-catch span {
  display: block;
  margin-top: 6.8em;
  margin-right: 8px;
}
.fv-txt .f14 {
  margin-top: 2rem;
  letter-spacing: 2px;
}

/***************************

object/object/project/_intro.scss

***************************/
.intro {
  position: relative;
  padding-top: 115px;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 80%, rgba(255, 255, 255, 0) 100%);
}
.intro-catch {
  margin-top: -5rem;
}

/***************************

object/object/project/_activity.scss

***************************/
.activity {
  margin-top: -1px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.activity-main {
  margin-top: -1px;
  background-color: #fff;
}
@media screen and (max-width: 450px) {
  .activity-main .f24 {
    font-size: 6.3vw;
  }
}
.activity-anchor__wrap {
  margin-top: 5rem;
}
.activity-anchor__wrap a {
  border-radius: 6px;
  -webkit-border-radius: 6px;
  box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.23);
}
.activity-anchor__wrap a:not(:first-of-type) {
  margin-top: 1.5rem;
}
.activity-list {
  margin-top: 10rem;
}
.activity-item {
  position: relative;
  padding-top: 42rem;
}
.activity-item:not(:first-of-type) {
  margin-top: 8rem;
}
.activity-item .c-txt {
  font-size: 1.7rem;
}
.activity-ttl {
  position: absolute;
  top: 0;
  left: -7.5%;
  width: 115.5%;
}
.activity-swiper {
  margin-top: 3rem;
  margin-right: -6.5%;
}
.activity-swiper:has(.no-swiper) {
  margin-right: 0;
}
.activity-swiper .swiper-button-prev,
.activity-swiper .swiper-button-next {
  position: relative;
  width: 3.6rem;
  height: 3rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  left: auto;
  right: auto;
  top: auto;
  margin-top: 0;
}
.activity-swiper .swiper-button-prev:after,
.activity-swiper .swiper-button-next:after {
  display: none;
}
.activity-swiper .swiper-button-prev {
  background-image: url(../img/activity/arw-prev.webp);
}
.activity-swiper .swiper-button-next {
  background-image: url(../img/activity/arw-next.webp);
}
.activity-swiper .swiper-wrapper {
  margin-top: 2rem;
}
.activity-swiper__slide {
  padding: 0 3rem;
}
.activity-swiper__slide:not(:first-of-type) {
  border-left: 1px solid #b9cede;
}
.activity-swiper__slide:first-of-type {
  margin-left: calc(-2.5% - 3rem);
}
.activity-swiper__slide:last-of-type {
  margin-right: -3rem;
}
.activity-swiper__slide.no-swiper {
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}
.activity-swiper__slide.no-swiper .activity-fig img {
  display: block;
  width: calc(100% - 6rem);
  margin: 0 auto;
}
.activity-swiper__slide .f21 {
  margin: 2.5rem 0 1.5rem;
  font-weight: 400;
}
.activity-fig {
  position: relative;
}
.activity-fig .activity-abimg {
  position: absolute;
  bottom: 25%;
  right: -2rem;
  max-width: 12rem;
}
.activity-option {
  margin-top: 5rem;
  padding: 2.5rem 3rem;
  background-color: #e0ecf5;
}
.activity-option .f17 {
  margin: 22.5px 0 1.5rem;
}

.swiper-count__wrap {
  margin-right: 6.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.swiper-counter {
  font-size: 1.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

/***************************

object/object/project/_location.scss

***************************/
.location {
  padding: 7.5rem 0 10rem;
  background-color: rgba(83, 83, 83, 0.3);
}
.location p.f20 {
  margin: 4.5rem 0 2.5rem;
}
.location .f25 {
  margin: 4rem 0 2rem;
}
.location-base {
  position: relative;
  height: 3000px;
}
.location-cont {
  margin-top: 7rem;
  padding: 3.5rem 3.75rem;
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.15);
  position: sticky;
  top: 7vh;
}
@media screen and (max-width: 450px) {
  .location-cont {
    top: 3vh;
  }
}
.location-list {
  position: relative;
  height: 510px;
}
.location-item .f18 {
  margin: 2.7rem 0 1.8rem;
}
.location-fig {
  position: relative;
  max-width: 23.8rem;
  margin: -2rem auto 0;
}
.location-fig img {
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}
.location-cap {
  position: absolute;
  bottom: 7.5px;
  right: 0;
  color: #0c6bd6;
}

#location-item01 {
  z-index: -1;
  opacity: 0;
  transition-duration: 0.5s;
}
#location-item01.active {
  opacity: 1;
  z-index: 3;
  transition-duration: 0.5s;
}

#location-item02 {
  opacity: 0;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  transition-duration: 0.5s;
}
#location-item02.active {
  opacity: 1;
  z-index: 3;
  transition-duration: 0.5s;
}

#location-item03 {
  opacity: 0;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  transition-duration: 0.5s;
}
#location-item03.active {
  opacity: 1;
  z-index: 3;
  transition-duration: 0.5s;
}

/***************************

object/object/project/_plan.scss

***************************/
.plan {
  padding: 6rem 0 0;
  background-color: #fff;
}
.plan-hg {
  margin-bottom: 2.5rem;
}
.plan-hg .f18 {
  margin-bottom: 1.25rem;
}
.plan-hg h2 {
  max-width: 263px;
  margin: 0 auto;
}
.plan-anchor__wrap {
  margin-top: 5rem;
}
.plan-anchor {
  position: relative;
  padding: 2rem 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px dotted #ccc6be;
}
.plan-anchor:last-of-type {
  border-bottom: 1px dotted #ccc6be;
}
.plan-anchor::before {
  position: absolute;
  content: "";
  width: 2rem;
  height: 1px;
  bottom: -1px;
  right: 0;
  background-color: #584d3f;
  z-index: 1;
}
.plan-anchor__dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}
.plan-anchor__arw {
  max-width: 2rem;
}
.plan-anchor__soon {
  padding: 5px;
  border: 1px solid #cdcac3;
  border-radius: 4px;
  -webkit-border-radius: 4px;
}
.plan-cont {
  position: relative;
  margin-top: calc(-100vh + 6rem);
  padding-bottom: 10rem;
  padding-left: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.plan-cont .f35 {
  position: sticky;
  top: 9.5rem;
  z-index: 2;
  writing-mode: vertical-rl;
  font-weight: normal;
}
.plan-bg {
  position: sticky;
  width: 100%;
  height: 120vh;
  top: -20vh;
  left: 0;
  z-index: 0;
  margin-top: -20vh;
  background: url(../img/plan/cont-bg.webp) no-repeat top right/cover;
}
.plan-list {
  position: relative;
  z-index: 2;
}
.plan-item {
  padding: 4rem 2.5rem 5rem;
  background-color: #eff4f8;
}
.plan-item:not(:first-of-type) {
  margin-top: 3rem;
}
.plan-item .plan-anchor__dl {
  margin-bottom: 2.5rem;
}
.plan-item .plan-anchor__dl .f20 {
  font-weight: 400;
}
.plan-item__ttl {
  margin-top: 4rem;
  padding: 5px 1em;
  background-color: #dde9f3;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  font-weight: 400;
}
.plan-price {
  margin-top: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.plan-cap {
  margin: 1.5rem 0 2rem;
  padding: 3px 1.5rem;
  display: block;
  background-color: #fff;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  line-height: 2;
}
.plan-overview {
  padding: 1.4rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3rem;
  line-height: 2;
  border-top: 1px dotted #b9cede;
}
.plan-overview dt {
  width: 4em;
}
.plan-overview dd {
  width: calc(100% - (3rem + 4em));
}
.plan-overview dd small {
  display: block;
}

/***************************

object/object/project/_flow.scss

***************************/
.flow {
  padding-bottom: 9rem;
  background: url(../img/flow/bg.webp) no-repeat top left/cover;
}
.flow h3.f22 {
  margin-top: -1em;
}
.flow-list {
  margin-top: 5rem;
}
.flow-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.5rem;
}
.flow-item:not(:last-of-type) {
  position: relative;
  padding-bottom: 6rem;
}
.flow-item:not(:last-of-type)::before {
  position: absolute;
  content: "";
  width: 3px;
  height: calc(100% - 7rem);
  bottom: 0;
  left: calc(3.5rem - 3px);
  background-image: repeating-radial-gradient(circle, #fff 0px, #fff 1.5px, transparent 1.5px, transparent 6px);
  background-repeat: repeat-y;
  background-position: left center;
  background-size: 6px 6px;
}
.flow-num {
  width: 7rem;
  aspect-ratio: 1/1;
  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-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
  border: 1px solid #fff;
}
.flow-num .f11 {
  margin-bottom: 5px;
}
.flow-dl {
  width: calc(100% - 8.5rem);
}
.flow-dl .f16 {
  margin-top: 1rem;
}

/***************************

object/object/project/_access.scss

***************************/
.access {
  padding-bottom: 10rem;
  background-color: rgba(83, 83, 83, 0.3);
}
.access .f25 {
  margin-top: -2.6em;
  margin-bottom: 2.5rem;
}
.access-map {
  margin-top: 4rem;
  display: block;
}
.access-add {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}
.access-link {
  all: unset;
  padding: 7.5px 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
  background-color: #fff;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.06);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  cursor: pointer;
}
.access-link img {
  max-width: 8.5px;
}
.access-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 3rem;
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  z-index: 40;
  background-color: rgba(83, 83, 83, 0.4);
}
.access-modal.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: fill;
}
.access-modal__inner {
  position: relative;
  margin: 0 auto;
  width: fit-content;
  z-index: 41;
}
.access .modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 40;
}
.access .batu-btn {
  width: 3rem;
  aspect-ratio: 1/1;
  position: absolute;
  top: -4rem;
  right: -4rem;
  cursor: pointer;
}
@media screen and (max-width: 450px) {
  .access .batu-btn {
    right: -1.5rem;
  }
}
.access .batu-btn::before, .access .batu-btn::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 3rem;
  top: calc(50% - 1.5rem);
  left: calc(50% - 1.5rem);
  background-color: #fff;
}
.access .batu-btn::before {
  transform: rotate(45deg);
}
.access .batu-btn::after {
  transform: rotate(-45deg);
}
.access-method {
  margin-top: 5rem;
  padding: 2.5rem 3rem;
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.15);
}
.access-method__ttl01 {
  width: calc(100% + 3rem);
  margin-left: -1.5rem;
  padding: 0 1rem 7px;
  border-bottom: 1px solid #fff;
}
.access-method__ttl02 {
  margin: 2.3rem 0 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.8rem;
}
.access-method__ttl02:nth-of-type(2) {
  margin-top: 3.8rem;
}
.access-method__ttl02-ico {
  width: 5rem;
  aspect-ratio: 1/1;
  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;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
  background-color: #0c6bd6;
}
.access-method__ttl02-ico img {
  max-width: 50%;
  max-height: 50%;
}
.access-method .access-link {
  margin-top: 1.5rem;
  width: fit-content;
  background-color: #2b3956;
}
.access-method .access-link img {
  max-width: 11px;
}
.access-method__list {
  margin: 2.2rem 0 3rem;
}
.access-method__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 6px;
}
.access-method__item:not(:first-of-type) {
  margin-top: 2rem;
}
.access-method__item .f13 {
  width: calc(100% - (1.45rem + 6px));
}
.access-method__ico {
  display: block;
  max-width: 1.45rem;
  padding-top: 3px;
}
.access-method__dl {
  padding: 1.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3rem;
  line-height: 2;
  border-top: 1px dotted #fff;
}
.access-method__dl dt {
  width: 4em;
}
.access-method__dl dd {
  width: calc(100% - (4em + 3rem));
}

/***************************

object/component/_heading.scss

***************************/
.c-hg {
  margin-bottom: 2.5em;
}
.c-hg h2 {
  margin-top: 2rem;
  font-weight: normal;
}

.c-ttl {
  writing-mode: vertical-rl;
  font-weight: 400;
  color: #fff;
  margin-left: -5px;
}

/***************************

object/component/_box.scss

***************************/
.inner {
  max-width: 1500px;
  width: 87%;
  margin: 0 auto;
}

.sp {
  display: none;
}
@media screen and (max-width: 450px) {
  .sp {
    display: inline-block;
  }
}

.radius10 {
  border-radius: 10px;
  -webkit-border-radius: 10px;
}

.radius60 {
  border-radius: 60px;
  -webkit-border-radius: 60px;
}
@media screen and (max-width: 500px) {
  .radius60 {
    border-radius: 30px;
    -webkit-border-radius: 30px;
  }
}

.radius100vmax {
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}

.pc-fv {
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  top: 0;
  left: 0;
}
.pc-fv__left {
  max-width: 340px;
  width: 100%;
  height: 100vh;
  margin-left: 12%;
  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-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 1400px) {
  .pc-fv__left {
    margin-left: 5vw;
    width: 25%;
  }
}
@media screen and (max-width: 1100px) {
  .pc-fv__left {
    margin-left: 2vw;
  }
}
@media screen and (max-width: 900px) {
  .pc-fv__left {
    display: none;
  }
}
.pc-fv__left .f24 {
  margin-bottom: 2rem;
}
.pc-fv__left a {
  max-width: 28rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  -webkit-border-radius: 6px;
}
.pc-fv__left a:nth-of-type(1) {
  margin-top: 2vh;
}
.pc-fv__left a:nth-of-type(2) {
  margin-top: 2vh;
}
.pc-fv__right {
  max-width: 277px;
  width: 100%;
  margin-right: 12%;
  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-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 1400px) {
  .pc-fv__right {
    margin-right: 6vw;
    width: 20%;
  }
}
@media screen and (max-width: 900px) {
  .pc-fv__right {
    display: none;
  }
}

.fv-swiper {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
}
.fv-swiper .swiper-slide:nth-of-type(1) .fv-swiper__img {
  background-image: url(../img/common/fv-slide01.webp);
}
@media screen and (max-width: 900px) {
  .fv-swiper .swiper-slide:nth-of-type(1) .fv-swiper__img {
    background-position: left 60% center;
  }
}
.fv-swiper .swiper-slide:nth-of-type(2) .fv-swiper__img {
  background-image: url(../img/common/fv-slide02.webp);
}
.fv-swiper .swiper-slide:nth-of-type(3) .fv-swiper__img {
  background-image: url(../img/common/fv-slide03.webp);
}
.fv-swiper .swiper-slide:nth-of-type(4) .fv-swiper__img, .fv-swiper .swiper-slide:nth-of-type(5) .fv-swiper__img {
  background-image: url(../img/common/fv-slide04.webp);
}
.fv-swiper .swiper-slide.swiper-slide-active .fv-swiper__img {
  animation: zoomDown 8s linear forwards;
}
.fv-swiper__img {
  width: 100vw;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@keyframes zoomDown {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.pc-nav__link {
  position: relative;
  margin-top: 4rem;
  padding-left: 4rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 450px) {
  .pc-nav__link {
    font-size: 1.6rem;
  }
}
.pc-nav__link::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 25px;
  aspect-ratio: 25/7;
  transform: translateY(-50%);
  z-index: 1;
  background: url(../img/common/ico-wave.webp) no-repeat center center/cover;
  opacity: 0;
}
.pc-nav__link::after {
  position: absolute;
  content: "";
  width: 130%;
  height: 1px;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
}
.pc-nav__link.now::before, .pc-nav__link.now::after {
  opacity: 1;
}

.sp-cont {
  position: relative;
  max-width: 410px;
  margin: 8.5rem 32% 0 auto;
  border-radius: 2rem 2rem 0 0;
  -webkit-border-radius: 2rem 2rem 0 0;
  border: 1px solid #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1200px) {
  .sp-cont {
    margin-right: auto;
  }
}
@media screen and (max-width: 900px) {
  .sp-cont {
    margin-top: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    border-width: 0;
    box-shadow: none;
  }
}
.sp-cont::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.6);
  mix-blend-mode: screen;
  border-radius: 2rem 2rem 0 0;
  -webkit-border-radius: 2rem 2rem 0 0;
}
@media screen and (max-width: 900px) {
  .sp-cont::before {
    display: none;
  }
}
.sp-cont__fix {
  position: fixed;
  max-width: 410px;
  padding: 0 5px;
  bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5px;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease-in-out;
}
@media screen and (min-width: 901px) {
  .sp-cont__fix {
    display: none;
  }
}
.sp-cont__fix.is-show {
  opacity: 1;
  pointer-events: fill;
}

.scroll-txt {
  position: absolute;
  bottom: 0;
  right: calc(35% + 402px);
  z-index: 4;
  padding-bottom: 9rem;
}
@media screen and (max-width: 900px) {
  .scroll-txt {
    display: none;
  }
}
.scroll-txt::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 8rem;
  bottom: 0;
  left: 5px;
  z-index: 1;
  background-color: #fff;
  animation: scroll 1.5s infinite;
}
.scroll-txt p {
  writing-mode: vertical-rl;
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/*////////////////////////

fade

////////////////////////*/
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  opacity: 1;
  animation: fadeUpAnime 0.5s ease-in-out;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/***************************

object/component/_button.scss

***************************/
.c-btn {
  max-width: 300px;
  margin: 1.6rem auto 0;
  padding: 1.5rem 1.5rem 1.5rem 5.75rem;
  color: #fff;
  background-color: #06aff2;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.c-btn span {
  display: block;
}
.c-btn span:last-of-type {
  margin-top: 0.5rem;
}

.arw {
  max-width: 5.5rem;
}

/***************************

object/utility/_background.scss

***************************/
.bg-white {
  background-color: #fff;
}

.bg-dark-pink {
  background-color: #f2e7e4;
}

/***************************

object/utility/_link.scss

***************************/
/***************************

object/utility/_text.scss

***************************/
.c-txt {
  font-size: 1.6rem;
  line-height: 2.125;
}
@media screen and (max-width: 450px) {
  .c-txt {
    font-size: 1.5rem;
  }
}

.c-txt__under {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.txt-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.txt-ellipsis02 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* ← 最大2行まで */
  max-height: 3em; /* 2行分の高さ */
  white-space: normal;
  text-overflow: ellipsis;
}

.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.fwb {
  font-weight: bold;
}

.fwn {
  font-weight: normal;
}

.fwm {
  font-weight: 500;
}

.f8 {
  font-size: 8px;
}

.f12 {
  font-size: 1.2rem;
}

.f13 {
  font-size: 1.3rem;
}

.f14 {
  font-size: 1.4rem;
}

.f15 {
  font-size: 1.5rem;
}
@media screen and (max-width: 450px) {
  .f15 {
    font-size: 1.4rem;
  }
}

.f16 {
  font-size: 1.6rem;
}
@media screen and (max-width: 450px) {
  .f16 {
    font-size: 1.5rem;
  }
}

.f17 {
  font-size: 1.7rem;
}

.f18 {
  font-size: 1.8rem;
}
@media screen and (max-width: 450px) {
  .f18 {
    font-size: 1.6rem;
  }
}

.f20 {
  font-size: 2rem;
}

.f21 {
  font-size: 2.1rem;
}
@media screen and (max-width: 450px) {
  .f21 {
    font-size: 4.7vw;
  }
}

.f22 {
  font-size: 2.2rem;
}

.f24 {
  font-size: 2.4rem;
}
@media screen and (max-width: 450px) {
  .f24 {
    font-size: 4.7vw;
  }
}

.f25 {
  font-size: 2.5rem;
}

.f28 {
  font-size: 2.8rem;
}
@media screen and (max-width: 450px) {
  .f28 {
    font-size: 6vw;
  }
}

.f32 {
  font-size: 3.2rem;
}
@media screen and (max-width: 550px) {
  .f32 {
    font-size: 5.4vw;
  }
}

.f35 {
  font-size: 3.5rem;
}

.f40 {
  font-size: 4rem;
}
@media screen and (max-width: 600px) {
  .f40 {
    font-size: 6.6vw;
  }
}

.f45 {
  font-size: 4.5rem;
}

.f48 {
  font-size: 4.8rem;
}
@media screen and (max-width: 500px) {
  .f48 {
    font-size: 7vw;
  }
}

.f50 {
  font-size: 5rem;
}

.f56 {
  font-size: 5.6rem;
}
@media screen and (max-width: 450px) {
  .f56 {
    font-size: 12vw;
  }
}

.f80 {
  font-size: 8rem;
}
@media screen and (max-width: 500px) {
  .f80 {
    font-size: 16vw;
  }
}

.f120 {
  font-size: 12rem;
}
@media screen and (max-width: 834px) {
  .f120 {
    font-size: 14.4vw;
  }
}

.fc-blue {
  color: #08a6e5;
}

.fc-light-blue {
  color: #6bb7d5;
}

.fc-wht {
  color: #fff;
}

.lh-1_3 {
  line-height: 1.3;
}

.lh-1_4 {
  line-height: 1.4;
}

.lh-1_5 {
  line-height: 1.5;
}

.lh-1_6 {
  line-height: 1.6;
}

.lh-1_7 {
  line-height: 1.7;
}

.lh-1_8 {
  line-height: 1.8;
}

.lh-2 {
  line-height: 2;
}

.lh-2_2 {
  line-height: 2.2;
}

.lh-2_5 {
  line-height: 2.5;
}
@media screen and (max-width: 450px) {
  .lh-2_5 {
    line-height: 1.8;
  }
}

.lh-2_7 {
  line-height: 2.7;
}
@media screen and (max-width: 450px) {
  .lh-2_7 {
    line-height: 2;
  }
}

.bg-pink_txt {
  display: block;
  width: fit-content;
  padding: 1rem;
  color: #fff;
  background-color: #cd356f;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}

.txt-underline {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 10px;
}

.w-50em {
  display: inline-block;
  width: 0.5em;
}

.wm-rl {
  writing-mode: vertical-rl;
}

/***************************

object/utility/_font.scss

***************************/
.en {
  font-family: "Cormorant Garamond", serif;
}