@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

address {
  font-style: normal;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 120px; /* .header + 30px */
}
@media (max-width: 640px) {
  html {
    scroll-padding-top: 22.5vw;
  }
}

body {
  font-size: 16px;
  line-height: 1.7;
  font-family: "Hiragino Sans", Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
  color: #535353;
  background-color: #ffffff;
}
@media (max-width: 640px) {
  body {
    font-size: 2.8125vw;
    line-height: 1.66;
  }
}

.l-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

@media (min-width: 641px) {
  .sp-only {
    display: none;
  }
}

.header {
  min-width: 1024px;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 640px) {
  .header {
    min-width: 100%;
  }
}
.header__inner {
  width: 100%;
  max-width: 1400px;
  height: 90px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 640px) {
  .header__inner {
    height: 16.875vw;
  }
}
.header__logo {
  position: absolute;
  left: 80px;
  top: 33px;
  z-index: 100;
}
@media (max-width: 1280px) {
  .header__logo {
    left: 2%;
  }
}
@media (max-width: 640px) {
  .header__logo {
    width: 49.375vw;
    left: 2.8125vw;
    top: 3.4375vw;
  }
  .header__logo img {
    width: 100%;
    height: auto;
  }
}
.header__contact {
  width: 120px;
  height: 90px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 100;
  background-image: url(../images/header/icon-contact.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #064e95;
  transition: background-color 0.2s ease;
}
.header__contact:hover {
  background-color: #65aadd;
}
.header__contact a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-indent: -9999px;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .header__contact {
    width: 15vw;
    height: 16.875vw;
    background-size: 6.25vw auto;
  }
}
.header__toggle {
  display: none;
}
@media (max-width: 640px) {
  .header__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 15vw;
    height: 16.875vw;
    position: absolute;
    right: 15vw;
    top: 0;
    z-index: 100;
    background-color: #959595;
    padding: 5.3125vw 4.375vw;
    gap: 0.9375vw;
    border: 0;
    cursor: pointer;
  }
}
.header__toggle span {
  display: block;
  width: 100%;
  height: 0.78125vw;
  background-color: #ffffff;
  border-radius: 0.390625vw;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header__toggle[aria-expanded=true] span:nth-child(1) {
  transform: translateY(1.71875vw) rotate(45deg);
}
.header__toggle[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.header__toggle[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-1.71875vw) rotate(-45deg);
}
.header__nav {
  padding-top: 50px;
  padding-right: 146px;
}
@media (max-width: 640px) {
  .header__nav {
    width: 100%;
    height: 100vh;
    padding: 0;
    background-color: #ffffff;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .header__nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.header__nav-list {
  width: 100%;
  text-align: right;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 640px) {
  .header__nav-list {
    text-align: left;
    padding: 25vw 7.5vw 0 7.5vw;
  }
}
.header__nav-item {
  display: inline-block;
  padding-left: 52px;
}
@media (max-width: 1280px) {
  .header__nav-item {
    padding-left: 30px;
  }
}
@media (max-width: 1100px) {
  .header__nav-item {
    padding-left: 16px;
  }
}
@media (max-width: 640px) {
  .header__nav-item {
    width: 100%;
    padding-left: 0;
    border-bottom: solid #535353 1px;
  }
}
.header__nav-link {
  display: block;
  position: relative;
  font-size: 16px;
  line-height: 40px;
  color: #000000;
  transition: color 0.2s ease;
}
@media (max-width: 640px) {
  .header__nav-link {
    font-size: 3.28125vw;
    line-height: 16.25vw;
    padding-left: 0.625vw;
  }
  .header__nav-link::before {
    content: "→";
    display: inline-block;
    position: absolute;
    right: 0.625vw;
    bottom: 0;
  }
}
@media (min-width: 641px) {
  .header__nav-link::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: 4px;
    left: auto;
    width: 0;
    height: 2px;
    background-color: #064e95;
    transition: width 0.25s ease, opacity 0.25s ease;
  }
  .header__nav-link:hover {
    color: #064e95;
  }
  .header__nav-link:hover::after {
    left: 0;
    right: auto;
    width: 100%;
    opacity: 0.9;
  }
}
.header__nav-list-sp {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 3.125vw 7.5vw 5vw 7.5vw;
}
@media (min-width: 641px) {
  .header__nav-list-sp {
    display: none;
  }
}
.header__nav-item-sp {
  width: 100%;
  padding: 0;
  margin: 0;
}
.header__nav-link-sp {
  display: block;
  width: 100%;
  color: #535353;
  font-size: 2.96875vw;
  line-height: 10vw;
}

.main {
  width: 100%;
  min-width: 1024px;
  padding-top: 42px;
  flex: 1;
}
@media (max-width: 640px) {
  .main {
    min-width: unset;
    padding-top: 5vw;
  }
}
.main a:link,
.main a:visited {
  color: #064e95;
  text-decoration: underline;
}
.main a:hover,
.main a:focus {
  color: #65aadd;
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  position: relative;
}
@media (max-width: 640px) {
  .container {
    width: 93.75%;
  }
}

.page-title {
  padding: 25px 0 35px;
}
.page-title h2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 2.22em;
  margin-bottom: 10px;
  font-size: 45px;
  line-height: 1.11;
  font-weight: bold;
  color: #064e95;
  font-family: Arial, Helvetica, sans-serif;
}
@media (max-width: 640px) {
  .page-title h2 {
    min-height: 6.9375vw;
    font-size: 8.75vw;
    margin-bottom: 1.875vw;
  }
}
.page-title h3 {
  font-size: 20px;
  line-height: 1.25;
  font-weight: bold;
  color: #000000;
  padding-left: 1em;
  position: relative;
}
@media (max-width: 640px) {
  .page-title h3 {
    font-size: 3.75vw;
  }
}
.page-title h3::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #8ec555;
  border-radius: 50%;
}
@media (max-width: 640px) {
  .page-title h3::before {
    width: 1.5625vw;
    height: 1.5625vw;
  }
}

.page-image {
  width: 100%;
  height: 246px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 640px) {
  .page-image {
    height: 44.0625vw;
  }
}

.page-nav {
  line-height: 37px;
  font-weight: normal;
  background-image: url(../images/common/page-nav-bg_pc.png);
  background-position: center center;
  background-repeat: no-repeat;
}
@media (max-width: 640px) {
  .page-nav {
    line-height: 8.125vw;
    background-image: url(../images/common/page-nav-bg_sp.png);
    background-size: 100% 100%;
  }
}
.page-nav ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-nav li {
  display: inline-flex;
  align-items: center;
}
.page-nav li:not(:last-child)::after {
  content: ">";
  margin-inline: 0.5em;
}
.page-nav a:link,
.page-nav a:visited {
  color: #535353;
  text-decoration: none;
}
.page-nav a:hover,
.page-nav a:focus {
  color: #064e95;
  text-decoration: underline;
}

