@charset "UTF-8";
* {
  color: #222;
  padding: 0;
  margin: 0;
}

*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

a {
  text-decoration: none;
}

button {
  background-color: transparent;
  border: none;
}

img {
  width: 100%;
  border: 0;
}

li {
  list-style: none;
}

.header {
  width: 100vw;
  height: 60px;
  position: fixed;
  z-index: 100;
  top: 0;
  background-color: #FFF;
}

.seo-text {
  font-size: 6px;
  padding: 4px;
  font-weight: 400;
}

.seo-text.hide {
  opacity: 0;
}

.header_block {
  position: relative;
  padding: 4px 1.5rem 4px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_block nav {
  background-color: #FFF;
  position: absolute;
  top: 40px;
  left: 0;
  width: 100vw;
  margin-bottom: 5rem;
  display: none;
  height: 100vh;
}
.header_block nav.active {
  display: block;
}

.logo_block {
  display: flex;
  align-items: center;
  gap: 4px;
}
.logo_block img {
  width: 25px;
}

.logo_text_group p {
  letter-spacing: 0.08em;
  font-size: 15px;
  font-weight: 700;
}
.logo_text_group p:last-child {
  line-height: 1;
  font-size: 6px;
  font-weight: 500;
}

.nav_list {
  margin: 1.5rem;
}
.nav_list li {
  border-top: 1px solid #eee;
}
.nav_list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.nav_list li a p {
  font-weight: 800;
}
.nav_list li a svg {
  width: 12px;
}
.nav_list li:last-child {
  border-bottom: 1px solid #eee;
}

.nav_other-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  padding: 1rem 1rem 2rem;
  gap: 1rem;
}

.nv_ct_tel {
  margin: 0 20px 2rem;
  position: relative;
  padding: 1.5rem;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}
.nv_ct_tel a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nv_ct_tel a svg {
  fill: #222;
  margin-top: 4px;
  width: 18px;
}
.nv_ct_tel a p {
  color: #11245c;
  font-size: 24px;
  font-weight: 600;
}
.nv_ct_tel a span {
  bottom: -2rem;
  position: absolute;
  font-size: 12px;
  font-weight: 500;
}

.nv_ct_btn {
  padding: 1rem 0;
  margin: 0 1rem;
}
.nv_ct_btn a {
  padding: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background-color: #11245c;
  display: block;
}
.nv_ct_btn p {
  margin: 1rem 0;
  text-align: center;
  font-size: 13px;
}

.nav_icon {
  display: inline-flex;
  position: absolute;
  right: 20%;
}
.nav_icon svg {
  width: 22px;
  fill: #11245c;
}

.nav_icon.hide {
  opacity: 0;
}

.hamburger-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.hamburger-menu div {
  background-color: #222;
  width: 24px;
  height: 1px;
}

.hamburger {
  transition: all 0.3s ease;
}

/* 中央の線を非表示にする */
.hide {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slide {
  transition: opacity 0.3s ease;
  transform: translateX(5px);
}

/* 上部の線を45度回転して10px上に移動 */
.rotate-top {
  transform: rotate(45deg) translate(0px, 10px);
  transition: transform 0.3s ease;
}

/* 下部の線を-45度回転して10px下に移動 */
.rotate-bottom {
  transform: rotate(-45deg) translate(0px, -10px);
  transition: transform 0.3s ease;
}

.fv_image {
  width: 100vw;
  height: 400px;
  background-repeat: no-repeat;
  background-image: url(../img/top-fv.jpg);
  background-position: 82% 100%;
  background-size: 190%;
}

.fv_title_block {
  padding: 0.5rem 1rem;
}
.fv_title_block h2 {
  font-family: "Noto Serif JP", sans-serif;
  color: #11245c;
  line-height: 1.4;
  font-size: 26px;
  margin-bottom: 1rem;
}
.fv_title_block p {
  color: #11245c;
  font-weight: 700;
  line-height: 2;
  font-size: 15px;
}
.fv_title_block p > br {
  display: none;
}

.news {
  padding: 1rem;
}

.section_title.news {
  padding: 0 0 2rem;
  position: relative;
  display: inline-block;
  font-weight: 700;
  font-size: 20px;
}

.section_title.news::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 40px;
  height: 2px;
  background-color: #222;
}

