body {
  background-color: #F5F4F0;
  font-family:"Noto Sans JP", sans-serif;
  color: #3A3A3A;
}
.en {
  font-family: "Arsenal", sans-serif;
}
html, body {
  overflow-x: hidden;
}
.inview.fadeup {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 1s cubic-bezier(0.25, 0.1, 0.25, 1),
              transform 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.inview.fadeup.active {
  opacity: 1;
  transform: translateY(0);
}


/* ----------------------------------
   ヘッダーCSS
----------------------------------- */
header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  padding: clamp(20px, 5.333vw, 40px);
  color: #fff;
}
.header-container {
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: 1fr 2fr;
}
/* 初期状態：透明ヘッダー */
.header {
  background-color: transparent;
  transition: background-color 0.8s ease-in-out, box-shadow 0.8s ease-in-out, padding 0.8s ease-in-out;
}
/* KVが見えなくなったら背景を付ける */
.header.scrolled {
  background-color: rgba(58, 58, 58, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 20px 40px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 100;
}

.menu_contact {
  color: #fff;
  display: block;
  width: 100%;
  padding: 5px 60px 5px 30px;
  background-position: right 35px top calc(50% + 1px);
  background-repeat: no-repeat;
  background-image: url(../img/mail_icon.svg);
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.header-logo {
  font-weight: 500;
}

@media (min-width: 1025px) {
  header {
    padding: clamp(30px, 3.125vw, 60px) clamp(40px, 4.6875vw, 90px);
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  header {
    padding: clamp(10px, 3vw, 20px);
  }
}

.header-container {
  display: grid;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: 1fr 2fr;
}


.logo-link {
  display: block;
  transition: 0.3s;
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.logo-link:hover {
  opacity: 0.6;
}
.logo-link img {
  max-width: 220px;
}
.menu-link:hover {
  opacity: 0.6;
}

@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    z-index: -1;
    inset: 0;
    width: 100%;
    height: 100vh;
    padding: clamp(30px, 8vw, 60px);
    transition: 0.3s;
    transform: translateX(200%);
    overflow: auto;
    background-color: #696969;
  }
  .nav-menu.active {
    transform: translateX(0);
  }
  .menu-item {
    border-bottom: 1px solid #fff;
  }
  .menu-item:last-child {
    border-bottom: 0;
    margin-top: 50px;
  }
  .menu_contact {
    border-radius: 30px;
    background-position: right 105px top calc(50% + 1px);
    background-size: 15px 10px;
  }
  .menu-link {
    display: block;
    padding: clamp(10px, 2.6vw, 20px) 0;
    text-align: center;
    transition: 0.3s;
  }
  .header.scrolled {
    padding: 20px 40px 30px;
  }
  .logo-link img {
    max-width: 280px;
  }
  .header-container {
    align-items: end;
  }
}

@media (min-width: 1025px) {
  .menu-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(20px, 2.08vw, 40px);
  }
  .menu-link {
    transition: 0.3s;
  }
}

@media (max-width: 768px) {
  .logo-link {
    font-size: 24px;
    margin-top: 1px;
  }
  .header.scrolled {
    padding: 15px 20px 30px;
  }
  .menu_contact {
    background-position: right 100px top calc(50% + 1px);
  }
}

/* ==============================
   Hamburger Button
============================== */
.hamburger-button {
  width: fit-content;
  height: clamp(13px, 3.46vw, 26px);
  margin-left: auto;
  cursor: pointer;
  margin-top: 10px;
}

.hamburger-lines {
  position: relative;
  width: clamp(40px, 10.6vw, 90px);
  height: clamp(13px, 3.46vw, 26px);
  transition: 0.3s;
}

.hamburger-lines .line {
  position: absolute;
  width: 100%;
  height: clamp(1px, 0.26vw, 2px);
  background-color: #fff;
  transition: 0.3s;
}
/* 線の上下位置を明示する */
.hamburger-lines .line:nth-child(1) { top: 0; }
.hamburger-lines .line:nth-child(2) { bottom: 0; }

@media (max-width: 768px) and (orientation: landscape) {
  .hamburger-lines {
    width: clamp(30px, 7.5vw, 50px);
    height: clamp(15px, 3vw, 20px);
  }
}

@media (min-width: 1025px) {
  .hamburger-button {
    display: none;
  }
}
/* ----------------------------------
   ヘッダーCSS終わり
----------------------------------- */
/* ----------------------------------
   KVCSS
----------------------------------- */
.kv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  padding: 10px;
}
.kv .kvimg_bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}
.kv_text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1260px;
  width: 100%;
  margin: 0 30px;
}
.kv_text h3 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 50px;
  line-height: 48px;
}
.kv_text .en {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 500;
}
.kv_text_p {
  line-height: 28px;
  margin-bottom: 22px;
  font-weight: 500;
}
.scroll {
  position: absolute;
  right: 46px;
  bottom: 36px;
  display: flex;
  width: 90px;
  height: 90px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 70px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: "Arsenal SC", sans-serif;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  animation: yurayuraUpDown 3s ease-in-out infinite;
}
.scroll img {
  margin-top: 5px;
  margin-bottom: -5px;
}

