@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Anton&family=Noto+Sans+JP:wght@100..900&display=swap");
html {
  font-size: 62.5%;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
}

body {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  font-optical-sizing: auto;
  scrollbar-gutter: stable;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
dl,
dt,
dd,
table,
th,
td,
figure {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
}

main {
  overflow-x: hidden;
}

p {
  letter-spacing: 0.2rem;
}

.en {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.btn_bk {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
}
.btn_bk a {
  font-size: 3.6rem;
  font-weight: bold;
  color: #252525;
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 820px) {
  .btn_bk a {
    font-size: 2.4rem;
    gap: 30px;
  }
}
.btn_bk a .txt {
  position: relative;
}
.btn_bk a .arrow {
  width: 100px;
  height: 100px;
  border: 1px solid #252525;
  border-radius: 50%;
}
@media screen and (max-width: 820px) {
  .btn_bk a .arrow {
    width: 50px;
    height: 50px;
  }
}
.btn_bk a .arrow {
  position: relative;
  display: block;
}
.btn_bk a .arrow::before {
  content: "";
  width: 30%;
  height: 1px;
  background-color: #252525;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.btn_bk a .arrow::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid #252525;
  position: absolute;
  top: 50%;
  left: 58%;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .btn_bk a .arrow::after {
    width: 6px;
    height: 6px;
    left: 56%;
  }
}
.btn_bk a .arrow::before {
  transition: all 0.3s;
}
.btn_bk a .arrow {
  overflow: hidden;
}
.btn_bk a:hover .txt::after {
  left: 0;
  visibility: visible;
  transform: scale(1, 1);
}
.btn_bk a:hover .arrow::before {
  transform: translate(50px, -50%);
  opacity: 0;
}
.btn_bk a:hover .arrow::after {
  transform: translate(50px, -50%) rotate(45deg);
  opacity: 0;
}
.btn_bk a .txt::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  content: "";
  width: 100%;
  height: 0.15rem;
  visibility: hidden;
  transition: 0.3s;
  transform: scale(0, 1);
  transform-origin: left top;
  background-color: #252525;
}

.btn_w {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
}
.btn_w a {
  font-size: 3.6rem;
  font-weight: bold;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 820px) {
  .btn_w a {
    font-size: 2.4rem;
    gap: 30px;
  }
}
.btn_w a .txt {
  position: relative;
}
.btn_w a .arrow {
  width: 100px;
  height: 100px;
  border: 1px solid #fff;
  border-radius: 50%;
}
@media screen and (max-width: 820px) {
  .btn_w a .arrow {
    width: 50px;
    height: 50px;
  }
}
.btn_w a .arrow {
  position: relative;
  display: block;
}
.btn_w a .arrow::before {
  content: "";
  width: 30%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.btn_w a .arrow::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 58%;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .btn_w a .arrow::after {
    width: 6px;
    height: 6px;
    left: 56%;
  }
}
.btn_w a .arrow::before {
  transition: all 0.3s;
}
.btn_w a .arrow {
  overflow: hidden;
}
.btn_w a:hover .txt::after {
  left: 0;
  visibility: visible;
  transform: scale(1, 1);
}
.btn_w a:hover .arrow::before {
  transform: translate(50px, -50%);
  opacity: 0;
}
.btn_w a:hover .arrow::after {
  transform: translate(50px, -50%) rotate(45deg);
  opacity: 0;
}
.btn_w a .txt::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  content: "";
  width: 100%;
  height: 0.15rem;
  visibility: hidden;
  transition: 0.3s;
  transform: scale(0, 1);
  transform-origin: left top;
  background-color: #fff;
}

/*-----header-----*/
header {
  width: 100% !important;
  margin: 0;
  padding: 16px 0;
  box-sizing: border-box;
  position: fixed;
  z-index: 100;
  height: auto;
  transition: 0.3s;
}
header.is-active {
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  header {
    padding: 0;
  }
}
header .header_inner {
  width: 96%;
  height: 60px;
  margin: 0 auto;
  position: relative;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  header .header_inner {
    width: 90%;
  }
}
header .header_inner .header_logo {
  z-index: 100;
}
@media screen and (max-width: 767px) {
  header .header_inner .header_logo {
    left: 4%;
  }
}
header .header_inner .header_logo a img {
  width: auto;
  height: 60px;
}
@media screen and (max-width: 767px) {
  header .header_inner .header_logo a img {
    height: 50px;
  }
}
header .nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  header .nav {
    display: none;
  }
}
header .nav ul {
  display: flex;
}
header .nav ul li {
  margin: 0 15px;
  position: relative;
}
header .nav ul li a {
  font-size: 1.8rem;
  color: #252525;
  position: relative;
  transition: 0.3s;
  text-align: left;
  font-weight: 500;
}
header .nav ul li a:hover {
  color: #002BA2;
  transition: 0.3s;
}
header .nav ul li a:hover::after {
  left: 0;
  visibility: visible;
  transform: scale(1, 1);
}
header .nav ul li a::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  content: "";
  width: 100%;
  height: 0.15rem;
  visibility: hidden;
  transition: 0.3s;
  transform: scale(0, 1);
  transform-origin: left top;
  background-color: #002BA2;
}
header .nav .contact_btn a {
  font-size: 1.8rem;
  color: #fff;
  background-color: #252525;
  border: 1px solid #252525;
  padding: 9px 36px 9px 36px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  position: relative;
  margin-left: 15px;
  transition: all 0.5s;
  box-sizing: border-box;
}
header .nav .contact_btn a span {
  width: 24px;
  margin-right: 10px;
}
header .nav .contact_btn a span img {
  width: 100%;
}
header .nav .contact_btn a:hover {
  background-color: #fff;
  color: #252525;
  transition: all 0.5s;
}
header .nav_wrap_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  header .nav_wrap_sp {
    display: block;
  }
  header .nav_wrap_sp .toggle_wrap {
    width: 60px;
    height: 60px;
    z-index: 100;
  }
  header .nav_wrap_sp #nav_toggle {
    display: block;
    width: 24px;
    height: 20px;
    z-index: 100;
    position: absolute;
    top: 36%;
    right: 0;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  header .nav_wrap_sp #nav_toggle {
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  header .nav_wrap_sp #nav_toggle div {
    position: relative;
  }
  header .nav_wrap_sp #nav_toggle span {
    display: block;
    height: 2px;
    position: absolute;
    width: 100%;
    left: 2px;
    transition: 0.5s ease-in-out;
    background-color: #002BA2;
    border-radius: 4px;
  }
  header .nav_wrap_sp #nav_toggle span:nth-child(1) {
    top: 0px;
  }
  header .nav_wrap_sp #nav_toggle span:nth-child(2) {
    top: 8px;
  }
  header .nav_wrap_sp #nav_toggle span:nth-child(3) {
    top: 16px;
  }
  header .nav_wrap_sp #nav_toggle p {
    position: absolute;
    top: 20px;
    font-size: 1rem;
    color: #555555;
  }
  header .nav_wrap_sp .open #nav_toggle span:nth-child(1) {
    top: 12px;
    transform: rotate(135deg);
  }
  header .nav_wrap_sp .open #nav_toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  header .nav_wrap_sp .open #nav_toggle span:nth-child(3) {
    top: 12px;
    transform: rotate(-135deg);
  }
}
header .nav_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  header .nav_sp {
    position: absolute;
    top: 60px;
    right: 0;
    background: url(../images/black_noise.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    box-sizing: border-box;
    padding: 0 30px 0;
    z-index: 99;
  }
}
header .nav_sp .nav_inner {
  height: 100vh;
  width: 100%;
}
header .nav_sp .nav_inner .list_wrap {
  width: 100%;
  padding-top: 30px;
}
header .nav_sp .nav_inner .list_wrap li {
  padding: 30px 0;
  border-bottom: 1px solid #fff;
  position: relative;
}
header .nav_sp .nav_inner .list_wrap li a {
  font-size: 1.6rem;
  color: #fff;
  display: block;
}
header .nav_sp .nav_inner .contact_btn a {
  font-size: 1.8rem;
  color: #252525;
  background-color: #fff;
  padding: 10px 0px 10px 0px;
  border-radius: 30px;
  position: relative;
  transition: all 0.5s;
  box-sizing: border-box;
  display: block;
  margin: 30px auto 0;
  width: 100%;
  text-align: center;
}

