@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Sora:wght@100..800&display=swap");
:root {
  --black:#000;
  --navy:#1F2676;
  --blue-bg:#E5E7FE;
  --gray-bg:#F2F2F2;
  --red:#E60012;
  --noto:"Noto Sans JP", sans-serif;
  --sora:"Sora", sans-serif;
}

.en {
  font-family: var(--sora);
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
  line-height: 1.8;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--noto);
  color: var(--black);
  font-weight: 400;
  opacity: 0;
  animation-name: fadeAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  box-sizing: border-box;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition-duration: 1s;
}
body.menu-open {
  overflow: hidden;
}
body.menu-open::before {
  opacity: 1;
  visibility: visible;
  z-index: 99;
  transition-duration: 1s;
}

main {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
}

p {
  font-size: 1.6rem;
}

.under-834only {
  display: none;
}

.under-834none {
  display: inline-block;
}

.bold {
  font-weight: bold;
}

.logo {
  width: 248px;
}

.inner {
  width: 1200px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.inner-s {
  width: 900px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 156px 0 30px;
  transition-duration: 0.3s;
}
header.fixed {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background-color: #fff;
  transition-duration: 0.3s;
}

.header__right-nav-list {
  display: flex;
  padding-right: 40px;
  gap: 40px;
}
.header__right-nav-list li a {
  font-weight: bold;
  font-size: 1.6rem;
  position: relative;
  color: var(--black);
}
.header__right-nav-list li a::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--red);
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  opacity: 0;
  transition-duration: 0.3s;
}
.header__right-nav-list li a.active::after, .header__right-nav-list li a:hover::after {
  transition-duration: 0.3s;
  opacity: 1;
}

.header__contact-link {
  width: 156px;
  height: 80px;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  font-weight: bold;
  line-height: 1.2;
  background-color: var(--navy);
  position: fixed;
  top: 0;
  right: 0;
}
.header__contact-link .en {
  font-size: 2.1rem;
  font-family: var(--sora);
}
.header__contact-link .ja {
  font-size: 1.1rem;
  font-weight: 400;
}

/* --------------------フェードアップ------------------------ */
.js-fadeup.in {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

.js-load-fadeup.in {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.js-fadeup {
  opacity: 0;
  transform: translateY(20px);
}

/* --------------------フェードイン------------------------ */
.js-fadein.in {
  animation-name: fadeAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

.js-load-fadein.in {
  animation-name: fadeAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

@keyframes fadeAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.js-fadein {
  opacity: 0;
}

/* ロードで */
.js-load-fadein {
  opacity: 0;
}

.js-load-fadeup {
  opacity: 0;
}

.delay600 {
  animation-delay: 0.6s;
}

.delay1200 {
  animation-delay: 1.2s;
}

.delay1800 {
  animation-delay: 1.8s;
}

.mb0 {
  margin-bottom: 0 !important;
}

.under1350-none {
  display: inline-block;
}

#ham {
  display: none;
  width: 60px;
  height: 60px;
  position: fixed;
  z-index: 200;
  cursor: pointer;
  top: 10px;
  right: 15px;
}

.ham {
  width: 100%;
  height: 100%;
  position: relative;
}
.ham span {
  width: 50%;
  height: 2px;
  background-color: var(--navy);
  display: block;
  position: absolute;
  left: 25%;
  transition-duration: 1s;
}
.ham span:first-of-type {
  top: 25px;
}
.ham span:nth-of-type(2) {
  top: 32px;
}
.ham span:last-of-type {
  top: 39px;
}
.ham.active .header__menu-txt {
  color: #fff;
  transition-duration: 1s;
}
.ham.active span:first-of-type {
  transform: rotate(30deg);
  top: 50%;
  transition-duration: 1s;
  background-color: #fff;
}
.ham.active span:nth-of-type(2) {
  opacity: 0;
  transition-duration: 1s;
}
.ham.active span:last-of-type {
  transform: rotate(-30deg);
  top: 50%;
  transition-duration: 1s;
  background-color: #fff;
}

.header__menu-txt {
  font-size: 1.1rem;
  color: var(--navy);
  text-align: center;
  margin-top: 5px;
}

.sp-menu {
  position: fixed;
  top: 0;
  right: -120%;
  width: 375px;
  max-width: 100%;
  height: auto;
  max-height: 100vh;
  z-index: 100;
  overflow-y: scroll;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
  transition-duration: 1s;
}
.sp-menu.active {
  right: 0;
  transition-duration: 1s;
}

.sp-menu__wrapper {
  width: 100%;
  height: auto;
  min-height: 100vh;
  background-color: var(--navy);
  padding: 100px 40px 100px;
  position: relative;
}

/*Google Chrome、Safariへの対応*/
.sp-menu::-webkit-scrollbar {
  display: none;
}

.sp-menu__nav-list li {
  margin-bottom: 20px;
}
.sp-menu__nav-list li:last-of-type {
  margin-bottom: 40px;
}
.sp-menu__nav-list li a {
  color: #fff;
  font-size: 1.8rem;
  display: block;
  text-align: center;
  font-weight: bold;
}

.sp-menu__link {
  width: 240px;
  height: 100px;
  border-radius: 12px;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  margin: 0 auto 20px;
}
.sp-menu__link .en {
  font-size: 2.8rem;
}
.sp-menu__link .txt {
  font-size: 1.2rem;
}

#cta {
  width: 100%;
  height: 415px;
  background-image: url(../img/common/contact-cta-bg.webp);
  background-size: cover;
  background-position: center center;
  padding: 60px 0 80px;
}

footer {
  background-color: #1C1E3E;
  padding: 80px 0 60px;
}
footer small {
  text-align: center;
  color: #fff;
  font-size: 1.1rem;
  font-family: var(--sora);
  display: block;
}

.footer__flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.footer__link {
  width: 292px;
  display: block;
  margin-bottom: 25px;
}
.footer__link img {
  width: 100%;
}

.footer__info {
  color: #fff;
  font-size: 1.4rem;
}
.footer__info a {
  color: #fff;
}

.footer__nav {
  display: flex;
  gap: 30px 30px;
  width: 400px;
  height: 70px;
  flex-wrap: wrap;
}
.footer__nav li a {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
}

#float-link {
  width: 146px;
  height: 88px;
  border-radius: 11px;
  background-color: var(--green);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 10;
}
#float-link .txt {
  font-weight: bold;
  font-size: 1.4rem;
  display: block;
  text-align: center;
  margin-bottom: 7px;
}
#float-link .icon-book {
  font-size: 3rem;
  animation: kurukuruy 10s linear infinite;
}

