@charset "UTF-8";
.btn-download {
  font-size: 16px;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #EF5350;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: bold;
}
.btn-download:hover {
  background-color: #C33C3C;
}

.btn-inquiry {
  font-size: 16px;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #0F75DB;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: bold;
}
.btn-inquiry:hover {
  background-color: #04305D;
}

.btn-registration {
  background: #FFFFFF;
  font-size: 16px;
  color: #0F75DB;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: bold;
}
.btn-registration:hover {
  background-color: #F2F8FB;
  color: #04305D;
}

.btn-blue {
  background: #0F75DB;
  width: 100%;
  color: #FFFFFF;
  position: relative;
  display: block;
  text-align: center;
  padding: 8px 0;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-blue::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.btn-blue:hover {
  background: #04305D;
}

.btn-white {
  background: #FFFFFF;
  width: 100%;
  color: #0F75DB;
  border: 1px solid #0F75DB;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-white img {
  margin-right: 4px;
}
.btn-white::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 14px;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 1px solid #0F75DB;
  border-right: 1px solid #0F75DB;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.btn-white:hover {
  background: #F2F8FB;
  color: #04305D;
}
.btn-white:hover::after {
  border-top: 1px solid #04305D;
  border-right: 1px solid #04305D;
}
.btn-white:hover img {
  -webkit-filter: brightness(0) saturate(100%) invert(26%) sepia(15%) saturate(3473%) hue-rotate(171deg) brightness(90%) contrast(85%);
          filter: brightness(0) saturate(100%) invert(26%) sepia(15%) saturate(3473%) hue-rotate(171deg) brightness(90%) contrast(85%);
}

html:has(.menu-open) {
  overflow: hidden;
}

body * {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.75;
}
@media screen and (max-width: 1060px) {
  body * h1, body * h2, body * h3, body * h4, body * h5 {
    text-align: center;
  }
}

body.menu-open {
  overflow-y: hidden;
}

