@charset "UTF-8";
/*******************************
module
*******************************/
::selection {
  background: var(--selection);
}
::-moz-selection {
  background: var(--selection);
}
body {
  color: var(--text);
  font-family: var(--basefont);
  font-weight: 500;
}
/*******************************
main
*******************************/
#wrapper {
  /* scroll-behavior: smooth; */
  font-feature-settings: "palt";
  background-color: #fff;
  transition: 1s ease;
}
#wrapper.on {
  background-color: var(--body);
}
#wrapper.-subpage {
  background-color: var(--body);
}
#wrapper.-subpage.on {
  background-color: var(--body);
}
#main {
  position: relative;
  width: 100%;
  transition: 0.6s background-color var(--cubic-bezier-header);
}
#main.-toppage {
  margin-top: 10vh;
}
#main.-subpage {
  margin-top: 0.25rem;
  opacity: 0;
    animation: fvfadein 0.8s 0.15s ease-in-out forwards;
}
/*keyframe*/
@keyframes fvfadein {
    0% {
      margin-top: 0.25rem;
      opacity: 0;
    }
    100% {
      margin-top: 0;
      opacity: 1;
    }
}

@media (max-width: 768px) {
	#main.-toppage {
	  margin-top: 5vh;
	}
}

/*******************************
container
*******************************/
.l-container {
  width: min(86%, 1000px);
  margin: 0 auto;
}
.l-container_page,
.l-container_page_m,
.l-container_pagewide,
.l-container_pagefull {
  width: min(86%, 1000px);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .l-container {
    width: min(92%, 440px);
  }
.l-container_page {
  width: 76%;
}
.l-container_page_m {
  width: 86%;
}
.l-container_pagewide {
  width: 92%;
}
.l-container_pagefull {
  width: 100%;
}
}
/*******************************
utility
*******************************/
.-border_bottom {
  position: relative;
}
.-border_bottom::before,
.-border_bottom::after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 10px;
  height: 5px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.-border_bottom::before {
  content: "";
  left: 0;
  background-image: url(../images/line-start.svg);
}
.-border_bottom::after {
  content: "";
  right: 0;
  background-image: url(../images/line-end.svg);
}
.border2-outer {
  position: relative;
  display: inline-block;
}
.border2-outer::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 4px;
  width: calc(100% - 8px);
  height: 2px;
  background-color: var(--main-blue);
}
.border2 {
  position: relative;
}
.border2::before,
.border2::after {
  content: "";
  position: absolute;
  bottom: -4px;
  width: 20px;
  height: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.border2::before {
  content: "";
  left: 0;
  background-image: url(../images/line-start.svg);
}
.border2::after {
  content: "";
  right: 0;
  background-image: url(../images/line-end.svg);
}
.border2.-black::before {
  content: "";
  left: 0;
  background-image: url(../images/line-start_b.svg);
}
.border2.-black::after {
  content: "";
  right: 0;
  background-image: url(../images/line-end_b.svg);
}
.sp-only {
  display: none;
}
.pc-only {
  display: block;
}
.txt-center {
  text-align: center;
}
.googlemap iframe {
  vertical-align: bottom;
}
.-bg-white {
  background-color: #fff;
}
/* c-hbline_horizontal ----------------- */
.c-hbline_horizontal {
  position: relative;
  display: block;
  width: 100%;
}
.c-hbline_horizontal::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 4px;
  width: calc(100% - 8px);
  height: 2px;
  background-color: var(--main-blue);
}
.c-hbline_horizontal.-white::before {
  background-color: #fff;
}
.c-hbline_horizontal .hbline_inner {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
}
.c-hbline_horizontal .hbline_inner::before,
.c-hbline_horizontal .hbline_inner::after {
  content: "";
  position: absolute;
  bottom: -4px;
  width: 20px;
  height: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.c-hbline_horizontal .hbline_inner::before {
  content: "";
  left: 0;
  background-image: url(../images/line-start.svg);
}
.c-hbline_horizontal .hbline_inner::after {
  content: "";
  right: 0;
  background-image: url(../images/line-end.svg);
}
.c-hbline_horizontal.-white .hbline_inner::before {
  background-image: url(../images/line-start_w.svg);
}
.c-hbline_horizontal.-white .hbline_inner::after {
  background-image: url(../images/line-end_w.svg);
}
/* c-hbline_vertical ----------------- */
.c-hbline_vertical {
  flex: 0 1 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: stretch;
}
.c-hbline_vertical::before,
.c-hbline_vertical::after {
  content: "";
  margin: auto;
  display: inline-block;
  width: 10px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.c-hbline_vertical::before {
  background-image: url(../images/linevertical-start.svg);
}
.c-hbline_vertical::after {
  background-image: url(../images/linevertical-end.svg);
}
.c-hbline_vertical.-white::before {
  background-image: url(../images/linevertical-start_w.svg);
}
.c-hbline_vertical.-white::after {
  background-image: url(../images/linevertical-end_w.svg);
}
.c-hbline_vertical .hbline_bar {
  align-self: stretch;
  flex-grow: 1;
  margin: auto;
  display: inline-block;
  width: 2px;
  height: 100%;
  background-color: var(--main-blue);
}
.c-hbline_vertical.-white .hbline_bar {
  background-color: #fff;
}
/* ---------------------- */
@media screen and (max-width: 768px) {
.-border_bottom::before,
.-border_bottom::after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 10px;
  height: 5px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.border2-outer::before {
  height: 1px;
}
.border2-outer.-spnone::before {
  display: none;
}
.border2::before,
.border2::after {
  bottom: -2px;
  width: 10px;
  height: 5px;
}
.border2.-spnone::before,
.border2.-spnone::after {
  display: none;
}
  .sp-only {
    display: block;
  }
  .pc-only {
    display: none;
  }
/* c-hbline_horizontal ----------------- */
.c-hbline_horizontal::before {
  height: 1px;
}
.c-hbline_horizontal .hbline_inner {
  height: 1px;
}
.c-hbline_horizontal .hbline_inner::before,
.c-hbline_horizontal .hbline_inner::after {
  bottom: -2px;
  width: 10px;
  height: 5px;
}
/* c-hbline_vertical ----------------- */
.c-hbline_vertical {
  flex: 0 1 10px;
}
.c-hbline_vertical::before,
.c-hbline_vertical::after {
  width: 5px;
  height: 10px;
}
.c-hbline_vertical .hbline_bar {
  width: 1px;
}
}
/*******************************
header
*******************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-index-header);
}
.header .header_inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 95px;
  padding: 0 7% 0 1.125%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  transition: 0.4s all var(--cubic-bezier-header);
}
.header.on .header_inner {
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); */
}
.header .header-sitelogo {
  padding-top: 2px;
  flex-grow: 10;
  display: flex;
  align-items: center;
  transition: 0.4s all linear;
  & a img {
    margin: auto;
    width: 280px;
    height: auto;
  }
}
.header-gnavi_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
/* // gnavi_item */
.gnavi_item {
  margin: 0 0 0 1.6875em;
}
.gnavi_item:first-of-type {
  margin: 0 0 0 0;
}
.gnavi_item a {
  display: inline-block;
  color: var(--text);
  font-size: calc(15 / 16 * 1rem);
  font-family: var(--googlefont-Inter);
  font-weight: 800;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  text-decoration: none;
}
.header-togglebtn {
  margin: auto 0 auto auto;
  transform: translateY(7px);
  cursor: pointer;
}
@media screen and (min-width: 992px) {
.header-togglebtn {
  width: 0;
  height: 0;
  overflow: hidden;
}
}
/* //----------------------------- */
body .drawer-menu {
  position: fixed;
  /* display: flex; */
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  padding: 0 5% 2.5rem;
  opacity: 0;
  z-index: -1;
}
.drawer-menu_layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--body);
  transform: scale(1, 0.5) translateY(0);
  transform-origin: bottom center;
  opacity: 0;
}
.is-active .drawer-menu_layer {
  animation: layerAnime1 0.25s ease-in-out forwards;
}
@keyframes layerAnime1 {
  0% {
    transform: scale(1, 0) translateY(0);
    opacity: 0;
  }
  100% {
    transform: scale(1, 1) translateY(0);
    opacity: 1;
  }
}
.drawer-menu_inner {
  margin: 7rem auto auto;
  padding: 0.875rem 5% 3.25rem;
  position: relative;
  width: 100%;
  background-color: #fff;
  transition: 0.3s 0.1s ease-out;
  opacity: 0;
}
.is-active .drawer-menu_inner {
  /* margin: 7rem auto auto; */
  opacity: 1;
}
/* .toggle-gnavi_list */
.toggle-gnavi_item:first-child{
  margin-bottom: 3.25rem;
}
.toggle-gnavi_item:not(:first-child) {
  margin-bottom: 1.325rem;
}
.toggle-gnavi_item a {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-blue);
  text-decoration: none;
}
.toggle-gnavi_item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 8px;
  width: calc(100% - 16px);
  height: 1px;
  background-color: var(--main-blue);
}
.toggle-gnavi_item a .en {
    font-size: calc(16 / 16 * 1rem);
    font-family: var(--googlefont-Inter);
    font-weight: 700;
    letter-spacing: 0.025em;
  }
  .toggle-gnavi_item a .ja {
  color: var(--text);
  font-size: calc(13 / 16 * 1rem);
  letter-spacing: 0.05em;
}
/* toggle-snslink_list */
.toggle-snslink_list {
  position: relative;
  margin: 0 auto;
  padding: 2rem 0 1.5rem;
  width: 92%;
  display: flex;
  justify-content: flex-end;
  transition: 0.3s 0.1s ease-out;
}
.toggle-snslink_list a {
  display: inline-block;
  width: 40px;
  height: 40px;
}
.is-active .toggle-snslink_list {
  opacity: 1;
}
/* ------------------------- */
@media (max-width: 992px) {
  /* // header */
  .header .header_inner {
    height: 75px;
    padding: 0 5.5% 0 2.75%;
  }
.header .header-sitelogo {
  padding-top: 8px;
  & a img {
    margin: auto;
    width: 200px;
    height: auto;
  }
}
  .header-navi {
    display: none;
  }
}
/*******************************
togglebutton
*******************************/
.togglebutton {
  position: relative;
  background-color: #fff;
  border: 1px solid #fff;
  box-shadow: 0 0 2rem transparent;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.togglebutton:hover,
.togglebutton:focus {
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0);
}
/* .togglebutton-area {
  position: relative;
  width: 23px;
  height: 18px;
} */
.togglebutton-area_bar {
  display: block;
  width: 23px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  background-image: url(../images/tgl-bar.svg);
  transition: opacity .2s ease-in-out;
}
.togglebutton[aria-expanded="true"] .togglebutton-area_bar {
  background-image: url(../images/tgl-close.svg);
}
.visuallyHidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

