@charset "UTF-8";
/*************************************************
common-style
*************************************************/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-margin: 100px;
}

.is_pc {
  display: block;
}
@media screen and (max-width: 599px) {
  .is_pc {
    display: none;
  }
}

.is_sp {
  display: none;
}
@media screen and (max-width: 599px) {
  .is_sp {
    display: block;
  }
}

body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-family: YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  color: #060B22;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

.btn_01 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 260px;
  width: 100%;
  height: 60px;
  text-align: center;
  background: #182b89;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  margin: 60px auto 0;
  font-weight: 500;
  letter-spacing: 0.54px;
}
@media screen and (max-width: 599px) {
  .btn_01 {
    font-size: 14px;
  }
}
.btn_01::before {
  position: absolute;
  content: "";
  width: 250px;
  height: 50px;
  border: 1px solid #52AFE2;
}
.btn_01::after {
  position: absolute;
  content: "";
  background-image: url(../images/btn_01.svg);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
}
.btn_01:hover::after {
  right: 8px;
  transition: 0.2s;
}

/*************************************************
アニメーション
*************************************************/
.fadeUp {
  transform: translateY(0);
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (max-width: 599px) {
  .fadeUp {
    animation-duration: 0.3s;
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.delay-time02 {
  animation-delay: 0.2s;
}
@media screen and (max-width: 599px) {
  .delay-time02 {
    animation-delay: 0.1s;
  }
}

.delay-time04 {
  animation-delay: 0.4s;
}
@media screen and (max-width: 599px) {
  .delay-time04 {
    animation-delay: 0.2s;
  }
}

.delay-time06 {
  animation-delay: 0.6s;
}
@media screen and (max-width: 599px) {
  .delay-time06 {
    animation-delay: 0.3s;
  }
}

.delay-time08 {
  animation-delay: 0.8s;
}
@media screen and (max-width: 599px) {
  .delay-time08 {
    animation-delay: 0.4s;
  }
}

.delay-time1 {
  animation-delay: 1s;
}
@media screen and (max-width: 599px) {
  .delay-time1 {
    animation-delay: 0.5s;
  }
}

/* アニメーション用の基本設定 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* アニメーション用の基本設定 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* FVセクションのアニメーション追加分 */
#fv .section_inner h1 {
  opacity: 0;
  animation: fadeInLeft 1.2s ease-out 0.5s forwards;
}
#fv .section_inner p {
  opacity: 0;
}
#fv .section_inner .copy_01 {
  animation: fadeInRight 1s ease-out 0.8s forwards;
}
#fv .section_inner .copy_02 {
  animation: fadeInRight 1s ease-out 1.1s forwards;
}

/* Aboutセクションのアニメーション追加分 */
#about .section_inner .about_copy h2:nth-child(1) {
  opacity: 0;
}
#about .section_inner .about_copy h2:nth-child(1).animate {
  animation: fadeInUp 0.8s ease-out forwards;
}
#about .section_inner .about_copy h2:nth-child(2) {
  opacity: 0;
}
#about .section_inner .about_copy h2:nth-child(2).animate {
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}
#about .section_inner .about_copy h2:nth-child(3) {
  opacity: 0;
}
#about .section_inner .about_copy h2:nth-child(3).animate {
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
}
#about .section_inner .philosophy_box img {
  opacity: 0;
}
#about .section_inner .philosophy_box img.animate {
  animation: scaleIn 1s ease-out forwards;
}
#about .section_inner .philosophy_box .philosophy_01.animate {
  animation: scaleIn 1s ease-out 0.6s forwards;
}
#about .section_inner .philosophy_box .philosophy_02.animate {
  animation: scaleIn 1s ease-out 0.8s forwards;
}
#about .section_inner p {
  opacity: 0;
}
#about .section_inner p.animate {
  animation: fadeInUp 0.8s ease-out 1s forwards;
}
#about .about_01, #about .about_02, #about .about_03, #about .about_04, #about .about_05 {
  opacity: 0;
}
#about .about_01.animate, #about .about_02.animate, #about .about_03.animate, #about .about_04.animate, #about .about_05.animate {
  animation: fadeIn 1.5s ease-out forwards;
}
#about .about_01.animate {
  animation-delay: 0.2s;
}
#about .about_02.animate {
  animation-delay: 0.4s;
}
#about .about_03.animate {
  animation-delay: 0.6s;
}
#about .about_04.animate {
  animation-delay: 0.8s;
}
#about .about_05.animate {
  animation-delay: 1s;
}

