@charset "UTF-8";
/*----- font -----*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
/*----- reset -----*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
  color: #555;
  font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "MS P Gothic", "Osaka", "Hiragino Kaku Gothic Pro", Verdana, Arial, Helvetica, sans-serif;
  -webkit-text-size-adjust: none;
}

ol, ul {
  list-style: none;
}

:focus {
  outline: 0;
}

img {
  max-width: 100%;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*----- common -----*/
body {
  font-family: "Noto Serif JP", serif;
  color: #4a4a4a;
  overflow-x: hidden;
  display: none;
}
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
}
body.fadeout::after {
  opacity: 1;
}

/* for CMS */
body:has(#wrapper) {
  display: block;
}

body:has(#wrapper)::after {
  position: relative;
  z-index: auto;
  pointer-events: all;
  opacity: 1;
  background: none;
}

a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
a:hover {
  text-decoration: none;
}

.ojf img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* PC時Tel発信無効化 */
@media screen and (min-width: 769px) {
  a[href^=tel] {
    pointer-events: none;
  }
}
/*--- fadein ---*/
/* for CMS */
#wrapper .fadein {
  opacity: 1;
}

.fadein {
  opacity: 0;
  -webkit-transform: translate(0, 60px);
          transform: translate(0, 60px);
  -webkit-transition: all 1s;
  transition: all 1s;
}
.fadein.scrollin {
  opacity: 1 !important;
  -webkit-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important;
}
.fadein_first {
  -webkit-animation-name: fadeIn1s;
          animation-name: fadeIn1s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
  opacity: 0;
}