@keyframes yurayuraUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px); /* 上へ */
  }
  100% {
    transform: translateY(0);
  }
}

.spbr {
  display: none;
}
.kv_btm_text {
  display: none;
}
.kvimg_bg_sp {
  display: none;
}

@media (max-width: 1024px) {
  .kv_text {
    text-align: center;
    margin: 0;
  }
  .kv {
    height: 60vh;
  }
}
@media (max-width: 768px) {
  .kv_text h3 {
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 0;
    font-weight: 600;
  }
  .kv .kvimg_bg {
    display: none;
  }
  .kvimg_bg_sp {
    display: block;
        width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .kv_btm_text .en {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .kv_btm_text .kv_text_p {
    font-size: 15px;
  }
  .spbr {
    display: block;
  }
  .kv_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    width: 100%;
  }
  .kv_text_box {
    display: none;
  }
  .scroll {
    display: none;
  }
  .kv_btm_text {
    display: block;
    text-align: center;
    padding: 10px 15px 0;
     margin: 0 20px;
  }
  .kv {
    padding: 0;
    height: 50vh;
  }
}



/* ----------------------------------
   KVCSS終わり
----------------------------------- */
/* ----------------------------------
   トップページコンテンツ
----------------------------------- */

main h2 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}
main h2 span {
  font-size: 36px;
  font-family: "Arsenal SC", sans-serif;
  margin-right: 15px;
}

/* service */

.service {
  display: flex;
  max-width: 1140px;
  margin: 100px auto 0;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.service_box {
  max-width: 600px;
  width: 100%;
}
.service ul {
  margin-top: 20px;
}
.service li {
  border-bottom: 1px solid #3A3A3A;
  padding: 15px 20px;
  margin-top: 10px;
}
.service a {
  background-position: right 5px top calc(50% + 1px);
  background-repeat: no-repeat;
  background-image: url(../img/link.svg);
  width: 100%;
  display: block;
}
.service_link h3 {
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  border-bottom: 1px dashed #fff;
  padding: 0 10px 8px;
  margin-bottom: 30px;
}
.service_link h3 span {
  font-family: "Arsenal SC", sans-serif;
  font-size: 26px;
  margin-left: 10px;
}
.service_link h3 span::before {
  content: "|";
  margin-right: 10px;
}
.link_width {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#link_resort {
  margin-top: 100px;
}
#link_resort, #link_apparel {
  background-color: #222222;
  color: #fff;
}
#link_resort, #link_realestate, #link_apparel, #link_app {
  padding: 100px 0;
}
.link_text {
  max-width: 500px;
}
.link_text p {
  text-align: justify;
  line-height: 26px;
}
.link_text a {
  background-position: right 5px top calc(50% + 1px);
  background-repeat: no-repeat;
  background-image: url(../img/link_open.png);
  width: 100%;
  display: block;
  max-width: 140px;
  margin-left: auto; 
  border-bottom: 1px solid #fff;
  padding: 5px 10px;
  font-family: "Arsenal SC", sans-serif;
  font-size: 18px;
  margin-top: 40px;
}
#link_realestate .link_width, #link_app .link_width {
  flex-direction: row-reverse;
}
#link_realestate h3, #link_app h3 {
  border-bottom: 1px dashed #222222;
}
#link_realestate .link_text a, #link_app .link_text a {
  border-bottom: 1px solid #222;
  background-image: url(../img/link_open_black.png);
  margin-top: 120px;
}
@media (max-width: 1024px) {
  .service {
    padding: 0 30px;
  }
  .service li {
    padding: 5px 20px;
  }
  .service ul {
    margin: 30px 0 50px;
  }
  .service_box {
    padding-right: 30px;
  }
  .link_text {
    padding: 0 30px;
  }
  .service_img_r {
    padding-right: 30px;
  }
  .service_img_l {
    padding-left: 30px;
  }
}
@media (max-width: 768px) {
  .service {
   flex-direction: column-reverse;
   margin-top: 50px;
  }
  .service_box {
    padding-right: 0;
    margin-top: 50px;
  }
  .service p {
    font-size: 15px;
    text-align: justify;
  }
  .service .menu-link {
    text-align: left;
  }
  .service li {
    padding: 5px 10px;
  }
  #link_resort {
    margin-top: 50px;
  }
  .service_img_r {
    padding: 0 20px 30px;
  }
  #link_realestate .link_width, #link_app .link_width {
    flex-direction: column-reverse;
  }
  .link_width {
    flex-direction: column-reverse;
  }
  .service_img_l {
    padding: 0 20px 30px;
  }
  .link_text {
    padding: 0 20px;
  }
  #link_realestate .link_text a, #link_app .link_text a {
   margin-top: 40px;
  }

}