/* Businessセクションのアニメーション追加分 */
#top_business h2 {
  opacity: 0;
}
#top_business h2.animate {
  animation: fadeInUp 0.8s ease-out forwards;
}
#top_business ul li {
  opacity: 0;
}
#top_business ul li.animate {
  animation: fadeInUp 0.8s ease-out forwards;
}
#top_business ul li:nth-child(1).animate {
  animation-delay: 0.2s;
}
#top_business ul li:nth-child(2).animate {
  animation-delay: 0.4s;
}
#top_business ul li:nth-child(3).animate {
  animation-delay: 0.6s;
}
#top_business ul li a .business_img img {
  transition: transform 0.3s ease;
}
#top_business ul li a:hover img {
  transform: scale(1.15);
}

/* 下層ヘッダーのアニメーション */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes expandLine {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 11.1111111111vw;
    opacity: 1;
  }
}
/*************************************************
header
*************************************************/
header {
  position: relative;
  height: 70px;
}
@media screen and (max-width: 599px) {
  header {
    height: 50px;
  }
}
header::after {
  position: fixed;
  content: "";
  width: 100%;
  height: 1px;
  background: #0C1645;
  top: 70px;
  z-index: 99999;
}
@media screen and (max-width: 599px) {
  header::after {
    top: 50px;
  }
}
header .header_pc {
  position: fixed;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  z-index: 9999;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 599px) {
  header .header_pc {
    padding-left: 20px;
  }
}
@media screen and (max-width: 599px) {
  header .header_pc .logo img {
    display: block;
    max-width: 100px;
    width: 100%;
  }
}
header .header_pc .menu {
  position: relative;
  color: #fff;
  background-color: #52afe2;
  width: 150px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Times New Roman";
  font-size: 20px;
}
@media screen and (max-width: 599px) {
  header .header_pc .menu {
    height: 50px;
  }
}
header .header_pc .menu ul {
  display: none;
  transition: 0.3s;
}
header .header_pc .menu:hover ul {
  transition: 0.3s;
  width: 150px;
  position: absolute;
  top: 70px;
  display: block;
  background: rgba(24, 43, 137, 0.6);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  padding: 15px;
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
}
@media screen and (max-width: 599px) {
  header .header_pc .menu:hover ul {
    top: 50px;
  }
}
header .header_pc .menu:hover ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
}
header .header_pc .menu:hover ul li:last-child {
  margin-bottom: 0;
}
header .header_pc .menu:hover ul li::before {
  position: absolute;
  width: 10px;
  height: 1px;
  content: "";
  background-color: #fff;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}

/*************************************************
footer
*************************************************/
footer .footer_contact {
  background: linear-gradient(90deg, #52afe2 0%, #182b89 100%);
}
footer .footer_contact .section_inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 0;
}
@media screen and (max-width: 599px) {
  footer .footer_contact .section_inner {
    padding: 60px 20px;
  }
}
footer .footer_contact .section_inner .contact_text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  margin-bottom: 60px;
}
@media screen and (max-width: 599px) {
  footer .footer_contact .section_inner .contact_text {
    display: block;
  }
}
footer .footer_contact .section_inner .contact_text h2 {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: "Times New Roman";
  font-size: 48px;
}
@media screen and (max-width: 599px) {
  footer .footer_contact .section_inner .contact_text h2 {
    font-size: 36px;
    margin-bottom: 30px;
  }
}
footer .footer_contact .section_inner .contact_text h2 span {
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  font-weight: 600;
}
@media screen and (max-width: 599px) {
  footer .footer_contact .section_inner .contact_text h2 span {
    font-size: 14px;
  }
}
footer .footer_contact .section_inner .contact_text p {
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 599px) {
  footer .footer_contact .section_inner .contact_text p {
    font-size: 14px;
    text-align: right;
  }
}
footer .footer_contact .section_inner .contact_wrap {
  max-width: 780px;
  width: 100%;
  margin: 0 auto 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 599px) {
  footer .footer_contact .section_inner .contact_wrap {
    display: block;
    margin-bottom: 0;
  }
}
footer .footer_contact .section_inner .contact_wrap::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100px;
  background: #fff;
  left: 50%;
}
@media screen and (max-width: 599px) {
  footer .footer_contact .section_inner .contact_wrap::before {
    width: 100%;
    height: 1px;
    left: 0;
    top: 50%;
  }
}
footer .footer_contact .section_inner .contact_wrap a {
  display: flex;
  color: #fff;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 599px) {
  footer .footer_contact .section_inner .contact_wrap a {
    justify-content: center;
    padding: 20px 0;
  }
}
footer .footer_contact .section_inner .contact_wrap a:hover {
  opacity: 0.7;
}
footer .footer_contact .section_inner .contact_wrap .tel {
  font-size: 36px;
  font-family: "Times New Roman";
}
@media screen and (max-width: 599px) {
  footer .footer_contact .section_inner .contact_wrap .tel {
    font-size: 30px;
  }
}
footer .footer_contact .section_inner .contact_wrap .mail {
  font-family: "Shippori Mincho", serif;
  font-size: 31px;
  font-weight: 600;
}
@media screen and (max-width: 599px) {
  footer .footer_contact .section_inner .contact_wrap .mail {
    font-size: 24px;
  }
}
footer .footer_company {
  display: flex;
  color: #fff;
}
@media screen and (max-width: 599px) {
  footer .footer_company {
    display: block;
  }
}
footer .footer_company .footer_left {
  background-color: #295871;
  flex-basis: 40%;
  padding: 60px 0 40px 0;
  padding-left: 11.8055555556vw;
}
@media screen and (max-width: 599px) {
  footer .footer_company .footer_left {
    padding: 40px 20px;
  }
}
footer .footer_company .footer_left a {
  display: block;
  margin-bottom: 50px;
}
footer .footer_company .footer_left p {
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}
footer .footer_company .footer_right {
  background-color: #0C1645;
  flex-basis: 60%;
  padding: 60px 0 40px 0;
  padding-right: 11.8055555556vw;
}
@media screen and (max-width: 599px) {
  footer .footer_company .footer_right {
    padding: 40px 20px;
  }
}
footer .footer_company .footer_right .footer_menu {
  display: flex;
  justify-content: flex-end;
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  gap: 70px;
}
@media screen and (max-width: 599px) {
  footer .footer_company .footer_right .footer_menu {
    gap: 15px;
    justify-content: space-between;
    font-size: 12px;
  }
}
footer .footer_company .footer_right .footer_menu li a {
  display: block;
}
footer .footer_company .footer_right .footer_menu li a:hover {
  opacity: 0.7;
}
footer .footer_company .footer_right .footer_menu .sub .sub_footer {
  margin-top: 20px;
  font-size: 12px;
}
@media screen and (max-width: 599px) {
  footer .footer_company .footer_right .footer_menu .sub .sub_footer {
    font-size: 10px;
  }
}
footer .footer_company .footer_right .footer_menu .sub .sub_footer li {
  margin-bottom: 5px;
  margin-left: 15px;
  position: relative;
}
footer .footer_company .footer_right .footer_menu .sub .sub_footer li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 0.6px;
  background-color: #fff;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
}
footer .footer_company .footer_right small {
  display: block;
  text-align: right;
  margin-top: 50px;
  font-family: "Shippori Mincho", serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
  opacity: 0.5;
}