.news-date-category {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0 0.5rem;
}
.news-date-category p {
  font-size: 13px;
}
.news-date-category a {
  font-size: 11px;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  background-color: #eff2fa;
}

.news-title {
  font-size: 14px;
}

.news_more-btn {
  padding: 1rem 0 0.5rem;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}
.news_more-btn p {
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
}
.news_more-btn svg {
  width: 10px;
}

.about {
  padding: 5rem 1rem;
  background-color: #11245c;
}
.about * {
  color: #FFF;
}

.section_title.about {
  font-size: 30px;
  padding: 1rem 0;
  font-weight: 800;
}

.ab-text {
  font-size: 15px;
  line-height: 2;
}

.ab-text > br {
  display: none;
}

.top-business {
  margin-bottom: 4rem;
}

.sub-title {
  position: relative;
  padding: 0.5rem;
  overflow: hidden;
}

.st_text_en {
  color: #eff2fa;
  font-size: 90px;
  font-weight: 700;
  font-family: "Noto Serif JP", sans-serif;
}

.st_text_jp {
  position: absolute;
  left: 1rem;
  top: 60%;
  color: #11245c;
  font-size: 14px;
  font-weight: 700;
}

.m_tilte {
  padding: 1rem;
}
.m_tilte h4 {
  font-weight: 800;
  font-size: 32px;
  line-height: 1.4;
  margin-bottom: 2rem;
}
.m_tilte .section_title_description {
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 2rem;
}

.bs_more-btn {
  position: relative;
  display: flex;
  align-items: center;
  width: 140px;
  padding: 1.5rem 2rem;
  background-color: #11245c;
  justify-content: center;
}
.bs_more-btn p {
  font-size: 12px;
  color: #fff;
  text-align: center;
}
.bs_more-btn svg {
  top: 28px;
  position: absolute;
  right: 8px;
  width: 10px;
  fill: #fff;
}

.company {
  margin-bottom: 3rem;
}

.cp_links a {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #222;
  font-size: 14px;
}
.cp_links a p {
  color: #11245c;
  font-weight: 600;
}
.cp_links a svg {
  width: 10px;
}
.cp_links a:last-child {
  border-bottom: 1px solid #222;
}

.top-scroll {
  position: fixed;
  z-index: 50;
  inset: auto 4px 10px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #11245c;
  cursor: pointer;
}
.top-scroll svg {
  transform: rotate(-90deg);
  fill: #FFF;
  width: 18px;
}

.footer-top {
  background-image: linear-gradient(rgba(0, 0, 0, 0.9019607843), rgba(0, 0, 0, 0.9019607843)), url(../img/bg.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  padding: 4rem 0 6rem;
}
.footer-top * {
  color: #FFF;
}

.ftt_block {
  padding: 1rem;
}
.ftt_block h6 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 1rem;
}
.ftt_block p {
  font-size: 13px;
  line-height: 2;
}

.ftt_cta_contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2.5rem 0;
}
.ftt_cta_contact a {
  font-weight: 700;
  text-align: center;
  display: block;
  width: 75%;
  padding: 1.5rem;
  margin: 0 auto;
  background-color: #13318b;
}
.ftt_cta_contact p {
  margin: 1rem 0;
  text-align: center;
  font-size: 12px;
}

