@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, picture, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/*
独自リセット
css-wipeより抜粋
*/
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

/* リセットCSSでは bodyのline-height:1 だが
  main要素の下に無駄な余白ができるので0にする */
/* mixins */
/* サイズ指定をremにする */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin-left: auto;
  margin-right: auto;
  font-family: "Noto Serif JP", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 600;
  letter-spacing: 0em;
  color: #333;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

::-moz-selection {
  background: #F5DF99;
  color: #fff;
}

::selection {
  background: #F5DF99;
  color: #fff;
}

a {
  text-decoration: none;
}

a,
a:visited,
a:hover,
a:active {
  color: inherit;
}

textarea, input, button, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

img {
  width: 100%;
  display: block;
}

.ly_cont {
  max-width: 113rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}

.ly_header {
  max-width: 121rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 479px) {
  .ly_header {
    max-width: 100%;
  }
}

.ly_center {
  margin-left: auto;
  margin-right: auto;
}

.ly_section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .ly_section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.bl_header_fixedWrapper {
  /* イラストの余白とカンプのズレの微調整 */
  position: relative;
  width: 100%;
}

.bl_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: auto;
  margin-top: 3.2rem;
  white-space: nowrap;
  gap: 2vw;
}
.bl_header.bl_header__fixed {
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
@media screen and (max-width: 991px) {
  .bl_header.bl_header__fixed {
    -webkit-transform: none;
            transform: none;
    left: 5%;
  }
}

.bl_header_navWrapper {
  width: auto;
}
@media screen and (max-width: 767px) {
  .bl_header_navWrapper {
    width: auto;
  }
}

.bl_header__fixed.js_header__narrow {
  height: auto;
  margin-top: 1.6rem;
}

.bl_header_overlay {
  position: fixed;
  left: 0;
  height: 0;
  width: 100vw;
  background-color: gray;
  opacity: 0.5;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
@media screen and (max-width: 991px) {
  .bl_header_overlay {
    display: none;
  }
}

.bl_header_overlay.js_show {
  height: 8rem;
}

.bl_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2vw;
  height: 100%;
}

.bl_nav_itemsWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 991px) {
  .bl_header_navWrapper .bl_nav_itemsWrapper {
    display: none;
  }
}

.bl_nav_link {
  font-family: "Noto Serif JP", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  letter-spacing: normal;
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
}

/* ドロワー */
@media screen and (max-width: 991px) {
  .bl_header_navWrapper .bl_nav {
    width: 25rem;
    max-width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -25rem;
    background-color: #F5DF99;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .bl_header_navWrapper #hamburger_checkBox:checked ~ .bl_nav {
    right: 0;
  }
  .bl_header_navWrapper .bl_nav_drawerOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0.5;
    background-color: #333;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .bl_header_navWrapper #hamburger_checkBox:checked ~ .bl_nav_drawerOverlay {
    display: block;
  }
  .bl_header_navWrapper .bl_nav_itemsWrapper {
    padding: 4.8rem 1rem 0;
    display: block;
  }
  .bl_header_navWrapper .bl_nav_item {
    list-style: none;
  }
  .bl_header_navWrapper .bl_nav_link {
    display: block;
    width: 100%;
    padding: 1rem;
    position: relative;
    color: #fff;
  }
  .bl_header_navWrapper .bl_nav_link::before {
    content: "";
    width: 0.7rem;
    height: 0.7rem;
    border-top: 0.2rem solid #333;
    border-right: 0.2rem solid #333;
    right: 1.1rem;
    position: absolute;
    top: 50%;
    -webkit-transform: rotate(45deg) translateY(-50%);
            transform: rotate(45deg) translateY(-50%);
  }
}
@media screen and (max-width: 991px) and (max-width: 991px) {
  .bl_header_navWrapper .bl_nav_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #333;
  }
}

.bl_MV {
  position: relative;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 22.2vw;
  padding-bottom: 21.5vw;
}

.el_cornerTextBox {
  position: relative;
}

.el_cornerTextBox::after {
  content: "R2事業再構築";
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 1.4rem;
  font-family: "Avenir", "Helvetica Neue", "Helvetica", "Arial", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.8rem 1.4rem;
  line-height: 1;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .el_cornerTextBox::after {
    font-size: 1.2rem;
    padding: 0.6rem 1.2rem;
  }
}