.under-640only {
  display: none;
}

.breadcrumb {
  display: flex;
  gap: 5px 25px;
  justify-content: flex-end;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.breadcrumb li {
  font-size: 1.4rem;
  color: var(--black);
  font-family: var(--old);
  position: relative;
}
.breadcrumb li::after {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1px solid #8f8f8f;
  border-bottom: 1px solid #8f8f8f;
  transform: translateY(-50%) rotate(-45deg);
  position: absolute;
  display: block;
  top: 55%;
  right: -15px;
}
.breadcrumb li:last-child::after {
  display: none;
}
.breadcrumb li a {
  font-size: 1.4rem;
  color: var(--black);
}

.under-640none {
  display: inline-block;
}

@media (max-width: 1200px) {
  .header__right-nav-list {
    padding-right: 30px;
    gap: 30px;
  }
  .logo {
    width: 200px;
  }
  p {
    font-size: 1.5rem;
  }
}
@media (max-width: 960px) {
  html {
    scroll-padding-top: 70px;
  }
  #ham {
    display: block;
  }
  .under-960only {
    display: inline-block;
  }
  .under-960none {
    display: none;
  }
  .header__right-nav-list {
    display: none;
  }
  .header__contact-link {
    width: 120px;
    height: 70px;
    right: 70px;
  }
  .header__contact-link .en {
    font-size: 1.7rem;
    text-align: center;
    font-family: var(--sora);
  }
  header {
    height: 70px;
    padding: 0px 70px 0 15px;
    width: 100%;
  }
  #ham {
    width: 50px;
    height: 50px;
    top: 5px;
    right: 12px;
  }
  .logo {
    width: 160px;
  }
  .ham.active span:last-of-type, .ham.active span:first-of-type {
    top: 55%;
  }
  .js-fadeup-sp.in {
    animation-name: fadeUpAnime;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
  }
  .js-fadeup-sp {
    opacity: 0;
    transform: translateY(20px);
  }
  .under-834only {
    display: inline-block;
  }
  .under-834none {
    display: none;
  }
  footer {
    padding: 60px 0 40px;
  }
  .footer__flex {
    margin-bottom: 50px;
    flex-direction: column;
  }
  .footer__link {
    width: 180px;
    margin: 0 auto 35px;
  }
  .footer__nav {
    display: block;
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
  }
  .footer__nav li a {
    font-size: 1.5rem;
    text-align: center;
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid #9d9d9d;
  }
  .footer__nav {
    height: auto;
  }
  .footer__info {
    width: 500px;
    margin: 0 auto 15px;
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .under-640none {
    display: none;
  }
  #ham {
    right: 5px;
  }
  header {
    padding: 0px 55px 0 15px;
    height: 60px;
  }
  .header__contact-link {
    height: 60px;
    right: 60px;
  }
  .header__menu-txt {
    margin-top: 0;
  }
  .logo {
    width: 145px;
  }
  .header__right-nav-list {
    gap: 6px;
  }
  .under-640only {
    display: inline-block;
  }
}
.swiper-wrapper {
  transition-timing-function: linear;
}

#top-mv {
  position: relative;
  padding-top: 155px;
  background-image: url(../img/top/mv-bg.webp);
  background-size: cover;
  background-position: center center;
}

.top-mv__cont {
  display: flex;
  gap: 4%;
  margin-bottom: 20px;
}
.top-mv__cont .left {
  width: 48%;
}
.top-mv__cont .right {
  width: 48%;
}

.top-mv__txt {
  font-size: 2.8rem;
  font-weight: bold;
  color: var(--navy);
  margin-bottom: 15px;
}

.move-circle {
  position: absolute;
  bottom: -10vw;
  right: -10vw;
  width: 28vw;
  z-index: 10;
  opacity: 0.5;
}
.move-circle img {
  width: 100%;
  animation: kurukuru 25s linear infinite;
}

@keyframes kurukuru {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#top-about {
  padding: 120px 0;
  display: flex;
}
#top-about .img {
  width: 50%;
}
#top-about .cont {
  width: 50%;
  padding-left: 8%;
}