/*-----CTA-----*/
.cta_area {
  width: 100%;
}
.cta_area .company_link {
  width: 100%;
  background: url(../images/company_cta_img.webp);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
}
@media screen and (max-width: 820px) {
  .cta_area .company_link {
    background: url(../images/company_cta_img_sp.webp);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: cover;
  }
}
.cta_area .company_link .article {
  width: 100%;
}
@media screen and (max-width: 820px) {
  .cta_area .company_link .article {
    width: 100%;
  }
}
.cta_area .company_link .article .txt_wrap {
  width: 80%;
  z-index: 1;
  background: url(../images/company_cta_bg.webp) no-repeat;
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  padding: 80px 0 80px 4%;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 820px) {
  .cta_area .company_link .article .txt_wrap {
    width: 66%;
    background: none;
    padding: 26px 0 26px 4%;
    background: url(../images/company_cta_bg_sp.webp);
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
  }
}
@media screen and (max-width: 480px) {
  .cta_area .company_link .article .txt_wrap {
    width: 70%;
  }
}
@media screen and (max-width: 420px) {
  .cta_area .company_link .article .txt_wrap {
    width: 80%;
  }
}
.cta_area .company_link .article .txt_wrap .txt_inner {
  width: 48%;
}
@media screen and (max-width: 1280px) {
  .cta_area .company_link .article .txt_wrap .txt_inner {
    width: 40%;
  }
}
@media screen and (max-width: 1080px) {
  .cta_area .company_link .article .txt_wrap .txt_inner {
    width: 80%;
  }
}
.cta_area .company_link .article .txt_wrap .txt_inner h2 {
  font-size: 10rem;
  color: #fff;
}
@media screen and (max-width: 820px) {
  .cta_area .company_link .article .txt_wrap .txt_inner h2 {
    font-size: 4rem;
  }
}
.cta_area .company_link .article .txt_wrap .txt_inner p {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 60px;
  font-weight: 700;
}
@media screen and (max-width: 820px) {
  .cta_area .company_link .article .txt_wrap .txt_inner p {
    font-size: 1.5rem;
    margin-bottom: 0;
  }
}
.cta_area .company_link .article .txt_wrap .txt_inner .link_wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 100px;
  margin-left: auto;
}
@media screen and (max-width: 1080px) {
  .cta_area .company_link .article .txt_wrap .txt_inner .link_wrap {
    margin-top: 60px;
    margin-left: 0;
  }
}
@media screen and (max-width: 820px) {
  .cta_area .company_link .article .txt_wrap .txt_inner .link_wrap {
    margin-top: 40px;
  }
}
@media screen and (max-width: 820px) {
  .cta_area .company_link .article .txt_wrap .txt_inner .link_wrap .btn_w a {
    font-size: 2.4rem;
    gap: 30px;
  }
}
.cta_area .company_link .article figure {
  width: 60%;
}
.cta_area .contact_link {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.cta_area .contact_link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/contact_cta_bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: transform 0.6s;
  z-index: 0;
}
.cta_area .contact_link::after {
  background: url(../images/contact_cta_ground.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  content: "";
  position: absolute;
  bottom: -50px;
  left: -10%;
  width: 58%;
  aspect-ratio: 1/1;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 1080px) {
  .cta_area .contact_link::after {
    width: 90%;
  }
}
.cta_area .contact_link:hover::before {
  transform: scale(1.1);
}
.cta_area .contact_link .article {
  display: block;
  width: 100%;
  padding: 150px 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1080px) {
  .cta_area .contact_link .article {
    padding: 100px 0;
  }
}
@media screen and (max-width: 820px) {
  .cta_area .contact_link .article {
    padding: 60px 0;
  }
}
.cta_area .contact_link .article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.6s;
  z-index: -1;
}
.cta_area .contact_link .article:hover::before {
  opacity: 1;
}
.cta_area .contact_link .article .txt_wrap {
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.cta_area .contact_link .article .txt_wrap h2 {
  font-size: 10rem;
  color: #fff;
}
@media screen and (max-width: 820px) {
  .cta_area .contact_link .article .txt_wrap h2 {
    font-size: 4rem;
  }
}
.cta_area .contact_link .article .txt_wrap p {
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
}
@media screen and (max-width: 820px) {
  .cta_area .contact_link .article .txt_wrap p {
    font-size: 1.5rem;
  }
}

/*-----footer-----*/
footer {
  width: 100%;
  padding: 60px 0 40px;
  background-color: #252525;
}
footer .footer_copyright {
  width: 90%;
  margin: 0 auto;
  margin-top: 30px;
}
footer .footer_copyright p {
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
}
footer .footer_inner {
  width: 90%;
  margin: 0 auto;
  position: relative;
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 1080px) {
  footer .footer_inner {
    display: block;
  }
}
footer .footer_inner .footer_logo {
  background-color: #fff;
  padding: 4px 20px 4px 30px;
  box-sizing: border-box;
}
@media screen and (max-width: 1080px) {
  footer .footer_inner .footer_logo {
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 30px;
  }
}
footer .footer_inner .footer_logo a img {
  width: auto;
  height: 60px;
}
@media screen and (max-width: 767px) {
  footer .footer_inner .footer_logo a img {
    height: 50px;
  }
}
footer .footer_inner .nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1080px) {
  footer .footer_inner .nav {
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  footer .footer_inner .nav {
    display: block;
  }
}
footer .footer_inner .nav ul {
  display: flex;
}
@media screen and (max-width: 767px) {
  footer .footer_inner .nav ul {
    flex-wrap: wrap;
  }
}
footer .footer_inner .nav ul li {
  margin: 0 15px;
  position: relative;
}
@media screen and (max-width: 767px) {
  footer .footer_inner .nav ul li {
    width: 49%;
    margin: 0 0 30px;
  }
}
footer .footer_inner .nav ul li a {
  font-size: 1.8rem;
  color: #fff;
  position: relative;
  transition: 0.3s;
  text-align: left;
  font-weight: 500;
}
footer .footer_inner .nav ul li a:hover {
  color: #fff;
  transition: 0.3s;
}
footer .footer_inner .nav ul li a:hover::after {
  left: 0;
  visibility: visible;
  transform: scale(1, 1);
}
footer .footer_inner .nav ul li a::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  content: "";
  width: 100%;
  height: 0.15rem;
  visibility: hidden;
  transition: 0.3s;
  transform: scale(0, 1);
  transform-origin: left top;
  background-color: #fff;
}
footer .footer_inner .nav .btn_wrap {
  display: flex;
  margin-left: 40px;
}
@media screen and (max-width: 767px) {
  footer .footer_inner .nav .btn_wrap {
    margin-left: 0;
  }
}
footer .footer_inner .nav .btn_wrap .sns_link {
  width: -moz-fit-content;
  width: fit-content;
}
footer .footer_inner .nav .btn_wrap .sns_link a {
  width: 40px;
  display: block;
}
footer .footer_inner .nav .btn_wrap .sns_link a img {
  width: 100%;
}
footer .footer_inner .nav .btn_wrap .contact_btn a {
  font-size: 1.8rem;
  color: #252525;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 6px 40px 6px 40px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  position: relative;
  margin-left: 15px;
  transition: all 0.5s;
  box-sizing: border-box;
}
footer .footer_inner .nav .btn_wrap .contact_btn a span {
  width: 24px;
  margin-right: 10px;
}
footer .footer_inner .nav .btn_wrap .contact_btn a span img {
  width: 100%;
}
footer .footer_inner .nav .btn_wrap .contact_btn a:hover {
  background-color: #252525;
  color: #fff;
  transition: all 0.5s;
}

/*-----トップページ-----*/
.top_mv {
  width: 100%;
  background: url(../images/fv_bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 100px 0 0;
  overflow: hidden;
}
.top_mv .article {
  width: 100%;
  position: relative;
}
.top_mv .article .bg_object {
  width: 63%;
  position: absolute;
  top: -23%;
  left: -10%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top_mv .article .bg_object {
    width: 93%;
  }
}
.top_mv .article .bg_object img {
  width: 100%;
}
.top_mv .article .flex_wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_mv .article .flex_wrap {
    display: none;
  }
}
.top_mv .article .flex_wrap .mv_object {
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: -17%;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}
.top_mv .article .flex_wrap .mv_object.is-active {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 980px) {
  .top_mv .article .flex_wrap .mv_object {
    height: 80%;
  }
}
.top_mv .article .flex_wrap .mv_object img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_mv .article .flex_wrap .ttl_wrap {
  padding: 0 0 100px 60px;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
  transition-delay: 0.5s;
}
.top_mv .article .flex_wrap .ttl_wrap.is-active {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 980px) {
  .top_mv .article .flex_wrap .ttl_wrap {
    padding: 0 0 70px 3%;
  }
}
@media screen and (max-width: 767px) {
  .top_mv .article .flex_wrap .ttl_wrap {
    display: none;
  }
}
.top_mv .article .flex_wrap .ttl_wrap h1 {
  font-size: 10vw;
  color: #252525;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2rem;
}
.top_mv .article .flex_wrap .ttl_wrap h1 span {
  color: #002BA2;
}
.top_mv .article .flex_wrap .ttl_wrap h1 span strong {
  font-size: 13vw;
  font-weight: 500;
}
.top_mv .article .flex_wrap .ttl_wrap .read {
  font-size: 2.4vw;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 20px;
}
.top_mv .article .flex_wrap .ttl_wrap .read span {
  background-color: #002BA2;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 4px;
  color: #fff;
}
.top_mv .article .flex_wrap .ttl_wrap .sub {
  font-size: 1.1vw;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 20px;
}
.top_mv .article .flex_wrap .ttl_wrap ul {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  margin-top: 30px;
}
@media screen and (max-width: 980px) {
  .top_mv .article .flex_wrap .ttl_wrap ul {
    display: block;
  }
}
.top_mv .article .flex_wrap .ttl_wrap ul li {
  width: -moz-fit-content;
  width: fit-content;
}
.top_mv .article .flex_wrap .ttl_wrap ul li a {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}
.top_mv .article .flex_wrap .ttl_wrap ul li a img {
  width: auto;
  height: 70px;
}
.top_mv .article .sp_only_object {
  display: none;
}
@media screen and (max-width: 767px) {
  .top_mv .article .sp_only_object {
    display: block;
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
  }
  .top_mv .article .sp_only_object figure {
    width: 100%;
  }
  .top_mv .article .sp_only_object figure img {
    width: 100%;
  }
  .top_mv .article .sp_only_object .txt_wrap {
    padding: 0 20px;
  }
  .top_mv .article .sp_only_object .txt_wrap .sub {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.6;
    margin-top: 20px;
  }
  .top_mv .article .sp_only_object .txt_wrap ul {
    display: block;
    margin-top: 30px;
  }
  .top_mv .article .sp_only_object .txt_wrap ul li {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }
  .top_mv .article .sp_only_object .txt_wrap ul li a {
    width: -moz-fit-content;
    width: fit-content;
    display: block;
  }
  .top_mv .article .sp_only_object .txt_wrap ul li a img {
    width: auto;
    height: 60px;
  }
}