/*************************************************
navi
*************************************************/
/*************************************************
top
*************************************************/
#fv {
  width: 100%;
  height: 60.9722222222vw;
  background-image: url(../images/fv.webp);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 599px) {
  #fv {
    height: 100vh;
    background-position: center;
  }
}
#fv .section_inner {
  height: 56.25vw;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 599px) {
  #fv .section_inner {
    height: 90vh;
    padding: 0 20px;
  }
}
#fv .section_inner h1 {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #182b89;
  font-size: 70px;
  font-family: "Times New Roman";
}
@media screen and (max-width: 599px) {
  #fv .section_inner h1 {
    font-size: 56px;
    left: 20px;
  }
}
#fv .section_inner p {
  color: #fff;
  font-family: "Shippori Mincho", serif;
  background-color: #182b89;
  display: inline-block;
  writing-mode: vertical-rl;
  font-size: 28px;
  padding: 10px 11px;
  letter-spacing: 0.4rem;
  font-weight: 600;
}
@media screen and (max-width: 599px) {
  #fv .section_inner p {
    font-size: 18px;
  }
}
#fv .section_inner .copy_01 {
  position: absolute;
  right: 75px;
  top: 138px;
  padding-bottom: 0px;
}
@media screen and (max-width: 599px) {
  #fv .section_inner .copy_01 {
    right: 20px;
    top: 50px;
  }
}
#fv .section_inner .copy_02 {
  position: absolute;
  right: 145px;
  top: 348px;
}
@media screen and (max-width: 599px) {
  #fv .section_inner .copy_02 {
    right: 80px;
    top: 200px;
  }
}