.bl_simpleTextLines {
  color: #fff;
  background-color: #676464;
  padding: 1.2rem 3.90625%;
}

.bl_simpleTextLines_line > span {
  padding-left: 3.2rem;
}

.bl_media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 118.4rem;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .bl_media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.bl_media_img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 31.7rem;
          flex: 0 0 31.7rem;
  width: 31.7rem;
}
@media screen and (max-width: 767px) {
  .bl_media_img {
    max-width: 100%;
  }
}

.bl_media_img.bl_media_img__v2 {
  -ms-flex-preferred-size: 19.1rem;
      flex-basis: 19.1rem;
  width: 19.1rem;
  -ms-flex-item-align: baseline;
      align-self: baseline;
}
@media screen and (max-width: 767px) {
  .bl_media_img.bl_media_img__v2 {
    -ms-flex-item-align: center;
        align-self: center;
  }
}

.bl_media_body {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 51.2820512821%;
          flex: 0 0 51.2820512821%;
}

.bl_media_body.bl_media_body__v2 {
  -ms-flex-preferred-size: 64.5454545455%;
      flex-basis: 64.5454545455%;
  margin-right: 6.3636363636%;
}
@media screen and (max-width: 767px) {
  .bl_media_body.bl_media_body__v2 {
    margin-right: 0;
  }
}

.bl_multiImgSlider {
  border-radius: 1.8rem;
  overflow: hidden;
}

.bl_multiImgSlider_imgWrapper > img {
  border-radius: 1.8rem;
}

#gallery .swiper > .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}

.bl_priceTable_wrapper {
  width: 50rem;
  max-width: 100%;
  padding-top: 4rem;
}
@media screen and (max-width: 767px) {
  .bl_priceTable_wrapper {
    width: 40rem;
  }
}

.bl_priceTable {
  width: 100%;
}

.bl_priceTable_heading {
  color: #188372;
  padding-bottom: 0.9rem;
  border-bottom: 0.1rem solid #188372;
}

.bl_priceTable_row.bl_priceTable_row__header {
  text-align: left;
  padding-top: 3.1rem;
}

.bl_priceTable_row > td:nth-child(1),
.bl_priceTable_row.bl_priceTable_row__header > th:nth-child(1) {
  text-align: left;
}

.bl_priceTable_row > td:nth-child(2),
.bl_priceTable_row.bl_priceTable_row__header > th:nth-child(2) {
  text-align: right;
}

.bl_priceTable_row {
  border-bottom: 0.1rem solid #ddd;
}

.bl_priceTable_row.bl_priceTable_row__header > th {
  padding-top: 2.8rem;
  padding-bottom: 0.4rem;
}

.bl_priceTable_row > td {
  padding-top: 1.2rem;
  padding-bottom: 1rem;
}

.bl_priceTable_row:nth-child(2) > td {
  padding-top: 2.8rem;
  padding-bottom: 1rem;
}

.bl_priceTable_note {
  padding-top: 1.4rem;
}

.un_access {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bl_access {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 88rem;
  max-width: 100%;
  padding-top: 4rem;
}
@media screen and (max-width: 991px) {
  .bl_access {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 1.6rem;
  }
}

.bl_access_mapWrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42.0454545455%;
          flex: 0 0 42.0454545455%;
  height: 46.3rem;
  border: 0.2rem solid #188372;
}
@media screen and (max-width: 991px) {
  .bl_access_mapWrapper {
    -ms-flex-preferred-size: 60vw;
        flex-basis: 60vw;
    width: 90vw;
    margin-top: 2.4rem;
  }
}

.bl_access_mapWrapper > iframe {
  width: 100%;
  height: 100%;
}

.bl_addressTable_wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .bl_addressTable_wrapper {
    text-align: center;
  }
}

.bl_addressTable_heading {
  padding-bottom: 0.9rem;
}

.bl_addressTable_row > th {
  text-align: left;
}
@media screen and (max-width: 479px) {
  .bl_addressTable_row > th {
    width: 14rem;
  }
}

.bl_addressTable_row > td {
  text-align: left;
}

