@charset "UTF-8";
/**** 共通カラー ****/
body {
  background-color: #f6f7f8;
  color: #192b55;
}

.section {
  position: relative;
}

.w1200 {
  max-width: 1200px;
  margin: auto;
  width: 93%;
}
@media screen and (max-width: 768px) {
  .w1200 {
    width: calc(100% - 40px);
  }
}

.w900 {
  max-width: 900px;
  margin: auto;
  width: 93%;
}
@media screen and (max-width: 1200px) {
  .w900 {
    padding: 0 15px;
  }
}

.loading-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s all;
}
.loading-wrapper.is_show {
  opacity: 1;
  pointer-events: auto;
}
.loading-wrapper > div {
  transform: translateY(20px);
  transition: 0.8s;
  opacity: 0;
}
.loading-wrapper > div.is_show {
  opacity: 1;
  transform: none;
}
.loading-wrapper > div > div {
  transform: scale(1.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading-wrapper .loading-logo-img {
  display: block;
  width: 52px;
  aspect-ratio: 52/52;
  margin-right: 17px;
}
@media screen and (max-width: 768px) {
  .loading-wrapper .loading-logo-img {
    width: 40px;
    margin-right: 10px;
  }
}
.loading-wrapper .loading-logo-txt {
  display: block;
  width: 107px;
  aspect-ratio: 107/29;
  background-image: url(../img/logo-txt-blue.svg);
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .loading-wrapper .loading-logo-txt {
    width: 81px;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding-left: 45px;
  padding-right: 40px;
  width: 100%;
  box-sizing: border-box;
  transition: 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
}
@media screen and (max-width: 1200px) {
  .header {
    padding-left: 3.5vw;
    padding-right: 3.5vw;
  }
}
@media screen and (max-width: 768px) {
  .header {
    height: 60px;
    padding-left: 20px;
    padding-right: 10px;
  }
}
.header:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(#fff 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
}
.is_hmb_open .header {
  background-color: #192b55;
}
.is_hmb_open .header:before {
  opacity: 0;
}
.header .header-logo-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}
.header .header-logo {
  display: flex;
  align-items: center;
  margin-right: 42px;
}
@media screen and (max-width: 768px) {
  .header .header-logo {
    margin-right: 20px;
  }
}
.header .header-logo:hover {
  opacity: 0.8;
}
.header .logo-img {
  display: block;
  width: 52px;
  aspect-ratio: 52/52;
  margin-right: 17px;
}
@media screen and (max-width: 768px) {
  .header .logo-img {
    width: 40px;
    margin-right: 10px;
  }
}
.header .logo-txt {
  display: block;
  width: 107px;
  aspect-ratio: 107/29;
  background-image: url(../img/logo-txt-blue.svg);
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .header .logo-txt {
    width: 81px;
  }
}
.is_hmb_open .header .logo-txt {
  background-image: url(../img/logo-txt-white.svg);
}
.header .logo-license {
  width: 110px;
}
@media screen and (max-width: 768px) {
  .header .logo-license {
    width: 82px;
  }
}
.header .nav-pc {
  position: relative;
}
@media screen and (max-width: 1000px) {
  .header .nav-pc {
    display: none;
  }
}
.header .nav-pc .nav-wrap {
  display: flex;
  align-items: center;
}
.header .nav-pc .nav-wrap > ul {
  display: flex;
  align-items: center;
  margin-right: 40px;
}
.header .nav-pc .nav-wrap > ul > li {
  margin-right: 38px;
}
@media screen and (max-width: 1200px) {
  .header .nav-pc .nav-wrap > ul > li {
    margin-right: 30px;
  }
}
.header .nav-pc .nav-wrap > ul > li:last-of-type {
  margin-right: 0;
}
.header .nav-pc .nav-wrap > ul > li a {
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-family: "NotoSansJP-Medium";
  line-height: 1.5;
}
.header .nav-pc .nav-wrap > ul > li a:hover {
  transform: translateY(-2px);
}
.header .nav-pc .nav-wrap .header-contact-btn {
  background-color: #192b55;
  color: #fff;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-family: "NotoSansJP-Medium";
  line-height: 1.5;
  padding: 8px 27px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.header .nav-pc .nav-wrap .header-contact-btn:hover {
  transform: translateY(-2px);
}
.header .header-hmb {
  display: none;
  width: 50px;
  aspect-ratio: 40/40;
  background-color: #192b55;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .header .header-hmb {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .header .header-hmb {
    width: 40px;
  }
}
.header .header-hmb:hover {
  background-color: #4a80ff;
}
.header .header-hmb > span {
  width: 24px;
  display: block;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .header .header-hmb > span {
    width: 14px;
  }
}
.header .header-hmb > span:first-of-type {
  top: 16px;
}
@media screen and (max-width: 768px) {
  .header .header-hmb > span:first-of-type {
    top: 14px;
  }
}
.is_hmb_open .header .header-hmb > span:first-of-type {
  top: 24px;
  transform: translateX(-50%) rotate(25deg);
}
@media screen and (max-width: 768px) {
  .is_hmb_open .header .header-hmb > span:first-of-type {
    top: 19px;
  }
}
.header .header-hmb > span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.is_hmb_open .header .header-hmb > span:nth-of-type(2) {
  display: none;
}
.header .header-hmb > span:last-of-type {
  bottom: 16px;
}
@media screen and (max-width: 768px) {
  .header .header-hmb > span:last-of-type {
    bottom: 14px;
  }
}
.is_hmb_open .header .header-hmb > span:last-of-type {
  transform: translateX(-50%) rotate(-25deg);
  bottom: 24px;
}
@media screen and (max-width: 768px) {
  .is_hmb_open .header .header-hmb > span:last-of-type {
    bottom: 19px;
  }
}
.header .nav-sp {
  position: absolute;
  top: 70px;
  right: 0;
  background-color: #192b55;
  height: calc(100dvh - 60px);
  width: 100%;
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .header .nav-sp {
    top: 60px;
  }
}
.is_hmb_open .header .nav-sp {
  opacity: 1;
  pointer-events: auto;
}
.header .nav-sp .nav-wrap > .menu {
  border-top: 1px solid #0a4b79;
  border-bottom: 1px solid #0a4b79;
}
.header .nav-sp .nav-wrap > .menu > li {
  border-top: 1px solid #0a4b79;
}
.header .nav-sp .nav-wrap > .menu > li > a {
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  color: #fff;
  font-family: "NotoSansJP-Medium";
  display: flex;
  height: 60px;
  align-items: center;
  padding: 0 45px;
}
@media screen and (max-width: 768px) {
  .header .nav-sp .nav-wrap > .menu > li > a {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.header .nav-sp .nav-wrap .sub {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 45px;
}
@media screen and (max-width: 768px) {
  .header .nav-sp .nav-wrap .sub {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.header .nav-sp .nav-wrap .sub > li > a {
  font-size: clamp(1rem, 1vw, 1.2rem);
  color: #fff;
  font-family: "NotoSansJP-Medium";
  line-height: 1.4166666667;
}
.header .nav-sp .nav-wrap .header-sp-contact-btn {
  background-color: #fff;
  line-height: 1.5;
  padding: 8px 0;
  display: block;
  margin-top: 35px;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  text-align: center;
  font-family: "NotoSansJP-Bold";
  margin-left: 45px;
  margin-right: 45px;
}
@media screen and (max-width: 768px) {
  .header .nav-sp .nav-wrap .header-sp-contact-btn {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.home .sub_ttl.is_show .sub_ttl-en,
.home .sub_ttl.is_show .sub_ttl-ja {
  opacity: 1;
  transform: translateY(0);
}
.home .sub_ttl-en {
  font-family: "Montserrat-SemiBold";
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  color: #4a80ff;
  line-height: 1.2857142857;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: 1s;
}
@media screen and (max-width: 768px) {
  .home .sub_ttl-en {
    line-height: 1.25;
  }
}
.home .sub_ttl-en:before {
  content: "";
  display: block;
  width: 20px;
  height: 3px;
  background-color: #4a80ff;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .home .sub_ttl-en:before {
    height: 2px;
  }
}
.home .sub_ttl-ja {
  font-family: "NotoSansJP-Bold";
  font-size: clamp(2.8rem, 3vw, 3.2rem);
  line-height: 1.4375;
  margin-top: 16px;
  display: block;
  opacity: 0;
  transform: translateY(30px);
  transition: 1s;
  transition-delay: 0.15s;
}
@media screen and (max-width: 768px) {
  .home .sub_ttl-ja {
    font-size: clamp(1.8rem, 1.9vw, 2rem);
    line-height: 1.45;
    margin-top: 7px;
  }
}
.home .btn-link {
  margin-top: 60px;
  border: 1px solid #dadbdb;
  width: -moz-fit-content;
  width: fit-content;
  box-sizing: border-box;
  display: flex;
  font-family: "NotoSansJP-Medium";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  height: 3.125em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .home .btn-link {
    font-size: clamp(1.4rem, 1.2vw, 1.6rem);
    height: 3.5714285714em;
    margin-left: auto;
  }
}
.home .btn-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  background-color: #192b55;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.3s;
}
.home .btn-link:after {
  content: "";
  display: block;
  height: 100%;
  aspect-ratio: 1/1;
  border-left: 1px solid #ccc;
  background-image: url(../img/icon-arrow-blue.svg);
  background-size: 14px auto;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  transition: 0.3s;
  position: relative;
}
.home .btn-link > span {
  padding-left: 20px;
  width: 156px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  transition: 0.3s;
  position: relative;
}
.home .btn-link:hover:before {
  height: 100%;
}
.home .btn-link:hover:after {
  background-image: url(../img/icon-arrow-white.svg);
}
.home .btn-link:hover > span {
  color: #fff;
}
.home a:hover .arrow-btn:before {
  height: 100%;
}
.home a:hover .arrow-btn span:first-of-type {
  left: 40px;
}
.home a:hover .arrow-btn span:last-of-type {
  left: 13px;
}
.home a .arrow-btn {
  width: 40px;
  aspect-ratio: 40/40;
  border: 1px solid #dadbdb;
  display: block;
  position: relative;
  overflow: hidden;
}
.home a .arrow-btn:before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  background-color: #4a80ff;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.3s;
}
.home a .arrow-btn span {
  display: block;
  width: 14px;
  aspect-ratio: 14/14;
  background-image: url(../img/icon-arrow-gray.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  top: 13px;
  left: 13px;
  transition: 0.3s;
}
.home a .arrow-btn span:last-of-type {
  background-image: url(../img/icon-arrow-white.svg);
  left: -14px;
}
.home.loaded .mv-ttl_box {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.home .section-parallax {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-image: url(../img/section-parallax.webp);
  background-position: 50% 50%;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .home .section-parallax {
    background-image: url(../img/section-parallax-sp.webp);
  }
}
.home .section-parallax .circle {
  position: absolute;
  top: -2.2916666667%;
  left: 0;
  width: 100%;
  aspect-ratio: 1440/1359;
  background-image: url(../img/circle.svg);
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  mix-blend-mode: color-burn;
}
@media screen and (max-width: 1200px) {
  .home .section-parallax .circle {
    width: 237.3333333333vw;
    top: -12.8935532234vh;
  }
}
.home .section-mv {
  height: 100vh;
  position: relative;
}
.home .section-mv .mv-ttl {
  color: #fff;
  font-family: "NotoSansJP-Black";
  line-height: 1.8;
  font-size: min(60px, 7.5vh);
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .home .section-mv .mv-ttl {
    line-height: 1.8064516129;
    font-size: 3.875vh;
  }
}
.home .section-mv .mv-ttl_box {
  position: absolute;
  opacity: 0;
  transition: 1s;
  transform: translateY(60px);
}
.home .section-mv .mv-ttl_box:first-of-type {
  top: 11.625vh;
  left: 4.3055555556vw;
  transition-delay: 0.1s;
}
@media screen and (max-width: 768px) {
  .home .section-mv .mv-ttl_box:first-of-type {
    top: 9.8950524738vh;
    left: 5.3333333333vw;
  }
}
.home .section-mv .mv-ttl_box:last-of-type {
  bottom: 5.625vh;
  right: 0;
  text-align: right;
  transition-delay: 0.25s;
}
@media screen and (max-width: 768px) {
  .home .section-mv .mv-ttl_box:last-of-type {
    right: -1.6vw;
    bottom: 13.4932533733vh;
  }
}
.home .section-mv .mv-ttl_box:last-of-type > div:first-of-type {
  padding-right: 1.1111111111vw;
}
@media screen and (max-width: 768px) {
  .home .section-mv .mv-ttl_box:last-of-type > div:first-of-type {
    padding-right: 1.6vw;
  }
}
.home .section-mv .mv-ttl_l {
  font-size: min(80px, 10vh);
  line-height: 1.35;
}
@media screen and (max-width: 768px) {
  .home .section-mv .mv-ttl_l {
    font-size: 6.1469265367vh;
    line-height: 1.3658536585;
  }
}
.home .section-intro {
  padding-top: 180px;
  padding-bottom: 180px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .home .section-intro {
    padding-top: 120px;
    padding-bottom: 107px;
  }
}
.home .section-intro:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(53, 63, 113, 0) 0%, #192b55 52.71%, #353f71 100%);
  mix-blend-mode: multiply;
  -webkit-transform: translateZ(0);
}
.home .section-intro .w1200 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .home .section-intro .w1200 {
    display: block;
  }
}
.home .section-intro .intro-img {
  width: 45.4166666667%;
  aspect-ratio: 545/440;
  position: relative;
  transform: translateX(-14.6788990826%);
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .home .section-intro .intro-img {
    width: 100%;
    aspect-ratio: 335/270;
    transform: none;
  }
}
.home .section-intro .intro-img:before {
  content: "";
  display: block;
  width: 66.0550458716%;
  aspect-ratio: 360/240;
  background-image: url(../img/intro-img01.webp);
  background-position: 50% 50%;
  background-size: cover;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .home .section-intro .intro-img:before {
    width: 65.9701492537%;
  }
}
.home .section-intro .intro-img:after {
  content: "";
  display: block;
  width: 44.0366972477%;
  aspect-ratio: 240/160;
  background-image: url(../img/intro-img02.webp);
  background-position: 50% 50%;
  background-size: cover;
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .home .section-intro .intro-img:after {
    width: 44.1791044776%;
  }
}
.home .section-intro .intro-txt {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .home .section-intro .intro-txt {
    width: 100%;
    margin-top: 72px;
  }
}
.home .section-intro .intro-ttl {
  color: #fff;
  font-family: "NotoSansJP-Bold";
  font-size: clamp(3.8rem, 4vw, 4.2rem);
  line-height: 1.4523809524;
}
@media screen and (max-width: 768px) {
  .home .section-intro .intro-ttl {
    font-size: clamp(2.4rem, 2.6vw, 2.8rem);
    line-height: 1.4285714286;
  }
}
.home .section-intro .intro-desc {
  color: #fff;
  font-family: "NotoSansJP-Regular";
  font-size: clamp(1.6rem, 1.5vw, 1.8rem);
  line-height: 2;
  margin-top: 44px;
}
@media screen and (max-width: 768px) {
  .home .section-intro .intro-desc {
    font-size: clamp(1.4rem, 1.2vw, 1.6rem);
    margin-top: 50px;
    line-height: 1.8;
  }
}
.home .section-intro .intro-desc .dislay-xl {
  display: none;
}
@media screen and (max-width: 1200px) {
  .home .section-intro .intro-desc .dislay-xl {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .home .section-intro .intro-desc .dislay-xl {
    display: none;
  }
}
.home .section-efforts {
  padding-top: 137px;
  padding-bottom: 140px;
  background-color: #f6f7f8;
}
@media screen and (max-width: 768px) {
  .home .section-efforts {
    padding-top: 67px;
    padding-bottom: 80px;
  }
}
.home .section-efforts .efforts-list {
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  margin-top: 54px;
}
@media screen and (max-width: 768px) {
  .home .section-efforts .efforts-list {
    margin-top: 26px;
  }
}
.home .section-efforts .efforts-list ol {
  display: flex;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  max-width: 1280px;
  counter-reset: listnum;
}
@media screen and (max-width: 768px) {
  .home .section-efforts .efforts-list ol {
    display: block;
  }
}
.home .section-efforts .efforts-list ol li {
  width: 33.3333333333%;
  border-right: 1px solid #ccc;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .home .section-efforts .efforts-list ol li {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ccc;
  }
}
.home .section-efforts .efforts-list ol li:first-of-type > div:before {
  background-image: url(../img/efforts-list01.webp);
}
.home .section-efforts .efforts-list ol li:nth-of-type(2) > div {
  transition-delay: 0.15s;
}
@media screen and (max-width: 768px) {
  .home .section-efforts .efforts-list ol li:nth-of-type(2) > div {
    transition-delay: 0s;
  }
}
.home .section-efforts .efforts-list ol li:nth-of-type(2) > div:before {
  background-image: url(../img/efforts-list02.webp);
}
.home .section-efforts .efforts-list ol li:last-of-type {
  border-right: none;
}
@media screen and (max-width: 768px) {
  .home .section-efforts .efforts-list ol li:last-of-type {
    border-bottom: none;
  }
}
.home .section-efforts .efforts-list ol li:last-of-type > div {
  transition-delay: 0.3s;
}
@media screen and (max-width: 768px) {
  .home .section-efforts .efforts-list ol li:last-of-type > div {
    transition-delay: 0s;
  }
}
.home .section-efforts .efforts-list ol li:last-of-type > div:before {
  background-image: url(../img/efforts-list03.webp);
}
.home .section-efforts .efforts-list ol li > div {
  padding: 60px 40px;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 768px) {
  .home .section-efforts .efforts-list ol li > div {
    padding: 67px 20px;
  }
}
.home .section-efforts .efforts-list ol li > div:before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 347/231;
  background-size: cover;
  background-position: 50% 50%;
}
.home .section-efforts .efforts-list ol li > div:after {
  counter-increment: listnum;
  content: "#0" counter(listnum);
  font-family: "Montserrat-SemiBold";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  color: #cccccc;
  line-height: 1.1875;
  position: absolute;
  top: 10px;
  right: 10px;
}
@media screen and (max-width: 768px) {
  .home .section-efforts .efforts-list ol li > div:after {
    font-size: clamp(1.6rem, 1.5vw, 1.8rem);
    top: 28px;
    right: 20px;
  }
}
.home .section-efforts .efforts-list ol li h3 {
  font-family: "NotoSansJP-Medium";
  font-size: clamp(1.6rem, 1.5vw, 1.8rem);
  line-height: 1.4444444444;
  margin-top: 14px;
}
@media screen and (max-width: 768px) {
  .home .section-efforts .efforts-list ol li h3 {
    margin-top: 18px;
    line-height: 1.8;
  }
}
.home .section-efforts .efforts-list ol li p {
  font-family: "NotoSansJP-Regular";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .home .section-efforts .efforts-list ol li p {
    margin-top: 12px;
    line-height: 1.8;
  }
}
.home .section-about {
  padding-top: 140px;
  padding-bottom: 30px;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .home .section-about {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
.home .section-about:before {
  content: "";
  display: block;
  width: 1440px;
  aspect-ratio: 1440/1360;
  background-image: url(../img/circle.svg);
  background-position: 50% 50%;
  background-size: contain;
  opacity: 0.2;
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-3.6666666667%);
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .home .section-about:before {
    width: 890px;
    top: 0;
    left: 0;
    transform: none;
  }
}
.home .section-about .w1200 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .home .section-about .w1200 {
    flex-direction: column;
  }
}
.home .section-about .about-img {
  width: 42.5%;
  transform: translateX(-26.6666666667%);
  aspect-ratio: 510/600;
  position: relative;
}
@media screen and (max-width: 768px) {
  .home .section-about .about-img {
    margin-top: 86px;
    order: 1;
    width: 71.4666666667%;
    transform: translateX(20px);
    margin-left: auto;
  }
}
.home .section-about .about-img > span {
  width: 88.2352941176%;
  aspect-ratio: 450/600;
  background-image: url(../img/about-img.webp);
  background-size: cover;
  background-position: 50% 50%;
  position: absolute;
  top: 0;
}
.home .section-about .about-img > span:first-of-type {
  right: 0;
  opacity: 0.2;
}
.home .section-about .about-img > span:nth-of-type(2) {
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.4;
}
.home .section-about .about-img > span:last-of-type {
  left: 0;
}
.home .section-about .about-txt {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .home .section-about .about-txt {
    width: 100%;
    order: 0;
  }
}
.home .section-about .about-desc {
  font-family: "NotoSansJP-Regular";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .home .section-about .about-desc {
    font-size: clamp(1.4rem, 1.2vw, 1.6rem);
    line-height: 1.8;
    margin-top: 28px;
  }
}
.home .section-about .about-desc:first-of-type {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .home .section-about .about-desc:first-of-type {
    margin-top: 32px;
  }
}
.home .section-about .about-example {
  margin-top: 137px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .home .section-about .about-example {
    order: 3;
    margin-top: 128px;
  }
}
.home .section-about .about-example h3 {
  font-family: "NotoSansJP-Bold";
  font-size: clamp(1.8rem, 2.917vw, 2.4rem);
  line-height: 1.4583333333;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .home .section-about .about-example h3 {
    font-size: clamp(1.8rem, 1.9vw, 2rem);
    line-height: 1.45;
  }
}
.home .section-about .about-example ul {
  margin-top: 72px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .home .section-about .about-example ul {
    margin-top: 36px;
  }
}
.home .section-about .about-example ul > li {
  width: 20%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cccccc;
  font-family: "Montserrat-Medium";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  margin-right: 6.6666666667%;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .home .section-about .about-example ul > li {
    width: 47.1641791045%;
    height: 33px;
    margin-right: 5.671641791%;
    margin-top: 26px;
    font-size: clamp(0.8rem, 1vw, 1rem);
  }
}
.home .section-about .about-example ul > li:nth-of-type(4n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .home .section-about .about-example ul > li:nth-of-type(2n) {
    margin-right: 0;
  }
}
.home .section-about .about-example ul > li:nth-of-type(-n + 4) {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .home .section-about .about-example ul > li:nth-of-type(-n + 4) {
    margin-top: 26px;
  }
}
@media screen and (max-width: 768px) {
  .home .section-about .about-example ul > li:nth-of-type(-n + 2) {
    margin-top: 0;
  }
}
.home .section-service {
  padding-top: 140px;
  padding-bottom: 140px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .home .section-service {
    padding-top: 60px;
    padding-bottom: 0;
  }
}
.home .section-service .w1200 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .home .section-service .w1200 {
    flex-direction: column;
  }
}
.home .section-service .w1200:after {
  content: "";
  display: block;
  width: 43.75%;
  aspect-ratio: 525/350;
  background-image: url(../img/section-service.webp);
  background-size: cover;
  background-position: 50% 50%;
  transform: translateX(22.8571428571%);
}
@media screen and (max-width: 768px) {
  .home .section-service .w1200:after {
    margin-top: 75px;
    background-image: url(../img/section-service-sp.webp);
    width: 100vw;
    aspect-ratio: 375/186;
    transform: none;
  }
}
.home .section-service .service-txt {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .home .section-service .service-txt {
    width: 100%;
  }
}
.home .section-service h3 {
  font-size: clamp(1.8rem, 2.917vw, 2.4rem);
  font-family: "NotoSansJP-Medium";
  line-height: 1.4583333333;
  margin-top: 42px;
}
@media screen and (max-width: 768px) {
  .home .section-service h3 {
    font-size: clamp(1.6rem, 1.5vw, 1.8rem);
    line-height: 1.4444444444;
    margin-top: 36px;
  }
}
.home .section-service dl {
  margin-top: 55px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .home .section-service dl {
    margin-top: 50px;
  }
}
.home .section-service dl dt {
  background-color: #4a80ff;
  font-family: "NotoSansJP-Medium";
  font-size: clamp(1.8rem, 1.9vw, 2rem);
  color: #fff;
  padding: 0 20px;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  display: flex;
  align-items: center;
  height: 1.95em;
  position: absolute;
  left: 0;
  top: -0.975em;
}
@media screen and (max-width: 768px) {
  .home .section-service dl dt {
    font-size: clamp(1.6rem, 1.5vw, 1.8rem);
    height: 2.1666666667em;
    top: -1.0833333333em;
  }
}
.home .section-service dl dd {
  font-family: "NotoSansJP-Regular";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
  background-color: #f6f7f8;
  padding: 33px 12px 25px 20px;
}
@media screen and (max-width: 768px) {
  .home .section-service dl dd {
    font-size: clamp(1.4rem, 1.2vw, 1.6rem);
    line-height: 1.8;
    padding: 22px 16px 22px 22px;
  }
}
.home .section-association {
  background: linear-gradient(to bottom, #274487 0%, #192b55 100%);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .home .section-association {
    padding-top: 80px;
    padding-bottom: 90px;
  }
}
.home .section-association .w1200 {
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 768px) {
  .home .section-association .w1200 {
    align-items: flex-start;
    width: calc(100% - 20px);
    margin-left: 0;
  }
}
.home .section-association .w1200:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 50%;
  width: 120%;
  aspect-ratio: 1440/1359;
  background-image: url(../img/circle.svg);
  background-position: 50% 50%;
  background-size: contain;
  opacity: 0.5;
  transform: scale(-1, 1) translateX(-3.3333333333%);
}
@media screen and (max-width: 768px) {
  .home .section-association .w1200:after {
    width: 411.9402985075%;
    top: -80px;
    right: 0;
    transform: scale(-1, 1);
  }
}
.home .section-association .association-img {
  width: 43.75%;
  aspect-ratio: 525/710;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .home .section-association .association-img {
    width: 40.5633802817%;
    aspect-ratio: 144/398;
  }
}
.home .section-association .association-img div {
  animation: infinity-scroll-top 80s infinite linear both;
}
@media screen and (max-width: 768px) {
  .home .section-association .association-img div {
    animation: infinity-scroll-top 48s infinite linear both;
  }
}
.home .section-association .association-img span {
  display: block;
  width: 100%;
  aspect-ratio: 525/386;
  margin-top: 30px;
  background-size: cover;
  background-position: 50% 50%;
}
@media screen and (max-width: 768px) {
  .home .section-association .association-img span {
    margin-top: 9px;
  }
}
.home .section-association .association-img span:nth-of-type(3n + 1) {
  background-image: url(../img/association-img01.webp);
}
.home .section-association .association-img span:nth-of-type(3n + 2) {
  background-image: url(../img/association-img02.webp);
}
.home .section-association .association-img span:nth-of-type(3n) {
  background-image: url(../img/association-img03.webp);
}
.home .section-association .association-txt {
  width: 43.75%;
  padding-top: 140px;
  padding-bottom: 140px;
}
@media screen and (max-width: 768px) {
  .home .section-association .association-txt {
    padding-top: 0;
    padding-bottom: 0;
    width: 56.338028169%;
    position: relative;
    z-index: 100;
  }
}
.home .section-association .association-txt .sub_ttl-ja {
  color: #fff;
}
.home .section-association .association-desc {
  font-family: "NotoSansJP-Regular";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
  color: #fff;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .home .section-association .association-desc {
    font-size: clamp(1.4rem, 1.2vw, 1.6rem);
    line-height: 1.8;
    margin-top: 28px;
  }
}
.home .section-association .association-btn {
  border-color: #fff;
  margin-left: auto;
}
.home .section-association .association-btn:after {
  border-color: #fff;
  background-image: url(../img/icon-arrow-white.svg);
}
.home .section-association .association-btn > span {
  color: #fff;
}
.home .section-report {
  background-color: #f6f7f8;
  padding-top: 136px;
  padding-bottom: 140px;
}
@media screen and (max-width: 768px) {
  .home .section-report {
    padding-top: 60px;
    padding-bottom: 92px;
  }
}
.home .section-report .report-list {
  margin-top: 54px;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}
@media screen and (max-width: 768px) {
  .home .section-report .report-list {
    margin-top: 45px;
  }
}
.home .section-report .report-list ul {
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  display: flex;
}
@media screen and (max-width: 768px) {
  .home .section-report .report-list ul {
    display: block;
  }
}
.home .section-report .report-list ul > li {
  width: 50%;
  box-sizing: border-box;
  border-right: 1px solid #cccccc;
}
@media screen and (max-width: 768px) {
  .home .section-report .report-list ul > li {
    width: 100%;
    border-right: none;
  }
}
.home .section-report .report-list ul > li:nth-of-type(2n) {
  border-right: none;
}
@media screen and (max-width: 768px) {
  .home .section-report .report-list ul > li:first-of-type {
    border-bottom: 1px solid #cccccc;
  }
}
.home .section-report .report-list ul > li:first-of-type a:before {
  content: "NEW";
  width: 60px;
  height: 2.1428571429em;
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat-Bold";
  color: #fff;
  background-color: #4a80ff;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .home .section-report .report-list ul > li:first-of-type a:before {
    width: 54px;
    height: 2.25em;
    top: 22px;
    right: 20px;
  }
}
.home .section-report .report-list ul > li:nth-of-type(2) > a {
  transition-delay: 0.15s;
}
@media screen and (max-width: 768px) {
  .home .section-report .report-list ul > li:nth-of-type(2) > a {
    transition-delay: 0s;
  }
}
.home .section-report .report-list ul > li.report-empty {
  padding: 60px 10% 55px;
  font-family: "NotoSansJP-Medium";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.4444444444;
  border-right: none;
}
@media screen and (max-width: 768px) {
  .home .section-report .report-list ul > li.report-empty {
    line-height: 1.4285714286;
  }
}
.home .section-report .report-list ul > li a {
  padding: 90px 10% 66px;
  display: block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .home .section-report .report-list ul > li a {
    padding: 60px 20px;
  }
}
.home .section-report .report-list ul > li a:hover .report-img img {
  transform: scale(1.0833333333);
}
.home .section-report .report-list ul > li .report-img {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 480/320;
}
.home .section-report .report-list ul > li .report-img img {
  display: block;
  transition: 0.3s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .section-report .report-list ul > li .report-txt {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home .section-report .report-list ul > li .report-info {
  width: calc(100% - 50px);
}
@media screen and (max-width: 768px) {
  .home .section-report .report-list ul > li .report-info {
    width: 100%;
  }
}
.home .section-report .report-list ul > li .report-info time {
  color: #4a80ff;
  font-family: "NotoSansJP-Medium";
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  line-height: 1.4285714286;
}
@media screen and (max-width: 768px) {
  .home .section-report .report-list ul > li .report-info time {
    line-height: 1.4166666667;
  }
}
.home .section-report .report-list ul > li .report-info h3 {
  font-family: "NotoSansJP-Medium";
  font-size: clamp(1.6rem, 1.5vw, 1.8rem);
  line-height: 1.4444444444;
  margin-top: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .home .section-report .report-list ul > li .report-info h3 {
    margin-top: 6px;
    line-height: 1.4285714286;
    font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  }
}
@media screen and (max-width: 768px) {
  .home .section-report .report-list ul > li .arrow-btn {
    display: none;
  }
}
.home .section-report .report-btn .btn-link {
  margin-left: auto;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .home .section-report .report-btn .btn-link {
    margin-top: 47px;
  }
}
.home .section-blog {
  padding-top: 140px;
  padding-bottom: 140px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .home .section-blog {
    padding-top: 60px;
    padding-bottom: 92px;
  }
}
.home .section-blog .w1200 {
  display: flex;
}
@media screen and (max-width: 768px) {
  .home .section-blog .w1200 {
    display: block;
  }
}
.home .section-blog .w1200 .sub_ttl {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .home .section-blog .w1200 .sub_ttl {
    width: 100%;
  }
}
.home .section-blog .w1200 ul {
  width: 75%;
}
@media screen and (max-width: 768px) {
  .home .section-blog .w1200 ul {
    width: 100%;
    margin-top: 46px;
  }
}
.home .section-blog .w1200 ul > li {
  margin-top: 30px;
}
.home .section-blog .w1200 ul > li:first-of-type {
  margin-top: 0;
}
.home .section-blog .w1200 ul > li:nth-of-type(2) {
  transition-delay: 0.15s;
}
@media screen and (max-width: 768px) {
  .home .section-blog .w1200 ul > li:nth-of-type(2) {
    transition-delay: 0s;
  }
}
.home .section-blog .w1200 ul > li:nth-of-type(3) {
  transition-delay: 0.3s;
}
@media screen and (max-width: 768px) {
  .home .section-blog .w1200 ul > li:nth-of-type(3) {
    transition-delay: 0s;
  }
}
.home .section-blog .w1200 ul > li.blog-empty {
  font-family: "NotoSansJP-Medium";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.4444444444;
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .home .section-blog .w1200 ul > li.blog-empty {
    line-height: 1.4285714286;
    margin-top: 0;
  }
}
.home .section-blog .w1200 ul > li > a {
  width: 100%;
  padding: 30px;
  border: 1px solid #dadbdb;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .home .section-blog .w1200 ul > li > a {
    padding: 10px;
  }
}
.home .section-blog .w1200 ul > li > a:hover .blog-img img {
  transform: scale(1.0625);
}
.home .section-blog .w1200 ul .blog-txt {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .home .section-blog .w1200 ul .blog-txt {
    display: block;
  }
}
.home .section-blog .w1200 ul .report-info {
  width: 89.5061728395%;
}
@media screen and (max-width: 768px) {
  .home .section-blog .w1200 ul .report-info {
    width: 100%;
  }
}
.home .section-blog .w1200 ul .report-info time {
  font-family: "NotoSansJP-Medium";
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  line-height: 1.4285714286;
  color: #4a80ff;
}
@media screen and (max-width: 768px) {
  .home .section-blog .w1200 ul .report-info time {
    line-height: 1.4166666667;
  }
}
.home .section-blog .w1200 ul .report-info h3 {
  font-family: "NotoSansJP-Medium";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-all;
  max-height: 3.6em;
}
@media screen and (max-width: 768px) {
  .home .section-blog .w1200 ul .report-info h3 {
    font-size: clamp(1.2rem, 1.4vw, 1.4rem);
    line-height: 1.8;
    margin-top: 4px;
  }
}
@media screen and (max-width: 768px) {
  .home .section-blog .w1200 ul .arrow-btn {
    display: none;
  }
}
.home .section-blog .blog-btn .btn-link {
  margin-left: auto;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .home .section-blog .blog-btn .btn-link {
    margin-top: 47px;
  }
}
.home .section-contact {
  padding-top: 140px;
  padding-bottom: 140px;
  background-color: #f6f7f8;
}
@media screen and (max-width: 768px) {
  .home .section-contact {
    padding-top: 60px;
    padding-bottom: 92px;
  }
}
.home .section-contact .w1200 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .home .section-contact .w1200 {
    display: block;
  }
}
.home .section-contact .contact-ttl_box {
  width: 26.6666666667%;
}
@media screen and (max-width: 1000px) {
  .home .section-contact .contact-ttl_box {
    width: 100%;
  }
}
.home .section-contact .contact-ttl_box p {
  font-family: "NotoSansJP-Regular";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .home .section-contact .contact-ttl_box p {
    line-height: 1.8;
    margin-top: 32px;
  }
}
.home .section-contact dl {
  width: 70%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .home .section-contact dl {
    width: 100%;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .home .section-contact dl {
    display: block;
  }
}
.home .section-contact dl > div {
  width: 48.8095238095%;
  background-color: #fff;
  padding-top: 52px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .home .section-contact dl > div {
    width: 100%;
    padding-top: 42px;
    padding-bottom: 48px;
  }
}
.home .section-contact dl > div.contact-mail dt:before {
  width: 25px;
  aspect-ratio: 25/20;
  background-image: url(../img/icon-mail-blue.svg);
}
@media screen and (max-width: 768px) {
  .home .section-contact dl > div.contact-mail dt:before {
    width: 21px;
  }
}
.home .section-contact dl > div.contact-mail .btn-link {
  background-color: #192b55;
}
@media screen and (max-width: 768px) {
  .home .section-contact dl > div.contact-line {
    margin-top: 32px;
  }
}
.home .section-contact dl > div.contact-line dt:before {
  width: 24px;
  aspect-ratio: 24/24;
  background-image: url(../img/icon-line-blue.svg);
}
@media screen and (max-width: 768px) {
  .home .section-contact dl > div.contact-line dt:before {
    width: 20px;
  }
}
.home .section-contact dl > div.contact-line .btn-link {
  background-color: #237f3a;
}
.home .section-contact dl > div dt {
  font-family: "NotoSansJP-Medium";
  font-size: clamp(1.8rem, 1.9vw, 2rem);
  line-height: 1.45;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .home .section-contact dl > div dt {
    font-size: clamp(1.6rem, 1.5vw, 1.8rem);
    line-height: 1.5;
  }
}
.home .section-contact dl > div dt:before {
  content: "";
  display: block;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .home .section-contact dl > div dt:before {
    margin-right: 8px;
  }
}
.home .section-contact dl > div dd {
  margin-top: 26px;
}
@media screen and (max-width: 768px) {
  .home .section-contact dl > div dd {
    margin-top: 21px;
  }
}
.home .section-contact dl > div dd .btn-link {
  margin-top: 0;
  font-size: clamp(1.6rem, 1.5vw, 1.8rem);
}
@media screen and (max-width: 1200px) {
  .home .section-contact dl > div dd .btn-link {
    font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  }
}
@media screen and (max-width: 1000px) {
  .home .section-contact dl > div dd .btn-link {
    font-size: clamp(1.6rem, 1.5vw, 1.8rem);
  }
}
@media screen and (max-width: 768px) {
  .home .section-contact dl > div dd .btn-link {
    font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  }
}
.home .section-contact dl > div dd .btn-link:after {
  background-image: url(../img/icon-arrow-white.svg);
}
.home .section-contact dl > div dd .btn-link:hover:before {
  background-color: #fff;
}
.home .section-contact dl > div dd .btn-link:hover:after {
  background-image: url(../img/icon-arrow-blue.svg);
}
.home .section-contact dl > div dd .btn-link:hover > span {
  color: #192b55;
}
.home .section-contact dl > div dd .btn-link > span {
  width: 238px;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .home .section-contact dl > div dd .btn-link > span {
    width: 200px;
  }
}
@media screen and (max-width: 1000px) {
  .home .section-contact dl > div dd .btn-link > span {
    width: 238px;
  }
}
@media screen and (max-width: 768px) {
  .home .section-contact dl > div dd .btn-link > span {
    width: 194px;
  }
}

.footer {
  background-image: url(../img/footer.webp);
  background-position: 50% 50%;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer {
    background-image: url(../img/footer-sp.webp);
  }
}
.footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 16px;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .footer .footer-top {
    display: block;
    padding-bottom: 22px;
    padding-top: 270px;
  }
}
.footer .company-info .footer-logo {
  display: flex;
  align-items: center;
  transition: 0.3s;
}
.footer .company-info .footer-logo:hover {
  opacity: 0.8;
}
.footer .company-info .footer-logo .logo-img {
  display: block;
  width: 52px;
  aspect-ratio: 52/52;
  margin-right: 17px;
}
@media screen and (max-width: 768px) {
  .footer .company-info .footer-logo .logo-img {
    width: 40px;
    margin-right: 10px;
  }
}
.footer .company-info .footer-logo .logo-txt {
  display: block;
  width: 107px;
  aspect-ratio: 107/29;
  background-image: url(../img/logo-txt-white.svg);
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .footer .company-info .footer-logo .logo-txt {
    width: 81px;
  }
}
.footer .company-info .footer-association {
  font-family: "NotoSansJP-Regular";
  color: #fff;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.5;
  margin-top: 13px;
}
@media screen and (max-width: 768px) {
  .footer .company-info .footer-association {
    margin-top: 15px;
    line-height: 1.4285714286;
  }
}
.footer .company-info .footer-address {
  font-family: "NotoSansJP-Regular";
  color: #fff;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
  margin-top: 9px;
}
@media screen and (max-width: 768px) {
  .footer .company-info .footer-address {
    margin-top: 13px;
    line-height: 1.8;
  }
}
.footer .company-nav {
  padding-top: 135px;
}
@media screen and (max-width: 768px) {
  .footer .company-nav {
    margin-top: 40px;
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .footer .company-nav ul {
    display: none;
  }
}
.footer .company-nav ul > li {
  margin-top: 21px;
  text-align: right;
}
.footer .company-nav ul > li:first-of-type {
  margin-top: 0;
}
.footer .company-nav ul > li > a {
  color: #fff;
  font-family: "NotoSansJP-Medium";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.5;
}
.footer .company-nav ul > li > a:hover {
  color: #192b55;
}
.footer .company-nav img {
  display: block;
  margin-top: 108px;
  width: 110px;
}
@media screen and (max-width: 768px) {
  .footer .company-nav img {
    margin-top: 0;
  }
}
.footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 21px;
}
@media screen and (max-width: 768px) {
  .footer .footer-bottom {
    flex-direction: column-reverse;
    padding-top: 16px;
    padding-bottom: 25px;
    align-items: flex-start;
  }
}
.footer .footer-bottom small {
  color: #fff;
  font-family: "NotoSansJP-Regular";
  font-size: clamp(1rem, 1vw, 1.2rem);
  line-height: 1.4166666667;
}
@media screen and (max-width: 768px) {
  .footer .footer-bottom small {
    display: block;
    font-size: clamp(1.2rem, 1.4vw, 1.4rem);
    line-height: 1.4166666667;
    margin-top: 16px;
  }
}
.footer .footer-bottom ul {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer .footer-bottom ul {
    width: 100%;
    justify-content: space-between;
  }
}
.footer .footer-bottom ul > li {
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .footer .footer-bottom ul > li {
    margin-right: 0;
  }
}
.footer .footer-bottom ul > li:last-of-type {
  margin-right: 0;
}
.footer .footer-bottom ul > li > a {
  color: #fff;
  font-family: "NotoSansJP-Regular";
  font-size: clamp(1rem, 1vw, 1.2rem);
  line-height: 1.4166666667;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .footer .footer-bottom ul > li > a {
    font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  }
}
.footer .footer-bottom ul > li > a:hover {
  color: #192b55;
}