.top_news {
  background: url(../images/black_noise.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 10px 0;
}
@media screen and (max-width: 1080px) {
  .top_news {
    padding: 16px 0;
  }
}
.top_news .article {
  width: 1240px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .top_news .article {
    width: 92%;
  }
}
.top_news .article .content_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top_news .article .content_wrap .ttl_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1080px) {
  .top_news .article .content_wrap .ttl_wrap {
    display: block;
    flex: 1;
  }
}
.top_news .article .content_wrap .ttl_wrap .cap_wrap {
  display: flex;
  gap: 20px;
  margin-right: 30px;
  align-items: center;
  font-weight: 700;
}
@media screen and (max-width: 1080px) {
  .top_news .article .content_wrap .ttl_wrap .cap_wrap {
    margin-bottom: 6px;
    margin-right: 0;
  }
}
.top_news .article .content_wrap .ttl_wrap .cap_wrap .date {
  font-size: 1.4rem;
  color: #fff;
}
.top_news .article .content_wrap .ttl_wrap .cap_wrap .cat {
  font-size: 1.4rem;
  color: #fff;
  border: 1px solid #fff;
  padding: 4px 10px;
}
.top_news .article .content_wrap .ttl_wrap h3 {
  font-size: 1.6rem;
  color: #fff;
}
.top_news .article .content_wrap .btn_wrap {
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1080px) {
  .top_news .article .content_wrap .btn_wrap {
    margin-left: 20px;
  }
}
.top_news .article .content_wrap .btn_wrap a {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
  color: #252525;
  font-weight: 700;
  font-size: 2rem;
  padding: 4px 40px;
  display: block;
}
@media screen and (max-width: 1080px) {
  .top_news .article .content_wrap .btn_wrap a {
    padding: 4px 14px;
    font-size: 1.6rem;
  }
}

.top_about {
  padding: 60px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.top_about::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #002BA2;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.8s ease-out;
  z-index: -1;
}
.top_about.is-active::before {
  transform: scaleX(1);
}
@media screen and (max-width: 1280px) {
  .top_about {
    padding: 100px 0;
  }
}
.top_about .article {
  width: 100%;
  margin: 0 auto;
  background: url(../images/philosophy_bg.svg);
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  .top_about .article {
    background: none;
  }
}
.top_about .article .txt_wrap {
  width: 46%;
  padding: 100px 0 100px 4%;
  box-sizing: border-box;
}
@media screen and (max-width: 1280px) {
  .top_about .article .txt_wrap {
    width: 100%;
    padding: 0px 0;
  }
}
.top_about .article .txt_wrap .ttl_wrap {
  z-index: 2;
  position: relative;
  display: block;
}
@media screen and (max-width: 1280px) {
  .top_about .article .txt_wrap .ttl_wrap {
    width: 92%;
    margin: 0 auto;
  }
}
.top_about .article .txt_wrap .ttl_wrap h2 {
  font-size: 14rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top_about .article .txt_wrap .ttl_wrap h2 {
    font-size: 6rem;
  }
}
.top_about .article .txt_wrap .ttl_wrap h2 span {
  font-size: 2rem;
  display: block;
  margin-bottom: -20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_about .article .txt_wrap .ttl_wrap h2 span {
    font-size: 1.4rem;
    margin-bottom: -10px;
  }
}
.top_about .article .txt_wrap .ttl_wrap h2 span::before {
  content: "";
  width: 50%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 14px;
  left: -52%;
}
@media screen and (max-width: 767px) {
  .top_about .article .txt_wrap .ttl_wrap h2 span::before {
    top: 10px;
  }
}
.top_about .article .txt_wrap .read_wrap {
  display: block;
  margin-top: 10px;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .top_about .article .txt_wrap .read_wrap {
    width: 92%;
    margin: 0 auto;
  }
}
.top_about .article .txt_wrap .read_wrap span {
  background-color: #fff;
  padding: 0px 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 10px;
  display: block;
}
.top_about .article .txt_wrap .read_wrap span p {
  font-size: 4rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .top_about .article .txt_wrap .read_wrap span p {
    font-size: 2rem;
  }
}
.top_about .article .txt_wrap .sp_only {
  display: none;
}
@media screen and (max-width: 1280px) {
  .top_about .article .txt_wrap .sp_only {
    display: block;
    width: 100%;
    margin-top: -80px;
    z-index: 1;
    position: relative;
  }
  .top_about .article .txt_wrap .sp_only img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top_about .article .txt_wrap .sp_only {
    margin-top: -40px;
  }
}
.top_about .article .txt_wrap .txt_inner {
  width: 100%;
  margin-top: 40px;
}
@media screen and (max-width: 1280px) {
  .top_about .article .txt_wrap .txt_inner {
    width: 92%;
    margin: -40px auto 0;
    z-index: 2;
    position: relative;
  }
}
.top_about .article .txt_wrap .txt_inner p {
  font-size: 1.6rem;
  color: #fff;
  line-height: 2.6rem;
}
.top_about .pc_only {
  width: 84vh;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 1280px) {
  .top_about .pc_only {
    display: none;
  }
}
.top_about .pc_only img {
  width: 100%;
}

.top_movie {
  /* padding: 150px 0; */
  background-color: #F6F6F6;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top_movie {
    /* padding: 60px 0; */
  }
}
.top_movie::before {
  content: "";
  width: 80%;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../images/w_bg_ground.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -10%;
  right: -10%;
}
.top_movie .article {
  width: 1200px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .top_movie .article {
    width: 96%;
  }
}
.top_movie .article .ttl_wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}
.top_movie .article .ttl_wrap.is-active {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 1280px) {
  .top_movie .article .ttl_wrap {
    width: 92%;
  }
}
.top_movie .article .ttl_wrap h2 {
  font-size: 13rem;
  color: #252525;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top_movie .article .ttl_wrap h2 {
    font-size: 6rem;
  }
}
.top_movie .article .content_wrap {
  width: 100%;
  margin-top: 40px;
}
@media screen and (max-width: 1280px) {
  .top_movie .article .content_wrap {
    width: 92%;
    margin: 20px auto 0;
  }
}
.top_movie .article .content_wrap .movie_wrap {
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
  transition-delay: 0.3s;
}
.top_movie .article .content_wrap .movie_wrap.is-active {
  opacity: 1;
  transform: translateY(0);
}
.top_movie .article .content_wrap .movie_wrap iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