.ftt_cta_tel a {
  margin: 0 1rem 1rem;
  padding: 1.5rem;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.ftt_cta_tel a svg {
  fill: #FFF;
  width: 18px;
}
.ftt_cta_tel a p {
  font-size: 18px;
  font-weight: 700;
}
.ftt_cta_tel p {
  font-size: 12px;
  text-align: center;
}

.footer-btm {
  padding: 3rem 0;
}

.footer-address {
  padding: 1rem 1rem 4rem;
}

.ftad_item {
  position: relative;
  margin-bottom: 2rem;
}
.ftad_item p,
.ftad_item a {
  font-weight: 500;
}
.ftad_item p span,
.ftad_item a span {
  display: block;
}
.ftad_item p span:last-child,
.ftad_item a span:last-child {
  padding: 8px 0;
  font-size: 11px;
}
.ftad_item a:hover {
  text-decoration: underline;
}
.ftad_item p:first-child {
  font-weight: 800;
  margin-bottom: 1rem;
}
.ftad_item p:first-child span {
  font-size: 8px;
}
.ftad_item svg {
  position: absolute;
  inset: 4rem 0 auto auto;
  width: 18px;
  fill: #222;
}

.footer-links {
  padding: 2rem 1rem 4rem;
  background-color: whitesmoke;
}

.ftlk_item {
  padding: 1rem 0;
  font-size: 15px;
}
.ftlk_item a {
  display: block;
  line-height: 2;
}
.ftlk_item a:hover {
  text-decoration: underline;
}
.ftlk_item img {
  width: 50px;
}

.ftlk_item:last-child {
  line-height: 2;
}
.ftlk_item:last-child p {
  font-weight: 500;
}
.ftlk_item:last-child p a {
  display: inline;
}

.ftlk_page {
  font-weight: 700;
}

.copyright {
  padding: 0 1rem 5rem;
}
.copyright p {
  text-align: center;
  font-size: 11px;
  padding: 1rem 0;
}

.ft-btm-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.ft-btm-links a {
  font-size: 13px;
  font-weight: 500;
}

.cover_wrapper {
  background-image: linear-gradient(rgba(17, 36, 92, 0.9411764706), rgba(17, 36, 92, 0.9411764706)), url(../img/panel-vition.jpg);
  background-size: 250%;
  background-position: 50% 0%;
  background-repeat: no-repeat;
  padding: 4rem 1rem 2rem;
}
.cover_wrapper * {
  color: #FFF;
}

.cover_wrapper.panel {
  background-image: linear-gradient(rgba(17, 36, 92, 0.9411764706), rgba(17, 36, 92, 0.9411764706)), url(../img/cover-panel.jpg);
  background-size: 260%;
  background-position: 50% 0%;
}

.cover_wrapper.company {
  background-image: linear-gradient(rgba(17, 36, 92, 0.9411764706), rgba(17, 36, 92, 0.9411764706)), url(../img/cover-company.jpg);
  background-size: 170%;
  background-position: 50% 0%;
}

.cv_title {
  padding: 1rem;
}
.cv_title * {
  text-align: center;
}

.cvtl-jp {
  padding: 4px;
  font-size: 26px;
}

.category_list {
  padding: 1rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.category_item {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
}

.category_link.active {
  text-decoration: underline;
}

.post_wrapper {
  padding: 8rem 0 10rem;
}

.post_link {
  margin: 0 1rem;
  padding: 1rem;
  position: relative;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  display: block;
}
.post_link div {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 10px 0;
}
.post_link svg {
  position: absolute;
  width: 12px;
  inset: 45% 0 auto auto;
}

.post-category {
  background-color: #eff2fa;
  padding: 4px 1.5rem;
  font-size: 11px;
}

.post-title {
  font-size: 14px;
  margin-bottom: 10px;
}

.category_list.other {
  place-content: flex-start center;
}

.pnl_vition {
  padding: 4rem 0 0rem;
}

.pnlvtn_block {
  padding: 2rem 1rem 6rem;
}
.pnlvtn_block h2 {
  font-size: 30px;
  margin-bottom: 2rem;
  color: #11245c;
  font-family: "Noto Serif JP", sans-serif;
}
.pnlvtn_block p {
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
}
.pnlvtn_block p > br {
  display: none;
}

.pnlvtn_img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 200px;
}

.pnl_about {
  background-color: #eff2fa;
  padding: 4rem 1rem 6rem;
  margin-top: -1rem;
}

.pnlab_texts {
  padding: 2rem 0;
}
.pnlab_texts h3 {
  font-size: 28px;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.pnlab_texts h3 span {
  display: block;
  margin-bottom: 1rem;
  font-size: 15px;
  font-weight: 700;
  color: #11245c;
}
.pnlab_texts p {
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
}

.points {
  padding: 3rem 1rem;
}

.pnt_box {
  padding: 1rem 0;
}

.pnt_texts {
  padding: 2rem 0 3rem;
  overflow: hidden;
  position: relative;
}

.pnt_ttl-en {
  position: absolute;
  font-size: 72px;
  font-family: "Noto Serif JP", sans-serif;
  color: #eff2fa;
  font-weight: 800;
  z-index: -1;
}

.pnt_ttl-jp {
  margin-top: 4rem;
  font-size: 28px;
}

.pnt_ttl_description {
  margin-top: 1.5rem;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
}

.pnl_gallery {
  padding: 4rem 1rem 6rem;
}

.pnlglr_block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.greeting {
  padding: 6rem 1rem;
}

.grt_block {
  padding: 2rem 0 1rem;
}

.cppg_section {
  padding: 0 0 2.5rem;
  position: relative;
  font-size: 24px;
  color: #11245c;
  font-weight: 700;
}

.cppg_section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 4rem;
  height: 1px;
  background-color: #11245c;
}

.cppg_heading {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 2rem;
}

.cppg_description {
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
}

.info {
  padding: 6rem 1rem;
  background-color: whitesmoke;
}

.if_list {
  padding: 2rem 0;
}

.if_item {
  border-top: 1px solid;
  padding: 1.5rem 0;
  font-weight: 700;
}
.if_item div a {
  display: block;
}
.if_item div a:last-child .if_detail {
  margin-top: 1rem;
}

.if_item:last-child {
  border-bottom: 1px solid;
}

.if_detail {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
}
.if_detail span {
  display: block;
}

.access {
  padding: 6rem 1rem;
}

.acmp_group {
  padding: 2rem 0;
}

.acmp_title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.acmp_adress {
  margin-bottom: 1rem;
}

.acmp {
  height: 320px;
  overflow: hidden;
}

.contact {
  padding: 6rem 1rem;
}

.ct_top {
  padding: 2rem 0;
}
.ct_top p {
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
}

.ct_form {
  padding: 2rem 0;
}

.fm_item {
  padding: 0.5rem 0;
}
.fm_item * {
  font-size: 15px;
}

.custom-radio {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 400;
  margin-top: 1rem;
  position: relative;
}

.custom-radio input[type=radio] {
  display: none;
}

.radio-mark {
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  transition: all 0.3s;
  box-sizing: border-box;
  background-color: #eee;
}

.custom-radio input[type=radio]:checked + .radio-mark {
  border: 3px solid #0c0c3e;
  background-color: #fff;
}

.custom-radio input[type=radio]:checked + .radio-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: #0c0c3e;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.fm_input {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  font-size: 16px;
  box-sizing: border-box;
  margin-top: 5px;
}