.kaso {
  background-color: #ffffff;
}
.kaso .mv-wrap {
  height: 31.0416666667vw;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 127px;
}
@media screen and (max-width: 768px) {
  .kaso .mv-wrap {
    height: 71.4666666667vw;
    margin-bottom: 72px;
  }
}
.kaso .mv-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60.9722222222vw;
  height: 35.4861111111vw;
  background-image: url(../img/kaso-deco01.webp);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .kaso .mv-wrap::before {
    width: 37.3333333333vw;
    height: 64vw;
    background-image: url(../img/kaso-deco01-sp.webp);
  }
}
.kaso .mv-page_wrap {
  width: 83.3333333333vw;
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding-bottom: 20px;
  border-bottom: solid 1px #dadbdb;
}
@media screen and (max-width: 768px) {
  .kaso .mv-page_wrap {
    width: calc(100% - 40px);
    height: 100%;
    padding-top: 29.8666666667vw;
  }
}
.kaso .sub_ttl-en {
  font-family: "Montserrat-SemiBold";
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  color: #4a80ff;
  display: flex;
  align-items: center;
  line-height: 1.2857142857;
}
@media screen and (max-width: 768px) {
  .kaso .sub_ttl-en {
    font-size: 1.4rem;
  }
}
.kaso .sub_ttl-en::before {
  content: "";
  display: block;
  width: 20px;
  height: 3px;
  background-color: #4a80ff;
  margin-right: 10px;
}
.kaso .sub_ttl-ja {
  display: block;
  font-family: "NotoSansJP-Bold";
  font-size: clamp(3rem, 4vw, 5.2rem);
  color: #192b55;
  line-height: 1.4;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .kaso .sub_ttl-ja {
    font-size: 2.6rem;
  }
}
.kaso .bread-area {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 6.9444444444vw;
  font-size: clamp(1rem, 1vw, 1.2rem);
}
@media screen and (max-width: 768px) {
  .kaso .bread-area {
    font-size: 1.2rem;
    margin-top: 17.6vw;
  }
}
.kaso .bread-area a:first-child {
  display: flex;
  align-items: center;
  position: relative;
}
.kaso .bread-area a:first-child::after {
  content: "";
  display: inline-block;
  background-image: url(../img/bread-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 17px;
  margin: 0 8px;
}
.kaso .bread-area a:last-child {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .kaso .bread-area.display_pc {
    display: none;
  }
}
.kaso .bread-area.display_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .kaso .bread-area.display_sp {
    display: flex;
  }
}
.kaso h3 {
  font-family: "NotoSansJP-Bold";
  font-size: clamp(2.6rem, 2.917vw, 3.2rem);
  color: #4a80ff;
  padding-bottom: 24px;
  margin-bottom: 54px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .kaso h3 {
    font-size: 20px;
    padding-bottom: 18px;
    margin-bottom: 38px;
  }
}
.kaso h3::before {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: #dadbdb;
}
@media screen and (max-width: 768px) {
  .kaso h3::before {
    width: 40px;
    height: 3px;
  }
}
.kaso h3::after {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 4px;
  background-color: #4a80ff;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .kaso h3::after {
    width: 20px;
    height: 3px;
  }
}
.kaso .br-pc {
  display: none;
}
@media screen and (min-width: 1100px) {
  .kaso .br-pc {
    display: block;
  }
}