.top_business {
  padding: 0 0;
  background-color: #F6F6F6;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top_business {
    padding: 60px 0 0;
  }
}
.top_business .ttl_wrap {
  width: 100%;
  margin: 0 auto;
  display: block;
}
.top_business .ttl_wrap h2 {
  font-size: 13rem;
  color: #252525;
  text-align: center;
  margin-top: -100px;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_business .ttl_wrap h2 {
    font-size: 6rem;
    margin-top: -50px;
  }
}
.top_business .ttl_wrap .slide {
  z-index: 1;
}
.top_business .ttl_wrap .slide li {
  width: -moz-fit-content;
  width: fit-content;
  height: 100px;
  margin: 0 0px;
}
@media screen and (max-width: 767px) {
  .top_business .ttl_wrap .slide li {
    height: 60px;
  }
}
.top_business .ttl_wrap .slide li img {
  height: 100%;
  width: auto;
}
.top_business .article {
  width: 100%;
  margin: -100px auto 0;
  padding: 150px 0 150px;
  z-index: 1;
  position: relative;
  background: url(../images/business_bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .top_business .article {
    margin: -40px auto 0;
    padding: 120px 0 60px;
  }
}
.top_business .article .content_wrap {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1080px) {
  .top_business .article .content_wrap {
    display: block;
  }
}
.top_business .article .content_wrap figure {
  width: 60%;
  opacity: 0;
  transform: translateX(20px);
  transition: all 1s;
  transition-delay: 0.3s;
}
.top_business .article .content_wrap figure.is-active {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 1240px) {
  .top_business .article .content_wrap figure {
    width: 45%;
    flex: 1;
  }
}
@media screen and (max-width: 1080px) {
  .top_business .article .content_wrap figure {
    width: 100%;
  }
}
.top_business .article .content_wrap figure img {
  width: 100%;
}
.top_business .article .content_wrap figure .sp_only {
  display: none;
}
@media screen and (max-width: 1080px) {
  .top_business .article .content_wrap figure .sp_only {
    display: block;
    margin-top: 40px;
    margin-left: auto;
    margin-right: 4%;
  }
}
.top_business .article .content_wrap .txt_wrap {
  width: 40%;
  padding: 0 40px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}
.top_business .article .content_wrap .txt_wrap.is-active {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 1080px) {
  .top_business .article .content_wrap .txt_wrap {
    width: 100%;
    margin-bottom: 30px;
  }
}
.top_business .article .content_wrap .txt_wrap h3 {
  font-size: 3.6rem;
  color: #252525;
  position: relative;
  font-weight: 800;
}
@media screen and (max-width: 767px) {
  .top_business .article .content_wrap .txt_wrap h3 {
    font-size: 2.6rem;
  }
}
.top_business .article .content_wrap .txt_wrap .read_wrap {
  width: 100%;
  margin-top: 30px;
}
.top_business .article .content_wrap .txt_wrap .read_wrap span {
  background-color: #002BA2;
  padding: 0px 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 10px;
  display: block;
}
.top_business .article .content_wrap .txt_wrap .read_wrap span p {
  font-size: 3.6rem;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top_business .article .content_wrap .txt_wrap .read_wrap span p {
    font-size: 2rem;
  }
}
.top_business .article .content_wrap .txt_wrap .pc_only {
  margin-top: 40px;
}
@media screen and (max-width: 1080px) {
  .top_business .article .content_wrap .txt_wrap .pc_only {
    display: none;
  }
}
.top_business .article .sub_content {
  width: 1240px;
  margin: 60px auto 0;
  background-color: #002BA2;
  padding: 40px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: stretch;
}
@media screen and (max-width: 1280px) {
  .top_business .article .sub_content {
    width: 90%;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .top_business .article .sub_content {
    padding: 30px;
  }
}
.top_business .article .sub_content .content_inner {
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .top_business .article .sub_content .content_inner {
    width: 100%;
    padding-bottom: 40px;
  }
}
.top_business .article .sub_content .content_inner .ttl_wrap {
  width: 100%;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 1280px) {
  .top_business .article .sub_content .content_inner .ttl_wrap {
    width: 92%;
  }
}
@media screen and (max-width: 767px) {
  .top_business .article .sub_content .content_inner .ttl_wrap {
    width: 100%;
  }
}
.top_business .article .sub_content .content_inner .ttl_wrap h3 {
  font-size: 3.6rem;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 920px) {
  .top_business .article .sub_content .content_inner .ttl_wrap h3 {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 480px) {
  .top_business .article .sub_content .content_inner .ttl_wrap h3 {
    font-size: 2.4rem;
  }
}
.top_business .article .sub_content .content_inner .ttl_wrap .read_wrap {
  width: 100%;
  margin-top: 20px;
}
.top_business .article .sub_content .content_inner .ttl_wrap .read_wrap .read {
  background-color: #fff;
  padding: 0px 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 10px;
  display: block;
}
.top_business .article .sub_content .content_inner .ttl_wrap .read_wrap .read p {
  font-size: 3.6rem;
  font-weight: bold;
  color: #002BA2;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 920px) {
  .top_business .article .sub_content .content_inner .ttl_wrap .read_wrap .read p {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 480px) {
  .top_business .article .sub_content .content_inner .ttl_wrap .read_wrap .read p {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 920px) {
  .top_business .article .sub_content .content_inner .ttl_wrap .read_wrap .pc_only p span {
    display: none;
  }
}
.top_business .article .sub_content .content_inner .ttl_wrap .read_wrap .sp_only {
  display: none;
}
@media screen and (max-width: 920px) {
  .top_business .article .sub_content .content_inner .ttl_wrap .read_wrap .sp_only {
    display: block;
  }
}
.top_business .article .sub_content .content_inner .ttl_wrap ul {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
@media screen and (max-width: 920px) {
  .top_business .article .sub_content .content_inner .ttl_wrap ul {
    display: block;
  }
}
.top_business .article .sub_content .content_inner .ttl_wrap ul li {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 10px 0 0;
  background-color: #252525;
  padding: 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 1280px) {
  .top_business .article .sub_content .content_inner .ttl_wrap ul li {
    margin-top: 10px;
  }
}
@media screen and (max-width: 480px) {
  .top_business .article .sub_content .content_inner .ttl_wrap ul li {
    width: 100%;
  }
}
.top_business .article .sub_content .content_inner .ttl_wrap ul li a {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  margin: 0 auto;
  height: 55px;
  position: relative;
  gap: 40px;
}
@media screen and (max-width: 480px) {
  .top_business .article .sub_content .content_inner .ttl_wrap ul li a {
    justify-content: space-between;
    height: 40px;
    margin: 0;
    width: 100%;
    gap: unset;
  }
}
.top_business .article .sub_content .content_inner .ttl_wrap ul li a img {
  width: auto;
  height: 100%;
  transition: all 0.6s;
}
.top_business .article .sub_content .content_inner .ttl_wrap ul li a .arrow {
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  position: relative;
  display: block;
  flex-shrink: 0;
}
.top_business .article .sub_content .content_inner .ttl_wrap ul li a .arrow::before {
  content: "";
  width: 30%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
.top_business .article .sub_content .content_inner .ttl_wrap ul li a .arrow::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 56%;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.3s;
}
.top_business .article .sub_content .content_inner .ttl_wrap ul li a .arrow {
  overflow: hidden;
}
.top_business .article .sub_content .content_inner .ttl_wrap ul li a:hover img {
  opacity: 0.6;
}
.top_business .article .sub_content .content_inner .ttl_wrap ul li a:hover .arrow::before {
  transform: translate(30px, -50%);
  opacity: 0;
}
.top_business .article .sub_content .content_inner .ttl_wrap ul li a:hover .arrow::after {
  transform: translate(30px, -50%) rotate(45deg);
  opacity: 0;
}
.top_business .article .sub_content .link_wrap {
  width: 30%;
  margin: 0 auto;
  padding-left: 40px;
  border-left: 1px solid #fff;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  .top_business .article .sub_content .link_wrap {
    width: 100%;
    padding-left: 0;
    border-left: none;
    padding-top: 40px;
    border-top: 1px solid #fff;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 1280px) {
  .top_business .article .sub_content .link_wrap .btn_w {
    margin-left: auto;
  }
}

/* 下層 */
.under_contents {
  background-color: #F6F6F6;
}

.u_mv {
  padding: 92px 0 0;
  background: url(../images/fv_bg.webp) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .u_mv {
    padding: 60px 0 0;
  }
}
.u_mv .article {
  background: url(../images/u_bg.webp) no-repeat center center/cover;
  width: 100%;
}
.u_mv .article .flex_wrap {
  display: flex;
  align-items: center;
  width: 96%;
  margin: 0 auto;
  background: url(../images/u_bg.webp) no-repeat center center/cover;
}
.u_mv .article .flex_wrap .ttl_wrap {
  width: 50%;
  box-sizing: border-box;
  padding: 80px 0 80px 4%;
}
@media screen and (max-width: 767px) {
  .u_mv .article .flex_wrap .ttl_wrap {
    padding: 40px 0 40px 2%;
  }
}
.u_mv .article .flex_wrap .ttl_wrap h1 {
  font-size: 10rem;
  line-height: 10rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .u_mv .article .flex_wrap .ttl_wrap h1 {
    font-size: 5rem;
    line-height: 5rem;
  }
}
.u_mv .article .flex_wrap .ttl_wrap p {
  font-size: 2rem;
  line-height: 2rem;
  color: #fff;
  font-weight: bold;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .u_mv .article .flex_wrap .ttl_wrap p {
    font-size: 1.5rem;
    line-height: 1.5rem;
    margin-top: 10px;
  }
}
.u_mv .article .flex_wrap .anker_wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
.u_mv .article .flex_wrap .anker_wrap li {
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #fff;
  padding: 10px 24px;
  box-sizing: border-box;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .u_mv .article .flex_wrap .anker_wrap li {
    padding: 8px 16px;
  }
}
.u_mv .article .flex_wrap .anker_wrap li a {
  font-size: 2rem;
  line-height: 2rem;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .u_mv .article .flex_wrap .anker_wrap li a {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}
.u_mv .article .flex_wrap .anker_wrap li a span {
  width: 40px;
  height: 40px;
  display: inline-block;
  margin-left: 10px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .u_mv .article .flex_wrap .anker_wrap li a span {
    width: 26px;
    height: 26px;
  }
}
.u_mv .article .flex_wrap .anker_wrap li a span img {
  width: 100%;
}

.breadcrumb {
  padding: 10px 0;
}
.breadcrumb .article {
  width: 96%;
  margin: 0 auto;
}
.breadcrumb .article .bread {
  display: flex;
  align-items: center;
}
.breadcrumb .article .bread li {
  font-size: 1.4rem;
  line-height: 1.4rem;
  color: #252525;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .breadcrumb .article .bread li {
    font-size: 1.2rem;
    line-height: 1.2rem;
  }
}
.breadcrumb .article .bread li a {
  color: #002BA2;
}

/* business */
.business_read_content {
  width: 100%;
  margin: 0 auto;
  background: url(../images/business_bg_read.webp) no-repeat center center/cover;
}
@media screen and (max-width: 1080px) {
  .business_read_content {
    background: url(../images/business_bg_read.webp) no-repeat left center/cover;
  }
}
@media screen and (max-width: 767px) {
  .business_read_content {
    background: url(../images/business_bg_sp.webp) no-repeat left top/cover;
  }
}
.business_read_content .biz_breadcrumb {
  padding: 10px 0;
}
.business_read_content .biz_breadcrumb .article {
  width: 96%;
  margin: 0 auto;
}
.business_read_content .biz_breadcrumb .article .bread {
  display: flex;
  align-items: center;
}
.business_read_content .biz_breadcrumb .article .bread li {
  font-size: 1.4rem;
  line-height: 1.4rem;
  color: #252525;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .business_read_content .biz_breadcrumb .article .bread li {
    font-size: 1.2rem;
    line-height: 1.2rem;
  }
}
.business_read_content .biz_breadcrumb .article .bread li a {
  color: #002BA2;
}
.business_read_content .content_wrap {
  width: 100%;
  padding: 100px 0;
}
@media screen and (max-width: 1080px) {
  .business_read_content .content_wrap {
    padding: 360px 0 100px;
  }
}
@media screen and (max-width: 767px) {
  .business_read_content .content_wrap {
    padding: 260px 0 100px;
  }
}
.business_read_content .content_wrap .txt_wrap {
  width: 50%;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1280px) {
  .business_read_content .content_wrap .txt_wrap {
    width: 70%;
  }
}
@media screen and (max-width: 1080px) {
  .business_read_content .content_wrap .txt_wrap {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 767px) {
  .business_read_content .content_wrap .txt_wrap {
    width: 90%;
    margin: 0 auto;
  }
}
.business_read_content .content_wrap .txt_wrap h2 {
  font-size: 5rem;
  line-height: 10rem;
  color: #fff;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .business_read_content .content_wrap .txt_wrap h2 {
    font-size: 2.4rem;
    line-height: 5rem;
    margin-bottom: 30px;
  }
}
.business_read_content .content_wrap .txt_wrap p {
  font-size: 1.6rem;
  line-height: 3rem;
  color: #fff;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .business_read_content .content_wrap .txt_wrap p {
    font-size: 1.5rem;
    line-height: 3rem;
    margin-bottom: 30px;
  }
}
.business_read_content .content_wrap .txt_wrap p .pc_only {
  display: block;
}
@media screen and (max-width: 767px) {
  .business_read_content .content_wrap .txt_wrap p .pc_only {
    display: none;
  }
}
.business_read_content .content_wrap .txt_wrap h3 {
  font-size: 5rem;
  line-height: 10rem;
  color: #fff;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .business_read_content .content_wrap .txt_wrap h3 {
    font-size: 3rem;
    line-height: 5rem;
    margin-bottom: 30px;
  }
}

.business_area {
  padding: 160px 0;
  background-color: #F6F6F6;
}
@media screen and (max-width: 767px) {
  .business_area {
    padding: 100px 0;
  }
}
.business_area .article {
  width: 1240px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .business_area .article {
    width: 90%;
  }
}
.business_area .article .strengths_content {
  width: 100%;
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .business_area .article .strengths_content {
    margin-bottom: 60px;
  }
}
.business_area .article .strengths_content .ttl_wrap {
  margin: 0 auto;
  margin-bottom: 60px;
  width: -moz-fit-content;
  width: fit-content;
}
.business_area .article .strengths_content .ttl_wrap span {
  width: auto;
  height: 64px;
  margin-top: -66px;
  display: block;
}
.business_area .article .strengths_content .ttl_wrap span img {
  width: auto;
  height: 64px;
}
.business_area .article .strengths_content .ttl_wrap h2 {
  font-size: 3rem;
  line-height: 3rem;
  color: #252525;
  font-weight: bold;
  position: relative;
  text-align: center;
}
.business_area .article .strengths_content .ttl_wrap h2::first-letter {
  color: #002BA2;
}
.business_area .article .strengths_content .ttl_wrap p {
  font-size: 1.6rem;
  line-height: 1.6rem;
  color: #252525;
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .business_area .article .strengths_content .ttl_wrap p {
    text-align: left;
  }
}
.business_area .article .strengths_content .txt_wrap {
  width: 100%;
}
.business_area .article .strengths_content .txt_wrap h3 {
  text-align: center;
  font-size: 3.4rem;
  line-height: 3rem;
  color: #252525;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .business_area .article .strengths_content .txt_wrap h3 {
    font-size: 1.6rem;
    line-height: 3rem;
  }
}
.business_area .article .strengths_content .txt_wrap h3 span {
  color: #002BA2;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .business_area .article .strengths_content .txt_wrap h3 span {
    font-size: 2rem;
    display: block;
  }
}
.business_area .article .strengths_content .txt_wrap figure {
  width: 100%;
  margin-top: 30px;
}
.business_area .article .strengths_content .txt_wrap figure img {
  width: 100%;
}
.business_area .article .strengths_content .txt_wrap p {
  font-size: 1.6rem;
  line-height: 3rem;
  color: #252525;
  margin-bottom: 60px;
  text-align: center;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .business_area .article .strengths_content .txt_wrap p {
    text-align: left;
  }
}
.business_area .article .evolution_content {
  width: 100%;
}
.business_area .article .evolution_content .ttl_wrap {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 60px;
  width: -moz-fit-content;
  width: fit-content;
}
.business_area .article .evolution_content .ttl_wrap h2 {
  text-align: center;
  font-size: 3.4rem;
  line-height: 3rem;
  color: #252525;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .business_area .article .evolution_content .ttl_wrap h2 {
    font-size: 1.6rem;
    line-height: 3rem;
  }
}
.business_area .article .evolution_content .ttl_wrap h2 span {
  color: #002BA2;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .business_area .article .evolution_content .ttl_wrap h2 span {
    font-size: 2rem;
  }
}
.business_area .article .evolution_content .flex_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .business_area .article .evolution_content .flex_wrap {
    display: block;
  }
}
.business_area .article .evolution_content .flex_wrap li {
  width: 32%;
}
@media screen and (max-width: 767px) {
  .business_area .article .evolution_content .flex_wrap li {
    width: 100%;
    margin-bottom: 60px;
  }
}
.business_area .article .evolution_content .flex_wrap li h3 {
  font-size: 3.5rem;
  line-height: 3rem;
  color: #252525;
  font-weight: bold;
  margin-bottom: 10px;
}
.business_area .article .evolution_content .flex_wrap li figure {
  width: 100%;
  margin-bottom: 20px;
}
.business_area .article .evolution_content .flex_wrap li figure img {
  width: 100%;
}
.business_area .article .evolution_content .flex_wrap li .txt_wrap {
  width: 100%;
}
.business_area .article .evolution_content .flex_wrap li .txt_wrap h4 {
  font-size: 2rem;
  color: #252525;
  font-weight: bold;
  margin-bottom: 20px;
}
.business_area .article .evolution_content .flex_wrap li .txt_wrap p {
  font-size: 1.6rem;
  color: #252525;
}

