@charset "UTF-8";
html {
  font-size: 62.5%;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
}
html body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  position: relative;
  overflow-x: hidden;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  color: #20282C;
  font-size: 1.6rem;
}
html body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease;
}
html body .damion {
  font-family: "Damion", cursive;
  font-weight: 400;
  font-style: normal;
}
html body header {
  padding: 3rem 0;
  position: relative;
}
@media screen and (max-width: 991px) {
  html body header {
    padding: 1rem 0;
  }
}
@media screen and (max-width: 767px) {
  html body header {
    background-color: #fff;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
  }
}
html body header .wrapper {
  max-width: 1760px;
}
@media screen and (max-width: 991px) {
  html body header .wrapper {
    display: flex;
    justify-content: center;
    padding-right: 8rem;
  }
}
@media screen and (max-width: 767px) {
  html body header .wrapper {
    padding: 0;
  }
}
html body header .wrapper .header-inner {
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  html body header .wrapper .header-inner .corporate-logo {
    position: absolute;
    left: 10px;
    top: 10px;
  }
}
html body header .wrapper .header-inner .corporate-logo .corporate-logo__link .corporate-logo__tagline {
  letter-spacing: 0.04em;
  font-weight: 500;
  font-size: 1.4rem;
}
html body header .wrapper .header-inner .corporate-logo .corporate-logo__link .corporate-logo__image img {
  max-width: 240px;
}
@media screen and (max-width: 991px) {
  html body header .wrapper .header-inner .corporate-logo .corporate-logo__link .corporate-logo__image img {
    max-width: 220px;
  }
}
@media screen and (max-width: 767px) {
  html body header .wrapper .header-inner .corporate-logo .corporate-logo__link .corporate-logo__image img {
    max-width: 35px;
  }
}
html body header .wrapper .header-inner .global-nav {
  position: relative;
  width: 200px;
}
@media screen and (max-width: 991px) {
  html body header .wrapper .header-inner .global-nav {
    position: fixed;
    right: -100%;
    top: 0;
    width: 100%;
    height: 100vh;
    padding-top: 60px;
    background-color: #fff;
    transition: all 0.6s;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
    padding: 5rem 2rem 10rem;
  }
}
@media screen and (max-width: 991px) {
  html body header .wrapper .header-inner .global-nav .global-nav__list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
}
html body header .wrapper .header-inner .global-nav .global-nav__list .global-nav__item {
  text-align: center;
}
@media screen and (max-width: 991px) {
  html body header .wrapper .header-inner .global-nav .global-nav__list .global-nav__item {
    text-align: left;
    margin-bottom: 3rem;
  }
}
html body header .wrapper .header-inner .global-nav .global-nav__list .global-nav__item .global-nav__link {
  font-size: 1.8rem;
  color: #38B385;
  letter-spacing: 0;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}