#page-service .service-intro {
  background: linear-gradient(#fff 0%, #e6effe 100%);
  padding-bottom: 82.8px;
  position: relative;
}
#page-service .service-intro::before {
  content: "";
  position: absolute;
  top: -127px;
  left: 0;
  background-image: url(../img/kaso-deco02.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 57.2916666667vw;
  height: 76.3888888889vw;
}
@media screen and (max-width: 768px) {
  #page-service .service-intro::before {
    width: 55.4666666667vw;
    height: 192vw;
    background-image: url(../img/kaso-deco02-sp.webp);
  }
}
#page-service .service-intro .w1200 {
  position: relative;
  z-index: 2;
}
#page-service .service-intro h2 {
  font-size: clamp(2.8rem, 3.2vw, 4.2rem);
  font-family: "NotoSansJP-Bold";
  text-align: right;
  color: #192b55;
  margin-bottom: 72px;
}
@media screen and (max-width: 768px) {
  #page-service .service-intro h2 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 36px;
  }
}
#page-service .service-intro h2 span {
  color: #4a80ff;
}
#page-service .service-intro .intro-image {
  width: 91.6666666667vw;
  margin-left: auto;
  margin-right: calc(50% - 50vw);
}
#page-service .service-intro .certification-contents {
  margin-top: 266px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #page-service .service-intro .certification-contents {
    margin-top: 154px;
    flex-direction: column-reverse;
  }
}
#page-service .service-intro .certification-contents .certification-image {
  width: 39.5833333333vw;
  height: 26.3888888889vw;
  max-height: 380px;
  margin-left: calc(50% - 50vw);
  margin-right: auto;
  background-image: url(../img/service/certification-image.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
}
@media screen and (max-width: 768px) {
  #page-service .service-intro .certification-contents .certification-image {
    width: 89.3333333333vw;
    height: 59.4666666667vw;
  }
}
#page-service .service-intro .certification-contents .inner-certification {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #page-service .service-intro .certification-contents .inner-certification {
    width: 100%;
  }
}
#page-service .service-intro .certification-contents .inner-certification .description {
  font-family: "NotoSansJP-Regular";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 768px) {
  #page-service .service-intro .certification-contents .inner-certification .description {
    font-size: 1.4rem;
    margin-bottom: 1.8rem;
  }
}
#page-service .service-intro .certification-contents .inner-certification .description.last {
  margin-bottom: 36px;
}
#page-service .service-intro .certification-contents .certification-btn {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  padding: 8px 14px;
  border: solid 1px #192b55;
  position: relative;
}
@media screen and (max-width: 768px) {
  #page-service .service-intro .certification-contents .certification-btn {
    margin-bottom: 60px;
  }
}
#page-service .service-intro .certification-contents .certification-btn::after {
  content: "";
  display: block;
  width: 10px;
  height: 100%;
  aspect-ratio: 1/1;
  margin-left: 10px;
  background-image: url(../img/icon-arrow-blue.svg);
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  transition: 0.3s;
  position: relative;
}
#page-service .service-intro .certification-contents .certification-btn::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  background-color: #192b55;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.3s;
}
#page-service .service-intro .certification-contents .certification-btn:hover span {
  color: #ffffff;
  z-index: 2;
}
#page-service .service-intro .certification-contents .certification-btn:hover::after {
  background-image: url(../img/icon-arrow-white.svg);
}
#page-service .service-intro .certification-contents .certification-btn:hover::before {
  height: 100%;
}
#page-service .service-intro .member-contents {
  margin-top: 280px;
  display: flex;
}
@media screen and (max-width: 768px) {
  #page-service .service-intro .member-contents {
    margin-top: 152px;
    flex-direction: column;
  }
}
#page-service .service-intro .member-contents .inner-member {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #page-service .service-intro .member-contents .inner-member {
    width: 100%;
  }
}
#page-service .service-intro .member-contents .inner-member .description {
  font-family: "NotoSansJP-Regular";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 768px) {
  #page-service .service-intro .member-contents .inner-member .description {
    font-size: 1.4rem;
    margin-bottom: 1.4rem;
  }
}
#page-service .service-intro .member-contents .inner-member .description.last {
  margin-bottom: 0;
}
#page-service .service-intro .member-contents .member-image {
  background-image: url(../img/service/menber-image-pc.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  width: 38.1944444444vw;
  height: 36.3888888889vw;
  max-height: 524px;
  margin-left: auto;
  margin-right: calc(50% - 50vw + 20px);
}
@media screen and (max-width: 768px) {
  #page-service .service-intro .member-contents .member-image {
    background-image: url(../img/service/menber-image-sp.webp);
    width: 100vw;
    margin-left: calc((100% - 100vw) / 2);
    height: 96.2666666667vw;
    margin-top: 58px;
  }
}
#page-service .section-member-benefits {
  background-color: #e6effe;
  padding: 0 20px;
}
#page-service .section-member-benefits .member-benefits-wrap {
  background-color: #d7e6ff;
  padding-top: 30px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #page-service .section-member-benefits .member-benefits-wrap {
    padding: 36px 0;
  }
}
#page-service .section-member-benefits .member-benefits-wrap h2 {
  text-align: center;
  font-family: "NotoSansJP-Bold";
  font-size: clamp(2.4rem, 2.5vw, 2.8rem);
  padding-bottom: 34px;
  border-bottom: solid 1px #ffffff;
}
@media screen and (max-width: 768px) {
  #page-service .section-member-benefits .member-benefits-wrap h2 {
    width: calc(100% - 40px);
    margin: auto;
    font-size: 2rem;
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
}
#page-service .section-member-benefits .member-benefits-wrap .benefits-list {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  #page-service .section-member-benefits .member-benefits-wrap .benefits-list {
    flex-direction: column;
    margin-top: 0;
  }
}
#page-service .section-member-benefits .member-benefits-wrap .benefits-list li {
  width: 28.8%;
  max-width: 346px;
  background-color: #ffffff;
  padding: 40px 20px 16px 20px;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
  position: relative;
}
@media screen and (max-width: 768px) {
  #page-service .section-member-benefits .member-benefits-wrap .benefits-list li {
    width: 100%;
    max-width: 100%;
    padding: 30px 20px;
    font-size: 1.4rem;
    margin-bottom: 60px;
  }
  #page-service .section-member-benefits .member-benefits-wrap .benefits-list li:last-of-type {
    margin-bottom: 0;
  }
}
#page-service .section-member-benefits .member-benefits-wrap .benefits-list li .note {
  text-align: center;
  position: relative;
}
#page-service .section-member-benefits .member-benefits-wrap .benefits-list li .note span {
  color: #4a80ff;
}
#page-service .section-member-benefits .member-benefits-wrap .benefits-list li .note::before {
  content: "";
  display: block;
  margin: 0 auto 32px;
  background-image: url(../img/service/circle.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 6.25vw;
  aspect-ratio: 1;
}
@media screen and (max-width: 768px) {
  #page-service .section-member-benefits .member-benefits-wrap .benefits-list li .note::before {
    width: 21.3333333333vw;
    margin-bottom: 22px;
  }
}
#page-service .section-member-benefits .member-benefits-wrap .benefits-list li .note::after {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  width: 9.0277777778vw;
  aspect-ratio: 1;
  top: -20px;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #page-service .section-member-benefits .member-benefits-wrap .benefits-list li .note::after {
    width: 32vw;
  }
}
#page-service .section-member-benefits .member-benefits-wrap .benefits-list li .number {
  display: inline-block;
  font-size: clamp(2.8rem, 3.2vw, 4.2rem);
  font-family: "Montserrat-Light";
  color: #4a80ff;
  transform: translateY(-50%);
  position: absolute;
  top: 0;
  left: 20px;
}
@media screen and (max-width: 768px) {
  #page-service .section-member-benefits .member-benefits-wrap .benefits-list li .number {
    font-size: 4.2rem;
  }
}
#page-service .section-member-benefits .member-benefits-wrap .benefits-list li:first-of-type .note::after {
  background-image: url(../img/service/benefits-item01.webp);
}
#page-service .section-member-benefits .member-benefits-wrap .benefits-list li:nth-child(2) .note::after {
  background-image: url(../img/service/benefits-item02.webp);
}
#page-service .section-member-benefits .member-benefits-wrap .benefits-list li:nth-child(3) {
  margin-right: 0;
}
#page-service .section-member-benefits .member-benefits-wrap .benefits-list li:nth-child(3) .note::after {
  background-image: url(../img/service/benefits-item03.webp);
}
#page-service .section-member-benefits .member-benefits-wrap .benefits-list li:nth-child(4) {
  margin-top: 90px;
  margin-left: auto;
  margin-right: 0;
}
#page-service .section-member-benefits .member-benefits-wrap .benefits-list li:nth-child(4) .note::after {
  background-image: url(../img/service/benefits-item04.webp);
}
@media screen and (max-width: 768px) {
  #page-service .section-member-benefits .member-benefits-wrap .benefits-list li:nth-child(4) {
    margin-top: 0;
    margin-left: 0;
  }
}
#page-service .section-member-benefits .member-benefits-wrap .benefits-list li:nth-child(5) {
  margin-top: 90px;
  margin-left: 6.8%;
  margin-right: auto;
}
#page-service .section-member-benefits .member-benefits-wrap .benefits-list li:nth-child(5) .note::after {
  background-image: url(../img/service/benefits-item05.webp);
}
@media screen and (max-width: 768px) {
  #page-service .section-member-benefits .member-benefits-wrap .benefits-list li:nth-child(5) {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
#page-service .section-contact {
  background-color: #e6effe;
  padding: 140px 0;
}
@media screen and (max-width: 768px) {
  #page-service .section-contact {
    padding: 80px 0;
  }
}
#page-service .section-contact .contact-wrap {
  display: block;
  background-color: #4a80ff;
  padding: 30px 60px;
  color: #ffffff;
  position: relative;
}
@media screen and (max-width: 768px) {
  #page-service .section-contact .contact-wrap {
    padding: 20px;
  }
}
#page-service .section-contact .contact-wrap::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  background-color: #192b55;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.3s;
}
#page-service .section-contact .contact-wrap .contact-tit {
  font-size: clamp(2.6rem, 2.917vw, 3.2rem);
  font-family: "NotoSansJP-Bold";
  padding-bottom: 20px;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #page-service .section-contact .contact-wrap .contact-tit {
    font-size: 2.4rem;
    padding-bottom: 18px;
    margin-bottom: 16px;
  }
}
#page-service .section-contact .contact-wrap .contact-tit::before {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: #dadbdb;
}
@media screen and (max-width: 768px) {
  #page-service .section-contact .contact-wrap .contact-tit::before {
    width: 40px;
    height: 3px;
  }
}
#page-service .section-contact .contact-wrap .contact-tit::after {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 4px;
  background-color: #ffffff;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #page-service .section-contact .contact-wrap .contact-tit::after {
    width: 20px;
    height: 3px;
  }
}
#page-service .section-contact .contact-wrap .note {
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-family: "NotoSansJP-Regular";
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #page-service .section-contact .contact-wrap .note {
    font-size: 1.2rem;
    line-height: 1.6;
  }
}
#page-service .section-contact .contact-wrap .form {
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-family: "NotoSansJP-Regular";
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #page-service .section-contact .contact-wrap .form {
    font-size: 1.4rem;
  }
}
#page-service .section-contact .contact-wrap .arrow-btn {
  width: 40px;
  aspect-ratio: 40/40;
  display: block;
  position: relative;
  z-index: 2;
  overflow: hidden;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  #page-service .section-contact .contact-wrap .arrow-btn {
    width: 28px;
    aspect-ratio: 28/28;
  }
}
#page-service .section-contact .contact-wrap .arrow-btn span {
  display: block;
  width: 14px;
  aspect-ratio: 14/14;
  background-image: url(../img/icon-arrow-sky-blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  top: 13px;
  left: 13px;
  transition: 0.1s;
}
@media screen and (max-width: 768px) {
  #page-service .section-contact .contact-wrap .arrow-btn span {
    width: 11px;
    aspect-ratio: 11/11;
    top: 8px;
    left: 8px;
  }
}
#page-service .section-contact .contact-wrap .arrow-btn span:last-child {
  background-image: url(../img/icon-arrow-blue.svg);
  left: -14px;
}
#page-service .section-contact .contact-wrap:hover::before {
  height: 100%;
}
#page-service .section-contact .contact-wrap:hover .arrow-btn span {
  left: 40px;
}
#page-service .section-contact .contact-wrap:hover .arrow-btn span:last-child {
  left: 13px;
}