.project_area {
  padding: 160px 0;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .project_area {
    padding: 100px 0;
  }
}
.project_area .article {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .project_area .article {
    width: 90%;
  }
}
.project_area .article .project_content {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .project_area .article .project_content {
    margin-bottom: 60px;
  }
}
.project_area .article .project_content .ttl_wrap {
  margin: 0 auto;
  margin-bottom: 60px;
  width: -moz-fit-content;
  width: fit-content;
}
.project_area .article .project_content .ttl_wrap span {
  width: auto;
  height: 86px;
  margin-top: -86px;
  display: block;
}
@media screen and (max-width: 767px) {
  .project_area .article .project_content .ttl_wrap span {
    height: 48px;
    margin-top: -48px;
  }
}
.project_area .article .project_content .ttl_wrap span img {
  width: auto;
  height: 86px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .project_area .article .project_content .ttl_wrap span img {
    height: 48px;
    margin: 0 auto;
  }
}
.project_area .article .project_content .ttl_wrap h2 {
  font-size: 3rem;
  line-height: 3rem;
  color: #252525;
  font-weight: bold;
  position: relative;
  text-align: center;
}
.project_area .article .project_content .ttl_wrap h2::first-letter {
  color: #002BA2;
}
.project_area .article .project_content .ttl_wrap p {
  font-size: 1.6rem;
  line-height: 3rem;
  color: #252525;
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .project_area .article .project_content .ttl_wrap p {
    text-align: left;
  }
}
.project_area .article .project_content .content_wrap_a {
  background-color: #F6F6F6;
  width: 96%;
  margin: 0 auto;
  padding: 70px 100px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .project_area .article .project_content .content_wrap_a {
    padding: 40px 20px;
    width: 100%;
  }
}
.project_area .article .project_content .content_wrap_a h3 {
  text-align: center;
  font-size: 3.4rem;
  line-height: 3rem;
  color: #252525;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .project_area .article .project_content .content_wrap_a h3 {
    font-size: 2rem;
  }
}
.project_area .article .project_content .content_wrap_a h3 span {
  color: #002BA2;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .project_area .article .project_content .content_wrap_a h3 span {
    font-size: 2.6rem;
    display: block;
  }
}
.project_area .article .project_content .content_wrap_a .flex_wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .project_area .article .project_content .content_wrap_a .flex_wrap {
    display: block;
  }
}
.project_area .article .project_content .content_wrap_a .flex_wrap li {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .project_area .article .project_content .content_wrap_a .flex_wrap li {
    width: 100%;
  }
}
.project_area .article .project_content .content_wrap_a .flex_wrap li figure {
  width: 100%;
  margin-bottom: 20px;
}
.project_area .article .project_content .content_wrap_a .flex_wrap li figure img {
  width: 100%;
}
.project_area .article .project_content .content_wrap_a .flex_wrap li .txt_wrap h4 {
  font-size: 2rem;
  color: #252525;
  font-weight: bold;
  margin-bottom: 20px;
  align-items: center;
}
.project_area .article .project_content .content_wrap_a .flex_wrap li .txt_wrap h4 span {
  font-size: 1.6rem;
  background-color: #002BA2;
  color: #fff;
  padding: 2px 10px;
  margin-right: 10px;
}
.project_area .article .project_content .content_wrap_a .flex_wrap li .txt_wrap ul {
  display: block;
  width: 100%;
}
.project_area .article .project_content .content_wrap_a .flex_wrap li .txt_wrap ul li {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #252525;
  width: 100%;
}
.project_area .article .project_content .content_wrap_a .flex_wrap li .txt_wrap ul .bold {
  font-weight: bold;
}
.project_area .article .project_content .content_wrap_b {
  background-color: #F6F6F6;
  width: 96%;
  margin: 60px auto 0;
  padding: 70px 100px;
  box-sizing: border-box;
}
@media screen and (max-width: 1080px) {
  .project_area .article .project_content .content_wrap_b {
    padding: 40px 10px;
  }
}
@media screen and (max-width: 767px) {
  .project_area .article .project_content .content_wrap_b {
    width: 100%;
  }
}
.project_area .article .project_content .content_wrap_b h3 {
  text-align: center;
  font-size: 3.4rem;
  line-height: 3rem;
  color: #252525;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .project_area .article .project_content .content_wrap_b h3 {
    font-size: 2rem;
  }
}
.project_area .article .project_content .content_wrap_b h3 span {
  color: #002BA2;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .project_area .article .project_content .content_wrap_b h3 span {
    font-size: 2.6rem;
  }
}
.project_area .article .project_content .content_wrap_b .bg_01 {
  background-image: url(../images/partner_bg01.webp);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
}
@media screen and (max-width: 1280px) {
  .project_area .article .project_content .content_wrap_b .bg_01 {
    background-image: none;
  }
}
.project_area .article .project_content .content_wrap_b .bg_02 {
  background-image: url(../images/partner_bg02.webp);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
}
@media screen and (max-width: 1280px) {
  .project_area .article .project_content .content_wrap_b .bg_02 {
    background-image: none;
  }
}
.project_area .article .project_content .content_wrap_b .flex_content {
  display: flex;
  margin-top: 60px;
  align-items: center;
  border: 2px solid #002BA2;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .project_area .article .project_content .content_wrap_b .flex_content {
    display: block;
    margin-top: 30px;
  }
}
.project_area .article .project_content .content_wrap_b .flex_content .txt_wrap {
  width: 55%;
  padding: 40px 0 40px 40px;
  box-sizing: border-box;
}
@media screen and (max-width: 1280px) {
  .project_area .article .project_content .content_wrap_b .flex_content .txt_wrap {
    width: 100%;
    padding: 40px;
  }
}
@media screen and (max-width: 767px) {
  .project_area .article .project_content .content_wrap_b .flex_content .txt_wrap {
    width: 100%;
    padding: 10px;
  }
}
.project_area .article .project_content .content_wrap_b .flex_content .txt_wrap .read_wrap {
  width: 100%;
  margin-top: 30px;
}
.project_area .article .project_content .content_wrap_b .flex_content .txt_wrap .read_wrap span {
  background-color: #002BA2;
  padding: 0px 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 10px;
  display: block;
}
.project_area .article .project_content .content_wrap_b .flex_content .txt_wrap .read_wrap span p {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .project_area .article .project_content .content_wrap_b .flex_content .txt_wrap .read_wrap span p {
    font-size: 1.6rem;
  }
}
.project_area .article .project_content .content_wrap_b .flex_content .txt_wrap h4 {
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 20px;
  align-items: center;
  background-color: #002BA2;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 10px;
}
.project_area .article .project_content .content_wrap_b .flex_content .txt_wrap p {
  font-size: 1.6rem;
  line-height: 2.8rem;
  margin-bottom: 10px;
  color: #252525;
  width: 100%;
}
.project_area .article .project_content .content_wrap_b .flex_content .link_wrap {
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  bottom: 20px;
  right: 30px;
  /* height: auto; */
  /* display: flex; */
}
@media screen and (max-width: 1280px) {
  .project_area .article .project_content .content_wrap_b .flex_content .link_wrap {
    display: block;
    position: relative;
    width: 100%;
    bottom: unset;
    right: unset;
  }
}
.project_area .article .project_content .content_wrap_b .flex_content .link_wrap .sp_only {
  display: none;
}
@media screen and (max-width: 1280px) {
  .project_area .article .project_content .content_wrap_b .flex_content .link_wrap .sp_only {
    display: block;
    width: 100%;
  }
}
.project_area .article .project_content .content_wrap_b .flex_content .link_wrap .btn_w {
  margin: 0 20px 20px auto;
}
@media screen and (max-width: 1280px) {
  .project_area .article .project_content .content_wrap_b .flex_content .link_wrap .btn_w {
    margin: 0 20px 20px auto;
    position: absolute;
    bottom: 20px;
    right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .project_area .article .project_content .content_wrap_b .flex_content .link_wrap .btn_w {
    bottom: 10px;
    right: 10px;
    margin: 0;
  }
}

.sub_area {
  width: 100%;
  background-color: #ffffff;
  padding: 100px 0;
}
.sub_area .sub_content {
  width: 1240px;
  margin: 0 auto 0;
  background-color: #002BA2;
  padding: 40px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: stretch;
}
@media screen and (max-width: 1280px) {
  .sub_area .sub_content {
    width: 90%;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .sub_area .sub_content {
    padding: 30px;
  }
}
.sub_area .sub_content .content_inner {
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .sub_area .sub_content .content_inner {
    width: 100%;
    padding-bottom: 40px;
  }
}
.sub_area .sub_content .content_inner .ttl_wrap {
  width: 100%;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 1280px) {
  .sub_area .sub_content .content_inner .ttl_wrap {
    width: 92%;
  }
}
@media screen and (max-width: 767px) {
  .sub_area .sub_content .content_inner .ttl_wrap {
    width: 100%;
  }
}
.sub_area .sub_content .content_inner .ttl_wrap h3 {
  font-size: 3.6rem;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 920px) {
  .sub_area .sub_content .content_inner .ttl_wrap h3 {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 480px) {
  .sub_area .sub_content .content_inner .ttl_wrap h3 {
    font-size: 2.4rem;
  }
}
.sub_area .sub_content .content_inner .ttl_wrap .read_wrap {
  width: 100%;
  margin-top: 20px;
}
.sub_area .sub_content .content_inner .ttl_wrap .read_wrap .read {
  background-color: #fff;
  padding: 0px 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 10px;
  display: block;
}
.sub_area .sub_content .content_inner .ttl_wrap .read_wrap .read p {
  font-size: 3.6rem;
  font-weight: bold;
  color: #002BA2;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 920px) {
  .sub_area .sub_content .content_inner .ttl_wrap .read_wrap .read p {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 480px) {
  .sub_area .sub_content .content_inner .ttl_wrap .read_wrap .read p {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 920px) {
  .sub_area .sub_content .content_inner .ttl_wrap .read_wrap .pc_only p span {
    display: none;
  }
}
.sub_area .sub_content .content_inner .ttl_wrap .read_wrap .sp_only {
  display: none;
}
@media screen and (max-width: 920px) {
  .sub_area .sub_content .content_inner .ttl_wrap .read_wrap .sp_only {
    display: block;
  }
}
.sub_area .sub_content .content_inner .ttl_wrap ul {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
@media screen and (max-width: 920px) {
  .sub_area .sub_content .content_inner .ttl_wrap ul {
    display: block;
  }
}
.sub_area .sub_content .content_inner .ttl_wrap ul li {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 10px 0 0;
  background-color: #252525;
  padding: 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 1280px) {
  .sub_area .sub_content .content_inner .ttl_wrap ul li {
    margin-top: 10px;
  }
}
@media screen and (max-width: 480px) {
  .sub_area .sub_content .content_inner .ttl_wrap ul li {
    width: 100%;
  }
}
.sub_area .sub_content .content_inner .ttl_wrap ul li a {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  margin: 0 auto;
  height: 55px;
  position: relative;
  gap: 40px;
}
@media screen and (max-width: 480px) {
  .sub_area .sub_content .content_inner .ttl_wrap ul li a {
    justify-content: space-between;
    height: 40px;
    margin: 0;
    width: 100%;
    gap: unset;
  }
}
.sub_area .sub_content .content_inner .ttl_wrap ul li a img {
  width: auto;
  height: 100%;
  transition: all 0.6s;
}
.sub_area .sub_content .content_inner .ttl_wrap ul li a .arrow {
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  position: relative;
  display: block;
  flex-shrink: 0;
}
.sub_area .sub_content .content_inner .ttl_wrap ul li a .arrow::before {
  content: "";
  width: 30%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
.sub_area .sub_content .content_inner .ttl_wrap ul li a .arrow::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 56%;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.3s;
}
.sub_area .sub_content .content_inner .ttl_wrap ul li a .arrow {
  overflow: hidden;
}
.sub_area .sub_content .content_inner .ttl_wrap ul li a:hover img {
  opacity: 0.6;
}
.sub_area .sub_content .content_inner .ttl_wrap ul li a:hover .arrow::before {
  transform: translate(30px, -50%);
  opacity: 0;
}
.sub_area .sub_content .content_inner .ttl_wrap ul li a:hover .arrow::after {
  transform: translate(30px, -50%) rotate(45deg);
  opacity: 0;
}
.sub_area .sub_content .link_wrap {
  width: 30%;
  margin: 0 auto;
  padding-left: 40px;
  border-left: 1px solid #fff;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  .sub_area .sub_content .link_wrap {
    width: 100%;
    padding-left: 0;
    border-left: none;
    padding-top: 40px;
    border-top: 1px solid #fff;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 1280px) {
  .sub_area .sub_content .link_wrap .btn_w {
    margin-left: auto;
  }
}

/* about */
.about_area {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .about_area {
    padding: 60px 0;
  }
}
.about_area .article {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  .about_area .article {
    width: 100%;
  }
}
.about_area .article .read_content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: center;
}
@media screen and (max-width: 1080px) {
  .about_area .article .read_content {
    display: block;
  }
}
.about_area .article .read_content figure {
  width: 50%;
}
@media screen and (max-width: 1080px) {
  .about_area .article .read_content figure {
    width: 98%;
    margin-left: auto;
    z-index: 1;
    position: relative;
  }
}
.about_area .article .read_content figure img {
  width: 100%;
}
.about_area .article .read_content .txt_wrap {
  width: 46%;
  padding: 60px;
  box-sizing: border-box;
}
@media screen and (max-width: 1080px) {
  .about_area .article .read_content .txt_wrap {
    width: 96%;
    margin: -120px auto 0;
    padding: 0;
    position: relative;
    z-index: 2;
  }
}
@media screen and (max-width: 767px) {
  .about_area .article .read_content .txt_wrap {
    margin: -60px auto 0;
  }
}
.about_area .article .read_content .txt_wrap .read_wrap {
  width: 100%;
}
.about_area .article .read_content .txt_wrap .read_wrap span {
  background-color: #002BA2;
  padding: 0px 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 10px;
  display: block;
}
.about_area .article .read_content .txt_wrap .read_wrap span p {
  font-size: 3.6rem;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .about_area .article .read_content .txt_wrap .read_wrap span p {
    font-size: 2.4rem;
  }
}
.about_area .article .read_content .txt_wrap .txt {
  margin-top: 40px;
}
.about_area .article .read_content .txt_wrap .txt p {
  font-size: 2rem;
  line-height: 4rem;
  color: #252525;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .about_area .article .read_content .txt_wrap .txt p {
    font-size: 1.6rem;
    line-height: 3rem;
  }
}
.about_area .article .sub_content {
  width: 820px;
  margin: 100px auto 0;
}
@media screen and (max-width: 1080px) {
  .about_area .article .sub_content {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .about_area .article .sub_content {
    width: 90%;
  }
}
.about_area .article .sub_content .ttl_wrap {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 60px;
  width: -moz-fit-content;
  width: fit-content;
}
.about_area .article .sub_content .ttl_wrap span {
  width: auto;
  height: 64px;
  margin-top: -66px;
  display: block;
}
.about_area .article .sub_content .ttl_wrap span img {
  width: auto;
  height: 64px;
}
.about_area .article .sub_content .ttl_wrap h2 {
  font-size: 3rem;
  line-height: 3rem;
  color: #252525;
  font-weight: bold;
  position: relative;
}
.about_area .article .sub_content .ttl_wrap h2::first-letter {
  color: #002BA2;
}
.about_area .article .sub_content .ttl_wrap p {
  font-size: 1.6rem;
  line-height: 1.6rem;
  color: #252525;
  margin-top: 20px;
}
.about_area .article .sub_content .flex_wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .about_area .article .sub_content .flex_wrap {
    display: block;
  }
}
.about_area .article .sub_content .flex_wrap li {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .about_area .article .sub_content .flex_wrap li {
    width: 100%;
    margin-bottom: 40px;
  }
}
.about_area .article .sub_content .flex_wrap li figure {
  width: 100%;
  position: relative;
}
.about_area .article .sub_content .flex_wrap li figure img {
  width: 100%;
}
.about_area .article .sub_content .flex_wrap li figure .btm_logo {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
}
.about_area .article .sub_content .flex_wrap li .txt_inner {
  width: 100%;
  padding-top: 20px;
}
.about_area .article .sub_content .flex_wrap li .txt_inner p {
  font-size: 2rem;
  line-height: 2rem;
  color: #252525;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .about_area .article .sub_content .flex_wrap li .txt_inner p {
    font-size: 1.8rem;
  }
}
.about_area .article .sub_content .flex_wrap li .txt_inner .btn_mini {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-left: auto;
}
.about_area .article .sub_content .flex_wrap li .txt_inner .btn_mini a {
  font-size: 2.4rem;
  font-weight: bold;
  color: #252525;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 820px) {
  .about_area .article .sub_content .flex_wrap li .txt_inner .btn_mini a {
    font-size: 2.4rem;
    gap: 30px;
  }
}
.about_area .article .sub_content .flex_wrap li .txt_inner .btn_mini a .txt {
  position: relative;
}
.about_area .article .sub_content .flex_wrap li .txt_inner .btn_mini a .arrow {
  width: 40px;
  height: 40px;
  border: 1px solid #252525;
  border-radius: 50%;
  box-sizing: border-box;
}
@media screen and (max-width: 820px) {
  .about_area .article .sub_content .flex_wrap li .txt_inner .btn_mini a .arrow {
    width: 40px;
    height: 40px;
  }
}
.about_area .article .sub_content .flex_wrap li .txt_inner .btn_mini a .arrow {
  position: relative;
  display: block;
}
.about_area .article .sub_content .flex_wrap li .txt_inner .btn_mini a .arrow::before {
  content: "";
  width: 30%;
  height: 1px;
  background-color: #252525;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about_area .article .sub_content .flex_wrap li .txt_inner .btn_mini a .arrow::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #252525;
  position: absolute;
  top: 50%;
  left: 53%;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .about_area .article .sub_content .flex_wrap li .txt_inner .btn_mini a .arrow::after {
    width: 6px;
    height: 6px;
    left: 56%;
  }
}
.about_area .article .sub_content .flex_wrap li .txt_inner .btn_mini a .arrow::before {
  transition: all 0.3s;
}
.about_area .article .sub_content .flex_wrap li .txt_inner .btn_mini a .arrow {
  overflow: hidden;
}
.about_area .article .sub_content .flex_wrap li .txt_inner .btn_mini a:hover .txt::after {
  left: 0;
  visibility: visible;
  transform: scale(1, 1);
}
.about_area .article .sub_content .flex_wrap li .txt_inner .btn_mini a:hover .arrow::before {
  transform: translate(50px, -50%);
  opacity: 0;
}
.about_area .article .sub_content .flex_wrap li .txt_inner .btn_mini a:hover .arrow::after {
  transform: translate(50px, -50%) rotate(45deg);
  opacity: 0;
}
.about_area .article .sub_content .flex_wrap li .txt_inner .btn_mini a .txt::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  content: "";
  width: 100%;
  height: 0.15rem;
  visibility: hidden;
  transition: 0.3s;
  transform: scale(0, 1);
  transform-origin: left top;
  background-color: #252525;
}

/* company */
.company_area {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .company_area {
    padding: 60px 0;
  }
}
.company_area .article {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  .company_area .article {
    width: 100%;
  }
}
.company_area .article .read_content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: center;
}
@media screen and (max-width: 1080px) {
  .company_area .article .read_content {
    display: block;
  }
}
.company_area .article .read_content figure {
  width: 50%;
}
@media screen and (max-width: 1080px) {
  .company_area .article .read_content figure {
    width: 98%;
    margin-left: auto;
    z-index: 1;
    position: relative;
  }
}
.company_area .article .read_content figure img {
  width: 100%;
}
.company_area .article .read_content .txt_wrap {
  width: 46%;
  padding: 60px;
  box-sizing: border-box;
}
@media screen and (max-width: 1080px) {
  .company_area .article .read_content .txt_wrap {
    width: 96%;
    margin: -120px auto 0;
    padding: 0;
    position: relative;
    z-index: 2;
  }
}
@media screen and (max-width: 767px) {
  .company_area .article .read_content .txt_wrap {
    margin: -60px auto 0;
  }
}
.company_area .article .read_content .txt_wrap .read_wrap {
  width: 100%;
}
.company_area .article .read_content .txt_wrap .read_wrap span {
  background-color: #002BA2;
  padding: 0px 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 10px;
  display: block;
}
.company_area .article .read_content .txt_wrap .read_wrap span p {
  font-size: 3.6rem;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .company_area .article .read_content .txt_wrap .read_wrap span p {
    font-size: 2.4rem;
  }
}
.company_area .article .read_content .txt_wrap .txt {
  margin-top: 40px;
}
.company_area .article .read_content .txt_wrap .txt p {
  font-size: 2rem;
  line-height: 4rem;
  color: #252525;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .company_area .article .read_content .txt_wrap .txt p {
    font-size: 1.6rem;
    line-height: 3rem;
  }
}
.company_area .article .outline_content {
  width: 940px;
  margin: 100px auto 0;
}
@media screen and (max-width: 1080px) {
  .company_area .article .outline_content {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .company_area .article .outline_content {
    width: 90%;
  }
}
.company_area .article .outline_content .ttl_wrap {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 60px;
  width: -moz-fit-content;
  width: fit-content;
}
.company_area .article .outline_content .ttl_wrap span {
  width: auto;
  height: 64px;
  margin-top: -66px;
  display: block;
}
.company_area .article .outline_content .ttl_wrap span img {
  width: auto;
  height: 64px;
}
.company_area .article .outline_content .ttl_wrap h2 {
  font-size: 3rem;
  line-height: 3rem;
  color: #252525;
  font-weight: bold;
  position: relative;
}
.company_area .article .outline_content .ttl_wrap h2::first-letter {
  color: #002BA2;
}
.company_area .article .outline_content .ttl_wrap p {
  font-size: 1.6rem;
  line-height: 1.6rem;
  color: #252525;
  margin-top: 20px;
}
.company_area .article .outline_content dl {
  width: 100%;
  display: flex;
  padding: 40px 0;
  border-bottom: 2px solid #E8E8E8;
}
@media screen and (max-width: 767px) {
  .company_area .article .outline_content dl {
    display: block;
  }
}
.company_area .article .outline_content dl dt {
  width: 30%;
  font-size: 1.6rem;
  line-height: 1.6rem;
  color: #252525;
  font-weight: bold;
  padding-left: 60px;
}
@media screen and (max-width: 767px) {
  .company_area .article .outline_content dl dt {
    padding-left: 0;
    width: 100%;
    margin-bottom: 20px;
  }
}
.company_area .article .outline_content dl dd {
  width: 70%;
  font-size: 1.6rem;
  line-height: 1.6rem;
  color: #252525;
}
@media screen and (max-width: 767px) {
  .company_area .article .outline_content dl dd {
    width: 100%;
  }
}
.company_area .article .map_content {
  width: 940px;
  margin: 100px auto 0;
}
@media screen and (max-width: 1080px) {
  .company_area .article .map_content {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .company_area .article .map_content {
    width: 90%;
  }
}
.company_area .article .map_content .ttl_wrap {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 60px;
  width: -moz-fit-content;
  width: fit-content;
}
.company_area .article .map_content .ttl_wrap span {
  width: auto;
  height: 64px;
  margin-top: -66px;
  display: block;
}
.company_area .article .map_content .ttl_wrap span img {
  width: auto;
  height: 64px;
}
.company_area .article .map_content .ttl_wrap h2 {
  font-size: 3rem;
  line-height: 3rem;
  color: #252525;
  font-weight: bold;
  position: relative;
}
.company_area .article .map_content .ttl_wrap h2::first-letter {
  color: #002BA2;
}
.company_area .article .map_content .ttl_wrap p {
  font-size: 1.6rem;
  line-height: 1.6rem;
  color: #252525;
  margin-top: 20px;
}
.company_area .article .map_content .flex_wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .company_area .article .map_content .flex_wrap {
    display: block;
  }
}
.company_area .article .map_content .flex_wrap .txt_wrap {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .company_area .article .map_content .flex_wrap .txt_wrap {
    width: 100%;
    margin-bottom: 40px;
  }
}
.company_area .article .map_content .flex_wrap .txt_wrap h4 {
  font-size: 1.8rem;
  line-height: 1.8rem;
  color: #252525;
  font-weight: bold;
}
.company_area .article .map_content .flex_wrap .txt_wrap p {
  font-size: 1.6rem;
  line-height: 1.6rem;
  color: #252525;
  margin-top: 20px;
}
.company_area .article .map_content .flex_wrap iframe {
  width: 48%;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 767px) {
  .company_area .article .map_content .flex_wrap iframe {
    width: 100%;
  }
}

/* news_index */
.news_index_area {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .news_index_area {
    padding: 60px 0;
  }
}
.news_index_area .article {
  width: 920px;
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  .news_index_area .article {
    width: 90%;
  }
}
.news_index_area .article .ttl_wrap {
  text-align: left;
  margin-bottom: 60px;
  width: -moz-fit-content;
  width: fit-content;
}
.news_index_area .article .ttl_wrap span {
  width: auto;
  height: 64px;
  margin-top: -66px;
  display: block;
}
.news_index_area .article .ttl_wrap span img {
  width: auto;
  height: 64px;
}
.news_index_area .article .ttl_wrap h2 {
  font-size: 3rem;
  line-height: 3rem;
  color: #252525;
  font-weight: bold;
  position: relative;
}
.news_index_area .article .ttl_wrap h2::first-letter {
  color: #002BA2;
}
.news_index_area .article .ttl_wrap p {
  font-size: 1.6rem;
  line-height: 1.6rem;
  color: #252525;
  margin-top: 20px;
}
.news_index_area .article .news_list {
  width: 100%;
  margin: 0 auto;
}
.news_index_area .article .news_list li {
  padding: 14px 0;
  border-bottom: 1px solid #E8E8E8;
}
.news_index_area .article .news_list li a {
  display: flex;
  width: 100%;
  position: relative;
  align-items: center;
}
@media screen and (max-width: 820px) {
  .news_index_area .article .news_list li a {
    display: block;
  }
}
.news_index_area .article .news_list li a:hover .txt::after {
  left: 0;
  visibility: visible;
  transform: scale(1, 1);
}
.news_index_area .article .news_list li a:hover .arrow::before {
  transform: translate(50px, -50%);
  opacity: 0;
}
.news_index_area .article .news_list li a:hover .arrow::after {
  transform: translate(50px, -50%) rotate(45deg);
  opacity: 0;
}
.news_index_area .article .news_list li a .cap_wrap {
  display: flex;
  gap: 20px;
  margin-right: 30px;
  align-items: center;
  font-weight: 700;
}
@media screen and (max-width: 820px) {
  .news_index_area .article .news_list li a .cap_wrap {
    margin-bottom: 10px;
  }
}
.news_index_area .article .news_list li a .cap_wrap .date {
  font-size: 1.4rem;
  color: #252525;
}
.news_index_area .article .news_list li a .cap_wrap .cat {
  font-size: 1.4rem;
  color: #252525;
  border: 1px solid #252525;
  padding: 4px 10px;
}
.news_index_area .article .news_list li a .ttl {
  width: 100%;
  display: flex;
  align-items: center;
  flex: 1;
}
.news_index_area .article .news_list li a .ttl h3 {
  font-size: 1.6rem;
  color: #252525;
  width: 100%;
}
@media screen and (max-width: 820px) {
  .news_index_area .article .news_list li a .ttl h3 {
    width: 80%;
  }
}
.news_index_area .article .news_list li a .ttl .arrow {
  width: 40px;
  height: 40px;
  border: 1px solid #252525;
  border-radius: 50%;
  box-sizing: border-box;
  margin-left: auto;
}
@media screen and (max-width: 820px) {
  .news_index_area .article .news_list li a .ttl .arrow {
    width: 40px;
    height: 40px;
  }
}
.news_index_area .article .news_list li a .ttl .arrow {
  position: relative;
  display: block;
}
.news_index_area .article .news_list li a .ttl .arrow::before {
  content: "";
  width: 30%;
  height: 1px;
  background-color: #252525;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.news_index_area .article .news_list li a .ttl .arrow::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #252525;
  position: absolute;
  top: 50%;
  left: 53%;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .news_index_area .article .news_list li a .ttl .arrow::after {
    width: 6px;
    height: 6px;
    left: 56%;
  }
}
.news_index_area .article .news_list li a .ttl .arrow::before {
  transition: all 0.3s;
}
.news_index_area .article .news_list li a .ttl .arrow {
  overflow: hidden;
}

/* news */
.news_post_area {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .news_post_area {
    padding: 60px 0;
  }
}
.news_post_area .article {
  width: 920px;
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  .news_post_area .article {
    width: 90%;
  }
}
.news_post_area .article h1 {
  font-size: 3.2rem;
  color: #252525;
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 820px) {
  .news_post_area .article h1 {
    font-size: 2.8rem;
  }
}
.news_post_area .article .cap_wrap {
  display: block;
  margin-bottom: 20px;
  font-weight: 700;
}
@media screen and (max-width: 820px) {
  .news_post_area .article .cap_wrap {
    margin-bottom: 10px;
  }
}
.news_post_area .article .cap_wrap .date {
  font-size: 1.4rem;
  color: #252525;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
}
.news_post_area .article .cap_wrap .date p {
  margin-bottom: 0;
  font-size: 1.4rem;
}
.news_post_area .article .cap_wrap .cat {
  font-size: 1.4rem;
  color: #252525;
  border: 1px solid #252525;
  padding: 4px 10px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.news_post_area .article .cap_wrap .cat p {
  margin-bottom: 0;
  font-size: 1.4rem;
}
.news_post_area .article figure {
  width: 100%;
  margin-bottom: 30px;
}
.news_post_area .article figure img {
  width: 100%;
}
.news_post_area .article h2 {
  font-size: 2.4rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 30px;
  background-color: #002BA2;
  padding: 2px 14px;
  border-radius: 6px;
}
.news_post_area .article h3 {
  font-size: 2rem;
  color: #252525;
  font-weight: bold;
  margin-bottom: 30px;
  border-bottom: 1px solid #002BA2;
  padding-bottom: 10px;
}
.news_post_area .article h4 {
  font-size: 1.8rem;
  color: #252525;
  font-weight: bold;
  margin-bottom: 30px;
  border-left: 4px solid #002BA2;
  padding-left: 10px;
}
.news_post_area .article h5 {
  font-size: 1.6rem;
  color: #002BA2;
  font-weight: bold;
  margin-bottom: 30px;
}
.news_post_area .article h6 {
  font-size: 1.6rem;
  color: #252525;
  background-color: #EAEBEC;
  font-weight: bold;
  margin-bottom: 30px;
  padding: 2px 14px;
  border-radius: 6px;
}
.news_post_area .article p {
  font-size: 1.6rem;
  color: #252525;
  margin-bottom: 30px;
}
.news_post_area .article .link_area {
  width: 100%;
  border-top: 1px solid #CCCCCC;
  padding-top: 40px;
}
.news_post_area .article .link_area .sns_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news_post_area .article .link_area .sns_link ul {
  display: flex;
  gap: 16px;
  margin: 0 auto 100px;
}
.news_post_area .article .link_area .sns_link ul li {
  width: 30px;
}
.news_post_area .article .link_area .sns_link ul li a {
  width: 100%;
}
.news_post_area .article .link_area .sns_link ul li a img {
  width: 100%;
}
.news_post_area .article .link_area .btn_bk {
  margin: 0 auto;
}

/* contact */
.contact_form {
  padding: 100px 0;
}
.contact_form .article {
  width: 920px;
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  .contact_form .article {
    width: 96%;
  }
}
.contact_form .article .ttl_wrap {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 60px;
  width: -moz-fit-content;
  width: fit-content;
}
.contact_form .article .ttl_wrap span {
  width: auto;
  height: 64px;
  margin-top: -66px;
  display: block;
}
.contact_form .article .ttl_wrap span img {
  width: auto;
  height: 64px;
}
.contact_form .article .ttl_wrap h2 {
  font-size: 3rem;
  line-height: 3rem;
  color: #252525;
  font-weight: bold;
  position: relative;
}
.contact_form .article .ttl_wrap h2::first-letter {
  color: #002BA2;
}
.contact_form .article .ttl_wrap p {
  font-size: 1.6rem;
  line-height: 1.6rem;
  color: #252525;
  margin-top: 20px;
}
.contact_form .article .form_wrap {
  width: 100%;
}

/* PP */
.pp_area {
  padding: 100px 0;
}
.pp_area .article {
  width: 920px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 1080px) {
  .pp_area .article {
    width: 92%;
    box-sizing: border-box;
  }
}
.pp_area .article .ttl_wrap {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 60px;
  width: -moz-fit-content;
  width: fit-content;
}
.pp_area .article .ttl_wrap span {
  width: auto;
  height: 64px;
  margin-top: -66px;
  display: block;
}
.pp_area .article .ttl_wrap span img {
  width: auto;
  height: 64px;
}
.pp_area .article .ttl_wrap h2 {
  font-size: 3rem;
  line-height: 3rem;
  color: #252525;
  font-weight: bold;
  position: relative;
}
.pp_area .article .ttl_wrap h2::first-letter {
  color: #002BA2;
}
.pp_area .article .ttl_wrap p {
  font-size: 1.6rem;
  line-height: 1.6rem;
  color: #252525;
  margin-top: 20px;
}
.pp_area .article .content_wrap {
  width: 100%;
  box-sizing: border-box;
}
.pp_area .article .content_wrap .read_wrap {
  width: 100%;
  margin-bottom: 30px;
}
.pp_area .article .content_wrap .read_wrap p {
  font-size: 1.6rem;
  color: #333;
  font-weight: 700;
  line-height: 2.8rem;
}
.pp_area .article .content_wrap ol {
  width: 100%;
  padding-left: 30px;
  box-sizing: border-box;
}
.pp_area .article .content_wrap ol li {
  font-size: 1.6rem;
  color: #333;
  line-height: 2.8rem;
  margin-bottom: 10px;
}
.pp_area .article .content_wrap ol li a {
  display: block;
  word-wrap: break-word;
}
.pp_area .article .content_wrap ol li h4 {
  font-size: 1.6rem;
  color: #333;
  line-height: 2.8rem;
  margin-bottom: 10px;
  margin-top: 10px;
}
.pp_area .article .content_wrap ol li ul {
  margin-bottom: 20px;
  margin-top: 20px;
  box-sizing: border-box;
}/*# sourceMappingURL=style.css.map */