@-webkit-keyframes fadeIn1s {
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn1s {
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
/*----- wrap -----*/
.wrap {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
}
.wrap_wide {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width:767px) {
  .wrap {
    padding: 0 6vw;
  }
  .wrap_wide {
    padding: 0 6vw;
  }
}

.p {
  font-size: 17px;
}
.pm {
  font-size: 17px;
  line-height: 2;
}
.pm.red {
  color: #d40000;
}
.ps {
  font-size: 14px;
  line-height: 1.75;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .p {
    font-size: 1.6vw;
  }
  .pm {
    font-size: 1.6vw;
  }
  .ps {
    font-size: 1.3vw;
  }
}




@media screen and (max-width:767px) {
  .p {
    font-size: 16px;
  }
  .pm {
    font-size: 16px;
  }
  .ps {
    font-size: 13px;
  }
}

.cen {
  text-align: center;
}
@media screen and (max-width:767px) {
  .cen.spleft {
    text-align: left;
  }
}

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

body.fixed .logo img {
  -webkit-filter: none !important;
          filter: none !important;
}
body.fixed .sp_menu .menu .ul .li a {
  color: #4a4a4a !important;
}
body.fixed .header__btns .sns .icon a img {
  -webkit-filter: none !important;
          filter: none !important;
}

.header {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header.on {
  background: #fff;
}
.header .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header .logo {
  position: relative;
  z-index: 9999;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .logo img {
  width: 145px;
}
.header .catch {
  margin: 57px 0 0 30px;
  font-size: 16px;
  color: #fff;
}
.header .sp_menu {
  position: absolute;
  z-index: 9998;
  top: 0;
  right: 0;
}
.header .sp_menu .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.header .sp_menu .menu .ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 47px;
}
.header .sp_menu .menu .ul .li a {
  display: block;
  padding: 10px 30px;
  color: #4a4a4a;
  font-size: 16px;
}
.header .sp_menu .menu .ul .li a:hover {
  opacity: 0.6;
}
.header__btns {
  width: 210px;
}
.header__btns .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 15px;
  margin: 12px 0 6px;
}
.header__btns .sns .icon {
  width: 25px;
}
.header__btns .sns .icon a:hover {
  opacity: 0.8;
}
.header__btns-contact a {
  display: block;
  padding: 12px;
  background: #348dc8;
  color: #fff;
  font-size: 16px;
  text-align: center;
}
.header__btns-contact a:hover {
  background: #00abd5;
}
.header:has(+ .top) .logo img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.header:has(+ .top) .sp_menu .menu .ul .li a {
  color: #fff;
}
.header:has(+ .top) .spbtn > div {
  background: #fff;
}
.header:has(+ .top) .header__btns .sns .icon a img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.header:has(+ .top).on .logo img {
  -webkit-filter: none;
          filter: none;
}
.header:has(+ .top).on .catch {
  color: #4a4a4a;
}
.header:has(+ .top).on .sp_menu .menu .ul .li a {
  color: #4a4a4a;
}
.header:has(+ .top).on .spbtn > div {
  background: #4a4a4a;
}
.header:has(+ .top).on .header__btns .sns .icon a img {
  -webkit-filter: none;
          filter: none;
}
@media screen and (max-width: 1500px) {
  .header .catch {
    margin: 20px 0 0 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .header {
    height: 8vw;
  }
  .header .logo {
    height: 8vw;
  }
  .header .logo img {
    width: 12vw;
  }
  .header .catch {
    margin: 1.5vw 0 0 2.4vw;
    font-size: 1.5vw;
  }
  .header .sp_menu .menu {
    gap: 2.5vw;
  }
  .header .sp_menu .menu .ul {
    margin-top: 4vw;
  }
  .header .sp_menu .menu .ul .li a {
    padding: 1vw 2.5vw;
    font-size: 1.6vw;
  }
  .header__btns {
    width: 20vw;
  }
  .header__btns .sns {
    gap: 0 1.5vw;
    margin: 1vw 0 0.5vw;
  }
  .header__btns .sns .icon {
    width: 2vw;
  }
  .header__btns-contact a {
    padding: 0.875vw;
    font-size: 1.6vw;
  }
}
@media screen and (max-width:767px) {
  .header {
    height: 60px;
  }
  .header .logo {
    height: 60px;
  }
  .header .logo img {
    width: 90px;
  }
  .header .catch {
    display: none;
  }
  .header .sp_menu {
    background: #fff;
    width: 100%;
    padding: 75px 0 30px;
  }
  .header .sp_menu .menu {
    display: block;
  }
  .header .sp_menu .menu .ul {
    display: block;
    margin: 0 0 30px;
  }
  .header .sp_menu .menu .ul .li a {
    padding: 10px 30px;
    font-size: 16px;
    text-align: center;
  }
  .header__btns {
    margin: 0 auto;
  }
  .header__btns .sns {
    margin: 0 0 20px;
  }
}

/*----- nav -----*/
@media screen and (min-width:768px) {
  .sp_menu {
    display: block !important;
  }
  .spbtn {
    display: none !important;
  }
}
@media screen and (max-width:767px) {
  .spbtn {
    position: absolute;
    z-index: 9999;
    top: 10px;
    right: 6vw;
    display: block;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
  .spbtn > div {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: #4a4a4a;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .spbtn > div:nth-of-type(1) {
    top: 8px;
  }
  .spbtn > div:nth-of-type(3) {
    top: 32px;
  }
  .spbtn.active > div {
    top: 50%;
    -webkit-transform: rotate(37.5deg);
            transform: rotate(37.5deg);
    background: #4a4a4a !important;
  }
  .spbtn.active > div:nth-of-type(2) {
    display: none;
  }
  .spbtn.active > div:nth-of-type(3) {
    top: 50%;
    -webkit-transform: rotate(-37.5deg);
            transform: rotate(-37.5deg);
  }
}
.f-contact {
  padding: 60px 0;
  background: #81cdbf;
  color: #fff;
}
.f-contact .frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px;
}
.f-contact__box {
  width: 510px;
}
.f-contact__box .ttl {
  margin-bottom: 15px;
  font-size: 21px;
  text-align: center;
}
.f-contact__box-inner {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  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;
  height: 80px;
}
.f-contact__box-inner .tel {
  font-size: 27px;
  letter-spacing: 3px;
}
.f-contact__box-inner .tel a {
  color: #fff;
}
.f-contact__box-time {
  font-size: 15px;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .f-contact {
    padding: 5vw 0;
  }
  .f-contact .frame {
    gap: 4vw;
  }
  .f-contact__box {
    width: 45vw;
  }
  .f-contact__box .ttl {
    margin-bottom: 1.5vw;
    font-size: 1.75vw;
  }
  .f-contact__box-inner {
    height: 8vw;
  }
  .f-contact__box-inner .tel {
    font-size: 2.5vw;
    letter-spacing: 0.3vw;
  }
  .f-contact__box-time {
    font-size: 1.4vw;
  }
}
@media screen and (max-width:767px) {
  .f-contact {
    padding: 50px 0;
  }
  .f-contact .frame {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px 30px;
  }
  .f-contact__box {
    width: min(400px, 100%);
  }
  .f-contact__box .ttl {
    margin-bottom: 10px;
    font-size: 19px;
  }
  .f-contact__box-inner {
    height: auto;
    padding: 20px 0;
  }
  .f-contact__box-inner .tel {
    font-size: min(6vw, 24px);
    letter-spacing: 2px;
  }
  .f-contact__box-time {
    font-size: 14px;
  }
}

.footer {
  padding: 70px 0 35px;
}
.footer a {
  color: #4a4a4a;
}
.footer .pagetop {
  float: right;
  width: 53px;
  cursor: pointer;
}
.footer .logo {
  width: 180px;
}
.footer .ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 17px;
}
.footer .ul .li {
  width: 25px;
}
.footer .ul .li a:hover {
  opacity: 0.8;
}
.footer .copyright {
  margin-top: -17px;
  text-align: right;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .footer {
    padding: 6vw 0 3vw;
  }
  .footer .pagetop {
    width: 4vw;
  }
  .footer .logo {
    width: 15vw;
  }
  .footer .ul {
    gap: 1.6vw;
  }
  .footer .ul .li {
    width: 2.2vw;
  }
  .footer .copyright {
    margin-top: -1.6vw;
  }
}
@media screen and (max-width:767px) {
  .footer {
    padding: 50px 0;
  }
  .footer .pagetop {
    width: 40px;
  }
  .footer .logo {
    width: 120px;
  }
  .footer .ul {
    gap: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer .pm.address {
    font-size: min(3.66vw, 16px);
  }
  .footer .copyright {
    margin-top: 30px;
    text-align: center;
  }
}

.m-title__h2 {
  position: relative;
  margin-top: 100px;
  padding: 100px 0 30px;
}
.m-title__h2 .ttl {
  position: relative;
  z-index: 9;
  font-size: 27px;
}
.m-title__h2 .en {
  position: absolute;
  z-index: 0;
  bottom: 0;
  color: #f0f2f7;
  font-size: 120px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  display: inline-block;
  margin: 0;
  padding-left: 10%;
  white-space: nowrap;
  -webkit-animation: flowing 20s linear infinite;
          animation: flowing 20s linear infinite;
}
.m-title__h3 {
  position: relative;
  z-index: 9;
}
.m-title__h3 .en {
  margin-bottom: 5px;
}
.m-title__h3 .ttl {
  font-size: 40px;
  line-height: 1.5;
}
.m-title__h3.cen {
  text-align: center;
}
.m-title__h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.5;
  gap: 0 20px;
  padding: 0 10px 15px;
  border-bottom: 1px solid #4a4a4a;
}
.m-title__h4 .ttl {
  font-size: 25px;
}
.m-title__h4 .subttl {
  font-size: 16px;
}
.m-btn {
  width: 260px;
}
.m-btn.cen {
  margin-left: auto;
  margin-right: auto;
}
.m-btn button,
.m-btn a {
  position: relative;
  width: 100%;
  display: block;
  border: none;
  background: #348dc8;
  color: #fff;
  padding: 15px;
  font-size: 16px;
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
.m-btn button::before, .m-btn button::after,
.m-btn a::before,
.m-btn a::after {
  position: absolute;
  display: block;
  content: "";
  width: 24px;
  height: 1px;
  right: -12px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
.m-btn button::after,
.m-btn a::after {
  top: -4px;
  width: 6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.m-btn button:hover,
.m-btn a:hover {
  background: #00abd5;
}
.m-btn.blue button::before,
.m-btn.blue a::before {
  background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(50%, #fff), color-stop(50%, #348dc8), to(#348dc8));
  background: linear-gradient(90deg, #fff 0%, #fff 50%, #348dc8 50%, #348dc8 100%);
}
.m-btn.blue button::after,
.m-btn.blue a::after {
  background: #348dc8;
}
.m-table {
  width: 100%;
  border-top: 1px solid #71aad0;
}
.m-table.fixed .tr {
  table-layout: fixed;
}
.m-table .tr {
  display: table;
  width: 100%;
  border-left: 1px solid #71aad0;
  border-right: 1px solid #71aad0;
}
.m-table .th,
.m-table .td {
  display: table-cell;
  vertical-align: middle;
  padding: 20px 36px;
  line-height: 1.5;
}
.m-table .th {
  background: #2680bc;
  color: #fff;
}
.m-table .th:nth-of-type(2), .m-table .th:nth-of-type(3), .m-table .th:nth-of-type(4), .m-table .th:nth-of-type(5) {
  border-left: 1px solid #fff;
}
.m-table .th.ubd {
  border-bottom: 1px solid #fff;
}
.m-table .td {
  border-bottom: 1px solid #71aad0;
}
.m-table .td:nth-of-type(2), .m-table .td:nth-of-type(3), .m-table .td:nth-of-type(4), .m-table .td:nth-of-type(5) {
  border-left: 1px solid #71aad0;
}
.m-table .td.white {
  background: #fff;
  color: #4a4a4a;
}
.m-table__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 0;
}
.m-table__flex .tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 20%;
  border-top: 1px solid #71aad0;
  border-left: 1px solid #71aad0;
}
.m-table__flex .tr:last-child {
  border-right: 1px solid #71aad0;
}
.m-table__flex .tr .th,
.m-table__flex .tr .td {
  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;
  width: 100%;
  height: 75px;
  padding: 20px;
  line-height: 1.5;
  text-align: center;
}
.m-table__flex .tr .th {
  background: #2680bc;
  color: #fff;
}
.m-table__flex .tr .td {
  border-bottom: 1px solid #71aad0;
}
.m-table__flex .tr .td.white {
  background: #fff;
  color: #4a4a4a;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .m-title__h2 {
    margin-top: 8vw;
    padding: 8vw 0 2.5vw;
  }
  .m-title__h2 .ttl {
    font-size: 2.4vw;
  }
  .m-title__h2 .en {
    font-size: 9vw;
  }
  .m-title__h3 .en {
    margin-bottom: 0.5vw;
  }
  .m-title__h3 .ttl {
    font-size: 3.25vw;
  }
  .m-title__h4 {
    gap: 0 2vw;
    padding: 0 1vw 1.5vw;
  }
  .m-title__h4 .ttl {
    font-size: 2.2vw;
  }
  .m-title__h4 .subttl {
    font-size: 1.5vw;
  }
  .m-btn {
    width: 25vw;
  }
  .m-btn button,
  .m-btn a {
    padding: 1.5vw;
    font-size: 1.5vw;
  }
  .m-table .th,
  .m-table .td {
    padding: 1.75vw 2.5vw;
  }
  .m-table__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5vw 0;
  }
  .m-table__flex .tr .th,
  .m-table__flex .tr .td {
    height: 7vw;
    padding: 1.75vw;
  }
}
@media screen and (max-width:767px) {
  .m-title__h2 {
    margin-top: 60px;
    padding: 50px 0 30px;
  }
  .m-title__h2 .ttl {
    font-size: 24px;
  }
  .m-title__h2 .en {
    padding-left: 0;
    font-size: 84px;
  }
  .m-title__h3 .ttl {
    font-size: min(7.5vw, 30px);
  }
  .m-title__h3.spleft {
    text-align: left;
  }
  .m-title__h4 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5px 12px;
    padding: 0 0 12px;
  }
  .m-title__h4 .ttl {
    font-size: 18px;
  }
  .m-title__h4 .subttl {
    font-size: 14px;
  }
  .m-btn {
    margin-left: auto;
    margin-right: auto;
  }
  .m-table .th,
  .m-table .td {
    padding: 15px 4vw;
  }
  .m-table__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px 0;
  }
  .m-table__flex.p {
    font-size: min(4vw, 16px);
  }
  .m-table__flex .tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50%;
    border-top: 1px solid #71aad0;
    border-left: 1px solid #71aad0;
  }
  .m-table__flex .tr:nth-of-type(2n) {
    border-right: 1px solid #71aad0;
  }
  .m-table__flex .tr .th,
  .m-table__flex .tr .td {
    padding: 0 2vw;
  }
  .m-table__flex .tr .td {
    border-bottom: 1px solid #71aad0;
  }
}
@media screen and (max-width:479px) {
  .m-title__h4 .subttl {
    width: 100%;
  }
}