/*************************************************
about
*************************************************/
#about {
  position: relative;
  padding-top: 200px;
  padding-bottom: 60px;
}
@media screen and (max-width: 599px) {
  #about {
    padding-top: 60px;
  }
}
#about::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 42.5694444444vw;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(82, 175, 226, 0.2) 50%, rgba(24, 43, 137, 0.2) 100%);
  z-index: -1;
  bottom: 0;
}
@media screen and (max-width: 599px) {
  #about::before {
    height: 40vh;
  }
}
#about .section_inner {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}
#about .section_inner .about_copy {
  margin-bottom: 60px;
}
#about .section_inner .about_copy h2 {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(270deg, #182b89 0%, #52afe2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 36px;
  font-weight: 600;
  font-family: "Shippori Mincho", serif;
  margin: 0 auto 30px;
}
@media screen and (max-width: 599px) {
  #about .section_inner .about_copy h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
}
#about .section_inner .philosophy_box {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  #about .section_inner .philosophy_box {
    margin: 0 auto 30px;
  }
}
#about .section_inner .philosophy_box img {
  display: block;
  width: 100%;
  max-width: 300px;
}
@media screen and (max-width: 599px) {
  #about .section_inner .philosophy_box img {
    max-width: 200px;
  }
}
#about .section_inner .philosophy_box .philosophy_01 {
  transform: translateX(10px);
}
@media screen and (max-width: 599px) {
  #about .section_inner .philosophy_box .philosophy_01 {
    margin: 0 auto;
  }
}
#about .section_inner .philosophy_box .philosophy_02 {
  transform: translateX(-10px);
}
@media screen and (max-width: 599px) {
  #about .section_inner .philosophy_box .philosophy_02 {
    margin: 0 auto;
  }
}
#about .section_inner p {
  color: #0c1645;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 599px) {
  #about .section_inner p {
    font-size: 16px;
    padding: 0 20px;
  }
}
#about .about_01 {
  position: absolute;
  width: 18.5416666667vw;
  height: 15.9722222222vw;
  left: 5.5555555556vw;
  top: 8.3333333333vw;
  z-index: -1;
}
@media screen and (max-width: 599px) {
  #about .about_01 {
    display: none;
  }
}
#about .about_02 {
  position: absolute;
  width: 16.3888888889vw;
  height: 10.9722222222vw;
  left: 0vw;
  top: 18.8194444444vw;
  z-index: -1;
}
@media screen and (max-width: 599px) {
  #about .about_02 {
    display: none;
  }
}
#about .about_03 {
  position: absolute;
  width: 20vw;
  height: 13.3333333333vw;
  left: 2.7083333333vw;
  top: 38.1944444444vw;
  z-index: -1;
}
@media screen and (max-width: 599px) {
  #about .about_03 {
    display: none;
  }
}
#about .about_04 {
  position: absolute;
  width: 21.25vw;
  height: 14.1666666667vw;
  right: 4.8611111111vw;
  top: 6.9444444444vw;
  z-index: -1;
}
@media screen and (max-width: 599px) {
  #about .about_04 {
    display: none;
  }
}
#about .about_05 {
  position: absolute;
  width: 16.875vw;
  height: 19.6527777778vw;
  right: 2.7777777778vw;
  top: 31.25vw;
  z-index: -1;
}
@media screen and (max-width: 599px) {
  #about .about_05 {
    display: none;
  }
}

