@charset "UTF-8";
/*共通スタイル*/
@font-face {
  font-family: "Satoshi-Regular";
  src: url("../fonts/Satoshi-Regular.woff2") format("woff2"), url("../fonts/Satoshi-Regular.woff") format("woff"), url("../fonts/Satoshi-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
/* main colors */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  word-break: break-all;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  color: #002D6A;
  line-height: 1.75;
  font-size: 15px;
  background: #F7F7F7;
}
@media (min-width: 920px) {
  body {
    font-size: 16px;
    line-height: 2;
  }
}

img,
svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  max-width: 100%;
}

p {
  font-weight: 300;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  cursor: pointer !important;
  text-decoration: none;
  color: inherit;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
ul.disc {
  list-style-type: disc;
  padding-left: 1.5em;
  list-style-position: outside;
}

.site_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.site_body {
  margin-bottom: auto;
}

.container-base {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

.br {
  display: none;
}
@media (min-width: 920px) {
  .br {
    display: block;
  }
}

.sp_br {
  display: block;
}
@media (min-width: 920px) {
  .sp_br {
    display: none;
  }
}

.pc_content {
  display: none;
}
@media (min-width: 920px) {
  .pc_content {
    display: block;
  }
}

.sp_content {
  display: block !important;
}
@media (min-width: 920px) {
  .sp_content {
    display: none !important;
  }
}

/*ヘッダーのスタイル*/
.site_header {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background: #ffffff;
  border-bottom: 1px solid #D9D9D9;
  transition: 0.4s;
}
@media (min-width: 1200px) {
  .site_header {
    padding: 20px 60px;
    background: transparent;
    border-bottom: transparent;
  }
}
.site_header.scrolled {
  background-color: #ffffff;
  padding: 10px 20px;
}
@media (min-width: 1200px) {
  .site_header.scrolled {
    padding: 5px 60px;
    border-bottom: 1px solid #D9D9D9;
  }
}
.site_header_logo {
  max-width: 300px;
  width: 22vw;
  position: relative;
  z-index: 100;
}
@media (max-width: 599px) {
  .site_header_logo {
    max-width: 200px;
    width: 22vw;
  }
}
@media screen and (max-width: 1000px) {
  .site_header_logo {
    max-width: 270px;
    width: 18vw;
  }
}
@media screen and (max-width: 920px) {
  .site_header_logo {
    max-width: 200px;
    width: 100%;
  }
}

.global_nav {
  position: relative;
  z-index: 99;
}
.global_nav_toggle {
  box-shadow: none;
  display: block;
  width: 42px;
  height: 42px;
  border: none;
  position: relative;
  z-index: 1001;
  background: transparent;
  color: #fff;
  transition: 0.3s linear;
  text-align: left;
  padding: 0;
  border-radius: 0;
}
@media (min-width: 920px) {
  .global_nav_toggle {
    display: none;
  }
}
.global_nav_toggle_bar {
  height: 1px;
  background: #002D6A;
  display: block;
  position: absolute;
  transition: 0.3s linear;
  transition-property: transform, opacity, width;
  transform-origin: 100% 50%;
  right: 0;
  width: 25px;
}
.global_nav_toggle_bar-top {
  top: 13px;
}
.global_nav_toggle_bar-mid {
  top: 50%;
}
.global_nav_toggle_bar-btm {
  bottom: 12px;
}
.global_nav_toggle.is-active .global_nav_toggle_bar {
  width: 34px;
  background-color: #002D6A !important;
}
.global_nav_toggle.is-active .global_nav_toggle_bar-top {
  transform: translateY(-5px) rotate(-45deg);
}
.global_nav_toggle.is-active .global_nav_toggle_bar-mid {
  opacity: 0;
}
.global_nav_toggle.is-active .global_nav_toggle_bar-btm {
  transform: translateY(3px) rotate(45deg);
}
@media (max-width: 919px) {
  .global_nav_overlay {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    transition: all 0.3s linear;
    overflow-y: auto;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}
@media (max-width: 919px) {
  .global_nav_overlay.is-open {
    visibility: visible;
    opacity: 1;
  }
}
@media (max-width: 919px) {
  .global_nav_container {
    padding: 70px 20px 50px;
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    width: 100%;
    min-height: 100%;
  }
}
.global_nav_list {
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
@media (max-width: 919px) {
  .global_nav_list {
    border-bottom: 1px solid rgba(153, 175, 198, 0.5);
    gap: 0;
  }
}
@media (min-width: 920px) {
  .global_nav_list {
    flex-direction: row;
    gap: 1em;
    width: auto;
  }
}
@media (min-width: 920px) and (min-width: 1200px) {
  .global_nav_list {
    gap: 2em;
  }
}
@media (min-width: 920px) {
  .global_nav_list_item {
    padding: 10px 0;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 919px) {
  .global_nav_list_item {
    border-top: 1px solid rgba(153, 175, 198, 0.5);
  }
}
.global_nav_list_link {
  display: block;
  line-height: 1.4;
  transition: opacity 0.3s ease-out;
  position: relative;
  overflow: hidden;
  letter-spacing: 1px;
  color: #002D6A;
  text-align: center;
  font-family: "Satoshi-Regular";
}
@media (max-width: 919px) {
  .global_nav_list_link {
    gap: 10px;
    display: flex;
    align-items: flex-end;
    text-align: left;
    padding: 13px 0;
    position: relative;
  }
}
.global_nav_list_link:after {
  display: none;
}
@media (max-width: 919px) {
  .global_nav_list_link:after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: url("../img/common/foot_arrow_right.svg") center center no-repeat;
    background-size: cover;
    width: 18px;
    height: 18px;
  }
}
.global_nav_list_link .en {
  display: block;
  font-weight: bold;
  font-size: min(16rem, 16px);
}
@media (min-width: 920px) {
  .global_nav_list_link .en {
    font-size: min(16rem, 16px);
  }
}
@media (min-width: 920px) and (min-width: 1400px) {
  .global_nav_list_link .en {
    font-size: min(18rem, 18px);
  }
}
.global_nav_list_link .ja {
  display: block;
  font-size: min(13rem, 13px);
}
@media (min-width: 920px) {
  .global_nav_list_link .ja {
    font-size: 14px;
  }
}
@media (min-width: 920px) and (min-width: 1400px) {
  .global_nav_list_link .ja {
    font-size: 16px;
  }
}
@media screen and (max-width: 1000px) {
  .global_nav_list_link .ja {
    font-size: 13px;
  }
}
.global_nav_list li.global_nav_list_item__last a {
  display: flex;
  align-items: center !important;
}
.global_nav_list li.global_nav_list_item__last a .en {
  font-weight: 400;
  font-size: min(16rem, 16px);
}
@media (min-width: 920px) {
  .global_nav_list li.global_nav_list_item__last a .en {
    font-size: min(1.4641288433vw, 20px);
  }
}

.global_sp_bottom {
  display: none;
  padding: 3rem 0;
}
@media (max-width: 919px) {
  .global_sp_bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
  }
}
.global_sp_bottom a.foot_logo {
  max-width: 280px;
  width: 90%;
  display: block;
  margin: 0 auto;
}
.global_sp_bottom ul.foot_info {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.global_sp_bottom ul.foot_info li {
  font-size: 13px;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 10px;
}
.global_sp_bottom ul.foot_info li img {
  width: 18px;
}

/*フッターのスタイル*/
.site_footer {
  background-color: #F7F7F7;
  background-image: url("../img/common/foot_bg.png");
  background-repeat: repeat;
  padding: 4rem 0 2rem 0;
}
@media (min-width: 920px) {
  .site_footer {
    padding: 7rem 0 5rem 0;
  }
}
.site_footer .footer_inner {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 920px) {
  .site_footer .footer_inner {
    flex-direction: row;
  }
}
.site_footer .footer_inner .footer_inner__left {
  position: relative;
  margin: 0 0 2rem 0;
}
@media (min-width: 920px) {
  .site_footer .footer_inner .footer_inner__left {
    margin: 0 0 0 0;
  }
}
.site_footer .footer_inner .footer_inner__left .footer_inner__left__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
}
.site_footer .footer_inner .footer_inner__left a.foot_logo {
  display: block;
  width: 90%;
  max-width: 300px;
  margin: 0 auto 2.5rem auto;
}
@media (min-width: 920px) {
  .site_footer .footer_inner .footer_inner__left a.foot_logo {
    width: 350px;
    margin: 0 0 3rem 0;
  }
}
.site_footer .footer_inner .footer_inner__left ul.foot_info {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.site_footer .footer_inner .footer_inner__left ul.foot_info li {
  font-size: 13px;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 10px;
}
.site_footer .footer_inner .footer_inner__left ul.foot_info li img {
  width: 18px;
}
.site_footer .footer_inner .footer_inner__right {
  width: 100%;
}
@media (min-width: 920px) {
  .site_footer .footer_inner .footer_inner__right {
    width: 40%;
  }
}

.global_nav_list__foot {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 0 2rem 0;
  border-bottom: transparent;
}
@media (min-width: 920px) {
  .global_nav_list__foot {
    margin: 0;
  }
}
.global_nav_list__foot li.global_nav_list_item {
  padding: 0;
  border-top: transparent;
}
.global_nav_list__foot li.global_nav_list_item a {
  position: relative;
  padding: 1.3rem 0;
  width: 100%;
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid #D9D9D9;
  line-height: 1;
  gap: 8px;
}
.global_nav_list__foot li.global_nav_list_item a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url("../img/common/foot_arrow_right.svg") center center no-repeat;
  background-size: cover;
  width: 18px;
  height: 18px;
}
.global_nav_list__foot li.global_nav_list_item a .en {
  font-size: min(16rem, 16px);
}
@media (min-width: 920px) {
  .global_nav_list__foot li.global_nav_list_item a .en {
    font-size: min(1.756954612vw, 24px);
  }
}
.global_nav_list__foot li.global_nav_list_item__last a {
  display: flex;
  align-items: center !important;
}
.global_nav_list__foot li.global_nav_list_item__last a .en {
  font-weight: 400;
  font-size: min(16rem, 16px);
}
@media (min-width: 920px) {
  .global_nav_list__foot li.global_nav_list_item__last a .en {
    font-size: min(1.4641288433vw, 20px);
  }
}

.copyright {
  color: #9D9D9D;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-align: center;
}
@media (min-width: 920px) {
  .copyright {
    text-align: left;
  }
}

#page_top {
  display: block;
  width: 80px;
  margin: 0 auto 3rem auto;
}
@media (min-width: 920px) {
  #page_top {
    margin: auto 0 1rem 0;
  }
}

.page_common_wrap {
  width: 100%;
  overflow: hidden;
}
.page_common_wrap .page_common_faq {
  position: relative;
}
.page_common_wrap .page_common_faq:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  height: 50%;
  background-image: url("../img/common/foot_bg.png");
  background-repeat: repeat;
  background-color: #F7F7F7;
  z-index: -1;
}