.base__ttl-bl-left {
  margin-bottom: 20px;
}

.base__ttl-tag {
  font-size: 1.7rem;
  font-family: var(--sora);
  font-weight: bold;
  color: var(--navy);
  line-height: 1;
}
.base__ttl-tag::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--red);
  content: "";
  margin-right: 10px;
  transform: translateY(-3px);
}

.en {
  font-family: var(--sora) !important;
}

.base__ttl {
  font-size: 4.2rem;
  color: var(--navy);
  font-weight: bold;
}
.base__ttl .en {
  font-size: 120%;
  line-height: 0.9;
}

.base__link {
  width: 280px;
  height: 63px;
  background-color: var(--navy);
  border-radius: 50px;
  color: #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  border: 1px solid var(--navy);
  transition-duration: 0.5s;
}
.base__link .icon-arrow {
  background-color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 11.5px;
  right: 11.5px;
  color: var(--navy);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  transition-duration: 0.5s;
}
.base__link:hover {
  background-color: #fff;
  color: var(--navy);
  transition-duration: 0.5s;
}
.base__link:hover .icon-arrow {
  background-color: var(--navy);
  color: #fff;
  transition-duration: 0.5s;
}
.base__link.white {
  background-color: #fff;
  color: var(--navy);
  transition-duration: 0.5s;
}
.base__link.white .icon-arrow {
  background-color: var(--navy);
  color: #fff;
  transition-duration: 0.5s;
}
.base__link.white:hover {
  background-color: var(--navy);
  color: #fff;
  transition-duration: 0.5s;
  border: 1px solid #fff;
}
.base__link.white:hover .icon-arrow {
  background-color: #fff;
  color: var(--navy);
  transition-duration: 0.5s;
}
.base__link.center {
  margin: 0 auto;
}

.mb30 {
  margin-bottom: 30px;
}

#top-service {
  background-color: var(--navy);
  background-image: url(../img/top/top-service-bg.webp);
  background-size: contain;
  background-position: top 0 right 50%;
  padding: 120px 0;
}
#top-service .base__ttl-tag {
  color: #fff;
}
#top-service .base__ttl {
  color: #fff;
  margin-bottom: 50px;
}

.base__ttl-bl-center .base__ttl-tag {
  text-align: center;
}
.base__ttl-bl-center .base__ttl {
  text-align: center;
}

.top-service__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
  margin-bottom: 80px;
}
.top-service__list li p {
  color: #fff;
}

.top-service__list-ttl {
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 2.4rem;
  margin: 15px 0 10px;
}

#top-flow {
  padding: 120px 0;
}

.top-flow__bl {
  display: flex;
  width: calc(50vw + 600px);
  margin: 0 0 0 auto;
}
.top-flow__bl .cont {
  width: 700px;
  padding-left: 30px;
  padding-right: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.top-flow__bl .img {
  width: calc(50vw - 100px);
}

#top-news {
  background-color: var(--gray-bg);
  padding: 100px 0;
}

.top-news__flex {
  display: flex;
}
.top-news__flex .left {
  width: 300px;
  padding-right: 30px;
}
.top-news__flex .right {
  width: calc(100% - 300px);
}

.news__list li a {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #BEBEBE;
}
.news__list li a time {
  font-size: 1.5rem;
  font-family: var(--sora);
  display: block;
  width: 120px;
  color: var(--black);
}
.news__list li a .cate {
  padding: 5px 10px 8px;
  width: 105px;
  line-height: 1;
  font-size: 1.2rem;
  text-align: center;
  color: #fff;
  background-color: #4D4D4D;
}

.news__list-ttl {
  font-size: 1.4rem;
  padding-left: 30px;
  width: calc(100% - 225px);
  color: var(--black);
}

.mb50 {
  margin-bottom: 50px;
}

.cta-link {
  display: block;
  position: relative;
  width: 100%;
  height: 425px;
  background-image: url(../img/common/cta.webp);
  background-size: cover;
  background-position: center center;
  z-index: 0;
  overflow: hidden;
}
.cta-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: rgb(6, 17, 148);
  background: linear-gradient(52deg, rgba(6, 17, 148, 0.797339004) 0%, rgba(196, 29, 29, 0.6880953065) 40%, rgba(196, 29, 29, 0.7833334017) 56%, rgba(6, 17, 148, 0.7441177154) 100%);
  display: block;
  transition-duration: 0.5s;
  z-index: 1;
}
.cta-link:hover::before {
  left: -100%;
  transition-duration: 0.5s;
}
.cta-link .inner {
  position: relative;
  height: 100%;
  display: block;
}
.cta-link .inner .icon-arrow {
  z-index: 3;
  color: #fff;
  font-size: 4.2rem;
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.cta-link .txt-bl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: bold;
  text-align: center;
  z-index: 2;
}
.cta-link .txt-bl .en {
  font-family: var(--sora);
  font-size: 11rem;
  line-height: 0.9;
  display: block;
}
.cta-link .txt-bl .ja {
  font-size: 2.8rem;
  display: block;
}

