@charset "UTF-8";

/***************************************
   Reset
***************************************/
*, ::before, ::after {
  margin: 0;
  padding: 0;
  box-sizing:border-box;
  border-style:solid;
  border-width:0;
  min-width:0;
}
html {
  line-height:1.15;
  -webkit-text-size-adjust:100%;
  -webkit-tap-highlight-color:transparent;
}
body {
  margin:0;
}
main {
  display:block;
}
p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin:0;
}
h1, h2, h3, h4, h5, h6 {
  font-size:inherit;
  font-weight:inherit;
  margin:0;
}
ul, ol {
  margin:0;
  padding:0;
  list-style:none;
}
dt {
  font-weight:bold;
}
dd {
  margin-left:0;
}
hr {
  box-sizing:content-box;
  height:0;
  overflow:visible;
  border-top-width:1px;
  margin:0;
  clear:both;
  color:inherit;
}
pre {
  font-family:monospace, monospace;
  font-size:inherit;
}
address {
  font-style:inherit;
}
a {
  background-color:transparent;
  text-decoration:none;
  color:inherit;
}
abbr[title] {
  text-decoration:underline dotted;
}
b, strong {
  font-weight:bolder;
}
code, kbd, samp {
  font-family:monospace, monospace;
  font-size:inherit;
}
small {
  font-size:80%;
}
sub, sup {
  font-size:75%;
  line-height:0;
  position:relative;
  vertical-align:baseline;
}
sub {
  bottom:-0.25em;
}
sup {
  top:-0.5em;
}
svg, img, embed, object, iframe {
  vertical-align:bottom;
}
button, input, optgroup, select, textarea {
  -webkit-appearance:none;
  appearance:none;
  vertical-align:middle;
  color:inherit;
  font:inherit;
  background:transparent;
  padding:0;
  margin:0;
  border-radius:0;
  text-align:inherit;
  text-transform:inherit;
}
button, [type="button"], [type="reset"], [type="submit"] {
  cursor:pointer;
}
button:disabled, [type="button"]:disabled, [type="reset"]:disabled, [type="submit"]:disabled {
  cursor:default;
}
:-moz-focusring {
  outline:auto;
}
select:disabled {
  opacity:inherit;
}
option {
  padding:0;
}
fieldset {
  margin:0;
  padding:0;
  min-width:0;
}
legend {
  padding:0;
}
progress {
  vertical-align:baseline;
}
textarea {
  overflow:auto;
}
[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height:auto;
}
[type="search"] {
  outline-offset:-2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance:none;
}
::-webkit-file-upload-button {
  -webkit-appearance:button;
  font:inherit;
}
[type="number"] {
  -moz-appearance:textfield;
}
label[for] {
  cursor:pointer;
}
details {
  display:block;
}
summary {
  display:list-item;
}
[contenteditable]:focus {
  outline:auto;
}
table {
  border-color:inherit;
  border-collapse:collapse;
}
caption {
  text-align:left;
}
td, th {
  vertical-align:top;
  padding:0;
}
th {
  text-align:left;
  font-weight:bold;
}

/***************************************
   Common
***************************************/
body {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  background-color: #FBFBFA;
  color: #2C2A29;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.06em;
  overflow-x: hidden; 
  width: 100%;
}
main {
  margin-top: 60px;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 769px) {
  main {
    margin-top: 80px;
  }
}