@media screen and (min-width: 1440px) {
  .tab {
    display: none !important;
  }
}
@media screen and (max-width: 1439px) {
  .tab {
    display: none !important;
  }
}
@media screen and (max-width: 1060px) {
  .pc {
    display: none !important;
  }
  .tab {
    display: block !important;
  }
}
/* アニメーションの初期状態 */
.fade-in {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

/* アニメーション後の状態 */
.fade-in.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.scroll-indicator {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: 2rem;
  right: 2rem;
  background: rgba(31, 80, 120, 0.4);
  height: 40px;
  width: 40px;
  border-radius: 9999px;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 1060px) {
  .scroll-indicator {
    bottom: 2rem;
    right: 1rem;
  }
}

.scroll-indicator.is-visible {
  opacity: 1;
}

header {
  height: 120px;
  position: fixed;
  top: 0;
  z-index: 9999;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #FFFFFF;
}
@media screen and (max-width: 1060px) {
  header {
    height: 60px;
    background: #FFFFFF;
  }
}
header.bg-child {
  background: #FFFFFF;
}
header.bg-white {
  background: #FFFFFF;
}
header.is-scroll {
  background: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .content-container {
  position: relative;
  height: 124px;
  width: 100vw;
  padding: 24px;
  padding-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* PC表示用 */
  /* メニュー本体デフォルトで表示 */
}
@media screen and (max-width: 1060px) {
  header .content-container {
    padding: 15px;
    height: 60px;
  }
}
header .content-container .logo-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-left: 16px;
  margin-bottom: 22px;
}
@media screen and (max-width: 1060px) {
  header .content-container .logo-holder {
    margin: 0;
  }
}
header .content-container .logo-holder img {
  height: 42px;
  min-width: 180px;
}
@media screen and (max-width: 1060px) {
  header .content-container .logo-holder img {
    height: 30px;
    min-width: unset;
  }
}
header .content-container .link-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .content-container .link-section .header-content .jpx-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  position: fixed;
  top: 24px;
  left: 40px;
  z-index: -1;
}
header .content-container .link-section .header-content .jpx-container .img {
  margin-bottom: 12px;
  margin-right: 40px;
}
@media screen and (max-width: 1439px) {
  header .content-container .link-section .header-content .jpx-container .img {
    margin-right: 8px;
  }
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-content .jpx-container .img {
    margin-right: 8px;
  }
}
header .content-container .link-section .header-content .jpx-container .img img {
  width: 33px;
  height: auto;
}
header .content-container .link-section .header-content .jpx-container .read {
  font-size: 14px;
}
@media screen and (max-width: 1439px) {
  header .content-container .link-section .header-content .jpx-container .read {
    font-size: 12px;
  }
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-content .jpx-container {
    position: unset;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  header .content-container .link-section .header-content .jpx-container .img {
    margin-right: 20px;
    margin-bottom: 0;
    padding: 2px;
    background: #fff;
  }
  header .content-container .link-section .header-content .jpx-container .read {
    font-size: 14px;
    color: #FFFFFF;
  }
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-content {
    width: 100%;
    background-color: rgba(31, 80, 120, 0.8);
    padding: 16px 24px 100px;
    overflow: scroll;
  }
}
header .content-container .link-section .header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 14px;
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-nav {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 0;
    margin-top: 24px;
  }
}
header .content-container .link-section .header-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .content-container .link-section .header-nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  color: #04305D;
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-nav ul li a {
    color: #FFFFFF;
    font-size: 16px;
  }
}
header .content-container .link-section .header-nav ul li a img {
  margin-left: 14px;
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-nav ul li a img {
    -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(6%) saturate(7500%) hue-rotate(343deg) brightness(107%) contrast(105%);
            filter: brightness(0) saturate(100%) invert(100%) sepia(6%) saturate(7500%) hue-rotate(343deg) brightness(107%) contrast(105%);
  }
}
header .content-container .link-section .header-nav ul li a:hover {
  color: #0F75DB;
  text-decoration: underline;
  text-underline-offset: 4px;
}
header .content-container .link-section .header-nav ul li a:hover img {
  -webkit-filter: brightness(0) saturate(100%) invert(36%) sepia(77%) saturate(933%) hue-rotate(180deg) brightness(100%) contrast(96%);
          filter: brightness(0) saturate(100%) invert(36%) sepia(77%) saturate(933%) hue-rotate(180deg) brightness(100%) contrast(96%);
}
header .content-container .link-section .header-nav ul li + li {
  margin-left: 16px;
  border-left: 1px solid #04305D;
  padding-left: 14px;
}
header .content-container .link-section .header-txt-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
header .content-container .link-section .header-txt-link .txt-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 40px;
}
@media screen and (max-width: 1439px) {
  header .content-container .link-section .header-txt-link .txt-link {
    margin-right: 12px;
  }
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .txt-link {
    margin-right: 0;
    width: 100%;
  }
}
header .content-container .link-section .header-txt-link .txt-link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .txt-link ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
header .content-container .link-section .header-txt-link .txt-link ul li.menu-title {
  margin-bottom: 24px;
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .txt-link ul li.menu-title {
    margin: 0 !important;
    padding: 16px 0;
    border-bottom: 1px solid #FFFFFF;
  }
}
header .content-container .link-section .header-txt-link .txt-link ul li.menu-title a {
  color: #21524A;
  font-weight: bold;
}
@media screen and (max-width: 1439px) {
  header .content-container .link-section .header-txt-link .txt-link ul li.menu-title a {
    font-size: 14px;
  }
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .txt-link ul li.menu-title a {
    font-size: 16px;
    display: block;
    position: relative;
    color: #FFFFFF;
    width: 100%;
  }
  header .content-container .link-section .header-txt-link .txt-link ul li.menu-title a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 4px;
    width: 8px;
    height: 8px;
    margin: auto;
    border-top: 1px solid #FFFFFF;
    border-right: 1px solid #FFFFFF;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
header .content-container .link-section .header-txt-link .txt-link ul li.menu-title a:hover {
  text-decoration: underline;
  text-underline-offset: 8px;
}
header .content-container .link-section .header-txt-link .txt-link ul li.dropdown {
  /* 通常時非表示 */
}
header .content-container .link-section .header-txt-link .txt-link ul li.dropdown.active .dropdown-title {
  color: #0F75DB;
}
header .content-container .link-section .header-txt-link .txt-link ul li.dropdown.active .dropdown-title::after {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 0;
  right: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 1px solid #0F75DB;
  border-right: 1px solid #0F75DB;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .dropdown-title {
  color: #04305D;
  font-weight: bold;
  position: relative;
  padding-right: 24px;
}
@media screen and (max-width: 1439px) {
  header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .dropdown-title {
    font-size: 14px;
  }
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .dropdown-title {
    padding: 16px 0;
    color: #FFFFFF;
    font-size: 16px;
    display: block;
  }
}
header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .dropdown-title::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 1px solid #04305D;
  border-right: 1px solid #04305D;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .dropdown-title::after {
    display: none;
  }
}
header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 124px;
  left: 0;
  background-color: rgba(31, 80, 120, 0.8);
  width: 100%;
  padding: 40px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu {
    top: 60px;
    opacity: 1;
    visibility: visible;
    position: unset;
    background-color: unset;
    padding: 0;
  }
}
header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu .boxs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu .boxs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu .boxs .box {
  width: 24%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #FFFFFF;
  padding: 4px;
  -webkit-box-shadow: 0px 0px 36px 0px rgba(32, 128, 224, 0.16);
          box-shadow: 0px 0px 36px 0px rgba(32, 128, 224, 0.16);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  pointer-events: none;
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu .boxs .box {
    width: 100%;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 40px 24px 24px 24px;
    pointer-events: all;
  }
}
header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu .boxs .box .top {
  font-weight: bold;
}
header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu .boxs .box .top .label {
  padding: 10px 0;
  color: #FFFFFF;
  text-align: center;
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu .boxs .box .top .label {
    display: none;
  }
}
header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu .boxs .box .top .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 40px auto 66px;
  position: relative;
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu .boxs .box .top .title {
    margin: 0 auto 24px auto;
  }
}
header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu .boxs .box .top .title img {
  width: auto;
  height: 50%;
  max-height: 66px;
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu .boxs .box .top .title img {
    height: 26px;
  }
}
header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu .boxs .box .top .title::after {
  content: "";
  width: 40px;
  height: 2px;
  display: inline-block;
  position: absolute;
  bottom: -32px;
  left: calc(50% - 20px);
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu .boxs .box .top .title::after {
    display: none;
  }
}
header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu .boxs .box .top .read {
  font-size: 16px;
  color: #04305D;
  text-align: center;
}
header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu .boxs .box .btn-container {
  margin: 16px;
  pointer-events: auto;
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu .boxs .box .btn-container {
    display: none;
  }
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .txt-link ul li.dropdown .mega_menu .boxs .box + .box {
    margin-top: 16px;
  }
}
header .content-container .link-section .header-txt-link .txt-link ul li.dropdown:hover .mega_menu {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .content-container .link-section .header-txt-link .txt-link ul li + li {
  margin-left: 32px;
}
@media screen and (max-width: 1439px) {
  header .content-container .link-section .header-txt-link .txt-link ul li + li {
    margin-left: 8px;
  }
}
header .content-container .link-section .header-txt-link .btn-link {
  margin-bottom: 24px;
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .btn-link {
    margin-top: 16px;
    margin-bottom: 0;
  }
}
header .content-container .link-section .header-txt-link .btn-link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .btn-link ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .btn-link ul li {
    width: 100%;
  }
}
header .content-container .link-section .header-txt-link .btn-link ul li a {
  padding: 14px;
  height: 44px;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .btn-link ul li a {
    height: 64px;
    font-size: 16px;
  }
}
header .content-container .link-section .header-txt-link .btn-link ul li a.btn-download {
  width: 152px;
}
@media screen and (max-width: 1439px) {
  header .content-container .link-section .header-txt-link .btn-link ul li a.btn-download {
    width: auto;
    padding: 8px;
  }
  header .content-container .link-section .header-txt-link .btn-link ul li a.btn-download img {
    display: none;
  }
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .btn-link ul li a.btn-download {
    width: 100%;
  }
  header .content-container .link-section .header-txt-link .btn-link ul li a.btn-download img {
    height: 20px;
  }
}
header .content-container .link-section .header-txt-link .btn-link ul li a.btn-inquiry {
  width: 152px;
}
@media screen and (max-width: 1439px) {
  header .content-container .link-section .header-txt-link .btn-link ul li a.btn-inquiry {
    width: auto;
    padding: 8px;
  }
  header .content-container .link-section .header-txt-link .btn-link ul li a.btn-inquiry img {
    display: none;
  }
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .btn-link ul li a.btn-inquiry {
    width: 100%;
  }
  header .content-container .link-section .header-txt-link .btn-link ul li a.btn-inquiry img {
    height: 20px;
  }
}
header .content-container .link-section .header-txt-link .btn-link ul li a.btn-white {
  width: 124px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 1439px) {
  header .content-container .link-section .header-txt-link .btn-link ul li a.btn-white {
    width: auto;
    padding: 8px;
  }
  header .content-container .link-section .header-txt-link .btn-link ul li a.btn-white img {
    display: none;
  }
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .btn-link ul li a.btn-white {
    width: 100%;
    position: relative;
  }
  header .content-container .link-section .header-txt-link .btn-link ul li a.btn-white img {
    position: absolute;
    left: 14px;
    top: calc(50% - 10px);
    height: 20px;
  }
}
header .content-container .link-section .header-txt-link .btn-link ul li + li {
  margin-left: 8px;
}
@media screen and (max-width: 1060px) {
  header .content-container .link-section .header-txt-link .btn-link ul li + li {
    margin-left: 0;
    margin-top: 8px;
  }
}
header .content-container .hamburger-menu-toggle {
  display: none;
}
header .content-container .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (max-width: 1060px) {
  header .content-container {
    /* ハンバーガーメニュー */
    /* メニュー本体初期状態で非表示 */
    /* .menu-open クラスが追従されたらメニューを表示 */
  }
  header .content-container .hamburger-menu-toggle {
    margin-top: 5px;
    display: block;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    cursor: pointer;
  }
  header .content-container .hamburger-menu-toggle span {
    height: 3px;
    width: 24px;
    background: #007457;
    margin: 4px 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 2px;
    display: block;
  }
  header .content-container .hamburger-menu-toggle.active span:nth-child(1) {
    -webkit-transform: rotate(-45deg) translate(-4px, 6px);
            transform: rotate(-45deg) translate(-4px, 6px);
  }
  header .content-container .hamburger-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  header .content-container .hamburger-menu-toggle.active span:nth-child(3) {
    -webkit-transform: rotate(45deg) translate(-4px, -6px);
            transform: rotate(45deg) translate(-4px, -6px);
  }
  header .content-container .header-content {
    height: 0;
    max-height: 0%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    top: 100%; /* Adjust based on header height */
    left: 0;
    /* Fix: スクロールを有効にするための設定 */
    height: calc(100vh - 60px);
    overflow: scroll; /* スクロールを有効にする */
    width: 100%;
    background: white; /* 背景色 */
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  header .content-container .header-content.menu-open {
    max-height: unset !important;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    overflow: scroll;
  }
}

section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
section .content-container {
  max-width: 1232px;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (max-width: 1060px) {
  section .content-container {
    width: 100%;
  }
}
section .content-container .section-title {
  color: #FFFFFF;
  font-weight: bold;
  margin-bottom: 80px;
}
@media screen and (max-width: 1060px) {
  section .content-container .section-title {
    margin-bottom: 50px;
  }
}
section .content-container .section-title h2 {
  font-family: "Arial", sans-serif;
  font-size: 56px;
  text-align: center;
  position: relative;
  margin-bottom: 24px;
}
section .content-container .section-title h2::after {
  content: "";
  width: 120px;
  height: 2px;
  display: inline-block;
  background: #FFFFFF;
  position: absolute;
  bottom: -4px;
  left: calc(50% - 60px);
}
@media screen and (max-width: 1060px) {
  section .content-container .section-title h2 {
    font-size: 40px;
  }
}
section .content-container .section-title h4 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 50px;
}
section .content-container .section-title .read {
  font-size: 24px;
}
@media screen and (max-width: 1060px) {
  section .content-container .section-title .read {
    text-align: center;
  }
}
section .content-container .section-title-b {
  color: #04305D;
  font-weight: bold;
  margin-bottom: 40px;
}
@media screen and (max-width: 1060px) {
  section .content-container .section-title-b {
    margin-bottom: 50px;
  }
}
section .content-container .section-title-b h2 {
  font-family: "Arial", sans-serif;
  font-size: 56px;
  text-align: center;
  position: relative;
  margin-bottom: 24px;
}
section .content-container .section-title-b h2::after {
  content: "";
  width: 120px;
  height: 2px;
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(#0F75DB), to(#008F96));
  background: linear-gradient(90deg, #0F75DB, #008F96);
  position: absolute;
  bottom: -4px;
  left: calc(50% - 60px);
}
@media screen and (max-width: 1060px) {
  section .content-container .section-title-b h2 {
    font-size: 40px;
  }
  section .content-container .section-title-b h2::after {
    bottom: -4px;
  }
}
section .content-container .section-title-b h2.green {
  font-family: "Arial", sans-serif;
  font-size: 56px;
  text-align: center;
  position: relative;
  margin-bottom: 56px;
}
section .content-container .section-title-b h2.green::after {
  content: "";
  width: 120px;
  height: 2px;
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(#008F96), to(#20AAE0));
  background: linear-gradient(90deg, #008F96, #20AAE0);
  position: absolute;
  bottom: -20px;
  left: calc(50% - 60px);
}
section .content-container .section-title-b h4 {
  font-size: 20px;
  text-align: center;
}
section .content-container .section-title-b .read {
  font-size: 24px;
}
@media screen and (max-width: 1060px) {
  section .content-container .section-title-b .read {
    text-align: center;
  }
}

#page-main .main-heading {
  padding-top: 200px;
}
@media screen and (max-width: 1060px) {
  #page-main .main-heading {
    padding-top: 100px;
  }
}
#page-main .main-heading .section-title {
  color: #FFFFFF;
  font-weight: bold;
  margin-bottom: 40px;
}
@media screen and (max-width: 1060px) {
  #page-main .main-heading .section-title {
    margin-bottom: 50px;
  }
}
#page-main .main-heading .section-title .logo {
  height: 40px;
  margin: 0 auto 24px;
}
#page-main .main-heading .section-title .logo img {
  width: auto;
  height: 100%;
}
@media screen and (max-width: 1060px) {
  #page-main .main-heading .section-title .logo {
    height: 30px;
    margin-bottom: 12px;
  }
}
#page-main .main-heading .section-title h2 {
  font-family: "Arial", sans-serif;
  font-size: 56px;
  text-align: center;
  position: relative;
  margin-bottom: 24px;
  color: #04305D;
}
@media screen and (max-width: 1060px) {
  #page-main .main-heading .section-title h2 {
    font-size: 40px;
  }
}
#page-main .main-heading .section-title h2::after {
  content: "";
  width: 120px;
  height: 2px;
  display: inline-block;
  background: #04305D;
  position: absolute;
  bottom: 0px;
  left: calc(50% - 60px);
}
#page-main .main-heading .section-title h4 {
  font-size: 20px;
  text-align: center;
  color: #04305D;
}
@media screen and (max-width: 1060px) {
  #page-main .main-heading .section-title h4 {
    font-size: 18px;
  }
}
#page-main .main-heading .section-title .read {
  font-size: 24px;
}
@media screen and (max-width: 1060px) {
  #page-main .main-heading .section-title .read {
    text-align: center;
  }
}
#page-main .main-heading .section-title .section-title-b {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 32px;
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer .content-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .content-container .company-section {
  max-width: 1232px;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  background: #FFFFFF;
  padding: 80px 16px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1060px) {
  footer .content-container .company-section {
    width: 100%;
    padding: 40px 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (max-width: 1060px) {
  footer .content-container .company-section .about {
    margin-top: 60px;
  }
}
footer .content-container .company-section .about .read {
  margin: 24px 0 40px;
}
footer .content-container .company-section .about .read .copy {
  font-size: 14px;
  margin-top: 24px;
}
footer .content-container .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
footer .content-container .links .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
}
@media screen and (max-width: 1060px) {
  footer .content-container .links .menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
footer .content-container .links .menu .list {
  width: 368px;
}
@media screen and (max-width: 1060px) {
  footer .content-container .links .menu .list {
    width: 100%;
  }
}
footer .content-container .links .menu .menu-r {
  margin-left: 48px;
}
@media screen and (max-width: 1060px) {
  footer .content-container .links .menu .menu-r {
    margin-left: 0;
  }
}
footer .content-container .links .menu .menu-title {
  padding: 16px 0;
  margin-bottom: 16px;
  border-bottom: 1px solid #DDDDDD;
}
@media screen and (max-width: 1060px) {
  footer .content-container .links .menu .menu-title {
    margin-bottom: 0;
  }
}
footer .content-container .links .menu p.menu-title {
  padding: 16px 0;
  margin-bottom: 0;
  border-bottom: 1px solid #DDDDDD;
}
footer .content-container .links .menu .sub-list li {
  padding: 16px 0 16px 40px;
  border-bottom: 1px solid #DDDDDD;
}
footer .content-container .links .menu .sub-list li a {
  position: relative;
  width: 100%;
  display: block;
  font-size: 14px;
}
footer .content-container .links .menu .sub-list li a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 4px;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 1px solid #04305D;
  border-right: 1px solid #04305D;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
footer .content-container .links .menu .sub-list li a:hover {
  color: #0F75DB;
  text-decoration: underline;
  text-underline-offset: 4px;
}
footer .content-container .links .menu a {
  position: relative;
  width: 100%;
  display: block;
}
footer .content-container .links .menu a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 4px;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 1px solid #04305D;
  border-right: 1px solid #04305D;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
footer .content-container .links .menu a:hover {
  color: #0F75DB;
  text-decoration: underline;
  text-underline-offset: 4px;
}
footer .content-container .links .bottom-menu {
  margin-top: 40px;
}
footer .content-container .links .bottom-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1060px) {
  footer .content-container .links .bottom-menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
footer .content-container .links .bottom-menu ul li {
  padding: 0 16px;
}
@media screen and (max-width: 1060px) {
  footer .content-container .links .bottom-menu ul li {
    padding: 0;
  }
}
footer .content-container .links .bottom-menu ul li a {
  font-size: 14px;
}
footer .content-container .links .bottom-menu ul li a:hover {
  color: #0F75DB;
  text-decoration: underline;
  text-underline-offset: 4px;
}
footer .content-container .links .bottom-menu ul li + li {
  border-left: 1px solid #DDDDDD;
}
@media screen and (max-width: 1060px) {
  footer .content-container .links .bottom-menu ul li + li {
    border-left: none;
    margin-top: 16px;
  }
}
footer .group-section {
  width: 100%;
  background: #F4F4F4;
  padding: 40px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1060px) {
  footer .group-section {
    padding: 40px 24px;
  }
}
footer .group-section .group-section-container {
  max-width: 1232px;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1060px) {
  footer .group-section .group-section-container {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
footer .group-section .group-section-container .title {
  font-weight: bold;
  padding-right: 80px;
}
@media screen and (max-width: 1060px) {
  footer .group-section .group-section-container .title {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #DDDDDD;
    width: 100%;
  }
}
footer .group-section .group-section-container ul {
  padding-left: 80px;
  font-size: 14px;
  border-left: 1px solid #DDDDDD;
}
@media screen and (max-width: 1060px) {
  footer .group-section .group-section-container ul {
    padding-left: 0;
    border-left: none;
  }
}
footer .group-section .group-section-container ul li a:hover {
  color: #0F75DB;
  text-decoration: underline;
  text-underline-offset: 4px;
}
footer .group-section .group-section-container ul li + li {
  margin-top: 8px;
}
footer .group-section .group-section-container .menu-r {
  border-left: none;
}

.btn-download {
  font-size: 16px;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #EF5350;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: bold;
}
.btn-download:hover {
  background-color: #C33C3C;
}

.btn-inquiry {
  font-size: 16px;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #0F75DB;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: bold;
}
.btn-inquiry:hover {
  background-color: #04305D;
}

.btn-registration {
  background: #FFFFFF;
  font-size: 16px;
  color: #0F75DB;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: bold;
}
.btn-registration:hover {
  background-color: #F2F8FB;
  color: #04305D;
}

.btn-blue {
  background: #0F75DB;
  width: 100%;
  color: #FFFFFF;
  position: relative;
  display: block;
  text-align: center;
  padding: 8px 0;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-blue::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.btn-blue:hover {
  background: #04305D;
}

.btn-white {
  background: #FFFFFF;
  width: 100%;
  color: #0F75DB;
  border: 1px solid #0F75DB;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-white img {
  margin-right: 4px;
}
.btn-white::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 14px;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 1px solid #0F75DB;
  border-right: 1px solid #0F75DB;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.btn-white:hover {
  background: #F2F8FB;
  color: #04305D;
}
.btn-white:hover::after {
  border-top: 1px solid #04305D;
  border-right: 1px solid #04305D;
}
.btn-white:hover img {
  -webkit-filter: brightness(0) saturate(100%) invert(26%) sepia(15%) saturate(3473%) hue-rotate(171deg) brightness(90%) contrast(85%);
          filter: brightness(0) saturate(100%) invert(26%) sepia(15%) saturate(3473%) hue-rotate(171deg) brightness(90%) contrast(85%);
}

#service-main {
  margin-top: 120px;
  height: 537px;
  background-image: url(../images/main_image_01.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 1060px) {
  #service-main {
    margin-top: 60px;
    height: 560px;
    background-image: unset;
    background-color: #E1F2EA;
  }
}
@media screen and (max-width: 1439px) {
  #service-main {
    background-position: bottom;
  }
}
@media screen and (max-width: 1060px) {
  #service-main {
    background-position-y: 280px;
  }
}
#service-main .main-heading {
  position: absolute;
  top: 64px;
  left: 6%;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1060px) {
  #service-main .main-heading {
    top: 0;
    left: 0;
    padding: 0 16px;
    width: 100%;
  }
}
#service-main .main-heading .label {
  width: auto;
  text-align: center;
  margin-bottom: 24px;
  text-align: left;
}
@media screen and (max-width: 1060px) {
  #service-main .main-heading .label {
    padding: 8px;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    font-size: 12px;
    text-align: center;
    background: #FFFFFF;
  }
}
#service-main .main-heading .image {
  margin: 48px 0 64px;
}
@media screen and (max-width: 1060px) {
  #service-main .main-heading .image {
    margin: 24px 0 40px;
  }
}
#service-main .main-heading .image img {
  height: 32px;
}
@media screen and (max-width: 1060px) {
  #service-main .main-heading .image img {
    height: 32px;
  }
}
#service-main .main-heading .read {
  font-weight: bold;
}
@media screen and (max-width: 1060px) {
  #service-main .main-heading .read {
    margin-top: 258px;
  }
}
#service-main .main-heading .read .read-top {
  font-size: 24px;
}
@media screen and (max-width: 1060px) {
  #service-main .main-heading .read .read-top {
    font-size: 18px;
  }
}
#service-main .main-heading .read .read-bottom {
  font-size: 56px;
}
@media screen and (max-width: 1060px) {
  #service-main .main-heading .read .read-bottom {
    font-size: 36px;
  }
}
#service-main .main-heading .btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 1060px) {
  #service-main .main-heading .btn-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    width: 100%;
  }
}
#service-main .main-heading .btn-container .btn-download {
  width: 320px;
  height: 64px;
  padding: 16px;
  font-weight: bold;
  color: #007457;
  background-color: #FFFFFF;
  border: 1px solid #007457;
}
#service-main .main-heading .btn-container .btn-download:hover {
  background-color: #EBF6F7;
}
@media screen and (max-width: 1060px) {
  #service-main .main-heading .btn-container .btn-download {
    width: 100%;
  }
}
#service-main .main-heading .btn-container .btn-registration {
  width: 320px;
  height: 64px;
  padding: 16px;
  font-weight: bold;
  color: #FFFFFF;
  background-color: #EF5350;
}
@media screen and (max-width: 1060px) {
  #service-main .main-heading .btn-container .btn-registration {
    width: 100%;
  }
}
#service-main .main-heading .btn-container .btn-registration:hover {
  color: #FFFFFF;
  background-color: #C33C3C;
}
#service-main .main-heading .btn-container .btn-registration:hover img {
  -webkit-filter: none;
          filter: none;
}
#service-main .main-img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 1060px) {
  #service-main .main-img {
    top: 36px;
  }
}
#service-main .main-img .img-container {
  position: relative;
}
@media screen and (max-width: 1060px) {
  #service-main .main-img .img-container .img-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    max-height: 234px;
    overflow: hidden;
  }
}
#service-main .main-img .img-container .img-main img {
  max-width: 1440px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1060px) {
  #service-main .main-img .img-container .img-main img {
    width: 100vw;
    height: auto;
  }
}

