@charset "UTF-8";
/******************************* Preface ***************************************/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Allison&display=swap");
a:hover {
  color: #344A8E;
}

/********************************* body ***************************************/
html {
  scroll-behavior: smooth;
}

body {
  /******************************** header **************************************/
  /***********************************  footer ********************************/
}
body header {
  position: relative;
}
body header.header.top {
  height: 100vh;
}
body header.header .inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
body header.header .inner .menu-wrapper nav.gnav {
  display: block;
  position: fixed !important;
  top: 0;
  right: -300px;
  bottom: 0;
  width: 300px;
  padding: 2rem 1.5rem;
  background: white;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all 0.5s;
  z-index: 3;
  opacity: 0;
  margin-right: 0;
}
body header.header .inner .menu-wrapper nav.gnav .logo {
  margin-bottom: 1rem;
}
body header.header .inner .menu-wrapper nav.gnav .logo a {
  display: block;
  transition: all 0.3s;
}
body header.header .inner .menu-wrapper nav.gnav .logo a img {
  display: block;
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto;
}
body header.header .inner .menu-wrapper nav.gnav .logo a:hover {
  opacity: 0.7;
}
body header.header .inner .menu-wrapper nav.gnav .menu-container {
  width: 100%;
  margin-bottom: 1rem;
}
body header.header .inner .menu-wrapper nav.gnav .menu-container .menu {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
}
body header.header .inner .menu-wrapper nav.gnav .menu-container .menu .menu-item {
  position: static;
  width: 100%;
  height: auto;
}
body header.header .inner .menu-wrapper nav.gnav .menu-container .menu .menu-item a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: #4C4948;
}
body header.header .inner .menu-wrapper nav.gnav .menu-container .menu .menu-item a .img {
  width: 2rem;
  height: 2rem;
  padding: 0;
}
body header.header .inner .menu-wrapper nav.gnav .menu-container .menu .menu-item a .img img {
  display: block;
  width: 2rem;
  height: 2rem;
}
body header.header .inner .menu-wrapper nav.gnav .menu-container .menu .menu-item a .txt {
  width: calc(100% - 2rem);
  height: 2rem;
  padding: 0 0 0 1rem;
  border-bottom: 0;
}
body header.header .inner .menu-wrapper nav.gnav .menu-container .menu .menu-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #344A8E;
  height: 2px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.5s;
  width: 100%;
  z-index: 10;
}
body header.header .inner .menu-wrapper nav.gnav .menu-container .menu .menu-item a:hover::after {
  transform: scale(1, 1);
  /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}