.page-content {
  padding-top: 100px;
}
@media (max-width: 640px) {
  .page-content {
    padding-top: 14.0625vw;
  }
}
.page-content__title {
  text-align: center;
  margin-bottom: 80px;
}
.page-content__title h4 {
  margin-bottom: 10px;
  font-size: 45px;
  line-height: 1.11;
  font-weight: bold;
  color: #064e95;
  font-family: Arial, Helvetica, sans-serif;
}
@media (max-width: 640px) {
  .page-content__title h4 {
    margin-bottom: 1.875vw;
    font-size: 8.75vw;
  }
}
.page-content__title h5 {
  display: inline-block;
  font-size: 20px;
  line-height: 1.25;
  font-weight: bold;
  color: #000000;
  padding: 0 1em;
  position: relative;
}
@media (max-width: 640px) {
  .page-content__title h5 {
    font-size: 3.75vw;
  }
}
.page-content__title h5::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #8ec555;
  border-radius: 50%;
}
@media (max-width: 640px) {
  .page-content__title h5::before {
    width: 1.5625vw;
    height: 1.5625vw;
  }
}

.pdf-list {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pdf-list li {
  width: 100%;
  margin-bottom: 4px;
  line-height: 50px;
  color: #000000;
  border-bottom: solid #a0a0a0 1px;
}
@media (max-width: 640px) {
  .pdf-list li {
    margin-bottom: 0.875vw;
    line-height: 8.125vw;
  }
}
.pdf-list a {
  width: 100%;
  display: block;
  padding-left: 36px;
  position: relative;
}
@media (max-width: 640px) {
  .pdf-list a {
    padding-left: 5.625vw;
  }
}
.pdf-list a::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/common/icon-pdf.png);
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 640px) {
  .pdf-list a::before {
    width: 4.375vw;
    height: 4.375vw;
  }
}
.pdf-list span {
  position: absolute;
  top: 0;
  font-size: 15px;
}
@media (max-width: 640px) {
  .pdf-list span {
    width: 15vw;
    left: auto;
    right: 0;
    font-size: 2.1875vw;
  }
}
.pdf-list a:link,
.pdf-list a:visited {
  color: #000000;
  text-decoration: none;
}
.pdf-list a:hover,
.pdf-list a:focus {
  color: #65aadd;
  text-decoration: underline;
}