h2.common_h2,
h1.page_h1 {
  font-size: min(32rem, 32px);
  font-family: "Satoshi-Regular";
  position: relative;
  line-height: 2;
  margin: 0 0 3rem 0;
}
@media (min-width: 920px) {
  h2.common_h2,
  h1.page_h1 {
    font-size: min(4.6852122987vw, 64px);
    line-height: 1.7;
    margin: 0 0 4rem 0;
  }
}
h2.common_h2:before,
h1.page_h1:before {
  content: "";
  width: 15px;
  height: 2px;
  background: #95262A;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (min-width: 920px) {
  h2.common_h2:before,
  h1.page_h1:before {
    width: 20px;
    height: 3px;
  }
}
h2.common_h2:after,
h1.page_h1:after {
  content: "";
  width: 40px;
  height: 2px;
  background: #005D97;
  position: absolute;
  left: 15px;
  bottom: 0;
}
@media (min-width: 920px) {
  h2.common_h2:after,
  h1.page_h1:after {
    width: 60px;
    height: 3px;
    left: 20px;
  }
}

.hex-button {
  position: relative;
  display: inline-block;
  width: 250px;
  height: 71px;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
}
.hex-button .hex-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
  height: 71px;
}
.hex-button .hex-shape .hex-fill {
  fill: #005D97;
  transition: 0.5s ease;
}
.hex-button .hex-shape .hex-stroke {
  fill: none;
  stroke: #005D97;
  stroke-width: 2;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.hex-button .label {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  line-height: 71px;
  font-size: 16px;
  color: #fff;
  transition: color 0.5s ease;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Satoshi-Regular";
  font-weight: bold;
  font-size: min(16rem, 16px);
}
@media (min-width: 920px) {
  .hex-button .label {
    font-size: min(18rem, 18px);
  }
}
.hex-button .label .icon {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
}
.hex-button .label .icon svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease;
}
.hex-button .label .icon .icon-white {
  opacity: 1;
}
.hex-button .label .icon .icon-blue {
  opacity: 0;
}
.hex-button:hover .hex-shape .hex-fill {
  opacity: 1;
  fill: white;
}
.hex-button:hover .hex-shape .hex-stroke {
  opacity: 1;
}
.hex-button:hover .label {
  color: #005D97;
}
.hex-button:hover .label .icon .icon-white {
  opacity: 0;
}
.hex-button:hover .label .icon .icon-blue {
  opacity: 1;
}
@media (max-width: 920px) {
  .hex-button {
    width: 226px;
    height: 64px;
  }
  .hex-button .hex-shape {
    width: 226px;
    height: 64px;
  }
  .hex-button .label {
    line-height: 64px;
  }
  .hex-button .label .icon {
    width: 20px;
    height: 20px;
  }
  .hex-button .hex-button.is-hover .hex-shape-sp.hex-default {
    display: none !important;
  }
  .hex-button .hex-button.is-hover .hex-shape-sp.hex-hover {
    display: block !important;
  }
}