/* is-active
----------------------------------*/
/*body.fixed*/
body.is-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
/*drawer-menu.active*/
body .drawer-menu.is-active {
  opacity: 1;
  z-index: var(--z-index-drawer);
  overflow: auto;
}

/*******************************
snslink
*******************************/
.snslink-wrap {
  margin-top: -100vh;
  padding-bottom: 10%;
  position: sticky;
  top: 0;
  left: 0;
  width: 60px;
  height: 100vh;
  height: 100vh;
  display: flex;
  z-index: var(--z-index-aside);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease-in-out;
}
.snslink-wrap.on {
opacity: 1;
visibility: visible;
}
.snslink-list {
    margin: auto 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.125rem 0;
}
.snslink-subpage-wrap {
  margin-top: 0;
  padding-bottom: 10%;
  position: sticky;
  top: 0;
  left: 0;
  width: 60px;
  height: 100vh;
  height: 100vh;
  display: flex;
  z-index: var(--z-index-aside);
  opacity: 1;
  visibility: visible;
  transition: 0.25s ease-in-out;
}
/* .snslink-subpage-wrap .snslink-list {
    margin: auto 0 auto auto;
} */
.snslink-list_item a {
  display: block;
  width: 24px;
  height: auto;
}
.snslink-list_item.-boder_w a {
  background-color: #fff;
  border: 4px solid #fff;
  border-radius: 100%;
  box-sizing: content-box;
}
/* ---------------------- */
@media screen and (max-width: 1300px) {
.snslink-wrap,
.snslink-subpage-wrap {
    width: 40px;
}
}
@media screen and (max-width: 1024px) {
.snslink-wrap,
.snslink-subpage-wrap {
  display: none;
}
}
/*******************************
footer
*******************************/
#footer {
  position: relative;
  padding-top: clamp(3.5rem, (1vw * 170 / 1200 * 100), 10.625rem);
  padding-bottom: 1.875rem;
  background-color: var(--footer);
}
.footer-inner {
  margin: auto;
  width: 92%;
  max-width: 1280px;
  display: flex;
  flex-wrap: wrap;
}
/* footer-tagline */
.footer-tagline {
  padding-bottom: clamp(6.75rem, (1vw * 130 / 1440 * 100), 8.125rem);
  flex: 0 1 100%;
}
.footer-tagline picture {
  text-align: center;
}
.footer-tagline picture img {
  display: inline-block;
  max-width: 750px;
  width: 76%;
  height: auto;
}
/* footer-linkarea */
.footer-linkarea {
  flex: 0 1 60%;
}
.footernav-list {
  display: flex;
  flex-wrap: wrap;
}
.footernav-list_item a {
  margin-bottom: 1rem;
  display: inline-block;
  color: #fff;
  font-size: calc(10 / 16 * 1rem);
  letter-spacing: .005em;
  text-decoration: none;
}
.footernav-list_item:not(:last-child) a::after {
  content: "/";
  margin: 0 1em;
}
/* snslinkarea_sp */
.footer-snslinkarea_sp {
  display: none;
}
/* copyright */
.footer-copyright {
  padding-top: 5px;
  flex: 0 1 40%;
}
.footer-copyright p {
  color: #fff;
  font-size: calc(10 / 16 * 1rem);
  font-family: var(--googlefont-Inter);
  letter-spacing: .03em;
  text-align: right;
}
/* ---------------------------- */
@media (max-width: 768px) {
#footer {
  padding-bottom: 2.25rem;
}
.footer-inner {
  width: 84%;
}
.footer-tagline picture {
  text-align: left;
}
.footer-tagline picture img {
  max-width: 152px;
  width: 70%;
}
.footer-linkarea {
  padding-left: 5px;
  flex: 0 1 70%;
  display: flex;
}
.footernav-list {
  margin-top: auto;
  margin-bottom: -12px;
  display: block;
}
.footernav-list_item a {
  margin-bottom: 1rem;
  display: block;
  font-size: calc(11 / 16 * 1rem);
}
.footernav-list_item:not(:last-child) a::after {
  display: none;
}
.footer-snslinkarea_sp {
  padding-right: 5%;
  flex: 0 1 30%;
  display: flex;
  justify-content: flex-end;
}
.footer-snslink-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 2.5rem 0;
}
.footer-snslink-list_item a {
  display: inline-block;
  width: 40px;
}
.footer-copyright {
  padding-top: 2.5rem;
  padding-left: 5px;
  flex: 0 1 100%;
}
.footer-copyright p {
  text-align: left;
}
}
/*******************************
scroll_up
*******************************/
.scroll_up {
  position: relative;
}
.u-radius {
  border-radius: 3px;
}
.u-radius_s {
  border-radius: 2px;
}
.scroll_up::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: circle(20vmax at 0% 0%);
  background-color: var(--footer);
  z-index: var( --z-index-aside);
  transition: .5s clip-path ease-in-out;
}
.scroll_up.on::before {
  clip-path: circle(3% at -8% -5%);
}
.scroll_up.timing02::before {
  transition: 1s clip-path ease-in-out;
}
.scroll_up.timing03::before {
  transition: 1s clip-path ease-in-out;
}
/* scrollbnr_up */
.scrollbnr_up {
  position: relative;
  overflow: hidden;
}
.scrollbnr_up::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: ellipse(140% 150% at 0% 0%);
  background-color: var(--footer);
  z-index: var( --z-index-aside);
  transition: 0.7s clip-path ease-in-out;
}
.scrollbnr_up.on::before {
  clip-path: ellipse(40% 75% at -7% 14%);
}
.scrollbnr_up.timing02::before {
  transition: 0.7s 0.1s clip-path ease-in-out;
}
/* companybnr_up */
.companybnr_up {
  position: relative;
  overflow: hidden;
}
.companybnr_up::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: ellipse(140% 150% at 0% 0%);
  background-color: var(--footer);
  z-index: var( --z-index-aside);
  transition: 0.7s clip-path ease-in-out;
}
.companybnr_up.on::before {
  clip-path: ellipse(44% 80% at -5% 8%);
}
.companybnr_up.timing02::before {
  transition: 0.7s 0.1s clip-path ease-in-out;
}
.u-pconly {
  display: block;
}
.u-sponly {
  display: none;
}
/* ---------------------- */
@media screen and (max-width: 768px) {
.u-radius {
  border-radius: 2px;
}
.u-pconly {
  display: none;
}
.u-sponly {
  display: block;
}
}
/*******************************
c-btn
*******************************/
/* c-btn_more */
.c-btn_more a {
  margin-left: auto;
  padding-right: 5%;
  position: relative;
  width: fit-content;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: var(--text-gray);
  text-decoration: none;
  gap: 0 0.5rem;
  transition: .25s var(--cubic-bezier-hover);
}
.c-btn_more a .en {
  font-size: calc(15 / 16 * 1rem);
  font-family: var(--googlefont-Inter);
  font-weight: 300;
  line-height: 30px;
  letter-spacing: 0.025em;
}