#overview {
  position: relative;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(100%, #FFFFFF), to(transparent)), url(../images/overview_bg.png);
  background-image: linear-gradient(to top, #FFFFFF 100%, transparent 100%), url(../images/overview_bg.png);
  background-position: bottom, top;
  background-color: #FFFFFF;
  background-size: 100% 20%, cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1060px) {
  #overview {
    background-image: url(../images/overview_bg_sp.png);
    background-position: top;
  }
}
#overview .content-container {
  padding-top: 0;
  padding-bottom: 0;
}
@media screen and (max-width: 1060px) {
  #overview .content-container {
    padding: 0 16px 0 16px;
  }
}
#overview .content-container .top-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 480px;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
@media screen and (max-width: 1060px) {
  #overview .content-container .top-contents {
    height: auto;
    padding: 0 16px;
  }
}
#overview .content-container .top-contents .image {
  position: absolute;
  top: 48px;
  left: 0;
  z-index: 1;
  width: 50%;
}
@media screen and (max-width: 1060px) {
  #overview .content-container .top-contents .image {
    margin-top: 40px;
  }
}
#overview .content-container .top-contents .image img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1440px) {
  #overview .content-container .top-contents .image img {
    width: auto;
    height: 439px;
  }
}
@media screen and (max-width: 1060px) {
  #overview .content-container .top-contents .image {
    position: static;
    width: 100%;
  }
  #overview .content-container .top-contents .image img {
    width: 100%;
  }
}
#overview .content-container .top-contents .read {
  position: absolute;
  left: calc(50% + 40px);
  top: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 45%;
}
@media screen and (max-width: 1060px) {
  #overview .content-container .top-contents .read {
    position: static;
    width: 100%;
  }
}
#overview .content-container .top-contents .read .title {
  color: #FFFFFF;
  font-size: 32px;
  font-weight: bold;
  position: relative;
  margin-bottom: 64px;
}
@media screen and (max-width: 1060px) {
  #overview .content-container .top-contents .read .title {
    color: #FFFFFF;
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 24px;
  }
}
#overview .content-container .top-contents .read .accent {
  color: #FFFFFF;
  font-size: 20px;
}
@media screen and (max-width: 1060px) {
  #overview .content-container .top-contents .read .accent {
    font-size: 18px;
  }
}
#overview .content-container .bottom-contents {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 16px 0 80px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1240px) and (min-width: 1060px) {
  #overview .content-container .bottom-contents {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1060px) {
  #overview .content-container .bottom-contents {
    padding: 16px 16px 48px 16px;
  }
}
#overview .content-container .bottom-contents .sub-title {
  font-size: 32px;
  font-weight: bold;
  color: #FFFFFF;
  margin-top: 40px;
  position: relative;
}
@media screen and (max-width: 1060px) {
  #overview .content-container .bottom-contents .sub-title {
    font-size: 26px;
  }
}
#overview .content-container .bottom-contents .sub-title::after {
  content: "";
  width: 120px;
  height: 2px;
  display: inline-block;
  background: #FFFFFF;
  position: absolute;
  bottom: -10px;
  left: calc(50% - 60px);
}
#overview .content-container .bottom-contents .read {
  margin-top: 40px;
  color: #FFFFFF;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 1060px) {
  #overview .content-container .bottom-contents .read {
    margin-top: 40px;
    text-align: left;
  }
}
#overview .content-container .bottom-contents .swiper {
  width: 960px;
  margin-top: 40px;
  overflow: visible;
}
@media screen and (max-width: 1060px) {
  #overview .content-container .bottom-contents .swiper {
    width: 100vw;
    overflow: hidden;
  }
}
#overview .content-container .bottom-contents .swiper .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  width: 100%;
  height: 100%;
}
#overview .content-container .bottom-contents .swiper .box {
  width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1060px) {
  #overview .content-container .bottom-contents .swiper .box {
    width: 100%;
    padding: 0 16px;
  }
}
@media screen and (max-width: 1060px) {
  #overview .content-container .bottom-contents .swiper .box .p-box {
    width: 100%;
  }
}
#overview .content-container .bottom-contents .swiper .box .p-box .img {
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url(../images/problems-box_bg.png);
  background-size: cover;
}
#overview .content-container .bottom-contents .swiper .box .p-box .read {
  height: 157px;
  margin-top: 0;
  background: #FFFFFF;
  text-align: center;
  padding: 16px 30px;
  font-weight: normal;
}
@media screen and (max-width: 1060px) {
  #overview .content-container .bottom-contents .swiper .box .p-box .read {
    height: auto;
  }
}
#overview .content-container .bottom-contents .swiper .box .p-box .read .title {
  font-size: 20px;
  font-weight: bold;
  color: #007457;
}
#overview .content-container .bottom-contents .swiper .box .p-box .read p {
  color: #000000;
}
#overview .content-container .bottom-contents .swiper .box .arrow-holder {
  margin: 30px 0;
}
#overview .content-container .bottom-contents .swiper .box .s-box {
  -webkit-box-shadow: 0px 0px 36px 0px rgba(118, 179, 134, 0.24);
          box-shadow: 0px 0px 36px 0px rgba(118, 179, 134, 0.24);
}
@media screen and (max-width: 1060px) {
  #overview .content-container .bottom-contents .swiper .box .s-box {
    width: 100%;
  }
}
#overview .content-container .bottom-contents .swiper .box .s-box .title {
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 16px 24px;
  background: #007457;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 1060px) {
  #overview .content-container .bottom-contents .swiper .box .s-box .img img {
    width: 100%;
    height: auto;
  }
}
#overview .content-container .bottom-contents .swiper .box .s-box .read {
  height: 148px;
  margin-top: 0;
  background: #FFFFFF;
  text-align: center;
  padding: 16px 30px;
  font-weight: normal;
}
@media screen and (max-width: 1060px) {
  #overview .content-container .bottom-contents .swiper .box .s-box .read {
    height: 116px;
  }
}
#overview .content-container .bottom-contents .swiper .box .s-box .read p {
  color: #000000;
}
#overview .content-container .bottom-contents .swiper .swiper-controller {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 24px;
  margin: 32px 0;
}
#overview .content-container .bottom-contents .swiper .swiper-controller .swiper-pagination {
  position: unset;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#overview .content-container .bottom-contents .swiper .swiper-controller .swiper-pagination-lock {
  display: none !important;
}
#overview .content-container .bottom-contents .swiper .swiper-controller .swiper-pagination-bullet {
  width: 40px;
  height: 2px;
  background-color: #000;
  opacity: 0.12;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 0;
}
#overview .content-container .bottom-contents .swiper .swiper-controller .swiper-pagination-bullet-active {
  width: 120px;
  opacity: 1;
  background-image: #007457;
}
#overview .content-container .bottom-contents .swiper .swiper-controller .swiper-button-prev,
#overview .content-container .bottom-contents .swiper .swiper-controller .swiper-button-next {
  margin-top: 0;
  position: unset;
  height: auto;
  color: #007457;
}
#overview .content-container .bottom-contents .swiper .swiper-controller .swiper-button-prev::after,
#overview .content-container .bottom-contents .swiper .swiper-controller .swiper-button-next::after {
  font-size: 14px;
}
#overview .content-container .bottom-contents .bottom-read p {
  font-weight: bold;
  font-size: 24px;
  color: #007457;
  text-align: center;
}