/*************************************************
business
*************************************************/
#top_business {
  margin: 60px 0 120px;
}
#top_business h2 {
  margin-bottom: 60px;
  color: #182b89;
  font-family: "Times New Roman";
  font-size: 48px;
  text-align: center;
}
#top_business h2 img {
  display: block;
  margin: 0 auto 15px;
}
@media screen and (max-width: 599px) {
  #top_business h2 img {
    margin: 0 auto 10px;
  }
}
@media screen and (max-width: 599px) {
  #top_business h2 {
    font-size: 36px;
  }
}
#top_business h2 span {
  margin-top: 15px;
  display: block;
  text-align: center;
  color: #060b22;
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1px;
}
@media screen and (max-width: 599px) {
  #top_business h2 span {
    font-size: 16px;
    margin-top: 10px;
  }
}
#top_business ul {
  display: flex;
}
@media screen and (max-width: 599px) {
  #top_business ul {
    display: block;
  }
}
#top_business ul li {
  position: relative;
  flex-basis: 33.3333333333%;
}
#top_business ul li a {
  display: block;
}
#top_business ul li a .business_img {
  width: 100%;
  height: auto;
  overflow: hidden;
}
#top_business ul li a .business_img img {
  display: block;
  width: 100%;
}
#top_business ul li a:hover img {
  transition: 0.3s;
  scale: 1.15;
}
#top_business ul li .business_ttl {
  position: absolute;
  left: 30px;
  bottom: 15px;
}
@media screen and (max-width: 599px) {
  #top_business ul li .business_ttl {
    left: 20px;
    bottom: 10px;
  }
}
#top_business ul li .business_ttl p {
  margin-left: 30px;
  position: relative;
  color: #182b89;
  font-family: "Times New Roman";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
#top_business ul li .business_ttl p::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  width: 20px;
  height: 1px;
  background-color: #182b89;
}
#top_business ul li .business_ttl h3 {
  color: #fff;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  font-family: "Shippori Mincho", serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.84px;
}

#under_fv {
  width: 100%;
  padding-top: 50px;
}
#under_fv h1 {
  position: relative;
  padding-left: 11.4583333333vw;
  color: #182b89;
  font-family: "Times New Roman";
  font-size: 55px;
  margin-bottom: 25px;
  animation: slideInFromLeft 1s ease-out 0.3s forwards;
  opacity: 0;
}
@media screen and (max-width: 599px) {
  #under_fv h1 {
    font-size: 40px;
    margin-bottom: 15px;
  }
}
#under_fv h1 span {
  display: block;
  color: #52afe2;
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  font-weight: 600;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.8s forwards;
}
@media screen and (max-width: 599px) {
  #under_fv h1 span {
    display: inline-block;
    font-size: 16px;
  }
}
#under_fv h1::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 11.1111111111vw;
  height: 1px;
  background-color: #182b89;
  animation: expandLine 0.8s ease-out 0.1s forwards;
}
#under_fv .under_fv {
  display: block;
  width: 100%;
  padding-left: 11.4583333333vw;
  margin-right: 0;
  opacity: 0;
  animation: slideInFromRight 1.2s ease-out 0.6s forwards;
}
@media screen and (max-width: 599px) {
  #under_fv .under_fv {
    padding-left: 50px;
  }
}
#under_fv ul {
  transform: translateY(-23px);
  display: flex;
  justify-content: space-between;
  max-width: 870px;
  width: 100%;
  margin: 0 auto 60px;
}
@media screen and (max-width: 599px) {
  #under_fv ul {
    display: block;
    margin: 0 auto 30px;
    transform: translateY(-15px);
  }
}
#under_fv ul li {
  background-color: #182b89;
  color: #fff;
  max-width: 250px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  #under_fv ul li {
    margin: 0 auto 15px;
    max-width: 200px;
  }
}
#under_fv ul li a {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  height: 45px;
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 599px) {
  #under_fv ul li a {
    font-size: 14px;
    height: 30px;
  }
}
#under_fv ul li a:hover {
  opacity: 0.7;
}
#under_fv .business_text {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 0px;
  padding-bottom: 60px;
  writing-mode: vertical-rl;
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 3.5;
  letter-spacing: 0.5rem;
  color: #060b22;
}
@media screen and (max-width: 599px) {
  #under_fv .business_text {
    font-size: 14px;
    line-height: 2;
  }
}
#under_fv .business_text::before {
  content: "";
  background-image: url(../images/business_text_bg.svg);
  width: 738px;
  height: 598px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  position: absolute;
  left: -70%;
  bottom: 0;
}
@media screen and (max-width: 599px) {
  #under_fv .business_text::before {
    width: 300px;
    height: 243px;
    left: -30%;
  }
}