@-webkit-keyframes flowing {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-150%);
            transform: translateX(-150%);
  }
}

@keyframes flowing {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-150%);
            transform: translateX(-150%);
  }
}
/* opening */
#opening {
  position: fixed;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  background: #348dc8;
  z-index: 10000;
}
#opening .msg {
  position: absolute;
  top: 0;
  left: 0;
  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: 100%;
  height: 100%;
  font-size: 64px;
  color: #fff;
  line-height: 1.5;
  opacity: 0;
  -webkit-transition: opacity 2s ease;
  transition: opacity 2s ease;
  letter-spacing: 0.1em;
  text-align: center;
}
#opening .msg.final {
  font-size: 72px;
  font-weight: bold;
  text-align: center;
}
#opening #close {
  position: absolute;
  left: 0;
  bottom: 20%;
  width: 100%;
  text-align: center;
  color: #999;
  font-size: 20px;
  cursor: pointer;
}

.top .msg:nth-child(2){
 background-image: url(https://starresort.jp/system_panel/uploads/images/op01.jpg);
}
.top .msg:nth-child(3){
 background-image: url(https://starresort.jp/system_panel/uploads/images/op02.jpg);
}
.top .msg:nth-child(4){
 background-image: url(https://starresort.jp/system_panel/uploads/images/op03.jpg);
}
.top .msg:nth-child(5){
 background-image: url(https://starresort.jp/system_panel/uploads/images/op04.jpg);
}
.top .msg:nth-child(6){
 background-image: url(https://starresort.jp/system_panel/uploads/images/op05.jpg);
}



@media screen and (min-width: 768px) and (max-width: 1260px) {
  #opening .msg {
    font-size: min(6vw, 64px);
  }
  #opening .msg img {
    width: 30vw;
  }
  #opening .msg.final {
    font-size: min(9vw, 72px);
  }
}
@media screen and (max-width:767px) {
  #opening .msg {
    font-size: 6vw;
  }
  #opening .msg img {
    width: min(75%, 375px);
  }
  #opening .msg.final {
    font-size: 10vw;
  }
}
body:has(#wrapper) #opening {
  position: relative;
  height: 1000px;
}
body:has(#wrapper) #opening .msg {
  position: relative;
  height: 150px;
  font-size: 40px;
  opacity: 1;
}
body:has(#wrapper) #opening .msg.final {
  font-size: 50px;
}
body:has(#wrapper) #opening #close {
  bottom: 20px;
}