#functions {
  background-color: #CBE7E0;
}
#functions .content-container {
  padding: 80px 0;
}
@media screen and (max-width: 1060px) {
  #functions .content-container {
    padding: 48px 16px;
  }
}
#functions .content-container .read {
  text-align: center;
  font-size: 32px;
  color: #21524A;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 1060px) {
  #functions .content-container .read {
    font-size: 28px;
  }
}
#functions .content-container .read::after {
  content: "";
  width: 120px;
  height: 2px;
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(#007457), to(#008F96));
  background: linear-gradient(90deg, #007457, #008F96);
  position: absolute;
  bottom: -10px;
  left: calc(50% - 60px);
}
#functions .content-container .functions-boxs {
  margin: 48px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 880px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1060px) {
  #functions .content-container .functions-boxs {
    margin: 32px auto 0;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#functions .content-container .functions-boxs .box {
  width: 280px;
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1060px) {
  #functions .content-container .functions-boxs .box {
    width: 100%;
    margin-top: 20px;
  }
}
#functions .content-container .functions-boxs .box .title {
  font-size: 20px;
  font-weight: bold;
  padding: 0 8px;
  text-align: center;
}
#functions .content-container .functions-boxs .box .img {
  margin: 12px 0;
}
#functions .content-container .functions-boxs .box .img img {
  max-width: 178px;
  height: auto;
}
#functions .content-container .functions-boxs .box:nth-of-type(n+4) {
  margin-top: 24px;
}
@media screen and (max-width: 1060px) {
  #functions .content-container .functions-boxs .box:nth-of-type(n+4) {
    margin-top: 20px;
  }
}