.footer {
  margin-top: auto;
  min-width: 1024px;
  border-top: solid #064e95 1px;
}
@media (max-width: 640px) {
  .footer {
    min-width: unset;
  }
}
.footer__banner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 0 48px;
  display: flex;
  font-size: 14px;
}
@media (max-width: 640px) {
  .footer__banner {
    display: block;
    padding: 6.25vw 0 6.875vw;
    font-size: 2.34375vw;
  }
}
.footer__banner-block {
  width: 50%;
}
@media (max-width: 640px) {
  .footer__banner-block {
    width: 93.75%;
    margin: 0 auto;
  }
}
.footer__banner-item-1 {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 16px 0 0 8%;
}
@media (max-width: 640px) {
  .footer__banner-item-1 {
    padding: 0 0 5vw 0;
    gap: 0;
  }
}
.footer__banner-item-2 {
  padding-bottom: 22px;
}
@media (max-width: 640px) {
  .footer__banner-item-2 {
    text-align: center;
  }
}
.footer__banner-item-3 {
  display: flex;
}
.footer__banner-image-1 {
  flex-shrink: 0;
  width: auto;
}
@media (max-width: 640px) {
  .footer__banner-image-1 {
    width: 50%;
  }
}
.footer__banner-image-1 img {
  display: block;
  width: auto;
  height: auto;
}
@media (max-width: 640px) {
  .footer__banner-image-1 img {
    width: auto;
    height: 15vw;
    margin: 0 auto;
  }
}
.footer__banner-image-2 {
  width: 49.4%;
  margin-right: 9.7%;
}
@media (max-width: 640px) {
  .footer__banner-image-2 {
    width: 50%;
    margin-right: 0;
    text-align: center;
  }
}
.footer__banner-image-2 img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 640px) {
  .footer__banner-image-2 img {
    width: auto;
    height: 8.75vw;
    margin: 0 auto;
  }
}
.footer__banner-image-3 {
  width: 35.1%;
  margin-right: 5.8%;
}
@media (max-width: 640px) {
  .footer__banner-image-3 {
    width: 50%;
    margin-right: 0;
    text-align: center;
  }
}
.footer__banner-image-3 img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 640px) {
  .footer__banner-image-3 img {
    width: auto;
    height: 8.75vw;
    margin: 0 auto;
  }
}
.footer__banner-text {
  flex: 1;
}
@media (max-width: 640px) {
  .footer__banner-text {
    width: 50%;
    padding-top: 2.5vw;
  }
}
.footer__banner-text p {
  padding-top: 10px;
}
@media (max-width: 640px) {
  .footer__banner-text p {
    padding-top: 0;
    padding-left: 7.5vw;
  }
}
.footer__banner-link a:link, .footer__banner-link a:visited {
  color: #000000;
  text-decoration: underline;
}
.footer__banner-link a:hover, .footer__banner-link a:focus {
  color: #65aadd;
}
.footer__sitemap {
  padding: 42px 0;
  border-top: solid #064e95 1px;
}
@media (max-width: 640px) {
  .footer__sitemap {
    padding: 3.75vw 0 3.125vw 0;
  }
}
.footer__sitemap .footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 640px) {
  .footer__sitemap .footer__inner {
    flex-direction: column;
    align-items: center;
  }
}
.footer__inner {
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 1400px) {
  .footer__inner {
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  .footer__inner {
    max-width: 93.75%;
  }
}
.footer__nav1 {
  padding-left: 4%;
  text-align: left;
}
@media (max-width: 640px) {
  .footer__nav1 {
    padding-left: 0;
    width: 100%;
    text-align: center;
  }
}
.footer__nav2 {
  padding-right: 2.9%;
  text-align: right;
  font-size: 14px;
}
@media (max-width: 640px) {
  .footer__nav2 {
    padding-right: 0;
    padding-top: 0.625vw;
    width: 100%;
    text-align: center;
    font-size: 2.34375vw;
  }
}
.footer__nav1 a:link, .footer__nav1 a:visited {
  color: #000000;
  text-decoration: none;
}
.footer__nav1 a:hover, .footer__nav1 a:focus {
  color: #65aadd;
  text-decoration: underline;
}
.footer__nav2 a:link, .footer__nav2 a:visited {
  color: #626262;
  text-decoration: none;
}
.footer__nav2 a:hover, .footer__nav2 a:focus {
  color: #65aadd;
  text-decoration: underline;
}
.footer__nav-list {
  display: flex;
  gap: 50px;
}
@media (max-width: 1400px) {
  .footer__nav-list {
    gap: 3.5vw;
  }
}
@media (max-width: 640px) {
  .footer__nav-list {
    width: 75%;
    margin: 0 auto;
    display: block;
    text-align: center;
  }
}
.footer__nav-item {
  display: inline-block;
}
@media (max-width: 640px) {
  .footer__nav-item {
    white-space: nowrap;
    margin: 0 4.6875vw 1.875vw;
  }
}
.footer__copy {
  background-color: #064e95;
  color: #ffffff;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  padding: 10px 0 25px;
}

.page-top {
  position: fixed;
  bottom: 27px;
  right: 27px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (max-width: 640px) {
  .page-top {
    bottom: 1.5625vw;
    right: 1.5625vw;
  }
}
.page-top.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.page-top a {
  width: 66px;
  height: 66px;
  background-color: #064e95;
  border-radius: 50%;
  font-size: 16px;
  line-height: 1.1;
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
@media (max-width: 640px) {
  .page-top a {
    width: 12.5vw;
    height: 12.5vw;
    font-size: 3.15vw;
  }
}

.page-top a:hover {
  background-color: #65aadd;
}

#home .hero {
  height: 810px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 640px) {
  #home .hero {
    height: 109.375vw;
  }
}
#home .hero__slide {
  width: 100%;
  height: 507px;
  overflow: hidden;
}
@media (max-width: 640px) {
  #home .hero__slide {
    height: 61.25vw;
  }
}
#home .hero__slide .slick-list,
#home .hero__slide .slick-track {
  height: 100%;
}
#home .hero__slide-item {
  position: relative;
  width: 100%;
  height: 507px;
  overflow: hidden;
}
@media (max-width: 640px) {
  #home .hero__slide-item {
    height: 61.25vw;
  }
}
#home .hero__slide-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1);
}
#home .hero__slide-item.is-zooming::before {
  animation: hero-zoom 5s linear forwards;
}
#home .hero__slide-item--1::before {
  background-image: url(../images/home/hero-slide-1_pc.jpg);
}
@media (max-width: 640px) {
  #home .hero__slide-item--1::before {
    background-image: url(../images/home/hero-slide-1_sp.jpg);
  }
}
#home .hero__slide-item--2::before {
  background-image: url(../images/home/hero-slide-2_pc.jpg);
}
@media (max-width: 640px) {
  #home .hero__slide-item--2::before {
    background-image: url(../images/home/hero-slide-2_sp.jpg);
  }
}
#home .hero__slide-item--3::before {
  background-image: url(../images/home/hero-slide-3_pc.jpg);
}
@media (max-width: 640px) {
  #home .hero__slide-item--3::before {
    background-image: url(../images/home/hero-slide-3_sp.jpg);
  }
}
#home .hero__slide-belt {
  width: 100%;
  height: 108px;
  position: absolute;
  top: 444px;
  left: 0;
  background-image: url(../images/home/hero-slide-belt_pc.png);
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}
@media (max-width: 640px) {
  #home .hero__slide-belt {
    top: 55vw;
    height: 12.1875vw;
    background-image: url(../images/home/hero-slide-belt_sp.png);
    background-size: 100% auto;
  }
}
#home .hero__slide-text {
  width: 1035px;
  position: absolute;
  top: 468px;
  left: 50%;
  margin-left: -581px;
  z-index: 2;
}
@media (max-width: 1180px) {
  #home .hero__slide-text {
    left: 0;
    margin-left: 10px;
  }
}
@media (max-width: 640px) {
  #home .hero__slide-text {
    width: 70.3125vw;
    top: 57.1875vw;
    left: 7.8125vw;
    margin-left: 0;
  }
}
#home .hero__slide-text-main {
  display: grid;
  grid-template-columns: repeat(15, 69px);
  grid-auto-rows: 85px;
  gap: 0;
  width: 100%;
  height: 255px;
  line-height: 0;
  font-size: 0;
}
@media (max-width: 640px) {
  #home .hero__slide-text-main {
    grid-template-columns: repeat(9, 7.8125vw);
    grid-auto-rows: 9.6875vw;
    height: auto;
  }
}
#home .hero__slide-text-main p {
  width: 69px;
  height: 85px;
  margin: 0;
  padding: 0;
  line-height: 0;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  opacity: 0;
  transform: translateY(40px);
  animation: hero-tile-in 0.4s ease forwards;
}
@media (max-width: 640px) {
  #home .hero__slide-text-main p {
    width: 7.8125vw;
    height: 9.6875vw;
  }
}
#home .hero__slide-text-main p:nth-child(7),
#home .hero__slide-text-main p:nth-child(14) {
  grid-column: 1;
}
@media (max-width: 640px) {
  #home .hero__slide-text-main p:nth-child(23) {
    grid-column: 1;
  }
}
#home .hero__slide-text-main p:nth-child(1) {
  background-image: url(../images/home/hero-slide-text_01.png);
  animation-delay: 1s;
}
#home .hero__slide-text-main p:nth-child(2) {
  background-image: url(../images/home/hero-slide-text_02.png);
  animation-delay: 1.06s;
}
#home .hero__slide-text-main p:nth-child(3) {
  background-image: url(../images/home/hero-slide-text_03.png);
  animation-delay: 1.12s;
}
#home .hero__slide-text-main p:nth-child(4) {
  background-image: url(../images/home/hero-slide-text_04.png);
  animation-delay: 1.18s;
}
#home .hero__slide-text-main p:nth-child(5) {
  background-image: url(../images/home/hero-slide-text_05.png);
  animation-delay: 1.24s;
}
#home .hero__slide-text-main p:nth-child(6) {
  background-image: url(../images/home/hero-slide-text_06.png);
  animation-delay: 1.3s;
}
#home .hero__slide-text-main p:nth-child(7) {
  background-image: url(../images/home/hero-slide-text_07.png);
  animation-delay: 1.36s;
}
#home .hero__slide-text-main p:nth-child(8) {
  background-image: url(../images/home/hero-slide-text_08.png);
  animation-delay: 1.42s;
}
#home .hero__slide-text-main p:nth-child(9) {
  background-image: url(../images/home/hero-slide-text_09.png);
  animation-delay: 1.48s;
}
#home .hero__slide-text-main p:nth-child(10) {
  background-image: url(../images/home/hero-slide-text_10.png);
  animation-delay: 1.54s;
}
#home .hero__slide-text-main p:nth-child(11) {
  background-image: url(../images/home/hero-slide-text_11.png);
  animation-delay: 1.6s;
}
#home .hero__slide-text-main p:nth-child(12) {
  background-image: url(../images/home/hero-slide-text_12.png);
  animation-delay: 1.66s;
}
#home .hero__slide-text-main p:nth-child(13) {
  background-image: url(../images/home/hero-slide-text_13.png);
  animation-delay: 1.72s;
}
#home .hero__slide-text-main p:nth-child(14) {
  background-image: url(../images/home/hero-slide-text_14.png);
  animation-delay: 1.78s;
}
#home .hero__slide-text-main p:nth-child(15) {
  background-image: url(../images/home/hero-slide-text_15.png);
  animation-delay: 1.84s;
}
#home .hero__slide-text-main p:nth-child(16) {
  background-image: url(../images/home/hero-slide-text_16.png);
  animation-delay: 1.9s;
}
#home .hero__slide-text-main p:nth-child(17) {
  background-image: url(../images/home/hero-slide-text_17.png);
  animation-delay: 1.96s;
}
#home .hero__slide-text-main p:nth-child(18) {
  background-image: url(../images/home/hero-slide-text_18.png);
  animation-delay: 2.02s;
}
#home .hero__slide-text-main p:nth-child(19) {
  background-image: url(../images/home/hero-slide-text_19.png);
  animation-delay: 2.08s;
}
#home .hero__slide-text-main p:nth-child(20) {
  background-image: url(../images/home/hero-slide-text_20.png);
  animation-delay: 2.14s;
}
#home .hero__slide-text-main p:nth-child(21) {
  background-image: url(../images/home/hero-slide-text_21.png);
  animation-delay: 2.2s;
}
#home .hero__slide-text-main p:nth-child(22) {
  background-image: url(../images/home/hero-slide-text_22.png);
  animation-delay: 2.26s;
}
#home .hero__slide-text-main p:nth-child(23) {
  background-image: url(../images/home/hero-slide-text_23.png);
  animation-delay: 2.32s;
}
#home .hero__slide-text-main p:nth-child(24) {
  background-image: url(../images/home/hero-slide-text_24.png);
  animation-delay: 2.38s;
}
#home .hero__slide-text-main p:nth-child(25) {
  background-image: url(../images/home/hero-slide-text_25.png);
  animation-delay: 2.44s;
}
#home .hero__slide-text-main p:nth-child(26) {
  background-image: url(../images/home/hero-slide-text_26.png);
  animation-delay: 2.5s;
}
#home .hero__slide-text-main p:nth-child(27) {
  background-image: url(../images/home/hero-slide-text_27.png);
  animation-delay: 2.56s;
}
#home .hero__slide-text-main p:nth-child(28) {
  background-image: url(../images/home/hero-slide-text_28.png);
  animation-delay: 2.62s;
}
#home .hero__slide-text-sub {
  width: 100%;
  font-size: 33px;
  font-weight: 400;
  color: #a0a0a0;
  font-family: Arial, Helvetica, sans-serif;
}
@media (max-width: 640px) {
  #home .hero__slide-text-sub {
    font-size: 3.90625vw;
  }
}
#home .hero__slide-text-sub span {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.4em);
}
#home .hero__slide-text-sub span.is-in {
  animation: hero-char-in 0.35s ease forwards;
}

