@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
/* 単位を取り除く関数 */
/* pxを受け取ってremを返す（初期はスマホ） */
@font-face {
  font-family: "Jost-ExtraLight";
  src: url(/common/font/Jost-ExtraLight.ttf);
}
@font-face {
  font-family: "Jost-Light";
  src: url(/common/font/Jost-Light.ttf);
}
@font-face {
  font-family: "Jost-Medium";
  src: url(/common/font/Jost-Medium.ttf);
}
.sp-only {
  display: none !important;
}

@media screen and (max-width: 799px) {
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.commonheader {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 23px 25px 23px 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 1;
  z-index: 100;
}
.commonheader__vacancy {
  padding: 0.4rem 1rem;
  right: 5rem;
  position: absolute;
  font-size: 1rem;
  color: #fff;
  border: none;
  background-color: #bda67c;
}
.commonheader .header__left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.commonheader .header__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 19px;
}
.commonheader .header__instagram {
  display: block;
}
.commonheader .header__instagram.hide_insta {
  display: none;
}
.commonheader .header__instagram img {
  width: 36px;
}
.commonheader__menutrigger {
  width: 42px;
  aspect-ratio: 1/1;
  display: inline-block;
  border-radius: 90px;
  background-color: #226D82;
  border: 2px solid #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 100;
  cursor: pointer;
  position: relative;
}
.commonheader__menutrigger span {
  position: absolute;
  left: 50%;
  width: 17px;
  height: 2px;
  display: inline-block;
  background-color: #ffffff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.commonheader__menutrigger span:nth-of-type(1) {
  top: 50%;
  -webkit-transform: translate(-50%, calc(-50% - 7px));
          transform: translate(-50%, calc(-50% - 7px));
}
.commonheader__menutrigger span:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.commonheader__menutrigger span:nth-of-type(3) {
  top: 50%;
  -webkit-transform: translate(-50%, calc(-50% + 7px));
          transform: translate(-50%, calc(-50% + 7px));
}
.commonheader__menutrigger.active {
  -webkit-transform: translate(-13px, -15px);
          transform: translate(-13px, -15px);
}
.commonheader__menutrigger.active span:nth-of-type(1) {
  top: calc(50% - 1px);
  -webkit-transform: translateX(-50%) rotate(-315deg);
          transform: translateX(-50%) rotate(-315deg);
}
.commonheader__menutrigger.active span:nth-of-type(2) {
  opacity: 0;
}
.commonheader__menutrigger.active span:nth-of-type(3) {
  top: calc(50% - 1px);
  -webkit-transform: translateX(-50%) rotate(315deg);
          transform: translateX(-50%) rotate(315deg);
}
.commonheader__menutrigger.js-menuWhite span {
  background-color: #fff;
}
.js-changeColor .commonheader__menutrigger.js-menuWhite span {
  background-color: #575757;
}
.commonheader nav {
  background-color: #226D82;
  position: fixed;
  top: 0;
  left: -100%;
  padding: 20px;
  max-height: 100vh;
  width: 100%;
  max-width: 400px;
  overflow-y: scroll;
  -webkit-transition: ease-in-out 0.4s;
  transition: ease-in-out 0.4s;
}
.commonheader nav.active {
  left: 0;
  z-index: 1;
}
.commonheader nav a {
  color: #5c5c5c;
  display: block;
}
.commonheader .nav__inner {
  background-color: #fff;
  border-radius: 15px;
  height: 100%;
  padding: 30px 20px 20px;
  overflow-y: auto;
  overflow-x: hidden;
}
@media screen and (max-width: 800px) {
  .commonheader .nav__inner {
    padding: 30px 20px;
  }
}
.commonheader__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 10px;
}
.commonheader__main li:first-child {
  grid-column: 1/-1;
}
.commonheader__main li:first-child img {
  height: 105px;
}
.commonheader__main li a {
  color: #226D82;
  text-align: center;
  font-size: 12px;
}
.commonheader__main li a:hover {
  opacity: 1;
}
.commonheader__main li a:hover img {
  -webkit-box-shadow: 0 0 16px rgba(93, 145, 164, 0.62);
          box-shadow: 0 0 16px rgba(93, 145, 164, 0.62);
}
.commonheader__main li a img {
  border-radius: 10px;
  -webkit-box-shadow: 0 0 6px rgba(93, 145, 164, 0.34);
          box-shadow: 0 0 6px rgba(93, 145, 164, 0.34);
  max-width: 100%;
  width: 100%;
  height: 88px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  margin-bottom: 5px;
}
.commonheader__sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 10px;
  margin-top: 20px;
}
.commonheader__sub li {
  border-radius: 5px;
  -webkit-box-shadow: 0 0 6px rgba(93, 145, 164, 0.34);
          box-shadow: 0 0 6px rgba(93, 145, 164, 0.34);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.commonheader__sub li:hover {
  -webkit-box-shadow: 0 0 16px rgba(93, 145, 164, 0.62);
          box-shadow: 0 0 16px rgba(93, 145, 164, 0.62);
}
.commonheader__sub li:hover a {
  opacity: 1;
}
.commonheader__sub li a {
  color: #226D82;
  text-align: center;
  font-size: 12px;
  height: 30px;
  line-height: 1.1;
  padding: 8px;
}
.commonheader__other {
  display: grid;
  gap: 5px;
  margin-top: 10px;
}
.commonheader__other li {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.commonheader__other li:hover a {
  -webkit-box-shadow: 0 0 16px rgba(93, 145, 164, 0.62);
          box-shadow: 0 0 16px rgba(93, 145, 164, 0.62);
  border: 1px solid #226D82;
  opacity: 1;
}
.commonheader__other li:first-child:hover a {
  color: #226D82;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 6px rgba(93, 145, 164, 0.34);
          box-shadow: 0 0 6px rgba(93, 145, 164, 0.34);
}
.commonheader__other li:first-child:hover a svg path {
  fill: #226D82;
}
.commonheader__other li:first-child a {
  background-color: #226D82;
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px 8px;
}
.commonheader__other li:first-child a svg {
  width: 12px;
  margin-right: 6px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.commonheader__other li:first-child a span {
  font-size: 10px;
  font-weight: normal;
}
.commonheader__other li a {
  border: 1px solid #226D82;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 6px rgba(93, 145, 164, 0.34);
          box-shadow: 0 0 6px rgba(93, 145, 164, 0.34);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #226D82;
  font-size: 12px;
  height: 30px;
  line-height: 1.1;
  text-align: center;
  padding: 8px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media screen and (max-width: 800px) {
  .commonheader__other {
    gap: 10px;
    margin-top: 13px;
  }
}
.commonheader__menulist {
  width: 100%;
  margin-top: 2rem;
  border-bottom: 1px solid #707070;
}
.commonheader__menulist li {
  padding: 1rem;
  border-top: 1px solid #707070;
}
@media screen and (min-width: 800px) {
  .commonheader__menulist li {
    padding: 0.8rem;
  }
}
.commonheader__airplane {
  display: block;
  padding: 0.8rem;
  width: 100%;
  text-align: center;
  border: 1px solid #707070;
  background-color: inherit;
}
.commonheader__airplane.commonheader__airplane {
  margin-top: 0.6rem;
}
.commonheader__airplane:hover {
  opacity: 0.7;
}
.commonheader__logo {
  width: 10.1538461538rem;
}
@media screen and (min-width: 800px) {
  .commonheader__logo {
    position: relative;
    width: 13.8125rem;
  }
}
.commonheader__logo svg {
  display: block;
  width: 100%;
  fill: #5C5C5C;
}
.commonheader__logo.js-menuWhite svg {
  fill: #fff;
}
.js-changeColor .commonheader__logo.js-menuWhite svg {
  fill: #575757;
}
.commonheader__reserve {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 19px;
  right: 5rem;
}
.commonheader__reserve a {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.commonheader__reserve {
  /*padding-right: 80px;*/
  /*position: absolute;*/
}
.commonheader__vacancy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 3px;
  padding: 0.5rem 1rem;
  font-size: 1.125rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  border: none;
  background-color: #bda67c;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  right: auto;
}
.commonheader__vacancy:hover {
  opacity: 0.7;
}
.commonheader__vacancy:nth-child(1) {
  background-color: #000000;
}
.commonheader__vacancy span {
  display: inline-block;
  width: 25px;
  height: 25px;
}
.commonheader__vacancy span.text-join {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-right: 6px;
  margin-left: 6px;
}
.commonheader__vacancy.single span {
  margin-right: 15px;
}
.commonheader__vacancy .icon-hotel {
  background-image: url("/common/img/icon-hotel.svg");
  margin-right: 4px;
}
.commonheader__vacancy .icon-plane {
  background-image: url("/common/img/icon-plane.svg");
  margin-right: 6px;
}
.commonheader__vacancy br {
  display: none;
}

@media screen and (max-width: 800px) {
  .commonheader {
    padding: 10px 16px 10px 10px;
  }
  .commonheader .header__left {
    gap: 12px;
  }
  .commonheader .header__instagram img {
    width: 30px;
  }
  .commonheader__logo {
    margin: 0;
  }
  .commonheader__menutrigger {
    width: 42px;
  }
  .commonheader__menutrigger span {
    width: 17px;
  }
  .commonheader__menutrigger.active {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .lowerSecondary {
    padding: 88px 2.9230769231rem 0;
  }
}
@media screen and (max-width: 799px) {
  .commonheader__reserve {
    font-size: 0.9rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    height: 40px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .commonheader__vacancy {
    border-radius: 0;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 0.9rem;
    line-height: 1;
  }
  .commonheader__vacancy br {
    display: block;
  }
  .commonheader__vacancy span.text-join {
    margin-right: 4px;
    margin-left: 4px;
  }
}
@media screen and (max-width: 328px) {
  .commonheader__vacancy span:not(.text-join) {
    display: none;
  }
}
.commonfooter .flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -0.5rem 1.4rem;
}
.commonfooter__sitemap {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem 0;
  margin-bottom: 2.5rem;
  font-size: 0.9230769231rem;
}
@media screen and (max-width: 799px) {
  .commonfooter__sitemap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: auto;
  }
}
@media screen and (min-width: 800px) {
  .commonfooter__sitemap {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 0.6rem 0;
  }
}
.commonfooter__sitemap > li {
  width: 100%;
}

.top_main {
  padding-top: 88px;
}

@media screen and (max-width: 799px) {
  .top_main {
    padding-top: 62px;
  }
}