@charset "UTF-8";
/* ============================================
   Base Styles
   ============================================ */

/* ----------------------------------------
   Root
   ---------------------------------------- */
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family-primary);
  color: var(--color-text-primary);
  background-color: var(--color-bg-white);
  line-height: var(--line-height-tight);
}

/* ----------------------------------------
   Links
   ---------------------------------------- */
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-default);
}

a:hover {
  opacity: 0.7;
}

/* ----------------------------------------
   Images
   ---------------------------------------- */
img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}

/* ----------------------------------------
   Layout
   ---------------------------------------- */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  background-color: var(--color-bg-white);
}

.main {
  flex: 1;
  width: 100%;
}

/* ----------------------------------------
   Utility Classes
   ---------------------------------------- */
/* Font Family */
.font-frank {
  font-family: var(--font-family-accent);
}

.font-lato {
  font-family: var(--font-family-number);
}

.font-inter {
  font-family: var(--font-family-heading);
}

/* Text Alignment */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/* Visibility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ----------------------------------------
   Responsive - Tablet
   ---------------------------------------- */
@media screen and (max-width: 840px) {
  html {
    font-size: 15px;
  }
}

/* ----------------------------------------
   Responsive - Mobile
   ---------------------------------------- */
@media screen and (max-width: 540px) {
  html {
    font-size: 14px;
  }
}

/* ----------------------------------------
   LP Content (Gutenberg)
   ---------------------------------------- */
.lp-content {
  width: 100%;
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: var(--spacing-xl) var(--spacing-6xl) var(--spacing-6xl);
}

.lp-content > * {
  max-width: 100%;
}

/* Gutenbergブロックの幅調整 */
.lp-content .wp-block-columns {
  max-width: 100%;
}

.lp-content .wp-block-image img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   Responsive
   ============================================ */
@media screen and (max-width: 840px) {
  .lp-content {
    padding: var(--spacing-xl) var(--spacing-4xl) var(--spacing-4xl);
  }
}

@media screen and (max-width: 540px) {
  .lp-content {
    padding: var(--spacing-xl) var(--spacing-xl);
  }
  
  .lp-content .wp-block-columns {
    flex-direction: column;
  }
}