#reviews .content-container {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 1060px) {
  #reviews .content-container {
    padding: 48px 16px;
  }
}
#reviews .content-container .section-title-b h2 {
  font-size: 32px;
  font-family: "Noto Sans JP", sans-serif;
  color: #21524A;
}
@media screen and (max-width: 1060px) {
  #reviews .content-container .section-title-b h2 {
    font-size: 28px;
  }
}
#reviews .content-container .section-title-b h2::after {
  content: "";
  width: 120px;
  height: 2px;
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(#007457), to(#008F96));
  background: linear-gradient(90deg, #007457, #008F96);
  position: absolute;
  bottom: -10px;
  left: calc(50% - 60px);
}
#reviews .content-container .reviews-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 1060px) {
  #reviews .content-container .reviews-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#reviews .content-container .reviews-container .reviews {
  width: 100%;
  -webkit-box-shadow: 0px 0px 36px 0px rgba(118, 179, 134, 0.24);
          box-shadow: 0px 0px 36px 0px rgba(118, 179, 134, 0.24);
  background: #FFFFFF;
}
@media screen and (max-width: 1060px) {
  #reviews .content-container .reviews-container .reviews {
    width: 100%;
  }
}
#reviews .content-container .reviews-container .reviews .image {
  position: relative;
}
@media screen and (max-width: 1060px) {
  #reviews .content-container .reviews-container .reviews .image {
    max-height: 364px;
    overflow: hidden;
  }
}
#reviews .content-container .reviews-container .reviews .image .label {
  width: calc(100% - 24px);
  padding: 8px;
  background: #007457;
  color: #FFFFFF;
  text-align: center;
  position: absolute;
  top: 12px;
  left: 12px;
  font-weight: bold;
}
#reviews .content-container .reviews-container .reviews .txt-area {
  position: relative;
  padding: 24px;
}
#reviews .content-container .reviews-container .reviews .txt-area .sub-title {
  color: #007457;
  font-weight: bold;
  margin-bottom: 32px;
}
#reviews .content-container .btn-container {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#reviews .content-container .btn-container .btn-blue {
  text-align: center;
  width: 360px;
}