@media (max-width: 1300px) {
  .top-flow__bl {
    width: 95%;
  }
  .top-flow__bl .img {
    width: 50%;
  }
  .top-flow__bl .cont {
    width: 50%;
  }
}
@media (max-width: 1200px) {
  .top-mv__txt {
    font-size: 2.2rem;
  }
  #top-about {
    padding: 80px 0;
  }
  #top-about .cont {
    padding-left: 6%;
  }
  .base__ttl {
    font-size: 3.6rem;
  }
  .top-service__list-ttl {
    font-size: 1.9rem;
  }
  .top-service__list {
    gap: 50px 30px;
    margin-bottom: 60px;
  }
  #top-service {
    padding: 100px 0;
  }
  #top-flow {
    padding: 80px 0;
  }
  .top-flow__bl .cont {
    padding-right: 60px;
  }
  .top-news__flex .right {
    width: calc(100% - 240px);
  }
  .top-news__flex .left {
    width: 240px;
  }
  .cta-link .txt-bl .en {
    font-size: 9rem;
  }
  .cta-link .txt-bl .ja {
    font-size: 2.4rem;
  }
}
@media (max-width: 960px) {
  #top-mv {
    padding-top: 80px;
  }
  .top-mv__cont {
    flex-direction: column;
    width: 480px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  .top-mv__txt {
    text-align: center;
    margin-bottom: 10px;
  }
  .top-mv__cont .left {
    width: 100%;
  }
  .top-mv__cont .right {
    width: 100%;
  }
  .move-circle {
    bottom: -14vw;
    right: -13vw;
    width: 44vw;
  }
  #top-about .cont {
    padding-left: 0;
    margin-top: 30px;
    width: 100%;
  }
  #top-about .img {
    width: 100%;
  }
  #top-about {
    padding: 60px 0;
    flex-direction: column;
  }
  .base__ttl-bl-left {
    margin-bottom: 12px;
  }
  .top-service__list {
    grid-template-columns: repeat(2, 1fr);
  }
  #top-service {
    padding: 80px 0;
  }
  #top-service .base__ttl {
    margin-bottom: 30px;
  }
  .top-service__list {
    margin-bottom: 50px;
  }
  #top-flow {
    padding: 60px 0;
  }
  .top-flow__bl {
    flex-direction: column-reverse;
  }
  .top-flow__bl .img {
    width: 100%;
  }
  .top-flow__bl .cont {
    padding-right: 0;
    margin-top: 40px;
    width: 95%;
    padding-left: 0;
  }
  #top-news {
    padding: 60px 0;
  }
  .top-news__flex {
    flex-direction: column;
  }
  .top-news__flex .left {
    width: 100%;
    padding-right: 0;
  }
  .top-news__flex .right {
    width: 100%;
  }
  .cta-link .txt-bl .en {
    font-size: 7rem;
  }
  .cta-link .txt-bl .ja {
    font-size: 2rem;
  }
  .cta-link .inner .icon-arrow {
    font-size: 2.2rem;
    width: 75px;
    height: 75px;
  }
}
@media (max-width: 640px) {
  .top-mv__cont .right {
    margin-top: 10px;
    width: 110%;
    transform: translateX(-5%);
  }
  .top-mv__txt {
    font-size: 1.8rem;
  }
  .base__link {
    width: 240px;
    font-size: 1.5rem;
  }
  .top-service__list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .base__ttl {
    font-size: 2.8rem;
  }
  .base__ttl-tag {
    font-size: 1.4rem;
  }
  .news__list li a time {
    width: auto;
    margin-right: 15px;
  }
  .news__list-ttl {
    margin-top: 10px;
    padding-left: 0;
    width: 100%;
  }
  .cta-link {
    height: 250px;
  }
  .cta-link .txt-bl .en {
    font-size: 4rem;
  }
  .cta-link .txt-bl .ja {
    font-size: 1.4rem;
  }
  .cta-link .inner .icon-arrow {
    font-size: 1.5rem;
    width: 55px;
    height: 55px;
  }
  .news__list li a {
    flex-wrap: wrap;
  }
}
@media (max-width: 400px) {
  .top-mv__txt {
    font-size: 1.7rem;
  }
  .cta-link .txt-bl {
    left: 40%;
  }
}
@media (max-width: 374px) {
  .logo {
    width: 135px;
  }
}
.under-page {
  padding: 120px 0 0;
}
.under-page .base__ttl-bl-center {
  margin-bottom: 40px;
}

.sl-txt {
  width: 770px;
  max-width: 100%;
  margin: 0 auto 65px;
}

.flow-txt {
  background-color: var(--gray-bg);
  width: 800px;
  max-width: 100%;
  margin: 100px auto 120px;
  position: relative;
  padding: 40px 100px 40px 270px;
}
.flow-txt .img {
  width: 160px;
  position: absolute;
  bottom: 0;
  left: 60px;
}
.flow-txt .txt {
  font-size: 1.8rem;
  font-weight: bold;
}

.under-mv-circle {
  left: -6vw;
  top: -8vw;
  opacity: 0.3;
  z-index: -1;
}

