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

html {
  font-size: clamp(16px, 1.2vw, 18px);
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 1rem;
  color: #111;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  width: 100%;
}

a {
  color: #111;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
}

a:hover {
  color: #111;
  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] {
  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: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-row-rev {
  flex-direction: row-reverse;
}

.flex-col {
  flex-direction: col;
}

.flex-col-rev {
  flex-direction: col-reverse;
}

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

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

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

.flex-justify-start {
  justify-content: flex-start;
}

.flex-justify-end {
  justify-content: flex-end;
}

.flex-justify-center {
  justify-content: center;
}

.flex-justify-between {
  justify-content: space-between;
}

.flex-justify-around {
  justify-content: space-around;
}

.flex-align-start {
  align-items: flex-start;
}

.flex-align-end {
  align-items: flex-end;
}

.flex-align-center {
  align-items: center;
}

.flex-align-baseline {
  align-items: baseline;
}

/*margin*/
.mt0 {
  margin-top: 0px;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mt45 {
  margin-top: 45px;
}

.mt50 {
  margin-top: 50px;
}

.mt55 {
  margin-top: 55px;
}

.mt60 {
  margin-top: 60px;
}

.mt65 {
  margin-top: 65px;
}

.mt70 {
  margin-top: 70px;
}

.mt75 {
  margin-top: 75px;
}

.mt80 {
  margin-top: 80px;
}

.mt85 {
  margin-top: 85px;
}

.mt90 {
  margin-top: 90px;
}

.mt95 {
  margin-top: 95px;
}

.mt100 {
  margin-top: 100px;
}

.mb0 {
  margin-bottom: 0px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb65 {
  margin-bottom: 65px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb75 {
  margin-bottom: 75px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb85 {
  margin-bottom: 85px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb95 {
  margin-bottom: 95px;
}

.mb100 {
  margin-bottom: 100px;
}

/*padding*/
.pt0 {
  padding-top: 0px;
}

.pt5 {
  padding-top: 5px;
}

.pt10 {
  padding-top: 10px;
}

.pt15 {
  padding-top: 15px;
}

.pt20 {
  padding-top: 20px;
}

.pt25 {
  padding-top: 25px;
}

.pt30 {
  padding-top: 30px;
}

.pt35 {
  padding-top: 35px;
}

.pt40 {
  padding-top: 40px;
}

.pt45 {
  padding-top: 45px;
}

.pt50 {
  padding-top: 50px;
}

.pt55 {
  padding-top: 55px;
}

.pt60 {
  padding-top: 60px;
}

.pt65 {
  padding-top: 65px;
}

.pt70 {
  padding-top: 70px;
}

.pt75 {
  padding-top: 75px;
}

.pt80 {
  padding-top: 80px;
}

.pt85 {
  padding-top: 85px;
}

.pt90 {
  padding-top: 90px;
}

.pt95 {
  padding-top: 95px;
}

.pt100 {
  padding-top: 100px;
}

.pb0 {
  padding-block: 0px;
}

.pb5 {
  padding-block: 5px;
}

.pb10 {
  padding-block: 10px;
}

.pb15 {
  padding-block: 15px;
}

.pb20 {
  padding-block: 20px;
}

.pb25 {
  padding-block: 25px;
}

.pb30 {
  padding-block: 30px;
}

.pb35 {
  padding-block: 35px;
}

.pb40 {
  padding-block: 40px;
}

.pb45 {
  padding-block: 45px;
}

.pb50 {
  padding-block: 50px;
}

.pb55 {
  padding-block: 55px;
}

.pb60 {
  padding-block: 60px;
}

.pb65 {
  padding-block: 65px;
}

.pb70 {
  padding-block: 70px;
}

.pb75 {
  padding-block: 75px;
}

.pb80 {
  padding-block: 80px;
}

.pb85 {
  padding-block: 85px;
}

.pb90 {
  padding-block: 90px;
}

.pb95 {
  padding-block: 95px;
}

.pb100 {
  padding-block: 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 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: 0.5em;
  width: auto;
  min-width: 7em;
}

textarea {
  font-size: 16px;
  font-size: 1.6rem;
  background: #FFF;
  border: 1px solid #E8E8E8;
  padding: 0 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: 0.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 {
  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 {
  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: flex;
  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;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.wp-pagenavi a,
.wp-pagenavi span {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.8333333333rem;
  border-radius: 100%;
  border: none;
  color: #222;
  margin: 0 5px;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 0;
  background: #F9F9F9;
}
@media screen and (max-width: 600px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    width: 10vw;
    height: 10vw;
  }
}
.wp-pagenavi a.extend,
.wp-pagenavi span.extend {
  background: none;
}
.wp-pagenavi a.prev,
.wp-pagenavi span.prev {
  position: relative;
}
.wp-pagenavi a.prev:before,
.wp-pagenavi span.prev:before {
  position: absolute;
  content: "";
  width: 7px;
  height: 8px;
  background: url(../img/news/arrow.svg);
}
.wp-pagenavi a.next,
.wp-pagenavi span.next {
  position: relative;
}
.wp-pagenavi a.next:before,
.wp-pagenavi span.next:before {
  position: absolute;
  content: "";
  width: 7px;
  height: 8px;
  background: url(../img/news/arrow.svg);
  rotate: 180deg;
}
.wp-pagenavi .current {
  border: 0;
  color: #fff;
  background: #111;
  font-weight: normal;
}

/* 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;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  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 {
  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%;
  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: 0.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: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  outline: none;
  position: absolute;
  width: 100px;
  min-height: 50px;
  border-radius: 25px;
  right: 25px;
  text-align: center;
  top: 30px;
  background: #222;
  z-index: 99;
  transition: all 0.6s;
}
@media screen and (max-width: 425px) {
  .toggle {
    gap: 6px;
    width: 80px;
    min-height: 40px;
    right: 10px;
    top: 20px;
  }
}

.toggle__bar {
  position: relative;
  margin: 3px 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.toggle__txt {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.6666666667rem;
  letter-spacing: 0.05em;
  color: #fff;
}

.toggle__bar, .toggle__bar::before, .toggle__bar::after {
  display: block;
  width: 14px;
  height: 2px;
  border-radius: 1px;
  background-color: #fff;
  outline: 1px solid transparent;
  transition-property: background-color, transform;
  transition-duration: 0.3s;
}

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

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

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

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

.toggle.active .toggle__bar::before {
  transform: translateY(5px) rotate(45deg);
}

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

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

.fade.in {
  opacity: 1;
}

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

 header

***************************/
.home .header .logo {
  opacity: 0;
}

body.open {
  overflow: hidden;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}
.header .logo {
  position: absolute;
  left: 10px;
  top: 30px;
  transition: all 0.6s;
}
@media screen and (max-width: 425px) {
  .header .logo {
    top: 20px;
  }
  .header .logo a {
    line-height: 1;
  }
}
@media screen and (max-width: 768px) {
  .header .logo__pc {
    display: none;
  }
}
.header .logo__sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .header .logo__sp {
    display: block;
  }
  .header .logo__sp img {
    height: 62px;
  }
}
@media screen and (max-width: 768px) and (max-width: 425px) {
  .header .logo__sp img {
    height: 40px;
  }
}
.header .reservat {
  position: absolute;
  width: fit-content;
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  top: 30px;
  right: 130px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 0.7777777778rem;
  color: #fff;
  background: #952375;
  border-radius: 25px;
  padding: 0 25px;
  transition: all 0.6s;
  z-index: 99;
}
@media screen and (max-width: 425px) {
  .header .reservat {
    right: 95px;
    top: 20px;
    min-height: 40px;
    gap: 5px;
    padding: 0 15px;
  }
  .header .reservat span {
    display: none;
  }
}
.header.fixedmenu .logo {
  top: 20px;
}
@media screen and (max-width: 768px) {
  .header.fixedmenu .logo {
    top: 10px;
  }
}
.header.fixedmenu .reservat {
  top: 20px;
}
@media screen and (max-width: 768px) {
  .header.fixedmenu .reservat {
    top: 10px;
  }
}
.header.fixedmenu .toggle {
  top: 20px;
}
@media screen and (max-width: 768px) {
  .header.fixedmenu .toggle {
    top: 10px;
  }
}

.gnav {
  position: fixed;
  max-width: 520px;
  width: 100%;
  height: 100lvh;
  background: #fff;
  top: 0;
  right: 0;
  z-index: 98;
  padding: 130px 20px 60px;
  translate: 100% 0;
  transition: translate 0.6s;
}
@media screen and (max-width: 425px) {
  .gnav {
    padding-top: 80px;
  }
}
.gnav.scroll {
  overflow-y: scroll;
}
.gnav.active {
  translate: 0 0;
}
.gnav-overlay {
  position: fixed;
  width: 100%;
  height: 100lvh;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  right: 0;
  z-index: 97;
  visibility: hidden;
  opacity: 0;
}
.gnav-overlay.active {
  visibility: visible;
  opacity: 1;
}
.gnav-overlay:hover {
  cursor: pointer;
}
.gnav-inner {
  max-width: 360px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.gnav .main-nav {
  width: 100%;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .gnav .main-nav {
    margin-bottom: 50px;
  }
}
.gnav .main-nav li {
  padding: 20px 0;
  border-bottom: 1px solid #E1E1E1;
}
@media screen and (max-width: 425px) {
  .gnav .main-nav li {
    padding: 10px 0;
  }
}
.gnav .main-nav li .btn01 {
  width: calc(100% - 20px);
}

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

layout/footer.scss

***************************/
.footer {
  position: relative;
  width: 100%;
  padding-top: 8.8541666667vw;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 60px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 425px) {
  .footer {
    padding-top: 18.8235294118vw;
  }
}
.footer-back {
  position: absolute;
  height: 100%;
  aspect-ratio: 2/1;
  top: 0;
  left: 50%;
  translate: -50% 0;
  z-index: -1;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .footer-back {
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 425px) {
  .footer-back {
    aspect-ratio: 0.5/1;
  }
}
.footer-back img {
  width: 100%;
  -webkit-clip-path: url(#clip02);
  clip-path: url(#clip02);
}
@media screen and (max-width: 768px) {
  .footer-back img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.footer-inner {
  max-width: 1400px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.footer-inner .flexbox {
  gap: 2px;
}
@media screen and (max-width: 768px) {
  .footer-inner .flexbox {
    flex-direction: column;
  }
}
.footer-inner .wrap {
  width: calc(100% - 200px);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1200px) {
  .footer-inner .wrap {
    width: calc(100% - 100px);
  }
}
@media screen and (max-width: 600px) {
  .footer-inner .wrap {
    width: calc(100% - 60px);
  }
}
.footer-contact {
  width: 100%;
  background: #fff;
  border-radius: 50px 50px 0 0;
  padding: 70px 0;
  margin-bottom: 2px;
}
@media screen and (max-width: 768px) {
  .footer-contact {
    padding: 50px 0;
  }
}
.footer-contact .wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .footer-contact .wrap {
    flex-direction: column;
  }
}
.footer-contact .form-link {
  max-width: 740px;
  width: calc(100% - 380px);
  display: flex;
  gap: 10px 20px;
}
@media screen and (max-width: 768px) {
  .footer-contact .form-link {
    width: 100%;
    gap: 10px;
  }
}
@media screen and (max-width: 425px) {
  .footer-contact .form-link {
    flex-direction: column;
  }
}
.footer-contact .form-link li {
  width: 50%;
}
@media screen and (max-width: 425px) {
  .footer-contact .form-link li {
    width: 100%;
  }
}
.footer-contact .form-link li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 160px;
  padding: 10px;
  font-size: 0.8888888889rem;
  letter-spacing: 0.05em;
  color: #fff;
  border-radius: 25px;
}
@media screen and (max-width: 768px) {
  .footer-contact .form-link li a {
    min-height: 120px;
  }
}
.footer-contact .form-link li a .icn {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}
.footer-contact .form-link li:first-child a {
  background: #952375;
}
.footer-contact .form-link li:first-child a .icn {
  background: #A13683;
}
.footer-contact .form-link li:last-child a {
  background: #1CAC4A;
}
.footer-contact .form-link li:last-child a .icn {
  background: #2EB95B;
}
.footer-contact .form-link li:last-child a.nonLink {
  background-color: #ddd;
}
.footer-contact .form-link li:last-child a.nonLink .icn {
  background-color: #aaa;
}
.footer-company {
  width: 64%;
  background: #fff;
  border-radius: 0 0 0 50px;
  padding: 70px 0;
}
@media screen and (max-width: 768px) {
  .footer-company {
    width: 100%;
    padding: 50px 0;
    border-radius: 0;
  }
}
.footer-company .hdg_01 {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .footer-company .hdg_01 {
    margin-bottom: 10px;
  }
}
.footer-company-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .footer-company-list {
    grid-template-columns: 100%;
  }
}
.footer-company-list_block {
  display: flex;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #E1E1E1;
}
@media screen and (max-width: 768px) {
  .footer-company-list_block {
    padding: 13px 0;
  }
}
.footer-company-list_block dt {
  width: 75px;
  font-weight: 700;
  font-size: 0.7777777778rem;
}
.footer-company-list_block dd {
  width: calc(100% - 75px);
  font-weight: 500;
  font-size: 0.7777777778rem;
}
.footer-nav {
  width: 36%;
  background: #fff;
  border-radius: 0 0 50px 0;
  padding: 70px 0;
}
@media screen and (max-width: 768px) {
  .footer-nav {
    width: 100%;
    border-radius: 0 0 50px 50px;
    padding: 50px 0;
  }
}
.footer-nav .wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.footer-nav .sub-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 10px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .footer-nav .sub-nav {
    gap: 10px;
    margin-bottom: 20px;
  }
}
.footer-nav .sub-nav li a {
  position: relative;
  display: inline-block;
  overflow: hidden;
  font-size: 0.8333333333rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.footer-nav .sub-nav li a:after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background: #111;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  transition: width 0.6s;
}
.footer-nav .sub-nav li a:hover:after {
  width: 100%;
}
.footer-nav small {
  display: flex;
  flex-grow: 1;
  align-items: flex-end;
  font-family: "Poppins", sans-serif;
  font-size: 0.5555555556rem;
  letter-spacing: 0.05em;
  color: #aaa;
}
@media screen and (max-width: 768px) {
  .footer-nav small {
    margin-top: 20px;
  }
}

.pagetop {
  position: fixed;
  z-index: 99;
  bottom: 20px;
  right: 20px;
}
@media screen and (max-width: 425px) {
  .pagetop {
    right: 10px;
    bottom: 10px;
    width: 15vw;
  }
}

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

 user common css

////////////////////////*/
.wrap1200 {
  max-width: 1240px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .wrap1200 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.sp_550 {
  display: none;
}
.sp425 {
  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;
  }
}
@media screen and (max-width: 425px) {
  .sp425 {
    display: block;
  }
}
/*////////////////////////

fonts

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

.ls5 {
  letter-spacing: 0.05em;
}

.lh2 {
  line-height: 2;
}

.lh18 {
  line-height: 1.8;
}

.lh1 {
  line-height: 1;
}

.thin {
  font-weight: 100;
}

.ex-light {
  font-weight: 200;
}

.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.sm-bold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.ex-bold {
  font-weight: 800;
}

.black {
  font-weight: 900;
}

.poppins {
  font-family: "Poppins", sans-serif;
}

.zenkaku {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.noto-jp {
  font-family: "Noto Sans JP", sans-serif;
}

.fz14 {
  font-size: 0.7777777778rem;
}

.fz32 {
  font-size: 1.7777777778rem;
}
@media screen and (max-width: 768px) {
  .fz32 {
    font-size: clamp(1.5rem, 3.6458333333vw, 1.75rem);
  }
}

.fz40 {
  font-size: 2.2222222222rem;
}
@media screen and (max-width: 768px) {
  .fz40 {
    font-size: clamp(1.875rem, 5.2083333333vw, 2.5rem);
  }
}

.tel-info-area {
  display: flex;
  flex-direction: column;
}
.tel-info-area .hdg_01 {
  margin-bottom: 30px;
}
.tel-info-area .day {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.7222222222rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  background: #F2F2F2;
  border-radius: 16px;
  padding: 0 10px;
  margin-bottom: 10px;
}
.tel-info-area .tel {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 2.2222222222rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  padding-left: 30px;
}
@media screen and (max-width: 425px) {
  .tel-info-area .tel {
    font-size: clamp(1.5625rem, 8.2352941176vw, 2.1875rem);
  }
}
.tel-info-area .tel:before {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  background: url(../img/common/tel-icn.png);
  background-repeat: no-repeat;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
.tel-info-area .time {
  font-size: 0.6666666667rem;
  letter-spacing: 0.05em;
}

.note {
  position: relative;
  font-size: 0.6666666667rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding-left: calc(1em + 5px);
}
.note:before {
  position: absolute;
  content: "※";
  left: 0;
  top: -0.2em;
}

.box-style01 {
  background: #F2F2F2;
  padding: 20px 18px;
}

.underline {
  text-decoration: underline;
}

.nonLink {
  pointer-events: none;
  color: #aaa;
}

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

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;
  animation-fill-mode: both;
  -webkit-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;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInBottom {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-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;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInLeft {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-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;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-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;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    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;
  }
}
@-webkit-keyframes faq {
  0% {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  100% {
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 1.8;
    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

////////////////////////*/
.btn01 {
  position: relative;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.05em;
  overflow: hidden;
  padding-right: 15px;
}
.btn01:after {
  position: absolute;
  content: "";
  width: 7px;
  height: 8px;
  background: url(../img/common/arrow04.png);
  background-size: cover;
  top: 50%;
  right: 0;
  translate: 0 -50%;
}
.btn01 span {
  display: inline-block;
  translate: 0 0;
  transition: translate 0.2s;
}
.btn01_sub_txt {
  position: absolute;
  top: 100%;
  left: 0;
}
.btn01.hov .btn01_main_txt {
  translate: 0 -100%;
  transition: translate 0.2s;
}
.btn01.hov .btn01_sub_txt {
  translate: 0 -100%;
  transition: translate 0.2s;
}
.btn01:hover {
  opacity: 1;
}

.btn02 {
  position: relative;
  display: inline-block;
  font-size: 0.7777777778rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  overflow: hidden;
  padding-right: 16px;
}
.btn02:before {
  position: absolute;
  content: "";
  width: calc(100% - 16px);
  height: 1px;
  background: #111;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.btn02:after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background: url(../img/common/arrow02.png);
  right: 0;
  top: 50%;
  translate: 0 -50%;
}
.btn02 span {
  display: inline-block;
  translate: 0 0;
  transition: translate 0.2s;
}
.btn02_sub_txt {
  position: absolute;
  top: 100%;
  left: 0;
}
.btn02.hov .btn02_main_txt {
  translate: 0 -100%;
  transition: translate 0.2s;
}
.btn02.hov .btn02_sub_txt {
  translate: 0 -100%;
  transition: translate 0.2s;
}
.btn02:hover {
  opacity: 1;
}

.back-home {
  display: block;
  max-width: 302px;
  width: 100%;
  min-height: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8888888889rem;
  letter-spacing: 0.05em;
  color: #fff;
  background: #000;
  border-radius: 31px;
}

.btn-center {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .tab-center {
    margin: 0 auto;
  }
}
/*////////////////////////

hdg__

////////////////////////*/
.hdg_01 {
  font-size: 0.8888888889rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid;
}

.hdg_02 {
  display: flex;
  flex-direction: column;
}
.hdg_02_ja {
  font-weight: 500;
  font-size: 1.4444444444rem;
  letter-spacing: 0.05em;
  text-align: center;
}
.hdg_02_en {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 0.7222222222rem;
  letter-spacing: 0.05em;
  color: #FF0000;
  text-align: center;
}

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

object/project/top.scss

***************************/
.mv {
  position: relative;
  width: 100%;
  padding-top: 25px;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .mv {
    margin-bottom: 60px;
    padding-top: 0;
  }
}

.main-visual {
  position: relative;
  width: 100%;
}
.main-visual:before {
  position: absolute;
  content: "";
  max-width: 167px;
  max-height: 137px;
  width: 8.6979166667vw;
  height: 7.1354166667vw;
  background: url(../img/top/mv-deco.png);
  background-size: 100%;
  top: 1.0416666667vw;
  left: 3.125vw;
}
@media screen and (max-width: 1200px) {
  .main-visual:before {
    top: 0;
    left: 2.5vw;
  }
}
@media screen and (max-width: 768px) {
  .main-visual:before {
    display: none;
  }
}
.main-visual .mvSlider-slide img {
  width: 100%;
  height: calc(100lvh - 25px);
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
}
@media screen and (max-width: 768px) {
  .main-visual .mvSlider-slide img {
    height: 100lvh;
  }
}
.main-visual .mvSlider .swiper-pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  bottom: 25lvh !important;
  left: 2.6041666667vw;
}
@media screen and (max-width: 768px) {
  .main-visual .mvSlider .swiper-pagination {
    width: 10px;
    bottom: 20px !important;
  }
}
.main-visual .mvSlider .swiper-pagination-bullet {
  margin: 0 10px !important;
  background: #fff;
  opacity: 1;
}
.main-visual .mvSlider .swiper-pagination-bullet-active {
  background: #FF0000;
}
.main-visual-content {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100lvh;
  top: 0;
  left: 0;
  padding-top: 24.5614035088lvh;
  padding-left: 7.2916666667vw;
  padding-right: 7.2916666667vw;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .main-visual-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.main-visual-content .mv-copy {
  position: absolute;
  width: 20.8333333333vw;
  left: 8.3333333333vw;
  top: 20.1754385965lvh;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .main-visual-content .mv-copy {
    width: 42vw;
  }
  .main-visual-content .mv-copy:before {
    position: absolute;
    content: "";
    width: 73px;
    height: 68px;
    background: url(../img/top/mv-deco-sp.png);
    left: -35px;
    top: -50px;
  }
}
.main-visual-content .mv-ttl {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-size: 16.6666666667vw;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .main-visual-content .mv-ttl {
    font-size: 16.9270833333vw;
  }
}

.mv-flag {
  position: fixed;
  width: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/0.5;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  z-index: 90;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .mv-flag {
    width: 46.875vw;
  }
}
.mv-flag:after {
  position: absolute;
  content: "";
  width: 100%;
  aspect-ratio: 1/1;
  background: #fff;
  border-radius: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.mv-flag img {
  width: 65%;
}

.top01 {
  width: 100%;
  margin-bottom: 180px;
}
@media screen and (max-width: 768px) {
  .top01 {
    margin-bottom: 90px;
  }
}

.t-news {
  width: 100%;
  background: #F9F9F9;
  border-radius: 50px;
  padding: 60px 0;
  display: flex;
}
@media screen and (max-width: 768px) {
  .t-news {
    flex-direction: column;
    padding: 30px;
  }
}
.t-news .btn01 {
  border-bottom: 1px solid;
  font-weight: 500;
  font-size: 0.8333333333rem;
}
.t-news-cont {
  max-width: 290px;
  width: 100%;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #F1EFE8;
  padding: 10px 0;
}
@media screen and (max-width: 1024px) {
  .t-news-cont {
    max-width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .t-news-cont {
    max-width: 100%;
    border-right: none;
    border-bottom: 1px solid #F1EFE8;
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
}
.t-news-pc-link {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .t-news-pc-link {
    display: none;
  }
}
.t-news-sp-link {
  text-align: right;
}
@media screen and (min-width: 769px) {
  .t-news-sp-link {
    display: none;
  }
}
.t-news-list {
  width: calc(100% - 290px);
  padding: 0 70px;
}
@media screen and (max-width: 1024px) {
  .t-news-list {
    width: calc(100% - 200px);
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .t-news-list {
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
  }
}
.t-news-list li:not(:last-child) {
  margin-bottom: 24px;
}
.t-news-list li a {
  display: flex;
}
@media screen and (max-width: 425px) {
  .t-news-list li a {
    flex-direction: column;
  }
}
.t-news-list li a.new h4:after {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  content: "NEW";
  width: 40px;
  height: 19px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.5555555556rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #fff;
  background: #FF0000;
  border-radius: 10px;
  text-align: center;
  margin-left: 10px;
  vertical-align: middle;
}
.t-news-list li a .day {
  width: 125px;
  font-family: "Poppins", sans-serif;
  font-size: 0.8888888889rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 425px) {
  .t-news-list li a .day {
    width: 100%;
  }
}
.t-news-list li a h4 {
  max-width: calc(100% - 125px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.8888888889rem;
  font-weight: 500;
}
@media screen and (max-width: 425px) {
  .t-news-list li a h4 {
    max-width: 100%;
  }
}
.t-news-list li a h4 span {
  background: linear-gradient(0deg, #111 1px, transparent 1px);
  background-repeat: repeat-x;
  background-size: 100% 1px;
  background-position: bottom left;
}
.t-news-list li a:hover h4 span {
  background-size: 0 1px;
}

.t-enjoy {
  position: relative;
  width: 100%;
  margin-top: 180px;
}
@media screen and (max-width: 768px) {
  .t-enjoy {
    margin-top: 90px;
  }
}
.t-enjoy-block {
  position: relative;
  width: 100%;
  display: flex;
  gap: 30px 9.4vw;
}
@media screen and (max-width: 1200px) {
  .t-enjoy-block {
    gap: 30px 4.4vw;
  }
}
@media screen and (max-width: 900px) {
  .t-enjoy-block {
    flex-direction: column;
  }
}
.t-enjoy-block:nth-child(odd) {
  padding-left: calc((100% - 1200px) / 2);
}
@media screen and (max-width: 1240px) {
  .t-enjoy-block:nth-child(odd) {
    padding-left: 20px;
  }
}
@media screen and (max-width: 425px) {
  .t-enjoy-block:nth-child(odd) {
    padding-left: 0;
  }
}
.t-enjoy-block:nth-child(even) {
  flex-direction: row-reverse;
  justify-content: flex-start;
  padding-right: calc((100% - 1200px) / 2);
}
@media screen and (max-width: 1240px) {
  .t-enjoy-block:nth-child(even) {
    padding-right: 20px;
  }
}
@media screen and (max-width: 900px) {
  .t-enjoy-block:nth-child(even) {
    flex-direction: column;
  }
}
@media screen and (max-width: 425px) {
  .t-enjoy-block:nth-child(even) {
    padding-right: 0;
  }
}
.t-enjoy-block_text p {
  line-height: 2;
}
.t-enjoy-block_text p:not(:last-child) {
  margin-bottom: 25px;
}
.t-enjoy-block_image {
  position: relative;
}
.t-enjoy-block_image img {
  width: 100%;
}
.t-enjoy-block.is-01 {
  margin-bottom: 50px;
}
@media screen and (max-width: 1200px) {
  .t-enjoy-block.is-01 {
    justify-content: space-between;
  }
}
@media screen and (max-width: 900px) {
  .t-enjoy-block.is-01 {
    margin-bottom: 60px;
  }
}
.t-enjoy-block.is-01:before {
  position: absolute;
  content: "";
  width: 8.0729166667vw;
  height: 14.5833333333vw;
  background: url(../img/top/enjoy-back-deco01.png);
  background-size: auto 100%;
  background-position: center right;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 900px) {
  .t-enjoy-block.is-01:before {
    width: 17.2222222222vw;
    height: 31.1111111111vw;
  }
}
.t-enjoy-block.is-01 .t-enjoy-block_text {
  max-width: 450px;
}
@media screen and (max-width: 900px) {
  .t-enjoy-block.is-01 .t-enjoy-block_text {
    max-width: 100%;
    padding-right: 20px;
  }
}
@media screen and (max-width: 425px) {
  .t-enjoy-block.is-01 .t-enjoy-block_text {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.t-enjoy-block.is-01 .t-enjoy-block_text h3 {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .t-enjoy-block.is-01 .t-enjoy-block_text h3 {
    margin-bottom: 30px;
  }
}
.t-enjoy-block.is-01 .t-enjoy-block_image {
  width: 50vw;
}
@media screen and (max-width: 900px) {
  .t-enjoy-block.is-01 .t-enjoy-block_image {
    width: 80vw;
    margin-left: auto;
    margin-top: 30px;
  }
}
@media screen and (max-width: 425px) {
  .t-enjoy-block.is-01 .t-enjoy-block_image {
    width: 100%;
  }
}
.t-enjoy-block.is-01 .t-enjoy-block_image:before {
  position: absolute;
  content: "";
  width: 21.5625%;
  aspect-ratio: 1/0.565;
  z-index: 2;
  bottom: -4.1666666667%;
  left: -7.2916666667%;
  background: url(../img/top/enjoy-deco01.png);
  background-size: 100% auto;
}
@media screen and (max-width: 425px) {
  .t-enjoy-block.is-01 .t-enjoy-block_image:before {
    width: 23%;
    left: 10px;
  }
}
.t-enjoy-block.is-01 .t-enjoy-block_image img {
  border-radius: 50px 0 0 50px;
}
@media screen and (max-width: 425px) {
  .t-enjoy-block.is-01 .t-enjoy-block_image img {
    border-radius: 0;
  }
}
.t-enjoy-block.is-01 .t-enjoy-block_image .flag {
  position: absolute;
  top: -30px;
  right: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 180px;
  color: #fff;
  letter-spacing: 0.05em;
  background: rgba(83, 83, 83, 0.75);
  border-radius: 100%;
}
@media screen and (max-width: 1024px) {
  .t-enjoy-block.is-01 .t-enjoy-block_image .flag {
    width: 150px;
    height: 150px;
    right: 20px;
  }
}
@media screen and (max-width: 425px) {
  .t-enjoy-block.is-01 .t-enjoy-block_image .flag {
    width: 130px;
    height: 130px;
    right: 10px;
  }
}
.t-enjoy-block.is-01 .t-enjoy-block_image .flag p:first-child {
  font-size: 0.7777777778rem;
}
.t-enjoy-block.is-01 .t-enjoy-block_image .flag p:nth-child(2) {
  font-size: 1rem;
}
.t-enjoy-block.is-01 .t-enjoy-block_image .flag p:last-child {
  font-size: 0.8333333333rem;
  line-height: 1;
}
.t-enjoy-block.is-01 .t-enjoy-block_image .flag p:last-child span {
  display: inline-block;
  padding: 0 1px;
}
.t-enjoy-block.is-01 .t-enjoy-block_image .flag p:last-child span:nth-child(2) {
  font-family: "Poppins", sans-serif;
  font-size: 3.3333333333rem;
  line-height: 1;
}
@media screen and (max-width: 425px) {
  .t-enjoy-block.is-01 .t-enjoy-block_image .flag p:last-child span:nth-child(2) {
    font-size: clamp(1.875rem, 9.4117647059vw, 2.5rem);
  }
}
.t-enjoy-block.is-01 .t-enjoy-block_image .flag p:last-child span:last-child {
  font-size: 1.3333333333rem;
}
@media screen and (max-width: 425px) {
  .t-enjoy-block.is-01 .t-enjoy-block_image .flag p:last-child span:last-child {
    font-size: clamp(1.125rem, 5.1764705882vw, 1.375rem);
  }
}
.t-enjoy-block.is-02 {
  margin-bottom: 90px;
}
@media screen and (max-width: 1240px) {
  .t-enjoy-block.is-02 {
    padding-left: 20px;
  }
}
@media screen and (max-width: 425px) {
  .t-enjoy-block.is-02 {
    padding-left: 0;
  }
}
.t-enjoy-block.is-02:before {
  position: absolute;
  content: "";
  width: 14.1666666667vw;
  height: 18.75vw;
  background: url(../img/top/enjoy-back-deco02.png);
  background-size: auto 100%;
  background-position: center left;
  top: 18.75vw;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 900px) {
  .t-enjoy-block.is-02:before {
    width: 30.2222222222vw;
    height: 40vw;
  }
}
.t-enjoy-block.is-02 .t-enjoy-block_text {
  max-width: 680px;
}
@media screen and (max-width: 900px) {
  .t-enjoy-block.is-02 .t-enjoy-block_text {
    max-width: 100%;
  }
}
@media screen and (max-width: 425px) {
  .t-enjoy-block.is-02 .t-enjoy-block_text {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.t-enjoy-block.is-02 .t-enjoy-block_image {
  max-width: 480px;
  width: 25vw;
}
@media screen and (max-width: 900px) {
  .t-enjoy-block.is-02 .t-enjoy-block_image {
    width: 40vw;
    margin-left: 20px;
  }
}
@media screen and (max-width: 425px) {
  .t-enjoy-block.is-02 .t-enjoy-block_image {
    width: 100%;
    margin-left: 0;
  }
}
.t-enjoy-block.is-02 .t-enjoy-block_image:before {
  position: absolute;
  content: "";
  width: 27.9166666667%;
  aspect-ratio: 1/1.127;
  z-index: 2;
  bottom: -12.5%;
  left: -16.6666666667%;
  background: url(../img/top/enjoy-deco02.png);
  background-size: 100% auto;
}
@media screen and (max-width: 1024px) {
  .t-enjoy-block.is-02 .t-enjoy-block_image:before {
    left: -20px;
  }
}
@media screen and (max-width: 425px) {
  .t-enjoy-block.is-02 .t-enjoy-block_image:before {
    width: 22.3333333333%;
    left: 10px;
  }
}
.t-enjoy-block.is-02 .t-enjoy-block_image img {
  border-radius: 50px;
}
@media screen and (max-width: 425px) {
  .t-enjoy-block.is-02 .t-enjoy-block_image img {
    border-radius: 0;
  }
}
@media screen and (max-width: 1240px) {
  .t-enjoy-block.is-03 {
    padding-right: 20px;
  }
}
@media screen and (max-width: 425px) {
  .t-enjoy-block.is-03 {
    padding-right: 0;
  }
}
.t-enjoy-block.is-03:before {
  position: absolute;
  content: "";
  width: 8.8020833333vw;
  height: 9.375vw;
  background: url(../img/top/enjoy-back-deco03.png);
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  left: 7.8125vw;
  z-index: -1;
}
@media screen and (min-width: 901px) {
  .t-enjoy-block.is-03:before {
    top: 100%;
  }
}
@media screen and (max-width: 900px) {
  .t-enjoy-block.is-03:before {
    width: 18.7777777778vw;
    height: 20vw;
    bottom: -20px;
  }
}
.t-enjoy-block.is-03 .t-enjoy-block_text {
  max-width: 560px;
}
@media screen and (max-width: 900px) {
  .t-enjoy-block.is-03 .t-enjoy-block_text {
    max-width: 100%;
  }
}
@media screen and (max-width: 425px) {
  .t-enjoy-block.is-03 .t-enjoy-block_text {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.t-enjoy-block.is-03 .t-enjoy-block_image {
  max-width: 405px;
  width: 21vw;
}
@media screen and (max-width: 1024px) {
  .t-enjoy-block.is-03 .t-enjoy-block_image {
    width: 30vw;
  }
}
@media screen and (max-width: 900px) {
  .t-enjoy-block.is-03 .t-enjoy-block_image {
    width: 40vw;
    margin-left: auto;
    margin-right: 20px;
  }
}
@media screen and (max-width: 425px) {
  .t-enjoy-block.is-03 .t-enjoy-block_image {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}
.t-enjoy-block.is-03 .t-enjoy-block_image:before {
  position: absolute;
  content: "";
  width: 38.5185185185%;
  aspect-ratio: 1/0.519;
  z-index: 2;
  bottom: -7.4074074074%;
  left: -12.3456790123%;
  background: url(../img/top/enjoy-deco03.png);
  background-size: 100% auto;
}
@media screen and (max-width: 425px) {
  .t-enjoy-block.is-03 .t-enjoy-block_image:before {
    width: 26%;
    left: 10px;
  }
}
.t-enjoy-block.is-03 .t-enjoy-block_image img {
  border-radius: 50px;
}
@media screen and (max-width: 425px) {
  .t-enjoy-block.is-03 .t-enjoy-block_image img {
    border-radius: 0;
    width: 100%;
  }
}

.top02 {
  position: relative;
  width: 100%;
}
.top02-inner {
  background: linear-gradient(180deg, transparent 18.2291666667vw, #F9F9F9 18.2291666667vw);
  position: relative;
  margin-bottom: 18.2291666667vw;
  padding-top: min(9.375vw, 180px);
}
.top02-inner:before, .top02-inner:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 18.2291666667vw;
  background: url(../img/top/top02-parts.png);
  background-size: 100% auto;
  background-position: top center;
  left: 50%;
  translate: -50% 0;
  z-index: -1;
}
.top02-inner:before {
  top: 3px;
}
.top02-inner:after {
  bottom: -18.0729166667vw;
  rotate: 180deg;
}
.top02-inner-deco {
  position: absolute;
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
  font-size: min(13.5416666667vw, 14.4444444444rem);
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.05em;
  color: #F5F5F5;
  top: 0;
  left: 50%;
  translate: -50% 0;
  z-index: 1;
}
.top02-inner .wrap1200 {
  position: relative;
  z-index: 2;
}

.area-map-block {
  position: relative;
  width: 100%;
  margin-top: 50px;
}

@media screen and (min-width: 769px) {
  .area-map-text {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1.1111111111rem;
    letter-spacing: 0.05em;
    line-height: 2;
    z-index: 2;
  }
}
@media screen and (max-width: 768px) {
  .area-map-text {
    margin-bottom: 30px;
  }
  .area-map-text br {
    display: none;
    margin-bottom: 20px;
  }
}

.area-map {
  width: 100%;
}
.area-map img {
  width: 100%;
}
@media screen and (max-width: 600px) {
  .area-map.pc-map {
    display: none;
  }
}
.area-map.sp-map {
  text-align: center;
}
@media screen and (min-width: 601px) {
  .area-map.sp-map {
    display: none;
  }
}
.area-map.sp-map img {
  width: 90vw;
}
.area-map.sp-map .map {
  width: 100%;
  position: relative;
  margin-bottom: 30px;
}
.area-map.sp-map .button {
  position: absolute;
  width: 160px;
  left: 50%;
  bottom: 0;
  translate: -50% 0;
  z-index: 2;
}
.area-map.sp-map .button:hover {
  cursor: pointer;
  opacity: 0.8;
}
.area-map.sp-map ul {
  display: flex;
  gap: 20px;
}

.popup-map {
  position: fixed;
  width: 100%;
  height: 100lvh;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  z-index: 105;
  display: none;
}
.popup-map.pop {
  visibility: visible;
}
.popup-map-body {
  width: 100%;
  height: 100%;
  position: relative;
}
.popup-map-inner {
  overflow-x: scroll;
  height: 100%;
  padding: 70px 20px;
}
.popup-map-inner img {
  min-width: 110vw;
}
.popup-map .close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: block;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 100%;
  z-index: 2;
  rotate: 45deg;
}
.popup-map .close:before, .popup-map .close:after {
  position: absolute;
  content: "";
  width: 25px;
  height: 3px;
  background: #111;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  border-radius: 1px;
}
.popup-map .close:after {
  rotate: 90deg;
}

.site-info-box {
  position: relative;
  max-width: 1400px;
  width: calc(100% - 30px);
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border-radius: 50px;
  padding: 60px 100px 80px;
}
@media screen and (max-width: 1024px) {
  .site-info-box {
    padding: 60px 50px 80px;
  }
}
@media screen and (max-width: 768px) {
  .site-info-box {
    padding: 60px 30px 40px;
  }
}
.site-info-box.tent-block {
  margin-top: 80px;
}
.site-info-box.tent-block:before {
  position: absolute;
  content: "";
  width: 58px;
  height: 50px;
  background: url(../img/top/tent-icn.png);
  left: 50%;
  top: -25px;
  translate: -50% 0;
  z-index: 2;
}
.site-info-box.containa-block {
  margin-top: 60px;
}
.site-info-box.containa-block:before {
  position: absolute;
  content: "";
  width: 70px;
  height: 45px;
  background: url(../img/top/containa-icn.png);
  left: 50%;
  top: -25px;
  translate: -50% 0;
  z-index: 2;
}
.site-info-box .atten {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.8888888889rem;
  color: #FF5465;
  border: 1px solid #FF5465;
  padding: 9px 75px;
  border-radius: 28px;
}
@media screen and (max-width: 768px) {
  .site-info-box .atten {
    padding: 9px 15px;
  }
}
.site-info-box .btn-reservation {
  width: 100%;
  min-height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.8888888889rem;
  color: #fff;
  letter-spacing: 0.05em;
  padding: 5px 10px;
  background: #222;
  border-radius: 4px;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .site-info-box .btn-reservation {
    margin-top: 30px;
  }
}

.site-info-ttl {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 30px;
}
.site-info-ttl_main {
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.05em;
}
.site-info-ttl_sub {
  font-weight: 500;
  font-size: 0.8888888889rem;
  letter-spacing: 0.05em;
}

.site-info-data {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px 60px;
  margin-top: 20px;
  margin-bottom: 30px;
}
.site-info-data .block {
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 600px) {
  .site-info-data .block {
    flex-direction: column;
    gap: 5px;
    align-items: center;
  }
}
.site-info-data .block dt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 36px;
  font-size: 0.8888888889rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  border: 1px solid #DBD8C8;
  background: #F9F9F9;
  border-radius: 18px;
  padding: 3px 23px;
}
.site-info-data .block dd {
  font-size: 0.8888888889rem;
  letter-spacing: 0.05em;
}

.siteSlider {
  width: 100%;
  padding-bottom: 40px !important;
}
.siteSlider .swiper-pagination-bullet {
  margin: 0 7px !important;
  background: #DBDEE5;
  opacity: 1;
}
.siteSlider .swiper-pagination-bullet-active {
  background: #111;
}
.siteSlider .inner {
  position: relative;
}
.siteSlider .inner .text {
  position: absolute;
  width: fit-content;
  min-height: 31px;
  padding: 5px 14px;
  bottom: 20px;
  left: 10px;
  z-index: 2;
  font-size: 0.7777777778rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.05em;
  background: rgba(17, 17, 17, 0.5);
  border-radius: 16px;
}
.siteSlider .inner img {
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  .siteSlider .inner img {
    height: 380px;
    object-fit: cover;
  }
}
@media screen and (max-width: 425px) {
  .siteSlider .inner img {
    height: 300px;
    border-radius: 25px;
  }
}

.site-info-content {
  width: 100%;
  margin-top: 60px;
  display: flex;
  gap: 40px 80px;
}
@media screen and (max-width: 1024px) {
  .site-info-content {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .site-info-content {
    margin-top: 40px;
  }
}

.site-info-left {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .site-info-left {
    width: 100%;
  }
}

.site-info-menu {
  width: 100%;
  margin-bottom: 30px;
}
.site-info-menu li {
  border-bottom: 1px solid #707070;
}
.site-info-menu li:not(:last-child) {
  margin-bottom: 20px;
}
.site-info-menu li h3 {
  position: relative;
  font-size: 1rem;
  letter-spacing: 0.05em;
  padding-left: 24px;
  margin-bottom: 20px;
}
.site-info-menu li h3:before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: #D1CDBE;
  border-radius: 100%;
  left: 0;
  top: 7px;
}
.site-info-menu li dl {
  display: flex;
}
@media screen and (max-width: 425px) {
  .site-info-menu li dl {
    flex-direction: column;
  }
}
.site-info-menu li dl dt {
  width: 165px;
}
@media screen and (max-width: 425px) {
  .site-info-menu li dl dt {
    width: 100%;
  }
}
.site-info-menu li dl dt .ttl {
  font-size: 0.7222222222rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}
.site-info-menu li dl dt .price {
  font-size: 0.8888888889rem;
  letter-spacing: 0.05em;
}
.site-info-menu li dl dt .price span {
  font-family: "Poppins", sans-serif;
  font-size: 1.3333333333rem;
}
@media screen and (max-width: 425px) {
  .site-info-menu li dl dd {
    width: 100%;
  }
}
.site-info-menu li dl dd .ttl {
  font-size: 0.7222222222rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}
.site-info-menu li dl dd .text {
  font-size: 0.8888888889rem;
  letter-spacing: 0.05em;
}

.site-info-right {
  width: 43.3333333333%;
}
@media screen and (max-width: 1024px) {
  .site-info-right {
    width: 100%;
  }
}
.site-info-right .ttl {
  font-size: 0.7777777778rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.site-info-right .ttl:not(:first-of-type) {
  margin-top: 20px;
}
.site-info-right ul {
  width: 100%;
}
.site-info-right ul li {
  position: relative;
  padding-left: 1em;
  font-size: 0.7777777778rem;
}
.site-info-right ul li::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: #111;
  border-radius: 100px;
  left: 0;
  top: 9.5px;
}
.site-info-right .btn {
  width: 100%;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.7777777778rem;
  color: #FF0000;
  background: #fff;
  border: 1px solid #FF0000;
  border-radius: 4px;
  padding: 5px 10px;
  margin-top: 30px;
}

.access-top-cont {
  position: relative;
  margin-top: -100px;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .access-top-cont {
    margin-top: -10.4166666667vw;
  }
}
.access-top-cont .image-box {
  position: relative;
  max-width: 1200px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  margin-top: -70px;
  gap: 10px 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .access-top-cont .image-box {
    margin-top: -6.5104166667vw;
  }
}

.accessSlider .swiper-wrapper {
  transition: linear;
}
.accessSlider .swiper-slide {
  width: auto;
}
.accessSlider .swiper-slide.tp50 .inner {
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .accessSlider .swiper-slide.tp50 .inner {
    padding-top: 25px;
  }
}

.top03 {
  position: relative;
  width: 100%;
  padding-top: min(9.375vw, 180px);
  padding-bottom: 160px;
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .top03 {
    padding-bottom: 80px;
  }
}
.top03-deco {
  position: absolute;
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
  font-size: min(13.5416666667vw, 14.4444444444rem);
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.05em;
  color: #F5F5F5;
  top: 0;
  left: 50%;
  translate: -50% 0;
  z-index: 1;
}
.top03 .wrap1200 {
  position: relative;
  z-index: 3;
}
.top03 .road-box {
  position: relative;
  max-width: 1200px;
  width: calc(100% - 30px);
  margin-left: auto;
  margin-right: auto;
  padding: 40px 0;
  background: #F2F2F2;
  border-radius: 50px;
  display: flex;
}
@media screen and (max-width: 768px) {
  .top03 .road-box {
    flex-direction: column;
    padding: 40px 30px 60px;
  }
}
.top03 .road-box:before {
  position: absolute;
  content: "";
  width: 154px;
  height: 126px;
  background: url(../img/top/access-deco02.png);
  z-index: 2;
  left: -45px;
  bottom: -55px;
}
@media screen and (max-width: 1300px) {
  .top03 .road-box:before {
    left: -10px;
  }
}
@media screen and (max-width: 425px) {
  .top03 .road-box:before {
    width: 92.4px;
    height: 75.6px;
    background-size: cover;
    bottom: -25px;
  }
}
.top03 .road-box .box {
  width: 50%;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .top03 .road-box .box {
    width: 100%;
    padding: 0;
  }
}
.top03 .road-box .box:first-child {
  border-right: 1px solid #E1E1E1;
}
@media screen and (max-width: 768px) {
  .top03 .road-box .box:first-child {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-right: none;
    border-bottom: 1px solid #E1E1E1;
  }
}
.top03 .road-box .box h3 {
  position: relative;
  font-size: 1rem;
  letter-spacing: 0.05em;
  padding-left: 24px;
  margin-bottom: 20px;
}
.top03 .road-box .box h3:before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: #d1cdbe;
  border-radius: 100%;
  left: 0;
  top: 7px;
}
.top03 .road-box .box dl {
  width: 100%;
}
.top03 .road-box .box dl div {
  display: flex;
}
.top03 .road-box .box dl dt {
  position: relative;
  width: 160px;
  font-weight: 700;
  font-size: 0.8888888889rem;
  letter-spacing: 0.05em;
}
.top03 .road-box .box dl dt:before {
  position: absolute;
  content: "";
  width: calc(100% - 5px);
  height: 1px;
  border-bottom: 1px dotted #000;
  left: 0;
  top: 9.5px;
  z-index: 1;
}
.top03 .road-box .box dl dt span {
  display: inline-block;
  padding-right: 5px;
  position: relative;
  z-index: 2;
  background: #F2F2F2;
}
.top03 .road-box .box dl dd {
  width: calc(100% - 160px);
  font-size: 0.8888888889rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
.top03 .road-box .box ul li {
  position: relative;
  padding-left: 1em;
  font-size: 0.8888888889rem;
}
.top03 .road-box .box ul li:before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: #111;
  border-radius: 100px;
  left: 0;
  top: 9.5px;
}

.access-data {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px 60px;
  margin-top: 80px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .access-data {
    flex-direction: column;
    margin-top: 40px;
  }
}
.access-data .block {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 600px) {
  .access-data .block {
    flex-direction: column;
    gap: 5px;
    align-items: center;
  }
}
.access-data .block dt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 36px;
  font-size: 0.8888888889rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  border: 1px solid #DBD8C8;
  background: #F9F9F9;
  border-radius: 18px;
  padding: 3px 23px;
}
.access-data .block dd {
  font-size: 0.8888888889rem;
  letter-spacing: 0.05em;
  text-align: center;
}
.access-data .block dd span {
  font-size: 0.6666666667rem;
}
.access-data .block dd .poppins {
  font-size: 1.3333333333rem;
}

.gmap-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1/0.375;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .gmap-wrap {
    aspect-ratio: 1/0.7;
  }
}
@media screen and (max-width: 425px) {
  .gmap-wrap {
    aspect-ratio: 1/1;
  }
}
.gmap-wrap iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}
.gmap-wrap .map-link {
  position: absolute;
  bottom: 40px;
  left: 50%;
  translate: -50% 0;
  z-index: 5;
  max-width: 302px;
  width: 100%;
  min-height: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.8888888889rem;
  letter-spacing: 0.05em;
  color: #fff;
  background: #000;
  border-radius: 31px;
}

.site-info-left .btn {
  width: 100%;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.7777777778rem;
  color: #FF0000;
  background: #fff;
  border: 1px solid #FF0000;
  border-radius: 4px;
  padding: 5px 10px;
  margin-top: 30px;
  margin-bottom: 20px;
}

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

object/project/subpage.scss

***************************/
.under .main {
  margin-top: 110px;
}
@media screen and (max-width: 500px) {
  .under .main {
    margin-top: 90px;
  }
}

.subpage {
  width: 100%;
  padding: 0 25px;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .subpage {
    padding: 0 15px;
    margin-bottom: 60px;
  }
}
.subpage-mv {
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.subpage-main {
  width: 100%;
}
.subpage-main img {
  width: 100%;
  max-height: 360px;
  min-height: 260px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50px;
}
@media screen and (max-width: 425px) {
  .subpage-main img {
    min-height: 200px;
    border-radius: 25px;
  }
}
.subpage-inner {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 6.7708333333vw;
  padding-right: 6.7708333333vw;
}
.subpage-ttl {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .subpage-ttl {
    font-size: clamp(2.375rem, 6.25vw, 3rem);
  }
}
.subpage-sub-ttl {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 0.8333333333rem;
  letter-spacing: 0.05em;
  color: #fff;
}
.subpage-link {
  width: 100%;
  padding-left: 6.7708333333vw;
  padding-right: 6.7708333333vw;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 45px;
}
.subpage-link li {
  position: relative;
  line-height: 1;
}
.subpage-link li:not(:last-child):after {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-top: 1px solid #aaa;
  border-right: 1px solid #aaa;
  rotate: 45deg;
  right: -23px;
  top: 50%;
  z-index: 2;
}
.subpage-link li:not(:last-child) a {
  text-decoration: underline;
}
.subpage-link li:last-child a {
  pointer-events: none;
  color: #aaa;
}
.subpage-link li a {
  font-size: 0.6666666667rem;
  letter-spacing: 0.05em;
}

.u-section {
  width: 100%;
}
.u-section:not(:last-child) {
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .u-section:not(:last-child) {
    margin-bottom: 60px;
  }
}
.u-section:last-child {
  margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .u-section:last-child {
    margin-bottom: 100px;
  }
}

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

object/project/news.scss

***************************/
.news-list {
  width: 100%;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .news-list {
    margin-bottom: 50px;
  }
}
.news-list li {
  padding: 40px 0;
  border-bottom: 1px solid #E1E1E1;
}
@media screen and (max-width: 768px) {
  .news-list li {
    padding: 20px 0;
  }
}
.news-list li:first-child {
  padding-top: 0;
}
.news-list li a {
  display: flex;
}
@media screen and (max-width: 425px) {
  .news-list li a {
    flex-direction: column;
  }
}
.news-list li a.new h4:after {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  content: "NEW";
  width: 40px;
  height: 19px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.5555555556rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #fff;
  background: red;
  border-radius: 10px;
  text-align: center;
  margin-left: 10px;
  vertical-align: middle;
}
.news-list li a:hover h4 span {
  background-size: 0 1px;
}
.news-list li a .day {
  width: 125px;
  font-family: "Poppins", sans-serif;
  font-size: 0.8888888889rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 425px) {
  .news-list li a .day {
    width: 100%;
  }
}
.news-list li a h4 {
  max-width: calc(100% - 125px);
  width: fit-content;
  font-size: 0.8888888889rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 425px) {
  .news-list li a h4 {
    max-width: 100%;
  }
}
.news-list li a h4 span {
  background: linear-gradient(0deg, #111 1px, transparent 1px);
  background-repeat: repeat-x;
  background-size: 100% 1px;
  background-position: bottom left;
}

/* detail */
.detail-head {
  width: 100%;
  padding-bottom: 50px;
  margin-bottom: 80px;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 768px) {
  .detail-head {
    padding-bottom: 30px;
    margin-bottom: 40px;
  }
}
.detail-head .day {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 0.8888888889rem;
  letter-spacing: 0.05em;
  padding-left: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .detail-head .day {
    margin-bottom: 15px;
  }
}
.detail-head .day:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background: #FF0000;
  border-radius: 100%;
  left: 0;
  top: 8px;
  z-index: 2;
}
.detail-head .detail-ttl {
  font-size: 1.7777777778rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .detail-head .detail-ttl {
    font-size: clamp(1.375rem, 3.6458333333vw, 1.75rem);
  }
}

.detail-editor {
  width: 100%;
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .detail-editor {
    margin-bottom: 70px;
  }
}
.detail-editor h1.deco, .detail-editor h2.deco, .detail-editor h3.deco, .detail-editor h4.deco, .detail-editor h5.deco, .detail-editor h6.deco {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.detail-editor h1.deco:before, .detail-editor h2.deco:before, .detail-editor h3.deco:before, .detail-editor h4.deco:before, .detail-editor h5.deco:before, .detail-editor h6.deco:before {
  position: absolute;
  content: "";
  width: 14px;
  height: 3px;
  background: #FF0000;
  left: 0;
  top: calc(0.8em - 1.5px);
}
.detail-editor p {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
.detail-editor p:not(:last-child) {
  margin-bottom: 25px;
}
.detail-editor a {
  text-decoration: underline;
  letter-spacing: 0.05em;
  font-weight: 1rem;
}
.detail-editor a:hover {
  text-decoration: none;
}
.detail-editor a.file {
  display: inline-flex;
}
.detail-editor a.file i {
  display: flex;
  align-items: center;
  color: #FF0000;
  vertical-align: middle;
}

.news-back {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  max-width: 240px;
  width: 100%;
  min-height: 60px;
  padding: 5px 35px;
  margin-left: auto;
  margin-right: auto;
  background: #F9F9F9;
  border-radius: 30px;
}

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

object/project/contact.scss

***************************/
.contact-form {
  width: 100%;
  border-radius: 50px;
  background: #F2F2F2;
  margin-top: 80px;
  padding: 70px 80px;
}
@media screen and (max-width: 1024px) {
  .contact-form {
    padding: 40px;
  }
}
@media screen and (max-width: 768px) {
  .contact-form {
    padding: 40px 30px;
    margin-top: 40px;
  }
}
.contact-form-list {
  width: 100%;
  margin-bottom: 40px;
}
.contact-form-list_block {
  width: 100%;
}
.contact-form-list_block:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .contact-form-list_block:not(:last-child) {
    margin-bottom: 30px;
  }
}
.contact-form-list_block dt {
  position: relative;
  margin-bottom: 15px;
  padding-left: 57px;
  font-weight: 700;
}
.contact-form-list_block dt:before {
  position: absolute;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 28px;
  border-radius: 16px;
  font-size: 0.6666666667rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  left: 0;
}
.contact-form-list_block dt.req:before {
  content: "必須";
  background: #FF0000;
}
.contact-form-list_block dd {
  width: 100%;
}
.contact-form-list_block dd .placeholder {
  font-size: 0.7777777778rem;
  color: #AAA;
  margin-top: 10px;
}
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel] {
  width: 100%;
  min-height: 74px;
  background: #fff;
  border: 1px solid #E1E1E1;
  border-radius: 4px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 20px;
}
.contact-form textarea {
  width: 100%;
  min-height: 250px;
  background: #fff;
  border: 1px solid #E1E1E1;
  border-radius: 4px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 20px;
}
.contact-form .privacy {
  width: 100%;
  min-height: 86px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #fff;
}
.contact-form .privacy input {
  display: none;
}
.contact-form .privacy input:checked + .wpcf7-list-item-label:after {
  opacity: 1;
}
.contact-form .privacy .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  padding-left: 45px;
}
.contact-form .privacy .wpcf7-list-item-label:before {
  position: absolute;
  content: "";
  width: 28px;
  height: 28px;
  background: #fff;
  border: 1px solid #838791;
  border-radius: 3px;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  z-index: 1;
}
.contact-form .privacy .wpcf7-list-item-label:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 6px;
  border-bottom: 3px solid #F90000;
  border-left: 3px solid #F90000;
  top: 50%;
  left: 8px;
  translate: 0 -50%;
  rotate: -45deg;
  z-index: 2;
  opacity: 0;
}
.contact-form .submit-box {
  max-width: 540px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  margin-bottom: 25px;
}
.contact-form .submit-box input {
  width: 100%;
  min-height: 90px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 1.2222222222rem;
  letter-spacing: 0.05em;
  color: #fff;
  border-radius: 45px;
  border: none;
  background: #F90000;
}
.contact-form .submit-box input:disabled {
  background: #E1E1E1;
}
.contact-form .submit-note {
  font-size: 0.7777777778rem;
  letter-spacing: 0.05em;
  text-align: center;
}
.contact-form .submit-note:before {
  display: inline-block;
  content: "※";
}

.thanks-tel {
  width: 100%;
  border-radius: 50px;
  background: #F2F2F2;
  padding: 40px 30px;
  text-align: center;
  margin-top: 50px;
}
.thanks-tel .day {
  display: inline-block;
  font-size: 0.7222222222rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: #fff;
  padding: 1px 12px;
  border-radius: 16px;
  margin-bottom: 10px;
}
.thanks-tel .tel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.thanks-tel .tel a {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 2.2222222222rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
@media screen and (max-width: 425px) {
  .thanks-tel .tel a {
    font-size: clamp(1.5625rem, 8.2352941176vw, 2.1875rem);
  }
}
.thanks-tel .time {
  font-size: 0.6666666667rem;
  letter-spacing: 0.05em;
}

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

object/project/privacy.scss

***************************/
.privacy01 {
  width: 100%;
}
.privacy01 h3 {
  position: relative;
  padding-left: 30px;
  font-size: 1.4444444444rem;
  letter-spacing: 0.05em;
  margin-top: 120px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .privacy01 h3 {
    margin-top: 60px;
    margin-bottom: 25px;
  }
}
.privacy01 h3:before {
  position: absolute;
  content: "";
  width: 14px;
  height: 3px;
  background: #FF0000;
  left: 0;
  top: calc(0.8em - 1.5px);
  z-index: 1;
}
.privacy01 .symbol {
  position: relative;
  padding-left: 24px;
}
.privacy01 .symbol:before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: #D1CDBE;
  border-radius: 100%;
  left: 0;
  top: calc(0.8em - 8px);
}/*# sourceMappingURL=style.css.map */