@charset "UTF-8";
/* 共通 */
html {
  -webkit-overflow-scrolling: touch;
  font-size: 112.5%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
  color: #000;
  background-color: #fff;
  scroll-behavior: smooth;
}

body {
  font-family: YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴシック", "Hiragino Sans", "MS UI Gothic", sans-serif;
  font-weight: 400;
  overflow-x: auto;
  line-height: 2;
}

main {
  overflow-x: hidden;
}

section {
  padding: 4em 0 1em;
}
@media screen and (max-width: 768px) {
  section {
    padding: 2em 0 1em;
  }
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  opacity: 0.8;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

ul,
li {
  list-style: none;
}

h1,
h2 {
  font-family: "Arial", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  color: #009E9F;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: auto;
  -webkit-text-stroke: 2px #009E9F;
}

h2 {
  margin-left: 5%;
  line-height: 1.2;
  margin-bottom: 0.8em;
  font-size: 5vw;
  font-size: min(5vw, 70px);
}
h2 + p {
  margin-left: 10%;
  font-size: clamp(16px, 1.5vw, 20px);
}
@media screen and (max-width: 768px) {
  h2 {
    margin-left: initial;
  }
  h2 + p {
    margin-left: initial;
  }
}

.inner {
  max-width: 1400px;
  margin: 0 auto;
}

.flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .flex {
    display: block;
  }
}

.btn {
  text-align: center;
  padding: 4em 0;
}
.btn a {
  box-shadow: #FFF100 10px 10px;
  color: #009E9F;
  background-color: #fff;
  padding: 1em 4em 1em 1.5em;
  position: relative;
  display: inline-block;
  text-align: center;
  font-weight: 600;
  font-size: clamp(18px, 1.5vw, 21px);
  transition: 0.2s;
}
.btn a img {
  width: 2em;
  vertical-align: top;
  margin-right: 1.5em;
}
.btn a::after {
  content: "";
  display: inline-block;
  border-style: solid;
  border-width: 0.5em 0 0.5em 0.65em;
  border-color: transparent transparent transparent #009E9F;
  display: inline-block;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  right: 1.3em;
  transform: translateY(-50%);
}
.btn a:hover {
  opacity: 1;
  transform: translate(10px, 10px);
  -webkit-transform: translate(10px, 10px);
  -moz-transform: translate(10px, 10px);
  -ms-transform: translate(10px, 10px);
  -o-transform: translate(10px, 10px);
  box-shadow: none;
}
@media screen and (max-width: 480px) {
  .btn a {
    font-size: 1em;
    padding: 0.8em 3.5em 0.8em 1em;
  }
}

.-pc {
  display: block;
}

.-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  h3 {
    font-size: 1.2em;
  }
  h4 {
    font-size: 1.1em;
  }
  .inner {
    padding: 20px;
  }
  .-pc {
    display: none;
  }
  .-sp {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  h2 {
    font-size: 2em;
  }
}
/* header */
header {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  padding-top: 2em;
  padding-right: 12em;
}
header nav {
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
}
header #head_menu ul {
  display: flex;
}
header #head_menu ul li {
  margin-right: 3em;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
header #lang_menu {
  background-color: #009E9F;
  white-space: nowrap;
  word-break: keep-all;
  line-height: 1;
  display: flex;
  align-items: flex-start;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  z-index: 20;
}
header #lang_menu input {
  display: none;
}
header #lang_menu .menu_list {
  width: 12em;
  background-color: #009E9F;
  letter-spacing: 0.1em;
  overflow: hidden;
  padding: 1em;
}
header #lang_menu .menu_list .-pc {
  display: inline;
}
header #lang_menu .menu_list a {
  position: relative;
  float: left;
  margin-top: -100%;
  padding: 0.8em 0.25em;
  width: 100%;
  text-align: center;
  transition: all 0.2s;
  opacity: 0;
  padding-left: 0.5em;
  text-align: center;
}
header #lang_menu .menu_list a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0.6em;
  right: 0;
  margin: 0.3em 0.2em;
  width: 0.5em;
  height: 0.5em;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  opacity: 0;
}
header #lang_menu .menu_list a.current {
  margin-top: 0;
  opacity: 1;
}
header #lang_menu .menu_list a.current::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0.6em;
  right: 0;
  margin: 0.3em 0.2em;
  width: 0.5em;
  height: 0.5em;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  opacity: 1;
}
header #lang_menu .menu_list:hover a {
  margin-top: 0;
  margin-bottom: 0.25em;
  opacity: 1;
}
header #lang_menu .menu_list:hover a::after {
  transform: rotate(135deg);
}
header #lang_menu .menu_list:hover a:hover::after {
  opacity: 1;
}
header #lang_menu .menu_list:hover a.current::before {
  opacity: 0;
}
header #lang_menu #lang_menu_switch:checked ~ .menu_list a {
  margin-top: 0;
  opacity: 1;
}
header #lang_menu #lang_menu_switch:checked ~ .menu_list a.current::after {
  transform: rotate(90deg);
}
header #lang_menu #lang_menu_switch:checked ~ .menu_list::after {
  right: 0;
}
@media screen and (max-width: 1020px) {
  header {
    padding-top: 0.5em;
  }
  header #lang_menu .menu_list {
    padding: 0;
    padding-right: 1em;
  }
}
@media screen and (max-width: 768px) {
  header {
    padding-right: 6em;
  }
  header #head_menu ul li {
    margin-right: 1.5em;
  }
  header #head_menu .-sp {
    display: none;
  }
  header #lang_menu .menu_list {
    width: 6em;
    padding-right: 0.5em;
  }
  header #lang_menu .menu_list .-pc {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  header nav {
    font-size: 0.9em;
  }
  header #head_menu {
    line-height: 1.5;
  }
  header #head_menu ul {
    align-items: center;
  }
  header #head_menu .-sp {
    display: block;
  }
}