.hex-button__border {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  cursor: pointer;
}
.hex-button__border .hex-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hex-button__border .hex-svg svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.hex-button__border .hex-svg .hex-default {
  display: block;
}
.hex-button__border .hex-svg .hex-hover {
  display: none;
}
.hex-button__border .label .icon {
  display: inline-flex;
  margin-left: 8px;
}
.hex-button__border .label .icon .icon-white {
  display: inline;
}
.hex-button__border .label .icon .icon-blue {
  display: none;
}
.hex-button__border:hover .hex-svg .hex-default {
  display: none !important;
}
.hex-button__border:hover .hex-svg .hex-hover {
  display: block !important;
}
.hex-button__border:hover .label {
  color: #005D97;
}
.hex-button__border:hover .label .icon .icon-white {
  display: none;
}
.hex-button__border:hover .label .icon .icon-blue {
  display: inline;
}
@media screen and (max-width: 768px) {
  .hex-button__border .hex-shape-pc {
    display: none !important;
  }
  .hex-button__border .hex-shape-sp.hex-default {
    display: block !important;
  }
  .hex-button__border .hex-shape-sp.hex-hover {
    display: none !important;
  }
  .hex-button__border .hex-button:hover .hex-shape-sp.hex-default {
    display: none !important;
  }
  .hex-button__border .hex-button:hover .hex-shape-sp.hex-hover {
    display: block !important;
  }
}

