@charset "UTF-8";
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*$tab: 820px;*/
/*@mixin tab {
	@media screen and (max-width: ($tab)) {
		@content;
	}
}*/
/*@function vw($size, $viewport:1920) {
  $rate: 100 / $viewport;
  @return $rate * $size * 1vw;
}*/
html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 62.5%;
  color: #222222;
  line-height: 1.6;
}
@media screen and (max-width: 1294px) {
  html {
    font-size: 56.25%;
    /* 90% */
    /*font-size: 53.125%;*/
    /* 85% */
  }
}

body,
input,
button,
textarea,
select {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
}

body.fixed {
  overflow: hidden;
}

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

.sp {
  display: none;
}

.pc {
  display: block;
}

.common_container {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.common_pcnolink {
  pointer-events: none;
}

.common_w_inner {
  max-width: 1660px;
  width: 90.625%;
}

.common_inner {
  max-width: 1200px;
  width: 90.625%;
}

.common_s_inner {
  max-width: 850px;
  width: 90.625%;
}

.ank {
  padding-top: 10rem;
  margin-top: -10rem;
}

.common_txt01 {
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.common_tx_c {
  text-align: center;
}

.common_tx_l {
  text-align: left;
}

.common_tx_r {
  text-align: right;
}

.common_en01 {
  font-family: "Philosopher", sans-serif;
}

.common_min01 {
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
}

.common_btn01 {
  width: 100%;
  max-width: 30rem;
  height: 7rem;
}
.common_btn01.wide_center {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.common_btn01 a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #002d4d;
}
.common_btn01 a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  background-color: #e07e00;
}
.common_btn01 a:hover::before {
  transform: scaleX(1);
}
.common_btn01 a:hover .btn_arrow svg {
  opacity: 1;
}
.common_btn01 a:hover .btn_arrow::before {
  width: 26px;
  height: 26px;
}
.common_btn01 a .btn_txt {
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.common_btn01 a .btn_arrow {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.common_btn01 a .btn_arrow svg {
  fill: none;
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0.00001deg);
  opacity: 0;
}
.common_btn01 a .btn_arrow path {
  stroke: #fff;
}
.common_btn01 a .btn_arrow::before {
  background-color: #e07e00;
  border-radius: 50%;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0.00001deg);
  position: absolute;
  transition: all 0.3s ease-out;
  width: 6px;
  height: 6px;
}

.common_link01 {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.common_link01:hover .btn_arrow svg {
  opacity: 1;
}
.common_link01:hover .btn_arrow::before {
  width: 26px;
  height: 26px;
}
.common_link01 .btn_arrow {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.common_link01 .btn_arrow svg {
  fill: none;
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0.00001deg);
  opacity: 0;
}
.common_link01 .btn_arrow path {
  stroke: #fff;
}
.common_link01 .btn_arrow::before {
  background-color: #e07e00;
  border-radius: 50%;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0.00001deg);
  position: absolute;
  transition: all 0.3s ease-out;
  width: 6px;
  height: 6px;
}

.common_cl_txt {
  color: #e07e00;
  font-weight: 500;
}

.common_top_h2_ttl {
  text-align: center;
}
.common_top_h2_ttl .common_en01 {
  font-size: 12.2rem;
  font-family: "Philosopher", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #f5f6f9;
  display: block;
  line-height: 1;
}
.common_top_h2_ttl .h2_ttl {
  margin-top: 2rem;
  display: inline-block;
  font-size: 2.6rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ========== header ========== */
header {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

header:has(.is-scrolled) {
  position: fixed;
  animation: header_fixed_fadein 0.3s ease forwards;
}

@keyframes header_fixed_fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.header {
  max-width: 1920px;
  width: 100%;
}

.header_inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  padding: 3rem 3rem 0 3rem;
  gap: 2rem;
}

.header_logo {
  flex-shrink: 0;
  margin-right: auto;
}
.header_logo a {
  width: 12rem;
  height: 12rem;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: width 0.3s ease;
}
.header_logo a:hover {
  opacity: 0.7;
}
.header_logo a img {
  width: 9.6rem;
  height: auto;
  transition: width 0.3s ease;
}

.header_nav {
  display: flex;
}

.header_nav_list {
  display: flex;
  align-items: center;
  gap: 2.8rem;
}

.header_nav_item {
  position: relative;
}

.header_nav_item--mega:hover .header_mega_menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.header_nav_link {
  font-size: 1.4rem;
  font-weight: 500;
  color: #222222;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: color 0.2s;
}
.header_nav_link:hover {
  color: #002d4d;
}

.header_mega_menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 2.5rem 3rem;
  min-width: 64rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 10;
}
.header_mega_menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}

.header_mega_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem 1.6rem;
}

.header_mega_item a {
  display: block;
  font-size: 1.4rem;
  color: #222222;
  padding: 1.2rem 1.4rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  letter-spacing: 0.05em;
  text-align: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.header_mega_item a:hover {
  background: #002d4d;
  color: #fff;
  border-color: #002d4d;
}

.header_cta_sub {
  font-size: 1.1rem;
  color: #e07e00;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
  white-space: nowrap;
  width: 14rem;
  height: 2.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 11px;
  z-index: 1;
}

.header_cta_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20rem;
  height: 4.6rem;
  transition: opacity 0.3s;
  padding: 5.5px 0 0 0;
  box-sizing: border-box;
  position: relative;
  padding-right: 10px;
}
.header_cta_btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.header_cta_btn:hover::before {
  transform: scaleX(1);
}
.header_cta_btn:hover .btn_arrow svg {
  opacity: 1;
}
.header_cta_btn:hover .btn_arrow::before {
  width: 20px;
  height: 20px;
}
.header_cta_btn .btn_txt {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
  color: #fff;
  position: relative;
  padding-left: 17px;
}
.header_cta_btn .btn_txt::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}
.header_cta_btn .btn_arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 3px;
}
.header_cta_btn .btn_arrow svg {
  fill: none;
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0.00001deg);
  opacity: 0;
}
.header_cta_btn .btn_arrow::before {
  border-radius: 50%;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0.00001deg);
  position: absolute;
  transition: all 0.3s ease-out;
  width: 4px;
  height: 4px;
}

.header_drawer_cta_item--contact .header_cta_sub {
  color: #e07e00;
  background-color: #fffdf3;
}
.header_drawer_cta_item--contact .header_cta_btn {
  background-color: #e07e00;
}
.header_drawer_cta_item--contact .header_cta_btn .btn_txt::before {
  background: url(../images/common/common_mail_wht.svg) no-repeat left top;
  background-size: contain;
  width: 17px;
  height: 13px;
}
.header_drawer_cta_item--contact .header_cta_btn::before {
  background-color: #002d4d;
}
.header_drawer_cta_item--contact .header_cta_btn .btn_arrow path {
  stroke: #e07e00;
}
.header_drawer_cta_item--contact .header_cta_btn .btn_arrow::before {
  background-color: #fff;
}

.header_drawer_cta_item--mypage .header_cta_sub {
  color: #002d4d;
  background-color: #eff4f5;
}
.header_drawer_cta_item--mypage .header_cta_btn {
  background-color: #002d4d;
}
.header_drawer_cta_item--mypage .header_cta_btn .btn_txt::before {
  background: url(../images/common/common_mypage_wht.svg) no-repeat left top;
  width: 14px;
  height: 16px;
}
.header_drawer_cta_item--mypage .header_cta_btn::before {
  background-color: #e07e00;
}
.header_drawer_cta_item--mypage .header_cta_btn .btn_arrow path {
  stroke: #fff;
}
.header_drawer_cta_item--mypage .header_cta_btn .btn_arrow::before {
  background-color: #e07e00;
}

.header_drawer,
.header_overlay {
  display: none;
}

/* ========== footer ========== */
footer {
  overflow: hidden;
}

.footer {
  position: relative;
  display: flex;
  justify-content: center;
  background: url(../images/common/footer_bk.png) no-repeat center 50px;
  background-size: cover;
  width: 100%;
  padding: 18rem 0 8rem 0;
  margin-top: 10rem;
}
.footer .common_inner {
  position: relative;
}

.ft_gray footer {
  background-color: #f5f6f9;
}

.footer_design01 {
  background: url(../images/common/footer_design01.svg) no-repeat left top;
  background-size: contain;
  content: "";
  position: absolute;
  top: calc(-16rem - 100px);
  left: -100px;
  width: 27.7rem;
  height: 21.3rem;
  z-index: 3;
  /*animation: floatUpDown 3s ease-in-out infinite;*/
}

.footer_design02 {
  background: url(../images/common/footer_design02.svg) no-repeat left top;
  background-size: contain;
  content: "";
  position: absolute;
  top: -17.5rem;
  left: 26rem;
  width: 26.3rem;
  height: 16.7rem;
  z-index: 3;
  animation: walkSwing 3s ease-in-out infinite;
  animation-delay: 1s;
}
@media screen and (max-width: 1294px) {
  .footer_design02 {
    left: 20rem;
  }
}
@media screen and (max-width: 980px) {
  .footer_design02 {
    display: none;
  }
}

.footer_design03 {
  background: url(../images/common/footer_design03.svg) no-repeat left top;
  background-size: contain;
  content: "";
  position: absolute;
  top: -20rem;
  right: 23rem;
  width: 29.6rem;
  height: 14.6rem;
  z-index: 3;
  animation: walkSwing 2.5s ease-in-out infinite;
}
@media screen and (max-width: 1294px) {
  .footer_design03 {
    right: 20rem;
  }
}

.footer_design04 {
  background: url(../images/common/footer_design04.svg) no-repeat left top;
  background-size: contain;
  content: "";
  position: absolute;
  top: -26rem;
  right: -8rem;
  width: 25rem;
  height: 21.2rem;
  z-index: 3;
  /*animation: floatUpDown 3s ease-in-out infinite;*/
}

.footer_top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.footer_logo a {
  width: 12rem;
  height: 12rem;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: width 0.3s ease;
}
.footer_logo a:hover {
  opacity: 0.7;
}
.footer_logo a img {
  width: 9.6rem;
  height: auto;
}

.footer_cta {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer_cta_item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer_cta_sub {
  font-size: 1.1rem;
  color: #e07e00;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
  white-space: nowrap;
  width: 14rem;
  height: 2.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  position: relative;
  top: 11px;
  z-index: 1;
}

.footer_cta_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20rem;
  height: 4.6rem;
  transition: opacity 0.3s;
  padding: 5.5px 0 0 0;
  box-sizing: border-box;
  position: relative;
  padding-right: 10px;
}
.footer_cta_btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.footer_cta_btn:hover::before {
  transform: scaleX(1);
}
.footer_cta_btn:hover .btn_arrow svg {
  opacity: 1;
}
.footer_cta_btn:hover .btn_arrow::before {
  width: 20px;
  height: 20px;
}
.footer_cta_btn .btn_txt {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
  color: #fff;
  position: relative;
  padding-left: 17px;
}
.footer_cta_btn .btn_txt::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}
.footer_cta_btn .btn_arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 3px;
}
.footer_cta_btn .btn_arrow svg {
  fill: none;
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0.00001deg);
  opacity: 0;
}
.footer_cta_btn .btn_arrow::before {
  border-radius: 50%;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0.00001deg);
  position: absolute;
  transition: all 0.3s ease-out;
  width: 4px;
  height: 4px;
}

.footer_cta_item--contact .footer_cta_sub {
  color: #e07e00;
}
.footer_cta_item--contact .footer_cta_btn {
  background-color: #e07e00;
}
.footer_cta_item--contact .footer_cta_btn .btn_txt::before {
  background: url(../images/common/common_mail_wht.svg) no-repeat left top;
  width: 17px;
  height: 13px;
}
.footer_cta_item--contact .footer_cta_btn::before {
  background-color: #fff;
}
.footer_cta_item--contact .footer_cta_btn .btn_arrow path {
  stroke: #e07e00;
}
.footer_cta_item--contact .footer_cta_btn .btn_arrow::before {
  background-color: #fff;
}

.footer_cta_item--mypage .footer_cta_sub {
  color: #fff;
  background-color: #002d4d;
}
.footer_cta_item--mypage .footer_cta_btn {
  background-color: #fff;
}
.footer_cta_item--mypage .footer_cta_btn .btn_txt {
  color: #002d4d;
}
.footer_cta_item--mypage .footer_cta_btn .btn_txt::before {
  background: url(../images/common/common_mypage.svg) no-repeat left top;
  width: 14px;
  height: 16px;
}
.footer_cta_item--mypage .footer_cta_btn::before {
  background-color: #e07e00;
}
.footer_cta_item--mypage .footer_cta_btn .btn_arrow path {
  stroke: #fff;
}
.footer_cta_item--mypage .footer_cta_btn .btn_arrow::before {
  background-color: #e07e00;
}

.footer_nav {
  padding: 5rem 0 0 0;
}
.footer_nav .common_inner {
  margin: 0 auto;
}

.footer_nav_list {
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 980px) {
  .footer_nav_list {
    gap: 30px;
    flex-wrap: wrap;
  }
}

.footer_nav_col {
  display: flex;
  flex-direction: column;
}

a.footer_nav_link:hover {
  opacity: 0.7;
}

.footer_nav_link {
  color: #fff;
  transition: opacity 0.2s;
}
.footer_nav_link--parent {
  font-weight: 500;
  letter-spacing: 0.1em;
  padding-bottom: 1rem;
  display: block;
}
.footer_nav_link--parent + .footer_nav_link--parent {
  padding-top: 1rem;
}
.footer_nav_link--parent .btn_arrow {
  display: none;
}

.footer_nav_sub {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer_nav_sub li {
  padding-left: 24px;
  position: relative;
}
.footer_nav_sub li::before {
  background-color: #85b5d7;
  content: "";
  position: absolute;
  top: calc(0.5em + 0.5rem);
  left: 0;
  width: 14px;
  height: 1px;
  margin-top: -0.5px;
}

.footer_nav_sub_link {
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  transition: color 0.2s;
}
.footer_nav_sub_link:hover {
  opacity: 0.7;
}

.footer_bottom {
  padding: 2rem 0 7rem 0;
  display: flex;
  justify-content: center;
  background-color: #fff;
}
.footer_bottom .common_inner {
  display: flex;
  justify-content: space-between;
}

.footer_copy {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

.footer_link li a {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
.footer_link li a:hover {
  opacity: 0.7;
}

/* ========== header: PC用ドロワー→インラインナビ変換 ========== */
/* SP の display:none を上書きしてインライン表示 */
.header_drawer {
  display: block;
  position: static;
  width: auto;
  height: auto;
  background: transparent;
  transform: none;
  overflow-y: visible;
  padding-top: 0;
  z-index: auto;
  transition: none;
}
.header_drawer .header_logo {
  display: none;
}

.header_drawer_close {
  display: none;
}

.header_drawer_inner {
  display: flex;
}

.header_drawer_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex-direction: row;
  align-items: center;
  border-top: none;
  /*gap: vw(5) vw(35);*/
  gap: 0.5rem clamp(10px, -16.1px + 2.66vw, 35px);
  margin-top: 11px;
  order: 1;
}

.header_sp_nav {
  display: none;
}

.header_drawer_item {
  border-bottom: none;
  /*position: relative;*/
}

.header_drawer_cta {
  order: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  margin-top: 0;
  width: auto;
  flex-shrink: 0;
  /*margin-left: vw(50);*/
  margin-left: clamp(20px, -11.3px + 3.19vw, 50px);
}

.header_drawer_item--mega.is-mega-open .header_drawer_accordion_body {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.header_drawer_accordion_body {
  display: none;
  opacity: 0;
  position: absolute;
  top: 12rem;
  left: 50%;
  transform: translate(-50%, 0);
  background: #fff;
  box-shadow: 0 10px 21px rgba(40, 45, 52, 0.1);
  padding: 7rem;
  max-width: 150rem;
  display: flex;
  justify-content: center;
  width: calc(100% - 6rem);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 100;
}
.header_drawer_accordion_body .common_inner {
  width: 100%;
}

.header_drawer_sub_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 2.5rem;
  padding: 0;
}

.header_drawer_sub_ttl {
  position: relative;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding-right: 3.3rem;
  margin-bottom: 2rem;
  display: inline-block;
}
.header_drawer_sub_ttl .btn_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  transition: transform 0.3s ease-out;
}
.header_drawer_sub_ttl .btn_arrow svg {
  fill: none;
  width: 2.3rem;
  height: 2.3rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0.00001deg);
}
.header_drawer_sub_ttl .btn_arrow svg path {
  stroke: #e07e00;
}

/* リンク先の無い見出しは矢印スペースを詰める */
.header_drawer_sub_ttl--nolink {
  padding-right: 0;
}

a.header_drawer_sub_ttl {
  transition: opacity 0.3s ease-out;
}
a.header_drawer_sub_ttl:hover {
  opacity: 0.6;
}
a.header_drawer_sub_ttl:hover .btn_arrow {
  transform: translateY(-50%) translateX(0.5rem);
}

.header_drawer_sub_item {
  display: flex;
  flex-direction: column;
}

.header_drawer_sub_link {
  display: block;
  color: #002d4d;
  padding: 2rem 2.6rem 2rem 0.5rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-grow: 1;
  display: flex;
  align-items: center;
  position: relative;
}
.header_drawer_sub_link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #002d4d;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.header_drawer_sub_link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #e07e00;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.header_drawer_sub_link:hover {
  color: #e07e00;
}
.header_drawer_sub_link:hover::before {
  transform: scaleX(0);
}
.header_drawer_sub_link:hover::after {
  transform: scaleX(1);
}
.header_drawer_sub_link .btn_arrow {
  right: 13px;
}

.header_drawer_accordion_icon {
  display: none;
}

.header_drawer_link {
  display: block;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.1em;
  white-space: nowrap;
  padding: 0;
  transition: color 0.2s;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  width: auto;
  justify-content: flex-start;
  box-sizing: border-box;
}
.header_drawer_link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.header_drawer_link:hover::after {
  transform: scaleX(1);
}

.menu_black .header_drawer_link {
  color: #222222;
}
.menu_black .header_drawer_link::after {
  background: #222222;
}

.header_drawer_cta_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -11px;
}

/* ========== header: SP要素を非表示 / スクロール別デザイン ========== */
.header_hamburger {
  display: none;
}

.header_sp_nav {
  display: none;
}

.header.is-scrolled .header_inner {
  height: 10rem;
  transition: height 0.3s ease;
  background-color: #fff;
  box-shadow: 0 10px 21px rgba(40, 45, 52, 0.1);
  padding: 1.5rem 3rem 0 3rem;
}
.header.is-scrolled .header_drawer_link {
  color: #002d4d;
}
.header.is-scrolled .header_drawer_link::after {
  background: #002d4d;
}
.header.is-scrolled {
  /*.header_logo {
  	a {
  		width: vw(80);
  		height: vw(80);
  		transition: width 0.3s ease;

  		img {
  			width: vw(60);
  			transition: width 0.3s ease;
  		}
  	}
  }*/
}