#page-info .section-message {
  padding: 6px 0 136px 0;
  background: linear-gradient(#fff 0%, #e6effe 100%);
  position: relative;
}
@media screen and (max-width: 768px) {
  #page-info .section-message {
    padding-bottom: 80px;
  }
}
#page-info .section-message::before {
  content: "";
  position: absolute;
  top: -127px;
  left: 0;
  background-image: url(../img/kaso-deco02.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 57.2916666667vw;
  height: 76.3888888889vw;
}
@media screen and (max-width: 768px) {
  #page-info .section-message::before {
    width: 55.4666666667vw;
    height: 192vw;
    background-image: url(../img/kaso-deco02-sp.webp);
  }
}
#page-info .section-message h3 {
  width: 50%;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  #page-info .section-message h3 {
    width: 100%;
    margin: auto;
  }
}
#page-info .section-message .message-wrap {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #page-info .section-message .message-wrap {
    flex-direction: column;
    margin-top: 40px;
  }
}
#page-info .section-message .message-wrap .message-image {
  width: 33.3%;
  max-width: 404px;
}
@media screen and (max-width: 768px) {
  #page-info .section-message .message-wrap .message-image {
    width: 62.6666666667vw;
    max-width: 100%;
    margin: auto;
  }
}
#page-info .section-message .message-wrap .message-image .note {
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-family: "NotoSansJP-Medium";
  line-height: 2;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  #page-info .section-message .message-wrap .message-image .note {
    font-size: 1.2rem;
    width: -moz-fit-content;
    width: fit-content;
    margin: 20px auto 36px;
  }
}
#page-info .section-message .message-wrap .message-image .note span {
  display: block;
  font-size: clamp(1.8rem, 1.6vw, 2rem);
}
#page-info .section-message .message-wrap .message-image .note span sub {
  display: inline-block;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  transform: translateY(-3px);
}
@media screen and (max-width: 768px) {
  #page-info .section-message .message-wrap .message-image .note span {
    font-size: 1.6rem;
  }
  #page-info .section-message .message-wrap .message-image .note span sub {
    font-size: 1.4rem;
  }
}
#page-info .section-message .message-wrap .message-contents {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #page-info .section-message .message-wrap .message-contents {
    width: 100%;
  }
}
#page-info .section-message .message-wrap .message-contents .description {
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
  margin-bottom: 1.8rem;
}
@media screen and (max-width: 768px) {
  #page-info .section-message .message-wrap .message-contents .description {
    font-size: 1.4rem;
    margin-bottom: 1.6rem;
  }
}
#page-info .section-message .message-wrap .message-contents .description.last {
  margin-bottom: 0;
}
#page-info .section-overview {
  padding: 0 20px;
  margin-top: 136px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #page-info .section-overview {
    margin-top: 78px;
  }
}
#page-info .section-overview .overview_wrap {
  background-color: rgba(215, 230, 255, 0.5);
  padding: 130px 0 140px 0;
}
@media screen and (max-width: 768px) {
  #page-info .section-overview .overview_wrap {
    padding: 74px 0 80px 0;
  }
}
#page-info .section-overview .overview_wrap h3 {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  #page-info .section-overview .overview_wrap h3 {
    margin-bottom: 36px;
  }
}
#page-info .section-overview .overview_wrap dl {
  display: flex;
  border-bottom: solid 1px #dadbdb;
  padding-bottom: 26px;
  margin-bottom: 26px;
  margin-right: auto;
}
#page-info .section-overview .overview_wrap dl.last {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #page-info .section-overview .overview_wrap dl {
    padding-bottom: 18px;
    margin-bottom: 30px;
  }
}
#page-info .section-overview .overview_wrap dl dt {
  width: 25.5%;
  font-weight: normal;
  font-family: "NotoSansJP-Regular";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #page-info .section-overview .overview_wrap dl dt {
    font-size: 1.4rem;
  }
}
#page-info .section-overview .overview_wrap dl dd {
  width: 74.5%;
  font-weight: normal;
  font-family: "NotoSansJP-Regular";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #page-info .section-overview .overview_wrap dl dd {
    font-size: 1.4rem;
  }
}
#page-info .section-overview .overview_wrap dl dd span {
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  #page-info .section-overview .overview_wrap dl dd span {
    align-items: flex-start;
    margin-bottom: 26px;
  }
}
#page-info .section-overview .overview_wrap dl dd span::before {
  content: "";
  display: inline-block;
  background-color: #4a80ff;
  width: 8px;
  min-width: 8px;
  aspect-ratio: 8/8;
  border-radius: 50%;
  margin-right: 10px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #page-info .section-overview .overview_wrap dl dd span::before {
    width: 6px;
    aspect-ratio: 6/6;
    min-width: 6px;
    transform: translateY(10px);
  }
}