/* footer */
footer {
  background-color: #000;
  text-align: center;
}
footer .logo {
  background-color: #fff;
}
footer .logo img {
  max-width: 130px;
  width: 20%;
  vertical-align: middle;
}
footer p {
  padding: 10px;
  color: #fff;
}

/* TOP */
#about,
#reserve {
  background-color: #009E9F;
  color: #fff;
}
#about h2,
#reserve h2 {
  color: #fff;
  -webkit-text-stroke: 2px #fff;
}

.main_visual {
  position: relative;
}
.main_visual > img {
  position: absolute;
  z-index: 1;
  mix-blend-mode: multiply;
}
.main_visual h1 {
  position: absolute;
  z-index: 1;
  max-width: 300px;
  min-width: 180px;
  width: 15%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.main_visual h1 img {
  filter: drop-shadow(0px 3px 10px rgba(255, 255, 255, 0.8));
}
.main_visual .mv_slider img {
  height: 56.25vw;
  -o-object-position: center;
     object-position: center;
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.main_visual .mv_slider.slick-dotted {
  margin-bottom: 0;
}
.main_visual .mv_slider .slick-dots {
  bottom: 5%;
  z-index: 1;
}
.main_visual .mv_slider .slick-dots li button {
  background-color: #fff;
  border: #707070 1px solid;
  border-radius: 50px;
  width: 16px;
  height: 16px;
}
.main_visual .mv_slider .slick-dots li button::before {
  content: none;
}
.main_visual .mv_slider .slick-dots .slick-active button {
  background-color: #009E9F;
  border: #009E9F 1px solid;
}
@media screen and (max-width: 768px) {
  .main_visual .mv_slider img {
    height: 70vh;
  }
}

#about .contents {
  position: relative;
}
#about .contents .map {
  position: absolute;
  width: 60%;
  top: -10%;
  right: -10%;
}
#about .bus13 {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #about .contents .map {
    position: static;
    width: 90%;
    margin: 40px auto 0;
  }
  #about .bus13 {
    width: 100%;
  }
}