@media screen and (max-width: 991px) {
  html body header .wrapper .header-inner .global-nav .global-nav__list .global-nav__item .global-nav__link {
    color: #3878B4;
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0;
  }
}
html body header .wrapper .header-inner .global-nav .global-nav__list .global-nav__item .global-nav__link::before {
  content: "";
  background-image: url(../../images/common/icon-loupe-gr.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 29px;
  height: 24px;
  vertical-align: bottom;
}
@media screen and (max-width: 991px) {
  html body header .wrapper .header-inner .global-nav .global-nav__list .global-nav__item .global-nav__link::before {
    background-image: none;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left: 13px solid #3878B4;
    width: auto;
    height: auto;
  }
}
html body header .wrapper .header-inner .global-nav .global-nav__list .global-nav__item .global-nav__submenu {
  border: 1px solid #38B385;
  position: absolute;
  width: 100%;
  max-width: 200px;
  display: none;
}
@media screen and (max-width: 991px) {
  html body header .wrapper .header-inner .global-nav .global-nav__list .global-nav__item .global-nav__submenu {
    display: block !important;
    border: none;
    max-width: 100%;
    position: static;
    margin-top: 1rem;
  }
}
html body header .wrapper .header-inner .global-nav .global-nav__list .global-nav__item .global-nav__submenu .global-nav__submenu-item:not(.last-child) .global-nav__submenu-link {
  border-bottom: 1px solid;
}
@media screen and (max-width: 991px) {
  html body header .wrapper .header-inner .global-nav .global-nav__list .global-nav__item .global-nav__submenu .global-nav__submenu-item:not(.last-child) .global-nav__submenu-link {
    border-bottom-style: dashed;
  }
}
@media screen and (max-width: 991px) {
  html body header .wrapper .header-inner .global-nav .global-nav__list .global-nav__item .global-nav__submenu .global-nav__submenu-item:not(.last-child):last-child .global-nav__submenu-link {
    border-bottom: none;
  }
}
@media screen and (max-width: 991px) {
  html body header .wrapper .header-inner .global-nav .global-nav__list .global-nav__item .global-nav__submenu .global-nav__submenu-item.last-child .global-nav__submenu-link {
    border-bottom: 1px dashed;
  }
}
html body header .wrapper .header-inner .global-nav .global-nav__list .global-nav__item .global-nav__submenu .global-nav__submenu-item .global-nav__submenu-link {
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #38B385;
  display: block;
  text-align: center;
  padding: 1rem;
  transition: 250ms;
  background-color: #fff;
}
@media screen and (max-width: 991px) {
  html body header .wrapper .header-inner .global-nav .global-nav__list .global-nav__item .global-nav__submenu .global-nav__submenu-item .global-nav__submenu-link {
    color: #3878B4;
    text-align: left;
    padding-left: 0;
    margin-left: 2rem;
  }
}
html body header .wrapper .header-inner .global-nav .global-nav__list .global-nav__item .global-nav__submenu .global-nav__submenu-item .global-nav__submenu-link:hover {
  background-color: #EBF7F3;
}
html body header .wrapper .header-inner .hamburger {
  display: none;
}
@media screen and (max-width: 991px) {
  html body header .wrapper .header-inner .hamburger {
    display: block;
    position: fixed;
    right: 15px;
    top: 8px;
    width: 40px; /* クリックしやすい幅 */
    height: 40px; /* クリックしやすい高さ */
    cursor: pointer;
    z-index: 300;
  }
  html body header .wrapper .header-inner .hamburger .hamburger__border {
    position: absolute;
    left: 11px;
    width: 25px;
    height: 2px;
    background-color: #333;
    transition: all 0.6s;
  }
  html body header .wrapper .header-inner .hamburger .hamburger__border:nth-child(1) {
    top: 14px;
  }
  html body header .wrapper .header-inner .hamburger .hamburger__border:nth-child(2) {
    top: 20px;
  }
  html body header .wrapper .header-inner .hamburger .hamburger__border:nth-child(3) {
    top: 26px;
  }
}
html body header .wrapper .header-inner .overlay {
  display: none;
}
@media screen and (max-width: 991px) {
  html body header .wrapper .header-inner .overlay {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s;
    cursor: pointer;
  }
}
html body header .wrapper .site-logo {
  text-align: center;
}
@media screen and (max-width: 991px) {
  html body header .wrapper .site-logo {
    padding-left: 15rem;
  }
}
@media screen and (max-width: 767px) {
  html body header .wrapper .site-logo {
    padding-left: 2rem;
  }
}
html body header .wrapper .site-logo.site-logo-subpage {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 4.5rem;
  padding-left: 0;
}
@media screen and (max-width: 991px) {
  html body header .wrapper .site-logo.site-logo-subpage {
    position: static;
    transform: none;
  }
}
html body header .wrapper .site-logo.site-logo-subpage .site-logo__link p.site-logo__main {
  font-size: 3.3rem;
}
@media screen and (max-width: 767px) {
  html body header .wrapper .site-logo.site-logo-subpage .site-logo__link p.site-logo__main {
    font-size: 1.8rem;
  }
}
html body header .wrapper .site-logo.site-logo-subpage .site-logo__link p.site-logo__main .damion {
  font-size: 4.9rem;
}
@media screen and (max-width: 767px) {
  html body header .wrapper .site-logo.site-logo-subpage .site-logo__link p.site-logo__main .damion {
    font-size: 3.4rem;
  }
}
html body header .wrapper .site-logo .site-logo__link {
  display: inline-block;
  text-align: center;
}
html body header .wrapper .site-logo .site-logo__link p {
  color: #3878B4;
  font-weight: 500;
  line-height: 1;
}
html body header .wrapper .site-logo .site-logo__link p.site-logo__main {
  font-size: 5.6rem;
  letter-spacing: 0;
}
@media screen and (max-width: 991px) {
  html body header .wrapper .site-logo .site-logo__link p.site-logo__main {
    font-size: 4.6rem;
  }
}
@media screen and (max-width: 767px) {
  html body header .wrapper .site-logo .site-logo__link p.site-logo__main {
    font-size: 1.8rem;
  }
}
html body header .wrapper .site-logo .site-logo__link p.site-logo__main .damion {
  font-size: 9.1rem;
}
@media screen and (max-width: 991px) {
  html body header .wrapper .site-logo .site-logo__link p.site-logo__main .damion {
    font-size: 8.1rem;
  }
}
@media screen and (max-width: 767px) {
  html body header .wrapper .site-logo .site-logo__link p.site-logo__main .damion {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 991px) {
  html body header .wrapper .site-logo .site-logo__link p.site-logo__tagline {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  html body header .wrapper .site-logo .site-logo__link p.site-logo__tagline {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 991px) {
  html body.nav-open header .wrapper .header-inner .global-nav {
    right: 0;
  }
  html body.nav-open header .wrapper .header-inner .hamburger .hamburger__border:nth-child(1) {
    transform: rotate(45deg);
    top: 20px;
  }
  html body.nav-open header .wrapper .header-inner .hamburger .hamburger__border:nth-child(2) {
    width: 0;
    left: 50%;
  }
  html body.nav-open header .wrapper .header-inner .hamburger .hamburger__border:nth-child(3) {
    transform: rotate(-45deg);
    top: 20px;
  }
  html body.nav-open header .wrapper .header-inner .overlay {
    opacity: 0.8;
    visibility: visible;
  }
}
html body footer {
  padding: 6rem 0 0;
}
@media screen and (max-width: 991px) {
  html body footer {
    padding: 6rem 0 80px;
  }
}
html body footer .wrapper {
  padding: 0;
}
@media screen and (max-width: 1199px) {
  html body footer .wrapper {
    padding: 0 1rem;
  }
}
@media screen and (max-width: 991px) {
  html body footer .wrapper {
    padding: 0 1.5rem;
  }
}
html body footer .wrapper .footer-nav {
  display: flex;
  justify-content: center;
  padding-bottom: 6rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 1199px) {
  html body footer .wrapper .footer-nav {
    justify-content: left;
  }
}
@media screen and (max-width: 991px) {
  html body footer .wrapper .footer-nav {
    display: block;
  }
}
html body footer .wrapper .footer-nav .footer-nav__item {
  position: relative;
  padding-right: 2rem;
  margin-right: 2rem;
}
@media screen and (max-width: 1199px) {
  html body footer .wrapper .footer-nav .footer-nav__item {
    flex-basis: auto;
    padding-bottom: 4rem;
  }
  html body footer .wrapper .footer-nav .footer-nav__item:nth-child(2) {
    margin-right: 0;
    padding-right: 0;
  }
  html body footer .wrapper .footer-nav .footer-nav__item:nth-child(2)::after {
    content: none;
  }
}
@media screen and (max-width: 991px) {
  html body footer .wrapper .footer-nav .footer-nav__item {
    padding-bottom: 3rem;
  }
}
html body footer .wrapper .footer-nav .footer-nav__item:last-child {
  margin-right: 0;
  padding-right: 0;
}
@media screen and (max-width: 991px) {
  html body footer .wrapper .footer-nav .footer-nav__item:last-child {
    padding-bottom: 0;
  }
}
html body footer .wrapper .footer-nav .footer-nav__item:last-child::after {
  content: none;
}
html body footer .wrapper .footer-nav .footer-nav__item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-color: #20282C;
  width: 1px;
  height: 26px;
}
@media screen and (max-width: 991px) {
  html body footer .wrapper .footer-nav .footer-nav__item::after {
    content: none;
  }
}
html body footer .wrapper .footer-nav .footer-nav__item .footer-nav__link {
  display: block;
  color: #3878B4;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  padding-left: 1.2rem;
  letter-spacing: 0;
}
@media screen and (max-width: 991px) {
  html body footer .wrapper .footer-nav .footer-nav__item .footer-nav__link {
    font-size: 1.6rem;
  }
}
html body footer .wrapper .footer-nav .footer-nav__item .footer-nav__link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border: 7px solid transparent;
  border-left: 10px solid #3878B4;
}
html body footer .wrapper .footer-nav .footer-nav__item .footer-nav__submenu {
  display: flex;
  flex-wrap: wrap;
  max-width: 732px;
  min-width: 732px;
}
@media screen and (max-width: 991px) {
  html body footer .wrapper .footer-nav .footer-nav__item .footer-nav__submenu {
    min-width: 100%;
  }
}
html body footer .wrapper .footer-nav .footer-nav__item .footer-nav__submenu .footer-nav__submenu-item {
  flex-basis: 20%;
  padding-top: 2rem;
}
@media screen and (max-width: 991px) {
  html body footer .wrapper .footer-nav .footer-nav__item .footer-nav__submenu .footer-nav__submenu-item {
    flex-basis: 33.3333333333%;
    padding-top: 1.5rem;
  }
}
@media screen and (max-width: 991px) {
  html body footer .wrapper .footer-nav .footer-nav__item .footer-nav__submenu .footer-nav__submenu-item.min-125 {
    min-width: 130px;
  }
}
html body footer .wrapper .footer-nav .footer-nav__item .footer-nav__submenu .footer-nav__submenu-item .footer-nav__submenu-link {
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (max-width: 991px) {
  html body footer .wrapper .footer-nav .footer-nav__item .footer-nav__submenu .footer-nav__submenu-item .footer-nav__submenu-link {
    font-size: 1.4rem;
  }
}
html body footer .wrapper .footer-nav .footer-nav__item .footer-nav__submenu .footer-nav__submenu-item .footer-nav__submenu-link::before {
  content: "〇";
}
html body footer .wrapper .footer-logo {
  padding-bottom: 3rem;
}
html body footer .wrapper .footer-logo .footer-logo__link {
  display: block;
  margin: 0 auto;
  max-width: 257px;
}
@media screen and (max-width: 991px) {
  html body footer .wrapper .footer-logo .footer-logo__link {
    max-width: 217px;
  }
}
html body footer .copyright {
  background-color: #3878B4;
  display: flex;
  justify-content: center;
  padding: 1.5rem 1rem;
}
@media screen and (max-width: 991px) {
  html body footer .copyright {
    padding: 1rem;
  }
}
html body footer .copyright p {
  color: #fff;
}
@media screen and (max-width: 991px) {
  html body footer .copyright p {
    font-size: 1rem;
  }
}
html body footer .copyright p a {
  border-bottom: 1px solid;
  margin-left: 3rem;
}
@media screen and (max-width: 991px) {
  html body footer .copyright p a {
    margin-left: 2rem;
  }
}
html body .breadcrumb {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  line-height: 2.143;
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 991px) {
  html body .breadcrumb {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 2rem 0;
  }
}
html body .breadcrumb a {
  border-bottom: 1px solid;
}
html body .pagetop {
  display: none;
  position: fixed;
  right: 50px;
  bottom: 30px;
}
@media screen and (max-width: 767px) {
  html body .pagetop {
    right: 5px;
    bottom: 140px;
  }
}
@media screen and (max-width: 767px) {
  html body .pagetop img {
    max-width: 36px;
  }
}
html body .contact-fixed {
  z-index: 2;
  position: relative;
  display: none;
}
@media screen and (max-width: 991px) {
  html body .contact-fixed {
    display: block !important;
    opacity: 1 !important;
  }
}
html body .contact-fixed .contact-fixed__button {
  display: block;
  position: fixed;
  right: 0;
  bottom: 300px;
  width: 80px;
  height: 350px;
  background-color: #2D70AF;
  color: #fff;
  transition: 250ms;
}
@media screen and (max-width: 991px) {
  html body .contact-fixed .contact-fixed__button {
    bottom: 0;
    width: 100%;
    height: 80px;
    background-color: #fff;
  }
}
html body .contact-fixed .contact-fixed__button:hover {
  background-color: #37AC89;
  transition: 250ms;
}
@media screen and (max-width: 991px) {
  html body .contact-fixed .contact-fixed__button:hover {
    background-color: #fff;
  }
}
html body .contact-fixed .contact-fixed__button .contact-fixed__text {
  writing-mode: vertical-rl;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 22px;
  height: 300px;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.36em;
}
@media screen and (max-width: 991px) {
  html body .contact-fixed .contact-fixed__button .contact-fixed__text {
    writing-mode: inherit;
    background-color: #3878B4;
    width: 100%;
    height: 50px;
    letter-spacing: 0;
    max-width: 270px;
    border-radius: 25px;
    text-align: center;
    line-height: 47px;
    font-size: 1.5rem;
  }
}
html body p {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.875;
}
html body .wrapper {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem;
}
html body img {
  height: auto;
  max-width: 100%;
}
html body .cf::before, html body .cf::after {
  display: table;
  clear: both;
  content: "";
}
html body .alpha {
  transition: opacity 250ms;
}
html body .alpha:hover {
  opacity: 0.75;
}
html body .flex {
  display: flex;
  align-items: center;
}
html body .center {
  text-align: center;
}
html body .md {
  display: none !important;
}
@media screen and (max-width: 991px) {
  html body .md {
    display: block !important;
  }
}
@media screen and (max-width: 991px) {
  html body .md-pc {
    display: none !important;
  }
}
html body .sm {
  display: none !important;
}
@media screen and (max-width: 767px) {
  html body .sm {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  html body .sm-pc {
    display: none !important;
  }
}
html body .xs {
  display: none !important;
}
@media screen and (max-width: 575px) {
  html body .xs {
    display: block !important;
  }
}
@media screen and (max-width: 575px) {
  html body .xs-pc {
    display: none !important;
  }
}
html body main .more-button {
  background-color: rgba(45, 112, 175, 0.12);
  display: block;
  max-width: 300px;
  border-radius: 999px;
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 250ms;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  html body main .more-button {
    padding: 1.5rem 1rem;
    max-width: 226px;
  }
}
html body main .more-button:hover {
  background-color: #2D70AF;
}
html body main .more-button:hover .more-button__text {
  color: #fff;
}
html body main .more-button:hover .more-button__arrow::after {
  border-bottom: solid 2px #fff;
  border-right: solid 3px #fff;
}
html body main .more-button .more-button__text {
  color: #2D70AF;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding-right: 2rem;
}
@media screen and (max-width: 767px) {
  html body main .more-button .more-button__text {
    font-size: 1.6rem;
  }
}
html body main .more-button .more-button__arrow {
  display: flex;
}
html body main .more-button .more-button__arrow::after {
  content: "";
  width: 53px;
  height: 10px;
  border-bottom: solid 2px #2D70AF;
  border-right: solid 3px #2D70AF;
  transform: skew(50deg);
}
html body main .popular-tags {
  background-image: url(../../images/common/bg-stripe-gr.svg);
  padding: 4.5rem;
}
@media screen and (max-width: 575px) {
  html body main .popular-tags {
    padding: 4.5rem 0;
  }
}
html body main .popular-tags .popular-tags__title {
  color: #38B087;
  font-size: 2.4rem;
  letter-spacing: 0;
  font-weight: 600;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 575px) {
  html body main .popular-tags .popular-tags__title {
    font-size: 1.8rem;
    padding-bottom: 1.5rem;
  }
}
html body main .popular-tags .popular-tags__title::before {
  content: "";
  width: 25px;
  height: 25px;
  display: inline-block;
  background-color: #38B087;
  border-radius: 5px;
  vertical-align: bottom;
  margin-right: 0.5rem;
}
@media screen and (max-width: 575px) {
  html body main .popular-tags .popular-tags__title::before {
    width: 20px;
    height: 20px;
  }
}
html body main .popular-tags .popular-tags__list {
  display: flex;
  flex-wrap: wrap;
}
html body main .popular-tags .popular-tags__list .popular-tags__item .popular-tags__link {
  display: block;
  border-radius: 38px;
  border: 2px solid #38B087;
  background-color: #fff;
  text-align: center;
  padding: 0.8rem 1rem;
  margin-right: 1rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 500;
  transition: opacity 250ms;
}
html body main .popular-tags .popular-tags__list .popular-tags__item .popular-tags__link:hover {
  opacity: 0.75;
}
@media screen and (max-width: 575px) {
  html body main .popular-tags .popular-tags__list .popular-tags__item .popular-tags__link {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
}
html body main .popular-tags .popular-tags__more--wrap {
  text-align: right;
  padding-top: 4rem;
}
@media screen and (max-width: 767px) {
  html body main .popular-tags .popular-tags__more--wrap {
    padding-top: 1rem;
  }
}
html body main .popular-tags .popular-tags__more--wrap .popular-tags__more {
  font-size: 2rem;
  font-weight: 600;
  border-bottom: 1px solid;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  html body main .popular-tags .popular-tags__more--wrap .popular-tags__more {
    font-size: 1.6rem;
  }
}
html body main .category-list {
  margin-bottom: 6.5rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem 6.5rem;
}
@media screen and (max-width: 575px) {
  html body main .category-list {
    padding: 0 0 4rem;
  }
}
html body main .category-list .category-list__title {
  color: #2D70AF;
  font-size: 2.4rem;
  font-weight: 600;
  position: relative;
  text-indent: -1rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 575px) {
  html body main .category-list .category-list__title {
    display: none;
  }
}
html body main .category-list .category-list__title::after {
  content: "";
  background-color: #2D70AF;
  width: 100%;
  height: 1px;
  display: block;
  position: absolute;
  left: 200px;
  top: 50%;
  transform: translateY(-50%);
}
html body main .category-list .category-list__title--sp {
  border: 2px solid #2D70AF;
  text-align: center;
  color: #2D70AF;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 1.5rem;
}
@media screen and (max-width: 575px) {
  html body main .category-list .category-list__title--sp {
    margin: 0 1rem;
  }
}
html body main .category-list .category-list__title--sp::before {
  content: "";
  background-image: url(../../images/common/icon-loupe-bl.svg);
  background-size: contain;
  width: 20px;
  height: 20px;
  display: inline-block;
  background-repeat: no-repeat;
  vertical-align: bottom;
  margin-right: 0.5rem;
}
@media screen and (max-width: 575px) {
  html body main .category-list .js-cateList {
    display: none;
    background-color: rgba(56, 120, 180, 0.15);
  }
}
html body main .category-list .category-list__items {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 575px) {
  html body main .category-list .category-list__items {
    padding: 3rem 1rem;
  }
}
html body main .category-list .category-list__items .category-list__item {
  flex-basis: 20%;
}
@media screen and (max-width: 575px) {
  html body main .category-list .category-list__items .category-list__item {
    flex-basis: 50%;
  }
}
html body main .category-list .category-list__items .category-list__item.category-list__item--current .category-list__link, html body main .category-list .category-list__items .category-list__item:hover .category-list__link {
  background-color: #3878B4;
  color: #fff;
}
html body main .category-list .category-list__items .category-list__item:nth-child(5) .category-list__link, html body main .category-list .category-list__items .category-list__item:nth-child(10) .category-list__link {
  margin-right: 0;
}
html body main .category-list .category-list__items .category-list__item:nth-child(n+6) .category-list__link {
  margin-top: 2.5rem;
}
@media screen and (max-width: 991px) {
  html body main .category-list .category-list__items .category-list__item:nth-child(n+6) .category-list__link {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 575px) {
  html body main .category-list .category-list__items .category-list__item:nth-child(n+6) .category-list__link {
    margin: 0;
  }
}
@media screen and (max-width: 575px) {
  html body main .category-list .category-list__items .category-list__item:nth-child(odd) .category-list__link {
    margin-right: 1rem;
  }
}
@media screen and (max-width: 575px) {
  html body main .category-list .category-list__items .category-list__item:nth-child(n+3) .category-list__link {
    margin-top: 1rem;
  }
}
html body main .category-list .category-list__items .category-list__item .category-list__link {
  display: block;
  color: #3878B4;
  background-color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 5px;
  border: 2px solid;
  padding: 2.5rem 1rem;
  margin-right: 2.5rem;
  text-align: center;
  transition: 250ms;
}
@media screen and (max-width: 991px) {
  html body main .category-list .category-list__items .category-list__item .category-list__link {
    font-size: 1.4rem;
    padding: 1.5rem 1rem;
    margin-right: 1rem;
  }
}
@media screen and (max-width: 767px) {
  html body main .category-list .category-list__items .category-list__item .category-list__link {
    font-size: 1.3rem;
    padding: 1.5rem 0.1rem;
    margin-right: 0.3rem;
  }
}
@media screen and (max-width: 575px) {
  html body main .category-list .category-list__items .category-list__item .category-list__link {
    font-size: 1.4rem;
    font-weight: 500;
    border-radius: 999px;
    padding: 1.2rem 0.5rem;
    margin: 0;
  }
}
html body main .base-posts-wrapper {
  position: relative;
}
html body main .base-posts-wrapper .base-title-wrapper {
  max-width: 85%;
  height: 355px;
  padding: 5rem 1rem 0;
  position: absolute;
  width: 100%;
  background: #2D70AF;
  background: linear-gradient(135deg, #38B087 0%, #2D70AF 22%, #2D70AF 100%);
}
@media screen and (max-width: 1600px) {
  html body main .base-posts-wrapper .base-title-wrapper {
    max-width: 95%;
  }
}
@media screen and (max-width: 1400px) {
  html body main .base-posts-wrapper .base-title-wrapper {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  html body main .base-posts-wrapper .base-title-wrapper {
    height: auto;
    padding: 2.1rem 1rem;
    position: static;
  }
}
html body main .base-posts-wrapper .base-title-wrapper.base-title-wrapper-toright {
  right: 0;
  background: #2D70AF;
  background: linear-gradient(-135deg, #38B087 0%, #2D70AF 22%, #2D70AF 100%);
}
html body main .base-posts-wrapper .base-title-wrapper.base-title-wrapper-toright .base-title {
  margin: 0 auto 0 12rem;
}
@media screen and (max-width: 1920px) {
  html body main .base-posts-wrapper .base-title-wrapper.base-title-wrapper-toright .base-title {
    margin: 0 auto 0 2rem;
  }
}
@media screen and (max-width: 767px) {
  html body main .base-posts-wrapper .base-title-wrapper.base-title-wrapper-toright .base-title {
    margin: 0 auto;
  }
}
html body main .base-posts-wrapper .base-title-wrapper .base-title {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: end;
}
html body main .base-posts-wrapper .base-title-wrapper .base-title span {
  color: #fff;
  display: block;
  z-index: 1;
}
html body main .base-posts-wrapper .base-title-wrapper .base-title span.base-title__en {
  font-size: 9rem;
  margin-bottom: 2rem;
}
html body main .base-posts-wrapper .base-title-wrapper .base-title span.base-title__en::first-letter {
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  html body main .base-posts-wrapper .base-title-wrapper .base-title span.base-title__en {
    font-size: 4.6rem;
    margin-bottom: 0.5rem;
  }
}
@media screen and (max-width: 575px) {
  html body main .base-posts-wrapper .base-title-wrapper .base-title span.base-title__en {
    font-size: 4.3rem;
  }
}
html body main .base-posts-wrapper .base-title-wrapper .base-title span.base-title__jp {
  font-size: 2.4rem;
  font-weight: 600;
  position: relative;
  margin-left: 3rem;
}
@media screen and (max-width: 767px) {
  html body main .base-posts-wrapper .base-title-wrapper .base-title span.base-title__jp {
    font-size: 1.4rem;
    margin-left: 2rem;
  }
}
html body main .base-posts-wrapper .base-title-wrapper .base-title span.base-title__jp::before {
  content: "";
  position: absolute;
  left: -15px;
  bottom: -20px;
  width: 2px;
  height: 100px;
  background: #fff;
  border-radius: 3px;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  html body main .base-posts-wrapper .base-title-wrapper .base-title span.base-title__jp::before {
    left: -10px;
    bottom: -5px;
    width: 1px;
    height: 40px;
  }
}
html body main .base-posts-wrapper .base-title-wrapper--bottom {
  position: relative;
  padding: 240px 0 12rem;
}
@media screen and (max-width: 767px) {
  html body main .base-posts-wrapper .base-title-wrapper--bottom {
    padding: 4rem 0 5rem;
  }
}
html body main .posts-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  html body main .posts-list {
    display: block;
    padding-bottom: 3rem;
  }
}
html body main .posts-list .posts-item {
  flex-basis: 33.3333333333%;
  max-width: 340px;
}
@media screen and (max-width: 1199px) {
  html body main .posts-list .posts-item {
    flex-basis: 30%;
    max-width: 100%;
  }
}
@media screen and (max-width: 991px) {
  html body main .posts-list .posts-item {
    flex-basis: 47.5%;
    max-width: 100%;
  }
}
html body main .posts-item:not(:nth-child(3n)) {
  margin-right: 4rem;
}
@media screen and (max-width: 1199px) {
  html body main .posts-item:not(:nth-child(3n)) {
    margin-right: 2rem;
  }
}
@media screen and (max-width: 991px) {
  html body main .posts-item:not(:nth-child(3n)) {
    margin-right: 0;
  }
}
@media screen and (max-width: 991px) {
  html body main .posts-item:not(:nth-child(2n)) {
    margin-right: 2rem;
  }
}
html body main .posts-item:nth-child(n+4) {
  padding-top: 6rem;
}
@media screen and (max-width: 991px) {
  html body main .posts-item:nth-child(n+3) {
    padding-top: 3rem;
  }
}
@media screen and (max-width: 767px) {
  html body main .posts-item:nth-child(n+2) {
    padding-top: 5rem;
  }
}
html body main .posts-item .posts-item-inner {
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  html body main .posts-item .posts-item-inner {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  html body main .posts-item .posts-item-inner {
    display: flex;
    max-width: 100%;
  }
}
html body main .posts-item .posts-item-inner .posts-item__link {
  display: inline-block;
}
html body main .posts-item .posts-item-inner .posts-item__thumbnail {
  max-width: 340px;
  height: 240px;
  overflow: hidden;
  object-fit: cover;
}
@media screen and (max-width: 1199px) {
  html body main .posts-item .posts-item-inner .posts-item__thumbnail {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  html body main .posts-item .posts-item-inner .posts-item__thumbnail {
    width: 140px;
    height: 140px;
  }
}
html body main .posts-item .posts-item-inner .posts-item__thumbnail img {
  max-width: 340px;
  transition: transform 0.6s ease;
}
@media screen and (max-width: 1199px) {
  html body main .posts-item .posts-item-inner .posts-item__thumbnail img {
    max-width: 100%;
  }
}
html body main .posts-item .posts-item-inner .posts-item__thumbnail img:hover {
  transform: scale(1.15);
}
html body main .posts-item .posts-item-inner .posts-item__date {
  font-size: 1.4rem;
  padding: 1.5rem 0;
}
@media screen and (max-width: 767px) {
  html body main .posts-item .posts-item-inner .posts-item__date {
    font-size: 1.2rem;
    padding: 0.5rem 0 0;
  }
}
html body main .posts-item .posts-item-inner .posts-item__date::before {
  content: "";
  background-image: url(../../images/common/icon-time-br.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
  display: inline-block;
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  html body main .posts-item .posts-item-inner .posts-item__date::before {
    width: 12px;
    height: 12px;
  }
}
@media screen and (max-width: 767px) {
  html body main .posts-item .posts-item-inner .posts-item-contents {
    padding-left: 1rem;
  }
}
html body main .posts-item .posts-item-inner .posts-item-contents .posts-item__category {
  display: flex;
  flex-wrap: wrap;
}
html body main .posts-item .posts-item-inner .posts-item-contents .posts-item__category li:nth-child(n+2) a {
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  html body main .posts-item .posts-item-inner .posts-item-contents .posts-item__category li:nth-child(n+2) a {
    margin-left: 0.5rem;
  }
}
html body main .posts-item .posts-item-inner .posts-item-contents .posts-item__category li a {
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  border: 2px solid;
  color: #3878B4;
  border-radius: 5px;
  padding: 0.4rem 1rem;
  display: inline-block;
  transition: 250ms;
}
@media screen and (max-width: 767px) {
  html body main .posts-item .posts-item-inner .posts-item-contents .posts-item__category li a {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}
html body main .posts-item .posts-item-inner .posts-item-contents .posts-item__category li a:hover {
  background-color: #3878B4;
  color: #fff;
  border: 2px solid #3878B4;
}
html body main .posts-item .posts-item-inner .posts-item-contents .posts-item__title {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.667;
  display: inline-block;
  margin: 1.5rem 0 0;
}
@media screen and (max-width: 767px) {
  html body main .posts-item .posts-item-inner .posts-item-contents .posts-item__title {
    font-size: 1.6rem;
    line-height: 1.625;
    margin: 0 0 1rem;
  }
}
html body main .posts-item .posts-item-inner .posts-item-contents .posts-item__tags {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  html body main .posts-item .posts-item-inner .posts-item-contents .posts-item__tags {
    margin-top: 1.5rem;
  }
}
html body main .posts-item .posts-item-inner .posts-item-contents .posts-item__tags .posts-item__tags--link {
  position: relative;
  display: inline-block;
  margin-left: 1.2rem;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  color: #fff;
  background: #6EC3A9;
}
html body main .posts-item .posts-item-inner .posts-item-contents .posts-item__tags .posts-item__tags--link::before, html body main .posts-item .posts-item-inner .posts-item-contents .posts-item__tags .posts-item__tags--link::after {
  content: "";
  position: absolute;
}
html body main .posts-item .posts-item-inner .posts-item-contents .posts-item__tags .posts-item__tags--link::before {
  top: 0;
  left: -12px;
  border-width: 15px 12px 15px 0;
  border-style: solid;
  border-color: transparent #6EC3A9 transparent transparent;
}
@media screen and (max-width: 767px) {
  html body main .posts-item .posts-item-inner .posts-item-contents .posts-item__tags .posts-item__tags--link::before {
    left: -10px;
    border-width: 10px 10px 10px 0;
  }
}
html body main .posts-item .posts-item-inner .posts-item-contents .posts-item__tags .posts-item__tags--link::after {
  top: calc(50% - 5px);
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
}
@media screen and (max-width: 767px) {
  html body main .posts-item .posts-item-inner .posts-item-contents .posts-item__tags .posts-item__tags--link::after {
    top: calc(50% - 3px);
    left: -2px;
    width: 6px;
    height: 6px;
  }
}
html body main .posts-item .posts-item-inner .posts-item-contents .posts-item__tags .posts-item__tags--link a {
  font-size: 1.2rem;
  display: block;
  padding: 0.8rem 1rem;
}
@media screen and (max-width: 767px) {
  html body main .posts-item .posts-item-inner .posts-item-contents .posts-item__tags .posts-item__tags--link a {
    font-size: 1rem;
    padding: 0.4rem 0.5rem 0.3rem 0.7rem;
    height: 20px;
  }
}
html body main .cta-contact__item {
  flex-basis: 32.6666666667%;
  border: 5px solid;
  border-radius: 3px;
  text-align: center;
  padding: 2.5rem 1rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  html body main .cta-contact__item {
    border: none;
    padding: 0;
    background-color: transparent;
  }
}
html body main .cta-contact__item.cta-contact__item--line {
  color: #20C755;
}
html body main .cta-contact__item.cta-contact__item--line .cta-contact__title {
  font-size: 1.9rem;
  font-weight: 700;
  padding: 1.5rem 0;
}
html body main .cta-contact__item.cta-contact__item--line .cta-contact__link {
  background-color: #20C755;
  color: #fff;
  border-radius: 999px;
  padding: 2rem 1rem;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: block;
}
html body main .cta-contact__item.cta-contact__item--tel, html body main .cta-contact__item.cta-contact__item--mail {
  color: #2D70AF;
}
html body main .cta-contact__item.cta-contact__item--tel .cta-contact__title, html body main .cta-contact__item.cta-contact__item--mail .cta-contact__title {
  font-size: 1.9rem;
  font-weight: 700;
  padding: 1.5rem 0;
}
html body main .cta-contact__item.cta-contact__item--tel {
  padding: 1.3rem 1rem;
}
@media screen and (max-width: 767px) {
  html body main .cta-contact__item.cta-contact__item--tel {
    padding: 2rem 0 1rem;
  }
}
html body main .cta-contact__item.cta-contact__item--tel .cta-contact__link {
  font-size: 3.2rem;
  font-weight: 700;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  html body main .cta-contact__item.cta-contact__item--tel .cta-contact__link {
    pointer-events: inherit;
    background-color: #2D70AF;
    color: #fff;
    border-radius: 999px;
    padding: 2rem 1rem;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    display: block;
  }
}
html body main .cta-contact__item.cta-contact__item--tel .cta-contact__note {
  font-size: 1.3rem;
}
html body main .cta-contact__item.cta-contact__item--mail {
  padding: 3.7rem 1rem;
}
@media screen and (max-width: 767px) {
  html body main .cta-contact__item.cta-contact__item--mail {
    padding: 0;
  }
}
html body main .cta-contact__item.cta-contact__item--mail .cta-contact__link {
  background-color: #2D70AF;
  color: #fff;
  border-radius: 999px;
  padding: 2rem 1rem;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: block;
}
html body main .sub-page {
  padding-bottom: 16rem;
}
@media screen and (max-width: 991px) {
  html body main .sub-page {
    padding-bottom: 7rem;
  }
}
html body main .sub-page .sub-page__title {
  text-align: center;
  background: #2D70AF;
  background: linear-gradient(to right, #38B087 0%, #2D70AF 22%, #2D70AF 100%);
  font-size: 3.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  padding: 5rem 1rem;
}
@media screen and (max-width: 767px) {
  html body main .sub-page .sub-page__title {
    font-size: 2rem;
    letter-spacing: 0;
    padding: 2rem 1rem;
  }
}
html body main .sub-page.notfound-page h2 {
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  margin: 10rem 0 1rem;
}
@media screen and (max-width: 767px) {
  html body main .sub-page.notfound-page h2 {
    font-size: 1.8rem;
    margin: 8rem 0 1rem;
  }
}
html body main .sub-page.notfound-page p {
  text-align: center;
  font-weight: 500;
  font-size: 1.8rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  html body main .sub-page.notfound-page p {
    font-size: 1.6rem;
  }
}

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