#page-report .section-report {
  padding: 0 0 140px 0;
}
@media screen and (max-width: 768px) {
  #page-report .section-report {
    padding-bottom: 80px;
  }
}
#page-report .section-report .report-list {
  margin-bottom: 216px;
}
@media screen and (max-width: 768px) {
  #page-report .section-report .report-list {
    margin-bottom: 60px;
  }
}
#page-report .section-report .report-item {
  padding-bottom: 30px;
  margin-bottom: 40px;
  border-bottom: solid 1px #dadbdb;
}
@media screen and (max-width: 768px) {
  #page-report .section-report .report-item {
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
}
#page-report .section-report .report-item:last-of-type {
  margin-bottom: 0;
}
#page-report .section-report time {
  display: block;
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  color: #4a80ff;
}
@media screen and (max-width: 768px) {
  #page-report .section-report time {
    font-size: 1.4rem;
  }
}
#page-report .section-report h2 {
  margin-top: 12px;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
}
@media screen and (max-width: 768px) {
  #page-report .section-report h2 {
    font-size: 1.6rem;
  }
}
#page-report .sp-br {
  display: none;
}
@media screen and (max-width: 768px) {
  #page-report .sp-br {
    display: block;
  }
}

#page-report-post {
  min-height: 100vh;
}
#page-report-post .section-report {
  padding: 0 0 140px 0;
}
@media screen and (max-width: 768px) {
  #page-report-post .section-report {
    padding-bottom: 80px;
  }
}
#page-report-post .report_wrap {
  max-width: 900px;
  margin: 0 auto 80px;
  padding-bottom: 76px;
  border-bottom: solid 1px #dadbdb;
}
@media screen and (max-width: 768px) {
  #page-report-post .report_wrap {
    margin-bottom: 54px;
  }
}
#page-report-post .report_wrap .day {
  display: block;
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  color: #4a80ff;
}
@media screen and (max-width: 768px) {
  #page-report-post .report_wrap .day {
    font-size: 1.2rem;
  }
}
#page-report-post .report_wrap .tittle {
  font-size: clamp(2.6rem, 2.917vw, 3.2rem);
  margin-top: 16px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #page-report-post .report_wrap .tittle {
    font-size: 1.8rem;
    margin-bottom: 38px;
  }
}
#page-report-post .report_wrap .post_text {
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #page-report-post .report_wrap .post_text {
    font-size: 1.4rem;
  }
}
#page-report-post .report-back-btn {
  max-width: 900px;
  margin: auto;
}
#page-report-post .report-back-btn a {
  display: flex;
  align-items: center;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-family: "NotoSansJP-Medium";
  position: relative;
}
@media screen and (max-width: 768px) {
  #page-report-post .report-back-btn a {
    font-size: 1.6rem;
  }
}
#page-report-post .report-back-btn a::before {
  content: "";
  display: inline-block;
  background-image: url(../img/icon-arrow-blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  width: 12px;
  aspect-ratio: 12/12;
  margin-right: 10px;
  transition: 0.3s;
}
#page-report-post .report-back-btn a:hover::before {
  transform: rotate(180deg) translateX(4px);
}
#page-report-post .post_text p {
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 768px) {
  #page-report-post .post_text p {
    font-size: 1.4rem;
  }
}
#page-report-post h3 {
  font-size: 2.2rem;
  background-color: #e6effe;
  font-family: "NotoSansJP-Medium";
  padding: 6px 20px;
  color: #192b55;
  margin-top: 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #page-report-post h3 {
    font-size: 1.6rem;
    padding: 6px 12px;
    margin-bottom: 28px;
  }
}
#page-report-post h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #4a80ff;
}
#page-report-post h3::after {
  display: none;
}