/* ========== header: mdでSPと同じヘッダーにする ========== */
@media screen and (max-width: 980px) {
  .header_hamburger {
    display: flex;
  }
  .header_logo {
    position: absolute;
    left: 4%;
    top: 15px;
    z-index: 10000;
    flex-shrink: unset;
    margin-right: 0;
  }
  .header_logo a {
    width: 75px;
    height: 75px;
  }
  .header_logo a img {
    width: 60px;
  }
  .header_inner {
    padding: 0;
  }
  .header_drawer {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 100dvh;
    background: #002d4d;
    transform: translateY(-100%);
    transition: transform 0.35s ease;
    z-index: 1100;
    overflow-y: auto;
    padding-top: 110px;
    box-sizing: border-box;
  }
  .header_drawer.open {
    transform: translateY(0);
  }
  .header_drawer .header_logo {
    display: none;
  }
  .header_overlay {
    display: block;
  }
  .header_drawer_close {
    display: flex;
  }
  .header_drawer_inner {
    display: flex;
    flex-direction: column;
    padding: 20px 4% 0 4%;
  }
  .header_drawer_cta {
    order: 0;
    flex-direction: row;
    gap: 12px;
    margin-bottom: 24px;
    margin-left: 0;
    margin-top: 0;
    width: 100%;
    flex-shrink: 1;
  }
  .header_drawer_cta_item {
    flex: 1;
    margin-top: -11px;
  }
  .header_drawer_list {
    display: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    margin-top: 0;
    order: 0;
  }
  .header_sp_nav {
    display: block;
    width: 100%;
  }
  .header.is-scrolled .header_inner {
    height: auto;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
  }
  .header.is-scrolled .header_drawer_link {
    color: #fff;
  }
  .header.is-scrolled .header_drawer_link::after {
    background: #fff;
  }
  .js-header.is-scrolled .header_hamburger {
    position: fixed;
    background-color: #002d4d;
    transition: background-color 0.3s ease;
  }
  .header_hamburger {
    width: 71px;
    height: 91px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10000;
  }
  .header_hamburger_in {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 9px;
  }
  .js-header.is-scrolled .header_hamburger {
    position: fixed;
    background-color: #002d4d;
    transition: background-color 0.3s ease;
  }
  .header_hamburger_line {
    display: block;
    width: 35px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }
  .menu_black .js-header:not(.is-scrolled) .header_hamburger_line:not(.open) {
    background: #222222;
  }
  .js-btn span:nth-child(3) {
    width: 28px;
    margin-right: 7px;
  }
  .js-btn span:nth-child(4) .ttl_menu {
    display: block;
  }
  .js-btn span:nth-child(4) .ttl_close {
    display: none;
  }
  .js-btn span.open:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  .js-btn span.open:nth-child(2) {
    opacity: 0;
  }
  .js-btn span.open:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
    margin-right: 0;
    width: 35px;
  }
  .js-btn span.open:nth-child(4) .ttl_menu {
    display: none;
  }
  .js-btn span.open:nth-child(4) .ttl_close {
    display: block;
    opacity: 1;
  }
  .header_hamburger_ttl span {
    color: #fff;
    font-family: "Philosopher", sans-serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 1.2rem;
  }
  .menu_black .js-header:not(.is-scrolled) .header_hamburger_ttl:not(.open) span {
    color: #222222;
  }
  .footer_nav_col--has_sub .footer_nav_link--parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 10px 2px 10px 10px;
  }
  .footer_nav_col--has_sub .footer_nav_sub {
    display: none;
  }
  .footer_nav_list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .footer_nav_col {
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  }
  .footer_nav_link--parent {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 10px;
    display: block;
  }
  .footer_nav_link--parent .btn_arrow {
    display: block;
    right: 12px;
  }
  .footer_nav_link--parent + .footer_nav_link--parent {
    border-top: 1px solid rgba(255, 255, 255, 0.7);
  }
  .common_accordion_icon {
    display: block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    position: relative;
  }
  .common_accordion_icon::before, .common_accordion_icon::after {
    content: "";
    position: absolute;
    background: #e07e00;
    border-radius: 2px;
    transition: transform 0.3s ease;
  }
  .common_accordion_icon::before {
    width: 13px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .common_accordion_icon::after {
    width: 2px;
    height: 13px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  header .footer_link {
    padding: 20px 0 30px 0;
  }
  header .footer_link li a {
    color: #fff;
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.1em;
    font-weight: 500;
    display: block;
    width: 100%;
  }
  .footer_nav_sub {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: #215d87;
    padding: 20px;
  }
  .header_drawer_cta_item--mypage .header_cta_sub {
    color: #fff;
    background: #002d4d;
    border: 1px solid #fff;
  }
  .header_cta_btn {
    width: 100%;
  }
  .header_cta_btn--mypage {
    background: #fff !important;
  }
  .header_cta_btn--mypage .btn_txt {
    color: #002d4d;
    padding-left: 10px;
  }
  .header_cta_btn--mypage .btn_txt::before {
    background: url(../images/common/common_mypage.svg) !important;
    width: 14px;
    height: 16px;
  }
  .header_cta_btn--mypage .btn_arrow path {
    stroke: #fff;
  }
  .header_cta_btn--mypage .btn_arrow::before {
    background-color: #e07e00;
  }
}
/* ========== fix_btn ========== */
.fix_btn {
  position: fixed;
  top: 20rem;
  right: 3rem;
  z-index: 100;
  opacity: 0;
  transform: translateX(calc(100% + 10px));
  transition: opacity 0.3s ease, transform 0.75s ease;
  pointer-events: none;
}
.fix_btn.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.fix_btn ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.fix_btn li a {
  display: block;
  background: #fff;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  transition: opacity 0.2s;
  box-shadow: 0 10px 21px rgba(40, 45, 52, 0.1);
  position: relative;
}
.fix_btn li a:hover {
  background: #e07e00;
}
.fix_btn li a:hover .btn_txt {
  color: #fff;
}
.fix_btn li.fix_btn_mailmag a {
  padding-top: 25px;
}
.fix_btn li.fix_btn_mailmag a .btn_txt {
  padding-top: 35px;
}
.fix_btn li.fix_btn_mailmag a .btn_txt::before {
  background: url(../images/common/fix_mail.svg) no-repeat left top;
  background-size: contain;
  width: 39px;
  height: 27px;
  top: 25px;
}
.fix_btn li.fix_btn_mailmag a:hover .btn_txt::before {
  background: url(../images/common/fix_mail_on.svg) no-repeat left top;
  background-size: contain;
}
.fix_btn li.fix_btn_regist a {
  padding-top: 12px;
}
.fix_btn li.fix_btn_regist a .btn_txt {
  padding-top: 39px;
}
.fix_btn li.fix_btn_regist a .btn_txt::before {
  background: url(../images/common/fix_regist.svg) no-repeat left top;
  background-size: contain;
  width: 41px;
  height: 39px;
  top: 10px;
}
.fix_btn li.fix_btn_regist a:hover .btn_txt::before {
  background: url(../images/common/fix_regist_on.svg) no-repeat left top;
  background-size: contain;
}
.fix_btn li .btn_txt {
  color: #002d4d;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: center;
  display: block;
}
.fix_btn li .btn_txt::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
}
.fix_btn li .btn_arrow {
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translate(-50%, 0);
}
.fix_btn li .btn_arrow svg {
  fill: none;
  width: 1.2rem;
  height: 1.2rem;
  position: relative;
}
.fix_btn li .btn_arrow path {
  stroke: #002d4d;
}

/* ========================================================= top ============================================================ */
/* ========== top_mv ========== */
.top_mv {
  position: relative;
  width: 100%;
  height: 93rem;
  background-image: url("../images/top/top_main.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  max-height: 100vh;
  min-height: 600px;
}

.top_mv_inner {
  position: relative;
  z-index: 1;
  max-width: 1660px;
  width: 90.625%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
}

.top_mv_design01 {
  background: url(../images/top/top_mv_design01.svg);
  background-size: contain;
  content: "";
  position: absolute;
  bottom: -5rem;
  left: 7.5rem;
  width: 26.9rem;
  height: 18.8rem;
  animation: walkSwing 3s ease-in-out infinite;
}

.top_mv_design02 {
  background: url(../images/top/top_mv_design02.svg);
  background-size: contain;
  content: "";
  position: absolute;
  bottom: -5rem;
  right: 7.5rem;
  width: 26.7rem;
  height: 20.7rem;
  z-index: 3;
  animation: walkSwing 2.5s ease-in-out infinite;
  transform-origin: center bottom;
}

.top_mv_box {
  /*width: 880px;*/
  width: clamp(780px, 675.6px + 10.65vw, 880px);
  background-color: rgba(255, 255, 255, 0.95);
  /*padding: vw(65) vw(125);*/
  padding: clamp(35px, 3.7px + 3.19vw, 65px) clamp(65px, 2.4px + 6.39vw, 125px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  box-sizing: border-box;
  text-align: center;
}
.top_mv_box::before {
  background-color: #002d4d;
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translate(-50%, 0);
  width: calc(100% - 4rem);
  height: 2px;
}
.top_mv_box::after {
  background-color: #002d4d;
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, 0);
  width: calc(100% - 4rem);
  height: 2px;
}
@media screen and (max-width: 1294px) {
  .top_mv_box {
    margin-top: 7rem;
  }
}

.top_mv_logo {
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  /*font-size: 3.4rem;*/
  font-size: clamp(2.8rem, 2.17rem + 1.02vw, 3.4rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
  color: #002d4d;
}

@media screen and (max-width: 1294px) {
  .top_mv_catch img {
    max-width: 65%;
  }
}

.top_mv_sub {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.4;
  letter-spacing: 0.14em;
  /*margin: vw(30) 0 vw(40) 0;*/
  margin: clamp(15px, -0.7px + 1.6vw, 30px) 0 0 0;
}

.top_mv_btns {
  margin-top: clamp(20px, -0.9px + 2.13vw, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.top_mv_btn--service .btn_sub {
  background-color: #fffdf3;
  width: 22rem;
  height: 3.4rem;
  position: absolute;
  top: -2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #e07e00;
  letter-spacing: 0.1em;
  font-weight: 500;
  z-index: 1;
  left: 50%;
  transform: translate(-50%, 0);
}
.top_mv_btn--service a {
  background: #e07e00;
  padding-top: 7px;
}
.top_mv_btn--service a::before {
  background: #002d4d;
}
.top_mv_btn--service a .btn_txt {
  position: relative;
  padding-left: 21px;
}
.top_mv_btn--service a .btn_txt::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  background: url(../images/common/common_mail_wht.svg) no-repeat left top;
  background-size: contain;
  width: 18px;
  height: 14px;
}
.top_mv_btn--service a .btn_arrow {
  margin-top: 3px;
}
.top_mv_btn--service a .btn_arrow::before {
  background-color: #fff;
}
.top_mv_btn--service a .btn_arrow path {
  stroke: #e07e00;
}

/* ========== top_news ========== */
.top_news {
  display: flex;
  justify-content: center;
  padding: 5rem 0;
}

.top_news_inner {
  display: flex;
  height: 8rem;
}

.top_news_head {
  flex-shrink: 0;
  width: 24rem;
  background-color: #e07e00;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top_news_label {
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.1em;
  white-space: nowrap;
  position: relative;
  padding-left: 34px;
}
.top_news_label::before {
  background: url(../images/common/common_icon_caution.svg) no-repeat left top;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}

.top_news_list {
  width: calc(100% - 24rem);
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 0 1rem 0 4rem;
}

.top_news_item {
  width: 100%;
}

.top_news_date {
  color: #a5a5a5;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  font-family: "Philosopher", sans-serif;
  margin-right: 3rem;
}

.top_news_link {
  letter-spacing: 0.1em;
  font-weight: 500;
  transition: color 0.2s;
  display: block;
}
.top_news_link:hover {
  color: #e07e00;
}

/* ========== top_company ========== */
.top_company {
  padding: 8rem 0;
  background: #fff;
}
.top_company .common_inner {
  margin: 0 auto;
  position: relative;
}

.top_company_ttl {
  margin-bottom: 5.6rem;
}
.top_company_ttl .common_en01 {
  margin-bottom: -1.8rem;
  color: #fff;
}

.top_company_design01 {
  background: url(../images/top/top_company_design01.svg);
  background-size: contain;
  content: "";
  position: absolute;
  top: 0;
  left: -9.5rem;
  width: 12.6rem;
  height: 10.1rem;
  animation: floatUpDown 3s ease-in-out infinite;
}
@media screen and (max-width: 1408px) {
  .top_company_design01 {
    left: 0;
  }
}

.top_company_design02 {
  background: url(../images/top/top_company_design02.svg);
  background-size: contain;
  content: "";
  position: absolute;
  bottom: -21rem;
  right: -5.5rem;
  width: 19.2rem;
  height: 20.9rem;
  z-index: 3;
  animation: walkSwing 2.5s ease-in-out infinite;
  transform-origin: center bottom;
}
@media screen and (max-width: 1408px) {
  .top_company_design02 {
    right: 0;
  }
}

.top_company_circles {
  display: flex;
  justify-content: center;
  margin-bottom: 5.6rem;
  background: url(../images/top/top_company_ct_bk.png) no-repeat center center;
  background-size: contain;
  height: 578px;
  position: relative;
}

.top_company_circle {
  width: 578px;
  height: 578px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 3rem;
  box-sizing: border-box;
}
.top_company_circle.leftbox {
  margin-right: -3rem;
}
.top_company_circle.rightbox {
  margin-left: -3rem;
}

.top_company_circle_in {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top_company_circle_en {
  font-family: "Philosopher", sans-serif;
  font-size: 6.2rem;
  font-weight: 500;
  color: #002d4d;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.top_company_circle_ttl {
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 700;
  color: #002d4d;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}

.top_company_circle_txt {
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  line-height: 1.9375;
  min-height: 18.6rem;
}
@media screen and (max-width: 980px) {
  .top_company_circle_txt {
    font-size: clamp(22px, 1.666vw, 32px);
    line-height: 1.9375;
    min-height: 5.8125em;
  }
}

.top_company_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
.top_company_list li {
  display: flex;
}
.top_company_list a {
  font-weight: 500;
  color: #002d4d;
  letter-spacing: 0.1em;
  padding: 2rem 4rem 2rem 1rem;
  position: relative;
  flex-grow: 1;
}
.top_company_list a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #002d4d;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.top_company_list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #e07e00;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.top_company_list a:hover {
  color: #e07e00;
}
.top_company_list a:hover::before {
  transform: scaleX(0);
}
.top_company_list a:hover::after {
  transform: scaleX(1);
}

/* ========== top_news_company_wrap ========== */
.top_news_company_wrap {
  position: relative;
  /*background: linear-gradient(135deg,
  		#edf4f8 0%,
  		#ffefdb 80.7%,
  		#ffefdb 100%);
  overflow: hidden;*/
  background: url(../images/top/top_company_bk.png) no-repeat center top;
  background-size: cover;
  padding-top: 21rem;
  padding-bottom: 17rem;
  margin-top: -15rem;
}

.top_news_company_wrap .top_news {
  background: transparent;
}

.top_news_company_wrap .top_company {
  background: transparent;
}

/* ========== top_reason ========== */
.top_reason {
  position: relative;
  height: 280vh;
  /*&::before {
  	content: "";
  	position: absolute;
  	top: -136px;
  	left: 0;
  	width: 100%;
  	height: 136px;
  	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 136' preserveAspectRatio='none'><path d='M0,0 H1920 V36 S1422.41,136 960,136 C463.617,136 0,36 0,36 V0 Z' fill='%23ffffff'/></svg>");
  	background-size: 100% 100%;
  	background-repeat: no-repeat;
  	pointer-events: none;
  	z-index: 2;
  	transform: scaleY(-1);
  }*/
}

.top_reason_sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 80rem;
  display: flex;
  align-items: center;
}
.top_reason_sticky .common_inner {
  margin: 0 auto;
}

.top_reason_inner {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.top_reason_left {
  width: 40rem;
  flex-shrink: 0;
}

.top_reason_ttl {
  text-align: left;
  margin-bottom: 2.4rem;
  position: relative;
}
.top_reason_ttl .common_en01 {
  margin-bottom: -1.5rem;
  margin-left: -0.08em;
  display: block;
  position: relative;
  z-index: 5;
}
.top_reason_ttl .common_en01.before {
  width: 45rem;
  overflow: hidden;
  z-index: 6;
}
.top_reason_ttl .common_en01.after {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
}

.top_reason_txt {
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #222222;
  margin-bottom: 4rem;
}

.top_reason_nums {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 6rem;
}

.top_reason_num {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Philosopher", sans-serif;
  font-size: 2rem;
  color: #cfd6d6;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.top_reason_num.is-active {
  color: #e07e00;
  border-bottom: 1px solid #e07e00;
}

.top_reason_btn a {
  background: #002d4d;
}

.top_reason_right {
  flex: 1;
}

.top_reason_cards {
  position: relative;
  height: 60rem;
}

.top_reason_card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #f7f6f3;
  overflow: hidden;
  opacity: 0;
  transform: translateY(600px) scale(0.97);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  padding: 7rem 7rem 6rem 7rem;
  height: 60rem;
  /*box-shadow: 10px -10px #e5e4e0;*/
}
.top_reason_card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 3;
  pointer-events: auto;
}
.top_reason_card.is-prev {
  opacity: 1;
  transform: translateX(10px) translateY(-10px) scale(1);
  z-index: 2;
  background: #e5e4e0;
}
.top_reason_card.is-prev2 {
  opacity: 1;
  transform: translateX(20px) translateY(-20px) scale(1);
  z-index: 1;
  background: #d5d4d0;
}

.top_reason_card_num {
  display: block;
  font-family: "Philosopher", sans-serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: #e07e00;
  letter-spacing: 0.1em;
  margin-right: 3.5rem;
}

.top_reason_card_ttl_block {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.top_reason_card_ttl {
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.top_reason_card_img {
  text-align: center;
  margin-bottom: 3rem;
}

.top_reason_card_desc {
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 2;
}

/* ========== top_service ========== */
.top_service {
  padding: 26rem 0 8rem 0;
  /*background: #f5f7fa;*/
  background: url(../images/top/top_service_bk.png) no-repeat center top;
  background-size: cover;
  display: flex;
  justify-content: center;
  position: relative;
  /*&::before {
  	content: "";
  	position: absolute;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 136px;
  	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 136' preserveAspectRatio='none'><path d='M0,0 H1920 V36 S1422.41,136 960,136 C463.617,136 0,36 0,36 V0 Z' fill='%23ffffff'/></svg>");
  	background-size: 100% 100%;
  	background-repeat: no-repeat;
  	pointer-events: none;
  	z-index: 2;
  }*/
  /*&::after {
  	content: "";
  	position: absolute;
  	bottom: -136px;
  	left: 0;
  	width: 100%;
  	height: 136px;
  	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 136' preserveAspectRatio='none'><path d='M0,0 H1920 V36 S1422.41,136 960,136 C463.617,136 0,36 0,36 V0 Z' fill='%23f5f7fa'/></svg>");
  	background-size: 100% 100%;
  	background-repeat: no-repeat;
  	pointer-events: none;
  	z-index: 2;
  }*/
}

.top_service_ttl {
  margin-bottom: 2rem;
}
.top_service_ttl .common_en01 {
  color: #fff;
}
.top_service_ttl .h2_ttl {
  margin-top: 0;
}

.top_service_desc {
  text-align: center;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #222222;
  margin-bottom: 6.5rem;
  margin-top: 4rem;
}

.top_service_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto auto 5rem auto auto auto;
  column-gap: 2rem;
  row-gap: 0;
  margin-bottom: 7.5rem;
}

.top_service_list > li {
  display: contents;
}

.top_service_list > li:nth-child(n+5) .top_service_card {
  grid-row: 5/span 3;
}

@media screen and (max-width: 1248px) {
  .top_service_list {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto 5rem auto auto auto 5rem auto auto auto;
  }
  .top_service_list > li:nth-child(n+4) .top_service_card {
    grid-row: 5/span 3;
  }
  .top_service_list > li:nth-child(n+7) .top_service_card {
    grid-row: 9/span 3;
  }
}
.top_service_card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  background: #fff;
  border-top: 2px solid #002d4d;
  padding: 4rem 3.5rem;
  position: relative;
}
.top_service_card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s ease;
  background-color: #002d4d;
}
.top_service_card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  background-color: #e07e00;
}
.top_service_card:hover::before {
  transform: scaleX(0);
}
.top_service_card:hover::after {
  transform: scaleX(1);
}
.top_service_card:hover .btn_arrow::before {
  background-color: #e07e00;
}
.top_service_card .btn_arrow {
  position: absolute;
  bottom: 35px;
  right: 33px;
}
.top_service_card .btn_arrow svg {
  fill: none;
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.top_service_card .btn_arrow path {
  stroke: #fff;
}
.top_service_card .btn_arrow::before {
  background-color: #002d4d;
  border-radius: 50%;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: all 0.3s ease-out;
  width: 26px;
  height: 26px;
}

.top_service_card_ttl {
  font-size: 2.6rem;
  font-weight: 500;
  color: #002d4d;
  text-align: center;
  line-height: 1.8;
  align-self: center;
}
@media screen and (max-width: 1294px) {
  .top_service_card_ttl {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 980px) {
  .top_service_card_ttl {
    font-size: 1.8rem;
  }
}

.top_service_card_img {
  width: 100%;
  text-align: center;
  margin: 2.5rem 0 3rem 0;
}

.top_service_card_desc {
  line-height: 2.25;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-align: justify;
}

.top_service_btn_wrap {
  display: flex;
  justify-content: center;
}

.top_service_btn {
  max-width: 36rem;
}

/* ========== top_library ========== */
.top_library {
  background: url(../images/top/top_library_bk.png) no-repeat center top;
  background-size: cover;
  padding: 22rem 0 14rem 0;
  overflow: hidden;
}
.top_library .common_inner {
  margin: 0 auto;
}

.top_library_ttl {
  margin-bottom: 2rem;
}
.top_library_ttl .h2_ttl {
  margin-top: 0;
}

.top_library_catch {
  display: table;
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 7rem;
  border-bottom: 1px solid #282828;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
}

.top_library_txt {
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
  margin-bottom: 3rem;
}

/*.top_library_slider {
	margin-top: vw(70);
	margin-bottom: vw(70);

	img {
		width: 100%;
		height: auto;
		display: block;
		aspect-ratio: 335 / 177;
	}
}*/
.top_library_list {
  max-width: 1070px;
  margin: 7rem auto 6rem auto;
}
.top_library_list ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
}

.top_library_btn_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.top_library_btn_sub {
  letter-spacing: 0.1em;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22rem;
  height: 3.4rem;
  background-color: #eff4f5;
  position: relative;
  top: 1.7rem;
  z-index: 1;
}

.top_library_btn {
  max-width: 36rem;
}
.top_library_btn a {
  padding: 10px 0 0 0;
  background: #002d4d;
}
.top_library_btn a .btn_arrow {
  margin-top: 5px;
}

/* ========== top_content ========== */
.top_content {
  padding: 16rem 0 10rem 0;
  /*background: #f5f6f9;*/
  background: url(../images/top/top_content_bk.png) no-repeat center top;
  background-size: cover;
  display: flex;
  justify-content: center;
  position: relative;
  /*&::after {
  	content: "";
  	position: absolute;
  	top: -136px;
  	left: 0;
  	width: 100%;
  	height: 136px;
  	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 136' preserveAspectRatio='none'><path d='M0,0 H1920 V36 S1422.41,136 960,136 C463.617,136 0,36 0,36 V0 Z' fill='%23f5f7fa'/></svg>");
  	background-size: 100% 100%;
  	background-repeat: no-repeat;
  	pointer-events: none;
  	z-index: 2;
  	transform: scaleY(-1);
  }*/
}
.top_content .common_w_inner {
  margin: 0 auto;
  position: relative;
}

.top_content_design01 {
  background: url(../images/top/top_content_design01.svg);
  background-size: contain;
  content: "";
  position: absolute;
  top: -23.6rem;
  left: 5rem;
  width: 17rem;
  height: 23rem;
  z-index: 3;
  animation: floatUpDown 3s ease-in-out infinite;
}

.top_content_design02 {
  background: url(../images/top/top_content_design02.svg);
  background-size: contain;
  content: "";
  position: absolute;
  top: -15.6rem;
  right: 9rem;
  width: 12.4rem;
  height: 9.9rem;
  z-index: 3;
  animation: walkSwing 2s ease-in-out infinite;
}

.top_content_ttl {
  margin-bottom: 2rem;
}
.top_content_ttl .common_en01 {
  color: #fff;
}
.top_content_ttl .h2_ttl {
  margin-top: 0;
}

.top_content_lead {
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 7rem;
  margin-top: 4rem;
}

.top_content_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}