#achievement {
  background-image: url(../images/bg_02.png);
  background-size: cover;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1060px) {
  #achievement {
    background-image: url(../images/bg_02_sp.png);
  }
}
#achievement .content-container {
  max-width: 1232px;
  width: 100%;
  padding: 80px 16px;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1060px) {
  #achievement .content-container {
    padding: 48px 16px;
  }
}
#achievement .content-container .section-title {
  text-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
  margin-bottom: 40px;
}
#achievement .content-container .section-title h2 {
  font-size: 32px;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 50px;
}
@media screen and (max-width: 1060px) {
  #achievement .content-container .section-title h2 {
    font-size: 28px;
  }
}
#achievement .content-container .section-title h2::after {
  content: "";
  width: 120px;
  height: 2px;
  display: inline-block;
  background: #FFFFFF;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 60px);
}
#achievement .content-container .section-title .read {
  font-size: 16px;
  text-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
}
#achievement .content-container .boxs {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 1060px) {
  #achievement .content-container .boxs {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#achievement .content-container .boxs .box {
  background: #FFFFFF;
  width: 33.3333333333%;
  padding: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1060px) {
  #achievement .content-container .boxs .box {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 1060px) {
  #achievement .content-container .boxs .box {
    width: 100%;
  }
}
#achievement .content-container .boxs .box .label {
  width: 100%;
  background: #007457;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 4px;
}
#achievement .content-container .boxs .box .read {
  text-shadow: none;
  color: #000;
  font-weight: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 24px 0;
}
@media screen and (max-width: 1060px) {
  #achievement .content-container .boxs .box .read {
    text-align: center;
    padding: 24px 8px;
  }
}
#achievement .content-container .boxs .box:last-child {
  margin-bottom: 0;
}
#achievement .content-container .read {
  text-align: center;
  color: #FFFFFF;
  text-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
  font-weight: bold;
}
@media screen and (max-width: 1060px) {
  #achievement .content-container .read {
    text-align: left;
  }
}
#achievement .content-container .image-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 80px;
}
@media screen and (max-width: 1060px) {
  #achievement .content-container .image-container {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#achievement .content-container .image-container .img {
  -webkit-box-shadow: 0px 0px 36px 0px rgba(32, 128, 224, 0.16);
          box-shadow: 0px 0px 36px 0px rgba(32, 128, 224, 0.16);
  width: 562px;
}
#achievement .content-container .image-container .img p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #1735A3;
  font-size: 24px;
  font-weight: bold;
  height: 67px;
  background: #FFFFFF;
}
@media screen and (max-width: 1060px) {
  #achievement .content-container .image-container .img {
    width: 100%;
  }
}
#achievement .content-container .image-container .img img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1060px) {
  #achievement .content-container .image-container .img + .img {
    margin-top: 8px;
  }
}