/* mv */
.top-mv {
  position: relative;
}
.top-mv .catch {
  position: absolute;
  z-index: 9;
  width: 100%;
  top: calc(50% - 25px);
  left: 0;
  font-size: 50px;
  color: #fff;
  text-align: center;
}
.top-mv__slider {
  line-height: 0;
  overflow: hidden;
  z-index: 1;
}
.top-mv__slider .add-animation {
  -webkit-animation: zoomUp 5s linear 0s normal both;
          animation: zoomUp 5s linear 0s normal both;
}
.top-mv__slider .pic img {
  aspect-ratio: 192/90;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .top-mv .catch {
    top: calc(50% - 2vw);
    font-size: 4vw;
  }
  .top-mv__slider .pic img {
    aspect-ratio: 192/90;
  }
}
@media screen and (max-width:767px) {
  .top-mv .catch {
    top: calc(50% - 4vw);
    font-size: min(6.66vw, 30px);
    margin-left: 3vw;
  }
  .top-mv__slider .pic img {
    height: 500px;
  }
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.top-concept {
  position: relative;
  padding: 160px 0 180px;
  color: #fff;
  overflow: hidden;
}
.top-concept .wrap {
  position: relative;
  z-index: 9;
}
.top-concept .inner {
  margin: 60px 0 0 60px;
}
.top-concept .inner .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 45px;
  margin-top: 110px;
}
.top-concept__layer {
  position: absolute;
  z-index: 8;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.top-concept__slide {
  position: absolute;
  top: -20vw;
  left: -5vw;
  width: 120%;
  z-index: 2;
  -webkit-transform: rotate(-55deg);
          transform: rotate(-55deg);
}
.top-concept__slide .slider {
  position: relative;
  height: 20vw;
}
.top-concept__slide .slider .pic img {
  width: 17.5vw;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  aspect-ratio: 13/20;
}
@media screen and (max-width: 1600px) {
  .top-concept {
    padding: 9vw 0 12vw;
  }
  .top-concept__slide {
    top: -15vw;
    left: -4vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .top-concept {
    padding: 12vw 0 14vw;
  }
  .top-concept .inner {
    margin: 4vw 0 0 3vw;
  }
  .top-concept .inner .btns {
    gap: 0 4vw;
    margin-top: 9vw;
  }
  .top-concept__slide {
    top: -10vw;
    left: -10vw;
  }
}
@media screen and (max-width:767px) {
  .top-concept {
    padding: 10vw 0;
  }
  .top-concept .inner {
    margin: 30px 0 0;
  }
  .top-concept .inner .btns {
    gap: 30px;
    margin-top: 30px;
  }
  .top-concept__slide {
    top: 0vw;
    left: -50vw;
    width: 175%;
  }
  .top-concept__slide .slider {
    height: 30vw;
  }
  .top-concept__slide .slider .pic img {
    width: 25vw;
  }
}
@media screen and (max-width:479px) {
  .top-concept__slide {
    top: 10vw;
    left: -48vw;
    width: 200%;
  }
  .top-concept__slide .slider {
    height: 36vw;
  }
  .top-concept__slide .slider .pic img {
    width: 28vw;
  }
}

body:has(#wrapper) .top-concept {
  color: #4a4a4a;
}
body:has(#wrapper) .top-concept__layer {
  display: none;
}
body:has(#wrapper) .top-concept__slide {
  position: relative;
  top: -100px;
  left: 0;
  width: 100%;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
body:has(#wrapper) .top-concept__slide .slider {
  position: relative;
  height: auto;
}
body:has(#wrapper) .top-concept__slide .slider .pic img {
  width: 200px;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.top-facility {
  padding: 100px 0 120px;
  background: #348dc8;
  color: #fff;
}
.top-facility .frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.top-facility .frame .conts {
  width: 55%;
}
.top-facility .frame .conts .links .link {
  width: 520px;
  border-bottom: 1px solid #fff;
}
.top-facility .frame .conts .links .link a {
  position: relative;
  display: block;
  padding: 25px 0;
  color: #fff;
}
.top-facility .frame .conts .links .link a .ttl {
  margin-bottom: 10px;
  font-size: 25px;
}
.top-facility .frame .conts .links .link a .en {
  font-size: 16px;
}
.top-facility .frame .conts .links .link a .arrow {
  position: absolute;
  top: calc(50% - 12.5px);
  right: 30px;
  width: 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.top-facility .frame .conts .links .link a:hover {
  opacity: 0.8;
}
.top-facility .frame .conts .links .link a:hover .arrow {
  right: 20px;
}
.top-facility .frame .pics {
  width: 40%;
  margin-top: -15px;
}
.top-facility .frame .pics img {
  aspect-ratio: 4/5;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .top-facility {
    padding: 8vw 0 9vw;
  }
  .top-facility .frame .conts .links .link {
    width: 45vw;
  }
  .top-facility .frame .conts .links .link a {
    padding: 1.75vw 0;
  }
  .top-facility .frame .conts .links .link a .ttl {
    margin-bottom: 1vw;
    font-size: 2vw;
  }
  .top-facility .frame .conts .links .link a .en {
    font-size: 1.5vw;
  }
  .top-facility .frame .conts .links .link a .arrow {
    top: calc(50% - 1vw);
    right: 2vw;
    width: 2vw;
  }
  .top-facility .frame .conts .links .link a:hover .arrow {
    right: 1vw;
  }
  .top-facility .frame .pics {
    margin-top: 0;
  }
}
@media screen and (max-width:767px) {
  .top-facility {
    padding: 50px 0;
  }
  .top-facility .frame {
    display: block;
  }
  .top-facility .frame .conts {
    width: 100%;
  }
  .top-facility .frame .conts .links .link {
    margin: 0 auto;
    width: min(400px, 100%);
  }
  .top-facility .frame .conts .links .link a {
    padding: 15px 0;
  }
  .top-facility .frame .conts .links .link a .ttl {
    margin-bottom: 6px;
    font-size: 20px;
  }
  .top-facility .frame .conts .links .link a .en {
    font-size: 15px;
  }
  .top-facility .frame .conts .links .link a .arrow {
    top: calc(50% - 10px);
    right: 0;
    width: 20px;
  }
  .top-facility .frame .conts .links .link a:hover .arrow {
    right: 0;
  }
  .top-facility .frame .pics {
    width: min(400px, 100%);
    margin: 30px auto 0;
  }
}

.top-about {
  padding: 120px 0 160px;
}
.top-about .frame {
  margin: 80px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;

}
.top-about .frame .map {
  width: 50%;
  margin-left: calc(50% - 50vw);
  margin-right: 7.5%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.top-about .frame .map iframe {
  width: 100%;
  height: 400px;
}
.top-about .frame .conts {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 42.5%;
}
.top-about .frame .conts .dl > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #4a4a4a;
}
.top-about .frame .conts .dl .dd,
.top-about .frame .conts .dl .dt {
  padding: 25px 30px;
  width: 22%;
  font-size: 16px;
}
.top-about .frame .conts .dl .dd {
  width: 78%;
}
.top-about .frame .conts .dl .dd a {
  color: #4a4a4a;
}
@media screen and (min-width: 768px) and (max-width: 1700px) {
  .top-about .frame .map {
    margin-right: 5%;
  }
  .top-about .frame .conts {
    width: 45%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .top-about {
    padding: 9vw 0 10vw;
  }
  .top-about .frame {
    margin: 6vw 0 0;
  }
  .top-about .frame .map iframe {
    height: 30vw;
  }
  .top-about .frame .conts .dl .dd,
  .top-about .frame .conts .dl .dt {
    padding: 2vw 1vw;
    font-size: 1.5vw;
  }
}
@media screen and (max-width:767px) {
  .top-about {
    padding: 50px 0;
  }
  .top-about .frame {
    margin: 30px 0 0;
    display: block;
  }
  .top-about .frame .map {
    width: 100%;
    margin: 30px 0 0;
  }
  .top-about .frame .map iframe {
    height: 200px;
  }
  .top-about .frame .conts {
    width: 100%;
  }
  .top-about .frame .conts .dl .dd,
  .top-about .frame .conts .dl .dt {
    padding: 20px 0;
    font-size: 15px;
  }
  .top-about .frame .conts .dl .dd .address {
    font-size: min(3.25vw, 15px);
  }
}

/* plan */
.plan-ttl {
  padding: 100px 0 50px;
}
.plan-detail {
  padding: 100px 0;
}
.plan-detail:nth-of-type(2n+1) {
  background: #348dc8;
  color: #fff;
}
.plan-detail:nth-of-type(2n+1) .m-table {
  border-top-color: #fff;
}
.plan-detail:nth-of-type(2n+1) .m-table .tr {
  border-color: #fff;
}
.plan-detail .title {
  margin-bottom: 50px;
  padding: 1px 0 5px 15px;
  border-left: 6px solid #9ec5de;
  font-size: 40px;
  line-height: 1.75;
}
.plan-detail .frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.plan-detail .frame .conts {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 55%;
}
.plan-detail .frame .conts .ttl {
  margin-bottom: 20px;
  font-size: 28px;
  line-height: 1.75;
}
.plan-detail .frame .pics {
  width: 40%;
}
.plan-detail__slider > div:nth-of-type(1) {
  position: relative;
}
.plan-detail__slider > div:nth-of-type(1) .slick-prev, .plan-detail__slider > div:nth-of-type(1) .slick-next {
  position: absolute;
  top: calc(50% - 12px);
  right: -35px;
  width: 25px;
  height: 25px;
  border: none;
  background: url("/system_panel/uploads/images/icon_arrow.png") center no-repeat;
  background-size: cover;
  cursor: pointer;
  text-indent: -9999px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: none;
}
.plan-detail__slider > div:nth-of-type(1) .slick-prev:hover, .plan-detail__slider > div:nth-of-type(1) .slick-next:hover {
  opacity: 0.8;
}
.plan-detail__slider > div:nth-of-type(1) .slick-prev {
  left: -35px;
  right: auto;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.plan-detail__slider > div:nth-of-type(2) {
  margin: 6px -3px 0;
}
.plan-detail__slider > div:nth-of-type(2) .pic {
  margin: 0 3px;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .plan-ttl {
    padding: 8vw 0 4vw;
  }
  .plan-detail {
    padding: 8vw 0;
  }
  .plan-detail .title {
    margin-bottom: 4vw;
    padding: 1px 0 0.5vw 1.5vw;
    font-size: 2.5vw;
  }
  .plan-detail .frame .conts .ttl {
    margin-bottom: 2vw;
    font-size: 2.2vw;
  }
  .plan-detail__slider > div:nth-of-type(1) .slick-prev, .plan-detail__slider > div:nth-of-type(1) .slick-next {
    top: calc(50% - 1.2vw);
    right: -3vw;
    width: 2vw;
    height: 2vw;
  }
  .plan-detail__slider > div:nth-of-type(1) .slick-prev {
    left: -3vw;
    right: auto;
  }
  .plan-detail__slider > div:nth-of-type(2) {
    margin: 0.6vw -0.3vw 0;
  }
  .plan-detail__slider > div:nth-of-type(2) .pic {
    margin: 0 0.3vw;
  }
}
@media screen and (max-width:767px) {
  .plan-ttl {
    padding: 50px 0 25px;
  }
  .plan-detail {
    padding: 50px 0;
  }
  .plan-detail .title {
    margin-bottom: 30px;
    padding: 1px 0 5px 10px;
    font-size: 22px;
  }
  .plan-detail .frame {
    display: block;
  }
  .plan-detail .frame .conts {
    width: 100%;
  }
  .plan-detail .frame .conts .ttl {
    margin-bottom: 15px;
    font-size: 20px;
  }
  .plan-detail .frame .pics {
    margin: 30px auto 0;
    width: min(400px, 100%);
  }
  .plan-detail__slider > div:nth-of-type(1) .slick-prev, .plan-detail__slider > div:nth-of-type(1) .slick-next {
    z-index: 99;
    right: -5vw;
  }
  .plan-detail__slider > div:nth-of-type(1) .slick-prev {
    left: -5vw;
    right: auto;
  }
}

.plan-detail__price-1 .udb {
  border-bottom: 1px solid #fff;
}
.plan-detail__price-1_tbl .tr {
  border-top: 1px solid #fff;
  border-left: none;
}
.plan-detail__price-1_tbl .tr:nth-of-type(5) {
  border-right: 1px solid #fff;
}
.plan-detail__price-1_tbl .tr .th {
  background: #71aad0 !important;
  border-left: 1px solid #fff;
}
.plan-detail__price-1_tbl .tr .td {
  border-left: 1px solid #71aad0;
}
.plan-detail__price-1_tbl .tr .td:first-child {
  border-left: none;
}
.plan-detail__price-3 .name {
  padding-bottom: 15px;
  font-size: 23px;
}
.plan-detail__price-3 .p_box_frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.plan-detail__price-3 .p_box_frame .pic {
  width: 51%;
}
.plan-detail__price-3 .p_box_frame .conts {
  width: 45%;
}
.plan-detail__price-3 .price {
  background: #1f77b1;
  padding: 15px;
  text-align: center;
}
.plan-detail__price-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  text-align: center;
  line-height: 2;
}
.plan-detail__price-4 .p_box {
  width: calc(33.3333333333% - 20px);
}
.plan-detail__price-4 .p_box .name {
  margin-bottom: 10px;
  padding-bottom: 15px;
  border-bottom: 1px solid #4a4a4a;
  font-size: 23px;
}
.plan-detail__price-4 .p_box .pic img {
  aspect-ratio: 17/25;
}
.plan-detail__price-4 .p_box .text {
  font-size: 18px;
}
.plan-detail__other .column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 20px;
}
.plan-detail__other .column__box:nth-of-type(1) {
  width: calc(40% - 10px);
}
.plan-detail__other .column__box:nth-of-type(2) {
  width: calc(60% - 10px);
}
.plan-detail__other-1 .th {
  background: #71aad0;
}
.plan-detail__other-1 .th:nth-of-type(1),
.plan-detail__other-1 .td:nth-of-type(1) {
  width: 20%;
}
.plan-detail__other-fac .th {
  background: #71aad0;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .plan-detail__price-3 .name {
    padding-bottom: 1.5vw;
    font-size: 1.8vw;
  }
  .plan-detail__price-3 .p_box_frame .pic {
    width: 56%;
  }
  .plan-detail__price-3 .p_box_frame .conts {
    width: 40%;
  }
  .plan-detail__price-3 .price {
    padding: 1.5vw;
  }
  .plan-detail__price-4 {
    gap: 2.5vw;
  }
  .plan-detail__price-4 .p_box {
    width: calc(33.3333333333% - 1.6666666667vw);
  }
  .plan-detail__price-4 .p_box .name {
    margin-bottom: 1vw;
    padding-bottom: 1.5vw;
    font-size: 1.75vw;
  }
  .plan-detail__price-4 .p_box .text {
    font-size: 1.7vw;
  }
  .plan-detail__other .column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px 20px;
  }
  .plan-detail__other .column__box:nth-of-type(1) {
    width: calc(40% - 10px);
  }
  .plan-detail__other .column__box:nth-of-type(2) {
    width: calc(60% - 10px);
  }
}
@media screen and (max-width:767px) {
  .plan-detail__price-1_tbl .tr:nth-of-type(2n) {
    border-right: 1px solid #fff;
  }
  .plan-detail__price-1_tbl .tr:nth-of-type(2n+1) {
    border-left: 1px solid #fff;
  }
  .plan-detail__price-1_tbl .tr .th {
    background: #71aad0 !important;
    border-left: 1px solid #fff;
  }
  .plan-detail__price-1_tbl .tr .td {
    border-left: 1px solid #71aad0;
  }
  .plan-detail__price-1_tbl .tr .td:first-child {
    border-left: none;
  }
  .plan-detail__price-3 .name {
    padding-bottom: 10px;
    font-size: 18px;
    line-height: 1.75;
  }
  .plan-detail__price-3 .p_box_frame {
    display: block;
  }
  .plan-detail__price-3 .p_box_frame .pic {
    margin: 0 auto 20px;
    width: min(400px, 100%);
  }
  .plan-detail__price-3 .p_box_frame .conts {
    width: 100%;
  }
  .plan-detail__price-4 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .plan-detail__price-4 .p_box {
    width: min(320px, 100%);
    margin-left: auto;
    margin-right: auto;
  }
  .plan-detail__price-4 .p_box .name {
    font-size: 18px;
  }
  .plan-detail__price-4 .p_box .text {
    font-size: 17px;
  }
  .plan-detail__other .column {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .plan-detail__other .column__box:nth-of-type(1) {
    width: 100%;
  }
  .plan-detail__other .column__box:nth-of-type(2) {
    width: 100%;
  }
  .plan-detail__other-1 .td {
    vertical-align: top;
  }
}

.plan-option {
  padding: 180px 0 0;
}
.plan-option__table-1 .tr {
  width: 25%;
}
.plan-option__table-1 .tr:nth-of-type(4) {
  border-right: 1px solid #71aad0;
}
.plan-option__table-2 {
  width: 25%;
}
.plan-option__table-3 .th {
  width: 25%;
}
.plan-fac {
  padding: 180px 0 0;
}
.plan-fac .ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 48px 24px;
}
.plan-fac .ul .li {
  width: calc(25% - 18px);
}
.plan-fac .ul .li .ttl {
  margin-bottom: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #4a4a4a;
  font-size: 19px;
}
.plan-bbq {
  padding: 180px 0;
}
.plan-bbq .ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 48px 24px;
}
.plan-bbq .ul .li {
  width: calc(25% - 18px);
}
.plan-bbq .ul .li .ttl {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #4a4a4a;
  font-size: 19px;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .plan-option {
    padding: 12vw 0 0;
  }
  .plan-option__table-1 {
    margin-bottom: 1.5vw;
  }
  .plan-fac {
    padding: 12vw 0 0;
  }
  .plan-fac .ul {
    gap: 3vw 2vw;
  }
  .plan-fac .ul .li {
    width: calc(25% - 1.5vw);
  }
  .plan-fac .ul .li .ttl {
    margin-bottom: 1vw;
    padding: 1vw 0;
    font-size: 1.6vw;
  }
  .plan-bbq {
    padding: 12vw 0;
  }
  .plan-bbq .ul {
    gap: 3vw 2vw;
  }
  .plan-bbq .ul .li {
    width: calc(25% - 1.5vw);
  }
  .plan-bbq .ul .li .ttl {
    margin-bottom: 1vw;
    padding: 1vw 0;
    font-size: 1.4vw;
  }
}
@media screen and (max-width:767px) {
  .plan-option {
    padding: 50px 0 0;
  }
  .plan-option__table-1 .tr {
    width: 50%;
  }
  .plan-option__table-2 {
    margin-left: auto;
    margin-right: auto;
    width: min(400px, 100%);
  }
  .plan-option__table-3 .th {
    width: 33.33%;
  }
  .plan-fac, .plan-bbq {
    padding: 50px 0;
  }
  .plan-fac .ul, .plan-bbq .ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 24px 15px;
  }
  .plan-fac .ul .li, .plan-bbq .ul .li {
    width: 282px;
  }
  .plan-fac .ul .li .ttl, .plan-bbq .ul .li .ttl {
    margin-bottom: 10px;
    padding: 10px 0;
    font-size: 17px;
  }
}

/* about */
.about-concept {
  padding: 120px 0 160px;
}
.about-concept .frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.about-concept .frame .conts {
  width: 55%;
}
.about-concept .frame .conts .ttl {
  margin-bottom: 30px;
  font-size: 30px;
  line-height: 1.8;
}
.about-concept .frame .pic {
  width: 40%;
}
.about-concept .frame .pic img {
  aspect-ratio: 6/5;
}
.about-reason {
  padding-top: 100px;
  padding-bottom: 330px;
  background: #348dc8;
  color: #fff;
}
.about-reason .wrap_wide {
  position: relative;
}
.about-reason .wrap_wide .logo {
  position: absolute;
  z-index: 0;
  top: 170px;
  right: -120px;
  width: 695px;
}
.about-reason .frame {
  padding-bottom: 90px;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about-reason__box {
  width: 47.5%;
}
.about-reason__box:nth-of-type(2) {
  position: relative;
  top: 320px;
}
.about-reason__box .pic img {
  aspect-ratio: 17/10;
}
.about-reason__box .tate {
  position: absolute;
  top: 150px;
  left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 10px;
}
.about-reason__box .tate .ttl {
  display: inline-block;
  padding: 20px 10px;
  background: #fff;
  color: #4a4a4a;
  font-size: 30px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.about-reason__box .tate .ttl:nth-of-type(1) {
  position: relative;
  top: -25px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.about-reason__box .inner {
  margin: 15px 0 0 180px;
}
@media screen and (min-width: 768px) and (max-width: 1700px) {
  .about-reason .wrap_wide .logo {
    top: 190px;
    right: -40px;
    width: 600px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .about-concept {
    padding: 9vw 0 10vw;
  }
  .about-concept .frame .conts .ttl {
    margin-bottom: 2.5vw;
    font-size: 2.4vw;
  }
  .about-reason {
    padding-top: 8vw;
    padding-bottom: 28vw;
  }
  .about-reason .wrap_wide .logo {
    top: 16vw;
    width: 50vw;
  }
  .about-reason .frame {
    padding-bottom: 7.5vw;
  }
  .about-reason__box {
    width: 48%;
  }
  .about-reason__box:nth-of-type(2) {
    top: 25vw;
  }
  .about-reason__box .tate {
    top: 12vw;
    left: 2vw;
    gap: 0 1vw;
  }
  .about-reason__box .tate .ttl {
    padding: 1.75vw 1vw;
    font-size: 2.5vw;
  }
  .about-reason__box .tate .ttl:nth-of-type(1) {
    top: -2vw;
  }
  .about-reason__box .inner {
    margin: 1.5vw 0 0 16vw;
  }
}
@media screen and (max-width:767px) {
  .about-concept {
    padding: 50px 0;
  }
  .about-concept .frame {
    display: block;
  }
  .about-concept .frame .conts {
    width: 100%;
  }
  .about-concept .frame .conts .ttl {
    margin-bottom: 20px;
    font-size: 22px;
  }
  .about-concept .frame .pic {
    margin: 30px auto 0;
    width: min(400px, 100%);
  }
  .about-reason {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .about-reason .wrap_wide .logo {
    top: -45px;
    right: 0;
    width: 36vw;
  }
  .about-reason .frame {
    padding-bottom: 0;
    display: block;
  }
  .about-reason__box {
    width: 100%;
    margin-bottom: 40px;
  }
  .about-reason__box:nth-of-type(2) {
    top: 0;
  }
  .about-reason__box .pic {
    max-width: 400px;
    margin: 0 auto;
  }
  .about-reason__box .tate {
    top: 0;
    left: -10px;
    gap: 0 5px;
  }
  .about-reason__box .tate .ttl {
    padding: 7px 5px;
    font-size: 17px;
  }
  .about-reason__box .tate .ttl:nth-of-type(1) {
    top: -20px;
  }
  .about-reason__box .inner {
    margin: 15px 0 0 30px;
  }
}

/* guide */
.guide-atte {
  padding: 120px 0 50px;
}
.guide-atte__h3 {
  padding: 15px 0;
  border-bottom: 1px solid #348dc8;
  color: #348dc8;
  font-size: 30px;
}
.guide-atte__h4 {
  padding: 12px 0;
  border-bottom: 1px dotted #4a4a4a;
  font-size: 23px;
}
.guide-atte__h5 {
  margin-bottom: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #4a4a4a;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.75;
}
.guide-atte__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px 90px;
}
.guide-atte__ul .li {
  width: calc(50% - 45px);
}
.guide-atte__ul .li.other {
  width: 60%;
}
.guide-atte__ttl {
  font-size: 21px;
}
.guide-atte .times .th {
  width: 25%;
}
.guide-atte .frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.guide-atte .frame .conts {
  width: 50%;
}
.guide-atte .frame .stay {
  width: 45%;
}
.guide-info {
  padding: 80px 0 160px;
}
.guide-info__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px 30px;
}
.guide-info__ul .li {
  width: calc(33.3333333333% - 20px);
}
.guide-info__ul .li .ttl {
  padding: 15px 0;
  border-bottom: 1px solid #4a4a4a;
  font-size: 23px;
  line-height: 1.5;
  text-align: center;
}
.guide-info__ul .li .pic {
  margin: 18px 0 15px;
}
.guide-info__ul .li .pic img {
  aspect-ratio: 38/25;
}
.guide-info__ul .li .instagram a {
  color: #00218d;
  text-decoration: underline;
}
.guide-info__ul .li .instagram a:hover {
  opacity: 0.8;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .guide-atte {
    padding: 9vw 0 4vw;
  }
  .guide-atte__h3 {
    padding: 1.33vw 0;
    font-size: 2.5vw;
  }
  .guide-atte__h4 {
    padding: 1.1vw 0;
    font-size: 2vw;
  }
  .guide-atte__h5 {
    margin-bottom: 1vw;
    padding: 1vw 0;
    font-size: 1.7vw;
  }
  .guide-atte__ul {
    gap: 5vw 6vw;
  }
  .guide-atte__ul .li {
    width: calc(50% - 3vw);
  }
  .guide-atte__ul .li.other {
    width: 70%;
  }
  .guide-atte__ttl {
    font-size: 1.8vw;
  }
  .guide-atte .frame .conts {
    width: 47.5%;
  }
  .guide-atte .frame .stay {
    width: 47.5%;
  }
  .guide-info {
    padding: 6vw 0 12vw;
  }
  .guide-info__ul {
    gap: 3vw 3vw;
  }
  .guide-info__ul .li {
    width: calc(33.3333333333% - 2vw);
  }
  .guide-info__ul .li .ttl {
    padding: 1.5vw 0;
    font-size: 2vw;
  }
  .guide-info__ul .li .pic {
    margin: 1.6vw 0 1.4vw;
  }
}
@media screen and (max-width:767px) {
  .guide-atte {
    padding: 50px 0;
  }
  .guide-atte__h3 {
    padding: 12px 0;
    font-size: 22px;
  }
  .guide-atte__h4 {
    padding: 11px 0;
    font-size: 19px;
  }
  .guide-atte__h5 {
    font-size: 17px;
  }
  .guide-atte__ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px;
  }
  .guide-atte__ul .li {
    width: 100%;
  }
  .guide-atte__ul .li.other {
    width: 100%;
  }
  .guide-atte__ttl {
    font-size: 18px;
  }
  .guide-atte .times .th {
    width: 33.33%;
  }
  .guide-atte .frame {
    display: block;
  }
  .guide-atte .frame .conts {
    width: 100%;
    margin-bottom: 30px;
  }
  .guide-atte .frame .stay {
    width: 100%;
  }
  .guide-info {
    padding: 50px 0;
  }
  .guide-info__ul {
    display: block;
  }
  .guide-info__ul .li {
    margin: 0 auto 30px;
    width: min(400px, 100%);
  }
  .guide-info__ul .li .ttl {
    font-size: 20px;
  }
}

/* contact */
.contact-head {
  padding: 80px 0 0;
}
.contact .form_area {
  padding: 70px 0 50px;
}
.contact .form_area .reserve {
  font-size: 21px;
  line-height: 1.75;
}
.contact-tel {
  padding: 50px 0 160px;
}
.contact-tel__box a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #5399c8;
  color: #fff;
  padding: 40px 60px;
  gap: 0 30px;
}
.contact-tel__box a .ttl {
  font-size: 21px;
}
.contact-tel__box a .tel {
  font-size: 27px;
  letter-spacing: 1px;
}
.contact-tel__box a .time {
  font-size: 15px;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .contact-head {
    padding: 7vw 0 0;
  }
  .contact .form_area {
    padding: 6vw 0 4vw;
  }
  .contact .form_area .reserve {
    font-size: 1.9vw;
  }
  .contact-tel {
    padding: 4vw 0 10vw;
  }
  .contact-tel__box a {
    padding: 3vw 4vw;
    gap: 0 2.5vw;
  }
  .contact-tel__box a .ttl {
    font-size: 1.9vw;
  }
  .contact-tel__box a .tel {
    font-size: 2.4vw;
  }
  .contact-tel__box a .time {
    font-size: 1.4vw;
  }
}
@media screen and (max-width:767px) {
  .contact-head {
    padding: 50px 0 0;
  }
  .contact-head .pm br {
    display: none;
  }
  .contact .form_area {
    padding: 50px 0 30px;
  }
  .contact .form_area .reserve {
    font-size: 18px;
  }
  .contact-tel {
    padding: 30px 0 60px;
  }
  .contact-tel__box a {
    display: block;
    padding: 20px 5vw;
    text-align: center;
  }
  .contact-tel__box a .ttl {
    display: none;
  }
  .contact-tel__box a .tel {
    margin: 0 0 15px;
    font-size: 20px;
    letter-spacing: 0;
  }
  .contact-tel__box a .time {
    font-size: 14px;
  }
}

.complete {
  padding: 80px 0 120px;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .complete {
    padding: 6vw 0 9vw;
  }
}
@media screen and (max-width:767px) {
  .complete {
    padding: 50px 0 75px;
  }
}

.u-mt__10 {
  margin-top: 10px;
}
.u-mt__20 {
  margin-top: 20px;
}
.u-mt__30 {
  margin-top: 30px;
}
.u-mt__40 {
  margin-top: 40px;
}
.u-mt__50 {
  margin-top: 50px;
}
.u-mt__60 {
  margin-top: 60px;
}
.u-mt__70 {
  margin-top: 70px;
}
.u-mt__80 {
  margin-top: 80px;
}
.u-mt__90 {
  margin-top: 90px;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .u-mt__10 {
    margin-top: 1vw;
  }
  .u-mt__20 {
    margin-top: 2vw;
  }
  .u-mt__30 {
    margin-top: 2.8vw;
  }
  .u-mt__40 {
    margin-top: 3.6vw;
  }
  .u-mt__50 {
    margin-top: 4.4vw;
  }
  .u-mt__60 {
    margin-top: 5vw;
  }
  .u-mt__70 {
    margin-top: 6vw;
  }
  .u-mt__80 {
    margin-top: 6.75vw;
  }
  .u-mt__90 {
    margin-top: 7.5vw;
  }
}
@media screen and (max-width:767px) {
  .u-mt__10 {
    margin-top: 6px;
  }
  .u-mt__20 {
    margin-top: 12px;
  }
  .u-mt__30 {
    margin-top: 18px;
  }
  .u-mt__40 {
    margin-top: 24px;
  }
  .u-mt__50 {
    margin-top: 30px;
  }
  .u-mt__60 {
    margin-top: 36px;
  }
  .u-mt__70 {
    margin-top: 42px;
  }
  .u-mt__80 {
    margin-top: 48px;
  }
  .u-mt__90 {
    margin-top: 54px;
  }
}

.u-mb__10 {
  margin-bottom: 10px;
}
.u-mb__20 {
  margin-bottom: 20px;
}
.u-mb__30 {
  margin-bottom: 30px;
}
.u-mb__40 {
  margin-bottom: 40px;
}
.u-mb__50 {
  margin-bottom: 50px;
}
.u-mb__60 {
  margin-bottom: 60px;
}
.u-mb__70 {
  margin-bottom: 70px;
}
.u-mb__80 {
  margin-bottom: 80px;
}
.u-mb__90 {
  margin-bottom: 90px;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .u-mb__10 {
    margin-bottom: 1vw;
  }
  .u-mb__20 {
    margin-bottom: 2vw;
  }
  .u-mb__30 {
    margin-bottom: 2.8vw;
  }
  .u-mb__40 {
    margin-bottom: 3.6vw;
  }
  .u-mb__50 {
    margin-bottom: 4.4vw;
  }
  .u-mb__60 {
    margin-bottom: 5vw;
  }
  .u-mb__70 {
    margin-bottom: 6vw;
  }
  .u-mb__80 {
    margin-bottom: 6.75vw;
  }
  .u-mb__90 {
    margin-bottom: 7.5vw;
  }
}
@media screen and (max-width:767px) {
  .u-mb__10 {
    margin-bottom: 6px;
  }
  .u-mb__20 {
    margin-bottom: 12px;
  }
  .u-mb__30 {
    margin-bottom: 18px;
  }
  .u-mb__40 {
    margin-bottom: 24px;
  }
  .u-mb__50 {
    margin-bottom: 30px;
  }
  .u-mb__60 {
    margin-bottom: 36px;
  }
  .u-mb__70 {
    margin-bottom: 42px;
  }
  .u-mb__80 {
    margin-bottom: 48px;
  }
  .u-mb__90 {
    margin-bottom: 54px;
  }
}
/*# sourceMappingURL=style.css.map */


@media screen and (max-width: 768px) {
.top .msg:nth-child(2){
 background-image: url(https://starresort.jp/system_panel/uploads/images/op_sp01.jpg);
  background-position:center;
  background-size: cover;
}
.top .msg:nth-child(3){
 background-image: url(https://starresort.jp/system_panel/uploads/images/op_sp02.jpg);
  background-position:center;
  background-size: cover;
  }
.top .msg:nth-child(4){
 background-image: url(https://starresort.jp/system_panel/uploads/images/op03.jpg);
 }
.top .msg:nth-child(5){
 background-image: url(https://starresort.jp/system_panel/uploads/images/op_sp03.jpg);
  background-position:center;
  background-size: cover; 
  }
.top .msg:nth-child(6){
 background-image: url(https://starresort.jp/system_panel/uploads/images/op_sp05.jpg);
  background-position:center;
  background-size: cover;
  }

}