@media (max-width: 960px) {
  .under-page {
    padding: 90px 0 0;
  }
  .under-mv-circle {
    left: -13vw;
    top: -15vw;
  }
  .breadcrumb {
    margin-bottom: 20px;
  }
  .under-page .base__ttl-bl-center {
    margin-bottom: 20px;
  }
  .sl-txt {
    margin: 0 auto 35px;
  }
  .flow-txt .img {
    width: 135px;
    left: 13px;
  }
  .flow-txt {
    margin: 50px auto 60px;
    padding: 40px 30px 40px 154px;
  }
  .flow-txt .txt {
    font-size: 1.6rem;
  }
}
@media (max-width: 640px) {
  .flow-txt {
    margin: 30px auto 50px;
    padding: 30px 30px 30px 60px;
  }
  .flow-txt .txt {
    font-size: 1.5rem;
  }
  .flow-txt .img {
    width: 85px;
    left: -19px;
  }
}
.company__list {
  margin-bottom: 120px;
}
.company__list li {
  display: flex;
  padding: 25px 0;
  border-bottom: 1px solid #CFCFCF;
  position: relative;
}
.company__list li::before {
  position: absolute;
  content: "";
  width: 30%;
  height: 3px;
  display: block;
  left: 0;
  bottom: -1.5px;
  background-color: #7279CB;
}

.company__ttl {
  width: 30%;
  padding: 0 15px;
  font-size: 1.6rem;
  font-weight: bold;
}

.company__detail {
  width: 70%;
  padding: 0 15px;
  font-size: 1.6rem;
}

@media (max-width: 960px) {
  .company__list li::before {
    display: none;
  }
  .company__ttl {
    width: 100%;
    padding: 12px 10px;
    font-size: 1.5rem;
    background: #ceceeb;
    border-bottom: 3px solid #7279CB;
  }
  .company__detail {
    width: 100%;
    padding: 12px 10px;
    font-size: 1.5rem;
  }
  .company__list li {
    flex-wrap: wrap;
    padding: 0;
  }
  .company__list {
    margin-bottom: 80px;
  }
}
@media (max-width: 640px) {
  .company__list {
    margin-bottom: 60px;
  }
  .company__ttl {
    padding: 8px 10px;
  }
}
.sl-txt.center {
  text-align: center;
}

.service__list li {
  position: relative;
  padding: 130px 0 120px;
}
.service__list li:nth-of-type(odd) {
  background-color: var(--blue-bg);
}
.service__list li:nth-of-type(odd) .service__flex {
  flex-direction: row-reverse;
}
.service__list li:nth-of-type(odd) .service__flex .cont {
  padding-left: 40px;
  padding-right: 0;
}
.service__list li .num-tag {
  width: 150px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  position: absolute;
}

.service__flex {
  display: flex;
}
.service__flex .cont {
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
}
.service__flex .cont p {
  margin-bottom: 30px;
}
.service__flex .cont .btn-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.service__flex .img {
  width: 50%;
}

.service__ttl {
  font-size: 3.2rem;
  font-weight: bold;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service__ttl .small {
  font-size: 1.8rem;
  display: block;
}

@media (max-width: 1350px) {
  .service__flex .cont .btn-flex {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
@media (max-width: 1200px) {
  .service__ttl {
    font-size: 2.5rem;
  }
  .service__ttl .small {
    font-size: 1.7rem;
  }
  .service__list li {
    padding: 110px 0 90px;
  }
}
@media (max-width: 960px) {
  .service__flex .img {
    width: 100%;
    margin-bottom: 20px;
  }
  .service__list li:nth-of-type(odd) .service__flex .cont {
    padding-left: 0;
    padding-right: 0;
  }
  .service__flex .cont {
    padding-right: 0;
    width: 100%;
  }
  .service__list li .num-tag {
    width: 120px;
  }
  .service__list li {
    padding: 85px 0 30px;
  }
  .service__flex {
    flex-direction: column-reverse;
  }
  .service__list li:nth-of-type(odd) .service__flex {
    flex-direction: column-reverse;
  }
  .service__flex .cont .btn-flex {
    margin-bottom: 30px;
  }
}
@media (max-width: 640px) {
  .service__ttl .small {
    font-size: 1.4rem;
  }
  .service__ttl {
    font-size: 2rem;
  }
  .service__flex .cont .btn-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
#privacy-cont {
  padding-bottom: 70px;
}
#privacy-cont p {
  margin-bottom: 30px;
}
#privacy-cont p a {
  color: var(--black);
  text-decoration: underline;
}

.privacy__ttl {
  border-bottom: 1px solid #CFCFCF;
  position: relative;
  font-size: 2.4rem;
  font-weight: bold;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.privacy__ttl::before {
  position: absolute;
  content: "";
  width: 30%;
  height: 3px;
  display: block;
  left: 0;
  bottom: -1.5px;
  background-color: #7279CB;
}

@media (max-width: 960px) {
  .privacy__ttl {
    font-size: 1.8rem;
  }
  #privacy-cont {
    padding-bottom: 30px;
  }
}
#news-cont {
  padding: 0 0 100px;
  display: flex;
  gap: 70px;
}
#news-cont .cont {
  width: calc(100% - 320px);
}
#news-cont aside {
  width: 250px;
}

.news__nav-bl {
  background-color: var(--gray-bg);
  border-radius: 17px;
  padding: 30px 25px;
  margin-bottom: 40px;
}

.news__nv-ttl {
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--navy);
  font-family: var(--sora);
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.news__nv-ttl::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--red);
  content: "";
  margin-right: 10px;
  transform: translateY(-3px);
  line-height: 1;
}

