@charset "utf-8";

/* --------------------------------------------------
initial settings
-------------------------------------------------- */
:root {
  --color-dark-blue: #002f87;
  --color-light-blue: #0099fa;
  --color-yellow: #f7d031;
  --color-orange: #fc5d1f;
  --color-blue: #0e71e2;
  --color-gray: #c6c6c6;
  --color-light-gray: rgba(0, 47, 135, 0.05);
  --color-black: #25190c;

  --color-light-blue-03: rgba(0, 154, 250, 0.3);
  --color-light-blue-06: rgba(0, 154, 250, 0.6);
  --color-yellow-07: rgba(247, 207, 49, 0.7);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

body {
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  color: var(--color-black);
  overflow-x: hidden;
}

html.is-active, body.is-active {
  touch-action: none;
  overflow: hidden;
  overscroll-behavior: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
}

ol, ul {
  list-style: none;
}

ol.need-list-style, ul.need-list-style {
  list-style-type: disc;
  padding-inline-start: 16px;
}

p {
  font-size: 16px;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: var(--color-black);
  transition: all 0.3s;
}

a:hover {
  color: var(--color-blue);
}

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

button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 16px;
}

input, textarea {
  font-size: 16px;
  font-family: inherit;
}

.font-bold {
  font-weight: bold;
}

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

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

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

@media screen and (min-width: 768px) {
  .md_text-left {
    text-align: left;
  }

  .md_text-center {
    text-align: center;
  }

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

@media screen and (min-width: 1024px) {
  html {
    scroll-padding-top: 104px;
  }

  p {
    font-size: 18px;
  }

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

  .lg_text-center {
    text-align: center;
  }

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


/* --------------------------------------------------
display hidden or block
-------------------------------------------------- */
.hidden {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .md_hidden {
    display: none !important;
  }

  .md_block {
    display: block !important;
  }
}

@media screen and (min-width: 1024px) {
  .lg_hidden {
    display: none !important;
  }

  .lg_block {
    display: block !important;
  }
}


/* --------------------------------------------------
button setting
-------------------------------------------------- */
.btn {
  display: block;
  border-radius: 4px;
  transition: all 0.3s;
  font-weight: bold;
  text-align: center;
}

.btn-thick {
  padding: 16px 24px;
}

.btn-thin {
  padding: 8px 24px;
}

.btn:hover {
  opacity: 0.9;
}

.btn.btn-dark-blue {
  background-color: var(--color-dark-blue);
  color: white;
}

.btn.btn-light-blue {
  background-color: var(--color-light-blue);
  color: white;
}

.btn.btn-blue {
  background-color: var(--color-blue);
  color: white;
}

.btn.btn-yellow {
  background-color: var(--color-yellow);
   color: var(--color-black);
}

.btn.btn-white {
  background-color: white;
  color: var(--color-black);
}


/* --------------------------------------------------
common
-------------------------------------------------- */
.ellipsis {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}

.ellipsis.ell-2 {
  line-clamp: 2;
}

.marker {
  /* background: linear-gradient(transparent 60%, var(--color-yellow) 60%);
  width: fit-content; */
  position: relative;
  display: inline-block;

  &::before {
    content: "";
    position: absolute;
    left: -8px;
    right: -8px;
    bottom: 0.1em;

    width: calc(100% + 16px);
    height: 0.6em;

    background: var(--color-yellow-07); /* マーカー色 */
    transform: skewX(-30deg);
    z-index: -1;
  }
}

.bg-colored {
  background-color: var(--color-light-gray);
}

.md_container {
  max-width: calc(768px - 48px);
  margin: 0 auto;
}

.lg_container {
  max-width: calc(1024px - 48px);
  margin: 0 auto;
}

.xl_container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding-y {
  padding-top: 48px;
  padding-bottom: 48px;
}

.section-padding-t {
  padding-top: 48px;
}


.section-heading {
  margin-bottom: 24px;
}

.section-heading-title-en {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--color-dark-blue);
  font-family: "Liter", serif;
  letter-spacing: 2px;
}

.section-heading-title-ja {
  text-align: center;
  font-size: 20px;
}

.section-heading-desc {
  margin-top: 16px;
}

.box-padding-t {
  padding-top: 48px;
}

.box-heading {
  padding-bottom: 24px;
}

.box-heading-title {
  font-size: 20px;
}

.box-heading-p {
  margin-top: 8px;
}

@media screen and (min-width: 1024px) {
  .section-padding-y {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-padding-t {
    padding-top: 80px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading-title-en {
    font-size: 16px;
  }

  .section-heading-title-ja {
    font-size: 32px;
  }

  .section-heading-desc {
    margin-top: 24px;
  }

  .box-padding-t {
    padding-top: 80px;
  }

  .box-heading {
    padding-bottom: 32px;
  }

  .box-heading-title {
    font-size: 24px;
  }

  .box-heading-p {
    margin-top: 16px;
  }
}


/* --------------------------------------------------
header
-------------------------------------------------- */
.header {
  position: fixed;
  z-index: 100;
  width: 100%;
}

.header-outer {
  position: relative;
}

.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transition: height 1s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.5s, box-shadow 0.5s;
}

.header-inner {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  position: relative;
}

.header-logo a {
  display: flex;
  align-items: center;
}

.header-logo a img {
  width: auto;
  height: 32px;
}

.header-logo-normal {
  display: none;
  opacity: 0;
  transition: opacity 0.5s;
}

.header-logo-white {
  display: block;
  opacity: 1;
  transition: opacity 0.5s;
}

.header-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(100vh - 48px);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
}

.header-nav ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  font-weight: bold;
  font-family: "Liter", serif;
  letter-spacing: 2px;
}