#business {
  margin-bottom: 120px;
}
#business .business_bg_01 {
  background-color: #f1f2f3;
}
#business .business_bg_02 {
  background: rgba(82, 175, 226, 0.1);
}
#business .section_inner {
  padding: 60px 0;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  font-family: "Shippori Mincho", serif;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 599px) {
  #business .section_inner {
    padding: 60px 20px;
    text-align: left;
  }
}
#business .section_inner p {
  margin-bottom: 15px;
}
#business .section_inner .business_flex {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  align-items: center;
  margin-bottom: 30px;
}
#business .section_inner .business_flex img {
  display: block;
}
@media screen and (max-width: 599px) {
  #business .section_inner .business_flex img {
    width: 100%;
  }
}
#business .section_inner .business_flex .business_text h2 {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  #business .section_inner .business_flex .business_text h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
}
#business .section_inner .business_flex .business_text h2 span {
  display: block;
  color: #52afe2;
  font-family: "Times New Roman";
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  margin-top: 10px;
}
@media screen and (max-width: 599px) {
  #business .section_inner .business_flex {
    flex-direction: column;
  }
}
#business .section_inner .business_to {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}
@media screen and (max-width: 599px) {
  #business .section_inner .business_to {
    flex-direction: column;
    gap: 30px;
  }
}
#business .section_inner .business_to .business_to_text {
  padding: 60px 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 480px;
  height: 285px;
  flex-shrink: 0;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(24, 43, 137, 0.2);
}
@media screen and (max-width: 599px) {
  #business .section_inner .business_to .business_to_text {
    width: 100%;
    height: auto;
    padding: 30px 20px;
  }
}
#business .section_inner .business_to .business_to_text h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 45px;
  position: relative;
}
@media screen and (max-width: 599px) {
  #business .section_inner .business_to .business_to_text h3 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
#business .section_inner .business_to .business_to_text h3::after {
  content: "";
  position: absolute;
  width: 45px;
  height: 2px;
  background-color: #182b89;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
}

#company .section_inner {
  max-width: 800px;
  width: 100%;
  margin: 60px auto;
  font-family: "Shippori Mincho", serif;
  line-height: 1.6;
}
@media screen and (max-width: 599px) {
  #company .section_inner {
    padding: 0 20px;
  }
}
#company .section_inner table {
  display: block;
  margin-bottom: 60px;
  color: #060b22;
}
#company .section_inner table tbody {
  display: block;
}
#company .section_inner table tbody tr {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  #company .section_inner table tbody tr {
    flex-direction: column;
  }
}
#company .section_inner table tbody tr th {
  padding: 16px 0;
  flex-basis: 20%;
  font-weight: 600;
  background: rgba(122, 205, 243, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #182b89;
}
@media screen and (max-width: 599px) {
  #company .section_inner table tbody tr th {
    width: 100%;
  }
}
#company .section_inner table tbody tr td {
  padding: 16px 0;
  flex-basis: 80%;
  display: flex;
  align-items: center;
  padding-left: 50px;
  border-bottom: 1px solid #52afe2;
}
@media screen and (max-width: 599px) {
  #company .section_inner table tbody tr td {
    width: 100%;
    padding-left: 0;
    text-align: center;
    justify-content: center;
  }
}
#company .section_inner table tbody tr:last-child th {
  padding: 16px 0 40px;
}
@media screen and (max-width: 599px) {
  #company .section_inner table tbody tr:last-child th {
    padding: 16px 0;
  }
}
#company .section_inner .gmap iframe {
  width: 100%;
  height: 500px;
}
@media screen and (max-width: 599px) {
  #company .section_inner .gmap iframe {
    height: 300px;
  }
}
#company .section_inner .kigyoshien {
  margin-top: 40px;
  padding: 40px 20px;
  background-color: #f9f9f9;
  border-left: 5px solid #182b89;
}
#company .section_inner .kigyoshien h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  #company .section_inner .kigyoshien h2 {
    font-size: 20px;
  }
}
#company .section_inner .kigyoshien p {
  text-align: center;
  line-height: 2;
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  #company .section_inner .kigyoshien p {
    margin-bottom: 0;
  }
}