.fm_input.textarea {
  height: 260px;
  resize: vertical;
}

.fm_item label {
  font-weight: bold;
  margin-bottom: 5px;
}

.required {
  color: #d00;
  margin-left: 4px;
}

.fm_item {
  margin-bottom: 24px;
}

.fm_name_wrapper .fm_input {
  margin: 10px 0 2px;
}

.form_footer {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

.submit_button {
  justify-content: center;
  width: 80%;
  position: relative;
  padding: 1.5rem;
  background-color: #11245c;
  color: #FFF;
  font-size: 15px;
  margin: 0 auto;
  cursor: pointer;
}
.submit_button svg {
  position: absolute;
  inset: 40% 1rem auto auto;
  width: 12px;
  fill: #FFF;
}

.regal {
  padding: 4rem 1rem;
}

.rg_box {
  padding-top: 24px;
}
.rg_box ul,
.rg_box ol {
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  padding: 24px 0;
}
.rg_box ul li,
.rg_box ol li {
  list-style: disc;
  margin-left: 20px;
}
.rg_box ol li {
  list-style: inherit;
  margin-left: 20px;
}

.rg_title {
  color: #11245c;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 20px;
}

.rg_text {
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
}

.sitemap {
  padding: 6rem 1rem;
}

.stmp_list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem 0;
  gap: 1rem;
}

.stmp_item {
  font-size: 15px;
  font-weight: 500;
}

.stmp_mlink {
  color: #11245c;
  font-weight: 800;
}

.breadcrumbs {
  margin-top: 60px;
  padding: 6px 8px;
  background-color: whitesmoke;
}

.breadcrumbs_list {
  display: flex;
  align-items: center;
  text-wrap: nowrap;
  scrollbar-width: none;
  overflow: scroll;
}

