<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* ↓↓↓ common ↓↓↓ */

:root {
  --orange: #f29600;
}

/* ↑↑↑ common ↑↑↑ */

/* ↓↓↓ under-fv ↓↓↓ */

.under-fv {
  width: 100%;
  height: 422px;
  position: relative;
}

@media (max-width: 768px) {
  .under-fv {
    /* height: 300px; */
    height: 220px;
  }
}

.under-fv .image {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.under-fv .image img {
  object-fit: cover;
  height: 100%;
}

.under-fv .logo {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  width: 210px;
  /* height: 55px; */
  height: 36px;
}

@media (max-width: 768px) {
  .under-fv .logo {
    top: 30%;
    width: 125px;
    /* display: none; */
  }
}

.under-fv .page-title {
  position: absolute;
  bottom: -25px;
  left: 0;
  width: 100%;
  height: 113px;
}

.under-fv .page-title::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(128, 128, 128);
  mix-blend-mode: multiply;
}

.under-fv .page-title .group {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  z-index: 1;
}

.under-fv .page-title .group .title {
  font-size: 2.7rem;
  font-weight: bold;
  line-height: 1;
}

.under-fv .page-title .group .caption {
  margin-top: 13px;
  font-family: 'Roboto', sans-serif;
  font-size: 1.4rem;
  letter-spacing: .01em;
  line-height: 1;
}

/* ↑↑↑ under-fv ↑↑↑ */

/* ↓↓↓ heading_area ↓↓↓ */

.heading_area .inner {
  padding: 108px 25px 0;
}

@media screen and (max-width:768px) {
  .heading_area .inner {
    padding: 65px 25px 0;
  }
}

.heading_area .inner .text {
  max-width: 600px;
  width: 100%;
  font-size: 1.6rem;
  text-align: justify;
  margin: 0 auto;
}

.heading_area .inner .image {
  max-width: 600px;
  width: 100%;
  height: 100%;
  margin: 55px auto 0;
}

@media screen and (max-width:768px) {
  .heading_area .inner .image {
    margin: 40px auto 0;
  }
}

/* ↑↑↑ heading_area ↑↑↑ */

/* ↓↓↓ detail_area ↓↓↓ */

.detail_area {
  background-color: #333;
  margin-top: -95px;
  padding: 195px 0 100px;
}

@media screen and (max-width:768px) {
  .detail_area {
    margin-top: -60px;
    padding: 120px 0 60px;
  }
}

.detail_area .inner:not(:last-child) {
  margin-bottom: 80px;
}

.detail_area .inner .cap_area {
  padding: 0 25px;
  position: relative;
  z-index: 1;
}

.detail_area .inner .cap_area .box {
  max-width: 1000px;
  width: 100%;
  background-color: #edf0ec;
  margin: -60px auto 0;
  padding: 40px 82px;
}

@media screen and (max-width:768px) {
  .detail_area .inner .cap_area .box {
    margin: -40px auto 0;
    padding: 40px 25px 30px;
  }
}

.detail_area .inner .cap_area .box .cont .title {
  font-size: 4.8rem;
  line-height: 1;
  height: 100%;
  display: block;
  color: #503c3c;
  text-align: center;
}

@media screen and (max-width:768px) {
  .detail_area .inner .cap_area .box .cont .title {
    font-size: 4.2rem;
  }
}

.detail_area .inner .cap_area .box .cont .line {
  content: '';
  max-width: 400px;
  width: 100%;
  height: 1px;
  background-color: var(--orange);
  margin: 17px auto 0;
}

.detail_area .inner .cap_area .box .cont .sub {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  height: 100%;
  display: block;
  text-align: center;
  margin-top: 20px;
}

.detail_area .inner .cap_area .box .cont .text {
  font-size: 1.6rem;
  text-align: justify;
  max-width: 600px;
  width: 100%;
  height: 100%;
  margin: 30px auto 0;
}

@media screen and (max-width:768px) {
  .detail_area .inner .cap_area .box .cont .text {
    margin: 22px auto 0;
  }
}

.detail_area .inner .cap_area .box .image_area {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

@media screen and (max-width:768px) {
  .detail_area .inner .cap_area .box .image_area {
    display: block;
    max-width: 600px;
    margin: 20px auto 0;
  }
}

.detail_area .inner .cap_area .box .image_area img {
  width: 30%;
  height: 100%;
}

@media screen and (max-width:768px) {
  .detail_area .inner .cap_area .box .image_area img {
    width: 100%;
  }

  .detail_area .inner .cap_area .box .image_area img:not(:last-child) {
    margin-bottom: calc((20 - 10) * ((100vw - 375px) / (768 - 375)) + 10px);
  }
}

@media screen and (max-width:374px) {
  .detail_area .inner .cap_area .box .image_area img:not(:last-child) {
    margin-bottom: 10px;
  }
}

/* ↑↑↑ detail_area ↑↑↑ */

/* ↓↓↓ other-link ↓↓↓ */
.other-link {
  margin-top: 95px;
}

@media (max-width: 768px) {
  .other-link {
    margin-top: 50px;
  }
}

/* ↑↑↑ other-link ↑↑↑ */</pre></body></html>