#contact .contact_top {
  margin: 60px auto;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 599px) {
  #contact .contact_top {
    padding: 0 20px;
  }
}
#contact .contact_top h2 {
  text-align: center;
  font-size: 22px;
  line-height: 1.6;
}
@media screen and (max-width: 599px) {
  #contact .contact_top h2 {
    font-size: 18px;
  }
}
#contact .contact_top .tel_box {
  margin: 60px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  background: linear-gradient(270deg, #182b89 0%, #52afe2 100%);
  color: #fff;
  max-width: 640px;
  padding: 50px 55px;
  font-weight: 600;
  font-size: 20px;
}
@media screen and (max-width: 599px) {
  #contact .contact_top .tel_box {
    flex-direction: column;
    gap: 30px;
  }
}
#contact .contact_top .tel_box a {
  display: block;
  font-family: "Times New Roman";
  font-size: 35px;
  font-weight: 400;
  letter-spacing: 0.05rem;
}
#contact .contact_top .tel_box a span {
  display: block;
  font-family: "Shippori Mincho", serif;
  font-size: 12px;
}
#contact .contact_top .tel_box a:hover {
  opacity: 0.7;
}
#contact .contact_form {
  background: #f1f2f3;
  font-family: "Shippori Mincho", serif;
  padding: 60px 0;
}
#contact .contact_form h3 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 60px;
}
#contact .contact_form p {
  text-align: center;
  line-height: 1.6;
  margin-bottom: 60px;
}
@media screen and (max-width: 599px) {
  #contact .contact_form p {
    padding: 0 20px;
  }
}
#contact .contact_form table {
  display: block;
  max-width: 640px;
  width: 100%;
  margin: 0 auto 60px;
}
@media screen and (max-width: 599px) {
  #contact .contact_form table {
    padding: 0 20px;
  }
}
#contact .contact_form table tbody {
  display: block;
}
#contact .contact_form table tbody tr {
  display: block;
  align-items: center;
  margin-bottom: 30px;
}
#contact .contact_form table tbody tr th {
  display: flex;
  font-weight: 400;
  margin-bottom: 8px;
}
#contact .contact_form table tbody tr th span {
  background: #182b89;
  display: block;
  padding: 3px 8px;
  color: #fff;
  margin-right: 8px;
  font-size: 12px;
}
#contact .contact_form table tbody tr td {
  width: 100%;
  display: block;
  background-color: #fff;
}
#contact .contact_form table tbody tr td input[type=text],
#contact .contact_form table tbody tr td textarea,
#contact .contact_form table tbody tr td input[type=file] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  color: #333;
  background-color: #fafafa;
}
#contact .contact_form table tbody tr td input[type=text]:focus,
#contact .contact_form table tbody tr td textarea:focus,
#contact .contact_form table tbody tr td input[type=file]:focus {
  border-color: #888;
  outline: none;
  background-color: #fff;
}
#contact .contact_form table tbody tr td textarea {
  resize: vertical;
  min-height: 120px;
}
#contact .contact_form button {
  display: block;
  border-radius: 36px;
  background: #182b89;
  width: 220px;
  padding: 16px 0px;
  text-align: center;
  margin: 0 auto;
  color: #fff;
}
#contact .contact_form button:hover {
  color: #182b89;
  background-color: #fff;
  border: 1px solid #182b89;
}