@keyframes hero-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.12);
  }
}
@keyframes hero-tile-in {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hero-char-in {
  from {
    opacity: 0;
    transform: translateY(0.4em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.home__title {
  margin-bottom: 10px;
  font-size: 45px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #064e95;
  line-height: 1.14;
}
@media (max-width: 640px) {
  .home__title {
    margin-bottom: 1.5625vw;
    font-size: 7.8125vw;
  }
}
.home__subtitle {
  margin-bottom: 48px;
  padding-left: 1em;
  font-size: 21px;
  font-weight: 700;
  color: #000000;
  position: relative;
}
@media (max-width: 640px) {
  .home__subtitle {
    margin-bottom: 5vw;
    font-size: 3.28125vw;
  }
}
.home__subtitle::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #8ec555;
  border-radius: 50%;
}
@media (max-width: 640px) {
  .home__subtitle::before {
    width: 1.5625vw;
    height: 1.5625vw;
  }
}
.home__text {
  padding-bottom: 1em;
  font-size: 16px;
  color: #535353;
  line-height: 2;
}
@media (max-width: 640px) {
  .home__text {
    font-size: 2.8125vw;
  }
}
.home__link {
  font-size: 16px;
  text-align: right;
}
@media (max-width: 640px) {
  .home__link {
    font-size: 2.8125vw;
  }
}
.home__link a:link, .home__link a:visited {
  color: #535353;
  text-decoration: underline;
}
.home__link a:hover, .home__link a:focus {
  color: #65aadd;
}

.home-belt__wrapper {
  width: 100%;
  height: 232px;
  overflow: hidden;
}
@media (max-width: 640px) {
  .home-belt__wrapper {
    height: 36.25vw;
  }
}
.home-belt__slide {
  width: 100%;
  height: 232px;
}
@media (max-width: 640px) {
  .home-belt__slide {
    height: 36.25vw;
  }
}
.home-belt__slide .slick-list {
  height: 100%;
  overflow: hidden;
}
.home-belt__slide .slick-track {
  display: flex;
  align-items: stretch;
}
.home-belt__slide-item {
  width: 350px;
  height: 232px;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .home-belt__slide-item {
    width: 54.6875vw;
    height: 36.25vw;
  }
}
.home-belt__slide-item img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
}

.home-philosophy {
  padding: 90px 0 130px;
  background-image: url(../images/home/philosophy-bg_pc.png);
  background-position: center center;
  background-repeat: no-repeat;
}
@media (max-width: 640px) {
  .home-philosophy {
    height: 123.4375vw;
    padding: 0;
    background-image: url(../images/home/philosophy-bg_sp.png);
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
}
.home-philosophy .container {
  padding-left: 500px;
}
@media (max-width: 640px) {
  .home-philosophy .container {
    padding-left: 0;
    padding-right: 15vw;
  }
}
@media (max-width: 640px) {
  .home-philosophy .home__link {
    text-align: left;
  }
}

.home-business {
  padding: 90px 0 130px;
  background-image: url(../images/home/business-bg_pc.png);
  background-position: center center;
  background-repeat: no-repeat;
}
@media (max-width: 640px) {
  .home-business {
    height: 125vw;
    padding: 0;
    margin-top: 7.5vw;
    background-image: url(../images/home/business-bg_sp.png);
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
  }
}
.home-business .container {
  padding-right: 500px;
}
@media (max-width: 640px) {
  .home-business .container {
    padding-right: 0;
    padding-left: 15.625vw;
  }
}

.home-news {
  padding: 72px 0 18px;
  background-color: #dde7d3;
}
@media (max-width: 1300px) {
  .home-news {
    padding-top: 35px;
  }
}
@media (max-width: 640px) {
  .home-news {
    padding: 5vw 0 3.75vw;
  }
}
.home-news .home__title {
  position: absolute;
  top: 15px;
  left: 0;
  transform: translateX(-140px);
}
@media (max-width: 1300px) {
  .home-news .home__title {
    transform: none;
    position: relative;
    left: auto;
    top: auto;
  }
}
.home-news .home__subtitle {
  position: absolute;
  top: 75px;
  left: 0;
  transform: translateX(-140px);
}
@media (max-width: 1300px) {
  .home-news .home__subtitle {
    transform: none;
    position: relative;
    left: auto;
    top: auto;
    margin-bottom: 10px;
  }
}
@media (max-width: 640px) {
  .home-news .home__subtitle {
    margin-bottom: 1.5625vw;
  }
}
.home-news__list {
  padding: 90px 50px 35px 50px;
  border-radius: 20px;
  background-color: #FFFFFF;
}
@media (max-width: 1300px) {
  .home-news__list {
    padding-top: 35px;
  }
}
@media (max-width: 640px) {
  .home-news__list {
    padding: 6.875vw 2.1875vw 5.46875vw 2.1875vw;
    border-radius: 3.125vw;
  }
}
.home-news dl {
  margin: 0 0 0.5em 0;
  padding-bottom: 0.5em;
  border-bottom: solid #a0a0a0 1px;
  position: relative;
  line-height: 2.25;
}
.home-news dt {
  margin: 0;
  padding-left: 6px;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 2.25;
  font-family: Arial, Helvetica, sans-serif;
}
@media (max-width: 640px) {
  .home-news dt {
    padding-left: 0.625vw;
    position: relative;
    left: auto;
    top: auto;
  }
}
.home-news dd {
  padding-left: 142px;
}
@media (max-width: 640px) {
  .home-news dd {
    padding-left: 0.625vw;
  }
}
.home-news__link {
  font-size: 14px;
}
@media (max-width: 640px) {
  .home-news__link {
    font-size: 2.34375vw;
  }
}
.home-news .home__link {
  padding-top: 1em;
}
@media (max-width: 640px) {
  .home-news .home__link {
    padding-top: 0.5em;
  }
}

#home .footer {
  border-top: none;
}

#business .page-image {
  background-image: url(../images/business/page-title_pc.jpg);
}
@media (max-width: 640px) {
  #business .page-image {
    background-image: url(../images/business/page-title_sp.jpg);
  }
}