.bl_addressTable_row {
  border-bottom: 0.1rem solid #ddd;
}

.bl_addressTable_row:last-child {
  border-bottom: none;
}

.bl_addressTable_row:first-child > th {
  padding-top: 2.8rem;
  padding-bottom: 0.4rem;
}

.bl_addressTable_row > td {
  font-weight: 400;
  padding-left: 2rem;
  padding-right: 1rem;
  padding-top: 1.2rem;
  padding-bottom: 1rem;
}
@media screen and (max-width: 479px) {
  .bl_addressTable_row > td {
    padding-left: 0.8rem;
    padding-right: 0rem;
  }
}

.bl_addressTable_row > td > a {
  text-decoration: underline;
  text-decoration-color: #188372;
}

.bl_footer {
  width: 100%;
}

.bl_MV_subpages {
  position: relative;
  font-weight: 600;
  background-image: url("/assets/img/MV_subpages.jpg");
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  padding-top: 10.9vw;
  padding-bottom: 7.1vw;
}

.bl_MV_subpages {
  position: relative;
  background-image: url("/assets/img/MV_subpages.jpg");
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  padding-top: 10.9vw;
  padding-bottom: 7.1vw;
}

.bl_faq {
  padding-bottom: 10rem;
}

.bl_faq_q,
.bl_faq_a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.2rem;
  font-size: 1.6rem;
  line-height: 1.375;
}
@media screen and (max-width: 767px) {
  .bl_faq_q,
  .bl_faq_a {
    font-size: 2rem;
    gap: 1.2rem;
  }
}

.bl_faq_a {
  font-weight: 400;
}

.bl_faq_q figure,
.bl_faq_a figure {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 4rem;
  height: 7.1rem;
}
@media screen and (max-width: 767px) {
  .bl_faq_q figure,
  .bl_faq_a figure {
    height: 6rem;
  }
}

.bl_faq_q img,
.bl_faq_a img {
  width: auto;
  height: 100%;
}

.bl_faq_item {
  border-bottom: 0.1rem solid #ddd;
  padding-top: 2rem;
  padding-bottom: 24px;
}

.el_hamburger {
  height: 100%;
}

.el_hamburger_btn {
  display: none;
}
@media screen and (max-width: 991px) {
  .el_hamburger_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    background-color: transparent;
    border-radius: 0.4rem;
    height: 3.2rem;
    width: 3.6rem;
    top: 1rem;
    right: 1rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 4px;
    cursor: pointer;
    z-index: 90;
  }
}

.el_hamburger_btn span,
.el_hamburger_btn span:before,
.el_hamburger_btn span:after {
  content: "";
  display: block;
  height: 0.2rem;
  width: 2.2rem;
  border-radius: 0.3rem;
  background-color: #333;
  position: absolute;
}

.el_hamburger_btn span:before {
  bottom: 0.8rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.el_hamburger_btn span:after {
  top: 0.8rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#hamburger_checkBox {
  display: none;
}

#hamburger_checkBox:checked ~ .el_hamburger_btn span {
  background-color: rgba(255, 255, 255, 0);
}
#hamburger_checkBox:checked ~ .el_hamburger_btn span::before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#hamburger_checkBox:checked ~ .el_hamburger_btn span::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.el_iconText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.el_iconText_icon {
  display: inline;
  width: 2.6rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.el_iconText_text {
  -ms-flex-item-align: center;
      align-self: center;
  padding-left: 0.8rem;
}

.el_logo_wrapper {
  color: #fff;
}
@media screen and (max-width: 991px) {
  .el_logo_wrapper {
    color: #333;
  }
}

.el_logo {
  text-align: center;
}

.el_logo_shoulder,
.el_logo_main {
  display: block;
}

.el_logo_shoulder {
  font-size: 1.8rem;
  line-height: 1.4444444444;
}
@media screen and (max-width: 479px) {
  .el_logo_shoulder {
    font-size: 1.4rem;
  }
}

.el_logo_main {
  font-size: 2.3rem;
  line-height: 1.4347826087;
  margin-top: -0.5rem;
}
@media screen and (max-width: 479px) {
  .el_logo_main {
    font-size: 1.8rem;
  }
}