#thanks .container {
  font-family: "Shippori Mincho", serif;
  max-width: 800px;
  margin: 60px auto;
  padding: 40px 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}
#thanks h1 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}
#thanks .complete-icon {
  margin: 20px auto 30px;
  width: 80px;
  height: 80px;
  background-color: #182b89;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
#thanks .complete-icon::before {
  content: "";
  width: 30px;
  height: 15px;
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(-45deg);
  position: relative;
  top: -5px;
}
#thanks p {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
}
#thanks .message {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 4px;
  margin: 30px 0;
  text-align: left;
}
#thanks .message p {
  margin-bottom: 15px;
}
#thanks .message p:last-child {
  margin-bottom: 0;
}
#thanks .button {
  display: inline-block;
  padding: 12px 35px;
  background-color: #182b89;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 20px;
  position: relative;
  transition: all 0.2s;
}
#thanks .button:hover {
  opacity: 0.7;
}
#thanks .button:active {
  transform: translateY(1px);
}
@media screen and (max-width: 768px) {
  #thanks .container {
    margin: 30px auto;
    padding: 25px 20px;
  }
  #thanks h1 {
    font-size: 24px;
  }
  #thanks .complete-icon {
    width: 70px;
    height: 70px;
  }
  #thanks .button {
    display: block;
    width: 80%;
    margin: 20px auto 0;
    padding: 15px;
  }
}

#formWrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background-color: #fff;
  font-family: "Shippori Mincho", serif;
}
#formWrap h3 {
  font-size: 28px;
  color: #333;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 600;
}
#formWrap p {
  text-align: center;
  margin-bottom: 30px;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}
#formWrap .formTable {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}
#formWrap .formTable tr {
  border-bottom: 1px solid #eee;
}
#formWrap .formTable th {
  padding: 20px 15px;
  text-align: left;
  font-weight: normal;
  color: #333;
  background-color: #f9f9f9;
  vertical-align: top;
}
#formWrap .formTable td {
  padding: 20px 15px;
  line-height: 1.6;
}
#formWrap .error_messe {
  color: #182b89;
  font-weight: bold;
  margin: 5px 0;
  padding: 5px;
  background-color: rgba(231, 76, 60, 0.1);
  border-radius: 4px;
}
#formWrap p:last-child {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
#formWrap p:last-child input[type=submit],
#formWrap p:last-child input[type=button] {
  padding: 12px 30px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
#formWrap p:last-child input[type=submit]:hover,
#formWrap p:last-child input[type=button]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#formWrap p:last-child input[type=submit]:active,
#formWrap p:last-child input[type=button]:active {
  transform: translateY(0);
}
#formWrap p:last-child input[type=submit] {
  background-color: #182b89;
  color: white;
  font-weight: 600;
}
#formWrap p:last-child input[type=submit]::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 100%;
  height: 100%;
  background-color: rgb(16.397515528, 29.3788819876, 93.602484472);
  z-index: -1;
  transition: all 0.2s ease;
}
#formWrap p:last-child input[type=submit]:hover::before {
  top: 7px;
  left: 7px;
}
#formWrap p:last-child input[type=button] {
  background-color: #f2f2f2;
  color: #666;
}
#formWrap p:last-child input[type=button]::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 100%;
  height: 100%;
  background-color: rgb(216.5, 216.5, 216.5);
  z-index: -1;
  transition: all 0.2s ease;
}
#formWrap p:last-child input[type=button]:hover::before {
  top: 7px;
  left: 7px;
}

@media screen and (max-width: 768px) {
  #formWrap {
    padding: 20px 15px;
  }
  #formWrap h3 {
    font-size: 24px;
  }
  #formWrap .formTable th,
  #formWrap .formTable td {
    display: block;
    width: 100%;
  }
  #formWrap .formTable th {
    padding: 15px 10px 5px;
    background-color: transparent;
    border-bottom: none;
  }
  #formWrap .formTable td {
    padding: 5px 10px 15px;
  }
  #formWrap p:last-child {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  #formWrap p:last-child input[type=submit],
  #formWrap p:last-child input[type=button] {
    width: 80%;
    padding: 15px;
  }
}