.top_content_item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top_content_img {
  width: 100%;
  aspect-ratio: 390/280;
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.top_content_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top_content_item_ttl {
  font-size: 2.2rem;
  font-weight: 500;
  color: #002d4d;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 2.5rem;
  flex: 1;
}

.top_content_btn a {
  padding: 0 4rem 0 2rem;
}
.top_content_btn a .btn_txt {
  letter-spacing: 0;
}
@media screen and (max-width: 980px) {
  .top_content_btn a .btn_arrow {
    right: 20px;
  }
}

/* ========== top_column ========== */
.top_column {
  background: url(../images/top/top_column_bk.png) no-repeat center top;
  background-size: cover;
  width: 100%;
  position: relative;
  z-index: 1;
  min-height: 118rem;
  padding: 18rem 0 18rem 0;
  margin-top: -10rem;
}
.top_column .common_inner {
  margin: 0 auto;
}

.top_column_ttl .h2_ttl {
  color: #fff;
  margin-top: 0;
}
.top_column_ttl .common_en01 {
  color: #0d436a;
}

.top_column_catch {
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-top: 4.5rem;
  font-size: 2rem;
}

.top_column_lead {
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-top: 2rem;
  margin-bottom: 7rem;
}

.top_column_slider_wrap {
  overflow: hidden;
  margin-bottom: 6rem;
}

.top_column_slider .splide__arrow {
  background: transparent;
  border: none;
  box-shadow: none;
  opacity: 1;
  width: 7.6rem;
  height: 7.6rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: min(10.34vw - 6.84px, 130px);
}
.top_column_slider .splide__arrow svg {
  display: none;
}
.top_column_slider .splide__arrow:hover {
  opacity: 0.7;
}
.top_column_slider .splide__arrow--prev {
  background-image: url("../images/top/top_column_prev.png");
}
.top_column_slider .splide__arrow--next {
  background-image: url("../images/top/top_column_next.png");
}
.top_column_slider .splide__arrow--prev {
  left: calc(50% - 3.8rem - 685px);
}
@media screen and (max-width: 1408px) {
  .top_column_slider .splide__arrow--prev {
    left: 20px;
  }
}
.top_column_slider .splide__arrow--next {
  left: calc(50% - 3.8rem + 685px);
}
@media screen and (max-width: 1408px) {
  .top_column_slider .splide__arrow--next {
    left: inherit;
    right: 20px;
  }
}
.top_column_slider .splide__slide {
  opacity: 0.3;
  transition: opacity 0.4s ease;
}
.top_column_slider .splide__slide.is-visible {
  opacity: 1;
}

.top_column_card {
  display: block;
}
.top_column_card:hover {
  opacity: 0.7;
}
.top_column_card:hover .top_column_card_img img {
  transform: scale(1.04);
}

.top_column_card_img {
  width: 100%;
  aspect-ratio: 380/260;
  overflow: hidden;
  margin-bottom: 2.5rem;
  backface-visibility: hidden;
}
.top_column_card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  backface-visibility: hidden;
}

.top_column_card_date {
  color: #82a1b8;
  letter-spacing: 0.1em;
  font-family: "Philosopher", sans-serif;
  margin-bottom: 1rem;
}