.hex-shape-sp.hex-default-opacity path {
  fill: none !important;
}

.hex-button__wrap {
  display: flex;
  justify-content: center;
}
@media (min-width: 920px) {
  .hex-button__wrap {
    justify-content: flex-end;
  }
}

.hex-button__wrap_center {
  display: flex;
  justify-content: center;
}

.common_cta {
  background: #ffffff;
  display: flex;
  padding: 1rem 0;
  width: calc(100% + 40px);
  transform: translateX(-20px);
  flex-direction: column;
}
@media (min-width: 920px) {
  .common_cta {
    padding: 3rem 0;
    width: 100%;
    transform: translateX(0);
    flex-direction: row;
  }
}
.common_cta .common_cta__block {
  width: 100%;
  padding: 2rem 20px 3rem 20px;
  position: relative;
}
@media (min-width: 920px) {
  .common_cta .common_cta__block {
    width: 50%;
    padding: 0 3rem;
  }
}
.common_cta .common_cta__block:first-child:after {
  content: "";
  position: absolute;
  width: calc(100% - 40px);
  height: 1px;
  background: #D9D9D9;
  top: auto;
  bottom: 0;
  transform: translateY(0);
  right: auto;
  left: 20px;
}
@media (min-width: 920px) {
  .common_cta .common_cta__block:first-child:after {
    width: 1px;
    height: 90%;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    left: auto;
  }
}
.common_cta .common_cta__block h3.common_cta__h3 {
  font-size: min(32rem, 32px);
  font-family: "Satoshi-Regular";
  position: relative;
  line-height: 2;
  margin: 0 0 2rem 0;
}
@media (min-width: 920px) {
  .common_cta .common_cta__block h3.common_cta__h3 {
    font-size: min(3.513909224vw, 48px);
  }
}
.common_cta .common_cta__block h3.common_cta__h3:before {
  content: "";
  width: 20px;
  height: 3px;
  background: #95262A;
  position: absolute;
  left: 0;
  bottom: 0;
}
.common_cta .common_cta__block h3.common_cta__h3:after {
  content: "";
  width: 60px;
  height: 3px;
  background: #005D97;
  position: absolute;
  left: 20px;
  bottom: 0;
}
.common_cta .common_cta__block p {
  margin: 0 0 2.5rem 0;
}