#service [class^=service] {
  position: relative;
}
#service [class^=service] .hukidashi {
  position: absolute;
  border-radius: 20px;
  padding: 1.5em 2em;
  color: #fff;
  font-size: clamp(18px, 1.6vw, 22px);
  aspect-ratio: 39/16;
  width: 40vw;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.6;
}
#service [class^=service] .hukidashi strong {
  font-size: min(3vw, 40px);
}
#service [class^=service] .hukidashi::before {
  content: "";
  position: absolute;
  margin: 0;
  top: -1.7em;
  width: 0;
  height: 0;
  border-top: 2.5em solid #009E9F;
  border-left: 1em solid transparent;
  border-right: 1em solid transparent;
  z-index: 0;
}
#service [class^=service] .service_img {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
#service .service01, #service .service02, #service .service03 {
  width: 45%;
}
#service .service01 .hukidashi, #service .service03 .hukidashi {
  background-color: #009E9F;
}
#service .service02 .hukidashi, #service .service04 .hukidashi {
  background-color: #00809F;
}
#service .service02 .hukidashi img, #service .service03 .hukidashi img {
  position: absolute;
  width: 33%;
  right: -13%;
  bottom: -15%;
}
#service .flex:has(.service01) .title {
  width: 50%;
}
#service .flex:has(.service01) .service01 {
  margin-top: 10%;
}
#service .flex:has(.service01) .hukidashi {
  bottom: -30%;
  left: -10%;
}
#service .flex:has(.service01) .hukidashi::before {
  right: 4em;
  transform: rotate(210deg);
}
#service .service02 {
  margin-top: -6%;
}
#service .service02 .hukidashi {
  bottom: -10%;
  right: -60%;
}
#service .service02 .hukidashi::before {
  border-top: 2.5em solid #00809F;
  transform: rotate(155deg);
  left: 1.5em;
}
#service .service03 {
  margin: 9% 0 5% 10%;
}
#service .service03 .hukidashi {
  top: 40%;
  right: -68%;
}
#service .service03 .hukidashi::before {
  transform: rotate(155deg);
  left: 1.5em;
}
#service .service04 .hukidashi {
  position: static;
  width: 95%;
  max-width: 100%;
  aspect-ratio: initial;
  padding: 2em 2em 7.5em 2.5em;
  margin-left: auto;
  margin-right: -5%;
}
#service .service04 .hukidashi::before {
  content: none;
}
#service .service04 .service_slider {
  width: 95%;
  margin-left: auto;
  margin-top: -7em;
  margin-right: calc(-4% - 2.5em);
}
#service .service04 .service_slider li {
  margin: 10px;
}
#service .service04 .service_slider li img {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
#service .service04 .slick-prev,
#service .service04 .slick-next {
  background-color: #009E9F;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  z-index: 2;
  bottom: -28px;
  top: auto;
}
#service .service04 .slick-prev::before,
#service .service04 .slick-next::before {
  content: "";
  width: 14px;
  height: 14px;
  border-left: #fff solid 3px;
  border-bottom: #fff solid 3px;
  display: inline-block;
  border-radius: 0px;
  opacity: 1;
}
#service .service04 .slick-prev {
  left: 3%;
}
#service .service04 .slick-prev::before {
  transform: rotate(45deg);
  margin-left: 5px;
}
#service .service04 .slick-next {
  right: 15%;
}
#service .service04 .slick-next::before {
  transform: rotate(-135deg);
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  #service [class^=service] .hukidashi {
    padding: 1em;
    padding-right: 3em;
    width: auto;
    font-size: clamp(15px, 1.6vw, 18px);
    border-radius: 10px;
  }
  #service [class^=service] .hukidashi strong {
    font-size: max(4vw, 18px);
  }
  #service .service01, #service .service02, #service .service03 {
    width: 85%;
    max-width: 450px;
  }
  #service .flex:has(.service01) .service01 {
    margin-left: auto;
    margin-right: -35px;
  }
  #service .flex:has(.service01) .title {
    width: 100%;
  }
  #service .flex:has(.service01) .hukidashi {
    bottom: -15%;
    left: -20%;
  }
  #service .service02 {
    margin: 15% auto 20% -35px;
  }
  #service .service02 .hukidashi {
    right: -22%;
    bottom: -20%;
  }
  #service .service03 {
    margin: 40px auto 40px 5%;
  }
  #service .service03 .hukidashi {
    right: -25%;
  }
  #service .service03 .hukidashi img {
    right: 5%;
    bottom: -35%;
  }
  #service .service04 .hukidashi {
    padding: 2em 2em 9em 2em;
  }
  #service .service04 .service_slider {
    width: 100%;
    margin-right: calc(-2% - 2em);
  }
}
@media screen and (max-width: 480px) {
  #service .service03 {
    margin-bottom: 8em;
  }
  #service .service03 .hukidashi {
    top: auto;
    bottom: -30%;
    right: -10%;
  }
  #service .service04 .hukidashi {
    margin-right: -8%;
    padding: 1.5em 1.5em 6em 2em;
  }
  #service .service04 .service_slider {
    margin-top: -4.5em;
  }
  #service .service04 .service_slider .slick-prev {
    left: 5%;
  }
  #service .service04 .service_slider .slick-next {
    right: 8%;
  }
}

#reserve .inner {
  position: relative;
}
#reserve .inner .contents {
  width: 50%;
}
#reserve .inner .reserve01 {
  margin-top: -4em;
  margin-right: -30px;
  width: 45%;
}
#reserve .inner .reserve01 img {
  border-radius: 0 0 30px 30px;
  -webkit-border-radius: 0 0 30px 30px;
  -moz-border-radius: 0 0 30px 30px;
  -ms-border-radius: 0 0 30px 30px;
  -o-border-radius: 0 0 30px 30px;
}
#reserve .btn {
  margin: 0 20px;
}
@media screen and (max-width: 768px) {
  #reserve .inner .contents {
    width: 100%;
  }
  #reserve .inner .reserve01 {
    margin-top: 2em;
    width: 90%;
    margin: 2em -35px 2em auto;
    text-align: right;
    margin-left: auto;
    margin-right: -38px;
    max-width: 450px;
  }
  #reserve .inner .reserve01 img {
    border-radius: 30px;
  }
  #reserve .btn {
    padding: 0em 0 3em;
  }
}