/***************************************
   Header
***************************************/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: rgba(251, 251, 250, 0.95);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid rgba(44, 42, 41, 0.1);
  z-index: 1000;
}
.logo-img {
  height: 20px;
  width: auto;
}
.header-nav {
  display: flex;
  gap: 15px;
}
.nav-item {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media (min-width: 769px) {
  .site-header {
    height: 80px;
    padding: 0 40px;
  }
  .logo-img {
    height: 24px;
  }
  .header-nav {
    gap: 30px;
  }
  .nav-item {
    font-size: 11px;
    letter-spacing: 0.15em;
  }
}

/***************************************
   Footer
***************************************/
.site-footer {
  width: 100%;
  background-color: #2C2A29;
  padding: 50px 20px;
  box-sizing: border-box;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-logo {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: 0.15em;
}
.footer-sub-nav {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-nav-link {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.25s ease;
}
.footer-nav-link:hover {
  color: #FFFFFF;
  text-decoration: underline;
}
.site-footer .copyright {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.08em;
}

@media (min-width: 769px) {
  .site-footer {
    padding: 60px 40px;
  }
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .footer-sub-nav {
    flex-direction: row;
    margin: 0;
    gap: 30px;
  }
  .site-footer .copyright {
    margin: 0;
  }
}

/***************************************
   Hero Section
***************************************/
.hero-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-bottom: 1px solid rgba(44, 42, 41, 0.1);
}
.hero-left {
  width: 100%;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.hero-title {
  font-size: 28px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.08em;
}
.hero-title .italic {
  font-style: italic;
  font-size: 18px;
  display: block;
  margin-top: 10px;
}
.hero-title .hero-link {
  font-size: 14px;
}
.hero-lead {
  font-size: 12px;
  font-weight: 300;
  color: rgba(44, 42, 41, 0.7);
}
.hero-right {
  width: 100%;
  height: 45vh;
  position: relative;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 10px;
  font-weight: 500;
  color: #FFF;
  mix-blend-mode: difference;
}

@media (min-width: 769px) {
  .hero-section {
    flex-direction: row;
    height: calc(100vh - 85px);
  }
  .hero-left {
    width: 50%;
    padding: 80px 40px;
    justify-content: space-between;
    border-right: 1px solid rgba(44, 42, 41, 0.1);
    gap: 0;
  }
  .hero-title {
    font-size: 40px;
  }
  .hero-title .italic {
    font-size: 24px;
    margin-top: 15px;
  }
  .hero-right {
    width: 50%;
    height: 100%;
  }
  .scroll-indicator {
    bottom: 30px;
    right: 40px;
  }
}

/***************************************
   Page Hero Section
***************************************/
.island-hero {
  width: 100%;
  height: 40vh;
  background-color: #2C2A29;
  color: #FBFBFA;
  display: flex;
  align-items: flex-end;
  padding: 40px 20px;
}
.island-hero-title .area-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(251, 251, 250, 0.5);
  display: block;
  margin-bottom: 5px;
}
.island-hero-title h1 {
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1;
}
.island-hero-title .ja-name {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-top: 5px;
  color: rgba(251, 251, 250, 0.7);
}

@media (min-width: 769px) {
  .island-hero {
    height: 50vh;
    padding: 60px 40px;
  }
  .island-hero-title h1 {
    font-size: 72px;
  }
}

/***************************************
   main Common
***************************************/
.archive-section {
  padding: 60px 20px;
  width: 100%;
}
.section-header {
  margin-bottom: 30px;
}
.section-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
}

@media (min-width: 769px) {
  .archive-section {
    margin:0 auto;
    padding: 100px 40px;
    max-width:1400px;
  }
  .section-title {
    font-size: 12px;
    letter-spacing: 0.2em;
  }
}

/***************************************
   Island Grid
***************************************/
.islands-grid, .tag-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 15px;
  row-gap: 40px;
  width: 100%;
}
.island-card, .tag-card {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.card-img-wrapper {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 12px;
  background-color: #ECECEB;
  width: 100%;
}
.tag-card .card-img-wrapper {
  aspect-ratio: 3 / 2;
}
.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.island-card:hover .card-img-wrapper img,
.tag-card:hover .card-img-wrapper img {
  transform: scale(1.03);
}
.card-img-wrapper.empty-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(44, 42, 41, 0.2);
  background: transparent;
}
.coming-text {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: rgba(44, 42, 41, 0.4);
}
.card-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}
.island-num, .tag-num {
  font-size: 13px;
  font-weight: 400;
}
.island-tags, .tag-intro {
  font-size: 10px;
  color: rgba(44, 42, 41, 0.5);
  letter-spacing: 0.1em;
  line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.card-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  align-self: flex-start;
  position: relative;
  padding-bottom: 2px;
}
.card-link::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #2C2A29;
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}
.island-card:hover .card-link::after,
.tag-card:hover .card-link::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.card-link.disabled {
  color: rgba(44, 42, 41, 0.3);
  cursor: default;
}
.island-card.is-ad, .tag-card.is-ad {
  background-color: #ECECEB;
  padding: 10px 10px 20px 10px;
  transition: opacity 0.3s ease;
}
.island-card.is-ad:hover,
.tag-card.is-ad:hover {
  opacity: 0.85;
}
.ad-label {
  color: rgba(44, 42, 41, 0.4) !important;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.ad-text {
  color: rgba(44, 42, 41, 0.7) !important;
  font-weight: 300;
  line-height: 1.5 !important;
  white-space: normal;
}

@media (min-width: 769px) {
  .islands-grid, .tag-grid {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 40px;
    row-gap: 80px;
  }
  .island-tags, .tag-intro {
    line-clamp: 2;
    -webkit-line-clamp: 2;
  }
}

/***************************************
   Journal
***************************************/
.block-related-articles {
  width: 100%;
  padding: 60px 20px;
  background-color: #FBFBFA;
}
.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 25px;
  margin-top: 30px;
  width: 100%;
}
.article-link-wrapper {
  display: flex;
  gap: 15px;
  align-items: center;
}
.article-thumb-wrapper {
  width: 80px;
  height: 80px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #ECECEB;
  flex-shrink: 0;
}
.article-thumb-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.article-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.article-date {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: rgba(44, 42, 41, 0.4);
  letter-spacing: 0.05em;
}
.article-title {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: #2C2A29;
}
.article-link-wrapper:hover .article-thumb-wrapper img {
  transform: scale(1.05);
}

