@charset "UTF-8";
/* CSS Document */
/*
 * Header & Footer Styles
 * ==========================================
 * This file imports styles for header and footer
 *
 * Structure:
 * 1. Config - Variables and Mixins
 * 2. Sections - Common reset, Header, Footer
 */
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 500;
  scroll-padding-top: 160px;
}
html body {
  font-family: "source-han-sans-cjk-ja", sans-serif;
  color: #333333;
  background: #ffffff;
  max-width: 480px;
  margin: 0 auto;
  overflow-x: hidden;
}
html body * {
  box-sizing: border-box;
}
html body.hidden {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 60px;
  }
}
html p, html h1, html h2, html h3, html h4, html ul, html li {
  margin: 0;
  padding: 0;
}
html a {
  text-decoration: none;
  color: inherit;
}
html ul {
  list-style: none;
}

section {
  padding: 45px 0;
}

.sec-title {
  text-align: left;
  position: relative;
  line-height: 17px;
  padding-left: 12px;
}
.sec-title .ja {
  font-size: 18px;
  font-weight: bold;
  line-height: 17px;
  letter-spacing: 1.1px;
  text-align: left;
  color: #221f1c;
}
.sec-title .en {
  font-size: 12px;
  color: #94b6e8;
}
.sec-title::before {
  display: block;
  content: "NEWS";
  position: absolute;
  font-family: "Josefin Sans", sans-serif;
  font-size: 41px;
  font-weight: bold;
  line-height: 0.5;
  letter-spacing: 0.82px;
  color: #e2eaf5;
  z-index: -1;
  left: 0px;
}
.sec-title--about {
  text-align: center;
}
.sec-title--about span {
  font-size: 25px;
  font-weight: 900;
  line-height: 1.34;
  letter-spacing: 0.5px;
  text-align: left;
  color: #1871f8;
  position: relative;
}
.sec-title--about span::before, .sec-title--about span::after {
  content: "";
  display: block;
  position: absolute;
  width: 130%;
  height: 1px;
  background-color: #1871f8;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
}
.sec-title--about span::before {
  top: -15px;
}
.sec-title--about span::after {
  top: inherit;
  bottom: -15px;
}

.another {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.another .sec-title::before {
  content: "COLUMN";
}
.another__contents {
  width: 93%;
  margin: 0 auto;
  display: flex;
  height: 110px;
  border-radius: 4px;
  box-shadow: 0.8px 0.55px 7.5px 0 rgba(1, 1, 1, 0.12);
  background-color: #fff;
  position: relative;
}
.another__contents a {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.another__contents .img {
  width: 100px;
  height: 100%;
  flex: none;
  margin-right: 13px;
}
.another__contents .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.another__contents .text {
  padding: 13px 13px 13.5px 0;
}
.another__contents .text h3 {
  font-size: 10.5px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.42px;
  text-align: left;
  color: #181d23;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.another__contents .text p {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.4px;
  text-align: left;
  color: #181d23;
  height: 43px;
  overflow: hidden;
  position: relative;
}
.another__contents .text p::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 6px;
  background-color: #fff;
  opacity: 0.8;
  bottom: 0;
  left: 0;
}
.another__contents .text .more {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 20px;
  border-radius: 100px;
  border: solid 1px #fd662b;
  background-color: #fff;
  position: absolute;
  right: 20px;
  top: 75px;
}
.another__contents .text .more span {
  font-size: 9px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.42px;
  text-align: left;
  color: #fd662b;
}
.another__contents .text .more::before {
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 5px;
  background: url(../images/top/arrow_more.png) no-repeat;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  right: 17px;
}

.fadein {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: relative;
  transition-delay: var(--delay, 0s);
}
.fadein.is-active {
  opacity: 1;
}

#header {
  background-color: #fff;
  height: 45px;
  padding: 0 12px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
#header .header-wrapper {
  width: 100%;
  height: 45px;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  margin: 0;
}
#header .header-wrapper .header_hamburger {
  display: block;
  z-index: 200;
  width: 45px;
  height: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}
#header .header-wrapper .header_hamburger .hamburger {
  width: 45px;
  height: 45px;
  border-radius: 2.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#header .header-wrapper .header_hamburger .hamburger .hamburger-line {
  display: block;
  transition: all 0.3s ease;
  content: "";
  width: 17px;
  height: 2.5px;
  background-color: #1871f8;
  border-radius: 100px;
  margin: 1.5px 0;
}
#header .header-wrapper .header_hamburger .hamburger .hamburger-text {
  margin-top: 5px;
  display: block;
  position: relative;
}
#header .header-wrapper .header_hamburger .hamburger .hamburger-text::before {
  content: "";
  display: block;
  position: absolute;
  width: 45px;
  content: "メニュー";
  text-align: center;
  font-size: 8px;
  font-weight: 500;
  line-height: 1.23;
  letter-spacing: 0.16px;
  text-align: center;
  color: #333;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
}
#header .header-wrapper .header_hamburger .hamburger.is-open {
  background-color: #f3f6fa;
}
#header .header-wrapper .header_hamburger .hamburger.is-open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: #1871f8 0% 0% no-repeat padding-box;
  border-radius: 10px;
  opacity: 1;
}
#header .header-wrapper .header_hamburger .hamburger.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
}
#header .header-wrapper .header_hamburger .hamburger.is-open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -3px);
  background: #1871f8 0% 0% no-repeat padding-box;
  border-radius: 10px;
  opacity: 1;
}
#header .header-wrapper .header_hamburger .hamburger.is-open .hamburger-text::before {
  content: "";
  display: block;
  position: absolute;
  content: "CLOSE";
  text-align: center;
  letter-spacing: 0.5px;
  color: #1871f8;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