.header-nav ul li {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.header-nav ul li a {
  color: var(--color-black);
}

.hbg-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-right: 24px;
  position: absolute;
  right: 0;
  height: 40%;
}

.hbg-btn-line {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background-color: white;
  transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

@media screen and (min-width: 1024px) {
  .header-inner {
    height: 104px;
  }

  .header-nav {
    position: static;
    height: auto;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: none;
  }

  .header-nav ul {
    flex-direction: row;
  }

  .header-nav ul li {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .header-nav ul li a {
    position: relative;
  }

  .header-nav ul li a:not(.btn):hover {
    color: var(--color-blue);
  }
}


/* --------------------------------------------------
header - is-active
-------------------------------------------------- */
@media screen and (max-width: 1023px) {
  #header.is-active .hbg-btn {
    z-index: 110;
  }

  #header.is-active .hbg-btn-line {
    background-color: var(--color-black);
  }

  #header.is-active .hbg-btn-line:nth-child(1) {
    transform: translate3d(0, 8px, 0) rotate(-135deg);
    z-index: 1;
  }
  
  #header.is-active .hbg-btn-line:nth-child(2) {
    transform: rotate(-90deg);
    opacity: 0;
    z-index: 0;
  }
  
  #header.is-active .hbg-btn-line:nth-child(3) {
    transform: translate3d(0, -8px, 0) rotate(-45deg);
    z-index: 1;
  }
  
  
  #header.is-active .header-bg {
    height: 100vh;
    background-color: white;
    z-index: 110;
  }
  
  #header.is-active .header-nav {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.3s ease, visibility 0s 0s;
    z-index: 110;
  }
  
  #header.is-active .header-nav ul li {
    opacity: 1;
    transform: translateY(0); 
  }
  
  #header.is-active .header-nav ul li:nth-child(1) {
    transition-delay: 0s;
  }
  
  #header.is-active .header-nav ul li:nth-child(2) {
    transition-delay: 0.1s;
  }
  
  #header.is-active .header-nav ul li:nth-child(3) {
    transition-delay: 0.2s;
  }
  
  #header.is-active .header-nav ul li:nth-child(4) {
    transition-delay: 0.3s;
  }
  
  #header.is-active .header-nav ul li:nth-child(5) {
    transition-delay: 0.4s;
  }
  
  #header.is-active .header-nav ul li:nth-child(6) {
    transition-delay: 0.5s;
  }

  #header.is-active .header-nav ul li:nth-child(7) {
    transition-delay: 0.6s;
  }
}