.news__nav-list li {
  margin: 10px 0;
}
.news__nav-list li a {
  color: var(--navy);
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
  display: block;
}
.news__nav-list.archive {
  font-family: var(--sora);
}
.news__nav-list.archive li {
  display: flex;
  justify-content: center;
  color: var(--navy);
  font-weight: bold;
  font-size: 1.6rem;
}

.post-ttl {
  font-size: 2.8rem;
  font-weight: bold;
  color: var(--navy);
  border-bottom: 2px solid var(--navy);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.post-option {
  display: flex;
  margin-bottom: 30px;
}
.post-option time {
  font-size: 1.5rem;
  font-family: var(--sora);
  color: var(--black);
  display: inline-block;
  margin-right: 20px;
}
.post-option .cate {
  padding: 5px 10px 8px;
  display: inline-block;
  line-height: 1;
  font-size: 1.2rem;
  text-align: center;
  color: #fff;
  background-color: #4D4D4D;
  margin-right: 10px;
}

.post-bl {
  margin-bottom: 50px;
}
.post-bl p {
  margin-bottom: 30px;
}
.post-bl img {
  margin-bottom: 20px;
}
.post-bl h2 {
  background-color: var(--navy);
  padding: 12px 20px;
  color: #fff;
  font-weight: bold;
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.post-bl h3 {
  font-weight: bold;
  border-left: 7px solid var(--red);
  margin-bottom: 20px;
  font-size: 2rem;
  padding-left: 15px;
}
.post-bl h4 {
  font-weight: bold;
  color: var(--navy);
  margin-bottom: 20px;
  font-size: 2rem;
}
.post-bl h5 {
  font-weight: bold;
  color: var(--navy);
  margin-bottom: 20px;
  font-size: 1.8rem;
}
.post-bl ul {
  margin-bottom: 30px;
}
.post-bl ul li {
  font-size: 1.6rem;
}
.post-bl ul li::before {
  content: "●";
  color: var(--navy);
  display: inline-block;
  margin-right: 10px;
}
.post-bl ol {
  font-size: 1.6rem;
  padding-left: 20px;
  list-style: decimal;
  margin-bottom: 30px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  font-size: 1.6rem;
  font-family: var(--sora);
  font-weight: bold;
  align-items: center;
  margin-top: 50px;
}
.nav-links a {
  color: var(--navy);
}

.icon-right-arrow, .icon-left-arrow {
  width: 35px;
  height: 35px;
  display: flex;
  background-color: var(--navy);
  border-radius: 50%;
  color: #fff;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
}

.page-numbers.current {
  background-color: #BFBFBF;
  width: 35px;
  height: 35px;
  display: flex;
  border-radius: 50%;
  color: #fff;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
}

.page-numbers.dots {
  transform: translateY(-4px);
}

@media (max-width: 1200px) {
  #news-cont .news__list li a {
    flex-wrap: wrap;
  }
  #news-cont .news__list-ttl {
    padding-left: 0;
    width: 100%;
    padding-top: 7px;
  }
  #news-cont {
    gap: 40px;
  }
  #news-cont .cont {
    width: calc(100% - 290px);
  }
}
@media (max-width: 960px) {
  #news-cont {
    display: block;
  }
  #news-cont .cont {
    width: 100%;
  }
  #news-cont aside {
    width: 100%;
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  #news-cont {
    padding: 0 0 60px;
  }
  .news__nav-bl {
    margin-bottom: 0;
  }
  .post-bl {
    margin-bottom: 40px;
  }
  .post-bl h2 {
    font-size: 2rem;
  }
  .post-bl h3 {
    font-size: 1.8rem;
    padding-left: 12px;
  }
  .post-bl h4 {
    font-size: 1.8rem;
  }
  .post-bl h5 {
    font-size: 1.6rem;
  }
  .post-bl ul li {
    font-size: 1.5rem;
  }
  .post-bl ol {
    font-size: 1.5rem;
  }
  .post-ttl {
    font-size: 2.1rem;
  }
  .post-option time {
    font-size: 1.4rem;
    margin-right: 12px;
  }
  .post-option {
    margin-bottom: 20px;
  }
}
@media (max-width: 640px) {
  #news-cont aside {
    grid-template-columns: 1fr;
  }
}
#about-mv {
  overflow: hidden;
}
#about-mv .img {
  width: 95%;
  margin: 0 auto 70px 0;
  position: relative;
}

#about-page .under-mv-circle {
  top: auto;
  bottom: -10vw;
  z-index: 1;
}

#about-reason {
  padding: 200px 0 120px;
  background-color: var(--blue-bg);
}