@media (min-width: 769px) {
  .block-related-articles {
    padding: 100px 40px;
  }
  .articles-grid.four-cols {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 30px;
    row-gap: 0;
  }
  .article-link-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .article-thumb-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
  }
}

/***************************************
   Image Box
***************************************/
.landscape-img-wrapper {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background-color: #ECECEB;
  width: 100%;
  margin-top: 15px;
  margin-bottom:15px;
}
.landscape-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 769px) {
  .landscape-img-wrapper {
    margin-top: 0;
    margin-bottom:0;
  }
}

/***************************************
   Regions
***************************************/
.archive-regions-container {
  width: 100%;
  padding: 20px 20px 80px;
  background-color: #FBFBFA;
}
.region-section {
  width: 100%;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(44, 42, 41, 0.1);
  padding-bottom: 40px;
}
.region-section:last-child {
  border-bottom: none;
}
.region-header-block {
  margin-bottom: 25px;
}
.region-en {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #2C2A29;
}
.region-ja {
  font-size: 11px;
  font-weight: 300;
  color: rgba(44, 42, 41, 0.5);
  letter-spacing: 0.05em;
  margin-top: 2px;
  margin-bottom: 1em;
}
.region-info {
  display:none;
  font-size: 14px;
  font-weight: 300;
  color: rgba(44, 42, 41, 1);
  letter-spacing: 0.05em;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 15px;
  row-gap: 35px;
  width: 100%;
}
.area-card {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.area-meta-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 12px;
}
.area-num {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: rgba(44, 42, 41, 0.4);
  letter-spacing: 0.05em;
}
.area-title-ja {
  font-size: 13px;
  font-weight: 400;
  color: #2C2A29;
  letter-spacing: 0.02em;
}
.area-card.coming-soon .empty-bg {
  position:relative;
  overflow:hidden;
  width:100%;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(44, 42, 41, 0.2);
}
.area-card.coming-soon .empty-bg img {
  position:absolute;
  top:0;
  left:0;
  width:100%;
}
.area-card.coming-soon .empty-bg::after {
  content:"";
  display:block;
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(255, 255, 255, 0.8);
}
.area-card.coming-soon .empty-bg .coming-text {
  z-index:2;
  position:absolute;
  top:50%;
  left:50%;
  transform:translateX(-50%) translateY(-50%);
}
.area-card.is-ad {
  background-color: #ECECEB;
  padding: 10px;
}
.area-card.is-ad .area-title-ja.ad-text {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.4;
  color: rgba(44, 42, 41, 0.7);
}
.area-card.is-ad {
  background-color: #ECECEB;
  padding: 12px;
  border-radius: 0;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}