#business-lead {
  background-image: url(../images/business/business-lead-bg_pc.png);
  background-repeat: no-repeat;
  background-position: center top;
  padding-bottom: 150px;
}
@media (max-width: 640px) {
  #business-lead {
    background-image: url(../images/business/business-lead-bg_sp.png);
    background-size: 100% auto;
    padding-bottom: 57.5vw;
  }
}
#business-lead .container {
  padding-right: 260px;
}
@media (max-width: 640px) {
  #business-lead .container {
    padding-right: 0;
  }
}
#business-lead p {
  font-size: 21px;
}
@media (max-width: 640px) {
  #business-lead p {
    font-size: 3.125vw;
  }
}

#power-plants-detail {
  padding-bottom: 100px;
}

.power-plants__map {
  width: 100%;
  max-width: 1122px;
  margin: 0 auto;
}
.power-plants__map img {
  width: 100%;
  height: auto;
}
@media (max-width: 640px) {
  .power-plants__map {
    width: 93.75%;
  }
}
.power-plants__item {
  margin-top: 45px;
}
@media (max-width: 640px) {
  .power-plants__item {
    margin-top: 3.75vw;
  }
}
.power-plants__item .power-plants__content,
.power-plants__item .power-plants__name,
.power-plants__item .power-plants__detail {
  display: none;
}
.power-plants__item.is-active .power-plants__content {
  display: flex;
}
.power-plants__item.is-active .power-plants__name {
  display: block;
}
.power-plants__item.is-active .power-plants__detail {
  display: flex;
}
.power-plants__item.is-active .power-plants__title-button::after {
  display: none;
}
.power-plants__title {
  display: flex;
  align-items: center;
  background-color: #0e457a;
  color: #ffffff;
  font-weight: bold;
  padding: 10px 0;
  border-radius: 20px;
  margin-bottom: 18px;
  position: relative;
}
@media (max-width: 640px) {
  .power-plants__title {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.875vw 0;
    border-radius: 3.125vw;
    margin-bottom: 2.8125vw;
  }
}
.power-plants__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 310px;
  transform: translateY(-50%) rotate(45deg);
  width: 1px;
  height: 83px;
  background-color: #ffffff;
}
@media (max-width: 640px) {
  .power-plants__title::before {
    display: none;
  }
}
.power-plants__title > p:not(.power-plants__title-button) {
  width: 350px;
  padding-left: 25px;
  font-size: 18px;
}
@media (max-width: 640px) {
  .power-plants__title > p:not(.power-plants__title-button) {
    width: auto;
    padding-left: 3.125vw;
    padding-right: 15vw;
    font-size: 2.5vw;
  }
}
.power-plants__title h6 {
  font-size: 31px;
}
@media (max-width: 640px) {
  .power-plants__title h6 {
    padding-left: 3.125vw;
    padding-right: 15vw;
    font-size: 4.53125vw;
    line-height: 1.12;
  }
}
.power-plants__title-button {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #a0a0a0;
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
@media (max-width: 640px) {
  .power-plants__title-button {
    width: 9.375vw;
    height: 9.375vw;
    right: 2.1875vw;
  }
}
.power-plants__title-button::before, .power-plants__title-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #ffffff;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.power-plants__title-button::before {
  width: 30px;
  height: 4px;
}
@media (max-width: 640px) {
  .power-plants__title-button::before {
    width: 4.375vw;
    height: 0.625vw;
  }
}
.power-plants__title-button::after {
  width: 4px;
  height: 30px;
}
@media (max-width: 640px) {
  .power-plants__title-button::after {
    width: 0.625vw;
    height: 4.375vw;
  }
}
.power-plants__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 944px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .power-plants__content {
    width: 100%;
  }
}
.power-plants__content-photo {
  width: 736px;
  height: 333px;
  border-radius: 20px 0 0 20px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (max-width: 640px) {
  .power-plants__content-photo {
    width: 64%;
    height: 51.875vw;
    border-radius: 3.125vw 0 0 3.125vw;
  }
}
.power-plants__content-body {
  width: 202px;
  height: 333px;
  background-color: #d3dfe8;
  border-radius: 0 20px 20px 0;
}
@media (max-width: 640px) {
  .power-plants__content-body {
    width: 34.5%;
    height: 51.875vw;
    border-radius: 0 3.125vw 3.125vw 0;
  }
}
.power-plants__content-pdf-title {
  font-size: 14px;
  font-weight: bold;
  color: #0e457a;
  padding: 15px 0 20px 15px;
}
@media (max-width: 640px) {
  .power-plants__content-pdf-title {
    font-size: 2.34375vw;
    padding: 2.1875vw 0 3.125vw 2.1875vw;
  }
}
.power-plants__content-pdf-image {
  width: 100%;
}
.power-plants__content-pdf-image img {
  width: 100%;
  height: auto;
}
.power-plants__content-pdf-link {
  margin: 12px 0 0 15px;
  position: relative;
}
@media (max-width: 640px) {
  .power-plants__content-pdf-link {
    margin: 1.875vw 0 0 2.1875vw;
  }
}
.power-plants__content-pdf-link a:link,
.power-plants__content-pdf-link a:visited {
  display: inline-block;
  font-size: 12px;
  line-height: 36px;
  color: #ffffff;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #0e457a;
  padding: 0 10px 0 34px;
  border-radius: 1.5em;
  text-decoration: none;
}
@media (max-width: 640px) {
  .power-plants__content-pdf-link a:link,
  .power-plants__content-pdf-link a:visited {
    font-size: 1.875vw;
    line-height: 5.625vw;
    padding: 0 1.5625vw 0 4.6875vw;
    border-radius: 1.875em;
  }
}
.power-plants__content-pdf-link a:hover,
.power-plants__content-pdf-link a:focus {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
}
.power-plants__content-pdf-link a:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url(../images/common/icon-pdf.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 640px) {
  .power-plants__content-pdf-link a:before {
    width: 2.8125vw;
    height: 2.8125vw;
    left: 1.5625vw;
  }
}
.power-plants__name {
  width: 924px;
  font-size: 27px;
  line-height: 1.29;
  font-weight: bold;
  color: #000000;
  padding: 15px 0 10px 0;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .power-plants__name {
    width: 100%;
    font-size: 4.21875vw;
    padding: 2.1875vw 0 1.5625vw 0;
  }
}
.power-plants__detail {
  display: flex;
  flex-wrap: wrap;
  width: 924px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .power-plants__detail {
    width: 100%;
  }
}
.power-plants__detail-item {
  width: 33.3333333333%;
}
@media (max-width: 640px) {
  .power-plants__detail-item {
    width: 50%;
    padding-bottom: 2.5vw;
  }
}
.power-plants__detail-item-title {
  font-weight: bold;
}
.power-plants__detail-item-title span {
  color: #0e457a;
}
.power-plants__item-01 .power-plants__content-photo {
  background-image: url(../images/business/photo-01.jpg);
}
.power-plants__item-02 .power-plants__content-photo {
  background-image: url(../images/business/photo-02.jpg);
}
.power-plants__item-03 .power-plants__content-photo {
  background-image: url(../images/business/photo-03.jpg);
}
.power-plants__item-04 .power-plants__content-photo {
  background-image: url(../images/business/photo-04.jpg);
}
.power-plants__item-05 .power-plants__content-photo {
  background-image: url(../images/business/photo-05.jpg);
}
.power-plants__item-06 .power-plants__content-photo {
  background-image: url(../images/business/photo-06.jpg);
}
.power-plants__item-07 .power-plants__content-photo {
  background-image: url(../images/business/photo-07.jpg);
}
.power-plants__item-08 .power-plants__content-photo {
  background-image: url(../images/business/photo-08.jpg);
}
.power-plants__item-09 .power-plants__content-photo {
  background-image: url(../images/business/photo-09.jpg);
}
.power-plants__item-10 .power-plants__content-photo {
  background-image: url(../images/business/photo-10.jpg);
}
.power-plants__item-11 .power-plants__content-photo {
  background-image: url(../images/business/photo-11.jpg);
}
.power-plants__item-12 .power-plants__content-photo {
  background-image: url(../images/business/photo-12.jpg);
}
.power-plants__item-13 .power-plants__content-photo {
  background-image: url(../images/business/photo-13.jpg);
}
.power-plants__item-14 .power-plants__content-photo {
  background-image: url(../images/business/photo-14.jpg);
}
.power-plants__item-15 .power-plants__content-photo {
  background-image: url(../images/business/photo-15.jpg);
}
.power-plants__item-16 .power-plants__content-photo {
  background-image: url(../images/business/photo-16.jpg);
}
.power-plants__item-17 .power-plants__content-photo {
  background-image: url(../images/business/photo-17.jpg);
}
.power-plants__item-18 .power-plants__content-photo {
  background-image: url(../images/business/photo-18.jpg);
}
.power-plants__item-19 .power-plants__content-photo {
  background-image: url(../images/business/photo-19.jpg);
}

#ad .page-image {
  background-image: url(../images/ad/page-title_pc.jpg);
}
@media (max-width: 640px) {
  #ad .page-image {
    background-image: url(../images/ad/page-title_sp.jpg);
  }
}