body header.header .inner .menu-wrapper nav.gnav .cvp {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}
body header.header .inner .menu-wrapper nav.gnav .cvp ul li {
  margin-bottom: 1rem;
}
body header.header .inner .menu-wrapper nav.gnav .cvp ul li a {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 0.5rem 0;
  color: #FFFFFF;
  font-weight: bold;
  text-align: center;
  border-radius: 0.5rem;
  box-shadow: 0.2rem 0.2rem 0.4rem #A5A5A5;
}
body header.header .inner .menu-wrapper nav.gnav .cvp ul li a.contact {
  background: linear-gradient(to top, #B42943, #DC2C50);
  border-right: 0.2rem solid #6A202A;
  border-bottom: 0.2rem solid #6A202A;
}
body header.header .inner .menu-wrapper nav.gnav .cvp ul li a.visit {
  background: linear-gradient(to top, #3972AB, #408BD1);
  border-right: 0.2rem solid #284463;
  border-bottom: 0.2rem solid #284463;
}
body header.header .inner .menu-wrapper nav.gnav .cvp ul li a.online {
  background: linear-gradient(to top, #1A4590, #1353B0);
  border-right: 0.2rem solid #1B2B55;
  border-bottom: 0.2rem solid #1B2B55;
}
body header.header .inner .menu-wrapper nav.gnav .cvp ul li a > p {
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}
body header.header .inner .menu-wrapper nav.gnav .cvp ul li a .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
body header.header .inner .menu-wrapper nav.gnav .cvp ul li a .btn .img {
  width: 2rem;
  height: 2rem;
  padding: 0;
}
body header.header .inner .menu-wrapper nav.gnav .cvp ul li a .btn .img svg {
  display: block;
  width: 2rem;
  height: 2rem;
}
body header.header .inner .menu-wrapper nav.gnav .cvp ul li a .btn .txt {
  width: auto;
  height: 2rem;
  padding-left: 1rem;
  color: white;
}
body header.header .inner .menu-wrapper nav.gnav .cvp ul li a .btn .txt p {
  font-weight: bold;
  line-height: 2;
}
body header.header .inner .menu-wrapper nav.gnav .com {
  display: block;
  margin-bottom: 2rem;
}
body header.header .inner .menu-wrapper nav.gnav .com a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5rem;
}
body header.header .inner .menu-wrapper nav.gnav .com a .img {
  width: 2rem;
  height: 2rem;
}
body header.header .inner .menu-wrapper nav.gnav .com a .img img {
  width: 2rem;
  height: 2rem;
}
body header.header .inner .menu-wrapper nav.gnav .com a .txt {
  width: auto;
  height: 2rem;
  padding-left: 1rem;
}
body header.header .inner .menu-wrapper nav.gnav .com a .txt p {
  color: #080808;
  font-weight: bold;
  line-height: 2rem;
}
body header.header .inner .menu-wrapper nav.gnav .com > p {
  color: #707070;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
}
body header.header .inner .menu-wrapper nav.gnav .rev a {
  display: block;
}
body header.header .inner .menu-wrapper nav.gnav .rev a img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
body header.header .inner .menu-wrapper .toggle-btn {
  display: block;
  position: fixed;
  top: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  transition: all 0.5s;
  background: #344A8E;
  border-radius: 999px;
  cursor: pointer;
  z-index: 3;
}
body header.header .inner .menu-wrapper .toggle-btn span {
  display: block;
  position: absolute;
  right: 0;
  width: 25px;
  height: 2px;
  background-color: white;
  transition: all 0.5s;
}
body header.header .inner .menu-wrapper .toggle-btn span:nth-child(1) {
  top: 16px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
body header.header .inner .menu-wrapper .toggle-btn span:nth-child(2) {
  top: 24px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
body header.header .inner .menu-wrapper .toggle-btn span:nth-child(3) {
  bottom: 16px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
body header.header .inner .menu-wrapper .toggle-btn span.scrolled {
  background-color: white;
}
body header.header .inner .menu-wrapper.menu-open .gnav {
  right: 0;
  opacity: 1;
}
body header.header .inner .menu-wrapper.menu-open .toggle-btn {
  right: 310px;
  margin-top: 0;
}
body header.header .inner .menu-wrapper.menu-open .toggle-btn span {
  background-color: white;
}
body header.header .inner .menu-wrapper.menu-open .toggle-btn span:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(-315deg);
  transform: translateY(8px) rotate(-315deg);
}
body header.header .inner .menu-wrapper.menu-open .toggle-btn span:nth-child(2) {
  opacity: 0;
}
body header.header .inner .menu-wrapper.menu-open .toggle-btn span:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(315deg);
  transform: translateY(-8px) rotate(315deg);
}
body header.header .inner .menu-wrapper.menu-open .toggle-btn span.scroll {
  background-color: #4C4948;
}
body header.header .inner .menu-wrapper.menu-open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.3;
  z-index: 2;
  cursor: pointer;
}
body header.header .inner .menu-wrapper #mask {
  display: none;
  transition: all 0.3s;
}
body header.header .mainvi {
  height: 100%;
  width: 100%;
  position: relative;
  overflow-x: hidden;
  padding: 1em;
  /* スクロールダウンの位置 */
  /* 線のアニメーション */
}
body header.header .mainvi .slider {
  height: 100%;
}
body header.header .mainvi .slider div {
  height: 100%;
  background-image: url(../img/mv.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: brightness(90%);
}
body header.header .mainvi .sub-copy {
  position: absolute;
  top: 15%;
  left: 20%;
  transform: rotate(-10deg);
  font-size: 7vw;
  line-height: 1;
}
body header.header .mainvi .mv-icon {
  position: absolute;
  top: 20%;
  left: 58%;
}
body header.header .mainvi .mv-icon img {
  display: block;
}
body header.header .mainvi .copy {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
}
body header.header .mainvi .copy h1 {
  width: 100%;
}
body header.header .mainvi .copy h1 span {
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
  font-size: 5vw;
  font-weight: bold;
  background: white;
  color: #333333;
}
body header.header .mainvi .copy h1 span.sub {
  font-size: 1.8vw;
  font-weight: bold;
  background: none;
  color: white;
  border: 1px solid white;
  padding: 0.5rem 1rem;
  margin-top: 1em;
  text-align: center;
}
body header.header .mainvi .scroll {
  text-align: center;
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-weight: bold;
  letter-spacing: 0.1rem;
  /* 矢印のアニメーション部分 */
}
body header.header .mainvi .scroll::after {
  animation: scroll 2s infinite;
  background-color: #000;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
body .content-wrap {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
body .content-wrap .inner.inner-l {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}
body .content-wrap .inner.inner-m {
  width: 100%;
  max-width: 1110px;
  margin: 0 auto;
}
body .content-wrap .inner.inner-s {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}
body .content-wrap .inner.bg-commit-img {
  background-repeat: repeat-y;
  background-size: 100%;
  background-position: top;
  background-image: url(../img/bg_commit.png);
}
@media screen and (min-width: 678px) and (max-width: 1150px) {
  body .content-wrap .inner.inner-s {
    padding: 0 40px;
  }
  body .content-wrap .inner.inner-m {
    padding: 0 40px;
  }
  body .content-wrap .inner.inner-l {
    padding: 0 40px;
  }
}
body .content-wrap.bg-rb-img {
  background-repeat: repeat-y;
  background-size: 100%;
  background-position: center;
  background-image: url(../img/bg_rb.png);
}
body .content-wrap.bg-merit-img {
  background-image: url(../img/bg_merit.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
body .content-wrap h1.section-title,
body .content-wrap h2.section-title,
body .content-wrap h3.section-title,
body .content-wrap h4.section-title,
body .content-wrap h5.section-title,
body .content-wrap h6.section-title {
  margin-bottom: 4rem;
}
body .content-wrap h1.section-title span,
body .content-wrap h2.section-title span,
body .content-wrap h3.section-title span,
body .content-wrap h4.section-title span,
body .content-wrap h5.section-title span,
body .content-wrap h6.section-title span {
  display: block;
}
body .content-wrap h1.section-title span.main,
body .content-wrap h2.section-title span.main,
body .content-wrap h3.section-title span.main,
body .content-wrap h4.section-title span.main,
body .content-wrap h5.section-title span.main,
body .content-wrap h6.section-title span.main {
  font-size: 2.3rem;
  font-weight: bold;
}
body .content-wrap h1.section-title span.sub,
body .content-wrap h2.section-title span.sub,
body .content-wrap h3.section-title span.sub,
body .content-wrap h4.section-title span.sub,
body .content-wrap h5.section-title span.sub,
body .content-wrap h6.section-title span.sub {
  font-size: 1.1rem;
  line-height: 2;
}
body .content-wrap h1.content-title,
body .content-wrap h2.content-title,
body .content-wrap h3.content-title,
body .content-wrap h4.content-title,
body .content-wrap h5.content-title,
body .content-wrap h6.content-title {
  margin-bottom: 2rem;
}
body .content-wrap h1.content-title.boder-bottom-01,
body .content-wrap h2.content-title.boder-bottom-01,
body .content-wrap h3.content-title.boder-bottom-01,
body .content-wrap h4.content-title.boder-bottom-01,
body .content-wrap h5.content-title.boder-bottom-01,
body .content-wrap h6.content-title.boder-bottom-01 {
  position: relative;
  font-size: 2.5rem;
  font-weight: bold;
}
body .content-wrap h1.content-title.boder-bottom-01 span,
body .content-wrap h2.content-title.boder-bottom-01 span,
body .content-wrap h3.content-title.boder-bottom-01 span,
body .content-wrap h4.content-title.boder-bottom-01 span,
body .content-wrap h5.content-title.boder-bottom-01 span,
body .content-wrap h6.content-title.boder-bottom-01 span {
  position: relative;
  padding: 1rem 0;
}
body .content-wrap h1.content-title.boder-bottom-01 span::after,
body .content-wrap h2.content-title.boder-bottom-01 span::after,
body .content-wrap h3.content-title.boder-bottom-01 span::after,
body .content-wrap h4.content-title.boder-bottom-01 span::after,
body .content-wrap h5.content-title.boder-bottom-01 span::after,
body .content-wrap h6.content-title.boder-bottom-01 span::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90px;
  height: 3px;
  content: "";
  background: #344A8E;
}
body .content-wrap h1.content-title.boder-bottom-01 span:before,
body .content-wrap h2.content-title.boder-bottom-01 span:before,
body .content-wrap h3.content-title.boder-bottom-01 span:before,
body .content-wrap h4.content-title.boder-bottom-01 span:before,
body .content-wrap h5.content-title.boder-bottom-01 span:before,
body .content-wrap h6.content-title.boder-bottom-01 span:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  content: "";
  background: #FFF347;
  z-index: 1;
}
body .content-wrap h1.content-title.center,
body .content-wrap h2.content-title.center,
body .content-wrap h3.content-title.center,
body .content-wrap h4.content-title.center,
body .content-wrap h5.content-title.center,
body .content-wrap h6.content-title.center {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 2rem;
}
body .content-wrap h1.content-title.center span,
body .content-wrap h2.content-title.center span,
body .content-wrap h3.content-title.center span,
body .content-wrap h4.content-title.center span,
body .content-wrap h5.content-title.center span,
body .content-wrap h6.content-title.center span {
  width: 100%;
  display: block;
}
body .content-wrap h1.content-title.center span::after,
body .content-wrap h2.content-title.center span::after,
body .content-wrap h3.content-title.center span::after,
body .content-wrap h4.content-title.center span::after,
body .content-wrap h5.content-title.center span::after,
body .content-wrap h6.content-title.center span::after {
  left: 50%;
  transform: translateX(-50%);
}
body .content-wrap h1.content-title.center span:before,
body .content-wrap h2.content-title.center span:before,
body .content-wrap h3.content-title.center span:before,
body .content-wrap h4.content-title.center span:before,
body .content-wrap h5.content-title.center span:before,
body .content-wrap h6.content-title.center span:before {
  left: 50%;
  transform: translateX(-150%);
}
body .content-wrap h1.content-title.icon-title span,
body .content-wrap h2.content-title.icon-title span,
body .content-wrap h3.content-title.icon-title span,
body .content-wrap h4.content-title.icon-title span,
body .content-wrap h5.content-title.icon-title span,
body .content-wrap h6.content-title.icon-title span {
  position: relative;
  font-size: 2.2rem;
  font-weight: bold;
}
body .content-wrap h1.content-title.icon-title span::after, body .content-wrap h1.content-title.icon-title span::before,
body .content-wrap h2.content-title.icon-title span::after,
body .content-wrap h2.content-title.icon-title span::before,
body .content-wrap h3.content-title.icon-title span::after,
body .content-wrap h3.content-title.icon-title span::before,
body .content-wrap h4.content-title.icon-title span::after,
body .content-wrap h4.content-title.icon-title span::before,
body .content-wrap h5.content-title.icon-title span::after,
body .content-wrap h5.content-title.icon-title span::before,
body .content-wrap h6.content-title.icon-title span::after,
body .content-wrap h6.content-title.icon-title span::before {
  content: "";
  display: block;
  background-image: url(../img/icon_star.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 77px;
  height: 70px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
body .content-wrap h1.content-title.icon-title span::after,
body .content-wrap h2.content-title.icon-title span::after,
body .content-wrap h3.content-title.icon-title span::after,
body .content-wrap h4.content-title.icon-title span::after,
body .content-wrap h5.content-title.icon-title span::after,
body .content-wrap h6.content-title.icon-title span::after {
  right: -3em;
}
body .content-wrap h1.content-title.icon-title span::before,
body .content-wrap h2.content-title.icon-title span::before,
body .content-wrap h3.content-title.icon-title span::before,
body .content-wrap h4.content-title.icon-title span::before,
body .content-wrap h5.content-title.icon-title span::before,
body .content-wrap h6.content-title.icon-title span::before {
  left: -3em;
}
body .content-wrap h1.lead-text,
body .content-wrap h2.lead-text,
body .content-wrap h3.lead-text,
body .content-wrap h4.lead-text,
body .content-wrap h5.lead-text,
body .content-wrap h6.lead-text {
  font-size: 2.2rem;
  line-height: 1.6;
  font-weight: 600;
}
body .content-wrap .title-deco {
  position: relative;
}
body .content-wrap .title-deco::after, body .content-wrap .title-deco::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 159px;
  max-width: 300px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
body .content-wrap .title-deco::after {
  right: 10%;
  background-image: url(../img/ttl_deco_right.png);
}
body .content-wrap .title-deco::before {
  left: 10%;
  background-image: url(../img/ttl_deco_left.png);
}
body .content-wrap .sec-img-wrap img {
  display: block;
}
body .content-wrap .bg-question-wrap {
  background-size: cover;
  background-position: center;
  background-image: url(../img/bg_question.jpg);
  background-repeat: no-repeat;
  position: relative;
  padding: 10rem 0;
  margin-top: -8%;
  z-index: -1;
}
body .content-wrap .bg-question-wrap .ttl-img {
  padding-bottom: 2rem;
}
body .content-wrap .bg-question-wrap .ttl-img img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
body .content-wrap .bg-question-wrap .text {
  font-weight: bold;
  font-size: 1.3rem;
}
body .content-wrap .bg-question-wrap .text span {
  color: #FDFE1A;
  font-size: 1.5rem;
}
body .content-wrap .commit-wrap .item {
  background: white;
  border: 4px solid #344A8E;
  margin: 5rem auto;
  box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.25);
}
body .content-wrap .commit-wrap .item .ttl {
  margin-top: -4em;
}
body .content-wrap .commit-wrap .item .ttl img {
  display: block;
  margin: 0 auto;
  max-width: 80%;
}
body .content-wrap .commit-wrap .item ul {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 2rem;
}
body .content-wrap .commit-wrap .item ul li {
  padding-bottom: 2rem;
}
body .content-wrap .commit-wrap .item ul li .title {
  position: relative;
  padding-left: 30px;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
body .content-wrap .commit-wrap .item ul li .title::after {
  position: absolute;
  content: "●";
  font-size: 20px;
  color: #344A8E;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
body .content-wrap .commit-wrap .item ul li p {
  font-size: 1.2rem;
}
body .content-wrap .box-1col.box-1col-01 {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
}
body .content-wrap .box-1col.box-1col-01 .thumb {
  width: 100%;
  margin-right: -20%;
}
body .content-wrap .box-1col.box-1col-01 .thumb img {
  display: block;
  width: 100%;
  object-fit: cover;
  height: 100%;
}
body .content-wrap .box-1col.box-1col-01 .text {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-right: 2rem;
}
body .content-wrap .box-1col.box-1col-01 .text h3.section-title {
  margin-bottom: 1.5rem;
}
body .content-wrap .box-1col.box-1col-01 .text > p {
  font-size: 1.1rem;
}
body .content-wrap .box-1col.box-1col-01.reverse {
  flex-direction: row;
}
body .content-wrap .box-1col.box-1col-01.reverse .thumb {
  margin-right: 0;
  margin-left: -20%;
}
body .content-wrap .box-1col.box-1col-01.reverse .text {
  padding-right: 0;
  padding-left: 3rem;
}
body .content-wrap .box-1col.box-1col-02 {
  position: relative;
  display: flex;
  align-items: flex-end;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-bottom: 5rem;
}
body .content-wrap .box-1col.box-1col-02 .thumb {
  position: relative;
  width: 50%;
}
body .content-wrap .box-1col.box-1col-02 .thumb::after {
  content: "";
  background: #EEEDE6;
  position: absolute;
  top: 15%;
  left: 30%;
  width: 100%;
  height: 100%;
  z-index: -1;
  aspect-ratio: 16/9;
}
body .content-wrap .box-1col.box-1col-02 .thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}
body .content-wrap .box-1col.box-1col-02 .text {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-right: 2rem;
  padding-bottom: 3rem;
}
body .content-wrap .box-1col.box-1col-02 .text h3.section-title {
  margin-bottom: 1.5rem;
}
body .content-wrap .box-1col.box-1col-02 .text > p {
  font-size: 1.1rem;
}
body .content-wrap .box-1col.box-1col-02.reverse {
  flex-direction: row;
}
body .content-wrap .box-1col.box-1col-02.reverse .thumb::after {
  top: 15%;
  left: -30%;
}
body .content-wrap .box-1col.box-1col-02.reverse .text {
  padding-right: 0;
  padding-left: 3rem;
}
body .content-wrap .box-1col.box-1col-03 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-bottom: 5rem;
  background: white;
  padding: 1.5rem;
}
body .content-wrap .box-1col.box-1col-03 .thumb {
  width: 50%;
}
body .content-wrap .box-1col.box-1col-03 .thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}
body .content-wrap .box-1col.box-1col-03 .text {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem 2rem 3rem 0;
}
body .content-wrap .box-1col.box-1col-03 .text .num {
  position: absolute;
  top: -3rem;
  left: 2rem;
  color: rgba(52, 74, 142, 0.8);
  font-weight: bold;
  font-size: 5rem;
  line-height: 1;
}
body .content-wrap .box-1col.box-1col-03 .text h3.section-title {
  margin-bottom: 1.5rem;
}
body .content-wrap .box-1col.box-1col-03 .text > p {
  font-size: 1.1rem;
}
body .content-wrap .box-1col.box-1col-04 {
  position: relative;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5rem;
  padding: 3rem 0;
}
body .content-wrap .box-1col.box-1col-04 .merit-list {
  width: 50%;
}
body .content-wrap .box-1col.box-1col-04 .merit-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #D9D9D9;
}
body .content-wrap .box-1col.box-1col-04 .merit-list li .num {
  width: 50px;
  height: 50px;
  margin-right: 1rem;
  border: 1px solid #344A8E;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
body .content-wrap .box-1col.box-1col-04 .merit-list li .num > span {
  display: block;
}
body .content-wrap .box-1col.box-1col-04 .merit-list li .detail {
  width: 80%;
}
body .content-wrap .box-1col.box-1col-04 .merit-list li .detail > span {
  font-weight: bold;
}
body .content-wrap .box-1col.box-1col-04 .text {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-right: 2rem;
}
body .content-wrap .box-1col.box-1col-04 .text h3.section-title {
  margin-bottom: 1.5rem;
}
body .content-wrap .box-1col.box-1col-04 .text > p {
  font-size: 1.1rem;
}
@media screen and (min-width: 678px) and (max-width: 1024px) {
  body .content-wrap .box-1col.box-1col-01 {
    position: relative;
    max-width: 100%;
    display: block;
    padding: 0 40px;
  }
  body .content-wrap .box-1col.box-1col-01 .thumb {
    width: 100%;
    margin-right: 0;
  }
  body .content-wrap .box-1col.box-1col-01 .thumb img {
    display: block;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
    height: 100%;
    max-height: 600px;
  }
  body .content-wrap .box-1col.box-1col-01 .text {
    width: 100%;
    padding: 0;
    padding-top: 2rem;
  }
  body .content-wrap .box-1col.box-1col-01.reverse .thumb {
    margin-right: 0;
    margin-left: 0;
  }
  body .content-wrap .box-1col.box-1col-01.reverse .text {
    padding-right: 0;
    padding-left: 0;
  }
}
body .content-wrap .box-3col.box-3col-01 {
  margin: 4rem 0;
}
body .content-wrap .box-3col.box-3col-01 ul.list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
body .content-wrap .box-3col.box-3col-01 ul.list li.list-item {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 2%;
}
body .content-wrap .box-3col.box-3col-01 ul.list li.list-item:nth-child(3n) {
  margin-right: 0;
}
body .content-wrap .box-3col.box-3col-01 ul.list li.list-item .item-wrap {
  background: #344A8E;
  border: 4px solid #344A8E;
}
body .content-wrap .box-3col.box-3col-01 ul.list li.list-item .num {
  position: relative;
  font-size: 1.1rem;
  line-height: 1;
  color: white;
  text-align: center;
  font-weight: bold;
  z-index: 1;
}
body .content-wrap .box-3col.box-3col-01 ul.list li.list-item .num span {
  display: block;
  font-size: 2.3rem;
}
body .content-wrap .box-3col.box-3col-01 ul.list li.list-item .num::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url(../img/voice_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 100%;
  height: 84px;
  z-index: -1;
}
body .content-wrap .box-3col.box-3col-01 ul.list li.list-item .ttl {
  font-size: 1.1rem;
  color: white;
  text-align: center;
  font-weight: bold;
  padding: 1rem 0;
}
body .content-wrap .box-3col.box-3col-01 ul.list li.list-item .item-body {
  background: white;
  padding: 0.3rem;
}
body .content-wrap .box-3col.box-3col-01 ul.list li.list-item .item-body .thumb img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0.5rem auto;
  object-fit: cover;
  aspect-ratio: 16/10;
}
body .content-wrap .box-3col.box-3col-01 ul.list li.list-item .item-body .text {
  padding: 1rem 0.5rem;
  min-height: 10em;
}
body .content-wrap .btn-wrap h3 {
  font-weight: bold;
  font-size: 1.8rem;
}
body .content-wrap .btn-wrap a {
  display: block;
  transition: all 0.3s;
}
body .content-wrap .btn-wrap a img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
body .content-wrap .btn-wrap a:hover {
  opacity: 0.7;
}
body .content-wrap .table tr th {
  width: 28%;
  padding: 1.5rem 0;
}
body .content-wrap .table tr td {
  padding: 1.5rem 0;
  font-weight: bold;
}
body .content-wrap .table tr:last-child th,
body .content-wrap .table tr:last-child td {
  border-bottom: 1px solid #dee2e6;
}
body .content-wrap .map {
  aspect-ratio: 16/8;
}
body .content-wrap .map iframe {
  width: 100%;
  height: 100%;
  max-height: 500px;
}
body .sec-head-img {
  margin-bottom: -3%;
  padding-top: 4em;
  position: relative;
  z-index: 1;
}
body .sec-head-img img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}