/* company */
.company {
  background-color: #fff;
  padding: 100px 0;
  margin: 0 0 100px;
}
.company_width {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.company h2 {
  border-bottom: 1px solid #222;
  padding-bottom: 10px;
  margin-bottom: 50px;
}
.company tr {
  border-bottom: 1px dashed #222;
}
.company table {
  width: 100%;
}
.company th, .company td {
  padding: 25px 10px 15px;
}
.company th {
  text-align: left;
  font-weight: 500;
}
.company tr:last-child {
  border-bottom: none;
}

/* contact */
.contact {
  max-width: 1140px;
  width: 100%;
  margin: 100px auto;
  display: flex;
  justify-content: space-between;
}
.contact_box {
  max-width: 335px;
  width: 100%;
}
.contact_box p {
  font-size: 14px;
  text-align: justify;
  line-height: 24px;
}
.contact table {
  width: 100%;
}
.contact th, .contact td {
  border-bottom: 0.5px solid #3A3A3A;
  padding: 30px 20px 15px;
  margin-bottom: 30px;
}
.contact th {
  max-width: 220px;
  text-align: left;
  font-weight: 500;
}
.contact table input {
  height: 40px;
  border-radius: 5px;
  border: #868686 0.25px solid;
  padding: 15px 20px;
  width: 100%;
}
.contact textarea {
  width: 100%;
  padding: 15px 20px;
  border: #868686 0.25px solid;
  border-radius: 5px;
}
.table_text {
  font-size: 14px;
  text-align: center;
  margin-top: 30px;
}
.table_text a {
  border-bottom: 1px solid #3A3A3A;
}
.wpcf7 {
  width: 100%;
  max-width: 750px;
}
.wpcf7-submit {
  max-width: 235px;
  border: 1px solid;
  display: block;
  width: 100%;
  text-align: center;
  margin: 40px auto;
  padding: 16px;
  border-radius: 50px;
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
}
.wpcf7-submit:hover {
  background-color: #222;
  color: #fff;
}
#link_contact {
 margin-top: -100px;
 padding-top: 100px;
}
.contact .wpcf7 form .wpcf7-response-output {
    border: 1px solid #dc3232;
    text-align: center;
    padding: 10px 20px;
    color: #dc3232;
    border-radius: 5px;
    margin-top: 0;
}


@media (max-width: 1024px) {
  .company_width {
    padding: 0 30px;
  }
  .contact {
    padding: 0 30px;
  }
  .contact_box {
    margin-right: 30px;
  }
}


@media (max-width: 768px) {
  .company th, .company td {
    width: 100%;
    display: block;
  }
  .company h2 {
    margin-bottom: 20px;
  }
  .company th {
    border-bottom: 1px dashed #3A3A3A;
  }
  .company tr, .company tr:last-child {
    border-bottom: 1PX solid #3A3A3A;
  }
  .contact {
    flex-direction: column;
  }
  .contact th, .contact td {
    width: 100%;
    display: block;
  }
  .contact th {
    max-width: 100%;
    margin-bottom: 0;
  }
  .contact_box {
    margin-right: 0;
  }
  .contact {
    padding: 0 20px;
  }
}


/* ----------------------------------
   フッター
----------------------------------- */
footer {
  background-color: #222;
  padding: 100px 0 10px;
  color: #fff;
}
footer li {
  color: #fff;
}
.footer_box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 150px;
}
.footer_box ul {
  display: flex;
}
.footer_box li::after {
  content: '・';
}
.footer_box li:last-child::after {
  content: none;
}
.footer_wide {
  max-width: 1200px;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
}
.footer_logo {
  font-size: 26px;
}
.copy {
  text-align: center;
}
@media (max-width: 1024px) {
  .footer_wide {
        padding: 0 30px;
  }
}

/* ----------------------------------
   プライバシーポリシー
----------------------------------- */
.content-privacy-policy {
  max-width: 1000px;
  width: 100%;
  margin: 100px auto;
}
.page_common .header {
  background-color: rgba(58, 58, 58, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 20px 40px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.page_common .header-container {
  max-width: 1200px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.page-title {
  margin-bottom: 30px;
  border-bottom: 1px solid #3A3A3A;
  padding-bottom: 20px;
}
.content-privacy-policy h5 {
  font-size: 16px;
  margin: 20px 0 10px;
  border-bottom: 1px dashed #3A3A3A;
  padding: 0 5px 10px;
}
.content-privacy-policy ol {
  list-style-type: decimal;
  margin: 10px 0 10px 30px;
}