.area-card.is-ad:hover {
  background-color: #E2E2E0;
}
.area-card.is-ad .ad-thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}
.area-card.is-ad .ad-label {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 500;
  color: rgba(44, 42, 41, 0.45);
  letter-spacing: 0.1em;
}
.area-card.is-ad .area-title-ja.ad-text {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.45;
  color: rgba(44, 42, 41, 0.8);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

@media (min-width: 769px) {
  .archive-regions-container {
    margin:0 auto;
    padding: 60px 40px 100px;
    max-width:1400px;
  }
  .region-section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
    padding-bottom: 60px;
  }
  .region-header-block {
    width: 26%;
    margin-bottom: 0;
    position: sticky;
    top: 120px;
    height: fit-content;
  }
  .region-en { font-size: 18px; }
  .region-ja { font-size: 12px; }
  .areas-grid {
    width: 70%;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
    row-gap: 50px;
  }
}

@media (min-width: 1280px) {
  .region-info {
    display:block;
  }
}

/***************************************
   Area
***************************************/
.area-islands-container,
.area-tag-container {
  width: 100%;
  padding: 40px 20px 80px;
  background-color: #FBFBFA;
}
.islands-perfect-grid,
.tag-perfect-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  row-gap: 50px;
  width: 100%;
}
.island-grid-item,
.tag-grid-item {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.island-link-wrapper,
.tag-link-wrapper {
  text-decoration: none;
  display: block;
  width: 100%;
}
.island-img-wrapper,
.tag-img-wrapper {
  width: 100%;
  overflow: hidden;
  background-color: #ECECEB;
}
.island-img-wrapper.ratio-1x1 {
  aspect-ratio: 1 / 1;
}
.tag-img-wrapper.ratio-3x2 {
  aspect-ratio: 3 / 2;
}
.island-img-wrapper img,
.tag-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease-out;
}
.island-link-wrapper:hover .island-img-wrapper img,
.tag-link-wrapper:hover .tag-img-wrapper img {
  transform: scale(1.03);
}
span.island-link-wrapper .island-img-wrapper,
span.tag-link-wrapper .tag-img-wrapper {
  position:relative;
}
span.island-link-wrapper img,
span.tag-link-wrapper img {
  opacity:0.15;
}
span.island-link-wrapper.island-img-wrapper::after,
span.tag-link-wrapper .tag-img-wrapper::after {
  content:"PREPARING";
  position:absolute;
  top:50%;
  left:50%;
  font-family: 'Inter', sans-serif;
  color: rgba(44, 42, 41, 0.6);
  transform:translateX(-50%) translateY(-50%);
}
.island-grid-meta,
.tag-grid-meta {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.island-code,
.tag-code {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 500;
  color: rgba(44, 42, 41, 0.4);
  letter-spacing: 0.12em;
}
.island-name-ja,
.tag-name-ja {
  font-size: 15px;
  font-weight: 400;
  color: #2C2A29;
  letter-spacing: 0.05em;
}
.island-name-en,
.tag-name-en {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 300;
  color: rgba(44, 42, 41, 0.5);
  letter-spacing: 0.1em;
}

@media (min-width: 769px) {
  .area-islands-container,
  .area-tag-container {
    margin:0 auto;
    padding: 60px 40px 120px;
    max-width:1400px;
  }
  .islands-perfect-grid,
  .tag-perfect-grid {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 40px;
    row-gap: 80px;
  }
  .island-name-ja,
  .tag-name-ja {
    font-size: 16px;
  }
}

/***************************************
   Island
***************************************/
.block-intro, .block-split, .block-climate, .block-access {
  width: 100%;
  padding: 60px 20px;
  border-bottom: 1px solid rgba(44, 42, 41, 0.1);
}
.block-num {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(44, 42, 41, 0.5);
  display: block;
  margin-bottom: 15px;
}
.block-catch {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 15px;
}
.block-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(44, 42, 41, 0.8);
  margin-bottom: 20px;
}
.block-body p {
  margin-bottom:.7em;
}
.block-body p:last-child {
  margin-bottom:0;
}
.block-body a {
  display:inline-block;
  text-decoration:underline dotted;
}
.block-body a:hover {
  text-decoration:none;
}
.block-link {
  width:100%;
  max-width:300px;
  color:#fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height:40px;
  text-align:center;
  background-color:#2c2a29;
  display: inline-block;
}
.block-link:hover {
  opacity:0.8;
}
.widget-weather {
  border: 1px solid rgba(44, 42, 41, 0.1);
  padding: 30px;
  text-align: center;
  margin-top: 20px;
}
.widget-title {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(44, 42, 41, 0.5);
}
.widget-temp {
  font-size: 32px;
  font-weight: 300;
  margin: 10px 0;
}
.widget-status {
  font-size: 11px;
  font-weight: 500;
}
.access-routes {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}
.route-child {
  border-top: 1px solid rgba(44, 42, 41, 0.1);
  padding-top: 20px;
}
.route-type {
  font-size: 11px;
  font-weight: 500;
  color: rgba(44, 42, 41, 0.6);
  margin-bottom: 10px;
}
.route-detail h3 {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 8px;
}
.route-detail p {
  margin-bottom:.3em;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(44, 42, 41, 0.8);
}
.route-detail p strong {
  display:block;
}