.breadcrumbs_item {
  margin-right: 0.5rem;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumbs_item:last-child span {
  font-weight: 800;
}

.home_icon {
  width: 10px;
  fill: #222;
}

.breadcrumbs_icon {
  width: 6px;
  fill: #222;
}

.completed {
  padding: 4rem 1rem 6rem;
}

.cmpl_block h3 {
  font-size: 24px;
  margin-bottom: 1rem;
}
.cmpl_block p {
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
}

.topback-btn {
  padding: 3rem 0 1rem;
}
.topback-btn a {
  padding: 1rem 2rem;
  background-color: #11245c;
  color: #fff;
  font-weight: 600;
}

.news-contents {
  padding: 6rem 1rem;
}

.nc_title_block {
  padding: 1rem 0 2rem;
}

.ncttlb_top {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  gap: 1rem;
}
.ncttlb_top a {
  padding: 0.5rem 1.5rem;
  display: block;
  font-size: 12px;
  background-color: #eff2fa;
  font-weight: 500;
}

.nc_title {
  font-size: 30px;
  font-weight: 700;
}

.nctit_line {
  height: 1px;
  width: 60px;
  background-color: #222;
  margin-top: 2rem;
}

.nc_article {
  padding: 1rem 0 2rem;
  border-bottom: 1px solid whitesmoke;
}
.nc_article p {
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
}

.nc_intro {
  margin: 1rem 0;
  padding: 2rem 0;
}

.nci_texts h4 {
  font-size: 22px;
  font-weight: 700;
  color: #11245c;
  margin-bottom: 1rem;
}
.nci_texts p {
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
}

.nci_links {
  margin: 2rem 0 1rem;
}
.nci_links a {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nci_links a svg {
  width: 12px;
  fill: #222;
}
.nci_links a p {
  font-size: 15px;
  text-decoration: underline;
  padding: 0.5rem 0;
  display: block;
  color: #11245c;
}

.nci_backbtn {
  margin-top: 4rem;
}
.nci_backbtn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 2rem;
  background-color: #11245c;
  width: 50%;
  margin: 0 auto;
}
.nci_backbtn a svg {
  position: absolute;
  inset: auto auto auto 1rem;
  transform: rotate(180deg);
  fill: #FFF;
  width: 12px;
}
.nci_backbtn a p {
  text-decoration: underline;
  font-size: 12px;
  color: #fff;
  font-weight: 600;
}

.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.is-visible.hide {
  opacity: 0;
  transition: opacity 0s ease-out, transform 0s ease-out;
}

p.no-post {
  margin: 1rem;
  padding: 1rem;
  background-color: whitesmoke;
}

.display-name {
  color: #f0f0f1;
}

@media screen and (min-width: 768px) {
  .header {
    padding: 0 1%;
    height: 90px;
  }
  .seo-text {
    font-size: 10px;
    padding: 4px 0;
  }
  .main-top {
    margin-top: 90px;
  }
  .header_block {
    padding: 0 2% 8px 0;
  }
  .header_block nav {
    background-color: transparent;
    position: static;
    width: auto;
    display: flex;
    height: auto;
    margin: 0;
  }
  .logo_block img {
    width: 32px;
  }
  .logo_text_group p {
    font-size: 16px;
  }
  .logo_text_group p:last-child {
    font-size: 6.5px;
  }
  .nav_list {
    margin: 0;
    display: flex;
  }
  .nav_list li {
    border-top: none;
  }
  .nav_list li a {
    margin-right: 40px;
  }
  .nav_list li a p {
    font-size: 13px;
  }
  .nav_list li a svg {
    display: none;
  }
  .nav_list li a:hover {
    text-decoration: underline;
  }
  .nav_list li:first-child {
    display: none;
  }
  .nav_list li:last-child {
    border-bottom: none;
  }
  .nav_list li.current-menu-item p,
  .nav_list li.current_page_item p {
    color: #11245c;
  }
  .nav_other-link {
    display: none;
  }
  .nv_cts {
    display: flex;
    align-items: center;
  }
  .nv_ct_tel {
    margin: 0 2rem 0 0;
    padding: 0;
    border-top: none;
    border-bottom: none;
  }
  .nv_ct_tel a {
    margin-top: -4px;
  }
  .nv_ct_tel a svg {
    margin-top: 1rem;
    width: 24px;
  }
  .nv_ct_tel a p {
    color: #222;
    font-size: 26px;
  }
  .nv_ct_tel a span {
    right: 1rem;
    bottom: -8px;
    font-size: 9px;
  }
  .nv_ct_tel:hover svg {
    fill: #11245c;
  }
  .nv_ct_tel:hover p {
    color: #11245c;
  }
  .nv_ct_tel:hover span {
    color: #11245c;
  }
  .nv_ct_btn {
    padding: 0;
    margin: 0;
  }
  .nv_ct_btn a {
    padding: 18px 50px;
    display: inline;
    font-size: 13px;
  }
  .nv_ct_btn a:hover {
    text-decoration: underline;
  }
  .nv_ct_btn p {
    display: none;
  }
  .nav_icon,
  .hamburger-menu {
    display: none;
  }
  .containar {
    max-width: 1280px;
    margin: 0 auto;
  }
  .fv_block {
    display: flex;
    justify-content: center;
    position: relative;
  }
  .fv_image {
    height: 560px;
    background-position: 50% 20%;
    background-size: 112%;
  }
  .fv_title_block {
    position: absolute;
    inset: 30% auto auto 0;
    padding: 1rem 60px;
  }
  .fv_title_block h2 {
    font-size: 45px;
    margin-bottom: 20px;
  }
  .fv_title_block p {
    font-size: 16px;
  }
  .fv_title_block p > br {
    display: block;
  }
  .news {
    padding: 1.5rem 8%;
  }
  .news_block {
    display: flex;
    align-items: center;
  }
  .section_title.news {
    padding: 0 2rem 0 10px;
    font-size: 14px;
    margin-right: 3rem;
  }
  .section_title.news::after {
    inset: 0 -1rem auto auto;
    bottom: 20px;
    width: 1px;
    height: 24px;
  }
  .news-article {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .news-date-category {
    padding: 0;
  }
  .news-date-category a {
    font-size: 10px;
    padding: 0.25rem 1rem;
  }
  .news-title {
    font-size: 12px;
  }
  .news-title:hover {
    text-decoration: underline;
  }
  .news_more-btn {
    position: absolute;
    right: 2rem;
    padding: 0;
  }
  .ab_section_title {
    padding: 2rem;
  }
  .ab_section_title * {
    text-align: center;
  }
  .section_title.about {
    font-size: 28px;
  }
  .ab-text > br {
    display: block;
  }
  .tb_block {
    display: flex;
  }
  .top-business {
    padding: 8rem 0;
  }
  .tb_img {
    width: 190%;
  }
  .tb_texts {
    margin-left: 20px;
    padding: 0 0rem 0 1rem;
  }
  .st_text_en {
    font-size: 100px;
  }
  .m_tilte {
    margin-top: -1rem;
    padding: 0.5rem 1rem;
  }
  .m_tilte h4 {
    margin-bottom: 1rem;
  }
  .m_tilte .section_title_description {
    font-size: 16px;
  }
  .bs_more-btn {
    width: 200px;
  }
  .bs_more-btn:hover p {
    text-decoration: underline;
  }
  .company {
    margin-bottom: 6rem;
  }
  .cp_block {
    display: flex;
    flex-direction: row-reverse;
  }
  .cp_texts {
    padding: 2rem 4rem 0 0;
  }
  .cp_links a {
    width: 65%;
  }
  .cp_links a:hover p,
  .cp_links a:hover svg {
    transform: translateX(5px);
  }
  .cp_links a:last-child {
    border-bottom: 1px solid #222;
  }
  .footer-top {
    padding: 6rem 0;
  }
  .footer-top * {
    color: #FFF;
  }
  .ftt_block {
    padding: 1rem;
  }
  .ftt_block h6 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 20px;
  }
  .ftt_block p {
    text-align: center;
    font-size: 16px;
  }
  .ftt_cta_block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 3rem 25% 1rem;
    gap: 1rem;
  }
  .ftt_cta_contact {
    margin: 0;
    display: block;
    order: 2;
    padding: 0;
  }
  .ftt_cta_contact a {
    width: 80%;
  }
  .ftt_cta_contact a:hover {
    text-decoration: underline;
  }
  .ftt_cta_contact p {
    width: 100%;
  }
  .ftt_cta_tel a:hover {
    text-decoration: underline;
  }
  .footer-btm {
    padding: 3rem 0 0;
  }
  .footer-address {
    padding: 3rem 8%;
    display: flex;
    justify-content: space-between;
  }
  .footer-links ul {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    padding: 4rem 0;
    gap: 4rem;
  }
  .ftlk_item {
    order: 2;
  }
  .ftlk_item:last-child {
    order: 1;
    margin-right: 8rem;
  }
  .copyright {
    padding: 1.5rem;
  }
  .copyright p {
    font-size: 13px;
  }
  .cpl_block {
    display: flex;
    justify-content: space-between;
  }
  .ft-btm-links {
    justify-content: flex-start;
  }
  .ft-btm-links a:hover {
    text-decoration: underline;
  }
  .breadcrumbs {
    margin-top: 90px;
  }
  .cover_wrapper {
    background-size: cover;
    padding: 6rem 1rem 3rem;
  }
  .cover_wrapper.panel {
    background-image: linear-gradient(rgba(17, 36, 92, 0.9411764706), rgba(17, 36, 92, 0.9411764706)), url(../img/cover-panel.jpg);
    background-size: 100%;
    background-position: 50% 0%;
  }
  .cv_title {
    padding: 1rem 1rem 3rem;
  }
  .cvtl-en {
    font-weight: 600;
  }
  .cvtl-jp {
    font-size: 28px;
  }
  .category_item {
    font-size: 14px;
  }
  .category_item a:hover {
    text-decoration: underline;
  }
  .post_link {
    padding: 10px 1rem;
    display: flex;
    align-items: center;
  }
  .post_link div {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 10px 0;
  }
  .post_link svg {
    position: absolute;
    width: 10px;
    inset: 43% 1rem auto auto;
  }
  .post-category {
    margin: 0 2rem 0 1.5rem;
    padding: 4px 4rem;
    font-size: 12px;
  }
  .post-title {
    font-size: 14px;
    margin-bottom: 0;
  }
  .pnl_vition {
    padding: 6rem 0 0rem;
  }
  .pnlvtn_block {
    text-align: center;
  }
  .pnlvtn_block h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .pnlvtn_block p {
    font-size: 15px;
    font-weight: 500;
    line-height: 2;
  }
  .pnlvtn_block p > br {
    display: block;
  }
  .pnl_about {
    padding: 8rem 1rem;
    margin-top: -1rem;
  }
  .pnlvtn_img {
    height: auto;
  }
  .pnlab_block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .pnlab_texts p {
    font-size: 16px;
  }
  .pnt_box {
    display: flex;
    align-items: center;
    margin: 4rem 0;
  }
  .pnt_texts {
    order: 2;
    width: 55%;
  }
  .pnt_img {
    margin: 0 3rem 0 0;
    order: 1;
    width: 45%;
  }
  .pnt_img.rvs {
    order: 2;
    margin: 0 0 0 3rem;
  }
  .pnlglr_block {
    gap: 2rem;
  }
  .containar-md {
    max-width: 800px;
    margin: 0 auto;
  }
  .cppg_heading {
    font-size: 32px;
  }
  .cppg_description {
    font-size: 16px;
  }
  .if_item {
    display: grid;
    grid-template-columns: 20% 1fr;
    align-items: baseline;
  }
  .if_detail {
    margin-top: 0;
  }
  .regal {
    padding: 4rem 0 8rem;
  }
  .acmp {
    height: 420px;
  }
  .rg_title {
    font-size: 26px;
    margin-bottom: 2rem;
  }
  .rg_box {
    margin-top: 2rem;
  }
  .submit_button {
    width: 33%;
  }
  .fm_name_wrapper {
    display: flex;
    gap: 1rem;
  }
  .fm_name_wrapper .fm_input {
    width: 50%;
  }
  .cmpl_block {
    text-align: center;
  }
  .topback-btn {
    display: flex;
    justify-content: center;
  }
  .stmp_block {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .stmp_list:last-child {
    width: 120%;
  }
  .nc_article p {
    font-size: 16px;
  }
  .nci_texts h4 {
    font-size: 24px;
  }
  .nci_texts p {
    font-size: 16px;
  }
  .nci_links a p {
    font-size: 16px;
  }
  .nci_backbtn a {
    width: 20%;
  }
  .nci_backbtn a p {
    font-size: 15px;
  }
  .ct_top p {
    font-size: 16px;
  }
  .ct_top p a {
    color: #1a0dab;
    text-decoration: underline;
  }
  .radio_item {
    display: flex;
    gap: 2rem;
  }
}/*# sourceMappingURL=style.css.map */