.about-reason__ttl {
  text-align: center;
  margin-bottom: 60px;
  font-weight: bold;
  color: var(--navy);
  font-size: 3.2rem;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.about-reason__ttl::before {
  width: 248px;
  height: 128px;
  background-image: url(../img/about/reason-txt.webp);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -100px;
  left: -120px;
  display: block;
  content: "";
}

.about-reason__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
.about-reason__list li {
  display: flex;
  background-color: #fff;
  padding: 60px;
  position: relative;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.about-reason__list li .img {
  width: 50%;
  position: relative;
}
.about-reason__list li .cont {
  width: 50%;
  padding-right: 40px;
}
.about-reason__list li .cont p {
  margin-bottom: 30px;
}
.about-reason__list li:nth-of-type(odd) {
  flex-direction: row-reverse;
}
.about-reason__list li:nth-of-type(odd) .cont {
  padding-left: 40px;
  padding-right: 0;
}

.about-reason__tag {
  background-color: #BE1300;
  color: #fff;
  font-weight: bold;
  padding: 10px 10px 10px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.7rem;
  margin-bottom: 10px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 50px;
  font-family: var(--sora);
}
.about-reason__tag .num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  color: #BE1300;
  font-family: var(--sora);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.7rem;
  font-weight: bold;
}

.about-reason__ttl-middle {
  font-weight: bold;
  font-size: 2.7rem;
  line-height: 1.4;
  margin-bottom: 20px;
}

.float-deco {
  position: absolute;
}
.float-deco.p1 {
  width: 229px;
  bottom: -30px;
  right: -90px;
  z-index: 1;
}
.float-deco.p2 {
  width: 242px;
  bottom: -20px;
  left: -40px;
  z-index: 1;
}
.float-deco.p3 {
  width: 163px;
  bottom: -20px;
  right: -40px;
  z-index: 1;
}

#about-other {
  padding: 20px 0 120px;
  overflow: hidden;
}

.about-swiper {
  font-family: var(--sora);
  line-height: 0.9;
  font-size: 8.2vw;
  color: var(--navy);
  opacity: 0.15;
  margin-bottom: 50px;
  font-weight: bold;
}

.about-other__flex {
  display: flex;
}
.about-other__flex .img {
  width: 50%;
}
.about-other__flex .cont {
  width: 50%;
  padding-left: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.base__ttl-tag.ja {
  font-family: var(--noto);
  font-size: 3.2rem;
  margin-bottom: 30px;
}

@media (max-width: 1350px) {
  .float-deco.p2 {
    width: 172px;
  }
  .about-swiper {
    font-size: 8vw;
  }
}
@media (max-width: 1200px) {
  .about-reason__ttl-middle {
    font-size: 2.1rem;
  }
  .about-reason__ttl {
    font-size: 2.8rem;
  }
  .about-reason__ttl::before {
    width: 215px;
    height: 119px;
    top: -89px;
    left: -106px;
  }
  .about-reason__ttl {
    margin-bottom: 40px;
  }
  #about-reason {
    padding: 150px 0 90px;
  }
  #about-other {
    padding: 20px 0 80px;
  }
  .about-swiper {
    margin-bottom: 40px;
  }
}
@media (max-width: 960px) {
  .about-reason__list {
    width: 600px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    gap: 40px;
  }
  .about-reason__list li {
    padding: 40px;
  }
  .about-reason__list li .cont {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
  .about-reason__list li:nth-of-type(odd) .cont {
    padding-left: 0;
    padding-right: 0;
  }
  .about-reason__list li .img {
    width: 100%;
  }
  .float-deco.p1 {
    width: 173px;
    bottom: -54px;
    right: -68px;
  }
  .about-reason__list li {
    flex-direction: column;
  }
  .about-reason__list li.reason-list02 .cont p.txt {
    margin-bottom: 0;
  }
  .about-reason__list li.reason-list03 .cont p.txt {
    margin-bottom: 0;
  }
  .about-reason__list li:nth-of-type(odd) {
    flex-direction: column;
  }
  .float-deco.p3 {
    width: 135px;
    right: -30px;
  }
  .about-other__flex {
    flex-direction: column;
    width: 600px;
    max-width: 90%;
  }
  .about-other__flex .img {
    width: 100%;
    margin-bottom: 30px;
  }
  .about-other__flex .cont {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
  .about-other__flex .cont .base__link {
    margin-left: auto;
    margin-right: auto;
  }
  #about-mv .img {
    margin: 0 auto 50px 0;
  }
  .base__ttl-tag.ja {
    font-size: 2.4rem;
  }
  .about-reason__ttl::before {
    width: 165px;
    height: 90px;
    top: -66px;
    left: -79px;
  }
  .about-reason__ttl {
    font-size: 2.4rem;
  }
  #about-reason {
    padding: 110px 0 80px;
  }
}
@media (max-width: 640px) {
  #about-reason {
    padding: 80px 0 60px;
  }
  .about-reason__ttl::before {
    width: 89px;
    height: 40px;
    top: -35px;
    left: -32px;
  }
  .about-reason__ttl {
    margin-bottom: 25px;
    font-size: 2rem;
  }
  .about-reason__list li .cont p {
    margin-bottom: 15px;
    font-size: 1.5rem;
  }
  .about-reason__tag {
    padding: 7px 7px 7px 12px;
  }
  .about-reason__tag .num {
    width: 25px;
    height: 25px;
    font-size: 1.5rem;
  }
  .about-reason__list li {
    padding: 30px 25px;
  }
  .about-reason__ttl-middle {
    font-size: 1.8rem;
  }
  .about-reason__list li .cont {
    margin-bottom: 30px;
  }
  .about-reason__list {
    gap: 30px;
  }
  .float-deco.p1 {
    width: 117px;
    bottom: -44px;
    right: -39px;
  }
  .float-deco.p2 {
    width: 111px;
    bottom: -11px;
    left: -25px;
  }
  .float-deco.p3 {
    width: 78px;
    right: -14px;
    bottom: -20px;
  }
  .about-swiper {
    font-size: 7.8vw;
    margin-bottom: 25px;
  }
  .base__ttl-tag.ja {
    font-size: 2rem;
    margin-bottom: 18px;
  }
  .about-other__flex p {
    font-size: 1.4rem;
  }
  #about-mv .img {
    margin: 0 auto 40px 0;
  }
  #about-page {
    overflow: hidden;
  }
}
@media (max-width: 400px) {
  .about-reason__ttl::before {
    width: 89px;
    height: 40px;
    top: -42px;
    left: -1px;
    transform: rotate(9deg);
  }
  .about-reason__list li {
    padding: 30px 20px;
  }
}
.inner-s {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
}