h3.home_h3 {
  font-family: "Shippori Antique", sans-serif;
  font-weight: normal;
  line-height: 1.5;
  margin: 0 0 1.5rem 0;
  font-size: min(20rem, 20px);
}
@media (min-width: 920px) {
  h3.home_h3 {
    font-size: min(1.756954612vw, 24px);
    margin: 0 0 1.5rem 0;
  }
}

h3.page_h3 {
  font-family: "Shippori Antique", sans-serif;
  font-weight: normal;
  line-height: 1.5;
  font-size: min(18rem, 18px);
}
@media (min-width: 920px) {
  h3.page_h3 {
    font-size: min(1.4641288433vw, 20px);
  }
}

.page_main_area {
  position: relative;
  padding: 6rem 0 0 0;
}
@media (min-width: 920px) {
  .page_main_area {
    padding: 10rem 0 0 0;
  }
}
.page_main_area .page_main__bg {
  position: absolute;
  bottom: 5rem;
  left: 0;
  width: 90%;
  height: auto;
  z-index: -1;
}
@media (min-width: 920px) {
  .page_main_area .page_main__bg {
    bottom: -12rem;
    width: 58%;
  }
}
.page_main_area .page_main_area__flex {
  display: flex;
  justify-content: space-between;
  padding: 0 0 2rem 0;
  flex-direction: column;
}
@media (min-width: 920px) {
  .page_main_area .page_main_area__flex {
    flex-direction: row;
    padding: 0 0 5rem 0;
  }
}
.page_main_area .page_main_area__flex .page_main_area__flex_left {
  width: 100%;
}
@media (min-width: 920px) {
  .page_main_area .page_main_area__flex .page_main_area__flex_left {
    width: 49%;
  }
}
.page_main_area .page_main_area__flex .page_main_area__flex_right {
  width: 100%;
}
@media (min-width: 920px) {
  .page_main_area .page_main_area__flex .page_main_area__flex_right {
    width: 49%;
  }
}

.breadcrumbs {
  padding: 1.5rem 0 0 0;
}
@media (min-width: 920px) {
  .breadcrumbs {
    padding: 1.5rem 0 1.5rem 0;
  }
}
.breadcrumbs .current-item {
  color: #9D9D9D;
}

h2.page_h2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 0 2rem 0;
  flex-direction: column;
}
@media (min-width: 920px) {
  h2.page_h2 {
    margin: 0 0 5rem 0;
    flex-direction: row;
    align-items: center;
  }
}
h2.page_h2 .en {
  font-family: "Shippori Antique", sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #002D6A;
  padding: 0 2rem 0 0;
  font-size: min(30rem, 30px);
}
@media (min-width: 920px) {
  h2.page_h2 .en {
    font-size: min(3.513909224vw, 48px);
  }
}
h2.page_h2 .en_sathoshi {
  font-weight: 700;
  font-family: "Satoshi-Regular";
}
h2.page_h2 .border {
  height: 1px;
  background: #D9D9D9;
  flex: 1;
  min-width: 0;
  display: none;
}
@media (min-width: 920px) {
  h2.page_h2 .border {
    display: block;
  }
}
h2.page_h2 .ja {
  font-weight: 300;
  padding: 0 0 0 1rem;
  position: relative;
  margin: 0.5rem 0 0 0;
  font-size: min(15rem, 15px);
}
@media (min-width: 920px) {
  h2.page_h2 .ja {
    font-size: min(1.756954612vw, 24px);
    padding: 0 0 0 3rem;
  }
}
h2.page_h2 .ja:before {
  content: "";
  background: url("../img/common/page_h2_ja.svg") center center no-repeat;
  width: 11px;
  height: 9px;
  background-size: cover;
  position: absolute;
  top: 0.2rem;
  left: 0;
}
@media (min-width: 920px) {
  h2.page_h2 .ja:before {
    width: 13px;
    height: 12px;
    top: 0.5rem;
    left: 1.8rem;
  }
}