@media (min-width: 769px) {
  .block-intro, .block-split, .block-climate, .block-access {
    margin:0 auto;
    padding: 100px 40px;
    max-width:1400px;
  }
  .intro-inner, .split-inner, .climate-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }
  .intro-text, .split-text, .climate-text {
    width: 50%;
  }
  .intro-image, .split-image, .weather-widget-place {
    width: 45%;
    margin-top: 0;
  }
  .block-split.reverse .split-inner {
    flex-direction: row-reverse;
  }
  .block-catch {
    font-size: 24px;
  }
  .access-routes {
    flex-direction: row;
    gap: 40px;
  }
  .route-child {
    width: 50%;
  }
}

/***************************************
   Ad
***************************************/
.island-page-ad {
  width: 100%;
  background-color: #FBFBFA;
  padding: 60px 20px;
  border-top: 1px solid rgba(44, 42, 41, 0.1);
  border-bottom: 1px solid rgba(44, 42, 41, 0.1);
  text-align: center;
}
.island-page-ad::before {
  content: 'ADVERTISEMENT';
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 500;
  color: rgba(44, 42, 41, 0.3);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.ad-banner-wrapper {
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  background-color: #ECECEB;
}
.ad-banner-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 1;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.ad-banner-wrapper img:hover {
  opacity: 0.9;
}

@media (min-width: 769px) {
  .island-page-ad {
    padding: 100px 0;
  }
}
@media (max-width: 768px) {
  .article-item.is-ad .article-link-wrapper {
    align-items: flex-start;
  }
}

/***************************************
   About
***************************************/
.block-statement {
  width: 100%;
  padding: 60px 20px;
  background-color: #FBFBFA;
}
.statement-inner {
  max-width: 800px;
  margin: 0 auto;
}
.statement-catch {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  color: #2C2A29;
  margin-top: 20px;
  letter-spacing: 0.05em;
}
.statement-body {
  margin-top: 40px;
}
.statement-body p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(44, 42, 41, 0.85);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.statement-body p:last-child {
  margin-bottom: 0;
}
.block-company-info {
  width: 100%;
  padding: 60px 20px 100px;
  background-color: #FBFBFA;
  border-top: 1px solid rgba(44, 42, 41, 0.08);
}
.company-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.company-link {
  color: #2C2A29;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  border-bottom: 1px solid #2C2A29;
  padding-bottom: 1px;
  transition: opacity 0.25s ease;
}
.company-link:hover {
  opacity: 0.6;
}
.info-table {
  margin-top: 40px;
  border-top: 1px solid #2C2A29;
}
.info-row {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  border-bottom: 1px solid rgba(44, 42, 41, 0.1);
}
.info-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #2C2A29;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.info-value {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(44, 42, 41, 0.8);
  letter-spacing: 0.03em;
}