@media (max-width: 640px) {
  #ad .page-title h2 {
    font-size: 6.09375vw;
  }
}

@media (max-width: 640px) {
  #ad .page-content__title h4 {
    font-size: 6.25vw;
  }
}

#ad .pdf-list span {
  left: 515px;
}
@media (max-width: 640px) {
  #ad .pdf-list span {
    left: auto;
  }
}

.container[id="01"] {
  padding-bottom: 150px;
}
@media (max-width: 640px) {
  .container[id="01"] {
    padding-bottom: 13.75vw;
  }
}

.container[id="02"] {
  padding-bottom: 80px;
}
@media (max-width: 640px) {
  .container[id="02"] {
    padding-bottom: 13.75vw;
  }
}

#ad .arrow {
  color: #8ec555;
}

#profile .page-image {
  background-image: url(../images/profile/page-title_pc.jpg);
}
@media (max-width: 640px) {
  #profile .page-image {
    background-image: url(../images/profile/page-title_sp.jpg);
  }
}

#philosophy {
  background-image: url(../images/profile/philosophy-bg_pc.png);
  background-repeat: no-repeat;
  background-position: center top;
}
@media (max-width: 640px) {
  #philosophy {
    background-image: none;
  }
}

@media (max-width: 640px) {
  .philosophy-1 img {
    width: 100%;
  }
}

.philosophy-2 {
  display: none;
}
@media (max-width: 640px) {
  .philosophy-2 {
    display: block;
  }
}
@media (max-width: 640px) {
  .philosophy-2 img {
    width: 100%;
    height: auto;
  }
}

.philosophy-3 {
  width: 50%;
  height: 474px;
  margin-top: 60px;
}
@media (max-width: 640px) {
  .philosophy-3 {
    width: 100%;
    height: auto;
    margin-top: 0;
  }
}

#aboutus .page-content__title {
  margin-bottom: 25px;
}

.aboutus-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  color: #000000;
  font-size: 18px;
}
@media (max-width: 640px) {
  .aboutus-table {
    font-size: 3.125vw;
  }
}
.aboutus-table th,
.aboutus-table td {
  padding: 1.25em 0;
  border-bottom: solid #d2d2d2 1px;
  vertical-align: top;
  font-weight: normal;
  text-align: left;
}
.aboutus-table th {
  width: 7em;
  padding-right: 2.5em;
  font-weight: bold;
  white-space: nowrap;
  text-align: justify;
  text-align-last: justify;
}
.aboutus-table td {
  color: #535353;
}
.aboutus-table__role {
  width: 10em;
  padding-right: 2em;
  white-space: nowrap;
}
.aboutus-table__name {
  white-space: nowrap;
}
@media (max-width: 640px) {
  .aboutus-table th,
  .aboutus-table td {
    padding: 3.125vw 0;
    font-size: 2.8125vw;
    line-height: 1.66;
  }
  .aboutus-table th {
    width: 5.5em;
    padding-right: 7.5vw;
  }
  .aboutus-table__role {
    padding-right: 3.125vw;
  }
}

#organization .page-content__title h5 span {
  font-size: 14px;
}
@media (max-width: 640px) {
  #organization .page-content__title h5 span {
    font-size: 2.34375vw;
  }
}
#organization .page-content__block {
  padding-bottom: 100px;
}
@media (max-width: 640px) {
  #organization .page-content__block {
    padding-bottom: 11.875vw;
  }
}
#organization .organization-pic {
  height: 321px;
  background-image: url(../images/profile/organization-bg_pc.png);
  background-repeat: no-repeat;
  background-position: center top;
}
@media (max-width: 640px) {
  #organization .organization-pic {
    height: 68.28125vw;
    background-image: url(../images/profile/organization-bg_sp.png);
    background-size: auto 100%;
  }
}

#management .page-image {
  background-image: url(../images/management/page-title_pc.jpg);
}
@media (max-width: 640px) {
  #management .page-image {
    background-image: url(../images/management/page-title_sp.jpg);
  }
}