h4.page_h4 {
  font-family: "Shippori Antique", sans-serif;
  font-weight: normal;
  line-height: 1;
  margin: 0 0 1rem 0;
  position: relative;
  padding: 0 0 0 0.7rem;
  font-size: min(18rem, 18px);
}
@media (min-width: 920px) {
  h4.page_h4 {
    font-size: min(1.756954612vw, 24px);
    margin: 0 0 1rem 0;
  }
}
h4.page_h4:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 2px;
  background: #005D97;
}
h4.page_h4:after {
  content: "";
  position: absolute;
  top: 35%;
  left: 0;
  height: 65%;
  width: 2px;
  background: #95262A;
}

.page_section {
  padding: 4rem 0;
}
@media (min-width: 920px) {
  .page_section {
    padding: 7rem 0;
  }
}
.page_section__white {
  background: #ffffff;
}
.page_section__bottom {
  margin: 0 0 4rem 0;
}
@media (min-width: 920px) {
  .page_section__bottom {
    margin: 0 0 6rem 0;
  }
}

.greeting {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 920px) {
  .greeting {
    flex-direction: row;
  }
}
.greeting__txt {
  width: 100%;
  order: 2;
}
@media (min-width: 920px) {
  .greeting__txt {
    width: 45%;
    order: 1;
  }
}
.greeting__txt .president_name {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin: 2rem 0;
  font-weight: 600;
  gap: 10px;
  line-height: 1;
}
.greeting__txt .president_name .name {
  font-size: min(18rem, 18px);
}
@media (min-width: 920px) {
  .greeting__txt .president_name .name {
    font-size: min(1.756954612vw, 24px);
  }
}
.greeting img {
  max-width: 340px;
  width: 100%;
  order: 1;
  margin: 0 auto 1.5rem auto;
  display: block;
}
@media (min-width: 920px) {
  .greeting img {
    order: 2;
    width: 52%;
    margin: 0;
    max-width: 100%;
  }
}

.profile_flex {
  display: flex;
  gap: 2.5rem;
  margin: 1rem 0 0 0;
  flex-direction: column;
}
@media (min-width: 920px) {
  .profile_flex {
    margin: 5rem 0 0 0;
    flex-direction: row;
  }
}
.profile_flex .profile_flex__ttl {
  width: 160px;
}
.profile_flex .profile_flex__txt {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 920px) {
  .profile_flex .profile_flex__txt {
    gap: 1.5rem;
  }
}
.profile_flex .profile_flex__txt .profile_flex__txt_block {
  background: rgba(0, 45, 106, 0.1);
  padding: 1.5rem 1.5rem;
}
.profile_flex .profile_flex__txt ul.history_list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 920px) {
  .profile_flex .profile_flex__txt ul.history_list {
    gap: 1rem;
  }
}
.profile_flex .profile_flex__txt ul.history_list:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: calc(100% - 20px);
  left: 10px;
  width: 1px;
  background: #002D6A;
}
@media (min-width: 920px) {
  .profile_flex .profile_flex__txt ul.history_list:before {
    left: 12px;
    height: calc(100% - 24px);
  }
}
.profile_flex .profile_flex__txt ul.history_list li {
  padding: 0 0 0 2rem;
  position: relative;
}
@media (min-width: 920px) {
  .profile_flex .profile_flex__txt ul.history_list li {
    padding: 0 0 0 2.5rem;
  }
}
.profile_flex .profile_flex__txt ul.history_list li .date {
  font-weight: 600;
  margin: 0 0.5rem 0 0;
}
.profile_flex .profile_flex__txt ul.history_list li:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 20px;
  height: 20px;
  background: url(../img/about/keireki_icon.svg) center center no-repeat;
  background-size: 100%;
}
@media (min-width: 920px) {
  .profile_flex .profile_flex__txt ul.history_list li:before {
    width: 24px;
    height: 24px;
  }
}

#strength {
  background: #ffffff;
  padding: 3rem 0;
}
@media (min-width: 920px) {
  #strength {
    padding: 5rem 0;
  }
}

.strength_flex {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 920px) {
  .strength_flex {
    flex-direction: row;
    gap: 0;
  }
}
.strength_flex .strength_block {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  align-items: center;
}
@media (min-width: 920px) {
  .strength_flex .strength_block {
    width: 30%;
  }
}
.strength_flex .strength_block img {
  width: 100%;
  max-width: 270px;
}
.strength_flex .strength_block p {
  text-align: left;
}

