@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core html defaults */
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

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

a {
  text-decoration: none;
}

@media (any-hover: hover) {
  a {
    transition: opacity 0.3s;
  }
  a:hover {
    opacity: 0.8;
  }
}
body {
  background: #ffffff;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
}

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

@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

@media screen and (min-width: 1350px) {
  .xl-only {
    display: none;
  }
}
@media screen and (max-width: 1349px) {
  .xl-only {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .pc-inline {
    display: inline;
  }
}
@media screen and (max-width: 767px) {
  .pc-inline {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sp-inline {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .sp-inline {
    display: inline;
  }
}

@media screen and (min-width: 768px) {
  .pc-flex {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .pc-flex {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sp-flex {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .sp-flex {
    display: flex;
  }
}

@media screen and (min-width: 1350px) {
  .xl-flex {
    display: flex;
  }
}
@media screen and (max-width: 1349px) {
  .xl-flex {
    display: none;
  }
}

.inner {
  max-width: 1250px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 25px;
}
@media (max-width: 767px) {
  .inner {
    padding-inline: 20px;
    max-width: 640px;
  }
}

body.menu-open {
  overflow: hidden;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
  color: #005bac;
}
.section-title:has(br) {
  line-height: 1.2;
}
.section-title.is-multiline {
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 1.5625rem;
  }
}

.section-title.section-title--white {
  color: #ffffff;
}

.section-title--en {
  display: grid;
  gap: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .section-title--en {
    gap: 0.25rem;
  }
}

.section-title--en span {
  font-size: 1.5rem;
  font-weight: bold;
  color: inherit;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .section-title--en span {
    font-size: 1rem;
  }
}

.section-title.section-title--thin {
  font-size: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .section-title.section-title--thin {
    font-size: 1.5625rem;
  }
}

.section-title.section-title--thin span {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .section-title.section-title--thin span {
    font-size: 1rem;
  }
}

.common-text {
  display: grid;
  gap: 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .common-text {
    gap: 0.875rem;
  }
}

.btn {
  position: relative;
  display: inline-block;
  padding-block: 1.5625rem;
  padding-inline: 2.25rem;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  color: #005bac;
  border: 2px solid #005bac;
  border-radius: 40px;
  transition: background-color 0.3s ease, color 0.3s ease;
  background-color: #ffffff;
  min-width: 15.3125rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .btn {
    font-size: 0.875rem;
    min-width: 14.0625rem;
    padding-block: 1.25rem;
    border-radius: 32px;
    padding-inline: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .btn.btn--thin {
    font-size: 1rem;
    padding-block: 0.875rem;
    padding-inline: 2.8125rem;
  }
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.0625rem;
  width: 0.8125rem;
  height: 0.875rem;
  background-image: url("../images/renovation/common/btn_arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .btn::before {
    right: 1.1875rem;
    width: 0.625rem;
    height: 0.625rem;
  }
}

.btn:hover::before {
  transform: translateY(-50%) translateX(0.3125rem);
}

@media screen and (min-width: 768px) {
  .btn.btn--thin::before {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.sns-icons {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.sns-icons__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  transition: all 0.3s ease;
}

.sns-icons__item:hover {
  transform: translateY(-2px);
}

.sns-icons__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.sns-icons__img.sns-icons__img--menu {
  width: 1.875rem;
  height: 1.875rem;
}

.sns-icons__img--default {
  opacity: 1;
}

.sns-icons__img--menu {
  opacity: 0;
}

body.menu-open .sns-icons__img--default {
  opacity: 0;
}

body.menu-open .sns-icons__img--menu {
  opacity: 1;
}

.header.is-scrolled .sns-icons__img--default {
  opacity: 0;
}

.header.is-scrolled .sns-icons__img--menu {
  opacity: 1;
}

.bnr-link__item {
  aspect-ratio: 483/144;
  max-width: 26rem;
}
@media screen and (max-width: 767px) {
  .bnr-link__item {
    aspect-ratio: 583/173;
  }
}

.bnr-link__item img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.header__menu-overlay .bnr-link__item.bnr-link__item--sato {
  border: 2px solid #D2D2D2;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .header__menu-overlay .bnr-link__item.bnr-link__item--sato {
    border-radius: 10px;
  }
}

.header__menu-overlay .bnr-link {
  flex-direction: row;
}
@media screen and (max-width: 767px) {
  .header__menu-overlay .bnr-link {
    flex-direction: column;
    width: 90%;
    margin-inline: auto;
  }
}

.page-anchor-nav {
  margin-top: 2.5rem;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-anchor-nav {
    margin-top: initial;
  }
}

.page-anchor-nav__inner {
  overflow-x: auto;
}

.page-anchor-nav__list {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .page-anchor-nav__list {
    flex-direction: column;
    padding-inline: 0.5rem;
  }
}

.page-anchor-nav__item {
  flex-shrink: 0;
}

.page-anchor-nav__item .btn {
  min-width: 13.375rem;
}
.page-anchor-nav__item .btn::before {
  transform: translateY(-50%) rotate(90deg);
}
.page-anchor-nav__item .btn:hover::before {
  transform: translateY(-50%) rotate(90deg) translateX(0.3125rem);
}

.al-widget-button {
  background-color: #ffffff;
  border-radius: 8px;
  width: 5.6875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  gap: 0.375rem;
}

.al-widget-button svg {
  width: 0.75rem;
  height: 0.75rem;
}

@media screen and (max-width: 767px) {
  .fc button .fc-icon {
    top: 30% !important;
    transform: translateY(-50%);
  }
}

html {
  scroll-padding-top: 10rem;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 6.25rem;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: transparent;
  padding-block: 1.6875rem;
}
@media screen and (max-width: 1349px) {
  .header {
    padding-block: 0.3125rem;
  }
}

.header.is-scrolled,
body.menu-open .header {
  background: #ffffff;
}

.header.is-scrolled .header__logo-img,
.header.is-scrolled .header__language-text,
.header.is-scrolled .hamburger__text {
  filter: none;
}

.header__inner.inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 88.75rem;
}
@media screen and (max-width: 767px) {
  .header__inner.inner {
    max-width: 37.5rem;
  }
}

.header__left-area {
  display: flex;
  align-items: center;
}

.header__logo {
  z-index: 1001;
}

.header__logo-img {
  width: 6.375rem;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .header__logo-img {
    width: 5rem;
  }
}

.header__logo-img--default {
  display: block;
  z-index: 1;
}

.header__logo-img--menu {
  display: none;
  z-index: 2;
}

body.menu-open .header__logo-img--default,
header.is-scrolled .header__logo-img--default {
  display: none;
}

body.menu-open .header__logo-img--menu,
header.is-scrolled .header__logo-img--menu {
  display: block;
}

.header__language {
  width: 5.6875rem;
  margin-left: 2.4375rem;
  z-index: 1001;
}
.al-widget-wrapper{
   inset: 55px auto auto auto !important;
}
.al-widget-wrapper .al-widget-button{
   padding: 1px;
    gap: 1px;
    width: 89px!important;
}
.al-widget-wrapper .al-widget-button p {
    color: black;
    margin: 0px!important;
    display: block;
    width: 60px;
    font-size: 14px;
}
.al-translation-buttons-wrapper{
    max-width: 1420px!important;
    margin: 0 auto!important;
}
.al-translation-buttons-wrapper .al-translation-buttons-list{
    inset: 55px auto auto 166px!important;
}
@media screen and (max-width: 1349px) {
    .al-widget-wrapper{
   inset: 33px auto auto auto !important;
}
    .al-translation-buttons-wrapper .al-translation-buttons-list{
    inset: 33px auto auto 166px!important;
}
}
@media screen and (max-width: 767px) {
  .header__language {
    width: 4.375rem;
    margin-left: 1.25rem;
  }
    .al-widget-wrapper{
   inset: 23px auto auto auto !important;
}
    .al-translation-buttons-wrapper .al-translation-buttons-list{
    inset: 23px auto auto 166px!important;
}
}
@media screen and (max-width: 500px) {
       .al-translation-buttons-wrapper .al-translation-buttons-list{
    inset: 23px auto auto 33%!important;
} 
}

.header__nav-wrapper {
  margin-left: 2.4375rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header__nav-wrapper {
    display: contents;
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header__nav-link {
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.825px;
  color: #ffffff;
  text-shadow: 0px 0px 6px rgba(0, 149, 205, 0.18);
  text-decoration: none;
  transition: all 0.3s ease;
}

.header__nav-link:hover {
  color: #1f99e7;
}

body.menu-open .header__nav-link,
header.is-scrolled .header__nav-link {
  color: #005bac;
}

@media screen and (min-width: 768px) {
  .header__social {
    display: flex;
    align-items: center;
    margin-left: 2.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .header__buttons {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-left: 2.4375rem;
  }
}

.header__reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-inline: 1.75rem;
  padding-block: 1.75rem;
  border-radius: 2.1875rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  transition-property: background-color, opacity;
  transition-duration: 0.3s;
}
@media screen and (max-width: 767px) {
  .header__reserve {
    width: 100%;
    justify-content: center;
  }
}
@media screen and (max-width: 1349px) {
  .header__reserve {
    padding-inline: 1.25rem;
    padding-block: 1.25rem;
  }
}

.header__reserve::after {
  content: "";
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  background: url("../images/renovation/common/icon_extrnal.svg") no-repeat center/contain;
  flex-shrink: 0;
}

.header__reserve.header__reserve--accommodation {
  background-color: #1f99e7;
}

.header__reserve.header__reserve--accommodation:hover {
  opacity: 0.8;
}

.header__reserve.header__reserve--diving {
  background-color: #005bac;
}

.header__reserve.header__reserve--diving:hover {
  opacity: 0.8;
}

.header__menu-button {
  z-index: 1001;
  margin-left: 1.1875rem;
}

.hamburger {
  display: grid;
  place-items: center;
  gap: 0.625rem;
  padding: 1.375rem 1.375rem 1.0625rem 1.375rem;
  background: #005bac;
  border-radius: 100%;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .hamburger {
    gap: 0.3125rem;
    padding: 0.875rem 0.875rem 0.8125rem 0.875rem;
  }
}

.hamburger:hover {
  background: #1f99e7;
  transform: translateY(-1px);
}

.hamburger__icon {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}

.hamburger__icon span {
  width: 2rem;
  height: 0.125rem;
  background: #ffffff;
  transition: all 0.3s ease;
  border-radius: 1px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .hamburger__icon span {
    width: 1.5rem;
    height: 0.0625rem;
  }
}

.hamburger__text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .hamburger__text {
    font-size: 0.625rem;
  }
}

.hamburger.is-active .hamburger__icon span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
  top: -0.1875rem;
}
@media screen and (max-width: 767px) {
  .hamburger.is-active .hamburger__icon span:first-child {
    top: -0.3125rem;
  }
}

.hamburger.is-active .hamburger__icon span:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
  top: 0.1875rem;
}

.header__menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100svh;
  background: #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, height 0.3s ease, top 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
  padding-top: 1.6875rem;
}

.header__menu-overlay.is-active {
  opacity: 1;
  visibility: visible;
  /* top and height will be set by JavaScript */
}

.header__menu-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.header__menu-column {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

.header__menu-heading {
  font-size: 1.125rem;
  font-weight: bold;
  color: #005bac;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.header__menu-heading::after {
  content: "";
  width: 2.1875rem;
  height: 2.1875rem;
  background-image: url("../images/renovation/common/btn_arrow.png");
  background-size: 0.8125rem 0.8125rem;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  margin-left: 0.5rem;
  border: 1px solid #005bac;
  border-radius: 50%;
}

.header__menu-sublist {
  border-left: 1px solid #005bac;
  padding-left: 0.75rem;
  margin-top: 0.9375rem;
  display: grid;
  gap: 1.25rem;
  padding-block: 0.75rem;
}
@media screen and (max-width: 767px) {
  .header__menu-sublist {
    padding-block: 0.5rem;
    margin-top: 0.625rem;
    gap: 0.625rem;
  }
}

.header__menu-sublist--no-border {
  border-left: none;
  padding-left: 0;
  margin-top: 0;
  padding-block: 0;
}

.header__menu-sublist a {
  font-size: 1rem;
  color: #005bac;
  text-decoration: none;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .header__menu-sublist a {
    font-size: 0.875rem;
  }
}

.header__menu-sublist a:hover {
  color: #005bac;
}

.header__menu-social {
  display: none;
}

.header__menu-buttons {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__menu-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 0;
  }
}

.header__menu-banners {
  margin-top: 3.75rem;
}

.bnr-link {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bnr-link__item {
  display: block;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.bnr-link__item:hover {
  transform: translateY(-2px);
}

.bnr-link__item img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 767px) {
  .header__menu-columns {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.5625rem;
  }
  .header__menu-column {
    gap: 1.25rem;
  }
  .header__menu-social {
    display: block;
    margin-top: 2rem;
  }
  .header__menu-reserve {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 62.4375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }
  .header__menu-reserve--accommodation {
    background-color: #1f99e7;
  }
  .header__menu-reserve--diving {
    background-color: #005bac;
  }
  .header__menu-reserve:hover {
    opacity: 0.8;
  }
  .header__menu-reserve::after {
    content: "";
    display: inline-block;
    width: 0.875rem;
    height: 0.875rem;
    background: url("../images/renovation/common/icon_extrnal.svg") no-repeat center/contain;
    flex-shrink: 0;
  }
  .header__menu-banners {
    margin-top: 1.875rem;
  }
}
.header__nav-wrapper {
  z-index: 1001;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer {
  background: url("../images/renovation/footer/footer_bg.png") no-repeat center/cover;
  color: #ffffff;
  padding-block: 5rem 6.4375rem;
  margin-top: 7.625rem;
}
@media screen and (max-width: 767px) {
  .footer {
    background: url("../images/renovation/footer/footer_bg_sp.png") no-repeat center/cover;
    padding-block: 6.5rem 6.25rem;
    margin-top: 7.3125rem;
  }
}

.footer__inner {
  max-width: 75rem;
  margin-inline: auto;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .footer__content {
    flex-direction: column;
    flex-direction: column-reverse;
    align-items: center;
    gap: 2rem;
  }
}

.footer__info {
  flex: 1;
  min-width: 17.5rem;
}

.footer__logo {
  display: block;
  width: 8.1875rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 5rem;
  }
}

.footer__title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .footer__title {
    font-size: 0.875rem;
    margin-top: 0.75rem;
  }
}

.footer__address {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 0.8125rem;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .footer__address {
    font-size: 0.75rem;
    margin-top: 0.9375rem;
  }
}

.footer__copyright {
  font-size: 1rem;
  margin-top: 5.3125rem;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 0.75rem;
    margin-top: 3.125rem;
  }
}

.footer__bnrs {
  display: grid;
  gap: 1rem;
}
.page-hero {
  color: #005bac;
  text-align: center;
  position: relative;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .page-hero {
    aspect-ratio: 750/562;
  }
}

.page-hero img {
  object-fit: cover;
  height: 100%;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero__content::before,
.page-hero__content::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

.page-hero__content::before {
  width: 13.25rem;
  height: 7.3125rem;
  bottom: -2rem;
  left: 3.6875rem;
  background-image: url("../images/renovation/common/threefish_illust.png");
}
@media screen and (max-width: 767px) {
  .page-hero__content::before {
    width: 31.59%;
    height: 70.9%;
    bottom: -52%;
    left: -10%;
  }
}

.page-hero__content::after {
  width: 8.3125rem;
  height: 8.9375rem;
  top: 4.25rem;
  right: 6.6875rem;
  background-image: url("../images/renovation/common/bubble_ver2.png");
}
@media screen and (max-width: 767px) {
  .page-hero__content::after {
    width: 19.82%;
    height: 86.6%;
    bottom: -60%;
    right: -5%;
    top: initial;
  }
}

.page-hero__content {
  width: 100%;
  margin-inline: auto;
  border-radius: 20px 20px 0 0;
  top: -7.3125rem;
  position: relative;
  background: #ffffff;
  padding-block: 2.75rem 1rem;
}
@media screen and (max-width: 767px) {
  .page-hero__content {
    top: -3.875rem;
  }
}

.page-hero__en {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: -0.246528px;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .page-hero__en {
    font-size: 1rem;
  }
}

.page-hero__title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-top: 0.625rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .page-hero__title {
    font-size: 1.5rem;
  }
}

.page-hero__sub {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: bold;
  margin-top: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .page-hero__sub {
    font-size: 0.75rem;
    margin-top: 0.625rem;
  }
}

.page-hero__intros {
  display: grid;
  gap: 1.875rem;
  margin-top: 4.8125rem;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .page-hero__intros {
    margin-top: 2.5rem;
    gap: 1.25rem;
    max-width: 25rem;
    margin-inline: auto;
  }
}

.page-hero__intro {
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .page-hero__intro {
    font-size: 1rem;
    line-height: 1.8;
    text-align: left;
  }
}

.page-hero.page-hero--no-image .page-hero__content::before,
.page-hero.page-hero--no-image .page-hero__content::after {
  display: none;
}

.page-hero.page-hero--service .page-hero__content::after {
  bottom: -2.8125rem;
  right: 4.25rem;
}
@media screen and (max-width: 767px) {
  .page-hero.page-hero--service .page-hero__content::after {
    bottom: -29%;
    right: -5%;
  }
}

.page-hero.page-hero--price .page-hero__content::before {
  bottom: -2rem;
  left: 3.6875rem;
}
@media screen and (max-width: 767px) {
  .page-hero.page-hero--price .page-hero__content::before {
    bottom: -24%;
    left: -10%;
  }
}

.page-hero.page-hero--price .page-hero__content::after {
  bottom: -2.8125rem;
  right: 4.25rem;
}
@media screen and (max-width: 767px) {
  .page-hero.page-hero--price .page-hero__content::after {
    bottom: -29%;
    right: -5%;
  }
}

.page-hero.page-hero--restaurant .page-hero__logo {
  max-width: 10rem;
  margin-inline: auto;
  margin-top: 2.5625rem;
}
@media screen and (max-width: 767px) {
  .page-hero.page-hero--restaurant .page-hero__logo {
    margin-top: 1.25rem;
    max-width: 7.5rem;
  }
}

.page-hero.page-hero--restaurant .page-hero__subtitle {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 2.5625rem;
}
@media screen and (max-width: 767px) {
  .page-hero.page-hero--restaurant .page-hero__subtitle {
    font-size: 1.25rem;
    margin-top: 1.25rem;
  }
}

.page-hero.page-hero--restaurant .page-hero__intros {
  margin-top: 2.0625rem;
}
@media screen and (max-width: 767px) {
  .page-hero.page-hero--restaurant .page-hero__intros {
    margin-top: 1.25rem;
  }
}

.page-hero.page-hero--restaurant .page-hero__content::before {
  width: 13.25rem;
  height: 7.3125rem;
  bottom: 13.25rem;
  left: 3.6875rem;
  background-image: url("../images/renovation/common/threefish_illust.png");
}
@media screen and (max-width: 767px) {
  .page-hero.page-hero--restaurant .page-hero__content::before {
    width: 31.59%;
    height: 70.9%;
    bottom: 27%;
    left: -5%;
  }
}

.page-hero.page-hero--restaurant .page-hero__content::after {
  width: 8.3125rem;
  height: 8.9375rem;
  top: 4.25rem;
  right: 6.6875rem;
  background-image: url("../images/renovation/common/bubble_ver2.png");
}
@media screen and (max-width: 767px) {
  .page-hero.page-hero--restaurant .page-hero__content::after {
    width: 19.82%;
    height: 86.6%;
    bottom: 20%;
    right: 0;
    top: initial;
  }
}

body.is-legacy-page .p-mv.c-mv.c-mv__page {
  margin-top: 9.375rem;
}
@media screen and (max-width: 767px) {
  body.is-legacy-page .p-mv.c-mv.c-mv__page {
    margin-top: 5.625rem;
  }
}
body.is-legacy-page .header {
  background: #ffffff;
}
body.is-legacy-page .header .header__logo-img--default {
  display: none;
}
body.is-legacy-page .header .header__logo-img--menu {
  display: block;
}
body.is-legacy-page .header .header__logo-img,
body.is-legacy-page .header .header__language-text,
body.is-legacy-page .header .hamburger__text {
  filter: none;
}
body.is-legacy-page .header .header__nav-link {
  color: #005bac;
}
.no-js body.is-legacy-page .p-mv.c-mv.c-mv__page {
  margin-top: 8.75rem;
}
@media screen and (max-width: 767px) {
  .no-js body.is-legacy-page .p-mv.c-mv.c-mv__page {
    margin-top: 5.625rem;
  }
}

@media screen and (max-width: 768px) {
  body .fc {
    font-size: .8rem!important;
}
}



/*# sourceMappingURL=theme.css.map */
