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

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  position: relative;
  font-size: 2rem;
  font-size: 20px;
  color: #1F3D3E;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 400;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.8;
  width: 100%;
}

body::before {
  position: fixed;
  content: '';
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: url(../img/common/body-back.jpg) no-repeat center center/cover;
  z-index: -2;
}

body::after {
  position: fixed;
  content: '';
  max-width: 500px;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 501px) {
  body::after {
    box-shadow: -12px 0 20px -12px rgba(0, 0, 0, 0.5), 12px 0 20px -12px rgba(0, 0, 0, 0.5);
  }
}
@media screen and (max-width: 1024px) {
  body::after {
    left: 100%;
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 768px) {
  body::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

a {
  color: #1F3D3E;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: .3s;
  -moz-transition: .3s;
  -webkit-transition: .3s;
  -o-transition: .3s;
  -ms-transition: .3s;
}

a:hover {
  color: #1F3D3E;
  text-decoration: none;
  opacity: 0.65;
}

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

li {
  margin: 0;
  list-style: none;
}

ul, ol {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p, figure, dd, dt, dl {
  margin: 0;
}

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

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;
}

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

button {
  border: none;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: none;
  -moz-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;
}

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
  -moz-appearance: none;
  -webkit-appearance: none;
}

/* Grid System width Flex */
.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-row {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-row-rev {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-col {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col;
  flex-direction: col;
}

.flex-col-rev {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col-reverse;
  flex-direction: col-reverse;
}

.flex-nowrap {
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-align-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

/*margin*/
.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

/* form input*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 100%;
  width: 100%;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=password],
input[type=number],
select {
  font-size: 16px;
  font-size: 1.6rem;
  background: #FFF;
  border: 1px solid #E8E8E8;
  margin: 2px;
  padding: 0 .3em;
  width: 100%;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=number]:focus,
select:focus {
  outline: none;
  border-color: #000;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

select {
  font-size: 13px;
  font-size: 1.3rem;
  height: 2.5em;
  padding: .5em;
  width: auto;
  min-width: 7em;
}

textarea {
  font-size: 16px;
  font-size: 1.6rem;
  background: #FFF;
  border: 1px solid #E8E8E8;
  padding: 0 .3em;
  resize: vertical;
  width: 100%;
}
textarea :focus {
  outline: none;
  border-color: #000;
}

input[type=checkbox],
input[type=radio] {
  background: #FFF;
  cursor: pointer;
  margin-right: .5em;
}

textarea::placeholder,
input::placeholder {
  font-size: 1.4rem;
  color: #C5C5C5;
}

/* wordpress pager */
.pager {
  display: flex;
  height: 35px;
  margin-bottom: 60px;
  max-width: 100%;
  padding: 30px 0;
  position: relative;
}
.pager a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  position: relative;
  line-height: 1.42857143;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #E8E8E8;
  color: #000;
  font-weight: bold;
  margin: 5px;
  padding: 5px 10px;
}

.pc .pager a:active,
.pc .pager a:hover,
.pc .pager a:focus {
  border-color: #000;
  color: #000;
}

.pager .previous, .pager .next,
.pager .back {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.pager .previous a {
  padding-left: 1.5em;
}

.pager .previous a:before {
  content: "≪";
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
}

.pager .next a {
  padding-right: 1.5em;
}
.pager .next a:after {
  content: "≫";
  content: "";
  position: absolute;
  right: 5px;
  top: 4px;
}

.pager .back a {
  padding: 5px;
}

/* wordpress pagination */
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.pagination > li {
  position: relative;
}

.pagination > li > span,
.pagination > li > a {
  border-radius: 4px;
  border: 1px solid #E8E8E8;
  color: #231815;
  margin: 3px;
  width: 2.4em;
  height: 2.4em;
  line-height: 2.4;
  display: block;
  text-decoration: none;
  padding: 0;
}

.pagination > li > span {
  border-color: #231815;
  cursor: default;
}

.pc .pagination > li > a:active,
.pc .pagination > li > a:hover,
.pc .pagination > li > a:focus {
  border-color: #000;
  color: #000;
}

.pagination > li span.dot {
  border: none;
  width: 1em;
}

/* wordpress wp-pagenavi */
.wp-pagenavi {
  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;
}
.wp-pagenavi a,
.wp-pagenavi span {
  font-size: 1.6rem;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  border: 1px solid #000;
  color: #000;
  margin: 3px;
  width: 2.4em;
  height: 2.4em;
  line-height: 2.4;
  display: block;
  text-decoration: none;
  padding: 0;
}
.wp-pagenavi .current {
  border: 0;
  color: #fff;
  background: #000;
  font-weight: normal;
}
.wp-pagenavi a:hover {
  border: 1px solid #000;
}

/* wordpress breadcrumbs */
.txt_ellipsis .breadcrumbs span:last-of-type {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 130px;
  display: inline-block;
  vertical-align: bottom;
}

.breadcrumbs {
  margin: 2% 0;
  font-size: 1.2rem;
}
.breadcrumbs .container {
  margin-left: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.breadcrumbs a {
  color: #231815;
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: #000;
}
.breadcrumbs ul, .breadcrumbs ol {
  list-style: none;
  padding: 0;
}
.breadcrumbs li {
  display: inline;
}
.breadcrumbs li:before {
  content: ">";
  margin: 0 10px;
}
.breadcrumbs li:first-child:before {
  display: none;
}

@media screen and (max-width: 560px) {
  .breadcrumbs {
    font-size: 1rem;
  }
  .breadcrumbs li:before {
    margin: 0 5px;
  }
}
/* Slick Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

.slick-slide img {
  width: 100%;
  height: auto;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img,
.slick-initialized .slick-slide {
  display: block;
}

.slick-slide.slick-loading img,
.slick-arrow.slick-hidden {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./img/common/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick/slick.eot");
  src: url("./fonts/slick/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick/slick.woff") format("woff"), url("./fonts/slick/slick.ttf") format("truetype"), url("./fonts/slick/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 1;
  display: block;
  width: 16px;
  height: 31px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin-top: -15px;
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  opacity: 0.65;
  color: transparent;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  opacity: 0.25;
}

.slick-prev {
  left: 30px;
  background: url(../img/common/btn-prev.png) no-repeat center center;
}

.slick-next {
  right: 30px;
  background: url(../img/common/btn-next.png) no-repeat center center;
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  position: absolute;
  bottom: 10px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: #AAA;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots .slick-active button:before {
  color: #000;
  opacity: 0.75;
}

.slick-archive {
  padding-top: 10px;
  margin: 0 auto;
  width: calc(100% - 50px);
}

.slick-archive__item {
  padding: 5px;
}

.slick-archive__item a {
  display: block;
  max-width: 350px;
  margin: auto;
  color: #231815;
  text-decoration: none;
  position: relative;
}

.slick-archive__item a:hover {
  opacity: 0.65;
}

.slick-archive__date {
  margin-top: 5px;
  display: block;
}

.slick-archive__title {
  display: block;
  font-weight: bold;
}

.slick-archive__label {
  background-color: #464a4c;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: .2em 2em;
}

@media screen and (max-width: 560px) {
  .slick-archive__date,
  .slick-archive__label {
    font-size: 1rem;
  }

  .slick-archive__title {
    font-size: 1.2rem;
  }
}
 /***************************

layout/header.scss

***************************/
/* toggle button */
.toggle {
  cursor: pointer;
  display: inline-block;
  background: none;
  border: none;
  outline: none;
  position: absolute;
  padding: 10px;
  right: 15px;
  text-align: center;
  top: 10px;
  z-index: 20;
}

.toggle__bar {
  position: relative;
  margin: 8px auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.toggle__bar, .toggle__bar::before, .toggle__bar::after {
  display: block;
  width: 45px;
  height: 2px;
  background-color: #1F3D3E;
  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.3s;
  transition-duration: 0.3s;
}

.toggle__bar {
  background: transparent;
}

.toggle__bar::before, .toggle__bar::after {
  position: absolute;
  content: "";
}

.toggle__bar::before {
  top: -4px;
}

.toggle__bar::after {
  top: 4px;
}

.toggle__text {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  white-space: nowrap;
}

.toggle__text::before {
  content: 'MENU';
  padding-top: 5px;
}

.toggle.active .toggle__bar {
  background-color: transparent;
}

.toggle.active .toggle__bar::before {
  -webkit-transform: translateY(4px) rotate(45deg);
  -ms-transform: translateY(4px) rotate(45deg);
  transform: translateY(4px) rotate(45deg);
}

.toggle.active .toggle__bar::after {
  -webkit-transform: translateY(-4px) rotate(-45deg);
  -ms-transform: translateY(-4px) rotate(-45deg);
  transform: translateY(-4px) rotate(-45deg);
}

.toggle.active .toggle__text::before {
  content: 'CLOSE';
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

/* Hamburger menu */
.gnav {
  line-height: 1.6;
  margin: 0;
}

.gnav {
  position: fixed;
  right: calc((100% - 500px) / 2);
  top: 0;
  max-width: 500px;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 10;
  padding: 100px 20px 30px;
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
}
.gnav a {
  font-weight: 600;
}
.gnav ul li:not(:last-child) {
  margin-bottom: 10px;
}

.gnav.active {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  .gnav {
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .gnav {
    right: calc((100% - 500px) / 2);
  }
}
@media screen and (max-width: 500px) {
  .gnav {
    right: 0;
  }
}
 /***************************

 header

***************************/
header {
  background-color: #000;
  position: relative;
  top: 0;
  left: 0;
  z-index: 20;
  max-width: 500px;
  width: 100%;
  height: 72px;
  margin: 0 auto;
}

.header-inner {
  width: 100%;
  padding: 0 3%;
  height: 100%;
  background-color: #fff;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}

header .logo {
  width: calc(100% - 80px);
  line-height: 1;
  z-index: 20;
}

header nav {
  width: 100%;
  max-width: 500px;
}

@media screen and (max-width: 1024px) {
  header {
    margin-right: 0;
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  header {
    margin: 0 auto;
  }
}
@media screen and (max-width: 500px) {
  header.fixedmenu {
    position: fixed;
    background: transparent;
  }
}
.body-back-text {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18rem;
  letter-spacing: -0.02em;
  color: #EEEDF3;
  z-index: -1;
}
.body-back-text span {
  display: inline-block;
  white-space: nowrap;
  line-height: 1;
  animation: text-endless 30s linear infinite;
}

@keyframes text-endless {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
 /***************************

layout/footer.scss

***************************/
.footer {
  position: relative;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  color: #1F3D3E;
  font-weight: normal;
  overflow: hidden;
}
.footer .btn-A.is--white {
  padding: 20px 55px;
  padding-left: 105px;
}
@media screen and (max-width: 500px) {
  .footer .btn-A.is--white {
    padding-left: 75px;
  }
}

.footer a, .footer a:hover {
  color: #1F3D3E;
}

.footer .logo {
  margin: 0 0 30px 0;
}

.footer .add {
  margin-bottom: 40px;
}

.footer-cont {
  position: relative;
  width: 100%;
  background: url(../img/common/footer-bk.png) no-repeat top 70px left 3%;
  background-size: 124px 802px;
  margin-top: 30px;
  margin-bottom: 100px;
  padding: 70px 3%;
  z-index: 2;
}
.footer-cont:before {
  position: absolute;
  content: '';
  width: 110%;
  height: calc(100% + 60px);
  background: rgba(32, 62, 63, 0.3);
  left: -5%;
  top: -30px;
  border-top-left-radius: 50% 35px;
  border-top-right-radius: 50% 35px;
  border-bottom-left-radius: 50% 35px;
  border-bottom-right-radius: 50% 35px;
  z-index: -1;
}
.footer-cont:after {
  position: absolute;
  content: '';
  width: 110%;
  height: 100%;
  background: #203E3F;
  left: -5%;
  top: 0;
  border-top-left-radius: 50% 35px;
  border-top-right-radius: 50% 35px;
  border-bottom-left-radius: 50% 35px;
  border-bottom-right-radius: 50% 35px;
  z-index: -1;
}

.footer .copy {
  width: 100%;
  margin: 20px auto 0 auto;
  font-size: 1.6rem;
  padding: 15px 0;
  display: block;
  text-align: center;
  font-weight: normal;
}

@media screen and (min-width: 501px) {
  .fixed-nav {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .footer {
    margin-left: auto;
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    margin: 0 auto;
  }
}
@media screen and (max-width: 500px) {
  .footer {
    padding-bottom: 150px;
  }

  .footer-cont {
    padding: 50px 3%;
    margin-bottom: 70px;
  }

  .fixed-nav {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 10;
  }
  .fixed-nav ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 94%;
    margin: 0 auto;
    border-radius: 5px;
    background: linear-gradient(90deg, #CA9BB9 30%, #ABB0D8 34%, #ABB0D8 66%, #99BDEA 68%);
  }
  .fixed-nav ul li {
    height: 120px;
    font-size: 4vw;
  }
  .fixed-nav ul li a {
    display: flex;
    -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;
    width: 100%;
    height: 100%;
    color: #fff;
    text-align: center;
    line-height: 1.2;
  }
  .fixed-nav ul li a.tel {
    text-decoration: none;
  }
  .fixed-nav ul li a img {
    margin-bottom: 10px;
  }
  .fixed-nav ul li:first-child {
    font-size: 3.6vw;
  }
  .fixed-nav ul li:first-child span {
    font-size: 3.2vw;
  }
  .fixed-nav ul li:first-child img {
    width: 7vw;
  }
  .fixed-nav ul li:nth-child(2) img {
    width: 7vw;
  }
  .fixed-nav ul li:last-child img {
    width: 10vw;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 375px) {
  .footer {
    padding-bottom: 130px;
  }

  .fixed-nav ul li {
    height: 80px;
  }
}
/*////////////////////////

 user common css

////////////////////////*/
.container_l {
  width: 94%;
  margin: auto;
}

.container_m {
  width: 84%;
  margin: auto;
}

.container_s {
  width: 74%;
  margin: auto;
}

.sp_550 {
  display: none;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.vt_align_top {
  vertical-align: top;
}

.wd_100 {
  width: 100%;
}

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

  .pc {
    display: none;
  }
}
@media screen and (min-width: 651px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 650px) {
  a[href^="tel:"] {
    text-decoration: underline;
    display: inline-block;
  }
}
@media screen and (max-width: 550px) {
  .pc_550 {
    display: none;
  }

  .sp_550 {
    display: block;
  }
}
/*////////////////////////

fonts

////////////////////////*/
.bold {
  font-weight: bold;
}

.col-white {
  color: #fff;
}

.col-pink {
  color: #CA9AB8;
}

.ls_5 {
  letter-spacing: 0.05em;
}

.lh_2 {
  line-height: 2;
}

.lh_18 {
  line-height: 1.8;
}

.lh_1 {
  line-height: 1;
}

.fz-16 {
  font-size: 1.6rem;
}

.fz-18 {
  font-size: 1.8rem;
}

.fz-26 {
  font-size: 2.6rem;
}
@media screen and (max-width: 500px) {
  .fz-26 {
    font-size: 2.2rem;
  }
}

.txt-bk_yellow {
  background: linear-gradient(180deg, transparent 60%, #FFF255 60%);
}

.merriweather {
  font-family: "Merriweather", serif;
  font-weight: 400;
}

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

object/project/effects.scss

***************************/
/*ロード時にフェードイン*/
.fadein {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*スクロールフェードイン*/
.fadeInTop {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInTop;
  animation-name: fadeInTop;
  visibility: visible !important;
}

@-webkit-keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInBottom {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInBottom;
  animation-name: fadeInBottom;
  visibility: visible !important;
}

@-webkit-keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInLeft {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  visibility: visible !important;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
  visibility: visible !important;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes aboutText {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes openBox {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@-webkit-keyframes openBox {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@keyframes openText {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
  }
}
@-webkit-keyframes openText {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
  }
}
@keyframes faq {
  0% {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  100% {
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 1.8;
    visibility: visible;
  }
}
/*////////////////////////

btn

////////////////////////*/
.btn-A {
  position: relative;
  display: block;
  max-width: 470px;
  width: 100%;
  background: #FFF255;
  border: 8px solid #FBDD53;
  border-radius: 65px;
  padding: 30px 55px;
  padding-left: 105px;
  font-weight: bold;
  font-size: 2.6rem;
  margin-bottom: 20px;
  box-shadow: 7px 9px 0 rgba(48, 56, 65, 0.2);
}
.btn-A.is--white {
  background: #FFF;
  border-color: #DEE2E2;
  box-shadow: none;
}
.btn-A img {
  position: absolute;
  left: 30px;
  top: calc(50% - 32px);
}
.btn-A i {
  position: absolute;
  right: 30px;
  top: calc(50% - 13px);
}
.btn-A:hover {
  opacity: 1;
  transform: translate(5px, 5px);
  box-shadow: 0 0 0 rgba(48, 56, 65, 0.2);
}

.btn-center {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .tab-center {
    margin: 0 auto;
  }
}
@media screen and (max-width: 500px) {
  .btn-A {
    font-size: 2.2rem;
    padding-left: 75px;
  }
  .btn-A img {
    width: 44px;
    top: calc(50% - 22px);
    left: 15px;
  }
}
/*////////////////////////

hdg__

////////////////////////*/
.hdg_01 {
  position: relative;
  line-height: 1.1;
  padding-bottom: 50px;
  background: url(../img/top/hdg-border.png) no-repeat center bottom;
  background-size: 48px 18px;
}
.hdg_01 .en {
  margin-bottom: 10px;
}
.hdg_01 .ja {
  font-size: 5.2rem;
}

@media screen and (max-width: 500px) {
  .hdg_01 {
    padding-bottom: 30px;
  }
  .hdg_01 .ja {
    font-size: 3.5rem;
  }
}
/***************************

object/project/top.scss

***************************/
.main {
  position: relative;
  width: 100%;
}

.lp-left-content,
.lp-right-content {
  position: fixed;
  width: calc((100% - 500px) / 2);
  top: 0;
  padding: 50px;
}

.lp-left-content {
  left: 0;
}
.lp-left-content .logo {
  margin-bottom: 40px;
}
.lp-left-content .side-menu {
  width: 100%;
}
.lp-left-content .side-menu_item:not(:last-child) {
  margin-bottom: 20px;
}
.lp-left-content .side-menu_item a {
  font-weight: 600;
  color: #1F3D3E;
}
@media screen and (max-width: 1024px) {
  .lp-left-content {
    width: calc(100% - 500px);
  }
}
@media screen and (max-width: 900px) {
  .lp-left-content {
    padding: 50px 25px;
  }
}
@media screen and (max-width: 768px) {
  .lp-left-content {
    display: none;
  }
}

.lp-right-content {
  right: 0;
}
.lp-right-content .banner-list {
  width: 100%;
}
.lp-right-content .banner-list_item {
  text-align: center;
}
.lp-right-content .banner-list_item:not(:last-child) {
  margin-bottom: 30px;
}
.lp-right-content .banner-list_item h3 {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .lp-right-content {
    display: none;
  }
}

.lp-main-content {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .lp-main-content {
    margin-right: 0;
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  .lp-main-content {
    margin: 0 auto;
  }
}

.campaign {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
}
.campaign-flag {
  position: absolute;
  max-width: 450px;
  width: 96%;
  font-weight: 500;
  color: #fff;
  background: #CA9BB9;
  border: 3px solid #fff;
  border-radius: 40px;
  text-align: center;
  padding: 10px;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.campaign-flag:after {
  position: absolute;
  content: '';
  width: 20px;
  height: 40px;
  background: url(../img/top/campaign-flag.png) no-repeat center center/contain;
  bottom: -40px;
  left: calc(50% - 10px);
}
.campaign-cont {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}
.campaign-inner {
  position: relative;
  margin-bottom: 30px;
  z-index: 2;
  padding: 90px 3%;
}
@media screen and (max-width: 500px) {
  .campaign-inner {
    padding-bottom: 50px;
  }
}
.campaign-inner:before {
  position: absolute;
  content: '';
  width: 110%;
  height: calc(100% + 30px);
  background: rgba(179, 169, 199, 0.3);
  border-bottom-left-radius: 50% 35px;
  border-bottom-right-radius: 50% 35px;
  left: -5%;
  bottom: -30px;
  z-index: -3;
}
.campaign-inner:after {
  position: absolute;
  content: '';
  width: 110%;
  height: 100%;
  background: linear-gradient(225deg, #96BAE7, #B1A9C7);
  border-bottom-left-radius: 50% 35px;
  border-bottom-right-radius: 50% 35px;
  left: -5%;
  bottom: 0;
  z-index: -2;
}
.campaign-inner .back-deco {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/top/campaign-back.png) no-repeat top 40px left/contain;
  background-size: 522px auto;
  z-index: -1;
}
.campaign-ttl {
  font-size: 6.6rem;
  color: #fff;
  text-align: center;
  line-height: 1;
  margin-bottom: 20px;
}
@media screen and (max-width: 500px) {
  .campaign-ttl {
    font-size: 4rem;
  }
}
.campaign-day {
  max-width: 360px;
  width: 100%;
  font-weight: bold;
  font-size: 2.6rem;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  padding: 5px;
  border: 3px solid #B9CDEB;
  border-radius: 30px;
}
@media screen and (max-width: 500px) {
  .campaign-day {
    font-size: 2.2rem;
  }
}
.campaign-menu-box {
  background: url(../img/top/campaign-border.png) no-repeat, url(../img/top/campaign-border.png) no-repeat;
  background-position: top center, bottom center;
  background-size: 100% auto;
  padding: 30px 0;
  margin-top: 50px;
  margin-bottom: 40px;
}
.campaign .welcom-txt {
  font-family: "Homemade Apple", cursive;
  color: #FFF000;
  letter-spacing: -0.02em;
  text-align: center;
  margin-top: 40px;
}
.campaign .welcom-txt:before, .campaign .welcom-txt:after {
  display: inline-block;
  content: '';
  width: 3px;
  height: 17px;
  border-left: 3px dotted #FFF000;
  transform: rotate(35deg);
  margin-right: 10px;
}
.campaign .welcom-txt:after {
  transform: rotate(-35deg);
  margin-right: 0;
  margin-left: 20px;
}

.campaign .txt {
  font-weight: bold;
  font-size: 2.6rem;	
  color: #FFF;
  position: relative;
  padding-top: 30px;
  text-align: center;
}

.btn-copy {
  font-weight: bold;
  font-size: 2.6rem;	
  color: #FFF;
  position: relative;
  margin-bottom: 10px;
  text-align: center;
}

.btn-copy:before,.btn-copy:after {
  display: inline-block;
  content: '';
  width: 8px;
  height: 24px;
  border-left: 4px dotted #FFF;
  transform: rotate(-35deg);
  margin-right: 10px;
}

.btn-copy:after {
  transform: rotate(35deg);
  margin-right: 0;
  margin-left: 20px;
}

.concept {
  width: 100%;
  padding-top: 90px;
  padding-bottom: 130px;
  background: url(../img/top/concept-back.png) no-repeat center top/contain;
  background-size: 701px auto;
}
@media screen and (max-width: 500px) {
  .concept {
    padding-top: 50px;
    padding-bottom: 70px;
  }
}

.concept-box {
  width: 100%;
  margin-top: 35px;
}
.concept-box_item {
  width: 100%;
}
.concept-box_item:not(:last-child) {
  margin-bottom: 75px;
}
@media screen and (max-width: 500px) {
  .concept-box_item:not(:last-child) {
    margin-bottom: 40px;
  }
}
.concept-box_item_ttl {
  width: 65px;
  font-size: 1.8rem;
  color: #CA9BB9;
  writing-mode: tb-rl;
}
.concept-box_item_ttl .num {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 3.2rem;
  color: #CA9BB9;
  letter-spacing: -0.02em;
  line-height: 65px;
  margin-bottom: 20px;
}
.concept-box_item_img {
  width: calc(100% - 65px);
}
.concept-box_item_img img {
  width: auto;
  height: 100%;
}
@media screen and (max-width: 500px) {
  .concept-box_item_img {
    height: 410px;
  }
  .concept-box_item_img img {
    object-fit: cover;
    object-position: center;
  }
}
.concept-box_item:nth-child(odd) .concept-box_item_img img {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.concept-box_item:nth-child(even) .concept-box_item_img img {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.concept-box_item_text {
  margin-top: 30px;
  padding: 0 3%;
}
.concept-box_item_text h4 {
  font-size: 3.2rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 500px) {
  .concept-box_item_text h4 {
    font-size: 2.5rem;
  }
}

.point {
  width: 100%;
  margin-bottom: 150px;
}
@media screen and (max-width: 500px) {
  .point {
    margin-bottom: 70px;
  }
}

.point-wrap {
  width: 100%;
  position: relative;
  z-index: 1;
  padding-top: 75px;
  margin-bottom: 60px;
}
@media screen and (max-width: 500px) {
  .point-wrap {
    margin-bottom: 30px;
  }
}
.point-wrap:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(225deg, #99BDEA, #CA9BB9);
  border-radius: 8px;
  top: 0;
  left: 0;
  z-index: -1;
}
.point-wrap:after {
  position: absolute;
  content: '';
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  background: #F5F7F2;
  border: 2px solid #E9EAE3;
  border-radius: 6px;
  top: 15px;
  left: 13px;
  z-index: -1;
}

.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  width: 50px;
  height: 140px;
}

.swiper .swiper-button-prev {
  content: url(../img/common/prev-arrow.png);
  left: 0;
}
@media screen and (max-width: 500px) {
  .swiper .swiper-button-prev {
    transform: scale(0.8);
    left: -2%;
  }
}

.swiper .swiper-button-next {
  content: url(../img/common/next-arrow.png);
  right: 0;
}
@media screen and (max-width: 500px) {
  .swiper .swiper-button-next {
    transform: scale(0.8);
    right: -2%;
  }
}

.point-slider .swiper-button-prev,
.point-slider .swiper-button-next {
  top: 20%;
}
@media screen and (max-width: 500px) {
  .point-slider .swiper-button-prev,
  .point-slider .swiper-button-next {
    top: 15%;
  }
}

.point-slider-item_inner {
  max-width: 470px;
  width: 100%;
  padding: 0 25px 60px;
  margin: auto;
}
.point-slider-item_inner .num {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  text-align: center;
  z-index: 2;
  margin-top: -20px;
}
.point-slider-item_inner .num:before {
  position: absolute;
  content: '';
  width: 130px;
  height: 40px;
  background: #F5F7F2;
  top: -15px;
  left: calc(50% - 65px);
  border-top-left-radius: 65px 35px;
  border-top-right-radius: 65px 35px;
  z-index: -1;
}
.point-slider-item_inner .num p {
  display: inline-block;
  background: linear-gradient(225deg, #99BDEA, #CA9BB9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.point-slider-item_inner .num span {
  font-size: 3.2rem;
}
.point-slider-item_inner h4 {
  font-size: 2.6rem;
  text-align: center;
}

.recommendation-wrap {
  width: 100%;
  text-align: center;
}
.recommendation-wrap h3 {
  display: inline-block;
  font-size: 3.6rem;
  line-height: 1.1;
  padding-bottom: 15px;
  border-bottom: 2px dotted #1F3D3E;
}

.recommendation-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 0;
  margin-top: 40px;
}
@media screen and (max-width: 425px) {
  .recommendation-list {
    font-size: 1.8rem;
  }
}
.recommendation-list_item {
  padding: 0 10px;
}

.facility {
  width: 100%;
}
.facility-inner {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 130px;
  margin-top: -20px;
  z-index: 1;
}
@media screen and (max-width: 500px) {
  .facility-inner {
    padding-top: 40px;
    padding-bottom: 70px;
  }
}
.facility-inner:before {
  position: absolute;
  content: '';
  width: 110%;
  height: 100%;
  background: #F5F7F2;
  border-top-left-radius: 50% 35px;
  border-top-right-radius: 50% 35px;
  top: 0;
  left: -5%;
  z-index: -1;
}

.floormap-wrap {
  width: 100%;
  margin-top: 40px;
  background: #FFF;
  border: 2px solid #1F3D3E;
  border-radius: 6px;
}

.floormap-tab {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: #DEE2E2;
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
  border-bottom: 2px solid #1f3d3e;
}
.floormap-tab li {
  position: relative;
  text-align: center;
  padding: 15px 10px;
  font-size: 3.6rem;
  font-weight: bold;
  color: #92A0A0;
  line-height: 1.1;
}
@media screen and (max-width: 500px) {
  .floormap-tab li {
    font-size: 2.5rem;
  }
}
.floormap-tab li:not(:last-child):before {
  position: absolute;
  content: '';
  width: 2px;
  height: 40px;
  border-left: 2px dotted #92A0A0;
  right: 0;
  top: calc(50% - 20px);
}
.floormap-tab li.active {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  background: #1f3d3e;
  color: #fff;
}
.floormap-tab li.active:before {
  display: none;
}
.floormap-tab li.active:after {
  position: absolute;
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, transparent 50%, #1F3D3E 50%);
  transform: rotate(45deg);
  bottom: -7px;
  left: calc(50% - 7px);
}
.floormap-tab li.shadow:before {
  display: none;
}

.floormap-list {
  width: 100%;
}

.floormap-list_box {
  width: 100%;
  padding: 50px 25px 20px;
}
.floormap-list_box .map {
  margin-bottom: 20px;
}

.floormap-slider-item .num {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  text-align: center;
  z-index: 2;
  margin-top: -20px;
}
.floormap-slider-item .num:before {
  position: absolute;
  content: '';
  width: 130px;
  height: 40px;
  background: #fff;
  top: -15px;
  left: calc(50% - 65px);
  border-top-left-radius: 65px 35px;
  border-top-right-radius: 65px 35px;
  z-index: -1;
}
.floormap-slider-item .num p {
  display: inline-block;
  background: linear-gradient(225deg, #99BDEA, #CA9BB9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.floormap-slider-item .num span {
  font-size: 3.2rem;
}

.floormap-slider .swiper-button-prev,
.floormap-slider .swiper-button-next {
  top: calc(50% - 70px);
}
@media screen and (max-width: 500px) {
  .floormap-slider .swiper-button-prev,
  .floormap-slider .swiper-button-next {
    top: calc(50% - 50px);
  }
}

.program {
  position: relative;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 130px;
  margin-top: -30px;
  overflow: hidden;
  background: url(../img/top/program-back.png) no-repeat top 30px right;
  background-size: 492px auto;
}
@media screen and (max-width: 500px) {
  .program {
    padding-top: 30px;
    padding-bottom: 70px;
  }
}
.program:before {
  position: absolute;
  content: '';
  width: 110%;
  height: 30px;
  background: #fff;
  border-top-left-radius: 50% 35px;
  border-top-right-radius: 50% 35px;
  top: 0;
  left: -5%;
  z-index: 2;
}

.program-list {
  width: 100%;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 30px;
}
.program-list li {
  display: inline-block;
  background: #fff;
  border: 2px solid #DEE2E2;
  border-radius: 20px;
  padding: 0 15px;
  color: #627778;
  font-size: 1.8rem;
}

.plan {
  position: relative;
  width: 100%;
  margin-top: -30px;
  overflow: hidden;
}
.plan:before {
  position: absolute;
  content: '';
  width: 110%;
  height: 30px;
  background: #F5F7F2;
  border-top-left-radius: 50% 35px;
  border-top-right-radius: 50% 35px;
  top: 0;
  left: -5%;
  z-index: 1;
}
.plan-inner {
  background: #F5F7F2;
  padding-top: 60px;
  padding-bottom: 130px;
  margin-top: 30px;
}
@media screen and (max-width: 500px) {
  .plan-inner {
    padding-top: 30px;
    padding-bottom: 70px;
  }
}

.plan-box {
  width: 100%;
  margin-bottom: 30px;
  border: 2px solid #203E3F;
  border-radius: 6px;
  background: #fff;
}
.plan-box:last-of-type {
  margin-bottom: 60px;
}
.plan-box.pickup {
  position: relative;
  margin-top: 80px;
}
.plan-box.pickup:before {
  position: absolute;
  content: url(../img/top/pickup.png);
  top: -70px;
  left: -15px;
  z-index: 2;
}
@media screen and (max-width: 425px) {
  .plan-box.pickup:before {
    transform: scale(0.7);
  }
}

.plan-name {
  position: relative;
  width: 100%;
  font-weight: 600;
  font-size: 3.6rem;
  text-align: center;
  color: #fff;
  line-height: 1.1;
  padding: 30px 65px;
  padding-left: 20px;
  background: #203E3F;
}
@media screen and (max-width: 425px) {
  .plan-name {
    font-size: 2.8rem;
    padding: 30px 45px;
  }
}
.plan-name:not(.is--show) .switch {
  position: absolute;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 100%;
  right: 20px;
  top: calc(50% - 25px);
}
@media screen and (max-width: 425px) {
  .plan-name:not(.is--show) .switch {
    width: 35px;
    height: 35px;
    right: 10px;
    top: calc(50% - 17.5px);
  }
}
.plan-name:not(.is--show) .switch:before, .plan-name:not(.is--show) .switch:after {
  position: absolute;
  content: '';
  width: 24px;
  height: 6px;
  border-radius: 3px;
  background: #203E3F;
  top: calc(50% - 3px);
  left: calc(50% - 12px);
}
@media screen and (max-width: 425px) {
  .plan-name:not(.is--show) .switch:before, .plan-name:not(.is--show) .switch:after {
    width: 18px;
    height: 4px;
    top: calc(50% - 2px);
    left: calc(50% - 9px);
  }
}
.plan-name:not(.is--show) .switch:after {
  transform: rotate(90deg);
  transition: all .6s;
}
.plan-name.open .switch:after {
  transform: rotate(180deg);
}

.plan-cont:not(.is--show) {
  height: 0;
  overflow: hidden;
  transition: ease all 1s;
}
.plan-cont:not(.is--show).open {
  height: auto;
}
.plan-cont:not(.is--show).open .plan-cont-info {
  padding: 25px 20px 20px;
  line-height: normal;
}
.plan-cont:not(.is--show).open .last-cont {
  padding: 15px 20px;
}

.plan-cont-info {
  position: relative;
  width: 100%;
  padding: 0 20px;
  transition: ease all 1s;
}
.plan-cont-info:not(.is--woman) {
  line-height: 0;
}
.plan-cont-info.is--woman {
  margin-top: -30px;
  padding: 0 20px 25px;
}
.plan-cont-info .price {
  position: relative;
  width: 100%;
  border-radius: 60px;
  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-bottom: 20px;
  box-shadow: 0 0 0 4px #fff;
  background: #F5F7F2;
  border: 2px solid #E9EAE3;
}
.plan-cont-info .price span {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 7.2rem;
  color: #203E3F;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 425px) {
  .plan-cont-info .price span {
    font-size: 5rem;
  }
}
.plan-cont-info .price p {
  position: relative;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.1;
  color: #203E3F;
  margin-left: 10px;
}
@media screen and (max-width: 425px) {
  .plan-cont-info .price p {
    font-size: 2.2rem;
  }
}
.plan-cont-info .price.is--woman {
  background: #CA9BB9;
  border: 2px solid #C27EAB;
}
.plan-cont-info .price.is--woman span {
  color: #FFF254;
}
.plan-cont-info .price.is--woman p {
  color: #FFF254;
}
.plan-cont-info .price.is--woman:before {
  position: absolute;
  content: '';
  width: 50%;
  height: 100%;
  border-radius: 60px;
  right: 0;
  top: 0;
  background: linear-gradient(45deg, transparent 45%, #F7DCB5 100%);
}
.plan-cont-info h4 {
  font-size: 2.6rem;
  line-height: 1.3;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 425px) {
  .plan-cont-info h4 {
    font-size: 2.2rem;
  }
}

.last-cont {
  width: 100%;
  padding: 0 20px;
  font-size: 1.6rem;
  background: #F5F7F2;
  border-top: 2px dotted #e9eae3;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  transition: ease all 1s;
}
.last-cont.is--woman {
  padding: 20px;
}

.access {
  position: relative;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 130px;
  margin-top: -30px;
  overflow: hidden;
}
@media screen and (max-width: 500px) {
  .access {
    padding-top: 30px;
    padding-bottom: 70px;
  }
}
.access:before {
  position: absolute;
  content: '';
  width: 110%;
  height: 30px;
  background: #fff;
  border-top-left-radius: 50% 35px;
  border-top-right-radius: 50% 35px;
  top: 0;
  left: -5%;
  z-index: 2;
}

.access-map {
  position: relative;
  width: 100%;
  display: block;
  padding-top: 67%;
  margin-bottom: 20px;
}
.access-map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.access-info {
  width: 100%;
  background: #F5F7F2;
  border: 2px solid #E9EAE3;
  border-radius: 6px;
  padding: 20px;
}
.access-info:not(:last-child) {
  margin-bottom: 10px;
}
.access-info h4 {
  font-size: 2.2rem;
}
.access-info dt {
  position: relative;
  padding-left: 20px;
  white-space: nowrap;
}
.access-info dt:before {
  position: absolute;
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 100%;
  background: #CA9BB9;
  left: 0;
  top: 15px;
}
.access-info ul {
  width: 100%;
}
.access-info ul li {
  position: relative;
  padding-left: 20px;
}
.access-info ul li:before {
  position: absolute;
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 100%;
  background: #CA9BB9;
  left: 0;
  top: 15px;
}
.access-info .img {
  width: 38%;
}
@media screen and (max-width: 425px) {
  .access-info .img {
    width: 100%;
    margin-top: 10px;
  }
}

.faq {
  width: 100%;
  padding-bottom: 130px;
}
@media screen and (max-width: 500px) {
  .faq {
    padding-bottom: 70px;
  }
}

.faq-list {
  width: 100%;
}

.faq-list_box {
  width: 100%;
  border-top: 2px solid #203E3F;
}
.faq-list_box:last-child {
  border-bottom: 2px solid #203E3F;
}

.faq-list_box_ttl {
  position: relative;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 50px 10px 0;
  font-size: 2.6rem;
  font-weight: bold;
}
@media screen and (max-width: 500px) {
  .faq-list_box_ttl {
    font-size: 2.2rem;
  }
}
.faq-list_box_ttl .q {
  width: 70px;
  font-family: "Montserrat", sans-serif;
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  padding: 10px 0;
  text-align: center;
  border-right: 2px dotted #203E3F;
  margin-right: 20px;
}
@media screen and (max-width: 500px) {
  .faq-list_box_ttl .q {
    width: 50px;
    font-size: 2.8rem;
    padding: 5px 0;
    line-height: 1.3;
  }
}
.faq-list_box_ttl .txt {
  width: calc(100% - 120px);
}
@media screen and (max-width: 500px) {
  .faq-list_box_ttl .txt {
    width: calc(100% - 85px);
  }
}
.faq-list_box_ttl .switch {
  position: absolute;
  content: '';
  width: 50px;
  height: 50px;
  background: #203E3F;
  border-radius: 100%;
  right: 0;
}
@media screen and (max-width: 500px) {
  .faq-list_box_ttl .switch {
    width: 35px;
    height: 35px;
  }
}
.faq-list_box_ttl .switch:before, .faq-list_box_ttl .switch:after {
  position: absolute;
  content: '';
  width: 24px;
  height: 6px;
  background: #fff;
  border-radius: 3px;
  top: calc(50% - 3px);
  left: calc(50% - 12px);
}
@media screen and (max-width: 500px) {
  .faq-list_box_ttl .switch:before, .faq-list_box_ttl .switch:after {
    width: 18px;
    height: 4px;
    top: calc(50% - 2px);
    left: calc(50% - 9px);
  }
}
.faq-list_box_ttl .switch:after {
  transform: rotate(90deg);
  transition: all .6s;
}
.faq-list_box_ttl.open .switch:after {
  transform: rotate(180deg);
}

.faq-list_box_inner {
  display: none;
  width: 100%;
  background: #F5F7F2;
  border-top: 2px solid #A6B2B2;
  padding: 20px;
}
.faq-list_box_inner.open {
  display: block;
}

/* 240918追加 */
.gap-20{
  gap: 20px;
}
.gap-5{
	gap: 5px;
  }

  .banner{
    margin: 20px 0;
  }