.el_btn_wrapper {
  color: #333;
}

.el_btn {
  display: inline-block;
  width: 40rem;
  max-width: 100%;
  padding: 1.6rem;
  background-color: #F5DF99;
  border: 0.1rem solid transparent;
  border-radius: 0rem;
  color: #333;
  font-family: "Noto Serif JP", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 2rem;
  line-height: 2.9rem;
  letter-spacing: 0em;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  .el_btn {
    font-size: 1.8rem;
    padding: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .bl_nav_link.el_btn {
    background: none;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .bl_nav_link.el_btn:visited {
    color: inherit;
  }
  .bl_nav_link.el_btn::after {
    content: none;
  }
}
.el_btn__round {
  margin-top: 0.3rem;
  padding: 0.8rem 3.6rem;
  border-radius: 99.9rem;
}

.el_btn__sm {
  width: auto;
}

@media screen and (max-width: 991px) {
  .el_btn.el_btn__longTxt {
    padding: 1.3rem 6% 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .el_btn.el_btn__longTxt {
    padding: 1rem 2rem 1.1rem;
  }
}

.el_btn__offsetBorder {
  border: none;
  left: 0.5rem;
}

@media screen and (max-width: 767px) {
  .bl_nav_link.el_btn__offsetBorder {
    left: 0;
  }
}

.el_btn__offsetBorder::after {
  content: "";
  display: inline-block;
  border: 0.1rem solid #188372;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.el_btn__offsetBorder.el_btn__round::after {
  border-radius: 99.9rem;
}

.el_btn__offsetBorder.el_btn__offsetBorder__white::after {
  border-color: #fff;
}

.el_btn__offsetBorder.el_btn__offsetBorder__accent::after {
  border-color: #188372;
}

.el_btn__offsetBorder:hover,
.el_btn__offsetBorder:focus {
  -webkit-transform: translate(-0.1rem, -0.1rem);
          transform: translate(-0.1rem, -0.1rem);
}

.el_btn__offsetBorder:hover::after,
.el_btn__offsetBorder:focus::after {
  -webkit-transform: translate(0.5rem, 0.5rem);
          transform: translate(0.5rem, 0.5rem);
}

@media screen and (max-width: 767px) {
  .bl_nav_link.el_btn__offsetBorder:hover,
  .bl_nav_link.el_btn__offsetBorder:focus {
    -webkit-transform: none;
            transform: none;
  }
}

.el_btn__offsetBorder:active {
  -webkit-transform: translate(0.3rem, 0.3rem);
          transform: translate(0.3rem, 0.3rem);
}

.el_btnWrapper {
  text-align: center;
}

@media screen and (max-width: 479px) {
  .el_btnWrapper__w100Sm {
    -moz-text-align-last: center;
         text-align-last: center;
  }
}

@media screen and (max-width: 479px) {
  .el_btnWrapper__w100Sm > .el_btn {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .el_btnWrapper.el_btnWrapper__2cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: auto;
    margin-right: auto;
  }
}

.el_btnWrapper.el_btnWrapper__2cols > .el_btn {
  margin-right: 15%;
}
@media screen and (max-width: 479px) {
  .el_btnWrapper.el_btnWrapper__2cols > .el_btn {
    margin-left: auto;
    margin-right: auto;
  }
}

.el_btnWrapper.el_btnWrapper__2cols > .el_btn:last-child {
  margin-right: 0;
}
@media screen and (max-width: 479px) {
  .el_btnWrapper.el_btnWrapper__2cols > .el_btn:last-child {
    margin-right: auto;
    margin-top: 3rem;
  }
}

.bl_cvBtnFrame {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  bottom: 1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: rgba(249, 249, 249, 0.5);
  max-width: 80%;
  width: 40rem;
  border-radius: 2.5rem;
  padding: 1.5rem 1rem 1.4rem;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
@media screen and (max-width: 479px) {
  .bl_cvBtnFrame {
    width: 19rem;
  }
}

.el_lv1Heading_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #fff;
}

.el_lv1Heading {
  display: block;
  font-size: 4rem;
  line-height: 1.425;
  font-weight: 600;
  padding-top: 1.3rem;
}
@media screen and (max-width: 767px) {
  .el_lv1Heading {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 479px) {
  .el_lv1Heading {
    font-size: 1.6rem;
  }
}

.el_lv1Heading_shoulder {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .el_lv1Heading_shoulder {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 479px) {
  .el_lv1Heading_shoulder {
    font-size: 1.8rem;
  }
}

.el_lv2Heading {
  font-family: inherit;
  font-size: 4rem;
  line-height: 5.7rem;
  line-height: 1.425;
  font-weight: 600;
  letter-spacing: 0em;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .el_lv2Heading {
    font-size: 3rem;
    padding-bottom: 0.8rem;
  }
}
@media screen and (max-width: 479px) {
  .el_lv2Heading {
    font-size: 2.8rem;
    padding-bottom: 0.8rem;
  }
}

.el_lv2Heading_eng {
  height: 3.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .el_lv2Heading_eng {
    height: 3.2rem;
  }
}

.el_lv2Heading_eng > img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.el_badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0em;
  text-align: center;
  height: 13.7rem;
  width: 25.2rem;
  padding: 0.4rem;
  background-color: #188372;
  border: 1px solid transparent;
  border-radius: 99.9rem;
}
.el_dots {
  position: relative;
}

.el_dots::after,
.el_dots::before {
  content: "";
  background-color: #188372;
  border-radius: 50%;
  position: absolute;
}

.el_dots::after {
  height: 1.5rem;
  width: 1.5rem;
  left: 0;
  bottom: -0.1rem;
}

.el_dots::before {
  height: 1rem;
  width: 1rem;
  left: -1.5rem;
  bottom: -0.9rem;
}

.el_copyright {
  color: #fff;
  font-family: "Avenir", "Helvetica Neue", "Helvetica", "Arial", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  line-height: 2.2rem;
  text-align: center;
  padding: 3.1rem 0;
  background-color: #333;
}

/*スクロールダウン全体の場所*/
.el_scrolldown_wrapper {
  position: relative;
}

.el_scrolldown {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 50%;
  bottom: 10px;
  /*全体の高さ*/
  height: 50px;
}

/*Scrollテキストの描写*/
.el_scrolldown span {
  position: absolute;
  top: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

/* 線の描写 */
.el_scrolldown::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 30px;
  background: #fff;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  -webkit-animation: pathmove 1.4s ease-in-out infinite;
          animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@-webkit-keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
.un_roundEndBox {
  border-radius: 99.9rem;
  background-color: #fff;
  padding: 0 2rem 0 2.4rem;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
@media screen and (max-width: 991px) {
  .un_roundEndBox {
    background-color: transparent;
  }
}

.un_lead {
  padding-top: 3.8rem;
}
@media screen and (max-width: 767px) {
  .un_lead {
    padding-top: 1.6rem;
  }
}

.un_trouble {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 88rem;
  max-width: 100%;
  padding-top: 4rem;
}
@media screen and (max-width: 991px) {
  .un_trouble {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 1.6rem;
  }
}

@media screen and (max-width: 991px) {
  .un_trouble .el_dots {
    padding-top: 2rem;
  }
  .un_trouble .el_dots:nth-child(1) {
    margin-top: -2rem;
    -webkit-transform: translateX(-20vw);
            transform: translateX(-20vw);
  }
  .un_trouble .el_dots:nth-child(2) {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .un_trouble .el_dots:nth-child(3) {
    -webkit-transform: translateX(20vw);
            transform: translateX(20vw);
  }
}
@media screen and (max-width: 479px) {
  .un_trouble .el_dots.el_dots {
    padding-top: 2rem;
    -webkit-transform: none;
            transform: none;
  }
}
.un_strength_mediaWrapper {
  max-width: 78rem;
  padding-top: 5.2rem;
}

.un_strength_heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
@media screen and (max-width: 767px) {
  .un_strength_heading {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 1.6rem;
  }
}

.un_strength_heading > figure {
  height: 4.2rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 16.2rem;
          flex: 0 1 16.2rem;
}
@media screen and (max-width: 767px) {
  .un_strength_heading > figure {
    height: 3rem;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}

.un_strength_heading.un_strength_heading__v2 > figure {
  height: 4.7rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 5.8rem;
          flex: 0 1 5.8rem;
}
@media screen and (max-width: 767px) {
  .un_strength_heading.un_strength_heading__v2 > figure {
    height: 3.8rem;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}

.un_strength_heading > figure > img {
  display: inline;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 767px) {
  .un_strength_heading > figure > img {
    width: 100%;
  }
}

.un_strength_heading > span {
  -ms-flex-item-align: center;
      align-self: center;
  padding-left: 1.6rem;
}

.un_strength_heading.un_strength_heading__v2 > span {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.un_strength_text {
  padding-top: 3.6rem;
}
@media screen and (max-width: 767px) {
  .un_strength_text {
    padding-top: 2rem;
  }
}

.un_strength_offsetBorder {
  position: relative;
}

.un_strength_offsetBorder::after {
  content: "";
  border: 0.2rem solid #F5DF99;
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 90vw;
  max-height: 90vw;
  border-radius: 99.9rem;
  top: -2.523659306%;
  left: -2.523659306%;
}

.un_strength_body {
  position: relative;
}

.un_strength_note {
  position: absolute;
  padding-top: 2rem;
}
@media screen and (max-width: 767px) {
  .un_strength_note {
    position: static;
  }
}

.un_flow {
  padding-top: 4rem;
}

.un_flow_mediaWrapper {
  max-width: 88rem;
}

.un_flow_text {
  padding-top: 0.5rem;
}

.un_flow_separator {
  width: 100%;
  border-bottom: 1px solid #ddd;
  max-width: 88rem;
  padding-top: 0.8rem;
  margin-bottom: 1.8rem;
}
@media screen and (max-width: 767px) {
  .un_flow_separator {
    border-bottom: none;
    padding-top: 4rem;
  }
}

.un_reservation_btnWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 88rem;
  max-width: 100%;
}
@media screen and (max-width: 991px) {
  .un_reservation_btnWrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.4rem;
  }
}

.un_reservation_btnWrapper > .el_btn {
  display: block;
}

.un_social_btnWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 88rem;
  max-width: 100%;
}
@media screen and (max-width: 991px) {
  .un_social_btnWrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.4rem;
  }
}

.un_social_btnWrapper > a > img {
  width: 40rem;
  max-width: 100%;
}

.un_massage_mediaWrapper {
  width: 88rem;
  max-width: 100%;
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .un_massage_mediaWrapper {
    padding-top: 1.6rem;
  }
}

.un_massage_text {
  padding-top: 2.2rem;
}

.un_massage_img.bl_media_img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 36.3rem;
          flex: 0 0 36.3rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .un_massage_img.bl_media_img {
    margin-top: 2.4rem;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

.un_massage_img > img {
  border-radius: 1.8rem;
}

.un_massage_offsetBorder {
  position: relative;
}

.un_massage_offsetBorder::after {
  content: "";
  border: 0.1rem solid #188372;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 1.8rem;
  top: -0.9463722397%;
  left: -1.261829653%;
}
.un_facility {
  padding-bottom: 10rem;
}

.un_facility_mediaWrapper {
  width: 88rem;
  max-width: 100%;
  padding-top: 6.3rem;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .un_facility_mediaWrapper {
    gap: 0;
  }
}

.un_facility_mediaWrapper:first-child {
  padding-top: 4rem;
}

.un_facility_mediaWrapper:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 767px) {
  .un_facility_mediaWrapper:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.un_facility_mediaWrapper:nth-child(2n+1) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .un_facility_mediaWrapper:nth-child(2n+1) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.un_facility_heading {
  font-size: 3.2rem;
  line-height: 1.34375;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .un_facility_heading {
    text-align: center;
  }
}

.un_facility_text {
  font-weight: 400;
  padding-top: 2.2rem;
}

.un_facility_img.bl_media_img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40rem;
          flex: 0 0 40rem;
}
@media screen and (max-width: 767px) {
  .un_facility_img.bl_media_img {
    margin-top: 2.4rem;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

.un_facility_img > img {
  border-radius: 1.8rem;
}

.un_facility_offsetBorder {
  position: relative;
}

.un_facility_offsetBorder::after {
  content: "";
  border: 0.1rem solid #F5DF99;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 1.8rem;
  top: -0.9463722397%;
  left: -1.261829653%;
}
.un_facility_body {
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.swiper_MV {
  position: relative;
}

.swiper_MV .swiper-button-next:after,
.swiper_MV .swiper-button-prev:after {
  color: #fff;
  padding: 0.8rem;
  font-size: 24px;
  border-radius: 999px;
  background-color: rgba(245, 223, 153, 0.3);
}

/* フェードインのベース */
.js_fadeIn {
  opacity: 0;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

.js_fadeIn__delay5 {
  -webkit-transition: all 1s 0.5s ease-out;
  transition: all 1s 0.5s ease-out;
}

.js_fadeIn__delay10 {
  -webkit-transition: all 1s 1s ease-out;
  transition: all 1s 1s ease-out;
}

/* 上からフェードイン */
.js_fadeIn__top {
  -webkit-transform: translate(0, -20px);
          transform: translate(0, -20px);
}

/* 下からフェードイン */
.js_fadeIn__bottom {
  -webkit-transform: translate(0, 20px);
          transform: translate(0, 20px);
}

/* 左からフェードイン */
.js_fadeIn__left {
  -webkit-transform: translate(-20px, 0);
          transform: translate(-20px, 0);
}

/* 右からフェードイン */
.js_fadeIn__right {
  -webkit-transform: translate(20px, 0);
          transform: translate(20px, 0);
}

.lg_only {
  display: none;
}
@media screen and (max-width: 991px) {
  .lg_only {
    display: block;
  }
}

.md_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .md_only {
    display: block;
  }
}

.sm_only {
  display: none;
}
@media screen and (max-width: 479px) {
  .sm_only {
    display: block;
  }
}

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

.hp_centerTxt {
  text-align: center;
}

.hp_zIndex__20 {
  z-index: 20;
}

.hp_zIndex__21 {
  z-index: 21;
}

.hp_zIndex__30 {
  z-index: 30;
}

.hp_zIndex__31 {
  z-index: 31;
}

.hp_pos__rel {
  position: relative;
}

.hp_lineFeed {
  display: inline-block;
}

.hp_fw400 {
  font-weight: 400;
}

.hp_fw600 {
  font-weight: 600;
}

.hp_colWhite {
  color: #fff;
}

.hp_colTheme {
  color: #188372;
}

.hp_flex__1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.hp_mt54 {
  margin-top: 5.4rem;
}
@media screen and (max-width: 767px) {
  .hp_mt54 {
    margin-top: 4rem;
  }
}

.hp_ffGothic {
  font-family: "Avenir", "Helvetica Neue", "Helvetica", "Arial", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.hp_fz24_35 {
  font-size: 2.4rem;
  line-height: 1.4583333333;
}
@media screen and (max-width: 767px) {
  .hp_fz24_35 {
    font-size: 2rem;
  }
}

.hp_fz20_29 {
  font-size: 2rem;
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .hp_fz20_29 {
    font-size: 1.8rem;
  }
}

.hp_fz14_20 {
  font-size: 1.4rem;
  line-height: 1.4285714286;
}
@media screen and (max-width: 767px) {
  .hp_fz14_20 {
    font-size: 1.3rem;
  }
}

.hp_fz12_17 {
  font-size: 1.2rem;
  line-height: 1.4166666667;
}
@media screen and (max-width: 767px) {
  .hp_fz12_17 {
    font-size: 1.1rem;
  }
}

.hp_fz32_46 {
  font-size: 3.2rem;
  line-height: 1.4375;
}
@media screen and (max-width: 767px) {
  .hp_fz32_46 {
    font-size: 2.8rem;
  }
}

.hp_fz52_71 {
  font-size: 5.2rem;
  line-height: 1.3653846154;
}
@media screen and (max-width: 767px) {
  .hp_fz52_71 {
    font-size: 4.6rem;
  }
}
@media screen and (max-width: 479px) {
  .hp_fz52_71 {
    font-size: 3.6rem;
  }
}

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

.hp_show__lg {
  display: none;
}
@media screen and (max-width: 991px) {
  .hp_show__lg {
    display: block;
  }
}

.hp_hide {
  display: none;
}
/*# sourceMappingURL=style.css.map */