@media (max-width: 640px) {
  #management .page-title h2 {
    font-size: 6.09375vw;
  }
}

#management .page-content__title {
  margin-bottom: 55px;
}
@media (max-width: 640px) {
  #management .page-content__title {
    margin-bottom: 7.5vw;
  }
}
#management .page-content__title p {
  font-size: 21px;
  text-align: left;
}
@media (max-width: 640px) {
  #management .page-content__title p {
    font-size: 3.28125vw;
  }
}

#management .page-content__block {
  margin-bottom: 220px;
}
@media (max-width: 640px) {
  #management .page-content__block {
    margin-bottom: 37.5vw;
  }
}

#management .pdf-list span {
  left: 300px;
}
@media (max-width: 640px) {
  #management .pdf-list span {
    left: 46.875vw;
  }
}

#privacy .page-image {
  background-image: url(../images/privacy/page-title_pc.jpg);
}
@media (max-width: 640px) {
  #privacy .page-image {
    background-image: url(../images/privacy/page-title_sp.jpg);
  }
}

#privacy .page-content {
  padding-bottom: 80px;
}
@media (max-width: 640px) {
  #privacy .page-content {
    padding-bottom: 12.5vw;
  }
}
#privacy .page-content h6 {
  font-size: 25px;
  line-height: 2;
  font-weight: normal;
  color: #064e95;
  border-bottom: solid #d2d2d2 1px;
  margin-bottom: 0.5em;
}
@media (max-width: 640px) {
  #privacy .page-content h6 {
    font-size: 3.90625vw;
  }
}
#privacy .page-content__block-text {
  margin-bottom: 50px;
}
@media (max-width: 640px) {
  #privacy .page-content__block-text {
    margin-bottom: 8.125vw;
    font-size: 3.28125vw;
  }
}
#privacy .page-content ol {
  list-style: decimal;
  padding-left: 1.5em;
}
#privacy .page-content .enactment {
  text-align: right;
}

#contact .page-image {
  background-image: url(../images/contact/page-title_pc.jpg);
}
@media (max-width: 640px) {
  #contact .page-image {
    background-image: url(../images/contact/page-title_sp.jpg);
  }
}

#contact .page-content {
  padding-bottom: 80px;
}
@media (max-width: 640px) {
  #contact .page-content {
    padding-bottom: 12.5vw;
  }
}
#contact .page-content h6 {
  font-size: 25px;
  line-height: 2;
  font-weight: normal;
  color: #064e95;
  border-bottom: solid #d2d2d2 1px;
  margin-bottom: 0.5em;
}
@media (max-width: 640px) {
  #contact .page-content h6 {
    font-size: 3.90625vw;
  }
}
#contact .page-content__block-text {
  margin-bottom: 50px;
  position: relative;
}
@media (max-width: 640px) {
  #contact .page-content__block-text {
    margin-bottom: 8.125vw;
    font-size: 3.28125vw;
  }
}
#contact .page-content ol {
  list-style: decimal;
  padding-left: 1.5em;
}
#contact .page-content .required {
  color: #c00;
}
#contact .page-content .phone {
  font-size: 29px;
  font-weight: bold;
  margin-bottom: 0.5em;
}
@media (max-width: 640px) {
  #contact .page-content .phone {
    font-size: 3.90625vw;
  }
}
#contact .page-content .icon-trust {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 640px) {
  #contact .page-content .icon-trust {
    display: none;
  }
}