#header .header-wrapper .header_hamburger.is-open {
  background-color: #fff;
}
#header .header-wrapper .logo {
  display: flex;
  width: 133px;
}
#header .header-wrapper .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#header .header-wrapper .contact {
  display: flex;
  gap: 20px;
}
#header .header-wrapper .contact a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
}
#header .header-wrapper .contact a img {
  width: 17px;
  height: 17px;
}
#header .header-wrapper .contact a {
  font-size: 8px;
  font-weight: 500;
  line-height: 1.23;
  letter-spacing: 0.16px;
  text-align: center;
  color: #333;
}
#header .filter {
  opacity: 0;
  display: none;
  width: 100%;
  height: 100dvh;
  background-color: #f3f6fa;
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
  overflow: scroll;
}
#header .filter .slide-nav {
  padding: 80px 7%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 30px;
}
#header .filter .slide-nav__list {
  font-size: 14px;
  font-weight: bold;
  line-height: 2;
}
#header .filter .slide-nav .flex-item .sec {
  width: 285px;
  margin: 0 auto;
}
#header .filter .slide-nav .flex-item .sec .menu-title {
  color: #1E3C0D;
  padding: 20px 2.5px;
  letter-spacing: 0.1em;
  border-bottom: solid 1px #C2E0F0;
  position: relative;
}
#header .filter .slide-nav .flex-item .sec .menu-title a {
  display: block;
  text-align: left;
  color: #5C5C5C;
  position: relative;
}
#header .filter .slide-nav .flex-item .sec .menu-title a::before {
  content: "";
  display: block;
  width: 10px;
  height: 12.5px;
  background: url(../images/hf/SMP/right_blue.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
}
#header .filter .slide-nav .flex-item .sec .menu-title.bb-none {
  border: none;
}
#header .filter .slide-nav .flex-item .sec .menu-title.b-none.open {
  border: none;
}
#header .filter .slide-nav .flex-item .sec .menu-title.hasChild a::before {
  width: 17.5px;
  height: 1.5px;
  background: #0089B0 0% 0% no-repeat padding-box;
  right: 2.5px;
}
#header .filter .slide-nav .flex-item .sec .menu-title.hasChild a::after {
  content: "";
  display: block;
  position: absolute;
  opacity: 1;
  width: 1.5px;
  height: 17.5px;
  background: #0089B0 0% 0% no-repeat padding-box;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10.5px;
  transition: all 0.3s ease;
}
#header .filter .slide-nav .flex-item .sec .menu-title.hasChild.open a::after {
  display: none;
  opacity: 0;
}
#header .filter .slide-nav .flex-item .sec .slide-child-nav {
  overflow: hidden;
  transition: height 0.4s ease;
  opacity: 0;
  height: 0;
  transition: height 0.5s ease, opacity 0.5s ease;
}
#header .filter .slide-nav .flex-item .sec .slide-child-nav .menu-title {
  display: block;
  margin: 15px 0;
}
#header .filter .slide-nav .flex-item .sec .slide-child-nav .menu-detail {
  font-size: 12px;
  position: relative;
}
#header .filter .slide-nav .flex-item .sec .slide-child-nav .menu-detail a {
  text-align: left;
  font: normal normal normal 15px/35px "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.45px;
  color: #5C5C5C;
  transition: all 0.2s ease;
  white-space: nowrap;
}
#header .filter .slide-nav .flex-item .sec .slide-child-nav .menu-detail:last-child {
  margin-bottom: 15px;
}
#header .filter .slide-nav .flex-item .sec .slide-child-nav .nav-menu {
  position: relative;
}
#header .filter .slide-nav .flex-item .sec .slide-child-nav.open {
  opacity: 1;
  height: auto;
  border-bottom: solid 1px #C2E0F0;
}
#header .filter .slide-nav .flex-item .sec.bb-none {
  border-bottom: none;
}
#header .filter .contact {
  background: #F0F6F8 0% 0% no-repeat padding-box;
}
#header .filter.is-open {
  display: block;
  opacity: 1;
}

.footer-cta-area {
  opacity: 0;
  width: 100%;
  transition: all 0.3s ease;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
}
.footer-cta-area .footer-cta {
  background-color: #06c755;
  align-items: center;
  padding: 20px 0;
}
.footer-cta-area .footer-cta .top {
  margin-bottom: 9px;
}
.footer-cta-area .footer-cta .top p {
  font-size: 17px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.7px;
  text-align: center;
  color: #fffc00;
}
.footer-cta-area .footer-cta .bottom p {
  font-size: 23px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.footer-cta-area .footer-cta .bottom p img {
  width: 12px;
  height: 18px;
  display: inline-block;
  margin-top: 3px;
}
.footer-cta-area.footer-cta-scrolled {
  opacity: 1;
  transform: translateY(0);
}

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