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

html {
  font-size: 62.5%;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.6rem;
  color: #000;
  overflow-x: hidden;
  margin: 0;
  min-height: 100vh;
  position: relative;
}

/********************************************
ヘッダーcss
********************************************/
#header {
  z-index: 9999;
  top: 0;
  position: fixed;
  background-color: #fff;
  width: 100%;
  height: 82px;
  box-shadow: 0px 5px 10px -7px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 1100px) {
  #header {
    padding: 0.5em;
    height: 53px;
  }
}

.h_inner {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
  padding: 0 2em;
}
@media screen and (max-width: 1100px) {
  .h_inner {
    padding: 0;
  }
}
@media screen and (max-width: 480px) {
  .h_inner {
    justify-content: flex-start;
  }
}

.h_logo {
  max-width: 318px;
}
@media screen and (max-width: 768px) {
  .h_logo {
    max-width: 240px;
  }
}
.h_logo a {
  display: block;
}
.h_logo a img {
  width: 100%;
}

/* ハンバーガーアイコン */
.menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 35px;
  height: 53px;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 10px;
  z-index: 101; /* モバイルメニューより上 */
}
@media screen and (max-width: 1100px) {
  .menu-btn {
    z-index: 9999;
    display: block;
  }
}

.menu-btn .bar {
  position: absolute;
  width: 100%;
  height: 3px;
  left: 0;
  background-color: #000;
  display: block;
  border-radius: 2px;
  transition: all 0.3s ease; /* 変形のアニメーション */
}

.menu-btn .bar:nth-child(1) {
  top: 15px;
}

.menu-btn .bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.menu-btn .bar:nth-child(3) {
  bottom: 14px;
}

/* 開閉時のアイコン変形 */
.menu-btn.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 8px);
}

.menu-btn.active .bar:nth-child(2) {
  opacity: 0; /* 真ん中のラインを非表示 */
}

.menu-btn.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -10px);
}