@media (min-width: 769px) {
  .block-statement {
    padding: 100px 40px;
  }
  .statement-catch {
    font-size: 36px;
    line-height: 1.4;
  }
  .statement-body p {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .block-company-info {
    padding: 100px 40px 16px;
  }
}

/***************************************
   Terms
***************************************/
.block-legal-document {
  width: 100%;
  padding: 60px 20px 100px;
  background-color: #FBFBFA;
}
.legal-inner {
  max-width: 720px;
  margin: 0 auto;
}
.legal-intro p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: #2C2A29;
  letter-spacing: 0.03em;
  margin-top: 24px;
  margin-bottom: 45px;
}
.legal-sections {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.legal-article h3 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #2C2A29;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.legal-article p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(44, 42, 41, 0.85);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.legal-article p:last-child {
  margin-bottom: 0;
}
.legal-article ul {
  margin: 16px 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-article li {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(44, 42, 41, 0.85);
  letter-spacing: 0.03em;
  list-style-type: square;
}
.legal-date {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(44, 42, 41, 0.08);
  text-align: right;
}
.legal-date p {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(44, 42, 41, 0.5);
}

@media (min-width: 769px) {
  .block-legal-document {
    padding: 100px 40px 140px;
  }
}

/***************************************
   Contact
***************************************/
.block-contact-form {
  width: 100%;
  padding: 60px 20px 100px;
  background-color: #FBFBFA;
}
.contact-inner {
  max-width: 640px;
  margin: 0 auto;
}
.site-form {
  margin-top: 40px;
}
.form-group {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}
.form-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #2C2A29;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.required-flag {
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  font-weight: 500;
  color: rgba(44, 42, 41, 0.4);
  letter-spacing: 0.08em;
}
.form-control {
  width: 100%;
  padding: 14px;
  background-color: #FFFFFF;
  border: 1px solid rgba(44, 42, 41, 0.15);
  border-radius: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #2C2A29;
  box-sizing: border-box;
  outline: none;
  transition: all 0.25s ease;
}
.form-control:focus {
  border-color: #2C2A29;
  background-color: #FBFBFA;
}
textarea.form-control {
  resize: vertical;
}
.select-wrapper {
  position: relative;
  width: 100%;
}
.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 40px;
}
.select-wrapper::after {
  content: "↓";
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: rgba(44, 42, 41, 0.5);
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.error-message {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #A94442;
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.form-submit-area {
  margin-top: 50px;
}
.form-submit-btn {
  width: 100%;
  height: 54px;
  background-color: #2C2A29;
  color: #FFFFFF;
  border: 1px solid #2C2A29;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-submit-btn:hover {
  background-color: #4A4745;
  border-color: #4A4745;
}
.form-submit-btn:disabled,
.form-submit-btn.is-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (min-width: 769px) {
  .block-contact-form {
    padding: 100px 40px 140px;
  }
  .form-control {
    font-size: 14px;
    padding: 16px;
  }
}

/***************************************
   404
***************************************/
.block-error-page {
  width: 100%;
  min-height: calc(100vh - 70px - 160px);
  padding: 80px 20px 100px;
  background-color: #FBFBFA;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.error-page-inner {
  max-width: 600px;
  width: 100%;
  text-align: center;
}
.error-code-huge {
  font-family: 'Inter', sans-serif;
  font-size: 100px;
  font-weight: 300;
  color: rgba(44, 42, 41, 0.08);
  line-height: 1;
  letter-spacing: 0.05em;
  user-select: none;
}
.error-message-block {
  margin-top: 30px;
}
.error-catch {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #2C2A29;
  letter-spacing: 0.04em;
  margin-top: 10px;
}
.error-body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(44, 42, 41, 0.7);
  letter-spacing: 0.02em;
  margin-top: 16px;
}
.error-navigation {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(44, 42, 41, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nav-label {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 500;
  color: rgba(44, 42, 41, 0.4);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.error-nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.error-redirect-link {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #2C2A29;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: opacity 0.25s ease;
}
.error-redirect-link:hover {
  opacity: 0.6;
}

@media (min-width: 769px) {
  .block-error-page {
    min-height: calc(100vh - 80px - 110px);
    padding: 120px 40px;
  }
  .error-code-huge {
    font-size: 160px;
  }
  .error-catch {
    font-size: 24px;
  }
  .error-body {
    font-size: 14px;
  }
}