.top_column_card_ttl {
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.top_column_btn_wrap {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.top_column_btn {
  max-width: 36rem;
}
.top_column_btn a {
  background: #fff;
}
.top_column_btn a .btn_txt {
  color: #002d4d;
  font-weight: 700;
}

/* ========== top_news_block ========== */
.top_news_block {
  padding: 15rem 0 10rem 0;
  display: flex;
  justify-content: center;
  position: relative;
}

.top_news_block_inner {
  display: flex;
  gap: 6rem;
  align-items: flex-start;
  position: relative;
}

.top_news_block_design01 {
  background: url(../images/top/top_news_design01.svg);
  background-size: contain;
  content: "";
  position: absolute;
  top: calc(-15rem - 100px);
  right: -3rem;
  width: 18rem;
  height: 23.6rem;
  z-index: 3;
  animation: floatUpDown 3s ease-in-out infinite;
}
@media screen and (max-width: 1408px) {
  .top_news_block_design01 {
    right: 0;
  }
}

.top_news_block_left {
  width: 36rem;
  flex-shrink: 0;
}

.top_news_block_ttl {
  text-align: left;
  margin-bottom: 2rem;
}
.top_news_block_ttl .h2_ttl {
  margin-top: 0;
}

.top_news_block_lead {
  line-height: 2;
  letter-spacing: 0.1em;
  color: #222222;
  margin-top: 4rem;
  margin-bottom: 5rem;
  font-weight: 500;
}

.top_news_block_btn a {
  background: #002d4d;
}

.top_news_block_right {
  flex: 1;
}

.top_news_block_list {
  display: flex;
  flex-direction: column;
}

.top_news_block_item {
  border-bottom: 1px solid #e4e6ea;
}
.top_news_block_item a {
  padding: 3rem 6rem 3rem 2rem;
}
.top_news_block_item a:hover .top_news_block_link {
  color: #e07e00;
}

.top_news_block_meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.top_news_block_date {
  font-family: "Philosopher", sans-serif;
  color: #a5a5a5;
  letter-spacing: 0.1em;
}

.top_news_block_cat {
  font-size: 1.4rem;
  color: #002d4d;
  background: #eff4f5;
  padding: 2px 15px;
  letter-spacing: 0.1em;
  min-width: 12rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.top_news_block_link {
  color: #222222;
  letter-spacing: 0.1em;
  transition: color 0.2s;
  font-weight: 500;
  width: 100%;
}

/* ========== top_recruit ========== */
.top_recruit {
  padding: 10rem 0 8rem 0;
  background: #fff;
}
.top_recruit .common_w_inner {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 980px) {
  .top_recruit .common_btn01.sp {
    display: block;
    margin-top: 5rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.top_recruit_inner {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 980px) {
  .top_recruit_inner {
    flex-wrap: wrap;
  }
}

.top_recruit_img {
  /*width: 50%;*/
  width: clamp(45%, 38.3% + 0.6vw, 50%);
  height: 56rem;
  flex-shrink: 0;
  background: url(../images/top/top_recruit_img01.jpg) no-repeat left bottom;
  background-size: cover;
  position: relative;
}
.top_recruit_img .common_en01 {
  position: absolute;
  content: "";
  left: 3rem;
  bottom: 3rem;
  color: #d5e0f1;
  /*font-size: 4.6rem;*/
  font-size: clamp(28px, 9.2px + 1.92vw, 46px);
  line-height: 1.1;
}
@media screen and (max-width: 980px) {
  .top_recruit_img {
    width: 100%;
    order: 1;
  }
}

.top_recruit_design01 {
  animation: rotateCircle 20s linear infinite;
  transform-origin: center center;
  position: absolute;
  content: "";
  background: url(../images/top/top_recruit_design.png) no-repeat left top;
  right: -50px;
  top: -50px;
  width: 180px;
  height: 183px;
}
@media screen and (max-width: 980px) {
  .top_recruit_design01 {
    right: 4.6875%;
  }
}

.top_recruit_body {
  flex: 1;
  /*padding-left: vw(120);*/
  padding-left: clamp(50px, -23.1px + 7.45vw, 120px);
}
@media screen and (max-width: 980px) {
  .top_recruit_body {
    width: 100%;
    order: 0;
  }
  .top_recruit_body .common_btn01.pc {
    display: none;
  }
}

.top_recruit_ttl {
  text-align: left;
}
.top_recruit_ttl .common_en01 {
  margin-left: -0.1em;
}
.top_recruit_ttl .h2_ttl {
  margin-top: 0;
}

.top_recruit_catch {
  font-size: 3.2rem;
  font-weight: 500;
  color: #002d4d;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin: 5rem 0 6rem 0;
}

.top_recruit_btn a {
  background: #002d4d;
}

/* ========== top_banner ========== */
.top_banner {
  padding: 2rem 0 29rem 0;
  background: #f5f7fa;
  display: flex;
  justify-content: center;
}

.top_banner_link {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/top/top_bnr_bk.jpg) no-repeat center top;
  background-size: cover;
  height: 28rem;
  padding: 7rem;
  box-sizing: border-box;
}

.top_banner_in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.top_banner_disc {
  padding-left: 8rem;
}
@media screen and (max-width: 980px) {
  .top_banner_disc {
    padding-left: 0;
  }
}

.top_banner_ttl {
  color: #fff;
  font-size: 4.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}

.top_banner_txt {
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
}

.top_banner_btn a {
  background: #fff;
}
.top_banner_btn a .btn_txt {
  color: #002d4d;
  font-weight: 700;
}

/* ========================================================= sub ============================================================ */
.main_imgnone {
  margin-top: 15rem;
}

.common_sub_main {
  background: url(../images/common/sub_mainimg.jpg) no-repeat center top;
  background-size: cover;
  display: flex;
  justify-content: center;
  height: 52rem;
  width: 100%;
}
.common_sub_main .common_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10rem;
}
.common_sub_main_box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.common_sub_main .h1_ttl {
  font-size: 2.2rem;
  color: #fff;
  letter-spacing: 0.1em;
  font-weight: 500;
  position: relative;
}
.common_sub_main .common_en01 {
  font-size: 10.2rem;
  letter-spacing: 0.1em;
  color: #fff;
  line-height: 1.2;
  display: block;
}

.breadcrumb {
  padding: 2.5rem 0;
  display: flex;
  justify-content: center;
}

.breadcrumb_list {
  display: flex;
  flex-wrap: wrap;
}

.breadcrumb_list span {
  position: relative;
  letter-spacing: 0.1em;
  line-height: 2;
  font-weight: 500;
}

.breadcrumb_list a {
  margin-right: 15px;
  letter-spacing: 0.1em;
  line-height: 2.25;
  font-weight: 500;
  color: #002d4d;
  position: relative;
  padding-right: 31px;
  display: block;
  font-weight: 500;
  text-decoration: underline;
}

.breadcrumb_list a::after {
  background: url(../images/common/icon_arrow_blue.svg) no-repeat left top;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  content: "";
  width: 16px;
  height: 11px;
}

.breadcrumb_list a:hover {
  text-decoration: none;
}

.wp-pagenavi {
  clear: both;
  text-align: center;
  margin-top: 8rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.wp-pagenavi a,
.wp-pagenavi span {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Philosopher", sans-serif;
  color: #002d4d;
  font-weight: 500;
  font-size: 1.6rem;
  border: none !important;
}

.wp-pagenavi a:hover,
.wp-pagenavi span.current {
  border: 1px solid #002d4d !important;
  color: #002d4d !important;
  background-color: #f5f6f9 !important;
}

.wp-pagenavi span.pages {
  border-radius: 0;
  border: none !important;
  background-color: inherit !important;
  color: #222222 !important;
}

.wp-pagenavi .nextpostslink {
  position: relative;
  margin-left: 1rem;
  background: url(../images/common/icon_next.png) no-repeat center center;
}
.wp-pagenavi .nextpostslink:hover {
  opacity: 0.7;
}

.wp-pagenavi .previouspostslink {
  position: relative;
  background-color: #002d4d;
  background: url(../images/common/icon_prev.png) no-repeat center center;
}
.wp-pagenavi .previouspostslink:hover {
  opacity: 0.7;
}

.entry_title {
  font-weight: 700;
  font-size: 2.8rem;
  padding-bottom: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e4e6ea;
}

.entry_body {
  margin-bottom: 10rem;
}
.entry_body > figure {
  margin: 4rem 0;
}
.entry_body > figure figcaption {
  font-size: 1.4rem;
  margin-top: 1.5rem;
  font-weight: 500;
}
.entry_body p {
  line-height: 2.25;
  font-weight: 500;
  margin: 4rem 0;
}
.entry_body h2 {
  line-height: 1.4;
  font-size: 2.4rem;
  font-weight: 700;
  border-top: 2px solid #002d4d;
  border-bottom: 2px solid #002d4d;
  margin: 6rem 0 6rem 0;
  padding: 1.3rem 2rem;
}
.entry_body h3 {
  line-height: 1.4;
  font-size: 2rem;
  font-weight: 700;
  border-left: 2px solid #002d4d;
  margin: 4rem 0 4rem 0;
  padding-left: 0.5em;
}
.entry_body h4 {
  line-height: 1.4;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 2rem 0 2rem 0;
}
.entry_body ul {
  margin: 2rem 0;
}
.entry_body ul li {
  margin-bottom: 5px;
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
  padding-left: 1.7em;
}
.entry_body ul li::before {
  content: "●";
  position: absolute;
  top: 0.25em;
  left: 0;
  color: #002d4d;
  font-size: 10px;
}
.entry_body {
  /*ol {
  	margin: 2rem 0;

  	li {
  		margin-bottom: 5px;
  		font-size: 1.6rem;
  		font-weight: 500;
  		list-style-type: none;
  		counter-increment: num 1;
  		position: relative;
  		padding-left: 1.7em;

  		&::before {
  			content: counter(num)".";
  			color: $mainColor;
  			font-weight: 900;
  			font-size: 1.6rem;
  			position: absolute;
  			top: 0;
  			left: 0;
  		}
  	}
  }*/
}
.entry_body ol {
  margin: 2rem 0;
  counter-reset: item;
  list-style: none;
  padding-left: 0;
}
.entry_body ol li {
  display: block;
  counter-increment: item;
}
.entry_body ol li::before {
  content: counters(item, "-") ". ";
  font-weight: bold;
}
.entry_body ol li ol {
  margin: 0.5rem 0 1rem 0;
  counter-reset: item;
  list-style: none;
  padding-left: 1em;
  margin-top: 0.5em;
}
.entry_body pre {
  margin: 6rem 0;
  background-color: #f7f6f3;
  border: 2px solid #002d4d;
  padding: 4rem 3.5rem;
  font-weight: 500;
  line-height: 2;
}
.entry_body a:not(.wp-block-button__link):not(.wp-blogcard-item) {
  color: #002d4d;
  font-weight: 500;
  position: relative;
  display: inline-block;
  padding-right: 21px;
  border-bottom: 1px solid #002d4d;
  margin: 3rem 0 3rem 0;
}
.entry_body a:not(.wp-block-button__link):not(.wp-blogcard-item)::before {
  background: url(../images/common/icon_arrow_blue.svg) no-repeat left top;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  content: "";
  width: 16px;
  height: 11px;
}
.entry_body a:not(.wp-block-button__link):not(.wp-blogcard-item):hover {
  opacity: 0.7;
}
.entry_body .wp-block-button {
  max-width: 30rem;
  height: 7rem;
  margin: 3rem 0 3rem 0;
}
.entry_body a.wp-block-button__link {
  width: 30rem;
  height: 7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #002d4d;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-radius: 0;
}
.entry_body a.wp-block-button__link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  background-color: #e07e00;
}
.entry_body a.wp-block-button__link:hover::before {
  transform: scaleX(1);
}
.entry_body a.wp-block-button__link:hover .btn_arrow svg {
  opacity: 1;
}
.entry_body a.wp-block-button__link:hover .btn_arrow::before {
  width: 26px;
  height: 26px;
}
.entry_body a.wp-block-button__link .btn_arrow {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.entry_body a.wp-block-button__link .btn_arrow svg {
  fill: none;
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0.00001deg);
  opacity: 0;
}
.entry_body a.wp-block-button__link .btn_arrow path {
  stroke: #fff;
}
.entry_body a.wp-block-button__link .btn_arrow::before {
  background-color: #e07e00;
  border-radius: 50%;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0.00001deg);
  position: absolute;
  transition: all 0.3s ease-out;
  width: 6px;
  height: 6px;
}

.sub_single_entry_box {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
}
.sub_single_entry_box .entry_article {
  width: calc(75% - 5rem);
}
@media screen and (max-width: 980px) {
  .sub_single_entry_box .entry_article {
    width: 100%;
  }
}
.sub_single_entry_box .side_area {
  width: 25%;
}
@media screen and (max-width: 980px) {
  .sub_single_entry_box .side_area {
    margin-top: 50px;
    width: 100%;
  }
}
.sub_single_entry_box .side_area .side_title {
  color: #fff;
  background-color: #002d4d;
  height: 6rem;
  font-size: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
}
.sub_single_entry_box .side_area .side_item:not(:last-child) {
  border-bottom: 1px solid #dddddd;
}
.sub_single_entry_box .side_area .side_item a {
  background-color: #f5f6f9;
  padding: 1.8rem 6rem 1.8rem 2rem;
  font-weight: 500;
}

.common_sub_container_bg {
  display: flex;
  justify-content: center;
  padding: 6.5rem 0 12rem 0;
}

.common_sub_container02_bg {
  display: flex;
  justify-content: center;
  position: relative;
  background-color: #f5f6f9;
  margin-top: 10rem;
  padding: 6.5rem 0 12rem 0;
}
.common_sub_container02_bg::before {
  background: url(../images/common/bk_circle_top_gray.png) no-repeat center top;
  background-size: cover;
  content: "";
  position: absolute;
  top: -10rem;
  left: 0;
  width: 100%;
  height: 10rem;
}

.common_sub_lead {
  text-align: center;
  margin-bottom: 8.5rem;
}
.common_sub_lead p + p {
  margin-top: 3rem;
}

.common_sub_h2_ttl {
  text-align: center;
  margin-bottom: 4rem;
}
.common_sub_h2_ttl .common_en01 {
  font-size: 12.2rem;
  font-family: "Philosopher", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  display: block;
  line-height: 1;
}
.common_sub_h2_ttl .h2_ttl {
  margin-top: 0.5rem;
  display: inline-block;
  font-size: 2.6rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.common_form_ttl {
  text-align: center;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 4rem;
}
.common_form .common_sub_lead {
  margin-bottom: 6rem;
}

.common_form_thanks_box {
  padding: 7.5rem;
  background-color: #f5f6f9;
  margin-bottom: 6rem;
  position: relative;
}
.common_form_thanks_box_ttl {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
}
.common_form_thanks_box_add {
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
  line-height: 2.25;
  margin-bottom: 3.5rem;
}
.common_form_thanks_box_card {
  background-color: #fff;
  border: 1px solid #16376f;
  padding: 3rem;
  width: 60rem;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: max-content;
  justify-content: center;
}
.common_form_thanks_box_card dl {
  line-height: 2;
}
.common_form_thanks_box_card dl + dl {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}
.common_form_thanks_box_card dl dt {
  display: inline;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.common_form_thanks_box_card dl dt::after {
  content: "：";
  margin: 0 0.25em;
}
.common_form_thanks_box_card dl dd {
  display: inline;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-left: 0;
}
.common_form_thanks_box_card dl dd::after {
  content: "\a";
  white-space: pre;
}

/* ========== service ========== */
.service .common_sub_main {
  background: url(../images/service/service_mainimg.jpg) no-repeat center top;
  background-size: cover;
}

/* ========== sub_service_list ========== */
.sub_service_list_inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem 4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.sub_service_item {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 4rem 4rem;
  background-color: #f5f6f9;
  border-top: 2px solid #002d4d;
  border-bottom: 2px solid #002d4d;
  box-sizing: border-box;
}

.sub_service_card_icon {
  margin-right: 3rem;
  width: 13.6rem;
  height: 13.6rem;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub_service_card_icon img {
  width: 7.9rem;
}

.sub_service_card_ttl {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}
.sub_service_card_ttl h2 {
  font-size: 2.8rem;
  font-weight: 500;
  color: #002d4d;
  line-height: 1.4;
  width: calc(100% - 16.6rem);
}

.sub_service_card_desc {
  line-height: 2.25;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: justify;
  flex: 1;
  margin-bottom: 3rem;
}

.sub_service_card_btn {
  margin: 0 auto;
  max-width: 36rem;
}

/* ========== library ========== */
.library .common_sub_main {
  background: url(../images/library/library_mainimg.jpg) no-repeat center top;
  background-size: cover;
}

.sub_libraly_intro {
  background: #f5f6f9;
  padding: 9rem 8rem 7rem 8rem;
  margin-bottom: 16rem;
  position: relative;
}
.sub_libraly_intro::after {
  content: "";
  position: absolute;
  bottom: -8rem;
  left: 50%;
  transform: translateX(-50%);
  border-left: 14rem solid transparent;
  border-right: 14rem solid transparent;
  border-top: 8rem solid #f5f6f9;
}

.sub_libraly_design01 {
  background: url(../images/library/libraly_design01.png) no-repeat center center;
  background-size: contain;
  content: "";
  position: absolute;
  bottom: 4.5rem;
  right: 6.5rem;
  width: 13.9rem;
  height: 20.5rem;
  animation: floatUpDown 3s ease-in-out infinite;
}
@media screen and (max-width: 980px) {
  .sub_libraly_design01 {
    bottom: 25rem;
  }
}

.sub_libraly_intro_ttl {
  text-align: center;
  margin-bottom: 5rem;
}
.sub_libraly_intro_ttl .h2_ttl {
  font-size: 3.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.sub_libraly_intro_box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4rem;
  padding: 4rem 3rem 4rem 1.5rem;
  border-top: 2px dotted #002d4d;
  border-bottom: 2px dotted #002d4d;
  margin-bottom: 6rem;
}

.sub_libraly_intro_img {
  /*flex: 0 0 vw(505);*/
  width: 45%;
}
@media screen and (max-width: 980px) {
  .sub_libraly_intro_img {
    width: 100%;
    max-width: 505px;
    margin-left: auto;
    margin-right: auto;
  }
}
.sub_libraly_intro_img img {
  width: 100%;
  display: block;
}

.sub_libraly_intro_desc {
  /*flex: 1;*/
  width: calc(55% - 4rem);
}
@media screen and (max-width: 980px) {
  .sub_libraly_intro_desc {
    width: 100%;
  }
}
.sub_libraly_intro_desc p {
  line-height: 2.25;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.sub_libraly_point_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 6rem;
}

.sub_libraly_point_item {
  background: #fff;
  border-radius: 50%;
  padding: 2rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-width: 285px;
  min-height: 285px;
}

.sub_libraly_point_label {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: #002d4d;
}

.sub_libraly_point_en {
  font-family: "Philosopher", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 5px;
}

.sub_libraly_point_num {
  font-family: "Philosopher", sans-serif;
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

.sub_libraly_point_txt {
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 500;
  min-height: 13.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.sub_libraly_point_txt .common_cl_txt {
  text-decoration: underline;
}

.sub_libraly_intro_fix {
  text-align: center;
}
.sub_libraly_intro_fix_ttl {
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 3rem;
}
.sub_libraly_intro_fix_ttl .common_cl_txt {
  border-bottom: 1px solid #e07e00;
}
.sub_libraly_intro_fix_txt {
  font-size: 2rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ========== news ========== */
.news .common_sub_main {
  background: url(../images/news/news_mainimg.jpg) no-repeat center top;
  background-size: cover;
}

.sub_news_important {
  margin-bottom: 12rem;
}
.sub_news_important_head {
  background-color: #e07e00;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub_news_important_head .h2_ttl {
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.1em;
  white-space: nowrap;
  position: relative;
  padding-left: 34px;
  font-size: 2rem;
  display: inline-block;
}
.sub_news_important_head .h2_ttl::before {
  background: url(../images/common/common_icon_caution.svg) no-repeat left top;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}
.sub_news_important_list {
  background-color: #f7f6f3;
  padding: 2.5rem 2.5rem 2.5rem 5.5rem;
}

/* ========== sub_news_tab ========== */
.sub_news_tab {
  margin-bottom: 8rem;
}

.sub_news_tab_list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem 3rem;
}

.sub_news_tab_item {
  cursor: pointer;
  border: 1px solid var(--tab-color, #002d4d);
  background: #fff;
  color: var(--tab-color, #002d4d);
  letter-spacing: 0.1em;
  font-weight: 500;
  transition: all 0.2s;
  display: flex;
  align-items: center;
}
.sub_news_tab_item a {
  color: var(--tab-color, #002d4d);
  display: flex;
  align-items: center;
  width: 100%;
  padding: 2rem 3rem;
}
.sub_news_tab_item .btn_arrow::before {
  background-color: var(--tab-color, #002d4d);
}
.sub_news_tab_item.is-active, .sub_news_tab_item.link_none {
  background: var(--tab-color, #002d4d);
  color: #fff;
  cursor: default;
  pointer-events: none;
  padding: 2rem 3rem;
}
.sub_news_tab_item.is-active .btn_arrow, .sub_news_tab_item.link_none .btn_arrow {
  display: none;
}
.sub_news_tab_item.cat_all {
  border-color: #002d4d;
  color: #002d4d;
}
.sub_news_tab_item.cat_all .btn_arrow::before {
  background-color: #002d4d;
}
.sub_news_tab_item.cat_all.is-active {
  background: #002d4d;
  color: #fff;
}
.sub_news_tab_item.cat_info {
  border-color: #d85965;
  color: #d85965;
}
.sub_news_tab_item.cat_info .btn_arrow::before {
  background-color: #d85965;
}
.sub_news_tab_item.cat_info.is-active {
  background: #d85965;
  color: #fff;
}
.sub_news_tab_item.cat_column {
  border-color: #569ea3;
  color: #569ea3;
}
.sub_news_tab_item.cat_column .btn_arrow::before {
  background-color: #569ea3;
}
.sub_news_tab_item.cat_column.is-active {
  background: #569ea3;
  color: #fff;
}
.sub_news_tab_item.cat_useful {
  border-color: #6853c5;
  color: #6853c5;
}
.sub_news_tab_item.cat_useful .btn_arrow::before {
  background-color: #6853c5;
}
.sub_news_tab_item.cat_useful.is-active {
  background: #6853c5;
  color: #fff;
}
.sub_news_tab_item.cat_news {
  border-color: #e07e00;
  color: #e07e00;
}
.sub_news_tab_item.cat_news.is-active {
  background: #e07e00;
  color: #fff;
}
.sub_news_tab_item.cat_event {
  border-color: #3b87c2;
  color: #3b87c2;
}
.sub_news_tab_item.cat_event .btn_arrow::before {
  background-color: #3b87c2;
}
.sub_news_tab_item.cat_event.is-active {
  background: #3b87c2;
  color: #fff;
}

.sub_faq_tab .sub_news_tab_item .btn_arrow::before,
.sub_column_tab .sub_news_tab_item .btn_arrow::before {
  background-color: var(--tab-color, #e07e00);
}

.sub_news_tab_item_txt {
  color: #002d4d;
}

.sub_news_tab_icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.2s;
}

/* ========== sub_news_panel ========== */
.sub_news_panel {
  display: none;
}
.sub_news_panel.is-show {
  display: block;
}
.sub_news_panel .top_news_block_item a {
  padding: 3rem 7rem 3rem 4rem;
}

/* ========== カテゴリバッジ (リスト版) ========== */
.sub_news_cat_icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.top_news_block_cat.cat_info {
  color: #d85965;
  background: #fff2f3;
}
.top_news_block_cat.cat_column {
  color: #569ea3;
  background: #edf8f9;
}
.top_news_block_cat.cat_useful {
  color: #6853c5;
  background: #f1eeff;
}
.top_news_block_cat.cat_news {
  color: #e07e00;
  background: #fef7ed;
}
.top_news_block_cat.cat_event {
  color: #3b87c2;
  background: #f1f8fd;
}
.top_news_block_cat.term_faq {
  color: #fff;
  background: #002d4d;
}

/* ========== faq ========== */
.faq .common_sub_main {
  background: url(../images/faq/faq_mainimg.jpg) no-repeat center top;
  background-size: cover;
}

.sub_faq_tab {
  margin-bottom: 10rem;
}
.sub_faq_tab .sub_news_tab_list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.sub_faq_tab .sub_news_tab_list .sub_news_tab_item:nth-child(2) {
  grid-column: 1;
}

.sub_column_tab {
  margin-bottom: 10rem;
}
.sub_column_tab .sub_news_tab_list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ========== sub_faq_panel ========== */
.sub_faq_panel {
  display: none;
}
.sub_faq_panel.is-show {
  display: block;
}

.sub_faq_block_list {
  gap: 3rem;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.sub_faq_block_item {
  background-color: #f5f6f9;
  padding: 3.5rem 5rem;
}
.sub_faq_block_item a {
  position: relative;
  padding-left: 9.5rem;
}
.sub_faq_block_item a::before {
  background: url(../images/faq/icon_q.png) no-repeat left top;
  background-size: contain;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  left: 0;
  width: 7rem;
  height: 7rem;
}
.sub_faq_block_item a .btn_arrow {
  right: 0;
}
.sub_faq_block_item a .top_news_block_link {
  margin-right: 2rem;
}
.sub_faq_block_item a:hover .top_news_block_link {
  color: #e07e00;
}

/* ========== faq_detail ========== */
.sub_faq_detail_list_sec .common_sub_h2_ttl .common_en01 {
  position: relative;
  z-index: 2;
}

.sub_faq_detail_list_sec + .sub_faq_detail_list_sec {
  margin-top: 12rem;
}

.sub_faq_detail_list {
  position: relative;
}
.sub_faq_detail_list .sub_faq_block_item {
  background-color: #fff;
}

.sub_faq_detail_list_sec .faq_design01 {
  background: url(../images/faq/faq_design01.png) no-repeat left top;
  background-size: contain;
  content: "";
  position: absolute;
  top: -12.8rem;
  right: 3rem;
  width: 10.9rem;
  height: 14.8rem;
  animation: walkSwing 3s ease-in-out infinite;
}

.sub_faq_detail_list_sec .faq_design02 {
  background: url(../images/faq/faq_design02.png) no-repeat left top;
  background-size: contain;
  content: "";
  position: absolute;
  top: -13.4rem;
  left: 5rem;
  width: 7rem;
  height: 15.4rem;
  animation: walkSwing 3s ease-in-out infinite;
}

.entry_title_faq {
  font-weight: 500;
  font-size: 2rem;
  position: relative;
  padding-left: 9.5rem;
  margin-top: 3rem;
  border-bottom: 1px solid #e4e6ea;
  padding-bottom: 3rem;
  margin-bottom: 4rem;
  min-height: 10rem;
}
.entry_title_faq::before {
  background: url(../images/faq/icon_q.png) no-repeat left top;
  background-size: contain;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 7rem;
  height: 7rem;
}

.entry_body.faq_entry {
  position: relative;
  padding-left: 9.5rem;
}
.entry_body.faq_entry::before {
  background: url(../images/faq/icon_a.png) no-repeat left top;
  background-size: contain;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 7rem;
  height: 7rem;
}

.single_entry_contact_box {
  background: url(../images/faq/faq_contact_bk.jpg) no-repeat center top;
  background-size: cover;
  padding: 3.2rem 4.5rem 4rem 4.5rem;
  margin-bottom: 8rem;
}

.single_entry_contact_ttl {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 9rem;
  margin-bottom: 0.5rem;
}
.single_entry_contact_ttl .div_ttl {
  position: relative;
  z-index: 1;
  font-size: 2.6rem;
  font-weight: 500;
  color: #fff;
}
.single_entry_contact_ttl .common_en01 {
  line-height: 1;
  font-size: 9rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  white-space: nowrap;
  color: #235478;
  font-weight: 400;
}

.single_entry_contact_txt {
  text-align: center;
  color: #fff;
  font-weight: 500;
  margin-bottom: 1rem;
}

.single_entry_contact_btn_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.single_entry_contact_sub {
  background-color: #e07e00;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
  white-space: nowrap;
  width: 22rem;
  height: 3.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: relative;
  top: 1.9rem;
  z-index: 1;
  border: 1px solid #fff;
}

.single_entry_contact_btn {
  background-color: #fff;
  justify-content: center;
  align-items: center;
  width: 34rem;
  height: 6rem;
  transition: opacity 0.3s;
  padding: 10px 0 0 0;
  box-sizing: border-box;
  position: relative;
}
.single_entry_contact_btn::before {
  background-color: #e07e00;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.single_entry_contact_btn:hover::before {
  transform: scaleX(1);
}
.single_entry_contact_btn .btn_txt {
  color: #002d4d;
  font-weight: 700;
}

/* ========== mailmagazine ========== */
.mailmagazine .common_sub_main {
  background: url(../images/mailmagazine/mailmagazine_mainimg.jpg) no-repeat center top;
  background-size: cover;
}

.sub_mailmagazine_intro {
  margin-bottom: 12rem;
  background-color: #f5f6f9;
  padding: 6rem;
  position: relative;
}
.sub_mailmagazine_intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 9.9rem 9.5rem;
  border-color: transparent transparent #e3e6f0 transparent;
}
.sub_mailmagazine_intro::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9.9rem 9.5rem 0 0;
  border-color: #fff transparent transparent transparent;
}
.sub_mailmagazine_intro_ttl {
  text-align: center;
  margin-bottom: 3rem;
}
.sub_mailmagazine_intro_ttl .div_ttl {
  font-size: 3.8rem;
  font-weight: 500;
}
.sub_mailmagazine_intro_disc {
  display: table;
  margin-left: auto;
  margin-right: auto;
}
.sub_mailmagazine_intro_disc .common_txt01 + .common_txt01 {
  margin-top: 4rem;
}
.sub_mailmagazine_intro_disc .common_cl_txt {
  font-weight: 700;
}
.sub_mailmagazine_intro_disc .cau_txt {
  margin-top: 2rem;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.sub_mailmagazine_intro_disc .cau_txt a {
  text-decoration: underline;
}
.sub_mailmagazine_intro_disc .cau_txt a:hover {
  text-decoration: none;
}
.sub_mailmagazine_intro_design01 {
  background: url(../images/mailmagazine/mailmagazine_design01.svg) no-repeat left top;
  background-size: contain;
  content: "";
  position: absolute;
  top: -1.5rem;
  right: 11rem;
  width: 12.6rem;
  height: 10.1rem;
  animation: floatUpDown 3s ease-in-out infinite;
}

/* ========== recruit ========== */
.recruit .common_sub_main {
  background: url(../images/recruit/recruit_mainimg.jpg) no-repeat center top;
  background-size: cover;
}

.sub_recruit_container01_bg {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  padding: 6.5rem 0 14rem 0;
  text-align: center;
}

.sub_recruit_container01_design01 {
  background: url(../images/recruit/sub_recruit_container01_design01.png) no-repeat left top;
  background-size: contain;
  content: "";
  position: absolute;
  top: -31rem;
  left: 5.5rem;
  width: 11.3rem;
  height: 18.2rem;
  animation: floatUpDown 3s ease-in-out infinite;
}

.sub_recruit_container01_design02 {
  background: url(../images/recruit/sub_recruit_container01_design02.png) no-repeat left top;
  background-size: contain;
  content: "";
  position: absolute;
  top: -31rem;
  right: 2.5rem;
  width: 25.9rem;
  height: 18.3rem;
  animation: walkSwing 2.5s ease-in-out infinite;
}

.sub_recruit_catch {
  font-size: 3.8rem;
  font-weight: 500;
  color: #002d4d;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin: 0 0 3.5rem 0;
}

.sub_recruit_container01_btns {
  display: flex;
  justify-content: center;
  gap: 5rem;
}

.sub_recruit_btn--point a {
  background-color: #e07e00;
}
.sub_recruit_btn--point a::before {
  background-color: #fff;
}
.sub_recruit_btn--point a .btn_arrow path {
  stroke: #e07e00;
}
.sub_recruit_btn--point a .btn_arrow::before {
  background-color: #fff;
}

.sub_recruit_container02_bg {
  display: flex;
  justify-content: center;
  background-color: #f5f6f9;
  padding: 10rem 0 22rem 0;
  position: relative;
  margin-top: 10rem;
}
.sub_recruit_container02_bg::before {
  background: url(../images/common/bk_circle_top_gray.png) no-repeat center top;
  background-size: cover;
  content: "";
  position: absolute;
  top: -10rem;
  left: 0;
  width: 100%;
  height: 10rem;
}
.sub_recruit_container02_bg .common_inner {
  position: relative;
}

.sub_recruit_message {
  display: flex;
  position: relative;
  flex-wrap: wrap;
}

.sub_recruit_message_body {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 43.3%;
  margin-right: 8rem;
}
@media screen and (max-width: 980px) {
  .sub_recruit_message_body {
    width: 100%;
    margin-right: 0;
  }
}
.sub_recruit_message_body .common_sub_h2_ttl .common_en01 {
  letter-spacing: 0.075em;
}

.sub_recruit_message_ttl {
  text-align: left;
  margin-bottom: 6rem;
  margin-top: 3.5rem;
}
.sub_recruit_message_ttl .common_en01 {
  white-space: nowrap;
}

.sub_recruit_message_catch {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.sub_recruit_message_img {
  flex: 1;
  margin-left: -8rem;
  max-width: 68rem;
}
@media screen and (max-width: 980px) {
  .sub_recruit_message_img {
    width: 100%;
    margin-left: auto;
    flex: inherit;
    margin-top: 40px;
  }
}
.sub_recruit_message_img img {
  display: block;
  width: 100%;
}

.sub_recruit_memo {
  margin-top: 8rem;
  background-color: #fff;
  padding: 7rem 14rem;
  position: relative;
}
.sub_recruit_memo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 9.9rem 9.5rem;
  border-color: transparent transparent #e3e6f0 transparent;
}
.sub_recruit_memo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9.9rem 9.5rem 0 0;
  border-color: #f5f6f9 transparent transparent transparent;
}
.sub_recruit_memo .common_txt01 {
  letter-spacing: 0.025em;
}
.sub_recruit_memo .common_txt01 + .common_txt01 {
  margin-top: 4rem;
}

.sub_recruit_container03_bg {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 6.5rem 0 14rem 0;
}
.sub_recruit_container03_bg::before {
  background: url(../images/common/bk_circle_top_white.png) no-repeat center top;
  background-size: cover;
  content: "";
  position: absolute;
  top: -10rem;
  left: 0;
  width: 100%;
  height: 10rem;
}
.sub_recruit_container03_bg .common_sub_h2_ttl {
  position: relative;
}
.sub_recruit_container03_bg .common_sub_h2_ttl .common_en01 {
  color: #f5f6f9;
}

.sub_recruit_container03_design01 {
  background: url(../images/recruit/sub_recruit_container03_design01.png) no-repeat left top;
  background-size: contain;
  content: "";
  position: absolute;
  top: 7.5rem;
  left: 2.5rem;
  width: 11.7rem;
  height: 10.3rem;
  animation: floatUpDown 3s ease-in-out infinite;
}

.sub_recruit_container03_design02 {
  background: url(../images/recruit/sub_recruit_container03_design02.png) no-repeat left top;
  background-size: contain;
  content: "";
  position: absolute;
  top: 6rem;
  right: 7.5rem;
  width: 6.7rem;
  height: 9.3rem;
  animation: floatUpDown 3s ease-in-out infinite;
}

.sub_recruit_persona_list {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-top: 7rem;
  flex-wrap: wrap;
}

.sub_recruit_persona_box {
  position: relative;
  flex: 1;
  border-left: 1px solid #002d4d;
  border-right: 1px solid #002d4d;
  border-bottom: 1px solid #002d4d;
  padding: 5rem 4.5rem 4rem 4.5rem;
  margin-top: 3rem;
  background: linear-gradient(149deg, #edf4f8 0%, #edf4f8 19%, #ffefdb 100%);
}
@media screen and (max-width: 980px) {
  .sub_recruit_persona_box {
    width: 100%;
    flex: inherit;
  }
}
.sub_recruit_persona_box::before {
  border-top: 1px solid #002d4d;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50% - 3em);
  height: 1px;
}
.sub_recruit_persona_box::after {
  border-top: 1px solid #002d4d;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: calc(50% - 3em);
  height: 1px;
}

.sub_recruit_persona_num {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 1.5rem;
  font-size: 3.6rem;
  line-height: 1;
  color: #002d4d;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.sub_recruit_persona_ttl {
  font-size: 2.2rem;
  font-weight: 700;
  color: #e07e00;
  line-height: 1.4;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
  min-height: 6.16rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.sub_recruit_persona_txt {
  font-weight: 500;
}

.sub_recruit_container04_bg {
  position: relative;
  background-color: #f5f6f9;
  margin-top: 10rem;
  padding: 6.5rem 0 25rem 0;
}
.sub_recruit_container04_bg::before {
  background: url(../images/common/bk_circle_top_gray.png) no-repeat center top;
  background-size: cover;
  content: "";
  position: absolute;
  top: -10rem;
  left: 0;
  width: 100%;
  height: 10rem;
}
.sub_recruit_container04_bg .common_inner {
  margin-left: auto;
  margin-right: auto;
}

.sub_recruit_why {
  max-width: 1560px;
  margin-left: auto;
  margin-right: max(4.6875%, (100% - 1200px) / 2);
  margin-top: 10rem;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.sub_recruit_why_img {
  width: 52.56%;
  flex-shrink: 0;
}
@media screen and (max-width: 980px) {
  .sub_recruit_why_img {
    width: 100%;
  }
}
.sub_recruit_why_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub_recruit_why_points {
  flex: 1;
  padding-left: 7rem;
}
@media screen and (max-width: 980px) {
  .sub_recruit_why_points {
    width: 100%;
    flex: inherit;
    margin-top: 7rem;
  }
}

.sub_recruit_why_point {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}
.sub_recruit_why_point:not(:last-child) {
  margin-bottom: 4rem;
}

.sub_recruit_why_point_body {
  flex: 1;
}

.sub_recruit_why_point_ttl {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #002d4d;
}

.sub_recruit_why_point_txt {
  line-height: 2.25;
  font-weight: 500;
}

.sub_recruit_why_point_visual {
  flex-shrink: 0;
  width: 12rem;
  text-align: center;
  padding-top: 0.5rem;
}

.sub_recruit_why_point_num {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  line-height: 1;
  margin-bottom: 2rem;
}
.sub_recruit_why_point_num .point_label {
  display: block;
  font-size: 1.8rem;
  color: #002d4d;
  letter-spacing: 0.05em;
  margin-right: 0.5em;
  margin-bottom: 0.5rem;
}
.sub_recruit_why_point_num .point_no {
  display: block;
  font-size: 3.2rem;
  color: #002d4d;
  letter-spacing: 0.1em;
}

.sub_recruit_why_point_icon {
  display: block;
}
.sub_recruit_why_point_icon img {
  width: 100%;
}

.sub_recruit_container05_bg {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 6.5rem 0 15rem 0;
}
.sub_recruit_container05_bg::before {
  background: url(../images/common/bk_circle_top_white.png) no-repeat center top;
  background-size: cover;
  content: "";
  position: absolute;
  top: -10rem;
  left: 0;
  width: 100%;
  height: 10rem;
}
.sub_recruit_container05_bg .common_sub_h2_ttl .common_en01 {
  color: #f5f6f9;
}

.sub_recruit_job_list {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  margin-top: 7rem;
  flex-wrap: wrap;
}

.sub_recruit_job_box {
  flex: 1;
  background-color: #f5f6f9;
  border-top: 2px solid #002d4d;
  border-bottom: 2px solid #002d4d;
  padding: 1.5rem 0 3rem 0;
  text-align: center;
}
@media screen and (max-width: 980px) {
  .sub_recruit_job_box {
    width: 100%;
    flex: inherit;
  }
}

.sub_recruit_job_label {
  display: block;
  font-size: 6.2rem;
  color: #fff;
  line-height: 1.2;
}

.sub_recruit_job_img {
  display: block;
  margin: 2rem auto 2.5rem auto;
}

.sub_recruit_job_ttl {
  font-size: 2.4rem;
  font-weight: 500;
  color: #002d4d;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  padding: 0 4.5rem;
}

.sub_recruit_job_txt {
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: left;
  margin-bottom: 2.5rem;
  padding: 0 4.5rem;
}

.sub_recruit_job_ul {
  padding: 0 4.5rem;
  text-align: left;
}
.sub_recruit_job_ul li {
  position: relative;
  padding-left: 1.2em;
  font-weight: 500;
}
.sub_recruit_job_ul li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 0.55em;
  height: 0.55em;
  border-radius: 50%;
  background-color: #002d4d;
}

.sub_recruit_container06_bg {
  background: url(../images/recruit/sub_recruit_container06_bk.png) no-repeat center center;
  background-size: cover;
  padding: 12rem 0 20rem 0;
  display: flex;
  justify-content: center;
  text-align: center;
}

.sub_recruit_cta_catch {
  font-size: 4.2rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.12em;
  margin-bottom: 3.5rem;
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
}

.sub_recruit_cta_txt {
  color: #fff;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 6rem;
}

.sub_recruit_container06_bg .sub_recruit_container01_btns {
  display: flex;
  justify-content: center;
  gap: 4rem;
}

.sub_recruit_container07_bg {
  display: flex;
  justify-content: center;
  padding: 10rem 0 9.5rem 0;
}
.sub_recruit_container07_bg .common_sub_h2_ttl .common_en01 {
  color: #f5f6f9;
}

.sub_recruit_num_grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4rem;
  margin-top: 7rem;
}

.sub_recruit_num_item {
  background-color: #f5f6f9;
  padding: 5.5rem 4rem 4rem 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.sub_recruit_num_item:nth-child(1), .sub_recruit_num_item:nth-child(2) {
  grid-column: span 3;
}
.sub_recruit_num_item:nth-child(3), .sub_recruit_num_item:nth-child(4), .sub_recruit_num_item:nth-child(5) {
  grid-column: span 2;
}
.sub_recruit_num_item:nth-child(6) {
  grid-column: span 3;
  grid-row: span 2;
}
.sub_recruit_num_item:nth-child(7), .sub_recruit_num_item:nth-child(8) {
  grid-column: span 3;
}

.sub_recruit_num_item--row .sub_recruit_num_inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.sub_recruit_num_item--row .sub_recruit_num_inline .sub_recruit_num_icon {
  margin-bottom: 0;
}

.sub_recruit_num_item:nth-child(3),
.sub_recruit_num_item:nth-child(4),
.sub_recruit_num_item:nth-child(5) {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

/* --row（平均年齢）の下の間隔を3remに（gap 4rem − 1rem） */
.sub_recruit_num_item--row {
  margin-bottom: -1rem;
}

.sub_recruit_num_ttl {
  font-size: 2.4rem;
  font-weight: 500;
  color: #002d4d;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
}

.sub_recruit_num_icon {
  display: block;
  margin-bottom: 3rem;
}

.sub_recruit_num_val {
  font-size: 4.2rem;
  font-weight: 500;
  color: #002d4d;
  letter-spacing: 0.05em;
  line-height: 1;
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
}
.sub_recruit_num_val span {
  font-family: "Philosopher", sans-serif;
  font-size: 10rem;
  color: #002d4d;
  margin: 0 0.05em;
}

.sub_recruit_num_note {
  text-align: right;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 2.5rem;
}

.sub_recruit_num_cautxt {
  font-weight: 500;
  letter-spacing: 0.1em;
  position: absolute;
  right: 1.5rem;
  bottom: 1rem;
  color: #002d4d;
  font-size: 1.4rem;
}

.sub_recruit_container08_bg {
  position: relative;
  display: flex;
  justify-content: center;
  background-color: #f5f6f9;
  margin-top: 10rem;
  padding: 6.5rem 0 12rem 0;
}
.sub_recruit_container08_bg::before {
  background: url(../images/common/bk_circle_top_gray.png) no-repeat center top;
  background-size: cover;
  content: "";
  position: absolute;
  top: -10rem;
  left: 0;
  width: 100%;
  height: 10rem;
}
.sub_recruit_container08_bg .common_sub_h2_ttl {
  margin-bottom: 0.8rem;
}
.sub_recruit_container08_bg .common_sub_h2_ttl .common_en01 {
  font-size: min(8.8rem, 10.6vw);
  white-space: nowrap;
}

.sub_recruit_env_sub {
  display: table;
  margin: 0 auto 6rem auto;
  background-color: #002d4d;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
}

.sub_recruit_env_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
}
@media screen and (max-width: 980px) {
  .sub_recruit_env_list {
    grid-template-columns: 1fr;
  }
}

.sub_recruit_env_box {
  background-color: #fff;
  display: flex;
  gap: 2.5rem;
  padding: 3rem 3.5rem;
}

.sub_recruit_env_img {
  flex-shrink: 0;
  width: 12rem;
}
.sub_recruit_env_img img {
  width: 100%;
}

.sub_recruit_env_body {
  flex: 1;
}

.sub_recruit_env_ttl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.sub_recruit_env_txt {
  line-height: 2;
  font-weight: 500;
}

.sub_recruit_env_note {
  font-size: 1.4rem;
}

.sub_recruit_container09_bg {
  display: flex;
  justify-content: center;
  padding: 17.5rem 0 25rem 0;
  background: linear-gradient(160deg, #002d4d 0%, #185987 100%);
  position: relative;
}
.sub_recruit_container09_bg::before {
  background: url(../images/common/bk_incircle_top_gray.png) no-repeat center top;
  background-size: cover;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10rem;
}
.sub_recruit_container09_bg .common_sub_h2_ttl .h2_ttl {
  color: #fff;
}
.sub_recruit_container09_bg .common_sub_h2_ttl .common_en01 {
  color: #0d436a;
}

.sub_recruit_interview_tabs {
  display: flex;
  gap: 1rem;
  margin-top: 8rem;
}

.sub_recruit_interview_tab {
  flex: 1;
  background-color: #fff;
  padding: 3rem;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.3s;
}
.sub_recruit_interview_tab.is-active {
  opacity: 1;
}

.sub_recruit_interview_tab:not(.is-active) {
  background-color: #e07e00;
}
.sub_recruit_interview_tab:not(.is-active) .sub_recruit_interview_tab_meta,
.sub_recruit_interview_tab:not(.is-active) .sub_recruit_interview_tab_catch {
  color: #fff;
}

.sub_recruit_interview_tab_meta {
  display: block;
  font-weight: 500;
  color: #002d4d;
  letter-spacing: 0.1em;
}

.sub_recruit_interview_tab_catch {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #002d4d;
  letter-spacing: 0.1em;
}

.sub_recruit_interview_panels {
  background-color: #fff;
  padding: 7.5rem 8rem 7.5rem 8rem;
}

.sub_recruit_interview_panel {
  display: none;
}
.sub_recruit_interview_panel.is-show {
  display: block;
}

.sub_recruit_interview_qa + .sub_recruit_interview_qa,
.sub_recruit_interview_schedule {
  margin-top: 8rem;
}

.sub_recruit_interview_q {
  font-size: 2rem;
  font-weight: 700;
  color: #002d4d;
  letter-spacing: 0.1em;
  padding-bottom: 1rem;
  margin-bottom: 5rem;
  border-bottom: 1px solid #002d4d;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.sub_recruit_interview_q .common_en01 {
  background: #002d4d;
  color: #fff;
  border-radius: 50%;
  width: 4.8rem;
  height: 4.8rem;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sub_recruit_interview_box {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.sub_recruit_interview_box--reverse {
  flex-direction: row-reverse;
}

.sub_recruit_interview_img {
  width: 40.38%;
  flex-shrink: 0;
}
.sub_recruit_interview_img img {
  display: block;
  width: 100%;
}

.sub_recruit_interview_body {
  flex: 1;
}

.sub_recruit_interview_h4 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #002d4d;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.sub_recruit_interview_txt {
  letter-spacing: -0.025em;
  font-weight: 500;
  line-height: 2;
}

.sub_recruit_schedule_ttl {
  margin-bottom: 4rem;
  text-align: center;
}
.sub_recruit_schedule_ttl .common_en01 {
  color: #f5f6f9;
  font-size: 6.2rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
.sub_recruit_schedule_ttl .h3_ttl {
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.sub_recruit_schedule_list {
  position: relative;
  display: flex;
  padding: 3rem 0;
}

.sub_recruit_schedule_list::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 7.1428571429%;
  right: 7.1428571429%;
  height: 2px;
  background: linear-gradient(to right, #002d4d, #e07e00);
  transform: translateY(-50%);
}

.sub_recruit_schedule_item {
  position: relative;
  flex: 1;
  height: 17rem;
  text-align: center;
}

.sub_recruit_schedule_dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  z-index: 1;
}

.sub_recruit_schedule_list.in07 .sub_recruit_schedule_item:nth-child(1) .sub_recruit_schedule_dot {
  background: #002d4d;
}

.sub_recruit_schedule_list.in07 .sub_recruit_schedule_item:nth-child(2) .sub_recruit_schedule_dot {
  background: #253a40;
}

.sub_recruit_schedule_list.in07 .sub_recruit_schedule_item:nth-child(3) .sub_recruit_schedule_dot {
  background: #4b4833;
}

.sub_recruit_schedule_list.in07 .sub_recruit_schedule_item:nth-child(4) .sub_recruit_schedule_dot {
  background: #705627;
}

.sub_recruit_schedule_list.in07 .sub_recruit_schedule_item:nth-child(5) .sub_recruit_schedule_dot {
  background: #95631a;
}

.sub_recruit_schedule_list.in07 .sub_recruit_schedule_item:nth-child(6) .sub_recruit_schedule_dot {
  background: #bb700d;
}

.sub_recruit_schedule_list.in07 .sub_recruit_schedule_item:nth-child(7) .sub_recruit_schedule_dot {
  background: #e07e00;
}

.sub_recruit_schedule_list.in08 .sub_recruit_schedule_item:nth-child(1) .sub_recruit_schedule_dot {
  background: #002d4d;
}

.sub_recruit_schedule_list.in08 .sub_recruit_schedule_item:nth-child(2) .sub_recruit_schedule_dot {
  background: #203942;
}

.sub_recruit_schedule_list.in08 .sub_recruit_schedule_item:nth-child(3) .sub_recruit_schedule_dot {
  background: #404437;
}

.sub_recruit_schedule_list.in08 .sub_recruit_schedule_item:nth-child(4) .sub_recruit_schedule_dot {
  background: #705627;
}

.sub_recruit_schedule_list.in08 .sub_recruit_schedule_item:nth-child(5) .sub_recruit_schedule_dot {
  background: #805b21;
}

.sub_recruit_schedule_list.in08 .sub_recruit_schedule_item:nth-child(6) .sub_recruit_schedule_dot {
  background: #a06716;
}

.sub_recruit_schedule_list.in08 .sub_recruit_schedule_item:nth-child(7) .sub_recruit_schedule_dot {
  background: #c0720b;
}

.sub_recruit_schedule_list.in08 .sub_recruit_schedule_item:nth-child(8) .sub_recruit_schedule_dot {
  background: #e07e00;
}

.sub_recruit_schedule_body {
  position: absolute;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
}

.sub_recruit_schedule_item:nth-child(odd) .sub_recruit_schedule_body {
  top: 0;
  margin-top: -1.2rem;
}

.sub_recruit_schedule_item:nth-child(even) .sub_recruit_schedule_body {
  top: 50%;
  margin-top: 2.2rem;
}

.sub_recruit_schedule_time {
  display: block;
  font-weight: 500;
}

.sub_recruit_schedule_txt {
  line-height: 1.4;
  font-weight: 700;
  color: #002d4d;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.sub_recruit_schedule_txt.twogyou {
  min-height: 4.5rem;
}

.sub_recruit_container10_bg {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 6.5rem 0 12rem 0;
}
.sub_recruit_container10_bg .common_sub_h2_ttl .common_en01 {
  color: #f5f6f9;
  /* REQUIREMENTS が長く、幅を縮めると改行してしまうため、1行で収まるよう可変サイズに調整 */
  font-size: min(8.8rem, 10.6vw);
  white-space: nowrap;
}
.sub_recruit_container10_bg .sub_profile_tbl {
  margin-bottom: 0;
}
.sub_recruit_container10_bg::before {
  background: url(../images/common/bk_circle_top_white.png) no-repeat center top;
  background-size: cover;
  content: "";
  position: absolute;
  top: -10rem;
  left: 0;
  width: 100%;
  height: 10rem;
}

.sub_recruit_req_table {
  margin-top: 7.5rem;
}
.sub_recruit_req_table td p + p {
  margin-top: 2rem;
}
.sub_recruit_req_table td .tbl_inbox {
  margin-top: 2rem;
  background-color: #f5f6f9;
  padding: 2.5rem 5rem;
}
.sub_recruit_req_table td .tbl_inbox_ttl {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #002d4d;
}
.sub_recruit_req_table td .tbl_inbox_ttl::before {
  content: "";
  margin-right: 0.8rem;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #002d4d;
}
.sub_recruit_req_table td .tbl_ullist {
  margin-top: 2rem;
}
.sub_recruit_req_table td .tbl_ullist li {
  position: relative;
  padding-left: 1.2em;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.sub_recruit_req_table td .tbl_ullist li::before {
  content: "●";
  position: absolute;
  left: 0;
  font-size: 1rem;
  top: 0.6em;
  color: #002d4d;
}

.sub_recruit_container11_bg {
  position: relative;
  display: flex;
  justify-content: center;
  background-color: #f5f6f9;
  margin-top: 10rem;
  padding: 6.5rem 0 22rem 0;
}
.sub_recruit_container11_bg::before {
  background: url(../images/common/bk_circle_top_gray.png) no-repeat center top;
  background-size: cover;
  content: "";
  position: absolute;
  top: -10rem;
  left: 0;
  width: 100%;
  height: 10rem;
}

.sub_recruit_process_list {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-top: 7.5rem;
}

.sub_recruit_process_box {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
}
.sub_recruit_process_box:nth-child(1) .sub_recruit_process_num {
  background-color: #002d4d;
}
.sub_recruit_process_box:nth-child(2) .sub_recruit_process_num {
  background-color: rgb(73.92, 71.73, 51.59);
}
.sub_recruit_process_box:nth-child(3) .sub_recruit_process_num {
  background-color: rgb(147.84, 98.46, 26.18);
}
.sub_recruit_process_box:nth-child(4) .sub_recruit_process_num {
  background-color: #e07e00;
}
.sub_recruit_process_box:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 2.4rem;
  left: 50%;
  width: calc(100% + 3rem);
  height: 2px;
  z-index: 0;
}
.sub_recruit_process_box:nth-child(1)::before {
  background: linear-gradient(to right, #002d4d, rgb(73.92, 71.73, 51.59));
}
.sub_recruit_process_box:nth-child(2)::before {
  background: linear-gradient(to right, rgb(73.92, 71.73, 51.59), rgb(147.84, 98.46, 26.18));
}
.sub_recruit_process_box:nth-child(3)::before {
  background: linear-gradient(to right, rgb(147.84, 98.46, 26.18), #e07e00);
}

.sub_recruit_process_num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  color: #fff;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  margin: 0 auto 4rem auto;
  position: relative;
  z-index: 1;
}

.sub_recruit_process_card {
  background-color: #fff;
  padding: 3rem 2.5rem 3.5rem 2.5rem;
  text-align: center;
  flex: 1;
}

.sub_recruit_process_ttl {
  font-size: 2rem;
  font-weight: 500;
  color: #002d4d;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.sub_recruit_process_img {
  display: block;
  margin: 0 auto 1.5rem auto;
}

.sub_recruit_process_txt {
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: left;
}

.sub_recruit_container12_bg {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 6.5rem 0 12rem 0;
}
.sub_recruit_container12_bg .common_sub_h2_ttl .common_en01 {
  color: #f5f6f9;
}
.sub_recruit_container12_bg::before {
  background: url(../images/common/bk_circle_top_white.png) no-repeat center top;
  background-size: cover;
  content: "";
  position: absolute;
  top: -10rem;
  left: 0;
  width: 100%;
  height: 10rem;
}

.sub_recruit_faq_list {
  margin-top: 5rem;
}

.sub_recruit_faq_item + .sub_recruit_faq_item {
  margin-top: 2rem;
}

.sub_recruit_faq_q {
  padding: 2rem 8rem 2rem 9.5rem;
  cursor: pointer;
  position: relative;
  border-bottom: 1px solid #e4e6ea;
  min-height: 11rem;
  display: flex;
  align-items: center;
}
.sub_recruit_faq_q::before {
  background: url(../images/faq/icon_q.png) no-repeat left top;
  background-size: contain;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  left: 0;
  width: 7rem;
  height: 7rem;
}

.sub_recruit_faq_q_txt {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.sub_recruit_faq_toggle {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
}
.sub_recruit_faq_toggle::before, .sub_recruit_faq_toggle::after {
  content: "";
  position: absolute;
  background-color: #002d4d;
}
.sub_recruit_faq_toggle::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.sub_recruit_faq_toggle::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
  transition: transform 0.3s;
}

.acctit.open .sub_recruit_faq_toggle::after {
  transform: translateX(-50%) scaleY(0);
}

.sub_recruit_faq_a {
  display: none;
  position: relative;
  padding: 3rem 0 3rem 9.5rem;
}
.sub_recruit_faq_a::before {
  background: url(../images/faq/icon_a.png) no-repeat left top;
  background-size: contain;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  left: 0;
  width: 7rem;
  height: 7rem;
}

.sub_recruit_faq_a_txt {
  line-height: 2;
  letter-spacing: -0.025em;
  font-weight: 500;
}

.sub_recruit_container12_bg + .sub_recruit_container06_bg {
  margin-bottom: 10rem;
}

/* ========== message ========== */
.message .common_sub_main {
  background: url(../images/message/message_mainimg.jpg) no-repeat center top;
  background-size: cover;
}

.sub_message_container01_bg {
  display: flex;
  justify-content: center;
  padding: 6.5rem 0 18rem 0;
  overflow: hidden;
}

.sub_message_profile {
  width: calc(100% - max(4.6875%, (100% - 1200px) / 2));
  margin-left: auto;
  margin-right: max(4.6875%, (100% - 1200px) / 2);
  margin-top: 2rem;
  display: flex;
  align-items: stretch;
  align-items: center;
}
.sub_message_profile_img {
  width: 64.1%;
}
.sub_message_profile_img img {
  display: block;
  width: 100%;
}

.sub_message_profile_body {
  position: relative;
  z-index: 1;
  margin-left: -10rem;
  width: calc(35.9% + 10rem);
}

.sub_message_profile_en {
  display: block;
  font-family: "Philosopher", sans-serif;
  font-size: 9.8rem;
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: #f5f6f9;
  margin-bottom: 4rem;
  word-break: break-all;
  white-space: nowrap;
}
@media screen and (max-width: 1294px) {
  .sub_message_profile_en {
    font-size: 7vw;
  }
}

.sub_message_profile_role {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-left: 16rem;
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
}

.sub_message_profile_name {
  font-size: 4.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-left: 15rem;
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  line-height: 1.4;
}

.sub_message_container02_bg {
  display: flex;
  justify-content: center;
  position: relative;
  background: linear-gradient(149deg, #eef3f8 0%, #edf4f8 19%, #ffefdb 100%);
  padding: 16rem 0;
}
.sub_message_container02_bg::before {
  background: url(../images/common/bk_circle_top.png) no-repeat center top;
  background-size: cover;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10rem;
  transform: rotate(180deg);
}
.sub_message_container02_bg::after {
  background: url(../images/common/bk_circle_top.png) no-repeat center top;
  background-size: cover;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10rem;
}
.sub_message_container02_bg .common_inner {
  position: relative;
}

.sub_message_design {
  background: url(../images/message/message_design01.png) no-repeat left top;
  background-size: contain;
  content: "";
  position: absolute;
  top: -21rem;
  right: 8.5rem;
  width: 14.3rem;
  height: 21.5rem;
  animation: floatUpDown 3s ease-in-out infinite;
}

.sub_message_catch {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.15em;
  margin-bottom: 5rem;
  text-align: center;
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
}

.sub_message_txt p {
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 3rem;
  line-height: 2.5;
}
.sub_message_txt p:last-child {
  margin-bottom: 0;
}

.sub_message_container03_bg {
  display: flex;
  justify-content: center;
  padding: 12rem 0 12rem 0;
}

/* ========== history ========== */
.history .common_sub_main {
  background: url(../images/history/history_mainimg.jpg) no-repeat center top;
  background-size: cover;
}

.sub_history_container_bg {
  display: flex;
  justify-content: center;
  padding: 0 0 12rem 0;
}

.sub_history_list {
  width: 100%;
  margin-top: 5rem;
  margin-bottom: 13rem;
  position: relative;
}

.sub_history_design01 {
  background: url(../images/history/history_design01.png) no-repeat center center;
  background-size: contain;
  content: "";
  position: absolute;
  top: -10rem;
  right: 3.5rem;
  width: 15.9rem;
  height: 23.5rem;
  animation: floatUpDown 3s ease-in-out infinite;
}
@media screen and (max-width: 1248px) {
  .sub_history_design01 {
    top: -15rem;
    right: 0;
  }
}
@media screen and (max-width: 980px) {
  .sub_history_design01 {
    width: 10.2rem;
    height: 15.1rem;
  }
}

.sub_history_item {
  display: flex;
  align-items: flex-start;
  padding: 4rem 1rem;
  border-bottom: 1px solid #e4e6ea;
}
.sub_history_item:last-child .sub_history_marker::before {
  content: none;
}

.sub_history_year {
  flex-shrink: 0;
  font-family: "Philosopher", sans-serif;
  font-size: 6.2rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  color: #002d4d;
  width: 19.5rem;
}
.sub_history_year.haba {
  letter-spacing: 0.025em;
}

.sub_history_marker {
  position: relative;
  flex-shrink: 0;
  align-self: stretch;
  width: 1rem;
}
.sub_history_marker .sub_history_marker_bf {
  background: url(../images/history/history_line.png) no-repeat left top;
  background-size: contain;
  content: "";
  position: absolute;
  top: -3.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 45px;
}
.sub_history_marker .sub_history_marker_af {
  background: url(../images/history/history_line.png) no-repeat left top;
  background-size: contain;
  content: "";
  position: absolute;
  top: 4.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 45px;
}
.sub_history_marker::before {
  content: "";
  position: absolute;
  top: 2.7rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: #96acbd;
  height: calc(100% + 8rem);
}
.sub_history_marker::after {
  content: "";
  position: absolute;
  top: 2.6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #002d4d;
}

.sub_history_body {
  flex: 1;
  padding-top: 1.4rem;
  margin-left: 6rem;
  display: flex;
}

.sub_history_head {
  display: flex;
  align-items: baseline;
  margin-bottom: 1.5rem;
}

.sub_history_month {
  flex-shrink: 0;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #002d4d;
  margin-right: 6rem;
}

.sub_history_txt {
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ========== profile ========== */
.profile .common_sub_main {
  background: url(../images/profile/profile_mainimg.jpg) no-repeat center top;
  background-size: cover;
}

.sub_profile_origin {
  margin-bottom: 8rem;
  background-color: #f5f6f9;
  border-top: 2px solid #002d4d;
  border-bottom: 2px solid #002d4d;
  padding: 6rem 8rem 0 8rem;
}
@media screen and (max-width: 980px) {
  .sub_profile_origin {
    padding: 6rem 16rem 0 4rem;
  }
}

.sub_profile_origin_ttl {
  font-weight: 500;
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  text-align: center;
}

.sub_profile_origin_body {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
  min-height: 23.7rem;
  position: relative;
}
@media screen and (max-width: 980px) {
  .sub_profile_origin_body {
    gap: 2rem;
  }
}

.sub_profile_origin_txt {
  line-height: 2.25;
  font-weight: 500;
  letter-spacing: 0;
  flex: 1;
  padding-top: 1.5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 980px) {
  .sub_profile_origin_txt {
    padding-top: 0;
  }
}

.sub_profile_origin_logo {
  flex-shrink: 0;
  width: 18rem;
  height: 18rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1.5rem;
}
.sub_profile_origin_logo img {
  width: 11.6rem;
  height: auto;
}

.sub_profile_design01 {
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 980px) {
  .sub_profile_design01 {
    position: absolute;
    right: -15rem;
    bottom: 0;
  }
}

.sub_profile_tbl {
  margin-bottom: 13rem;
}
.sub_profile_tbl table {
  width: 100%;
}
.sub_profile_tbl table th {
  padding: 2.5rem 4rem 2.5rem 6rem;
  border-bottom: 1px solid #e4e6ea;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2.25;
  width: 27.5rem;
  box-sizing: border-box;
  vertical-align: top;
}
.sub_profile_tbl table th .th_link {
  margin-top: 1.5rem;
}
.sub_profile_tbl table th .th_link a {
  position: relative;
  padding-right: 18px;
  border-bottom: 1px solid #002d4d;
  letter-spacing: 0;
  line-height: 1.4;
  color: #002d4d;
  transition: 0.3s;
}
.sub_profile_tbl table th .th_link a .btn_arrow {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
}
.sub_profile_tbl table th .th_link a .btn_arrow svg {
  fill: none;
  width: 1.2rem;
  height: 1.2rem;
  position: relative;
}
.sub_profile_tbl table th .th_link a .btn_arrow path {
  stroke: #002d4d;
}
.sub_profile_tbl table th .th_link a:hover {
  border-bottom: none;
}
.sub_profile_tbl table td {
  padding: 2.5rem 4rem 2.5rem 4rem;
  border-bottom: 1px solid #e4e6ea;
  font-weight: 500;
  letter-spacing: 0.05rem;
  line-height: 2.25;
  width: calc(100% - 27.5rem);
  box-sizing: border-box;
}
.sub_profile_tbl table td .office_box + .office_box {
  margin-top: 2.5rem;
}
.sub_profile_tbl table td .office_head {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.sub_profile_tbl table td .office_ttl {
  font-weight: 500;
}
.sub_profile_tbl table td .office_map a {
  color: #002d4d;
  position: relative;
  padding-left: 19px;
  border-bottom: 1px solid #002d4d;
  line-height: 1.4;
  transition: 0.3s;
}
.sub_profile_tbl table td .office_map a::before {
  background: url(../images/common/icon_maplink.svg) no-repeat left top;
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 14px;
  height: 20px;
}
.sub_profile_tbl table td .office_map a:hover {
  border-bottom: none;
}
.sub_profile_tbl table td .group_ttl {
  margin: 3rem 0 1.5rem 0;
  font-weight: 700;
}
.sub_profile_tbl table td .group_btn {
  width: 30rem;
  height: 7rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.sub_profile_tbl table td .group_btn a {
  background-color: #002d4d;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sub_profile_tbl table td .group_btn a::before {
  background-color: #e07e00;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.sub_profile_tbl table td .group_btn a:hover::before {
  transform: scaleX(1);
}
.sub_profile_tbl table td .group_btn a .btn_txt {
  color: #fff;
  position: relative;
  padding-right: 28px;
}
.sub_profile_tbl table td .group_btn a .btn_txt::after {
  background: url(../images/common/icon_outlink.svg);
  background-size: contain;
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  width: 18px;
  height: 18px;
}

/* ============================ OFFICE ============================ */
.office .common_sub_main {
  background: url(../images/office/office_mainimg.jpg) no-repeat center top;
  background-size: cover;
}

.sub_office_anchor {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0 2.5rem;
  margin-bottom: 7rem;
}

.sub_office_anchor_item a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1rem 3.5rem 1rem 1rem;
  border-bottom: 1px solid #002d4d;
  color: #002d4d;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  width: 100%;
}
.sub_office_anchor_item a:hover .sub_office_anchor_arrow {
  margin-top: 0;
}

.sub_office_anchor_arrow {
  background: url(../images/common/icon_arrow_blue.svg);
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translate(0, -50%);
  content: "";
  width: 16px;
  height: 11px;
  margin-top: -4px;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}

.sub_office_block {
  padding: 7rem 0;
}

.sub_office_ttl {
  text-align: center;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 6rem;
}

.sub_office_intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 7rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 980px) {
  .sub_office_intro {
    flex-wrap: wrap;
  }
}

.sub_office_intro_txt {
  flex: 1;
  font-weight: 500;
  padding-bottom: 4.5rem;
}
@media screen and (max-width: 980px) {
  .sub_office_intro_txt {
    padding-bottom: 0;
  }
}
.sub_office_intro_txt p {
  letter-spacing: 0.025em;
}
.sub_office_intro_txt p + p {
  margin-top: 4rem;
}

.sub_office_intro_slider {
  flex-shrink: 0;
  width: 50%;
}
@media screen and (max-width: 980px) {
  .sub_office_intro_slider {
    width: 100%;
  }
}
.sub_office_intro_slider .splide {
  padding-bottom: 5rem;
}
.sub_office_intro_slider .splide__arrow {
  top: auto;
  bottom: 19.5px;
  width: 1.6rem;
  height: 1.2rem;
  background: url(../images/common/icon_arrow_blue.svg) no-repeat center/contain;
  border: none;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
  transform: none;
}
.sub_office_intro_slider .splide__arrow svg {
  display: none;
}
.sub_office_intro_slider .splide__arrow:hover {
  opacity: 0.6;
}
.sub_office_intro_slider .splide__arrow--prev {
  left: 50%;
  transform: scaleX(-1);
  margin-left: -6.1rem;
}
.sub_office_intro_slider .splide__arrow--next {
  left: 50%;
  margin-left: 4.5rem;
}
.sub_office_intro_slider .splide__pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  height: 2rem;
  padding: 0;
  justify-content: center;
  align-items: center;
}
.sub_office_intro_slider .splide__pagination .splide__pagination__page {
  width: 0.6rem;
  height: 0.6rem;
  margin: 0.6rem;
  background: #ccd3d9;
  opacity: 1;
}
.sub_office_intro_slider .splide__pagination .splide__pagination__page.is-active {
  background: #002d4d;
  transform: scale(1);
}

.sub_office_slide img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.sub_office_access {
  display: flex;
  align-items: center;
  gap: 6rem;
  background-color: #f5f6f9;
  padding: 6rem 8rem;
  position: relative;
}
@media screen and (max-width: 980px) {
  .sub_office_access {
    flex-wrap: wrap;
  }
}

.sub_office_access_deco {
  position: absolute;
  right: 4.5rem;
  bottom: 100%;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.sub_office_access_deco--01 {
  width: 12.2rem;
  height: 13.6rem;
  background-image: url(../images/office/office_design01.png);
  margin-bottom: -9.5rem;
}
@media screen and (max-width: 980px) {
  .sub_office_access_deco--01 {
    margin-bottom: -5rem;
  }
}

.sub_office_access_deco--02 {
  width: 16.8rem;
  height: 8.4rem;
  background-image: url(../images/office/office_design02.png);
  margin-bottom: -4.5rem;
}
@media screen and (max-width: 980px) {
  .sub_office_access_deco--02 {
    margin-bottom: -4rem;
  }
}

.sub_office_access_deco--03 {
  width: 13rem;
  height: 13.9rem;
  background-image: url(../images/office/office_design03.png);
  margin-bottom: -8.5rem;
}
@media screen and (max-width: 980px) {
  .sub_office_access_deco--03 {
    margin-bottom: -4rem;
  }
}

.sub_office_access_deco--04 {
  width: 10.8rem;
  height: 17rem;
  background-image: url(../images/office/office_design04.png);
  margin-bottom: -11.5rem;
}
@media screen and (max-width: 980px) {
  .sub_office_access_deco--04 {
    margin-bottom: -5rem;
  }
}

.sub_office_access_deco--05 {
  width: 11.2rem;
  height: 13.3rem;
  background-image: url(../images/office/office_design05.png);
  margin-bottom: -8.5rem;
}
@media screen and (max-width: 980px) {
  .sub_office_access_deco--05 {
    margin-bottom: -4rem;
  }
}

.sub_office_access_map,
.sub_office_access_info {
  position: relative;
  z-index: 1;
}

.sub_office_access_map {
  width: 52%;
}
@media screen and (max-width: 980px) {
  .sub_office_access_map {
    width: 100%;
  }
}
.sub_office_access_map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 36rem;
  border: 0;
}

.sub_office_access_info {
  display: flex;
  flex-direction: column;
  width: 50%;
}
@media screen and (max-width: 980px) {
  .sub_office_access_info {
    width: 100%;
  }
}

.sub_office_access_add {
  font-weight: 500;
  letter-spacing: 0.1em;
}

.sub_office_access_tel {
  margin-top: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.sub_office_access_list {
  margin-top: 2rem;
}
.sub_office_access_list li {
  position: relative;
  padding-left: 1.2em;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2.25;
}
.sub_office_access_list li::before {
  content: "●";
  position: absolute;
  left: 0;
  font-size: 1rem;
  top: 0.5em;
  color: #002d4d;
}

.sub_office_access_cta {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-start;
}
.sub_office_access_cta .header_drawer_cta_item {
  margin-top: 0;
}
.sub_office_access_cta .header_cta_sub {
  font-size: 1.6rem;
  margin-bottom: 3px;
  width: 22rem;
  height: 3.4rem;
  top: 17px;
  font-weight: 500;
}
.sub_office_access_cta .header_cta_btn {
  width: 42rem;
  height: 7rem;
  padding: 8px 0 0 0;
}
.sub_office_access_cta .header_cta_btn:hover .btn_arrow::before {
  width: 26px;
  height: 26px;
}
.sub_office_access_cta .header_cta_btn .btn_txt {
  font-size: 2rem;
  padding-left: 29px;
  font-weight: 500;
}
.sub_office_access_cta .header_cta_btn .btn_txt::before {
  width: 24px;
  height: 19px;
}
.sub_office_access_cta .header_cta_btn .btn_arrow {
  right: 3rem;
  margin-top: 5px;
}
.sub_office_access_cta .header_cta_btn .btn_arrow::before {
  width: 6px;
  height: 6px;
}

.office .top_company_list {
  margin-top: 7rem;
}

/* ========== company ========== */
.company .common_sub_main {
  background: url(../images/company/company_mainimg.jpg) no-repeat center top;
  background-size: cover;
}

.sub_company_intro {
  text-align: center;
  margin-bottom: 12rem;
  position: relative;
}

.sub_company_intro_deco {
  position: absolute;
  top: 0;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 980px) {
  .sub_company_intro_deco {
    top: 8rem;
  }
}

.sub_company_intro_deco--left {
  left: 5rem;
  width: 7.7rem;
  height: 23.6rem;
  background-image: url(../images/company/compapy_design01.png);
}

.sub_company_intro_deco--right {
  right: 4rem;
  width: 10.2rem;
  height: 23.8rem;
  background-image: url(../images/company/compapy_design02.png);
}

.sub_company_intro > *:not(.sub_company_intro_deco) {
  position: relative;
  z-index: 1;
}

.sub_company_intro_ttl {
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.5;
  margin-bottom: 3rem;
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
}

.sub_company_intro_txt {
  margin-bottom: 5rem;
  text-align: left;
  line-height: 2.25;
  padding: 0 19rem;
}
@media screen and (max-width: 980px) {
  .sub_company_intro_txt {
    padding: 0 16rem;
  }
}

.sub_company_intro_btn {
  margin-left: auto;
  margin-right: auto;
}

.sub_company_nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.sub_company_nav_item {
  display: flex;
}

.sub_company_nav_link {
  flex-grow: 1;
  display: block;
  position: relative;
}

.sub_company_nav_img {
  position: relative;
  overflow: hidden;
}
.sub_company_nav_img::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.sub_company_nav_img img {
  width: 100%;
  aspect-ratio: 580/360;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.sub_company_nav_body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 11rem;
  overflow: hidden;
  container-type: inline-size;
}

.sub_company_nav_ttlbox {
  position: relative;
  display: inline-block;
}

.sub_company_nav_en {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: min(10rem, 13cqw);
  letter-spacing: 0.06em;
  line-height: 1;
  color: #f5f6f9;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.sub_company_nav_ttl {
  position: relative;
  font-size: 2.8rem;
  font-weight: 500;
  color: #002d4d;
  letter-spacing: 0.1em;
  z-index: 1;
}

.sub_company_nav_arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background-color: #002d4d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  z-index: 2;
}
.sub_company_nav_arrow svg {
  fill: none;
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}
.sub_company_nav_arrow path {
  stroke: #fff;
}

.sub_company_nav_link:hover .sub_company_nav_img::after {
  opacity: 1;
}
.sub_company_nav_link:hover .sub_company_nav_img img {
  transform: scale(1.08);
}
.sub_company_nav_link:hover .sub_company_nav_arrow {
  background-color: #e07e00;
}
.sub_company_nav_link:hover .sub_company_nav_arrow svg {
  transform: translateX(3px);
}

.sub_company_partners {
  margin-top: 12rem;
}

.sub_company_partners_link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 3.9rem 10rem 4.5rem 10rem;
  background: url(../images/company/company_img07.jpg) no-repeat center center;
  background-size: cover;
  overflow: hidden;
}
.sub_company_partners_link::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  z-index: 0;
  transition: opacity 0.4s ease;
}

.sub_company_partners_body {
  position: relative;
  color: #fff;
  z-index: 1;
  text-align: center;
}

.sub_company_partners_en {
  display: block;
  font-size: 9rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #96acbd;
  margin-bottom: 1.5rem;
}

.sub_company_partners_ttl {
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
}

.sub_company_partners_txt {
  line-height: 2;
}

.sub_company_partners_arrow {
  position: absolute;
  right: 5rem;
  top: 50%;
  transform: translate(0, -50%);
  flex-shrink: 0;
  width: 7.6rem;
  height: 7.6rem;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  z-index: 1;
}
.sub_company_partners_arrow svg {
  fill: none;
  width: 2.2rem;
  height: 2.2rem;
  transition: transform 0.3s ease;
}
.sub_company_partners_arrow path {
  stroke: #002d4d;
}

.sub_company_partners_link:hover::before {
  opacity: 1;
}
.sub_company_partners_link:hover .sub_company_partners_arrow svg {
  transform: translateX(5px);
}

/* ========== reason ========== */
.reason .common_sub_main {
  background: url(../images/reason/reason_mainimg.jpg) no-repeat center top;
  background-size: cover;
}

.sub_reason_container01_bg {
  padding: 8rem 0 14rem 0;
  overflow: hidden;
}

.sub_reason_lead {
  display: flex;
  justify-content: center;
  margin-bottom: 11rem;
}

.sub_reason_lead_txt {
  text-align: center;
  line-height: 2.2;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.sub_reason_box {
  display: flex;
  align-items: center;
  width: 100%;
  padding-left: max(4.6875%, (100% - 1200px) / 2);
  flex-wrap: wrap;
}
.sub_reason_box + .sub_reason_box {
  margin-top: 9rem;
}

.sub_reason_box--reverse {
  flex-direction: row-reverse;
  padding-left: 0;
  padding-right: max(4.6875%, (100% - 1200px) / 2);
}

.sub_reason_box_body {
  width: 44.87%;
  box-sizing: border-box;
  padding-right: 6rem;
}
@media screen and (max-width: 980px) {
  .sub_reason_box_body {
    width: 100%;
  }
}
.sub_reason_box_body .sub_reason_box_txt {
  margin-right: 2rem;
}

.sub_reason_box--reverse .sub_reason_box_body {
  padding-right: 0;
  padding-left: 7.5rem;
}
.sub_reason_box--reverse .sub_reason_box_body .sub_reason_box_txt {
  margin-right: 0;
}

.sub_reason_box_img {
  width: 55.13%;
}
@media screen and (max-width: 980px) {
  .sub_reason_box_img {
    width: 100%;
    margin-top: 5rem;
  }
}
.sub_reason_box_img img {
  display: block;
  width: 100%;
}

.sub_reason_box_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sub_reason_box_num {
  font-family: "Philosopher", sans-serif;
  font-size: 10rem;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #f5f6f9;
}

.sub_reason_box_design {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  animation: floatUpDown 3s ease-in-out infinite;
}

.sub_reason_box_design01 {
  width: 15.2rem;
  height: 18rem;
  background-image: url(../images/reason/reason_design01.png);
}

.sub_reason_box_design02 {
  width: 18rem;
  height: 11.9rem;
  background-image: url(../images/reason/reason_design02.png);
}

.sub_reason_box_design03 {
  width: 12.1rem;
  height: 16.7rem;
  background-image: url(../images/reason/reason_design03.png);
}

.sub_reason_box_ttl {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.15em;
  margin-bottom: 2.5rem;
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
}

.sub_reason_box_txt + .sub_reason_box_txt {
  margin-top: 2.5rem;
}

.sub_reason_container02_bg {
  display: flex;
  justify-content: center;
  position: relative;
  background-color: #f5f6f9;
  padding: 16rem 0;
}
.sub_reason_container02_bg::before {
  background: url(../images/common/bk_circle_top.png) no-repeat center top;
  background-size: cover;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10rem;
  transform: rotate(180deg);
}
.sub_reason_container02_bg::after {
  background: url(../images/common/bk_circle_top.png) no-repeat center top;
  background-size: cover;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10rem;
}
.sub_reason_container02_bg .common_w_inner {
  position: relative;
}

.sub_reason_container03_bg {
  display: flex;
  justify-content: center;
  padding: 12rem 0;
}

/* ========== philosophy ========== */
.philosophy .common_sub_main {
  background: url(../images/philosophy/philosophy_mainimg.jpg) no-repeat center top;
  background-size: cover;
}

.sub_philosophy_container01_bg {
  display: flex;
  justify-content: center;
  padding: 6.5rem 0 0 0;
}

.sub_philosophy_catch {
  text-align: center;
  margin-bottom: 1.5rem;
}

.sub_philosophy_catch_img {
  animation: catch_slide_in 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-delay: 0.4s;
}

.sub_philosophy_catch_txt {
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin-top: 6rem;
}

.sub_philosophy_frame {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 9rem 0 15rem 0;
}

.sub_philosophy_design01 {
  background: url(../images/philosophy/philosophy_design01.png) no-repeat center center;
  background-size: contain;
  content: "";
  position: absolute;
  top: -2rem;
  left: -2rem;
  width: 11.5rem;
  height: 11.2rem;
  /*animation: rotateCircle 20s linear infinite;*/
}

.sub_philosophy_design02 {
  background: url(../images/philosophy/philosophy_design02.png) no-repeat center center;
  background-size: contain;
  content: "";
  position: absolute;
  bottom: -3.5rem;
  right: -12rem;
  width: 26.3rem;
  height: 20.8rem;
  animation: walkSwing 2.5s ease-in-out infinite;
  z-index: 1;
}
@media screen and (max-width: 1568px) {
  .sub_philosophy_design02 {
    right: 0;
  }
}

.sub_philosophy_circles {
  text-align: center;
}

.sub_philosophy_bk {
  background: url(../images/philosophy/philosophy_bk.png) no-repeat center top;
  background-size: cover;
  position: relative;
  height: 57.5rem;
}
.sub_philosophy_bk::before {
  background: url(../images/common/bk_circle_top.png) no-repeat center top;
  background-size: cover;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10rem;
  transform: rotate(180deg);
}
.sub_philosophy_bk::after {
  background: url(../images/common/bk_circle_top.png) no-repeat center top;
  background-size: cover;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10rem;
}

.sub_philosophy_container02_bg {
  display: flex;
  justify-content: center;
  padding: 19.5rem 0 6rem 0;
}

.sub_philosophy_box_list {
  display: flex;
  flex-direction: column;
  gap: 17rem;
}

.sub_philosophy_box {
  position: relative;
  background-color: #f5f6f9;
  padding: 13rem 8.5rem 6.5rem 8.5rem;
  text-align: center;
}

.sub_philosophy_box_design {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  animation: floatUpDown 3s ease-in-out infinite;
}

.sub_philosophy_box--01 .sub_philosophy_box_design {
  background-image: url(../images/philosophy/philosophy_design03.png);
  width: 13.8rem;
  height: 19.1rem;
  top: -8rem;
  left: 13rem;
}
@media screen and (max-width: 980px) {
  .sub_philosophy_box--01 .sub_philosophy_box_design {
    left: 0;
  }
}

.sub_philosophy_box--02 .sub_philosophy_box_design {
  background-image: url(../images/philosophy/philosophy_design04.png);
  width: 20.5rem;
  height: 23.5rem;
  top: -6rem;
  right: 4.5rem;
}
@media screen and (max-width: 980px) {
  .sub_philosophy_box--02 .sub_philosophy_box_design {
    right: -3rem;
  }
}

.sub_philosophy_box--03 .sub_philosophy_box_design {
  background-image: url(../images/philosophy/philosophy_design05.png);
  width: 14.4rem;
  height: 24.1rem;
  top: -9.5rem;
  left: 6rem;
}
@media screen and (max-width: 980px) {
  .sub_philosophy_box--03 .sub_philosophy_box_design {
    left: -3rem;
  }
}

.sub_philosophy_box_en {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Philosopher", sans-serif;
  font-weight: 500;
  font-size: 12.2rem;
  line-height: 1;
  letter-spacing: 0.1em;
  white-space: nowrap;
  background: linear-gradient(to bottom, #f5f6f9 0 50%, #fff 50% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sub_philosophy_box_ja {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  position: relative;
  margin-top: -7.1rem;
  margin-bottom: 5.5rem;
}

.sub_philosophy_box_catch {
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 1.8;
  letter-spacing: 0.15em;
  margin-bottom: 3rem;
}

.sub_philosophy_box_txt {
  text-align: left;
  line-height: 2.25;
  font-weight: 500;
}

.sub_philosophy_container03_bg {
  display: flex;
  justify-content: center;
  padding: 12rem 0;
}

/* ========== column ========== */
.column .common_sub_main {
  background: url(../images/column/column_mainimg.jpg) no-repeat center top;
  background-size: cover;
}

.sub_column_list ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5rem 3rem;
}
.sub_column_list ul .top_column_card_ttl {
  color: #222222;
}

.sub_column_date {
  font-family: "Philosopher", sans-serif;
  color: #a5a5a5;
  letter-spacing: 0.1em;
  text-align: right;
  display: block;
  margin-bottom: 3rem;
}

.sub_column_mainimg {
  margin-bottom: 5rem;
}
.sub_column_mainimg img {
  width: 100%;
}

/* ========== notfound ========== */
.notfound .sub_notfoud_txt {
  margin-bottom: 3rem;
  font-size: 2rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.notfound .common_btn01 {
  margin-left: auto;
  margin-right: auto;
}

/* ========== mailmagazine_thanks ========== */
.mailmagazine_thanks_design01 {
  background: url(../images/mailmagazine/mailmagazine_thanks_design01.png) no-repeat center center;
  background-size: contain;
  content: "";
  position: absolute;
  bottom: -5.5rem;
  right: -5rem;
  width: 29.5rem;
  height: 27.5rem;
  animation: floatUpDown 3s ease-in-out infinite;
}
@media screen and (max-width: 980px) {
  .mailmagazine_thanks_design01 {
    right: 0;
    width: 19.6rem;
    height: 18.3rem;
  }
}

/* ========== csv ========== */
.csv .common_sub_main {
  background: url(../images/csv/csv_mainimg.jpg) no-repeat center top;
  background-size: cover;
}

.sub_csv_ttl01 {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.9375;
  letter-spacing: 0.15em;
  text-align: center;
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
}

/* --- container01: 協心のスタンス / 協心1.0〜5.0 --- */
.sub_csv_container01_bg {
  display: flex;
  justify-content: center;
  padding: 6.5rem 0 11rem 0;
  overflow: hidden;
}
.sub_csv_container01_bg .common_inner {
  position: relative;
}

.sub_csv_design01 {
  background: url(../images/csv/csv_design01.png) no-repeat center center;
  background-size: contain;
  content: "";
  position: absolute;
  top: 10.5rem;
  left: 3rem;
  width: 8.1rem;
  height: 25rem;
  animation: floatUpDown 3s ease-in-out infinite;
}
@media screen and (max-width: 1294px) {
  .sub_csv_design01 {
    left: 0;
    top: 14.5rem;
  }
}

.sub_csv_design02 {
  background: url(../images/csv/csv_design02.png) no-repeat center center;
  background-size: contain;
  content: "";
  position: absolute;
  top: 11rem;
  right: 4.5rem;
  width: 8.2rem;
  height: 24.4rem;
  animation: floatUpDown 3s ease-in-out infinite;
}
@media screen and (max-width: 1294px) {
  .sub_csv_design02 {
    right: 0;
    top: 15rem;
  }
}

.sub_csv_intro_txt {
  max-width: 800px;
  width: 72%;
  box-sizing: border-box;
  margin: 3rem auto 0;
}
.sub_csv_intro_txt p {
  line-height: 2.25;
}

.sub_csv_spread {
  margin-top: 10rem;
}

.sub_csv_ttl02 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
}

.sub_csv_ttl02_sub {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

.sub_csv_spread_lead {
  margin: 3rem 0 4rem;
}

.sub_csv_scroll_inner img {
  display: block;
  width: 100%;
}

.sub_csv_spread_note {
  margin-top: 6rem;
  text-align: center;
}

/* --- container02: CSV経営の一般定義 --- */
.sub_csv_container02_bg {
  display: flex;
  justify-content: center;
  background: url(../images/csv/csv_container02_bg.png) no-repeat center center;
  background-size: cover;
  padding: 12rem 0;
  position: relative;
}
.sub_csv_container02_bg .common_inner {
  position: relative;
}

.sub_csv_design03 {
  background: url(../images/csv/csv_design03.png) no-repeat center bottom;
  background-size: contain;
  content: "";
  position: absolute;
  bottom: -16.5rem;
  left: 14rem;
  width: 14.3rem;
  height: 23.5rem;
  animation: walkSwing 3s ease-in-out infinite;
}
@media screen and (max-width: 1408px) {
  .sub_csv_design03 {
    left: 0;
  }
}

.sub_csv_design04 {
  background: url(../images/csv/csv_design04.png) no-repeat center bottom;
  background-size: cover;
  content: "";
  position: absolute;
  bottom: -16rem;
  right: 9rem;
  width: 8.3rem;
  height: 22.4rem;
  animation: floatUpDown 3s ease-in-out infinite;
}
@media screen and (max-width: 1408px) {
  .sub_csv_design04 {
    right: 0;
  }
}

.sub_csv_def_lead {
  margin-top: 1.5rem;
}

.sub_csv_def_img {
  margin-top: 3rem;
  text-align: center;
}
.sub_csv_def_img img {
  display: inline-block;
  width: 100%;
  max-width: 81.6rem;
}

/* --- container03: なぜCSV経営を実践するのか --- */
.sub_csv_container03_bg {
  display: flex;
  justify-content: center;
  padding: 12rem 0;
}

.sub_csv_value_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5rem;
  margin-top: 7rem;
  margin-left: 4rem;
  margin-right: 4rem;
}

.sub_csv_value_item {
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  background: linear-gradient(149deg, #edf4f8 0%, #edf4f8 19%, #ffefdb 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.sub_csv_value_item:first-child .sub_csv_value_txt {
  font-size: 3.2rem;
}

.sub_csv_value_ttl {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  color: #002d4d;
  padding-bottom: 0.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}
.sub_csv_value_ttl::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background-color: #002d4d;
}

.sub_csv_value_txt {
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 2.2rem;
  min-height: 10.56rem;
  display: flex;
  align-items: center;
}

.sub_csv_reason_txt {
  margin: 6rem auto 0;
}
.sub_csv_reason_txt p {
  line-height: 2.25;
  letter-spacing: 0.025em;
}

/* --- 私たちが目指す役割（container03内） --- */
.sub_csv_role {
  margin-top: 18rem;
}

.sub_csv_role_ttl {
  margin-bottom: 6rem;
}

.sub_csv_role_body {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6.5rem;
}

.sub_csv_role_txt {
  flex: 1;
}
.sub_csv_role_txt p {
  letter-spacing: 0.05em;
}

.sub_csv_role_img {
  flex-shrink: 0;
  width: 39.8rem;
}
.sub_csv_role_img img {
  display: block;
  width: 100%;
}

/* --- container04: 社会課題 --- */
.sub_csv_container04_bg {
  display: flex;
  justify-content: center;
  padding: 12rem 0;
}

.sub_csv_issue_txt {
  margin: 3rem auto 0;
}
.sub_csv_issue_txt p {
  margin-bottom: 4rem;
}
.sub_csv_issue_txt p:last-child {
  margin-bottom: 0;
}

.sub_csv_issue_compare {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 10rem;
}
@media screen and (max-width: 980px) {
  .sub_csv_issue_compare {
    flex-direction: column;
    gap: 6rem;
  }
}

.sub_csv_issue_box {
  position: relative;
}

.sub_csv_issue_box--problem {
  flex: 0 1 45rem;
  background: #eef1f5;
  padding: 5rem 4.5rem 3rem;
}
@media screen and (max-width: 980px) {
  .sub_csv_issue_box--problem {
    flex: initial;
    width: 100%;
  }
}

.sub_csv_issue_box--future {
  flex: 0 1 64rem;
  background: #fdf6ea;
  padding-right: 23rem;
  padding: 7rem 4.5rem 4.5rem;
}
@media screen and (max-width: 980px) {
  .sub_csv_issue_box--future {
    flex: initial;
    width: 100%;
  }
}
.sub_csv_issue_box--future .sub_csv_issue_box_list li {
  font-size: 1.8rem;
}
.sub_csv_issue_box--future .sub_csv_issue_box_list li::before {
  width: 1.1rem;
  height: 1.1rem;
  background: #e07e00;
}

.sub_csv_issue_box_ttl {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 24rem;
  padding: 0.5rem 2rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  white-space: nowrap;
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
}
.sub_csv_issue_box--problem .sub_csv_issue_box_ttl {
  background: #002d4d;
}
.sub_csv_issue_box--future .sub_csv_issue_box_ttl {
  background: #e07e00;
  font-size: 2.6rem;
}

.sub_csv_issue_box_list li {
  position: relative;
  padding-left: 2.5rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.sub_csv_issue_box_list li:last-child {
  margin-bottom: 0;
}
.sub_csv_issue_box_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: #002d4d;
}

.sub_csv_issue_arrow {
  flex-shrink: 0;
}
.sub_csv_issue_arrow img {
  display: block;
  width: 50px;
  height: 23px;
}
@media screen and (max-width: 980px) {
  .sub_csv_issue_arrow {
    transform: rotate(90deg);
    transform-origin: center center;
    margin: -15px 0 5px 0;
  }
}

.sub_csv_issue_box_img {
  position: absolute;
  right: 3.4rem;
  bottom: 0;
  width: 17.9rem;
}
.sub_csv_issue_box_img img {
  display: block;
  width: 100%;
}

/* --- container05: 協心が提供する3つの価値 --- */
.sub_csv_container05_bg {
  display: flex;
  justify-content: center;
  padding: 6rem 0 12rem 0;
}

.sub_csv_provide_lead {
  margin-top: 2rem;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
}

.sub_csv_provide_list {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 4.5rem;
  position: relative;
  padding-bottom: 7.5rem;
}
.sub_csv_provide_list::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 57px;
  height: 31px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='57' height='31' viewBox='0 0 57 31'%3E%3Cpath d='M4 4H53L28.5 27Z' fill='%23002d4d' stroke='%23002d4d' stroke-width='4' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
}

.sub_csv_provide_item {
  flex: 1;
  max-width: 38rem;
  background: #f5f6f9;
  padding: 5rem 4.5rem 3rem 4.5rem;
  text-align: center;
}

.sub_csv_provide_icon {
  width: 11rem;
  margin: 0 auto 2.5rem;
}
.sub_csv_provide_icon img {
  display: block;
  width: 100%;
}

.sub_csv_provide_ttl {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  color: #002d4d;
}

.sub_csv_provide_cap {
  font-weight: 500;
  text-align: center;
  color: #002d4d;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.sub_csv_provide_txt {
  font-weight: 500;
  text-align: left;
}

.sub_csv_provide_note {
  margin-top: 2.5rem;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
  line-height: 2;
}

/* --- container06: 会社情報リンク --- */
.sub_csv_container06_bg {
  display: flex;
  justify-content: center;
  padding: 0 0 12rem;
}

/*-------------------------------------------------------------------------------------------------------
****** partners（連携をお考えの方へ）
-------------------------------------------------------------------------------------------------------*/
.partners .common_sub_main {
  background: url(../images/partners/partners_mainimg.jpg) no-repeat center top;
  background-size: cover;
}

.sub_partners_ttl01 {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.12em;
  text-align: center;
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
}

.sub_partners_ttl02 {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}
.sub_partners_ttl02::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #002d4d;
}

/* --- container01: イントロ --- */
.sub_partners_container01_bg {
  display: flex;
  justify-content: center;
  padding: 6.5rem 0 8rem;
}

.sub_partners_intro_txt {
  margin: 2.5rem auto 0;
}
.sub_partners_intro_txt p {
  letter-spacing: -0.025em;
}

/* --- container02: 一社ではつくれない未来がある --- */
.sub_partners_container02_bg {
  display: flex;
  justify-content: center;
  padding: 8rem 0 8rem;
}

.sub_partners_block {
  margin-top: 7.5rem;
}
.sub_partners_block:first-of-type {
  margin-top: 5rem;
}

.sub_partners_block_txt p {
  letter-spacing: -0.025em;
}

.sub_partners_block_img {
  margin-top: 3rem;
  text-align: center;
}
.sub_partners_block_img img {
  display: inline-block;
  /*max-width: vw(731);*/
}

.sub_partners_value_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 5rem;
}

.sub_partners_value_item {
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: linear-gradient(149deg, #edf4f8 0%, #edf4f8 19%, #ffefdb 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.sub_partners_value_ttl {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  color: #002d4d;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  position: relative;
}
.sub_partners_value_ttl::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background-color: #002d4d;
}

.sub_partners_value_txt {
  font-size: 2.4rem;
  font-weight: 500;
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  letter-spacing: 0.1em;
}

/* --- container03: 協心が目指す「連携」のかたち --- */
.sub_partners_container03_bg {
  display: flex;
  justify-content: center;
  padding: 8rem 0;
}
.sub_partners_container03_bg .sub_partners_block_img {
  margin-top: 7rem;
}

.sub_partners_align {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
}

.sub_partners_align_box {
  background-color: #f7f6f3;
}
.sub_partners_align_box--general {
  flex: 0 0 46rem;
}
@media screen and (max-width: 980px) {
  .sub_partners_align_box--general {
    flex: 0 0 30rem;
  }
}
.sub_partners_align_box--kyoshin {
  flex: 1 1 auto;
}
.sub_partners_align_box--kyoshin .sub_partners_align_list li {
  font-size: 2rem;
  font-weight: 700;
}

.sub_partners_align_ttl {
  padding: 1.3rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  white-space: nowrap;
}
.sub_partners_align_box--general .sub_partners_align_ttl {
  background: #002d4d;
}
.sub_partners_align_box--kyoshin .sub_partners_align_ttl {
  background: #e07e00;
  font-size: 2.2rem;
}

.sub_partners_align_list {
  margin: 2.5rem auto;
  display: table;
}
.sub_partners_align_list li {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  gap: 2rem;
}
.sub_partners_align_list li:not(:last-child) {
  margin-bottom: 1rem;
}

.sub_partners_align_icon {
  flex-shrink: 0;
  width: 7rem;
}
.sub_partners_align_icon img {
  display: block;
  width: 100%;
}

/* --- container04: 協心が大切にしている姿勢 --- */
.sub_partners_container04_bg {
  display: flex;
  justify-content: center;
  padding: 8rem 0;
}
.sub_partners_container04_bg .sub_partners_catch {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-align: center;
  margin-top: 1rem;
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
}

.sub_partners_stance {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 7rem auto 0;
  padding: 5rem;
  background: linear-gradient(90deg, #edf4f8 0%, #edf4f8 19%, #ffefdb 100%);
}

.sub_partners_stance_icon {
  position: absolute;
  top: -2rem;
  left: 4.5rem;
  content: "";
  width: 9.4rem;
  height: 8.2rem;
  background: url(../images/partners/partners_design04.png) no-repeat center center;
  background-size: contain;
  animation: floatUpDown 3s ease-in-out infinite;
}

.sub_partners_stance_list {
  display: flex;
  justify-content: center;
}

.sub_partners_stance_item {
  text-align: center;
  padding: 0 4rem;
  position: relative;
}
.sub_partners_stance_item:first-child {
  padding-left: 0;
}
.sub_partners_stance_item:last-child {
  padding-right: 0;
}
.sub_partners_stance_item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 64px;
  background: url(../images/partners/partners_line.png) no-repeat left top;
  background-size: contain;
}

.sub_partners_stance_word {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 500;
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  letter-spacing: 0.1em;
  color: #002d4d;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  position: relative;
}
.sub_partners_stance_word::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 6rem;
  height: 1px;
  background-color: #002d4d;
}

.sub_partners_stance_desc {
  font-size: 2rem;
  font-weight: 500;
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  letter-spacing: 0.1em;
}

.sub_partners_lead {
  margin: 4rem auto 0;
}

/* --- container05: 現在進行中の共創活動 --- */
.sub_partners_container05_bg {
  display: flex;
  justify-content: center;
  padding: 8rem 0;
}

.sub_partners_activity_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem 4rem;
  margin-top: 4rem;
}

.sub_partners_activity_item {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: calc((100% - 8rem) / 2);
  background: #f7f6f3;
  padding: 1.5rem 2.5rem;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.sub_partners_activity_icon {
  flex-shrink: 0;
  width: 7rem;
}
.sub_partners_activity_icon img {
  display: block;
  width: 100%;
}

/* --- container06: こんな方とご一緒したい --- */
.sub_partners_container06_bg {
  display: flex;
  justify-content: center;
  padding: 8rem 0 15rem 0;
}
.sub_partners_container06_bg .sub_partners_catch {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  color: #002d4d;
  margin-top: 3rem;
}

.sub_partners_target {
  display: flex;
  align-items: center;
  gap: 5rem;
  margin-top: 3rem;
  background: #f5f7f9;
  border-radius: 1rem;
  padding: 5rem 31rem 5rem 8.5rem;
  position: relative;
}

.sub_partners_target_body {
  flex: 1;
}

.sub_partners_target_list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 5rem;
}
.sub_partners_target_list li {
  width: calc((100% - 5rem) / 2);
  position: relative;
  padding-left: 3rem;
  font-size: 1.8rem;
  font-weight: 500;
}
.sub_partners_target_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 2rem;
  height: 2rem;
  background: url(../images/common/icon_check_blue.svg) no-repeat center center;
  background-size: contain;
}

.sub_partners_target_img {
  flex-shrink: 0;
  position: absolute;
  right: 5rem;
  bottom: 2.5rem;
  width: 21rem;
}
.sub_partners_target_img img {
  display: block;
  width: 100%;
}

/* --- container07: 締 --- */
.sub_partners_container07_bg {
  display: flex;
  justify-content: center;
  background: url(../images/partners/partners_fix_bg.png) no-repeat center center;
  background-size: cover;
  padding: 10rem 0 9rem 0;
  margin-bottom: 12rem;
}

.sub_partners_fix_ttl {
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  text-align: center;
  color: #002d4d;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px dotted #002d4d;
  display: table;
  margin-left: auto;
  margin-right: auto;
}

.sub_partners_fix_txt {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
}

.sub_partners_fix_btn {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}
.sub_partners_fix_btn .header_drawer_cta_item {
  margin-top: 0;
}
.sub_partners_fix_btn .header_cta_sub {
  font-size: 1.6rem;
  margin-bottom: 3px;
  width: 29rem;
  height: 3.4rem;
  top: 17px;
  font-weight: 500;
  padding-left: 0.5rem;
}
.sub_partners_fix_btn .header_cta_btn {
  width: 42rem;
  height: 7rem;
  padding: 8px 0 0 0;
}
.sub_partners_fix_btn .header_cta_btn:hover .btn_arrow::before {
  width: 26px;
  height: 26px;
}
.sub_partners_fix_btn .header_cta_btn .btn_txt {
  font-size: 2rem;
  padding-left: 29px;
  font-weight: 500;
}
.sub_partners_fix_btn .header_cta_btn .btn_txt::before {
  width: 24px;
  height: 19px;
}
.sub_partners_fix_btn .header_cta_btn .btn_arrow {
  right: 3rem;
  margin-top: 5px;
}
.sub_partners_fix_btn .header_cta_btn .btn_arrow::before {
  width: 6px;
  height: 6px;
}

/* ========== サービス詳細 共通メイン（8ページ共通） ========== */
.common_sub_service_main {
  display: flex;
  justify-content: center;
  padding: 4rem 0 18.7rem 0;
  position: relative;
  overflow: hidden;
}
.common_sub_service_main::before {
  background: url(../images/common/sub_service_mainimg_bk.png) no-repeat center bottom;
  background-size: cover;
  content: "";
  position: absolute;
  top: 21rem;
  left: 0;
  width: 100%;
  height: 44.2rem;
}
.common_sub_service_main .common_inner {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.common_sub_service_main_txt {
  flex: 1;
  padding-right: 5rem;
}
.common_sub_service_main_box {
  margin-bottom: 9rem;
}
.common_sub_service_main .common_en01 {
  display: block;
  font-size: 4.6rem;
  letter-spacing: 0.1em;
  color: #edf3f8;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.common_sub_service_main .h1_ttl {
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 1.4;
}
.common_sub_service_main_btn {
  margin-top: 6rem;
  align-items: flex-start;
}
.common_sub_service_main_btn.sp {
  display: none;
}
.common_sub_service_main_btn .header_cta_btn {
  width: 42rem;
  height: 7rem;
  padding: 0;
}
.common_sub_service_main_btn .header_cta_btn:hover .btn_arrow::before {
  width: 26px;
  height: 26px;
}
.common_sub_service_main_btn .header_cta_btn .btn_txt {
  font-size: 2rem;
  padding-left: 29px;
  font-weight: 500;
}
.common_sub_service_main_btn .header_cta_btn .btn_txt::before {
  width: 24px;
  height: 19px;
}
.common_sub_service_main_btn .header_cta_btn .btn_arrow {
  right: 3rem;
  margin-top: 0;
}
.common_sub_service_main_btn .header_cta_btn .btn_arrow::before {
  width: 6px;
  height: 6px;
}

/* サービス詳細メイン画像：基本は inner 内に収める。 */
/* insurance はみ出す */
.insurance .common_sub_service_main_img {
  margin-right: -18rem;
}
@media screen and (max-width: 980px) {
  .insurance .common_sub_service_main_img {
    margin-right: -8rem;
  }
}

/* laborinsurance 右余白 */
.laborinsurance .common_sub_service_main_img {
  margin-right: 7.5rem;
}
@media screen and (max-width: 980px) {
  .laborinsurance .common_sub_service_main_img {
    margin-right: 0;
  }
}

/* regulations 右余白 */
.regulations .common_sub_service_main_img {
  margin-right: 9.5rem;
}
@media screen and (max-width: 980px) {
  .regulations .common_sub_service_main_img {
    margin-right: 0;
  }
}

/* advisor 右余白 */
.advisor .common_sub_service_main_img {
  margin-right: 7rem;
}
@media screen and (max-width: 980px) {
  .advisor .common_sub_service_main_img {
    margin-right: 0;
  }
}

/* design 右余白 */
.design .common_sub_service_main_img {
  margin-right: 11.5rem;
  margin-left: 8rem;
}
@media screen and (max-width: 980px) {
  .design .common_sub_service_main_img {
    margin-right: 0;
    margin-left: 0;
  }
}

/* seminar はみ出す */
.seminar .common_sub_service_main_img {
  margin-right: -4rem;
}

/* ========== お悩み（サービス詳細8ページ共通） ========== */
.sub_service_worry_bg {
  display: flex;
  justify-content: center;
  padding: 0 0 9.5rem 0;
}

.sub_service_worry_ttl {
  text-align: center;
  font-size: 3.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
  padding-bottom: 1rem;
  margin-bottom: 7rem;
  border-bottom: 3px dotted #002d4d;
  display: table;
  margin-left: auto;
  margin-right: auto;
}

.sub_service_worry_ttl_em {
  color: #002d4d;
}

.sub_service_worry_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.sub_service_worry_item {
  position: relative;
  padding-top: 3rem;
}

.sub_service_worry_num {
  position: absolute;
  top: 3rem;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  box-sizing: border-box;
}
.sub_service_worry_num::before, .sub_service_worry_num::after {
  content: "";
  flex: 1;
  height: 2px;
  background-color: #002d4d;
}

.sub_service_worry_num_label {
  display: inline-flex;
  align-items: center;
  color: #002d4d;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  white-space: nowrap;
  line-height: 1;
}

.sub_service_worry_num_en {
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-left: 1rem;
  font-family: "Philosopher", sans-serif;
}

.sub_service_worry_box {
  height: 100%;
  padding: 5rem 3.5rem 3rem 3.5rem;
  background-color: #f5f6f9;
  box-sizing: border-box;
}

.sub_service_worry_img {
  text-align: center;
  margin-bottom: 3rem;
}

.sub_service_worry_txt {
  font-weight: 500;
  line-height: 1.8;
}
.sub_service_worry_txt .sub_service_worry_em {
  color: #002d4d;
  font-weight: 700;
}

/* ========== 協心ができること（サービス詳細8ページ共通） ========== */
.sub_service_can_bg {
  display: flex;
  justify-content: center;
  padding: 9.5rem 0;
}

.sub_service_can_box {
  position: relative;
  background-color: #f5f6f9;
  box-sizing: border-box;
  overflow: hidden;
  margin-top: 7rem;
}
@media screen and (max-width: 980px) {
  .sub_service_can_box {
    padding-bottom: 8rem;
  }
}

.sub_service_can_box_ttl {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  color: #fff;
  background-color: #002d4d;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-bottom: 6rem;
  padding: 1.5rem;
}

.sub_service_can_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 3.5rem;
  position: relative;
  z-index: 1;
  margin: 6rem 5.5rem;
}
@media screen and (max-width: 980px) {
  .sub_service_can_list {
    grid-template-columns: 1fr;
  }
}

.sub_service_can_item {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 3rem 4.5rem;
  background-color: #fff;
  box-sizing: border-box;
}

.sub_service_can_item_img {
  flex-shrink: 0;
  width: 12rem;
  text-align: center;
}

.sub_service_can_item_body {
  flex: 1;
}

.sub_service_can_item_ttl {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  margin-bottom: 1rem;
}

.sub_service_can_item_txt {
  letter-spacing: 0.1em;
  font-weight: 500;
}

.sub_service_can_design {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.insurance .sub_service_can_design {
  right: 14.5rem;
  bottom: 0;
  width: 36.8rem;
}
@media screen and (max-width: 980px) {
  .insurance .sub_service_can_design {
    width: 18.4rem;
  }
}

.calculation .sub_service_can_design {
  right: 19.7rem;
  bottom: 3.3rem;
  width: 22.6rem;
}
@media screen and (max-width: 980px) {
  .calculation .sub_service_can_design {
    width: 12.4rem;
    bottom: 0;
  }
}

.subsidy .sub_service_can_design {
  right: 8.5rem;
  bottom: 0;
  width: 46.7rem;
}
@media screen and (max-width: 1408px) {
  .subsidy .sub_service_can_design {
    right: 3rem;
    width: 45%;
  }
}
@media screen and (max-width: 980px) {
  .subsidy .sub_service_can_design {
    width: 23rem;
  }
}

.regulations .sub_service_can_design {
  right: 12.2rem;
  bottom: 0;
  width: 37.6rem;
}
@media screen and (max-width: 1294px) {
  .regulations .sub_service_can_design {
    right: 10%;
  }
}
@media screen and (max-width: 980px) {
  .regulations .sub_service_can_design {
    width: 18rem;
  }
}

.advisor .sub_service_can_design {
  right: 8.9rem;
  bottom: 0;
  width: 42.9rem;
}
@media screen and (max-width: 1294px) {
  .advisor .sub_service_can_design {
    right: 5%;
    width: 35%;
  }
}
@media screen and (max-width: 980px) {
  .advisor .sub_service_can_design {
    width: 18rem;
  }
}

.design .sub_service_can_design {
  right: 22rem;
  bottom: 0;
  width: 23.4rem;
}
@media screen and (max-width: 1294px) {
  .design .sub_service_can_design {
    right: 17%;
  }
}
@media screen and (max-width: 980px) {
  .design .sub_service_can_design {
    width: 11rem;
  }
}

.seminar .sub_service_can_design {
  right: 11rem;
  bottom: 0;
  width: 40rem;
}
@media screen and (max-width: 1294px) {
  .seminar .sub_service_can_design {
    right: 11%;
    width: 28%;
  }
}
@media screen and (max-width: 980px) {
  .seminar .sub_service_can_design {
    width: 16rem;
    right: 39%;
  }
}

@media screen and (max-width: 980px) {
  .laborinsurance .sub_service_can_box {
    padding-bottom: 0;
  }
}

.laborinsurance .sub_service_can_link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.laborinsurance .sub_service_can_link a:hover {
  opacity: 0.7;
}

/* ========== サービス詳細 共通セクション見出し（8ページ共通） ========== */
.sub_service_sec_ttl {
  text-align: center;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-bottom: 5rem;
}

/* ========== 協心が選ばれる理由（サービス詳細8ページ共通） ========== */
.sub_service_reason_bg {
  display: flex;
  justify-content: center;
  padding: 9.5rem 0;
}

.sub_service_reason_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9rem;
  margin-top: 7rem;
}
@media screen and (max-width: 1294px) {
  .sub_service_reason_list {
    gap: 5rem;
  }
}
@media screen and (max-width: 980px) {
  .sub_service_reason_list {
    grid-template-columns: 1fr;
  }
}

.sub_service_reason_circle {
  aspect-ratio: 340/340;
  border-radius: 50%;
  background-color: #f5f6f9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem 0;
  box-sizing: border-box;
  margin-bottom: 3rem;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.sub_service_reason_num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 4rem;
}

.sub_service_reason_num_label {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: #002d4d;
  line-height: 1;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.sub_service_reason_num_en {
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  margin-left: 1rem;
  color: #002d4d;
  line-height: 1;
}

.sub_service_reason_ttl {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.45;
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  min-height: 8.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.sub_service_reason_ttl .sub_service_reason_em {
  color: #e07e00;
}

.sub_service_reason_txt {
  line-height: 2;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ========== ご相談から支援開始までの流れ（サービス詳細8ページ共通） ========== */
.sub_service_flow_bg {
  display: flex;
  justify-content: center;
  padding: 9.5rem 0;
}

.sub_service_flow_list {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  margin-top: 7rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1.5rem;
}
.sub_service_flow_list::-webkit-scrollbar {
  height: 8px;
}
.sub_service_flow_list::-webkit-scrollbar-track {
  background: #e6e6e6;
  border-radius: 5px;
}
.sub_service_flow_list::-webkit-scrollbar-thumb {
  background: #BCBCBC;
  border-radius: 10px;
}

.sub_service_flow_box {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 200px;
}
.sub_service_flow_box:nth-child(1) .sub_service_flow_num {
  background-color: #002d4d;
}
.sub_service_flow_box:nth-child(2) .sub_service_flow_num {
  background-color: rgb(56, 65.25, 57.75);
}
.sub_service_flow_box:nth-child(3) .sub_service_flow_num {
  background-color: rgb(112, 85.5, 38.5);
}
.sub_service_flow_box:nth-child(4) .sub_service_flow_num {
  background-color: rgb(168, 105.75, 19.25);
}
.sub_service_flow_box:nth-child(5) .sub_service_flow_num {
  background-color: #e07e00;
}
.sub_service_flow_box:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 2.4rem;
  left: 50%;
  width: calc(100% + 2rem);
  height: 2px;
  z-index: 0;
}
.sub_service_flow_box:nth-child(1)::before {
  background: linear-gradient(to right, #002d4d, rgb(56, 65.25, 57.75));
}
.sub_service_flow_box:nth-child(2)::before {
  background: linear-gradient(to right, rgb(56, 65.25, 57.75), rgb(112, 85.5, 38.5));
}
.sub_service_flow_box:nth-child(3)::before {
  background: linear-gradient(to right, rgb(112, 85.5, 38.5), rgb(168, 105.75, 19.25));
}
.sub_service_flow_box:nth-child(4)::before {
  background: linear-gradient(to right, rgb(168, 105.75, 19.25), #e07e00);
}

.sub_service_flow_num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  color: #fff;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  margin: 0 auto 4rem auto;
  position: relative;
  z-index: 1;
}

.sub_service_flow_card {
  background-color: #f7f6f3;
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  text-align: center;
  height: 100%;
  box-sizing: border-box;
  flex: 1;
}

.sub_service_flow_ttl {
  font-size: 2rem;
  font-weight: 500;
  color: #002d4d;
  line-height: 1.5;
  min-height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.05em;
}
.sub_service_flow_ttl span {
  font-size: 1.8rem;
}

.calculation .sub_service_flow_ttl,
.regulations .sub_service_flow_ttl,
.advisor .sub_service_flow_ttl,
.design .sub_service_flow_ttl,
.seminar .sub_service_flow_ttl {
  min-height: 9rem;
}

.sub_service_flow_img {
  display: block;
  margin: 0 auto 1rem auto;
}

.sub_service_flow_txt {
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: left;
}

/* ========== 導入事例（サービス詳細8ページ共通） ========== */
.sub_service_case_bg {
  display: flex;
  justify-content: center;
  padding: 9.5rem 0;
}

.sub_service_case_box {
  padding: 7rem 8rem;
  background-color: #f5f6f9;
  box-sizing: border-box;
}

.sub_service_case_head {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  margin-bottom: 6rem;
}

.sub_service_case_head_img {
  flex-shrink: 0;
  width: 16rem;
}

.sub_service_case_head_body {
  flex: 1;
}

.sub_service_case_head_ttl {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
  padding-bottom: 2rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #002d4d;
}

.sub_service_case_head_sub {
  font-weight: 500;
  letter-spacing: 0.1em;
}

.sub_service_case_compare {
  display: flex;
  align-items: stretch;
  gap: 6rem;
}
@media screen and (max-width: 980px) {
  .sub_service_case_compare {
    flex-direction: column;
  }
}

.sub_service_case_col {
  flex: 1;
  position: relative;
  padding: 4.5rem 3rem 3rem 3rem;
  background-color: #fff;
  box-sizing: border-box;
}
.sub_service_case_col--before {
  border: 1px solid #002d4d;
}
.sub_service_case_col--before::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -4.6rem;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.8rem 0 1.8rem 2.4rem;
  border-radius: 3px;
  border-color: transparent transparent transparent #e07e00;
}
@media screen and (max-width: 980px) {
  .sub_service_case_col--before::after {
    top: auto;
    bottom: -4.5rem;
    left: 50%;
    margin-left: -1.8rem;
    right: auto;
    border-width: 2.4rem 1.8rem 0 1.8rem;
    border-color: #e07e00 transparent transparent transparent;
  }
}
.sub_service_case_col--after {
  border: 1px solid #e07e00;
}

.sub_service_case_label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 22rem;
  padding: 1rem 2rem;
  color: #fff;
  font-size: 2.2rem;
  font-family: "Philosopher", sans-serif;
  letter-spacing: 0.1em;
  line-height: 1;
}
.sub_service_case_col--before .sub_service_case_label {
  background-color: #002d4d;
}
.sub_service_case_col--after .sub_service_case_label {
  background-color: #e07e00;
}

.sub_service_case_txt {
  line-height: 2;
  font-weight: 500;
}

/* ========== よくある質問（recruitと同デザイン／8ページ共通） ========== */
.sub_service_faq_bg {
  display: flex;
  justify-content: center;
  padding: 9.5rem 0;
}

/* ========== 締（CV／サービス詳細8ページ共通） ========== */
.sub_service_cv_bg {
  display: flex;
  justify-content: center;
  padding: 9.5rem 0;
}

.sub_service_cv_box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 5rem 12rem;
  background: linear-gradient(149deg, #edf4f8 0%, #edf4f8 19%, #ffefdb 100%);
  box-sizing: border-box;
}
@media screen and (max-width: 1248px) {
  .sub_service_cv_box {
    padding: 4rem;
  }
}

.sub_service_cv_body {
  flex: 1;
  order: 1;
}

.sub_service_cv_ttl {
  font-size: 3.6rem;
  font-weight: 500;
  color: #002d4d;
  letter-spacing: 0.12em;
  line-height: 1.5;
  margin-bottom: 2rem;
  border-bottom: 2px dotted #002d4d;
  padding-bottom: 0.5rem;
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  display: table;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
}
@media screen and (max-width: 980px) {
  .sub_service_cv_ttl {
    font-size: 2.8rem;
  }
}

.sub_service_cv_txt {
  line-height: 2;
  font-weight: 500;
  font-size: 1.8rem;
  text-align: center;
}

.sub_service_cv_btn {
  margin-top: 1rem;
}

.sub_service_cv_img {
  width: 32.3rem;
  order: 0;
}

.sub_service_cv_img + .sub_service_cv_btn.sp {
  display: none;
}

/* ========== 他のサービス内容（サービス詳細8ページ共通） ========== */
.sub_service_other_bg {
  display: flex;
  justify-content: center;
  padding: 9rem 0 12rem 0;
}

.sub_service_other_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.6rem;
  margin-top: 7rem;
  /*@media screen and (max-width: (1248px)) {
  	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }*/
}
@media screen and (max-width: 980px) {
  .sub_service_other_list {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

.sub_service_other_card {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 10rem;
  padding: 0 5rem 0 1.5rem;
  background: #f5f6f9;
  border-top: 2px solid #002d4d;
  position: relative;
  box-sizing: border-box;
}
.sub_service_other_card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s ease;
  background-color: #002d4d;
}
.sub_service_other_card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  background-color: #e07e00;
}
.sub_service_other_card:hover::before {
  transform: scaleX(0);
}
.sub_service_other_card:hover::after {
  transform: scaleX(1);
}
.sub_service_other_card:hover .btn_arrow::before {
  background-color: #e07e00;
}

.sub_service_other_card_icon {
  flex-shrink: 0;
  width: 5.5rem;
  text-align: center;
}

.sub_service_other_card_ttl {
  flex: 1;
  font-size: 1.8rem;
  font-weight: 500;
  color: #002d4d;
  line-height: 1.4;
  letter-spacing: -0.025em;
}

.sub_service_other_card .btn_arrow {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
}
.sub_service_other_card .btn_arrow svg {
  fill: none;
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sub_service_other_card .btn_arrow path {
  stroke: #fff;
}
.sub_service_other_card .btn_arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #002d4d;
  transition: all 0.3s ease-out;
}

/*-------------------------------------------------------------------------------------------------------
****** contact（お問い合わせ）
-------------------------------------------------------------------------------------------------------*/
.contact .common_sub_main {
  background: url(../images/contact/contact_mainimg.jpg) no-repeat center top;
  background-size: cover;
}

/*-------------------------------------------------------------------------------------------------------
****** unsubscribe（配信停止）
-------------------------------------------------------------------------------------------------------*/
.unsubscribe .common_sub_main {
  background: url(../images/unsubscribe/unsubscribe_mainimg.jpg) no-repeat center top;
  background-size: cover;
}

/*-------------------------------------------------------------------------------------------------------
****** SU Blocks Blogcard
-------------------------------------------------------------------------------------------------------*/
/* タイトル */
/* ブログカードのタイトル */
.wp-block-su-blogcard .wp-blogcard-title {
  font-size: 2rem;
}

/* ブログカードの説明文 */
.wp-block-su-blogcard .wp-blogcard-description {
  font-size: 1.6rem;
}

/* サイト名（ドメイン）部分 */
.wp-block-su-blogcard .wp-blogcard-domain {
  font-size: 1.4rem;
}

/*-------------------------------------------------------------------------------------------------------
****** MyKomon
-------------------------------------------------------------------------------------------------------*/
#mkcontents,
#mkcontents table {
  font-size: 16px !important;
  line-height: 2 !important;
}

#mkcontents .hp2_format_file_links {
  justify-content: flex-start;
}
#mkcontents .hp2_format_file_links > a {
  display: flex;
  align-items: center;
}
#mkcontents .hp2_format_file_links > a > img {
  margin: 4px 7px 0 0;
}
#mkcontents .hp2_format_lower {
  margin-top: 5rem;
}
#mkcontents .hp2_format_image + div > [style*="font-weight: bold"] {
  margin-bottom: 10px;
}

.mykomon_contents03 .content_item_list {
  margin-bottom: 10rem;
}
.mykomon_contents03 .content_item_list dt {
  padding: 3rem 4rem 3rem 4rem;
  border-bottom: 1px solid #e4e6ea;
}
.mykomon_contents03 .content_item_list dt .item_date_left {
  color: #a5a5a5;
  letter-spacing: 0.1em;
  font-family: "Philosopher", sans-serif;
}
.mykomon_contents03 .content_item_list dt .item_title {
  margin-top: 1.5rem;
}
.mykomon_contents03 .content_item_list dt .item_title a {
  color: #222222;
  display: block;
  letter-spacing: 0.1em;
  transition: color 0.2s;
  font-weight: 500;
  width: 100%;
}
.mykomon_contents03 .content_item_list dt .item_title a:hover {
  opacity: 0.7;
}
.mykomon_contents03 .content_item_list_link {
  max-width: 36rem;
  height: 7rem;
  margin-left: auto;
  margin-right: auto;
}
.mykomon_contents03 .content_item_list_link a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #002d4d;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.mykomon_contents03 .content_item_list_link a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  background-color: #e07e00;
}
.mykomon_contents03 .content_item_list_link a:hover::before {
  transform: scaleX(1);
}

.mykomon .single_entry_contact_box {
  margin: 10rem auto 0 auto;
  max-width: 82rem;
}

/*-------------------------------------------------------------------------------------------------------
****** privacypolicy（個人情報保護方針）
-------------------------------------------------------------------------------------------------------*/
.privacypolicy .common_sub_main {
  background: url(../images/privacypolicy/privacypolicy_mainimg.jpg) no-repeat center top;
  background-size: cover;
}

.sub_privacypolicy {
  width: 100%;
  margin: 0 auto;
}
.sub_privacypolicy p {
  line-height: 2.25;
  font-weight: 500;
}
.sub_privacypolicy li,
.sub_privacypolicy a {
  font-weight: 500;
}

.sub_privacypolicy_block + .sub_privacypolicy_block {
  margin-top: 9rem;
}
.sub_privacypolicy_block + .ank .sub_privacypolicy_block {
  padding-top: 9rem;
}

.privacypolicy .ank {
  padding-top: 9rem;
  margin-top: -9rem;
}

.sub_privacypolicy_ttl {
  text-align: center;
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.5;
  color: #222222;
  margin-bottom: 3.5rem;
}

.sub_privacypolicy .sub_privacypolicy_block > p {
  margin-bottom: 6rem;
}

.sub_privacypolicy_list > li + li {
  margin-top: 5rem;
}

.sub_privacypolicy_list_ttl {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
  color: #222222;
  border-bottom: 1px solid #002d4d;
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
}

.sub_privacypolicy_list_num {
  font-family: "Philosopher", sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #e07e00;
  margin-right: 1.5rem;
}

.sub_privacypolicy_subttl {
  display: block;
  background-color: #f5f6f9;
  padding: 1rem 3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #222222;
  margin-top: 4rem;
  margin-bottom: 3rem;
}
.sub_privacypolicy_subttl::before {
  content: "■";
  color: #002d4d;
  margin-right: 0.8em;
  font-size: 1.4rem;
}

.sub_privacypolicy_group {
  margin-top: 3.5rem;
}
.sub_privacypolicy_group > .sub_privacypolicy_subttl {
  margin-top: 0;
}
.sub_privacypolicy_group p + p {
  margin-top: 1.5rem;
}

.sub_privacypolicy_box {
  margin-top: 4rem;
}
.sub_privacypolicy_box span {
  display: block;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #002d4d;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}
.sub_privacypolicy_box p + p {
  margin-top: 1.5rem;
}

.sub_privacypolicy_ol {
  counter-reset: ppnum;
  list-style: none;
}
.sub_privacypolicy_ol > li {
  counter-increment: ppnum;
  position: relative;
  line-height: 2;
  letter-spacing: 0.05em;
  padding-left: 2.6em;
}
.sub_privacypolicy_ol > li::before {
  content: "（" counter(ppnum) "）";
  position: absolute;
  left: 0;
  top: 0;
}

p + .sub_privacypolicy_ol {
  margin-top: 1.5rem;
}
p + .sub_privacypolicy_ol > li + li {
  margin-top: 1.5rem;
}

.sub_privacypolicy_ul {
  list-style: none;
}
.sub_privacypolicy_ul > li {
  position: relative;
  padding-left: 1.4em;
  line-height: 2;
  letter-spacing: 0.05em;
}
.sub_privacypolicy_ul > li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

p + .sub_privacypolicy_ul {
  margin-top: 1.5rem;
}

.sub_privacypolicy_ol_block > li + li {
  margin-top: 3rem;
}
.sub_privacypolicy_ol_block p + p {
  margin-top: 1.5rem;
}

.sub_privacypolicy_ol_ttl {
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #002d4d;
  font-size: 1.8rem;
  display: block;
  margin-bottom: 10px;
}

.sub_privacypolicy_link {
  display: inline-block;
  position: relative;
  margin-top: 1.2rem;
  padding-right: 15px;
  letter-spacing: 0.05em;
  color: #002d4d;
  border-bottom: 1px solid #002d4d;
}
.sub_privacypolicy_link::after {
  content: "";
  background: url(../images/common/icon_arrow_blue.svg) no-repeat left top;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 16px;
  height: 11px;
}
.sub_privacypolicy_link:hover {
  text-decoration: none;
}

.sub_privacypolicy_sign {
  text-align: right;
  margin-top: 4.5rem;
}
.sub_privacypolicy_sign p + p {
  margin-top: 2rem;
}/*# sourceMappingURL=pc.css.map */