#plog-archive .section-blog {
  padding: 0 0 140px 0;
}
@media screen and (max-width: 768px) {
  #plog-archive .section-blog {
    padding-bottom: 80px;
  }
}
#plog-archive .section-blog .blog-list {
  margin-bottom: 216px;
}
@media screen and (max-width: 768px) {
  #plog-archive .section-blog .blog-list {
    margin-bottom: 60px;
  }
}
#plog-archive .section-blog .m-article_list--item {
  padding-bottom: 30px;
  margin-bottom: 40px;
  border-bottom: solid 1px #dadbdb;
}
@media screen and (max-width: 768px) {
  #plog-archive .section-blog .m-article_list--item {
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
}
#plog-archive .section-blog .m-article_list--item:last-of-type {
  margin-bottom: 0;
}
#plog-archive .section-blog time {
  display: block;
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  color: #4a80ff;
}
@media screen and (max-width: 768px) {
  #plog-archive .section-blog time {
    font-size: 1.4rem;
  }
}
#plog-archive .section-blog h2 {
  margin-top: 12px;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #plog-archive .section-blog h2 {
    font-size: 1.6rem;
  }
}
#plog-archive .sp-br {
  display: none;
}
@media screen and (max-width: 768px) {
  #plog-archive .sp-br {
    display: block;
  }
}