#flow {
  background: #DDF1E9;
}
#flow .content-container {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 1060px) {
  #flow .content-container {
    padding: 40px 16px;
  }
}
#flow .content-container .section-title-b h2 {
  color: #21524A;
  font-size: 32px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1060px) {
  #flow .content-container .section-title-b h2 {
    font-size: 28px;
  }
}
#flow .content-container .section-title-b h2:after {
  background: -webkit-gradient(linear, left top, right top, from(#007457), to(#008F96));
  background: linear-gradient(90deg, #007457, #008F96);
}
#flow .content-container .flow-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1060px) {
  #flow .content-container .flow-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#flow .content-container .flow-container .flow-boxs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 1060px) {
  #flow .content-container .flow-container .flow-boxs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#flow .content-container .flow-container .flow-boxs .box {
  width: 285px;
  background: #FFFFFF;
  padding: 4px;
  padding-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px 0px 36px 0px rgb(203, 231, 224);
          box-shadow: 0px 0px 36px 0px rgb(203, 231, 224);
}
@media screen and (max-width: 1060px) {
  #flow .content-container .flow-container .flow-boxs .box {
    width: 100%;
    padding-bottom: 4px;
  }
}
#flow .content-container .flow-container .flow-boxs .box .label {
  background: #007457;
  color: #FFFFFF;
  font-size: 14px;
  font-family: "Arial", sans-serif;
  font-weight: bold;
  width: 100%;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#flow .content-container .flow-container .flow-boxs .box .label span {
  font-size: 22px;
  font-weight: bold;
  margin-left: 8px;
}
#flow .content-container .flow-container .flow-boxs .box .img {
  height: 100px;
  margin: 16px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#flow .content-container .flow-container .flow-boxs .box .read {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 24px;
}
#flow .content-container .flow-container .flow-boxs .box .read p {
  text-align: center;
}
#flow .content-container .flow-container .flow-boxs .box .read .title {
  font-weight: bold;
  color: #21524A;
  font-size: 20px;
  margin-bottom: 8px;
}
#flow .content-container .flow-container .flow-boxs .arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1060px) {
  #flow .content-container .flow-container .flow-boxs .arrow img {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