#overview {
  padding: 4rem 0 4rem 0;
}
@media (min-width: 920px) {
  #overview {
    padding: 8rem 0 8rem 0;
  }
}
#overview .map {
  position: relative;
  width: 100%;
  padding-top: 70%;
  /* 16:9のアスペクト比 */
  height: 0;
}
@media (min-width: 920px) {
  #overview .map {
    padding-top: 40%;
  }
}
#overview .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.overview_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  text-align: left;
  margin: 0 0 1.5rem 0;
}
@media (min-width: 920px) {
  .overview_table {
    border-spacing: 10px;
    margin: 0 0 3rem 0;
  }
}
.overview_table th {
  border-radius: 4px 4px 0 0;
  width: 100%;
  background: #ffffff;
  padding: 1rem 1rem 0 1rem;
  display: block;
}
@media (min-width: 920px) {
  .overview_table th {
    padding: 1.8rem;
    border-radius: 8px;
    width: 30%;
    display: table-cell;
  }
}
.overview_table th h4 {
  margin: 0;
}
.overview_table td {
  border-radius: 0 0 4px 4px;
  width: 100%;
  background: #ffffff;
  padding: 1rem 1rem 1rem 1rem;
  display: block;
}
@media (min-width: 920px) {
  .overview_table td {
    border-radius: 8px;
    width: 70%;
    padding: 1.8rem;
    display: table-cell;
  }
}

.service_flex {
  margin: 2rem 0 0 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 920px) {
  .service_flex {
    flex-direction: row;
    gap: 2rem;
    margin: 3rem 0 0 0;
  }
}
.service_flex__block {
  width: 100%;
  background: #ffffff;
  padding: 1.5rem 1rem;
}
@media (min-width: 920px) {
  .service_flex__block {
    width: calc(50% - 1rem);
    padding: 2rem 2rem;
  }
}
.service_flex__block_gray {
  background: #F7F7F7;
}

a.page_link_block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  width: 100%;
  padding: 1.5rem 1.5rem;
  transition: 0.6s;
  flex-direction: column;
}
@media (min-width: 920px) {
  a.page_link_block {
    align-items: center;
    flex-direction: row;
    padding: 3rem 3rem;
  }
}
a.page_link_block .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  margin: 0 0 1rem 0;
}
@media (min-width: 920px) {
  a.page_link_block .inner {
    align-items: center;
    flex-direction: row;
    margin: 0;
  }
}
a.page_link_block .en {
  font-family: "Satoshi-Regular";
  font-weight: 700;
  margin: 0 10px 0 0;
  font-size: min(24rem, 24px);
}
@media (min-width: 920px) {
  a.page_link_block .en {
    font-size: min(3.513909224vw, 48px);
  }
}
a.page_link_block .ja {
  font-weight: 300;
  font-size: min(16rem, 16px);
}
@media (min-width: 920px) {
  a.page_link_block .ja {
    font-size: min(1.4641288433vw, 20px);
  }
}
a.page_link_block svg {
  width: 30px;
  height: 30px;
  transition: 0.6s;
}
@media (min-width: 920px) {
  a.page_link_block svg {
    width: 40px;
    height: 40px;
  }
}
a.page_link_block:hover {
  background: #002D6A;
  color: #ffffff;
}
a.page_link_block:hover svg {
  transform: translateX(10px);
}
a.page_link_block:hover svg path {
  transition: 0.6s;
  fill: #fff !important;
}

.caution_txt {
  color: #9D9D9D;
  font-weight: 300;
  display: block;
  font-size: min(10rem, 10px);
}
@media (min-width: 920px) {
  .caution_txt {
    font-size: min(0.878477306vw, 12px);
  }
}

.math_area {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 1rem 0 0.5rem 0;
}
.math_area .math_item__txt {
  display: block;
  font-weight: 600;
  line-height: 1;
  font-size: min(10rem, 10px);
}
@media (min-width: 920px) {
  .math_area .math_item__txt {
    font-size: min(0.878477306vw, 12px);
  }
}
.math_area .math_item__price {
  font-weight: 300;
}
.math_area .math_item__price .yen {
  font-size: min(10rem, 10px);
}
@media (min-width: 920px) {
  .math_area .math_item__price .yen {
    font-size: min(0.878477306vw, 12px);
  }
}