.contact-form {
  width: 100%;
  margin-top: 20px;
}
.contact-form__table {
  width: 100%;
  border-collapse: collapse;
  border: solid #c8c8c8 1px;
  table-layout: fixed;
}
.contact-form__table th,
.contact-form__table td {
  border: solid #c8c8c8 1px;
  vertical-align: top;
  text-align: left;
  font-weight: normal;
}
.contact-form__table th {
  position: relative;
  width: 220px;
  padding: 18px 32px 18px 16px;
  background-color: #e8eef2;
  color: #535353;
  line-height: 1.5;
}
@media (max-width: 640px) {
  .contact-form__table th {
    display: block;
    width: 100%;
    padding: 2.5vw 3.125vw;
    box-sizing: border-box;
  }
  .contact-form__table th br {
    display: none;
  }
}
.contact-form__table td {
  padding: 14px 18px;
  background-color: #ffffff;
}
@media (max-width: 640px) {
  .contact-form__table td {
    display: block;
    width: 100%;
    padding: 3.125vw;
    box-sizing: border-box;
  }
}
@media (max-width: 640px) {
  .contact-form__table {
    border: solid #c8c8c8 1px;
  }
  .contact-form__table tr {
    display: block;
    border: none;
  }
  .contact-form__table th,
  .contact-form__table td {
    border: none;
    border-bottom: solid #c8c8c8 1px;
  }
  .contact-form__table tr:last-child td {
    border-bottom: none;
  }
}
.contact-form__required {
  position: absolute;
  top: 18px;
  right: 16px;
  color: #c00;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 640px) {
  .contact-form__required {
    position: static;
    top: auto;
    right: auto;
    margin-left: 0.15em;
  }
}
.contact-form__limit {
  display: inline-block;
  margin-top: 0.35em;
  font-size: 14px;
  color: #626262;
}
@media (max-width: 640px) {
  .contact-form__limit {
    margin-top: 0;
    margin-left: 0.5em;
    font-size: 2.34375vw;
  }
}
.contact-form select,
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form textarea {
  font: inherit;
  color: #535353;
  border: solid #b0b0b0 1px;
  border-radius: 2px;
  background-color: #ffffff;
  box-sizing: border-box;
}
.contact-form select {
  min-width: 260px;
  height: 36px;
  padding: 0 8px;
}
@media (max-width: 640px) {
  .contact-form select {
    width: 100%;
    min-width: 0;
    height: 8.75vw;
  }
}
.contact-form textarea {
  width: 100%;
  min-height: 160px;
  padding: 10px;
  resize: vertical;
}
@media (max-width: 640px) {
  .contact-form textarea {
    min-height: 30vw;
  }
}
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel] {
  height: 36px;
  padding: 0 10px;
}
@media (max-width: 640px) {
  .contact-form input[type=text],
  .contact-form input[type=email],
  .contact-form input[type=tel] {
    height: 8.75vw;
  }
}
.contact-form__input-full {
  width: 100%;
}
.contact-form__input-zip {
  width: 160px;
}
@media (max-width: 640px) {
  .contact-form__input-zip {
    width: 28vw;
    flex-shrink: 0;
  }
}
.contact-form__name {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}
@media (max-width: 640px) {
  .contact-form__name {
    flex-wrap: nowrap;
    gap: 2vw 2.5vw;
  }
}
.contact-form__name label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .contact-form__name label {
    flex: 1;
    min-width: 0;
    gap: 1.5vw;
  }
}
.contact-form__name input {
  width: 180px;
}
@media (max-width: 640px) {
  .contact-form__name input {
    width: auto;
    flex: 1;
    min-width: 0;
  }
}
.contact-form__address {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form__address-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
}
@media (max-width: 640px) {
  .contact-form__address-row {
    flex-wrap: nowrap;
    gap: 1.5vw 2vw;
  }
}
.contact-form__address-row--stack {
  align-items: flex-start;
}
@media (max-width: 640px) {
  .contact-form__address-row--stack {
    flex-wrap: wrap;
  }
}
.contact-form__address-label {
  min-width: 5em;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .contact-form__address-label {
    min-width: auto;
  }
}
.contact-form__address-field {
  flex: 1;
  min-width: 0;
}
.contact-form__hint, .contact-form__example {
  font-size: 14px;
  color: #626262;
  line-height: 1.5;
}
@media (max-width: 640px) {
  .contact-form__hint, .contact-form__example {
    font-size: 2.34375vw;
  }
}
@media (max-width: 640px) {
  .contact-form__hint {
    flex-shrink: 1;
    white-space: nowrap;
  }
}
.contact-form__example {
  display: block;
  margin-top: 4px;
}
.contact-form__radio {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
}
.contact-form__radio label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.contact-form__radio input[type=radio] {
  width: 16px;
  height: 16px;
  accent-color: #064e95;
}
.contact-form__tel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
}
.contact-form__tel input {
  width: 240px;
}
@media (max-width: 640px) {
  .contact-form__tel input {
    width: 55vw;
  }
}
.contact-form__agreement {
  margin-top: 50px;
  padding: 40px 20px;
  background-color: #ececec;
  text-align: center;
}
@media (max-width: 640px) {
  .contact-form__agreement {
    margin-top: 7.5vw;
    padding: 6.25vw 0.625vw;
  }
}
.contact-form__agreement-title {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: bold;
  color: #064e95;
  line-height: 1.4;
}
@media (max-width: 640px) {
  .contact-form__agreement-title {
    margin-bottom: 2.5vw;
    font-size: 4.375vw;
  }
}
.contact-form__agreement-title .contact-form__required {
  position: static;
  margin-left: 0.25em;
  font-size: 16px;
  color: #c00;
  font-weight: normal;
}
@media (max-width: 640px) {
  .contact-form__agreement-title .contact-form__required {
    font-size: 2.8125vw;
  }
}
.contact-form__agreement-text {
  margin: 0 0 24px;
  font-size: 18px;
}
@media (max-width: 640px) {
  .contact-form__agreement-text {
    margin-bottom: 3.75vw;
    font-size: 2.8125vw;
    line-height: 2;
  }
}
.contact-form__agreement-text a {
  color: #064e95;
  text-decoration: underline;
}
.contact-form__agreement-text a:hover {
  color: #65aadd;
}
.contact-form__agreement-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 320px;
  padding: 8px 36px;
  background-color: #ffffff;
  border-radius: 6px;
  cursor: pointer;
  box-sizing: border-box;
  font-size: 20px;
  color: inherit;
}
@media (max-width: 640px) {
  .contact-form__agreement-check {
    width: 63.75vw;
    padding: 3.125vw 0;
    gap: 0;
    font-size: 3.125vw;
  }
}
.contact-form__agreement-check input[type=radio] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #064e95;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .contact-form__agreement-check input[type=radio] {
    width: 3.75vw;
    height: 3.75vw;
  }
}
.contact-form__submit {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 640px) {
  .contact-form__submit {
    gap: 3.125vw;
    margin-top: 6.25vw;
  }
}
.contact-form__submit button {
  width: 330px;
  height: 76px;
  padding: 0 40px;
  font-size: 25px;
  cursor: pointer;
  box-sizing: border-box;
}
@media (max-width: 640px) {
  .contact-form__submit button {
    width: calc(50% - 1.5625vw);
    height: 11.25vw;
    padding: 0;
    font-size: 3.75vw;
  }
}
.contact-form__submit button[type=submit] {
  border: none;
  background-color: #064e95;
  color: #ffffff;
}
.contact-form__submit button[type=submit]:hover {
  background-color: #65aadd;
}
.contact-form__submit button[type=reset], .contact-form__submit button[type=button] {
  border: solid #a0a0a0 1px;
  background-color: #e3eceb;
  color: #535353;
}
.contact-form__submit button[type=reset]:hover, .contact-form__submit button[type=button]:hover {
  background-color: #d8d8d8;
}
.contact-form__note {
  margin-top: 40px;
  font-size: 18px;
  text-align: left;
}
@media (max-width: 640px) {
  .contact-form__note {
    margin-top: 6.25vw;
    font-size: 2.34375vw;
  }
}
.contact-form__note a {
  color: #064e95;
  text-decoration: underline;
}
.contact-form__note a:hover {
  color: #65aadd;
}

#news .page-image {
  background-image: url(../images/news/page-title_pc.jpg);
}
@media (max-width: 640px) {
  #news .page-image {
    background-image: url(../images/news/page-title_sp.jpg);
  }
}

#news .page-content {
  padding-bottom: 40px;
}
@media (max-width: 640px) {
  #news .page-content {
    padding-bottom: 6.25vw;
  }
}

.news-block {
  padding-bottom: 80px;
}

.news-title {
  position: relative;
  font-size: 25px;
  line-height: 2;
  font-weight: normal;
  color: #064e95;
  border-bottom: solid #d2d2d2 1px;
  margin-bottom: 0.5em;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
@media (max-width: 640px) {
  .news-title {
    font-size: 3.90625vw;
  }
}
.news-title .add-button {
  display: inline-block;
  width: 45px;
  height: 50px;
  position: absolute;
  right: 0;
  top: 0;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 640px) {
  .news-title .add-button {
    width: 7.8125vw;
    height: 7.8125vw;
  }
}
.news-title .add-button::before, .news-title .add-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #064e95;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.news-title .add-button::before {
  width: 28px;
  height: 4px;
}
@media (max-width: 640px) {
  .news-title .add-button::before {
    width: 4.375vw;
    height: 0.625vw;
  }
}
.news-title .add-button::after {
  width: 4px;
  height: 28px;
}
@media (max-width: 640px) {
  .news-title .add-button::after {
    width: 0.625vw;
    height: 4.375vw;
  }
}

.news-block.is-active .news-title .add-button::after {
  display: none;
}

.news-list {
  display: none;
}
.news-list dl {
  margin: 0 0 0.5em 0;
  padding-bottom: 0.5em;
  border-bottom: solid #d2d2d2 1px;
  position: relative;
  line-height: 2.25;
}
.news-list dt {
  margin: 0;
  padding-left: 6px;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 2.25;
  font-family: Arial, Helvetica, sans-serif;
}
@media (max-width: 640px) {
  .news-list dt {
    padding-left: 0.625vw;
    position: relative;
    left: auto;
    top: auto;
  }
}
.news-list dd {
  padding-left: 142px;
}
@media (max-width: 640px) {
  .news-list dd {
    padding-left: 0.625vw;
  }
}
.news-list dd a {
  font-size: 14px;
}
@media (max-width: 640px) {
  .news-list dd a {
    font-size: 2.34375vw;
  }
}

.news-block.is-active .news-list {
  display: block;
}

/*# sourceMappingURL=style.css.map */