#page-blog_post {
  min-height: 100vh;
}
#page-blog_post .section-report {
  padding: 0 0 140px 0;
}
@media screen and (max-width: 768px) {
  #page-blog_post .section-report {
    padding-bottom: 80px;
  }
}
#page-blog_post .blog_wrap {
  max-width: 900px;
  margin: 0 auto 34px;
}
@media screen and (max-width: 768px) {
  #page-blog_post .blog_wrap {
    margin-bottom: 54px;
  }
}
#page-blog_post .blog_wrap .day {
  display: block;
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  color: #4a80ff;
}
@media screen and (max-width: 768px) {
  #page-blog_post .blog_wrap .day {
    font-size: 1.2rem;
  }
}
#page-blog_post .blog_wrap .tittle {
  font-size: clamp(2.6rem, 2.917vw, 3.2rem);
  margin-top: 16px;
  margin-bottom: 60px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #page-blog_post .blog_wrap .tittle {
    font-size: 1.8rem;
    margin-bottom: 38px;
  }
}
#page-blog_post .blog_wrap .post_text {
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #page-blog_post .blog_wrap .post_text {
    font-size: 1.4rem;
  }
}
#page-blog_post .report-back-btn {
  max-width: 900px;
  margin: auto;
}
#page-blog_post .report-back-btn a {
  display: flex;
  align-items: center;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-family: "NotoSansJP-Medium";
  position: relative;
}
@media screen and (max-width: 768px) {
  #page-blog_post .report-back-btn a {
    font-size: 1.6rem;
  }
}
#page-blog_post .report-back-btn a::before {
  content: "";
  display: inline-block;
  background-image: url(../img/icon-arrow-blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  width: 12px;
  aspect-ratio: 12/12;
  margin-right: 10px;
  transition: 0.3s;
}
#page-blog_post .report-back-btn a:hover::before {
  transform: rotate(180deg) translateX(4px);
}
#page-blog_post .post_text p {
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 768px) {
  #page-blog_post .post_text p {
    font-size: 1.4rem;
  }
}
#page-blog_post h3 {
  font-size: 2.2rem;
  background-color: #e6effe;
  font-family: "NotoSansJP-Medium";
  padding: 6px 20px;
  color: #192b55;
  margin-top: 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #page-blog_post h3 {
    font-size: 1.6rem;
    padding: 6px 12px;
    margin-bottom: 28px;
  }
}
#page-blog_post h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #4a80ff;
}
#page-blog_post h3::after {
  display: none;
}
#page-blog_post .wp-block-list {
  list-style: initial;
  padding-left: 1em;
}
#page-blog_post .wp-block-list li {
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 768px) {
  #page-blog_post .wp-block-list li {
    font-size: 1.4rem;
  }
}
#page-blog_post .wp-block-list li:last-of-type {
  margin-bottom: 30px;
}
#page-blog_post .wp-block-list li::marker {
  color: #4a80ff;
}
#page-blog_post .number-list {
  list-style-type: decimal;
  list-style-position: outside;
}
#page-blog_post .number-list li::marker {
  color: #4a80ff;
}
#page-blog_post .check-list {
  list-style: none;
  position: relative;
}
#page-blog_post .check-list li {
  color: #4a80ff;
  padding-left: 1em;
  text-indent: -1em;
}
#page-blog_post .check-list li::before {
  content: "";
  display: inline-block;
  background-image: url(../img/check.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  aspect-ratio: 20/20;
  position: relative;
  top: 3px;
  left: -10px;
}
#page-blog_post .conclusion-text {
  width: 100%;
  padding: 27px 20px 25px;
  margin-top: 78px;
  background-color: #f6f7f8;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #page-blog_post .conclusion-text {
    font-size: 1.4rem;
    padding: 24px 10px 26px;
  }
}
#page-blog_post .mistake p:first-child {
  white-space: nowrap;
  border: solid #192b55 1px;
  border-radius: 16px;
  padding: 4px 20px;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  #page-blog_post .mistake p:first-child {
    margin-right: 12px;
  }
}
#page-blog_post .fact {
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  #page-blog_post .fact {
    margin-bottom: 22px;
  }
}
#page-blog_post .fact p:first-child {
  white-space: nowrap;
  background-color: #192b55;
  color: #ffffff;
  border-radius: 16px;
  padding: 4px 20px;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  #page-blog_post .fact p:first-child {
    margin-right: 12px;
  }
}