.num_flex {
  margin: 2rem 0 0 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 920px) {
  .num_flex {
    flex-direction: row;
    gap: 2rem;
    margin: 3rem 0 0 0;
  }
}
.num_flex__block {
  width: 100%;
}
@media (min-width: 920px) {
  .num_flex__block {
    width: calc(50% - 1rem);
  }
}
.num_flex__block .num_flex__block_ttl {
  padding: 1rem;
  background: rgba(0, 45, 106, 0.1);
  border-radius: 8px 8px 0px 0px;
}
.num_flex__block .num_flex__block_ttl h4 {
  margin: 0;
}
.num_flex__block img {
  width: 100%;
}

a.page_link_block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  width: 100%;
  padding: 1.5rem 1.5rem;
  transition: 0.6s;
  flex-direction: column;
}
@media (min-width: 920px) {
  a.page_link_block {
    align-items: center;
    flex-direction: row;
    padding: 3rem 3rem;
  }
}
a.page_link_block .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  margin: 0 0 1rem 0;
}
@media (min-width: 920px) {
  a.page_link_block .inner {
    align-items: center;
    flex-direction: row;
    margin: 0;
  }
}
a.page_link_block .en {
  font-family: "Satoshi-Regular";
  font-weight: 700;
  margin: 0 10px 0 0;
  font-size: min(24rem, 24px);
}
@media (min-width: 920px) {
  a.page_link_block .en {
    font-size: min(3.513909224vw, 48px);
  }
}
a.page_link_block .ja {
  font-weight: 300;
  font-size: min(16rem, 16px);
}
@media (min-width: 920px) {
  a.page_link_block .ja {
    font-size: min(1.4641288433vw, 20px);
  }
}
a.page_link_block svg {
  width: 30px;
  height: 30px;
  transition: 0.6s;
}
@media (min-width: 920px) {
  a.page_link_block svg {
    width: 40px;
    height: 40px;
  }
}
a.page_link_block:hover {
  background: #002D6A;
  color: #ffffff;
}
a.page_link_block:hover svg {
  transform: translateX(10px);
}
a.page_link_block:hover svg path {
  transition: 0.6s;
  fill: #fff !important;
}

.faq_area {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq_area button.js-accordion {
  background: rgba(0, 45, 106, 0.1);
  border: transparent;
  color: #002D6A;
  width: 100%;
  text-align: left;
  border-radius: 4px;
  padding: 1rem;
  transition: 0.4s;
}
@media (min-width: 920px) {
  .faq_area button.js-accordion {
    border-radius: 8px;
  }
}
.faq_area button.js-accordion.is-accordion--open {
  border-radius: 4px 4px 0 0;
}
@media (min-width: 920px) {
  .faq_area button.js-accordion.is-accordion--open {
    border-radius: 8px 8px 0 0;
  }
}
.faq_area button.js-accordion h4 {
  margin: 0;
  display: flex;
  line-height: 1.5;
  width: 90%;
}
.faq_area button.js-accordion h4 .q {
  white-space: nowrap;
  margin: 0 10px 0 0;
}
.faq_area .js-accordion--close {
  display: none;
}
.faq_area .accordion-box {
  display: none;
  background: #F7F7F7;
  padding: 1rem 1rem;
}
@media (min-width: 920px) {
  .faq_area .accordion-box {
    padding: 2rem 2rem;
  }
}
.faq_area .accordion-box .accordion-box__inner {
  display: flex;
  gap: 10px;
}
.faq_area .accordion-box .accordion-box__inner .a {
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  line-height: 1.3;
  font-size: min(20rem, 20px);
}
@media (min-width: 920px) {
  .faq_area .accordion-box .accordion-box__inner .a {
    font-size: min(1.756954612vw, 24px);
  }
}
.faq_area .js-accordion {
  position: relative;
  padding: 0 35px 0 10px;
}
.faq_area .js-accordion::before {
  content: "";
  width: 2px;
  height: 16px;
  background: #002D6A;
  position: absolute;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.6s ease;
}
.faq_area .js-accordion::after {
  content: "";
  width: 16px;
  height: 2px;
  background: #002D6A;
  position: absolute;
  right: 11px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.6s ease;
}
.faq_area .js-accordion.is-accordion--open::before {
  transform: rotate(90deg);
}
.faq_area .js-accordion.is-accordion--open::after {
  transform: rotate(-180deg);
}
.faq_area .js-accordion.is-accordion--open + .accordion-box {
  height: auto;
  opacity: 1;
}

/*# sourceMappingURL=base.css.map */