.contact__list li {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #ddd;
  padding: 25px 0;
  align-items: center;
}
.contact__list .contact__list-ttl {
  width: 300px;
  display: flex;
  gap: 15px;
  font-size: 1.7rem;
  align-items: center;
  position: relative;
}
.contact__list .contact__list-ttl .required {
  background-color: var(--red);
  border-radius: 40px;
  line-height: 0.6;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  display: flex;
  justify-content: center;
  width: 60px;
  align-items: center;
  height: 27px;
  position: absolute;
  right: 15px;
  top: 3px;
}
.contact__list .contact__input-wrapper {
  width: calc(100% - 300px);
}
.contact__list .contact__input-wrapper input, .contact__list .contact__input-wrapper textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  font-size: 1.6rem;
}
.contact__list .contact__input-wrapper textarea {
  height: 200px;
  resize: none;
}

.check-txt {
  text-align: center;
  font-size: 1.6rem;
  margin: 40px 0 50px;
  display: flex;
  justify-content: center;
}
.check-txt a {
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
  display: inline-block;
}
.check-txt input[type=checkbox] {
  transform: scale(1.3);
}

.contact__btn {
  width: 260px;
  height: 72px;
  position: relative;
  margin: 0 auto;
}
.contact__btn input {
  width: 100%;
  height: 72px;
  background-color: var(--navy);
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
}

#contact-cont {
  padding-bottom: 100px;
}

.wpcf7-not-valid-tip {
  font-size: 12px !important;
  display: block;
  white-space: nowrap;
  position: absolute;
}

.wpcf7 form .wpcf7-response-output {
  font-size: 1.4rem;
}

.contact-tel-bl {
  background-color: var(--gray-bg);
  width: 550px;
  max-width: 100%;
  margin: 0 auto 70px;
  padding: 30px;
}

.contact__tel-ttl {
  text-align: center;
  font-weight: bold;
  color: var(--navy);
  font-size: 2.1rem;
  margin-bottom: 10px;
}

.contact__tel-link {
  font-size: 4.2rem;
  font-weight: bold;
  color: var(--navy);
  text-align: center;
  font-family: var(--sora);
  line-height: 1;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.contact__tel-link .icon-phone {
  font-size: 90%;
}

.contact__tel-time {
  color: var(--navy);
  font-size: 1.7rem;
  text-align: center;
}

.icon-new-tab {
  display: inline-block;
  margin: 0 5px;
  font-size: 85%;
}

.wpcf7-list-item {
  margin: 0 !important;
}

.contact__list .contact__input-wrapper input[type=radio] {
  width: auto;
  transform: scale(1.3);
}

.wpcf7-list-item label {
  display: flex;
  width: auto;
  gap: 10px;
  margin-right: 30px;
}

.radio-btn {
  transform: translateY(2px);
  display: flex;
}

@media (max-width: 850px) {
  .contact__list li {
    padding: 20px 0 30px;
  }
  .contact__list .contact__list-ttl {
    width: 100%;
    gap: 0;
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  .contact__list .contact__list-ttl label {
    display: inline-block;
    margin-right: 10px;
  }
  .check-txt {
    font-size: 1.5rem;
    margin: 30px 0 30px;
  }
  #contact-page .under__main-ttl {
    margin-bottom: 0;
  }
  #contact-cont {
    padding-bottom: 60px;
  }
  .contact__list .contact__input-wrapper {
    width: 100%;
  }
  .contact__list .contact__list-ttl .required {
    position: relative;
    right: 0;
    top: 0;
  }
}
@media (max-width: 640px) {
  footer.non-tab {
    padding: 60px 0 40px;
  }
  .contact-tel-bl {
    margin: 0 auto 20px;
    padding: 30px 15px;
  }
  .contact__tel-ttl {
    font-size: 1.8rem;
  }
  .contact__tel-link {
    font-size: 2.8rem;
    gap: 6px;
  }
  .contact__tel-time {
    font-size: 1.4rem;
  }
  .radio-btn {
    flex-wrap: wrap;
  }
}
.base__ttl-tag.big {
  font-size: 4rem;
}
.base__ttl-tag.big.base__ttl-tag::before {
  transform: translateY(-12px);
}

.error404-txt {
  text-align: center;
  margin-bottom: 30px;
}

#page404-cont {
  padding-bottom: 100px;
}

.base__ttl.page404 {
  line-height: 1.5;
  margin-top: 20px;
  font-size: 3.2rem;
}

.under960-only {
  display: none;
}

@media (max-width: 960px) {
  .error404-txt {
    font-size: 1.5rem;
  }
  #page404-cont {
    padding-bottom: 60px;
  }
  .under960-only {
    display: inline-block;
  }
  .base__ttl.page404 {
    font-size: 2.4rem;
  }
}/*# sourceMappingURL=style.css.map */