/* --------------------------------------------------
header - is-scroll
-------------------------------------------------- */
#header.is-scroll .header-bg {
  background-color: white;
  box-shadow: 0 0 4px var(--color-gray);
}

#header.is-scroll .header-logo-normal {
  display: block;
  opacity: 1;
}

#header.is-scroll .header-logo-white {
  display: none;
  opacity: 0;
}

#header.is-scroll .hbg-btn-line {
  background-color: var(--color-black);
}


/* --------------------------------------------------
hero
-------------------------------------------------- */
.hero {
  background-image: url("../images/hero/hero_sp.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 700px;
}

.hero-title {
  position: relative;
  top: 32%;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  color: var(--color-black);
}

.hero-title h1 {
  font-size: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #000;
}

@media screen and (min-width: 768px) {
  .hero {
    height: 560px;
  }

  .hero-title h1 {
    flex-direction: row;
  }
}

@media screen and (min-width: 1024px) {
  .hero {
    background-image: url("../images/hero/hero_pc.jpg");
    height: 700px;
  }

  .hero-title {
    top: 28%;
  }

  .hero-title h1 {
    font-size: 40px;
  }

  .hero-title p {
    font-size: 20px;
  }
}

@media screen and (min-width: 1280px) {
  .hero {
    height: 800px;
  }

  .hero-title {
    top: 24%;
  }

  .hero-title h1 {
    font-size: 56px;
    gap: 16px;
  }

  .hero-title p {
    font-size: 24px;
  }
}


/* --------------------------------------------------
cta
-------------------------------------------------- */
.cta {
  position: relative;
  background-image: url("../images/cta/cta_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center -80px;
}

.cta::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, var(--color-dark-blue), transparent);
  background-color: rgba(0, 0, 0, 0.6);
}

.cta-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 10;
}

.cta-text {
  color: white;
}

.cta-text h2 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 8px;
}

.cta-btns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.cta-btns li {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .cta-box {
    gap: 32px;
  }

  .cta-text h2 {
    margin-bottom: 24px;
  }

  .cta-btns {
    flex-direction: row;
    gap: 24px;
  }

  .cta-btns li {
    max-width: 400px;
  }
}

@media screen and (min-width: 1024px) {
  .cta-box {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  
  .cta-text h2 {
    font-size: 28px;
  }
}


/* --------------------------------------------------
intro
-------------------------------------------------- */
.intro-text {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  border: 1px dashed var(--color-gray);
  padding: 16px;
}

@media screen and (min-width: 768px) {
  .intro-text {
    width: fit-content;
    margin: 0 auto;
    padding: 16px 24px;
  }
}

@media screen and (min-width: 1024px) {
  .intro-text {
    font-size: 20px;
    padding: 24px;
  }
}

@media screen and (min-width: 1280px) {
  .intro-text {
    font-size: 24px;
  }
}

/* --------------------------------------------------
about
-------------------------------------------------- */
.about-desc {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 16px;
}

.about-text h3 {
  font-size: 18px;
  color: var(--color-blue);
  text-align: center;
  margin-bottom: 8px;
}

.about-detail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.about-detail-img {
  box-shadow: 0 0 8px var(--color-gray);
  background-color: white;
  border-radius: 8px;
  padding: 24px;
}

.about-detail-img p {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.about-detail-img img {
  width: 80%;
  margin: 0 auto;
}

.about-detail-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.about-detail-list li h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

@media screen and (min-width: 768px) {
  .about-detail {
    flex-direction: row-reverse;
  }

  .about-detail-img, .about-detail-list {
    width: calc(50% - 12px);
  }
}

@media screen and (min-width: 1024px) {
  .about-desc {
    gap: 32px;
    padding-top: 24px;
  }

  .about-text h3 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .about-detail {
    gap: 48px;
  }

  .about-detail-img, .about-detail-list {
    width: calc(50% - 24px);
  }

  .about-detail-img {
    padding: 32px;
  }

  .about-detail-list {
    gap: 48px;
  }

  .about-detail-list li h4 {
    font-size: 20px;
    margin-bottom: 8px;
  }
}


/* --------------------------------------------------
features
-------------------------------------------------- */
.features-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 76px;
  margin-top: 76px;
}

.features-list li {
  background-color: white;
  box-shadow: 0 0 8px var(--color-gray);
  border-radius: 8px;
  padding: 68px 24px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
}

.features-list li span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 104px;
  height: 104px;
  background-color: var(--color-blue);
  border-radius: 50%;
  color: white;
  font-size: 32px;
  font-weight: bold;
  position: absolute;
  top: -50px;
}