#privacy .mv-wrap {
  height: 25.0694444444vw;
  margin-bottom: 127px;
}
@media screen and (max-width: 768px) {
  #privacy .mv-wrap {
    height: 71.4666666667vw;
    margin-bottom: 72px;
  }
}
#privacy .mv-wrap::before {
  display: none;
}
#privacy .bread-area.display_pc {
  margin-left: auto;
  margin-right: auto;
  margin-top: 86px;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
  width: 93%;
}
@media screen and (max-width: 768px) {
  #privacy .bread-area.display_pc {
    margin-top: 17.6vw;
  }
}
#privacy h1 {
  padding-top: 8.6805555556vw;
  text-align: center;
  margin-bottom: 44px;
}
@media screen and (max-width: 768px) {
  #privacy h1 {
    padding-top: 0;
    margin-bottom: 0;
  }
}
#privacy .supporting-text {
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #privacy .supporting-text {
    font-size: 1.4rem;
    text-align: left;
    margin-bottom: 60px;
  }
}
#privacy .supporting-text.pc-text {
  display: none;
}
@media screen and (min-width: 1200px) {
  #privacy .supporting-text.pc-text {
    display: block;
  }
}
#privacy .supporting-text.mb-text {
  display: none;
}
@media screen and (max-width: 1200px) {
  #privacy .supporting-text.mb-text {
    display: block;
    text-align: left;
    margin-bottom: 30px;
  }
}
#privacy .mv-page_wrap {
  height: 100%;
  bottom: 0;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  #privacy .mv-page_wrap {
    width: calc(100% - 40px);
    height: 100%;
    padding-top: 35.2vw;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  #privacy .mv-page_wrap.terms {
    padding-top: 24.5333333333vw;
  }
}

#page-policy .w910 {
  max-width: 910px;
  margin: auto;
  padding-bottom: 138px;
}
@media screen and (max-width: 768px) {
  #page-policy .w910 {
    padding-bottom: 78px;
  }
}
#page-policy h2 {
  font-size: clamp(1.6rem, 1.5vw, 1.8rem);
  color: #4a80ff;
  font-family: "NotoSansJP-Medium";
  margin-top: 70px;
  margin-bottom: 14px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #page-policy h2 {
    margin-top: 40px;
    margin-bottom: 12px;
    font-size: 1.8rem;
  }
}
#page-policy .description {
  font-family: "NotoSansJP-Regular";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #page-policy .description {
    font-size: 1.4rem;
  }
}
#page-policy .number {
  display: flex;
}
#page-policy .number span {
  display: inline-block;
  margin-right: 10px;
  white-space: nowrap;
}
#page-policy .mtm {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  #page-policy .mtm {
    margin-top: 30px;
  }
}
#page-policy .note {
  font-family: "NotoSansJP-Regular";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  #page-policy .note {
    margin-top: 18px;
    text-align: right;
  }
}
#page-policy .text-right {
  text-align: right;
}
#page-policy .text-left {
  text-align: left;
}
#page-policy .terms-wrap h3 {
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  color: #192b55;
  margin-bottom: 16px;
  padding-bottom: 0;
}
#page-policy .terms-wrap h3::before {
  display: none;
}
#page-policy .terms-wrap h3::after {
  display: none;
}
#page-policy .terms-wrap .text-center {
  text-align: center;
  margin-top: 8px;
  margin-bottom: 8px;
}
#page-policy .terms-wrap .mtl {
  margin-top: 60px;
}

#page-legal .w900 {
  max-width: 900px;
  margin: auto;
  padding-bottom: 140px;
}
@media screen and (max-width: 768px) {
  #page-legal .w900 {
    padding: 0 0 80px 0;
  }
}
#page-legal dl {
  display: flex;
  align-items: center;
  width: 100%;
  border-top: solid 1px #dadbdb;
  border-left: solid 1px #dadbdb;
  border-right: solid 1px #dadbdb;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-family: "NotoSansJP-Medium";
}
@media screen and (max-width: 768px) {
  #page-legal dl {
    flex-direction: column;
  }
}
#page-legal dl:last-of-type {
  border-bottom: solid 1px #dadbdb;
}
#page-legal dl dt {
  width: 30%;
  padding: 24px 0 24px 40px;
  font-weight: normal;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #page-legal dl dt {
    width: 100%;
    padding: 20px 20px 10px 20px;
    font-size: 1.4rem;
  }
}
#page-legal dl dd {
  width: 70%;
  padding: 24px 0 24px 40px;
  line-height: 1.8;
  border-left: solid 1px #dadbdb;
}
@media screen and (max-width: 768px) {
  #page-legal dl dd {
    width: 100%;
    border-left: none;
    padding: 0 20px 20px 20px;
    font-size: 1.2rem;
  }
}

#page-error .section-error {
  padding: 0 0 140px 0;
}
#page-error .description {
  text-align: center;
  line-height: 1.8;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
}
#page-error .back-btn {
  border: 1px solid #dadbdb;
  width: -moz-fit-content;
  width: fit-content;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  font-family: "NotoSansJP-Medium";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  height: 3.125em;
  position: relative;
  margin: 60px auto 0;
}
#page-error .back-btn::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  background-color: #192b55;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.3s;
}
#page-error .back-btn::after {
  content: "";
  display: block;
  height: 100%;
  aspect-ratio: 1/1;
  border-left: 1px solid #ccc;
  background-image: url(../img/icon-arrow-blue.svg);
  background-size: 14px auto;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  transition: 0.3s;
  position: relative;
}
#page-error .back-btn:hover::before {
  height: 100%;
}
#page-error .back-btn:hover::after {
  background-image: url(../img/icon-arrow-white.svg);
}
#page-error .back-btn:hover span {
  color: #ffffff;
}
#page-error .back-btn span {
  padding-left: 20px;
  width: 156px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  transition: 0.3s;
  position: relative;
}/*# sourceMappingURL=page.css.map */