.c-btn_more a .ja {
  font-size: calc(12 / 16 * 1rem);
}
.c-btn_more a .arrow {
  display: inline-block;
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--sub-red);
}
.c-btn_more a .arrow::before,
.c-btn_more a .arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/arrow-more_w.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 64% 64%;
}
.c-btn_more a .arrow.-back::before,
.c-btn_more a .arrow.-back::after {
  background-image: url(../images/arrow-moreback_w.svg);
}
.c-btn_more a .arrow::before {
  left: 0;
  transition: .25s var(--cubic-bezier-hover);
}
.c-btn_more a .arrow::after {
  left: -50%;
  opacity: 0;
  transition: .25s .05s var(--cubic-bezier-hover);
}
/* -back */
.c-btn_more.-back a {
  margin-right: auto;
  margin-left: 0;
  padding-left: 5%;
  justify-content: flex-start;
  gap: 0 0.5rem;
}
.c-btn_more.-back.-notfound a {
  padding-left: 0;
}
@media(hover: hover) {
    .c-btn_more a:hover {
      color: var(--text);
    }
    .c-btn_more a:hover .arrow {
        background-color: var(--main-blue);
    }

    .c-btn_more a:hover .arrow::before {
        left: 50%;
        opacity: 0
    }

    .c-btn_more a:hover .arrow::after {
        left: 0;
        opacity: 1
    }
}