.features-list li h4 {
  font-size: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 12px;
}

.features-list li p {
  border-top: 1px solid var(--color-gray);
  padding-top: 20px;
  width: 100%;
  text-align: center;
}

.features-list li img {
  width: 80%;
  margin: 0 auto;
  max-width: 320px;
}

@media screen and (min-width: 768px) {
  .features-list {
    grid-template-columns: 1fr 1fr;
    gap: 76px 24px;
  }
}

@media screen and (min-width: 1024px) {
  .features-list {
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 92px;
  }
}


/* --------------------------------------------------
channel
-------------------------------------------------- */
.channel-graph img {
  max-width: 800px;
  margin: 0 auto;
}

.channel-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px 24px;
}

.channel-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.channel-box:last-child .channel-box-text-case {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.channel-box-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.channel-box-text h4 {
  text-align: center;
  font-size: 16px;
}

.channel-box-text-case {
  font-size: 14px;
}

.channel-box-img {
  border-radius: 4px;
}

.ctv-sample-case-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ctv-sample-case-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.csc-img {
  border-radius: 4px;
}

.csc-case-num {
  font-size: 16px;
  font-weight: bold;
  color: var(--color-light-blue-06);
  font-family: "Train One", system-ui;
}

.csc-case-title {
  font-size: 24px;
  margin-bottom: 12px;

  span {
    position: relative;
    display: inline-block;

    &::before {
      content: "";
      position: absolute;
      left: -8px;
      right: -8px;
      bottom: 0.1em;

      width: calc(100% + 16px);
      height: 0.6em;

      background: var(--color-light-blue-03); /* マーカー色 */
      transform: skewX(-30deg);
      z-index: -1;
    }
  }
}

.csc-case-desc li + li {
  margin-top: 8px;
}

@media screen and (min-width: 768px) {
  .channel-list {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .channel-box-text-case {
    font-size: 12px;
  }

  .ctv-sample-case-list {
    gap: 48px;
  }

  .ctv-sample-case-item {
    flex-direction: row-reverse;
    align-items: center;
    gap: 32px;
    width: 100%;
  }

  .ctv-sample-case-item:nth-of-type(odd) {
    flex-direction: row-reverse;
  }

  .ctv-sample-case-item:nth-of-type(even) {
    flex-direction: row;
  }

  .csc-img, .csc-text {
    width: calc(50% - 16px);
  }
}

@media screen and (min-width: 1024px) {
  .channel-list {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
  
  .ctv-sample-case-item {
    gap: 48px;
  }

  .csc-img, .csc-text {
    width: calc(50% - 24px);
  }

  .csc-case-num {
    font-size: 20px;
  }

  .csc-case-title {
    font-size: 32px;
  }

  .csc-case-desc li {
    font-size: 18px;
  }
}


/* --------------------------------------------------
measurement
-------------------------------------------------- */
.measurement-desc-img {
  display: grid;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.measurement-desc-img .arrow {
  width: 64px;
  height: 64px;
  margin: 0 auto;
}

.measurement-desc-img .picture {
  border-radius: 8px;
  box-shadow: 0 0 8px var(--color-gray);
}

.measurement-desc-p {
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  .measurement-desc-img {
    grid-template-columns: 1fr 64px 1fr;
    gap: 24px;
  }

  .measurement-desc-img .arrow {
    transform: rotate(-90deg);
  }
}

@media screen and (min-width: 1024px) {
  .measurement-desc-img {
    grid-template-columns: 1fr 96px 1fr;
    gap: 48px;
  }

  .measurement-desc-img .arrow {
    width: 96px;
    height: 96px;
  }

  .measurement-desc-p {
    margin-top: 48px;
  }
}

/* --------------------------------------------------
company
-------------------------------------------------- */
.company-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.company-list li {
  display: flex;
  justify-content: center;
  align-items: center;
}

.company-list img {
  max-width: 200px;
}

@media screen and (min-width: 768px) {
  .company-list {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}


/* --------------------------------------------------
case
-------------------------------------------------- */
.case-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.case-title {
  margin: 8px 0;
  font-size: 16px;
}

.case-time {
  font-size: 12px;
  color: var(--color-black);
}

@media screen and (min-width: 768px) {
  .case-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 1024px) {
  .case-list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px 24px;
  }
}


/* --------------------------------------------------
plan
-------------------------------------------------- */
.plan-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.plan-box {
  position: relative;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.plan-box::before, .plan-box::after {
  position: absolute;
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 8px;
}

.plan-box::before {
  z-index: 1;
  background-color: white;
  box-shadow: 0 0 8px var(--color-gray);
}

.plan-box::after {
  background-image: radial-gradient(var(--color-blue) 35%, transparent 35%), radial-gradient(var(--color-blue) 35%, transparent 35%);
  background-size: 4px 4px;
  background-position: 0 0, 2px 2px;
  transform: scale(1.05);
  rotate: -3deg;
  opacity: 0.2;
}

.plan-title, .plan-desc, .plan-btn, .plan-detail {
  position: relative;
  z-index: 10;
}

.plan-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.plan-title p {
  font-weight: bold;
  color: var(--color-blue);
  font-size: 14px;
  font-family: "Liter", serif;
  letter-spacing: 2px;
}

.plan-title h3 {
  font-size: 24px;
  margin-bottom: -8px;
}

.plan-btn {
  width: 100%;
}

.plan-desc {
  font-size: 14px;
  text-align: center;
  flex-grow: 1;
}

.plan-desc span {
  font-size: 12px;
}

.plan-detail li {
  font-size: 14px;
}

.plan-detail li::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../images/plan/pencil.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 8px;
}

.plan-detail li + li {
  margin-top: 4px;
}

.plan-contact {
  margin-top: 48px;
}

@media screen and (min-width: 768px) {
  .plan-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 1024px) {
  .plan-list {
    gap: 80px;
  }
}


/* --------------------------------------------------
footer
-------------------------------------------------- */
.footer-inner {
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.footer-logo {
  width: fit-content;
}

.footer-logo a {
  display: flex;
  align-items: center;
}

.footer-logo a img {
  width: auto;
  height: 32px;
}

.footer-text {
  display: flex;
  flex-direction: column-reverse;
  gap: 16px;
}

.footer-small {
  font-size: 12px;
}

.footer-links {
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-links a + a {
  border-left: 1px solid var(--color-black);
  padding-left: 16px;
}

@media screen and (min-width: 768px) {
  .footer-text {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}


/* --------------------------------------------------
fade-up setting
-------------------------------------------------- */
.fade-up-item {
  transition: opacity 0.7s, transform 0.7s ease;
  transform: translateY(50px);
  opacity: 0;
}

@media screen and (min-width: 768px) {
  .fade-up-item-grid-01 {
    transform: translateY(50px);
  }

  .fade-up-item-grid-02 {
    transform: translateY(150px);
  }

  .fade-up-item-grid-03 {
    transform: translateY(50px);
  }
}

@media screen and (min-width: 1024px) {
  .fade-up-item-grid-01 {
    transform: translateY(50px);
  }

  .fade-up-item-grid-02 {
    transform: translateY(150px);
  }

  .fade-up-item-grid-03 {
    transform: translateY(250px);
  }
}

.is-fade-up {
  transform: translateY(0);
  opacity: 1;
}