@charset "UTF-8";
@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
body {
  color: #333333;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.7;
  font-family: "Noto Sans Japanese" , sans-serif;
  font-weight: 300;
  display: swap;
}

img {
  width: 100%;
}

.w1200 {
  max-width: 1200px;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.tab-br1024 {
  display: none;
}

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

@media only screen and (max-width: 420px) {
  .tab-br1024 {
    display: none;
  }
}

.sp-br768 {
  display: none;
}

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

.sp-br480 {
  display: none;
}

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

@media only screen and (max-width: 768px) {
  .tab-none {
    display: none !important;
  }
}

.tab-block {
  display: none !important;
}

@media only screen and (max-width: 768px) {
  .tab-block {
    display: block !important;
  }
}

.tab-flex {
  display: none !important;
}

@media only screen and (max-width: 768px) {
  .tab-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media only screen and (max-width: 480px) {
  .sp-none {
    display: none !important;
  }
}

.sp-block {
  display: none !important;
}

@media only screen and (max-width: 480px) {
  .sp-block {
    display: block !important;
  }
}

.ml-auto {
  margin-left: auto;
}

.gs-content {
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}

@media only screen and (max-width: 480px) {
  .gs-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}

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

@media only screen and (max-width: 768px) {
  .gs__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;
  }
}

.gs-tel {
  font-size: 40px;
  font-size: 4rem;
}

@media only screen and (max-width: 1024px) {
  .gs-tel {
    font-size: 30px;
    font-size: 3rem;
  }
}

@media only screen and (max-width: 768px) {
  .gs-tel {
    font-size: 20px;
    font-size: 2rem;
  }
}

.gs-tel span {
  font-size: 20px;
  font-size: 2rem;
  margin-right: 8px;
}

.fixed-btn__wrap {
  position: fixed;
  top: 100px;
  right: 0;
  z-index: 9999;
  display: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media only screen and (max-width: 480px) {
  .fixed-btn__wrap {
    display: none;
  }
}

.fixed-btn__wrap .fixed-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  color: #ffffff;
  height: 140px;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
  font-size: 1.4rem;
}

.fixed-btn__wrap .fixed-btn a span {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
}

.fixed-btn__wrap .fixed-btn--reserve {
  background-color: #08533C;
  margin-bottom: 10px;
}

.fixed-btn__wrap .fixed-btn--contact {
  background-color: #70C64C;
  position: relative;
  padding-top: 14px;
}

.fixed-btn__wrap .fixed-btn--contact::before {
  content: "";
  position: absolute;
  background-image: url(/hotel/SE/garden-suite/assets/img/se_mail.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 18px;
  height: 12px;
  top: 18px;
}

@media all and (-ms-high-contrast: none) {
  .fixed-btn__wrap .fixed-btn--contact::before {
    left: 35%;
  }
}

.show {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media only screen and (max-width: 480px) {
  .show {
    display: none;
  }
}

.fixed-btn__wrap--sp {
  max-width: 480px;
  display: none;
}

@media only screen and (max-width: 480px) {
  .fixed-btn__wrap--sp {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9999;
  }
}

.fixed-btn--sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.fixed-btn--sp a {
  color: #ffffff;
  text-align: center;
  height: 60px;
  line-height: 60px;
}

.fixed-btn--sp--reserve {
  width: 50%;
  background-color: #08533C;
}

.fixed-btn--sp--contact {
  width: 50%;
  background-color: #70C64C;
}

.fixed-btn--sp--contact span {
  position: relative;
  padding-left: 25px;
}

.fixed-btn--sp--contact span::before {
  content: "";
  position: absolute;
  background-image: url(/hotel/SE/garden-suite/assets/img/se_mail.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 18px;
  height: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

.page-top {
  position: fixed;
  right: 0;
  bottom: 120px;
  font-size: 1.2rem;
  letter-spacing: 0.4em;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.32s opacity, 0.32s visibility;
  transition: 0.32s opacity, 0.32s visibility;
  z-index: 9999;
}

@media only screen and (max-width: 480px) {
  .page-top {
    right: -20px;
  }
}

@media only screen and (max-width: 480px) {
  .page-top a {
    background-color: #EFFCF5;
    color: #333333;
  }
}

.page-top::before {
  position: absolute;
  right: 0;
  top: 0;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  mix-blend-mode: difference;
}

.page-top__link {
  position: relative;
  display: block;
  padding: 10px 10px;
  text-decoration: none;
  -webkit-transform: rotateZ(270deg);
          transform: rotateZ(270deg);
  color: #252525;
}

.page-top__link::before {
  position: absolute;
  right: -80px;
  top: 50%;
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #252525), color-stop(50%, #252525)) 200% bottom;
  background: linear-gradient(to right, #252525 50%, #252525 50%) 200% bottom;
  background-size: 200% 1px;
}

@media only screen and (max-width: 480px) {
  .page-top__link::before {
    content: none;
  }
}

.gs-main-visual__wrap {
  background-image: url(/hotel/SE/garden-suite/assets/img/se_gs_top_background.jpg);
  background-repeat: no-repeat;
  padding-top: 15px;
  position: relative;
  z-index: 1;
  height: 930px;
}

@media only screen and (max-width: 1024px) {
  .gs-main-visual__wrap {
    height: 880px;
  }
}

@media only screen and (max-width: 768px) {
  .gs-main-visual__wrap {
    height: 66vw;
  }
}

@media only screen and (max-width: 480px) {
  .gs-main-visual__wrap {
    height: 75vw;
  }
}

@media only screen and (max-width: 420px) {
  .gs-main-visual__wrap {
    height: 78vw;
  }
}

.gs-main-visual__wrap:before {
  content: "";
  position: absolute;
  background-image: url(/hotel/SE/garden-suite/assets/img/se_leaf_background.svg);
  background-repeat: repeat;
  max-width: 1920px;
  width: 100%;
  height: 100%;
  top: 0px;
  z-index: -1;
}

.gs-main-visual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding-left: 30px;
}

@media only screen and (max-width: 768px) {
  .gs-main-visual {
    padding-left: 20px;
  }
}

@media only screen and (max-width: 480px) {
  .gs-main-visual {
    padding-left: 15px;
  }
}

.gs-main-visual__left {
  max-width: 157px;
  width: 100%;
  margin-right: 45px;
  margin-top: calc((23 / 1920) *100%);
}

@media only screen and (max-width: 768px) {
  .gs-main-visual__left {
    max-width: 94px;
    margin-right: 20px;
  }
}

@media only screen and (max-width: 480px) {
  .gs-main-visual__left {
    max-width: 45px;
    margin-right: 15px;
  }
}

.gs-main-visual__right {
  width: 100%;
}

.gs-main-visual__right__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 768px) {
  .gs-main-visual__right__header {
    padding-right: 20px;
  }
}

@media only screen and (max-width: 420px) {
  .gs-main-visual__right__header {
    display: block;
  }
}

.gs-main-visual__right__img {
  background-image: url(/hotel/SE/garden-suite/assets/img/se_gs_top_main.jpg);
  width: 100%;
  height: 800px;
  max-width: 1673px;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .gs-main-visual__right__img {
    height: 56vw;
    background-size: 150%;
  }
}

@media only screen and (max-width: 480px) {
  .gs-main-visual__right__img {
    height: 61vw;
  }
}

.gs-main-visual__right__img h2 {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 8.56%;
}

@media only screen and (max-width: 1024px) {
  .gs-main-visual__right__img h2 {
    width: 48vw;
  }
}

@media only screen and (max-width: 768px) {
  .gs-main-visual__right__img h2 {
    max-width: 400px;
    width: 48vw;
  }
}

@media only screen and (max-width: 480px) {
  .gs-main-visual__right__img h2 {
    max-width: 214px;
    right: 12%;
  }
}

@media only screen and (max-width: 768px) {
  .gs-main-visual__right__img h2 img {
    width: 52vw;
  }
}

.gs-main-visual__right p {
  font-size: 20px;
  font-size: 2rem;
}

@media only screen and (max-width: 1024px) {
  .gs-main-visual__right p {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 768px) {
  .gs-main-visual__right p {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.gs-main-visual img {
  width: 100%;
}

.gs-main-visual .gs-tel {
  font-size: 40px;
  font-size: 4rem;
}

@media only screen and (max-width: 1024px) {
  .gs-main-visual .gs-tel {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

@media only screen and (max-width: 768px) {
  .gs-main-visual .gs-tel {
    font-size: 20px;
    font-size: 2rem;
  }
}

.gs-main-visual .gs-tel span {
  font-size: 20px;
  font-size: 2rem;
  margin-right: 8px;
}

@media only screen and (max-width: 768px) {
  .gs-main-visual .gs-tel span {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.show-top {
  opacity: 1;
  visibility: visible;
}

.gs-introduction__wrap {
  margin-top: calc((80 / 1920) *100%);
}

.gs-introduction__wrap h3 {
  max-width: 517px;
  position: relative;
  padding-bottom: 40px;
}

.gs-introduction__wrap h3:before {
  position: absolute;
  content: "ガーデンスイート";
  bottom: 0;
  font-size: 20px;
  font-size: 2rem;
}

@media only screen and (max-width: 768px) {
  .gs-introduction__wrap h3 {
    max-width: 220px;
  }
}

.gs-introduction__wrap .gs-introduction__text01 {
  margin-top: calc((51 / 600) *100%);
}

@media only screen and (max-width: 768px) {
  .gs-introduction__wrap .gs-introduction__text01 {
    margin-top: calc((20 / 708) *100%);
  }
}

.gs-introduction__wrap .gs-introduction__text02 {
  margin-top: calc((46 / 600) *100%);
}

@media only screen and (max-width: 768px) {
  .gs-introduction__wrap .gs-introduction__text02 {
    margin-top: calc((15 / 708) *100%);
  }
}

.gs-introduction__wrap .gs__flex__left {
  margin-right: calc((120 / 1200) *100%);
}

@media only screen and (max-width: 1024px) {
  .gs-introduction__wrap .gs__flex__left {
    margin-right: calc((80 / 964) *100%);
  }
}

.gs-introduction__wrap .gs__flex__left img {
  min-width: 480px;
}

@media only screen and (max-width: 1024px) {
  .gs-introduction__wrap .gs__flex__left img {
    min-width: 380px;
  }
}

@media only screen and (max-width: 480px) {
  .gs-introduction__wrap .gs__flex__left img {
    min-width: auto;
  }
}

@media only screen and (max-width: 768px) {
  .gs-introduction__wrap .gs__flex__left {
    margin-right: 0;
  }
}

.gs-introduction__wrap .gs__flex__right {
  max-width: 600px;
  margin-top: 70px;
}

@media only screen and (max-width: 768px) {
  .gs-introduction__wrap .gs__flex__right {
    max-width: none;
    margin-top: 30px;
  }
}

.gs-introduction__wrap .gs__flex__right p {
  line-height: 1.7;
  font-size: 20px;
  font-size: 2rem;
}

@media only screen and (max-width: 480px) {
  .gs-introduction__wrap .gs__flex__right p {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.gs-introduction__wrap .wide-img {
  margin-top: 3.125%;
  background-image: url(/hotel/SE/garden-suite/assets/img/se_gs_decoration_01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  max-width: 1920px;
  height: 320px;
}

@media only screen and (max-width: 768px) {
  .gs-introduction__wrap .wide-img {
    margin-top: 60px;
    background-image: url(/hotel/SE/garden-suite/assets/img/se_gs_decoration_tab_01.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: calc((320 / 768) * 100%);
    height: auto;
  }
}

@media only screen and (max-width: 480px) {
  .gs-introduction__wrap .wide-img {
    margin-top: 30px;
  }
}

.gs-introduction__room-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 768px) {
  .gs-introduction__room-list ul {
    display: block;
  }
}

.gs-introduction__room-list ul li {
  max-width: 380px;
  width: calc((100% - 60px) / 3);
  margin-right: 30px;
  margin-top: 5%;
}

.gs-introduction__room-list ul li:last-child {
  margin-right: 0;
}

.gs-introduction__room-list ul li img {
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .gs-introduction__room-list ul li {
    width: 100%;
    max-width: none;
  }
}

.room-list__name {
  font-size: 24px;
  font-size: 2.4rem;
  color: #4CC6A1;
  font-weight: bold;
  margin: 10px 0;
}

@media only screen and (max-width: 480px) {
  .room-list__name {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 0;
  }
}

.gs-introduction-outline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 6.66667%;
}

@media only screen and (max-width: 768px) {
  .gs-introduction-outline {
    display: block;
  }
}

.gs-introduction-outline__left {
  max-width: 299px;
  margin-right: 60px;
}

@media only screen and (max-width: 768px) {
  .gs-introduction-outline__left {
    margin: 0 auto;
  }
}

.gs-introduction-outline__right {
  max-width: 584px;
}

@media only screen and (max-width: 768px) {
  .gs-introduction-outline__right {
    margin: 0 auto;
  }
}

.gs-introduction-outline__right p {
  font-size: 24px;
  font-size: 2.4rem;
  color: #606060;
}

@media only screen and (max-width: 768px) {
  .gs-introduction-outline__right p {
    display: none;
  }
}

.gs-introduction-outline table {
  margin-top: 20px;
}

.gs-introduction-outline table tr:first-child {
  border-top: 2px solid #4CC6A1;
}

.gs-introduction-outline table tr:last-child {
  border-bottom: 2px solid #4CC6A1;
}

.gs-introduction-outline table th {
  width: 170px;
  background-color: #EFFCF5;
  border-bottom: 1px solid #4CC6A1;
  color: #4CC6A1;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 5px 14px;
  vertical-align: middle;
}

@media only screen and (max-width: 768px) {
  .gs-introduction-outline table th {
    width: 90px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.gs-introduction-outline table td {
  border-bottom: 1px solid #A5A5A5;
  vertical-align: middle;
  padding: 0 18px;
}

.gs-introduction-outline a {
  display: block;
  max-width: 225px;
  width: 100%;
  background-color: #70C64C;
  text-align: center;
  border-radius: 4px;
  margin-top: 40px;
  color: #ffffff;
  padding: 6px 0;
  font-size: 20px;
  font-size: 2rem;
}

@media only screen and (max-width: 768px) {
  .gs-introduction-outline a {
    display: none;
  }
}

.gs-example__wrap {
  background-image: url(/hotel/SE/garden-suite/assets/img/se_gs_top_background.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 45px;
  position: relative;
  z-index: 1;
}

.gs-example__wrap .total {
  font-size: 16px;
  font-size: 1.6rem;
}

.gs-example__wrap .total span {
  font-size: 32px;
  font-size: 3.2rem;
}

@media only screen and (max-width: 480px) {
  .gs-example__wrap .total span {
    font-size: 20px;
    font-size: 2rem;
  }
}

.gs-example__wrap .hd-wrap {
  max-width: 1200px;
  margin: 0 auto 28px;
}

.gs-example__wrap h3 {
  position: relative;
  display: inline-block;
  padding-right: 210px;
}

@media only screen and (max-width: 480px) {
  .gs-example__wrap h3 {
    padding-right: 0;
    padding-bottom: 30px;
  }
}

.gs-example__wrap h3:before {
  position: absolute;
  content: "パーティーご利用例";
  right: 0;
  top: 50%;
  font-size: 20px;
  font-size: 2rem;
}

@media only screen and (max-width: 480px) {
  .gs-example__wrap h3:before {
    bottom: 0;
    left: 0;
    top: auto;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.gs-example__wrap h3 img {
  max-width: 343px;
}

@media only screen and (max-width: 768px) {
  .gs-example__wrap h3 img {
    max-width: 171px;
  }
}

.gs-example__wrap:before {
  content: "";
  position: absolute;
  background-image: url(/hotel/SE/garden-suite/assets/img/se_leaf_background.svg);
  background-repeat: repeat;
  max-width: 1920px;
  width: 100%;
  height: 100%;
  top: 0px;
  z-index: -1;
}

.gs-example__plan__wrap {
  max-width: 1500px;
  padding-bottom: 7.8125%;
}

.gs-example__plan__wrap table {
  max-width: 1200px;
  margin-left: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}

.gs-example__plan__wrap table th {
  text-align: center;
  color: #4CC6A1;
  font-weight: bold;
  border-bottom: 2px solid #4CC6A1;
  border-right: 2px solid #4CC6A1;
  padding: 6px 0;
}

.gs-example__plan__wrap table th:last-child {
  border-right: none;
}

.gs-example__plan__wrap table td {
  text-align: center;
  border-bottom: 1px solid #A5A5A5;
  border-right: 2px solid #4CC6A1;
  padding: 5px;
  vertical-align: middle;
}

.gs-example__plan__wrap table td:last-child {
  border-right: none;
}

.gs-example__plan__wrap table td:nth-child(1) {
  width: 881px;
}

@media only screen and (max-width: 480px) {
  .gs-example__plan__wrap table td:nth-child(1) {
    width: 365px;
  }
}

.gs-example__plan__wrap table td:nth-child(2) {
  width: 165px;
}

.gs-example__plan__wrap table td:nth-child(3) {
  width: 154px;
}

.gs-example__plan__wrap table tr:last-child {
  border-bottom: 2px solid #4CC6A1;
}

.gs-example__plan__wrap table .price-table__main-head th {
  color: #ffffff;
  background-color: #4CC6A1;
  text-align: left;
  padding: 4px 0 4px 13px;
  font-weight: bold;
  padding: 10px 5px;
}

.gs-example__plan__wrap table .text-left {
  text-align: left;
}

.gs-example__plan__wrap .reverse {
  margin-right: auto;
  margin-left: 0;
}

.gs-example-table__wrap {
  max-width: 1200px;
}

.gs-example__plan__wrap--reverse {
  margin-left: auto;
}

.gs-example__plan-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gs-example__plan-box__left {
  max-width: 1000px;
  width: 100%;
}

.gs-example__plan-box__right {
  background-color: #ffffff;
  padding: 56px;
  margin-left: -100px;
  z-index: 1;
  width: 50%;
}

@media only screen and (max-width: 1024px) {
  .gs-example__plan-box__right {
    margin-left: 0;
    width: auto;
  }
}

@media only screen and (max-width: 768px) {
  .gs-example__plan-box__right {
    padding: 18px;
  }
}

@media only screen and (max-width: 1024px) {
  .gs-example__plan-box {
    display: block;
  }
}

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

.gs-example__plan-box--reverse .gs-example__plan-box__right {
  margin-right: -100px;
  margin-left: 0;
}

@media only screen and (max-width: 1024px) {
  .gs-example__plan-box--reverse .gs-example__plan-box__right {
    margin-right: 0;
  }
}

.gs-example__plan-price__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  white-space: nowrap;
}

@media only screen and (max-width: 600px) {
  .gs-example__plan-price__wrap {
    display: block;
  }
}

.gs-example__plan-name {
  font-size: 30px;
  font-size: 3rem;
  color: #4CC6A1;
  font-weight: 700;
}

@media only screen and (max-width: 480px) {
  .gs-example__plan-name {
    font-size: 20px;
    font-size: 2rem;
  }
}

.gs-example__plan-price {
  font-size: 30px;
  font-size: 3rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 480px) {
  .gs-example__plan-price {
    font-size: 27px;
    font-size: 2.7rem;
  }
}

.gs-example__plan-price .tax {
  font-size: 16px;
  font-size: 1.6rem;
}

.gs-example__plan .people {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  width: 120px;
  color: #ffffff;
  background-color: #4CC6A1;
  margin-right: 10px;
  padding: 5px 10px;
  text-align: center;
}

@media only screen and (max-width: 480px) {
  .gs-example__plan .people {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.gs-news__wrap {
  background-color: #EFFCF5;
  padding: 70px 0 40px;
}

@media only screen and (max-width: 480px) {
  .gs-news__wrap {
    padding: 17px 0 10px;
  }
}

.gs-news__wrap h3 {
  position: relative;
  text-align: center;
  padding-bottom: 40px;
  margin-bottom: 50px;
}

@media only screen and (max-width: 480px) {
  .gs-news__wrap h3 {
    margin-bottom: 30px;
    text-align: left;
  }
}

.gs-news__wrap h3::before {
  position: absolute;
  content: "お知らせ";
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  font-size: 20px;
  font-size: 2rem;
}

@media only screen and (max-width: 480px) {
  .gs-news__wrap h3:before {
    bottom: 0;
    left: 0;
    top: auto;
    -webkit-transform: none;
            transform: none;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.gs-news__wrap h3 img {
  max-width: 303px;
}

@media only screen and (max-width: 768px) {
  .gs-news__wrap h3 img {
    max-width: 151px;
  }
}

.gs-news__wrap .gs-content {
  max-width: 860px;
}

.gs-news__wrap #topBlogWrap .left {
  max-width: 860px;
  width: 100%;
}

.gs-news__wrap #topBlogWrap .left img {
  width: 100%;
  max-width: 860px;
  height: calc(511vw * 100 /860);
  max-height: 511px;
}

.gs-news__wrap #topBlogWrap .left .flex-control-nav {
  text-align: center;
}

.gs-news__wrap #topBlogWrap .ttl a {
  color: #4CC6A1;
}

.gs-news__wrap #topBlogWrap .slick-prev, .gs-news__wrap #topBlogWrap .slick-next {
  display: none !important;
}

.gs-news__wrap #topBlogWrap .slick-dots li button:before {
  font-size: 30px;
  color: #1e1616;
}

.gs-news__wrap #topBlogWrap .slick-dots li.slick-active button:before {
  font-size: 30px;
  color: #4CC6A1;
}

.gs-faq__wrap {
  padding: 78px 0 96px;
}

@media only screen and (max-width: 480px) {
  .gs-faq__wrap {
    padding: 19px 0 24px;
  }
}

.gs-faq__wrap h3 {
  position: relative;
  padding-right: 180px;
  display: inline-block;
}

@media only screen and (max-width: 480px) {
  .gs-faq__wrap h3 {
    padding-right: 0;
    padding-bottom: 50px;
  }
}

.gs-faq__wrap h3::before {
  position: absolute;
  content: "よくあるご質問";
  right: 0;
  top: 50%;
  font-size: 20px;
  font-size: 2rem;
}

@media only screen and (max-width: 480px) {
  .gs-faq__wrap h3:before {
    bottom: 0;
    left: 0;
    top: auto;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.gs-faq__wrap h3 img {
  max-width: 243px;
}

@media only screen and (max-width: 768px) {
  .gs-faq__wrap h3 img {
    max-width: 123px;
  }
}

.gs-faq__wrap .gs-faq__list {
  border-top: 1px solid #4CC6A1;
  margin-top: 52px;
}

@media only screen and (max-width: 480px) {
  .gs-faq__wrap .gs-faq__list {
    margin-top: 16px;
  }
}

.gs-faq__wrap .gs-faq__list dl {
  border-bottom: 1px solid #4CC6A1;
  padding-bottom: 20px;
  cursor: pointer;
}

.gs-faq__wrap .gs-faq__list dl dt {
  padding-top: 27px;
  padding-right: 50px;
  position: relative;
  font-size: 20px;
  font-size: 2rem;
}

@media only screen and (max-width: 768px) {
  .gs-faq__wrap .gs-faq__list dl dt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.gs-faq__wrap .gs-faq__list dl dt:before {
  position: absolute;
  content: "";
  width: 30px;
  height: 2px;
  background-color: #707070;
  top: 65%;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.gs-faq__wrap .gs-faq__list dl dt:after {
  position: absolute;
  content: "";
  width: 30px;
  height: 2px;
  background-color: #707070;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 65%;
  right: 0;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.gs-faq__wrap .gs-faq__list dl dd {
  padding-top: 45px;
}

@media only screen and (max-width: 480px) {
  .gs-faq__wrap .gs-faq__list dl dd {
    font-size: 15px;
    font-size: 1.5rem;
    padding-top: 17px;
  }
}

.gs-faq__wrap .gs-faq__list .open:after {
  -webkit-transform: rotate(540deg);
          transform: rotate(540deg);
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.qa .equipment {
  display: block;
}

.qa .equipment:first-child {
  margin-bottom: 5px;
}

.gs-contact__wrap {
  padding-top: 70px;
  background-image: url(/hotel/SE/garden-suite/assets/img/se_gs_top_background.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 45px;
  position: relative;
  z-index: 1;
}

.gs-contact__wrap h3 {
  text-align: center;
}

.gs-contact__wrap h3 img {
  max-width: 556px;
}

@media only screen and (max-width: 768px) {
  .gs-contact__wrap h3 img {
    max-width: 278px;
  }
}

.gs-contact__wrap .gs-content {
  max-width: 680px;
  margin-bottom: 60px;
}

.gs-contact__wrap:before {
  content: "";
  position: absolute;
  background-image: url(/hotel/SE/garden-suite/assets/img/se_leaf_background.svg);
  background-repeat: repeat;
  max-width: 1920px;
  width: 100%;
  height: 100%;
  top: 0px;
  z-index: -1;
}

.gs-contact__wrap p {
  text-align: center;
}

.gs-contact__wrap .contact-btn {
  display: block;
  max-width: 460px;
  width: 100%;
  background-color: #70C64C;
  text-align: center;
  border-radius: 4px;
  color: #ffffff;
  padding: 15px 10px;
  margin: 40px auto 0;
  font-size: 20px;
  font-size: 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.gs-contact__wrap .contact-btn span {
  position: relative;
  padding-left: 25px;
  display: inline-block;
}

.gs-contact__wrap .contact-btn span::before {
  content: "";
  position: absolute;
  background-image: url(/hotel/SE/garden-suite/assets/img/se_mail.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 18px;
  height: 12px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media only screen and (max-width: 480px) {
  .gs-contact__wrap .contact-btn {
    max-width: 360px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.gs-contact__wrap .wide-img {
  margin-top: 3.125%;
  background-image: url(/hotel/SE/garden-suite/assets/img/se_gs_decoration_02.jpg);
  background-repeat: no-repeat;
  background-position: center;
  max-width: 1920px;
  height: 320px;
}

@media only screen and (max-width: 768px) {
  .gs-contact__wrap .wide-img {
    margin-top: 60px;
    background-image: url(/hotel/SE/garden-suite/assets/img/se_gs_decoration_tab_02.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: calc((320 / 768) * 100%);
    height: auto;
  }
}

@media only screen and (max-width: 480px) {
  .gs-contact__wrap .wide-img {
    margin-top: 30px;
  }
}

.gs-content--ja {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 26px;
  margin-top: 20px;
}

.gs-content--ja::before {
  position: absolute;
  content: "";
  background-color: #4CC6A1;
  width: 80px;
  height: 2px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.gs-content-text__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 768px) {
  .gs-content-text__wrap {
    display: block;
  }
}

.gs-content-text__wrap:nth-child(1) {
  width: 319px;
}

@media only screen and (max-width: 768px) {
  .gs-content-text__wrap:nth-child(1) {
    width: auto;
  }
}

@media only screen and (max-width: 1024px) {
  .gs-content-text__wrap .gs-tel {
    font-size: 40px;
    font-size: 4rem;
  }
}

@media only screen and (max-width: 480px) {
  .gs-content-text__wrap .gs-tel {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.gs-reserve__wrap {
  padding: 60px 0 80px;
}

@media only screen and (max-width: 480px) {
  .gs-reserve__wrap {
    padding: 15px 0 20px;
  }
}

.gs-reserve__wrap h3 {
  position: relative;
  display: inline-block;
  padding-right: 150px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 480px) {
  .gs-reserve__wrap h3 {
    padding-right: 0;
    padding-bottom: 40px;
  }
}

.gs-reserve__wrap h3::before {
  position: absolute;
  content: "ご宿泊プラン";
  right: 0;
  top: 50%;
  font-size: 20px;
  font-size: 2rem;
}

@media only screen and (max-width: 480px) {
  .gs-reserve__wrap h3:before {
    bottom: 0;
    left: 0;
    top: auto;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.gs-reserve__wrap h3 img {
  max-width: 247px;
}

@media only screen and (max-width: 768px) {
  .gs-reserve__wrap h3 img {
    max-width: 123px;
  }
}

.gs-reserve__wrap .gs__flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media only screen and (max-width: 768px) {
  .gs-reserve__wrap .gs__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.gs-reserve__wrap .gs__flex__right {
  max-width: 600px;
  margin-right: calc((120 / 1200) *100%);
}

@media only screen and (max-width: 1024px) {
  .gs-reserve__wrap .gs__flex__right {
    margin-right: calc((80 / 964) *100%);
  }
}

@media only screen and (max-width: 480px) {
  .gs-reserve__wrap .gs__flex__right {
    margin-right: 0;
  }
}

.gs-reserve__wrap .gs__flex__right a {
  display: block;
  max-width: 300px;
  width: 100%;
  background-color: #08533C;
  text-align: center;
  border-radius: 6px;
  color: #ffffff;
  padding: 6px 0;
  font-weight: bold;
  margin-top: 52px;
  font-size: 24px;
  font-size: 2.4rem;
}

@media only screen and (max-width: 480px) {
  .gs-reserve__wrap .gs__flex__right a {
    margin-top: 13px;
  }
}

.gs-reserve__wrap .gs__flex__left img {
  min-width: 480px;
}

@media only screen and (max-width: 1024px) {
  .gs-reserve__wrap .gs__flex__left img {
    min-width: 380px;
  }
}

@media only screen and (max-width: 768px) {
  .gs-reserve__wrap .gs__flex__left img {
    margin-top: 60px;
  }
}

@media only screen and (max-width: 480px) {
  .gs-reserve__wrap .gs__flex__left img {
    margin-top: 15px;
    min-width: auto;
  }
}

.gs-gallery__wrap {
  padding-bottom: 60px;
}

@media only screen and (max-width: 480px) {
  .gs-gallery__wrap {
    padding-bottom: 15px;
  }
}

.gs-gallery__wrap h3 {
  text-align: center;
  position: relative;
  padding-bottom: 40px;
}

@media only screen and (max-width: 480px) {
  .gs-gallery__wrap h3 {
    padding-right: 0;
    padding-bottom: 30px;
    text-align: left;
  }
}

.gs-gallery__wrap h3::before {
  position: absolute;
  content: "ギャラリー";
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  font-size: 20px;
  font-size: 2rem;
}

@media only screen and (max-width: 480px) {
  .gs-gallery__wrap h3:before {
    bottom: 0;
    left: 0;
    top: auto;
    -webkit-transform: none;
            transform: none;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.gs-gallery__wrap h3 img {
  max-width: 414px;
}

@media only screen and (max-width: 768px) {
  .gs-gallery__wrap h3 img {
    max-width: 160px;
  }
}

.gs-gallery-img__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
}

@media only screen and (max-width: 768px) {
  .gs-gallery-img__wrap {
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  .gs-gallery-img__wrap {
    margin-top: 12px;
  }
}

.gs-gallery-img__wrap p {
  width: calc((100% - 12px) /2);
  margin-right: 12px;
}

.gs-gallery-img__wrap p:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 768px) {
  .gs-gallery-img__wrap p {
    width: 100%;
    margin-right: 0;
  }
  .gs-gallery-img__wrap p:last-child {
    margin-top: 12px;
  }
}

.gs-gallery-video__wrap {
  position: relative;
  padding-top: 56%;
  overflow: hidden;
  margin-top: 20px;
}

.gs-gallery-video__wrap iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.gs-access__wrap {
  background-image: url(/hotel/SE/garden-suite/assets/img/se_gs_top_background.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 45px;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 480px) {
  .gs-access__wrap {
    padding-top: 20px;
  }
}

.gs-access__wrap:before {
  content: "";
  position: absolute;
  background-image: url(/hotel/SE/garden-suite/assets/img/se_leaf_background.svg);
  background-repeat: repeat;
  max-width: 1920px;
  width: 100%;
  height: 100%;
  top: 0px;
  z-index: -1;
}

.gs-access__wrap .gs-content {
  max-width: 835px;
}

.gs-access__wrap .gs-content h3 {
  text-align: center;
  position: relative;
  padding-bottom: 40px;
}

@media only screen and (max-width: 480px) {
  .gs-access__wrap .gs-content h3 {
    padding-right: 0;
    padding-bottom: 30px;
    text-align: left;
  }
}

.gs-access__wrap .gs-content h3::before {
  position: absolute;
  content: "アクセス";
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 20px;
  font-size: 2rem;
}

@media only screen and (max-width: 480px) {
  .gs-access__wrap .gs-content h3:before {
    bottom: 0;
    left: 0;
    top: auto;
    -webkit-transform: none;
            transform: none;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.gs-access__wrap .gs-content h3 img {
  max-width: 328px;
}

@media only screen and (max-width: 768px) {
  .gs-access__wrap .gs-content h3 img {
    max-width: 160px;
  }
}

.gs-access__wrap #gmap {
  margin-top: 70px;
}

.gs-access__detal {
  margin-top: 86px;
}

@media only screen and (max-width: 768px) {
  .gs-access__detal {
    margin-top: 34px;
  }
}

@media only screen and (max-width: 480px) {
  .gs-access__detal {
    margin-top: 21px;
  }
}

.gs-access__detal dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-size: 1.6rem;
}

@media only screen and (max-width: 768px) {
  .gs-access__detal dl {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.gs-access__detal dl:first-child {
  margin-bottom: 55px;
}

.gs-access__detal dl dt {
  width: 64px;
  color: #4CC6A1;
  margin-right: 12px;
}

@media only screen and (max-width: 768px) {
  .gs-access__detal dl dt {
    max-width: 65px;
    width: 100%;
  }
}

@media only screen and (max-width: 480px) {
  .gs-access__detal dl dd {
    width: 100%;
  }
}

footer {
  background-color: #ffffff;
  min-width: auto;
  padding-top: 70px;
  padding-bottom: 70px;
}

@media only screen and (max-width: 480px) {
  footer {
    padding-top: 17px;
    padding-bottom: 60px;
  }
}

footer p {
  text-align: center;
  padding-bottom: 17px;
  max-width: 456px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

footer a {
  display: block;
  -webkit-transition: 0.3;
  transition: 0.3;
}

footer a:hover {
  opacity: 0.8;
  -webkit-transition: 0.3;
  transition: 0.3;
}

footer img {
  max-width: 456px;
  border: 1px solid #4CC6A1;
  padding: 18px;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media only screen and (max-width: 480px) {
  footer img {
    padding-bottom: 17px;
    max-width: 264px;
  }
}

#cboxOverlay {
  background: #3f3f3f;
}

#cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  background: none;
  overflow: visible;
  text-indent: 0;
  width: 70px;
  height: 27px;
  left: 1px;
  border-radius: 11px;
  font-size: 18px;
  background-color: #ffffff;
  content: "close";
  position: absolute;
  top: -30px;
  background-image: none;
}
/*# sourceMappingURL=style.css.map */