/* language */
#ja #about .btn {
  visibility: hidden;
  padding: 0;
}
#ja #reserve .btn {
  display: none;
}

#tw,
#cn,
#ko {
  font-family: "Noto Sans", sans-serif;
}

#en #service .service02 .hukidashi,
#tw #service .service02 .hukidashi {
  padding-right: 4em;
}
#en #service .service03 .hukidashi,
#tw #service .service03 .hukidashi {
  padding-right: 4em;
}
@media screen and (max-width: 1020px) {
  #en #service .service01 .hukidashi,
#tw #service .service01 .hukidashi {
    padding: 1em;
  }
  #en #service .service02,
#tw #service .service02 {
    margin-top: -2%;
  }
  #en #service .service02 .hukidashi,
#tw #service .service02 .hukidashi {
    padding: 1em 4em 1em 1em;
  }
  #en #service .service03 .hukidashi,
#tw #service .service03 .hukidashi {
    padding: 1em 4em 1em 1em;
  }
}
@media screen and (max-width: 768px) {
  #en #service [class^=service] .hukidashi,
#tw #service [class^=service] .hukidashi {
    width: 50vw;
  }
  #en #service .service02,
#tw #service .service02 {
    margin-top: 15%;
  }
  #en #service .service04 .hukidashi,
#tw #service .service04 .hukidashi {
    width: auto;
  }
}
@media screen and (max-width: 480px) {
  #en #service .service01 .hukidashi,
#tw #service .service01 .hukidashi {
    width: 70vw;
    bottom: -35%;
    left: -30%;
  }
  #en #service .service02,
#tw #service .service02 {
    margin-top: 30%;
  }
  #en #service .service02 .hukidashi,
#tw #service .service02 .hukidashi {
    padding: 1em 2.5em 1em 1em;
  }
  #en #service .service02 .hukidashi img,
#tw #service .service02 .hukidashi img {
    right: -10%;
    bottom: -10%;
  }
  #en #service .service03 .hukidashi,
#tw #service .service03 .hukidashi {
    padding: 1em 3em 1em 1em;
  }
  #en #service .service03 .hukidashi img,
#tw #service .service03 .hukidashi img {
    right: -2%;
    bottom: -30%;
  }
}

@media screen and (max-width: 768px) {
  #en .btn a {
    padding: 1em 3em 1em 1em;
  }
  #en .btn a::after {
    right: 0.8em;
  }
}
@media screen and (max-width: 480px) {
  #en .btn a {
    padding: 0.8em 1.8em 0.8em 0.8em;
    font-size: 0.8em;
  }
  #en .btn a img {
    width: 1.8em;
    margin-right: 0.6em;
  }
  #en .btn a::after {
    right: 0.6em;
  }
}

#tw #service [class^=service] .hukidashi {
  font-size: 1.2em;
  aspect-ratio: 3/1;
}
#tw #service .service04 .hukidashi {
  aspect-ratio: initial;
}
@media screen and (max-width: 768px) {
  #tw #service .service02 .hukidashi {
    padding-right: 2em;
  }
  #tw #service .service03 .hukidashi {
    width: 40vw;
    right: -15%;
    padding-right: 2em;
  }
  #tw #service .service03 .hukidashi img {
    width: 40%;
    bottom: -55%;
  }
  #tw #service .service04 .hukidashi {
    padding-bottom: 7em;
  }
}
@media screen and (min-width: 702px) and (max-width: 768px) {
  #tw #service .service03 .hukidashi {
    right: -15%;
  }
  #tw #service .service03 .hukidashi img {
    right: -10%;
    bottom: -85%;
  }
}
@media screen and (max-width: 480px) {
  #tw #service [class^=service] .hukidashi {
    font-size: clamp(15px, 1.6vw, 18px);
  }
  #tw #service .service03 {
    margin-bottom: 5em;
  }
  #tw #service .service03 .hukidashi {
    padding-right: 3em;
    right: -8%;
    bottom: -10%;
  }
  #tw #service .service03 .hukidashi img {
    right: -5%;
    bottom: -40%;
  }
  #tw #service .service04 .hukidashi {
    padding-bottom: 6em;
  }
}
/*# sourceMappingURL=style.css.map */