/* ---------------------------------- */
@media (max-width: 992px) {
/* c-btn_more */
.c-btn_more a {
  padding-right: 6%;
  gap: 0 0.5rem;
}
.c-btn_more a .en {
  font-size: calc(11 / 16 * 1rem);
  line-height: 20px;
}
.c-btn_more a .ja {
  font-size: calc(10 / 16 * 1rem);
}	
	
.c-btn_more a .arrow {
  width: 20px;
  height: 20px;
}
}
/*******************************
screensaver
*******************************/
.screensaver-wrap {
  position: fixed;
  inset: 0;
  z-index: var(--z-index-screensaver);
  pointer-events: none;
  opacity: 0;
  transition: opacity .8s ease;
}
.screensaver-wrap.is-active {
  opacity: 1;
  pointer-events: none;
}
.screensaver-wrap #lottie-screensaver {
  width: 140%;
  height: auto;
  margin-left: -20%;
  margin-top: auto;
}
/*******************************
section-title
*******************************/
.section-heading {
  padding: 0 10px;
  position: relative;
}
.section-heading::before,
.section-heading::after {
  content: "";
  position: absolute;
  bottom: -4px;
  width: 20px;
  height: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.section-heading::before {
  content: "";
  left: 0;
  background-image: url(../images/line-start.svg);
}
.section-heading::after {
  content: "";
  right: 0;
  background-image: url(../images/line-end.svg);
}
.section-title {
  padding-bottom: 8px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 4px;
  width: calc(100% - 8px);
  height: 2px;
  background-color: var(--main-blue);
}
.section-title .en {
  color: var(--text-blue);
  font-size: clamp(
  calc(16 / 16 * 1rem),
  calc(25 / 1440 * 100vw),
  calc(25 / 16 * 1rem)
  );
  font-family: var(--googlefont-Inter);
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}
.section-title .ja {
  padding-top: 5px;
  color: var(--text);
  font-size: clamp(
  calc(12 / 16 * 1rem),
  calc(15 / 1440 * 100vw),
  calc(15 / 16 * 1rem)
  );
  line-height: 1;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 768px) {
.section-heading {
  padding: 0 5px;
}
.section-heading::before,
.section-heading::after {
  bottom: -2px;
  width: 10px;
  height: 5px;
}
.section-title {
  padding-bottom: 4px;
}
.section-title::after {
  height: 1px;
}
.section-title .ja {
  padding-top: 3px;
}
}