/* 初期状態では非表示（モバイル以下で表示） */
.h_menu {
  width: calc(100% - 318px);
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.h_menu .close_modal {
  display: none;
  width: 100%;
  height: 100%;
  position: relative;
  background-color: rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 1100px) {
  .h_menu .close_modal {
    display: block;
  }
}
@media screen and (max-width: 1100px) {
  .h_menu {
    display: flex;
    visibility: hidden;
    position: fixed;
    top: 53px;
    left: 100%;
    width: 100%;
    opacity: 0;
    height: 100vh;
    transition: all 0.5s;
    margin-bottom: 1em;
  }
}
.h_menu.active {
  visibility: visible;
  left: 0%;
  opacity: 1;
}

.h_menu nav {
  background-color: #fff;
  padding: 1em;
  border-radius: 8px;
  width: 90%;
}

.h_menu ul {
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 1100px) {
  .h_menu ul {
    top: 0;
    position: absolute;
    right: 0;
    height: 100%;
    background-color: #ebebeb;
    width: 60%;
    overflow-y: scroll;
  }
}
@media screen and (max-width: 480px) {
  .h_menu ul {
    width: 80%;
  }
}

.h_menu ul li {
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .h_menu ul li {
    margin: 0;
  }
}

.h_menu ul li a {
  text-decoration: none;
  font-size: 1.6rem;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}
.h_menu ul li a span {
  font-size: 0.8em;
}
@media screen and (max-width: 1100px) {
  .h_menu ul li a {
    padding: 1.5em 1em;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    display: flex;
  }
}
@media screen and (max-width: 480px) {
  .h_menu ul li a {
    font-size: 1.4rem;
  }
}
.h_menu ul li a:hover {
  color: #2e76bc;
}

@media screen and (min-width: 1100px) {
  .menu-btn {
    display: none; /* PCではハンバーガーアイコン非表示 */
  }
  .h_menu {
    display: flex; /* PCでは通常メニュー表示 */
    position: static;
    background-color: transparent;
    justify-content: end;
    height: 100%;
    z-index: 9999;
  }
  .h_menu ul {
    display: flex; /* PCでは横並びに表示 */
    list-style: none;
    width: 100%;
    justify-content: end;
  }
  .h_menu ul li {
    height: 100%;
  }
  .h_menu ul li a {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
    padding: 1em 2em;
  }
}
@media screen and (min-width: 1100px) and (max-width: 480px) {
  .h_menu ul li a {
    padding: 1em 2em;
  }
}
@media screen and (min-width: 1100px) {
  .h_menu ul li a:hover {
    color: #007BFF;
  }
}
.nav-item--hover.open > a::after {
  width: 13px;
  height: 6px;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}
@media screen and (max-width: 1100px) {
  .nav-item--hover.open .dropdown {
    display: flex !important;
  }
}
.nav-item--hover > a {
  cursor: pointer;
  position: relative;
}
.nav-item--hover > a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 13px;
  height: 6px;
  background: #1f1f1f;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
@media screen and (max-width: 1100px) {
  .nav-item--hover > a::after {
    right: 1em;
  }
}

.h_menu .nav-item--hover {
  position: relative;
}
.h_menu .nav-item--hover:hover .dropdown {
  display: flex;
}
@media screen and (max-width: 1100px) {
  .h_menu .nav-item--hover:hover .dropdown {
    display: none;
  }
}

.nav_lang {
  background-color: #2e76bc;
  margin-left: 1em;
}
@media screen and (max-width: 1100px) {
  .nav_lang {
    margin-left: 0;
  }
}
.nav_lang > a {
  color: #fff !important;
}
.nav_lang > a::after {
  right: 10px;
  background-color: #fff;
}
.nav_lang > a .dropdown li a {
  color: #000;
}

.active_dropdown {
  background-color: #b1b1b1 !important;
  color: #4d4d4d !important;
}

.h_menu .dropdown {
  position: absolute;
  transition: all 0.5s;
  display: none;
  flex-direction: column;
  top: 100%;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .h_menu .dropdown {
    position: unset;
  }
}
.h_menu .dropdown li {
  background-color: #fff;
  margin: 0;
  border-bottom: 1px solid #f7f7f7;
}
.h_menu .dropdown li:last-child {
  border-bottom: 0;
}
.h_menu .dropdown li a {
  width: 100%;
  padding: 1em;
  font-size: 1.4rem;
}

/* タブのスタイル */
.greeting_tab ul {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
  width: 100%;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .greeting_tab ul {
    display: flex;
  }
}

.greeting_tab ul li {
  cursor: pointer;
  padding: 10px 20px;
  border: 1px solid #ddd;
  text-align: center;
  width: 49%;
  background-color: #f1f1f1;
  font-size: 1.2rem;
  line-height: 1.6em;
}

.greeting_tab ul li.active {
  background-color: #007bff;
  color: white;
}

/* コンテンツのスタイル */
@media screen and (max-width: 768px) {
  .greeting_flex > div {
    display: none; /* 初期は非表示 */
  }
}

@media screen and (max-width: 768px) {
  .greeting_flex > div.active {
    display: block; /* アクティブなものだけ表示 */
  }
}

/********************************************
KVcss
********************************************/
.slider--iterm {
  margin: 0 1em;
}
@media screen and (max-width: 768px) {
  .slider--iterm {
    margin: 0;
  }
}

.slick-dots {
  bottom: 29px !important;
}

.kv_sec {
  display: flex;
  margin: 82px auto 0;
  width: 100%;
  height: calc(100vh - 82px);
  position: relative;
  margin-bottom: 10rem;
}
.kv_sec .kv_sec--img {
  width: 100%;
  height: 100%;
}
.kv_sec .kv_sec--img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.kv_sec::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  background-image: radial-gradient(#000 30%, transparent 31%), radial-gradient(#000 30%, transparent 31%);
  background-size: 4px 4px;
  background-position: 0 0, 2px 2px;
  opacity: 0.2;
}
@media screen and (max-width: 768px) {
  .kv_sec {
    margin-top: 53px;
    height: calc(100vh - 53px);
  }
}

.kv_sec--inner {
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.kv_sec--inner--mainttl {
  text-align: center;
  font-weight: 400;
  font-size: 7.2rem;
  line-height: 1.4em;
  margin-bottom: 0.4em;
  color: #fff;
  text-shadow: 1px 1px 2px #000;
}
@media screen and (max-width: 1100px) {
  .kv_sec--inner--mainttl {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 480px) {
  .kv_sec--inner--mainttl {
    font-size: clamp(2.4rem, 8.53vw, 4rem);
  }
}

.kv_sec--inner--subttl {
  text-align: center;
  font-size: 4.8rem;
  margin-bottom: 1em;
  line-height: 1.6em;
}
@media screen and (max-width: 1100px) {
  .kv_sec--inner--subttl {
    font-size: 2.4rem;
  }
}

.kv_sec--inner--enttl {
  text-align: center;
  font-weight: bold;
  line-height: 1.4em;
  font-size: 4rem;
  color: #fff;
  text-shadow: 1px 1px 2px #000;
}
@media screen and (max-width: 1100px) {
  .kv_sec--inner--enttl {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 480px) {
  .kv_sec--inner--enttl {
    font-size: clamp(1.6rem, 4.8vw, 2rem);
  }
}

.us_kv_sec--inner--img {
  margin: 3em auto 0;
  aspect-ratio: 16/9;
  max-width: 550px;
  border: 10px solid #192C51;
}
@media screen and (max-width: 768px) {
  .us_kv_sec--inner--img {
    margin: 2em 1em 0;
  }
}
.us_kv_sec--inner--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider {
  height: 100vh;
  overflow: hidden;
}

.sec--misson--txt {
  font-size: 1.8rem;
  line-height: 2em;
  padding: 3em 2em;
  color: #2e76bc;
  font-weight: bold;
  border-radius: 0.5em;
  box-shadow: 0px 0px 10px -4px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .sec--misson--txt {
    padding: 2em 1em;
    font-size: 1.6rem;
  }
}
.sec--misson--txt::before {
  content: "";
  aspect-ratio: 1114/769;
  display: block;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  width: 40%;
  background-image: url(../img/us_kv_bg.svg);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 7;
  opacity: 0.5;
}
@media screen and (max-width: 480px) {
  .sec--misson--txt::before {
    transform: translateY(0);
    top: auto;
    bottom: 0;
    width: 100%;
  }
}

.slick-prev,
.slick-next {
  z-index: 9000 !important;
}
.slick-prev::before,
.slick-next::before {
  font-size: 3rem !important;
}
@media screen and (max-width: 480px) {
  .slick-prev::before,
  .slick-next::before {
    font-size: 1.8rem !important;
  }
}

.slick-prev {
  left: 18px !important;
}

.slick-next {
  right: 28px !important;
}

.mb04 {
  margin-bottom: 4rem !important;
}

.mb02 {
  margin-bottom: 2rem !important;
}

/********************************************
共通css
********************************************/
.sec_inner {
  padding: 10rem 1.6em 10rem;
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sec_inner {
    padding: 6rem 1.6em 6rem;
  }
}
@media screen and (max-width: 480px) {
  .sec_inner {
    padding: 6rem 1em 4rem;
  }
}

.sec_ttl {
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  font-size: 3.2rem;
  position: relative;
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  .sec_ttl {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 480px) {
  .sec_ttl {
    line-height: 1.6em;
    font-size: 2.4rem;
  }
}
.sec_ttl::after {
  content: "";
  width: 1.5em;
  height: 0.4rem;
  bottom: 150%;
  position: absolute;
  left: 0;
  background-color: #2e76bc;
}

.breadcrumbs {
  max-width: 1280px;
  padding: 0 1.6rem;
  margin: 0 auto 8rem;
}
@media screen and (max-width: 480px) {
  .breadcrumbs {
    margin: 0 auto 4rem;
  }
}
.breadcrumbs ul {
  display: flex;
}
.breadcrumbs ul li {
  margin-right: 2em;
  line-height: 1.6em;
  position: relative;
  font-size: 1.4rem;
}
@media screen and (max-width: 480px) {
  .breadcrumbs ul li {
    font-size: 1.2rem;
  }
}
.breadcrumbs ul li a {
  color: #000;
}
.breadcrumbs ul li::after {
  content: ">";
  position: absolute;
  top: 50%;
  right: -1.5em;
  transform: translateY(-50%);
}
.breadcrumbs ul li:last-child {
  margin-right: 0;
}
.breadcrumbs ul li:last-child::after {
  display: none;
}

.page_anc {
  max-width: 1280px;
  margin: 0 auto;
}
.page_anc ul {
  padding: 0 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;
}
@media screen and (max-width: 768px) {
  .page_anc ul {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .page_anc ul {
    gap: 1em 0.5em;
  }
}
@media screen and (max-width: 768px) {
  .page_anc ul li {
    width: 48%;
  }
}
.page_anc ul a {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
@media screen and (max-width: 480px) {
  .page_anc ul a {
    font-size: 1.2rem;
  }
}
.page_anc ul a::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 13px;
  margin-right: 1em;
  background: #1f1f1f;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
.page_anc ul a:hover {
  color: #2e76bc;
  text-decoration: underline;
}
.page_anc ul a:hover::before {
  background: #2e76bc;
}

.pagetop {
  width: 80px;
  background-color: #2e76bc;
  position: fixed;
  right: 1em;
  bottom: 1em;
  color: #FFF;
  padding: 2em 1em 1em 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 9998;
}
@media screen and (max-width: 480px) {
  .pagetop {
    width: 40px;
    font-size: 1.2rem;
  }
}
.pagetop::after {
  content: "";
  position: absolute;
  top: 1em;
  display: inline-block;
  width: 13px;
  height: 6px;
  background: #fff;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

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

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

/********************************************
sec01css
********************************************/
.sec_news--li {
  overflow-y: hidden;
}

.sec_news--li.scroll-enabled {
  overflow-y: auto;
}

.sec_news--item {
  border-top: 1px solid #4d4d4d;
}
.sec_news--item:last-child {
  border-bottom: 1px solid #4d4d4d;
}
.sec_news--item a {
  padding: 2em 1.5em;
  display: flex;
  text-decoration: none;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 480px) {
  .sec_news--item a {
    padding: 1em 1em;
  }
}
.sec_news--item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  transition: all 0.5s;
  height: 1px;
  background-color: #000;
}

.sec_news--data {
  width: 12rem;
  text-align: center;
  background-color: #000;
  padding: 0.5em 0;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .sec_news--data {
    font-size: 1.4rem;
    width: 10rem;
  }
}

.sec_news--detail {
  width: calc(100% - 12rem);
  padding: 0 1em;
  color: #000;
  line-height: 1.6em;
  font-weight: 600;
  transition: all 0.5s;
}
@media screen and (max-width: 480px) {
  .sec_news--detail {
    font-size: 1.4rem;
    width: calc(100% - 10rem);
  }
}

/********************************************
sec02css
********************************************/
.sec_department--btns--item {
  margin-bottom: 4rem;
}

.sec_department--btns--inner {
  border-radius: 1rem;
  display: flex;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-decoration: none;
  position: relative;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .sec_department--btns--inner {
    flex-direction: column;
  }
}
.sec_department--btns--inner::after {
  content: "";
  border-radius: 1rem;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  top: 0;
  left: 0;
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
}
.sec_department--btns--inner:hover::after {
  background: rgba(0, 0, 0, 0.4);
}
.sec_department--btns--inner:hover .sec_department--btns--item--left h3, .sec_department--btns--inner:hover .sec_department--btns--item--left h4 {
  color: #fff;
}
.sec_department--btns--inner:hover .sec_department--btns--item--right {
  color: #fff;
}
.sec_department--btns--inner:hover .arrow_b {
  animation-name: transformRightLeft;
  animation-delay: 0s;
}
.sec_department--btns--inner:hover .arrow_a {
  animation-name: transformLeftRight;
  animation-delay: 0.2s;
}

.sec_department--btns--inner01 {
  padding: 10rem 6rem;
  background-image: url("../img/btnbg_01.jpg");
}
@media screen and (max-width: 768px) {
  .sec_department--btns--inner01 {
    padding: 8rem 3rem;
  }
}

.sec_department--btns--inner02 {
  padding: 4rem 6rem;
  background-image: url("../img/us_bgimg.jpg");
}
@media screen and (max-width: 768px) {
  .sec_department--btns--inner02 {
    padding: 3rem 3rem;
  }
}

.sec_department--btns--item--left {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sec_department--btns--item--left {
    width: 100%;
    margin-bottom: 2em;
  }
}
.sec_department--btns--item--left h3 {
  font-size: 3.2rem;
  margin-bottom: 0.5em;
  color: #000;
  transition: all 0.5s;
  line-height: 1.4em;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .sec_department--btns--item--left h3 {
    font-size: 2.4rem;
  }
}
.sec_department--btns--item--left h4 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 1em;
  color: #000;
  transition: all 0.5s;
}
@media screen and (max-width: 480px) {
  .sec_department--btns--item--left h4 {
    font-size: 1.8rem;
  }
}

.sec_department--btns--item--right {
  width: 60%;
  line-height: 1.8em;
  color: #000;
  position: relative;
  z-index: 1;
  transition: all 0.5s;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .sec_department--btns--item--right {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .sec_department--btns--item--right {
    font-size: 1.4rem;
  }
}

.sec_department--btn--object {
  display: flex;
  width: 70%;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 5em;
  padding: 0.4em;
}
@media screen and (max-width: 768px) {
  .sec_department--btn--object {
    width: 100%;
  }
}

.sec_department--btn--txt {
  width: calc(100% - 37px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-weight: bold;
  font-size: 1.4rem;
}

.sec_department--btn--arrow {
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #2e76bc;
  position: relative;
  overflow: hidden;
  max-width: 37px;
  min-width: 37px;
}

.arrow_a,
.arrow_b {
  position: absolute;
  top: 21%;
  right: 33%;
  animation-fill-mode: forwards;
  animation-duration: 0.6s;
}

.arrow_a {
  transform: translateX(-150%);
}

@keyframes transformLeftRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes transformRightLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(200%);
  }
}
/********************************************
sec03css
********************************************/
.sec_03 {
  background-color: #EBEBEB;
}

.sec_companyarea--ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2em;
}
@media screen and (max-width: 480px) {
  .sec_companyarea--ttl {
    margin-bottom: 1em;
  }
}

.sec_companyarea--ttlimg {
  width: 30%;
  margin-right: 1em;
}
.sec_companyarea--ttlimg img {
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .sec_companyarea--ttlimg {
    min-width: 319px;
  }
}
@media screen and (max-width: 480px) {
  .sec_companyarea--ttlimg {
    min-width: 234px;
    margin-right: 0.5em;
  }
}

.sec_companyarea--ttltxt {
  font-size: 3.2rem;
  font-weight: bold;
  padding-bottom: 0.2em;
}
@media screen and (max-width: 1100px) {
  .sec_companyarea--ttltxt {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 480px) {
  .sec_companyarea--ttltxt {
    font-size: 2rem;
  }
}

.sec_companyarea--btn {
  width: 49%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.sec_companyarea--btn h4 {
  margin-bottom: 2em;
  font-weight: bold;
  font-size: 1.8rem;
}
@media screen and (max-width: 1100px) {
  .sec_companyarea--btn {
    width: 100%;
  }
}
.sec_companyarea--btn .sec_department--btn--object {
  text-decoration: none;
  max-width: 500px;
}
.sec_companyarea--btn .sec_department--btn--object:hover .arrow_b {
  animation-name: transformRightLeft;
  animation-delay: 0s;
}
.sec_companyarea--btn .sec_department--btn--object:hover .arrow_a {
  animation-name: transformLeftRight;
  animation-delay: 0.2s;
}

/********************************************
footercss
********************************************/
footer {
  background-color: #262626;
  padding: 2em 2em 1em;
}

.f_inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
.f_inner p {
  color: #fff;
  font-size: 1.4rem;
}

.f_inner--data {
  width: 100%;
  border-bottom: 1px solid #FFF;
  padding-bottom: 2em;
}

.f_inner--img {
  margin-bottom: 1em;
  max-width: 250px;
}
@media screen and (max-width: 480px) {
  .f_inner--img {
    margin-bottom: 1em;
  }
}
.f_inner--img img {
  width: 100%;
}

.f_inner--data--co {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
@media screen and (max-width: 768px) {
  .f_inner--data--co {
    flex-direction: column;
    align-items: center;
  }
}
.f_inner--data--co p {
  margin-bottom: 1em;
}

.copy {
  padding-top: 1em;
}

@media screen and (max-width: 768px) {
  .f_inner--data--co--txt {
    width: 100%;
    margin-bottom: 2em;
  }
}

.f_inner--data--co--sns ul {
  display: flex;
  width: 200px;
  justify-content: space-around;
}
.f_inner--data--co--sns ul li a {
  display: block;
  aspect-ratio: 1/1;
  width: 40px;
}
.f_inner--data--co--sns ul li a:hover {
  opacity: 0.8;
}
.f_inner--data--co--sns ul li a img {
  width: 100%;
}

/********************************************
下層ページcss
********************************************/
.p_kv_sec {
  margin-top: 82px;
  width: 100%;
  height: 350px;
  background-image: url("../img/pkv.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin-bottom: 1em;
}
.p_kv_sec::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
}
@media screen and (max-width: 1100px) {
  .p_kv_sec {
    height: 300px;
  }
}
@media screen and (max-width: 768px) {
  .p_kv_sec {
    height: 250px;
    margin-top: 53px;
  }
}
@media screen and (max-width: 480px) {
  .p_kv_sec {
    height: 150px;
  }
}

.p_kv_sec--inner {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}
@media screen and (max-width: 480px) {
  .p_kv_sec--inner {
    width: 90%;
  }
}

.p_kv_sec--inner--mainttl {
  font-size: 4.8rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .p_kv_sec--inner--mainttl {
    font-size: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .p_kv_sec--inner--mainttl {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 480px) {
  .p_kv_sec--inner--mainttl {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 480px) {
  .us_p_kv_sec--inner--mainttl {
    font-size: 2rem !important;
  }
}

.sec_mission {
  width: 100%;
  background-image: url("../img/mission.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  align-items: center;
  display: flex;
  height: 450px;
  justify-content: flex-start;
  border-radius: 1.9rem;
}
@media screen and (max-width: 1100px) {
  .sec_mission {
    background-size: contain;
  }
}
@media screen and (max-width: 768px) {
  .sec_mission {
    background-image: url("../img/missionsp.jpg");
    height: auto;
    flex-direction: column;
    background-size: cover;
    aspect-ratio: 454/430;
    justify-content: end;
    background-position: center top;
  }
}
@media screen and (max-width: 480px) {
  .sec_mission {
    aspect-ratio: 454/500;
  }
}

.sec_mission_text {
  font-family: "Noto Serif JP", serif;
  border-radius: 0.5rem;
  padding: 1em;
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.8rem;
  text-shadow: 0px 0px 6px #fff;
  text-align: center;
  font-weight: bold;
  line-height: 1.8em;
}
@media screen and (max-width: 1100px) {
  .sec_mission_text {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .sec_mission_text {
    width: 100%;
    font-size: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .sec_mission_text {
    font-size: 1.6rem;
  }
}

.sec_p_department {
  display: flex;
}
@media screen and (max-width: 768px) {
  .sec_p_department {
    flex-direction: column;
  }
}

.sec_p_department--list {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .sec_p_department--list {
    width: 100%;
  }
}
.sec_p_department--list li {
  margin-left: 1.5em;
  position: relative;
  margin-bottom: 3em;
}
@media screen and (max-width: 480px) {
  .sec_p_department--list li {
    margin-bottom: 2em;
  }
}
.sec_p_department--list li h3 {
  position: relative;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 1.2em;
}
@media screen and (max-width: 1100px) {
  .sec_p_department--list li h3 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .sec_p_department--list li h3 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .sec_p_department--list li h3 {
    line-height: 1.4em;
  }
}
.sec_p_department--list li h3::after {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 0.4rem;
  background-color: #2e76bc;
  position: absolute;
  top: 50%;
  left: -1.2em;
  transform: translateY(-50%);
}
.sec_p_department--list li p {
  line-height: 1.6em;
}
@media screen and (max-width: 480px) {
  .sec_p_department--list li p {
    font-size: 1.4rem;
  }
}

.sec_p_department--img {
  width: 40%;
}
@media screen and (max-width: 1366px) {
  .sec_p_department--img {
    padding-left: 1em;
  }
}
@media screen and (max-width: 768px) {
  .sec_p_department--img {
    width: 100%;
    padding-left: 0;
  }
}
.sec_p_department--img img {
  width: 100%;
}

.sec_flow {
  background-color: #f7f7f7;
}

.sec_p_flow ul {
  display: flex;
  gap: 40px 10px;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .sec_p_flow ul {
    flex-direction: column;
    gap: 28px 10px;
  }
}
.sec_p_flow ul li {
  width: calc(33.3333333333% - 30px);
  border: 1px solid #2e76bc;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec_p_flow ul li {
    width: 100%;
  }
}
.sec_p_flow ul li:nth-of-type(3)::after {
  display: none;
}
.sec_p_flow ul li:nth-of-type(6)::after {
  display: none;
}
.sec_p_flow ul li:nth-of-type(7)::after {
  display: none;
}
.sec_p_flow ul li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 105%;
  transform: translateY(-50%);
  display: inline-block;
  width: 14px;
  height: 32px;
  background: #2e76bc;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}
@media screen and (max-width: 768px) {
  .sec_p_flow ul li::after {
    display: none;
  }
}
.sec_p_flow ul li::before {
  content: "";
  position: absolute;
  top: 105%;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  width: 32px;
  height: 14px;
  background: #2e76bc;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
@media screen and (max-width: 768px) {
  .sec_p_flow ul li::before {
    display: inline-block;
  }
}
.sec_p_flow ul li:last-child {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sec_p_flow ul li:last-child::before {
    display: none;
  }
}

.sec_p_flow--num {
  width: 100%;
  display: flex;
  font-size: 2.4rem;
  color: #fff;
  text-align: center;
  padding: 0.5em;
  background-color: #2e76bc;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .sec_p_flow--num {
    font-size: 1.8rem;
  }
}
.sec_p_flow--num strong {
  font-weight: bold;
  font-size: 1.3em;
  margin-left: 2px;
}

.sec_p_flow--inner {
  padding: 2em 1em 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .sec_p_flow--inner {
    flex-direction: row;
    padding: 1em 1em 0.5em;
  }
}

.sec_p_flow--txt {
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 1em;
  line-height: 1.6em;
}
@media screen and (max-width: 768px) {
  .sec_p_flow--txt {
    order: 1;
  }
}
@media screen and (max-width: 480px) {
  .sec_p_flow--txt {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 768px) {
  .sec_p_flow--img {
    order: 0;
  }
}
@media screen and (max-width: 480px) {
  .sec_p_flow--img {
    width: 25%;
  }
}
.sec_p_flow--img img {
  width: 100%;
}

.sec_manufacturer img {
  width: 100%;
}

.sec_company--table table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}
@media screen and (max-width: 480px) {
  .sec_company--table table tr {
    display: flex;
    flex-direction: column;
  }
}
.sec_company--table table th {
  width: 250px;
  padding: 1em;
  color: #2e76bc;
  font-weight: 800;
  text-align: left;
  border-bottom: 1px solid #2e76bc;
}
@media screen and (max-width: 768px) {
  .sec_company--table table th {
    width: 150px;
  }
}
@media screen and (max-width: 480px) {
  .sec_company--table table th {
    width: 100%;
    font-size: 1.4rem;
  }
}
.sec_company--table table td {
  line-height: 1.6em;
  padding: 1.5em;
  border-bottom: 1px solid #b1b1b1;
  word-break: keep-all;
}
@media screen and (max-width: 480px) {
  .sec_company--table table td {
    width: 100%;
    font-size: 1.4rem;
    padding: 1em 1em 2em;
    border-bottom: 0;
  }
}

.sec_company--datablock {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 1em 20px;
}

.sec_company--datablock--ttl {
  font-weight: 600;
  grid-column: 1/2;
  min-width: 90px;
}

.sec_company--datablock--txt {
  grid-column: 2/3;
  margin-bottom: 0;
}

.sec_company--map {
  margin-top: 4rem;
}
.sec_company--map iframe {
  aspect-ratio: 16/5;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sec_company--map iframe {
    aspect-ratio: 16/9;
  }
}

.sec_company--partner {
  margin-top: 3em;
}
.sec_company--partner h3 {
  font-size: 3.2rem;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .sec_company--partner h3 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 480px) {
  .sec_company--partner h3 {
    font-size: 2.4rem;
  }
}
.sec_company--partner h4 {
  display: flex;
  font-size: 2.4rem;
  font-weight: bold;
  color: #2e76bc;
  margin-bottom: 1em;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .sec_company--partner h4 {
    flex-direction: column;
  }
}
.sec_company--partner h4 a {
  color: #2e76bc;
}
@media screen and (max-width: 768px) {
  .sec_company--partner h4 {
    font-size: 1.8rem;
  }
}
.sec_company--partner p {
  line-height: 1.6em;
}
@media screen and (max-width: 480px) {
  .sec_company--partner p {
    font-size: 1.4rem;
  }
}

.sec_add {
  display: flex;
  margin-bottom: 6rem;
  gap: 1em;
}
@media screen and (max-width: 480px) {
  .sec_add {
    flex-direction: column;
  }
}

.sec_add--img {
  width: 40%;
}
.sec_add--img img {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .sec_add--img {
    width: 100%;
    margin-bottom: 1em;
  }
}

.sec_add--txt {
  width: calc(60% - 1em);
}
@media screen and (max-width: 480px) {
  .sec_add--txt {
    width: 100%;
  }
}

.sec_add--genre {
  display: inline-block;
  background-color: #2e76bc;
  color: #fff;
  padding: 0.5em 1em;
  margin-bottom: 1em;
}

.sec_add--ttl {
  font-size: 2.4rem;
  font-weight: bold;
  color: #2e76bc;
  margin-bottom: 1em;
}
@media screen and (max-width: 1100px) {
  .sec_add--ttl {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .sec_add--ttl {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .sec_add--ttl {
    line-height: 1.4em;
  }
}

@media screen and (max-width: 480px) {
  .sec_add--r {
    order: 2;
  }
}

.sec--ptxt {
  line-height: 1.6em;
  margin-bottom: 0.5em;
}

.us_sec_company--flex {
  display: flex;
}
@media screen and (max-width: 480px) {
  .us_sec_company--flex {
    flex-direction: column;
  }
}

.us_sec_company--flex--img {
  width: 20%;
  padding-right: 1em;
}
.us_sec_company--flex--img img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .us_sec_company--flex--img {
    width: 30%;
  }
}
@media screen and (max-width: 480px) {
  .us_sec_company--flex--img {
    width: 100%;
    padding-right: 0;
    padding-bottom: 1em;
    text-align: center;
  }
  .us_sec_company--flex--img img {
    width: 90%;
  }
}

.us_sec_company--flex--txt {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .us_sec_company--flex--txt {
    width: 70%;
  }
}
@media screen and (max-width: 480px) {
  .us_sec_company--flex--txt {
    width: 100%;
  }
}

.greeting {
  width: 49%;
  display: flex;
  padding: 3em 3em 0;
  border-radius: 0.5em;
  box-shadow: 0px 0px 10px -4px rgba(0, 0, 0, 0.3);
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 1100px) {
  .greeting {
    padding: 2em 2em 0;
  }
}
@media screen and (max-width: 768px) {
  .greeting {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .greeting {
    padding: 1em 1em 0;
  }
}

.greeting_flex {
  display: flex;
  justify-content: space-between;
}

.greeting_txt {
  width: 100%;
  line-height: 1.8em;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .greeting_txt {
    width: 100%;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .greeting_txt {
    font-size: 1.4rem;
  }
}

.greeting_img {
  display: flex;
  align-items: end;
  width: 100%;
  justify-content: end;
}
@media screen and (max-width: 768px) {
  .greeting_img {
    justify-content: end;
  }
}
.greeting_img img {
  width: 35%;
}
@media screen and (max-width: 1100px) {
  .greeting_img img {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .greeting_img img {
    width: 45%;
  }
}
@media screen and (max-width: 480px) {
  .greeting_img img {
    width: 50%;
  }
}

.greeting_img_01 {
  justify-content: flex-start;
}

.greeting_img_02 img {
  width: 39%;
}
@media screen and (max-width: 1100px) {
  .greeting_img_02 img {
    width: 49%;
  }
}
@media screen and (max-width: 768px) {
  .greeting_img_02 img {
    width: 49%;
  }
}
@media screen and (max-width: 480px) {
  .greeting_img_02 img {
    width: 54%;
  }
}

.greeting_txt_ja--name {
  width: 100%;
  display: flex;
  justify-content: end;
}
.greeting_txt_ja--name span {
  display: block;
  text-align: left;
  line-height: 1.8em;
}
@media screen and (max-width: 480px) {
  .greeting_txt_ja--name span {
    font-size: 1.4rem;
  }
}

.sec_companyarea--flex {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .sec_companyarea--flex {
    flex-direction: column;
    gap: 30px;
  }
}

.us_sec--ptxt {
  line-height: 1.6em;
  margin-bottom: 0.5em;
}

.us_sec--flextxt {
  display: flex;
}
@media screen and (max-width: 480px) {
  .us_sec--flextxt {
    flex-direction: column;
  }
}
.us_sec--flextxt .us_sec--flextxt--left {
  width: 60%;
}
@media screen and (max-width: 480px) {
  .us_sec--flextxt .us_sec--flextxt--left {
    width: 100%;
  }
}
.us_sec--flextxt .us_sec--flextxt--img {
  width: 40%;
}
@media screen and (max-width: 480px) {
  .us_sec--flextxt .us_sec--flextxt--img {
    width: 100%;
  }
}
.us_sec--flextxt .us_sec--flextxt--img img {
  width: 100%;
}

.us_sec--ptxt strong {
  font-weight: bold;
  margin-right: 1em;
}

.us_sec--ptxt--li ul li {
  margin-left: 2em;
  position: relative;
}
.us_sec--ptxt--li ul li::after {
  content: "";
  width: 0.5em;
  height: 0.5em;
  background: #2fa4d6;
  top: 50%;
  left: -1em;
  position: absolute;
  transform: translateY(-50%);
  margin-bottom: 0.5em;
}

.us_sec--ptxt--capaflex {
  display: flex;
  justify-content: flex-start;
}

.us_sec--data {
  border: 1px solid #192C51;
  display: flex;
}
@media screen and (max-width: 480px) {
  .us_sec--data {
    flex-direction: column;
  }
}

.us_sec--data--ttl {
  background-color: #192C51;
  padding: 0.5em 1em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .us_sec--data--ttl {
    width: 100%;
  }
}

.us_sec--data--txt {
  display: flex;
  padding: 0.5em 1em;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .us_sec--data--txt {
    width: 100%;
    flex-direction: column;
  }
}
.us_sec--data--txt span {
  display: block;
  margin-right: 1em;
}
@media screen and (max-width: 480px) {
  .us_sec--data--txt span {
    width: 100%;
    margin-bottom: 1em;
  }
  .us_sec--data--txt span:last-child {
    margin-bottom: 0;
  }
}

.us_sec--table--flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .us_sec--table--flex {
    flex-direction: column;
    gap: 2em;
  }
}
.us_sec--table--flex table {
  width: 49%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #192C51;
}
@media screen and (max-width: 768px) {
  .us_sec--table--flex table {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .us_sec--table--flex table tr {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
}
.us_sec--table--flex table th, .us_sec--table--flex table td {
  word-break: break-word;
  padding: 0.5em;
  border: 1px solid #b1b1b1;
}
@media screen and (max-width: 480px) {
  .us_sec--table--flex table th, .us_sec--table--flex table td {
    border: 0;
  }
}

.us_sec--table--num {
  width: 13%;
}
@media screen and (max-width: 480px) {
  .us_sec--table--num {
    width: 25%;
    border-collapse: collapse;
    border-bottom: 1px solid #192C51 !important;
    border-right: 1px solid #192C51 !important;
  }
}

.us_sec--table--cont {
  width: 37%;
}
@media screen and (max-width: 480px) {
  .us_sec--table--cont {
    width: 75%;
    border-collapse: collapse;
    border-bottom: 1px solid #192C51 !important;
  }
}

@media screen and (max-width: 480px) {
  .us_sec--table--last {
    border-bottom: 0px !important;
  }
}

.us_sec--table--ttl {
  background-color: #192C51;
  color: #fff;
  text-align: left;
}
@media screen and (max-width: 480px) {
  .us_sec--table--ttl {
    width: 100%;
  }
}

.us_sec--def {
  display: flex;
  align-items: center;
  margin-bottom: 2em;
}
@media screen and (max-width: 480px) {
  .us_sec--def {
    flex-direction: column;
  }
}

.us_sec--def--txt {
  width: 40%;
  padding-right: 1em;
}
@media screen and (max-width: 480px) {
  .us_sec--def--txt {
    width: 100%;
  }
}

.us_sec--def--txt--single {
  width: 70%;
  padding-right: 1em;
}
@media screen and (max-width: 480px) {
  .us_sec--def--txt--single {
    width: 100%;
  }
}

.us_sec--def--img {
  width: 60%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .us_sec--def--img {
    width: 100%;
  }
}

.us_sec--def--img--single {
  width: 30%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .us_sec--def--img--single {
    width: 100%;
  }
}
.us_sec--def--img--single .us_sec--def--img--inner {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .us_sec--def--img--single .us_sec--def--img--inner {
    aspect-ratio: 1/0.5;
  }
}

.us_sec--def--img--inner {
  width: 49%;
  aspect-ratio: 1/1;
}
.us_sec--def--img--inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.us_sec--def--oder {
  order: 2;
  padding-right: 0;
  padding-left: 1em;
}
@media screen and (max-width: 480px) {
  .us_sec--def--oder {
    order: 0;
    padding-left: 0;
  }
}

.us_sec--def--border--r {
  border-right: #192C51 7px solid;
}

.us_sec--def--border--l {
  border-left: #192C51 7px solid;
}

.us_sec_news--data {
  width: 12rem;
  text-align: center;
  background-color: #192C51;
  padding: 0.5em 0;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .us_sec_news--data {
    font-size: 1.4rem;
    width: 10rem;
  }
}

.us_sec_department--btns--inner01 {
  padding: 10rem 6rem;
  background-color: #2e76bc;
}
@media screen and (max-width: 768px) {
  .us_sec_department--btns--inner01 {
    padding: 8rem 3rem;
  }
}

.us_sec_department--btns--inner02 {
  padding: 4rem 6rem;
  background-image: url("../img/btnbg_01.jpg");
}
@media screen and (max-width: 768px) {
  .us_sec_department--btns--inner02 {
    padding: 3rem 3rem;
  }
}

.us_sec_department--btn--arrow {
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #192C51;
  position: relative;
  overflow: hidden;
  max-width: 37px;
  min-width: 37px;
}

.us_sec_companyarea--ttlimg {
  width: 6%;
  margin-right: 1em;
}
.us_sec_companyarea--ttlimg img {
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .us_sec_companyarea--ttlimg {
    min-width: 75px;
    margin-right: 0.5em;
  }
}

.us_p_kv_sec {
  margin-top: 82px;
  width: 100%;
  height: 350px;
  background-image: url("../img/us_bgimg.jpg");
  position: relative;
  margin-bottom: 1em;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.us_p_kv_sec::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
}
@media screen and (max-width: 1100px) {
  .us_p_kv_sec {
    height: 300px;
    margin-top: 53px;
  }
}
@media screen and (max-width: 768px) {
  .us_p_kv_sec {
    height: 250px;
  }
}
@media screen and (max-width: 480px) {
  .us_p_kv_sec {
    height: 150px;
  }
}

.us_sec_company--table table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}
@media screen and (max-width: 480px) {
  .us_sec_company--table table tr {
    display: flex;
    flex-direction: column;
  }
}
.us_sec_company--table table th {
  width: 250px;
  padding: 1em;
  color: #192C51;
  font-weight: 800;
  text-align: left;
  border-bottom: 1px solid #192C51;
}
@media screen and (max-width: 768px) {
  .us_sec_company--table table th {
    width: 150px;
  }
}
@media screen and (max-width: 480px) {
  .us_sec_company--table table th {
    width: 100%;
    font-size: 1.4rem;
  }
}
.us_sec_company--table table td {
  line-height: 1.6em;
  padding: 1.5em;
  border-bottom: 1px solid #b1b1b1;
  word-break: keep-all;
}
@media screen and (max-width: 480px) {
  .us_sec_company--table table td {
    border-bottom: 0px;
    width: 100%;
    padding: 1em 1em 2em;
    font-size: 1.4rem;
  }
}

.us_sec_company--datablock--ttl {
  font-weight: 600;
  grid-column: 1/2;
  min-width: 90px;
}
@media screen and (max-width: 480px) {
  .us_sec_company--datablock--ttl {
    max-width: 90px;
  }
}

.us_sec_company--partner {
  margin-top: 3em;
}
.us_sec_company--partner h3 {
  font-size: 3.2rem;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .us_sec_company--partner h3 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 480px) {
  .us_sec_company--partner h3 {
    font-size: 2.4rem;
  }
}
.us_sec_company--partner h4 {
  display: flex;
  font-size: 2.4rem;
  font-weight: bold;
  color: #2e76bc;
  margin-bottom: 1em;
  align-items: center;
}
.us_sec_company--partner h4 a {
  color: #2e76bc;
}
@media screen and (max-width: 768px) {
  .us_sec_company--partner h4 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 480px) {
  .us_sec_company--partner h4 {
    flex-direction: column;
  }
}
.us_sec_company--partner p {
  line-height: 1.6em;
}
@media screen and (max-width: 480px) {
  .us_sec_company--partner p {
    font-size: 1.4rem;
  }
}

.us_sec_add {
  display: flex;
  margin-bottom: 6rem;
  gap: 1em;
}
@media screen and (max-width: 480px) {
  .us_sec_add {
    flex-direction: column;
  }
}

.us_sec_add--img {
  width: 40%;
  aspect-ratio: 16/12;
}
.us_sec_add--img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 480px) {
  .us_sec_add--img {
    width: 100%;
    margin-bottom: 1em;
  }
}

.us_sec_add--txt {
  width: calc(60% - 1em);
}
@media screen and (max-width: 480px) {
  .us_sec_add--txt {
    width: 100%;
  }
}

.us_sec_add--genre {
  display: inline-block;
  background-color: #192C51;
  color: #fff;
  padding: 0.5em 1em;
  margin-bottom: 1em;
}

.us_sec_add--ttl {
  font-size: 2.4rem;
  font-weight: bold;
  color: #192C51;
  margin-bottom: 1em;
}

@media screen and (max-width: 480px) {
  .us_sec_add--r {
    order: 2;
  }
}

.us_sec_company--flex {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .us_sec_company--flex {
    flex-direction: column;
  }
}

.us_sec_company--flex--img {
  width: 20%;
  padding-right: 1em;
}
.us_sec_company--flex--img img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .us_sec_company--flex--img {
    width: 30%;
  }
}
@media screen and (max-width: 480px) {
  .us_sec_company--flex--img {
    width: 100%;
    padding-right: 0;
    padding-bottom: 1em;
    text-align: center;
  }
  .us_sec_company--flex--img img {
    width: 60%;
  }
}

.us_sec_company--flex--img--fed {
  width: 10%;
}
@media screen and (max-width: 768px) {
  .us_sec_company--flex--img--fed {
    width: 30%;
  }
}
@media screen and (max-width: 480px) {
  .us_sec_company--flex--img--fed {
    width: 100%;
  }
  .us_sec_company--flex--img--fed img {
    width: 50%;
  }
}

.us_sec_company--flex--txt {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .us_sec_company--flex--txt {
    width: 100%;
  }
}

.us_sec_ttl--sub {
  font-size: 2.4rem;
  font-weight: bold;
  color: #192C51;
  margin-bottom: 1em;
  line-height: 1.4em;
}
@media screen and (max-width: 768px) {
  .us_sec_ttl--sub {
    font-size: 1.8rem;
  }
}

.us_page_anc {
  max-width: 1280px;
  margin: 0 auto;
}
.us_page_anc ul {
  padding: 0 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;
}
@media screen and (max-width: 768px) {
  .us_page_anc ul {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 480px) {
  .us_page_anc ul {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .us_page_anc ul {
    gap: 1em 0.5em;
  }
}
@media screen and (max-width: 768px) {
  .us_page_anc ul li {
    width: 48%;
  }
}
@media screen and (max-width: 480px) {
  .us_page_anc ul li {
    width: 100%;
  }
}
.us_page_anc ul a {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
@media screen and (max-width: 480px) {
  .us_page_anc ul a {
    font-size: 1.2rem;
  }
}
.us_page_anc ul a::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 13px;
  margin-right: 1em;
  background: #1f1f1f;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
.us_page_anc ul a:hover {
  color: #2e76bc;
  text-decoration: underline;
}
.us_page_anc ul a:hover::before {
  background: #2e76bc;
}

.sec_company_group {
  width: 100%;
  margin-top: 3em;
  display: flex;
  background-color: aliceblue;
  position: relative;
}
.sec_company_group::after {
  content: "";
  position: absolute;
  background-image: url("../img/us_kv_bg.svg");
  aspect-ratio: 1114/769;
  display: block;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  width: 40%;
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  .sec_company_group::after {
    transform: translateY(0);
    top: 0;
  }
}

.sec_company_group_inner {
  width: 55%;
  aspect-ratio: 16/10;
}
@media screen and (max-width: 768px) {
  .sec_company_group_inner {
    width: 100%;
  }
}
.sec_company_group_inner img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}/*# sourceMappingURL=style.css.map */