#qa .content-container {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 1060px) {
  #qa .content-container {
    padding: 48px 16px;
  }
}
#qa .content-container .section-title-b h2 {
  color: #21524A;
  font-size: 32px;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 64px;
}
@media screen and (max-width: 1060px) {
  #qa .content-container .section-title-b h2 {
    font-size: 28px;
  }
}
#qa .content-container .section-title-b h2::after {
  content: "";
  width: 120px;
  height: 2px;
  display: inline-block;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 60px);
  background: -webkit-gradient(linear, left top, right top, from(#007457), to(#008F96));
  background: linear-gradient(90deg, #007457, #008F96);
}
#qa .content-container .accordion {
  margin: 0 auto;
  max-width: 1024px;
  width: 100%;
  -webkit-box-shadow: 0px 0px 36px 0px rgba(118, 179, 134, 0.24);
          box-shadow: 0px 0px 36px 0px rgba(118, 179, 134, 0.24);
}
#qa .content-container .accordion .accordion_title {
  position: relative;
  border: none;
  display: block;
  list-style: none;
  width: 100%;
  cursor: pointer;
  background: #ffffff;
  padding: 20px 64px;
  color: #007457;
  font-weight: bold;
}
#qa .content-container .accordion summary.accordion_title::-webkit-details-marker {
  display: none;
}
#qa .content-container .accordion .accordion_title:after {
  content: "+";
  position: absolute;
  top: calc(50% - 12px);
  right: 20px;
  line-height: 1;
  padding-left: 16px;
  pointer-events: none;
  font-size: 24px;
  color: #007457;
  border-left: 1px solid #DDDDDD;
  height: 24px;
  width: 24px;
  font-weight: normal;
}
#qa .content-container .accordion .accordion_title::before {
  font-family: "Arial", sans-serif;
  content: "Q";
  position: absolute;
  top: calc(50% - 12px);
  left: 20px;
  line-height: 1;
  pointer-events: none;
  font-size: 24px;
  color: #007457;
  height: 36px;
  width: 36px;
  font-weight: normal;
}
#qa .content-container .accordion + .accordion {
  margin-top: 40px;
}
#qa .content-container .accordion::details-content {
  opacity: 0;
  block-size: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-property: display, opacity, block-size, padding;
  transition-property: display, opacity, block-size, padding;
  transition-behavior: allow-discrete;
}
#qa .content-container .accordion_contents {
  padding: 20px 20px 20px 64px;
  background-color: #F2FAFB;
  position: relative;
}
#qa .content-container .accordion_contents a {
  text-decoration: underline;
}
#qa .content-container .accordion_contents::before {
  font-family: "Arial", sans-serif;
  content: "A";
  position: absolute;
  top: 24px;
  left: 20px;
  line-height: 1;
  pointer-events: none;
  font-size: 24px;
  color: #007457;
  height: 36px;
  width: 36px;
}
#qa .content-container .accordion .accordion_contents > *:first-of-type {
  margin-top: 0;
}
#qa .content-container .accordion .accordion_contents > *:last-of-type {
  margin-bottom: 0;
}
#qa .content-container .accordion[open]::details-content {
  opacity: 1;
  block-size: auto;
  block-size: calc-size(auto, size);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#qa .content-container .accordion[open] .accordion_title:after {
  content: "ー";
  position: absolute;
  top: calc(50% - 12px);
  right: 20px;
  line-height: 1.5;
  padding-left: 16px;
  pointer-events: none;
  font-size: 16px;
  color: #007457;
  border-left: 1px solid #DDDDDD;
  height: 24px;
  width: 24px;
  font-weight: bold;
}
#qa .content-container .btn-container {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#qa .content-container .btn-container .btn-blue {
  text-align: center;
  width: 360px;
}

#information {
  background-color: #FFFFFF;
}
#information .content-container .section-title-b {
  color: #21524A;
}
@media screen and (max-width: 1060px) {
  #information .content-container .section-title-b {
    margin-bottom: 24px;
  }
}
#information .content-container .section-title-b h2::after {
  background: -webkit-gradient(linear, left top, right top, from(#007457), to(#008F96));
  background: linear-gradient(90deg, #007457, #008F96);
}

#links .content-container {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 1060px) {
  #links .content-container {
    padding: 48px 16px;
  }
}
#links .content-container .boxs {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1060px) {
  #links .content-container .boxs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#links .content-container .boxs .box {
  width: 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1060px) {
  #links .content-container .boxs .box {
    width: 100%;
  }
}
#links .content-container .boxs .box a:hover {
  color: #0F75DB;
  text-decoration: underline;
  text-underline-offset: 4px;
}
#links .content-container .boxs .box .title {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}
/*# sourceMappingURL=record.css.map */