/* Josh's Custom CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

#root, #__next {
  isolation: isolate;
}

html {
  box-sizing: border-box;
}

body {
  font-family: "Figtree", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

* {
  padding: 0;
}

ol, ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.header {
  width: 100%;
  height: 100px;
  padding: 0 min(60px, 3.4090909091%);
  position: fixed;
  top: 0;
  background: #ffffff;
  z-index: 9999;
}
.header.active {
  width: calc(100% - var(--scrollbar-width));
}
.header_inner {
  margin: 0 auto;
  width: min(100%, 1760px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
}
.header_ttl {
  width: 298px;
}
.header_list {
  display: flex;
  gap: 24px;
  align-items: center;
}
.header_item01 {
  display: flex;
  gap: 32px;
  background: #E1E6EB;
  padding: 10px 24px;
  border-radius: 30px;
}
.header_item01_shorui {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}
.header_item01_shorui::before {
  content: "";
  display: inline-block;
  background: url("/assets/img/common/Icons_download_black.svg") no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
}
.header_item01_shorui::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: calc(100% + 16px);
  transform: translate(0, -50%);
  background: #000000;
  width: 2px;
  height: 20px;
}
.header_item01_login {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}
.header_item01_login::before {
  content: "";
  display: inline-block;
  background: url("/assets/img/common/Icons_login_black.svg") no-repeat;
  width: 20px;
  height: 20px;
}
.header_item02 a {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 10px 44px 10px 16px;
  background: #004896;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
  border-radius: 30px;
}
.header_item02 a::before {
  content: "";
  display: inline-block;
  background: url("/assets/img/common/Icons_mail_white.svg") no-repeat;
  width: 20px;
  height: 20px;
}
.header_item03 {
  display: block;
  position: relative;
  margin: 0 0 0 8px;
  width: 50px;
  flex-shrink: 0;
  text-align: center;
  z-index: 999999999;
  cursor: pointer;
}
.header_item03_bar:nth-of-type(1) {
  display: block;
  width: 100%;
  height: 2px;
  background: #004896;
  animation: header-menu-bar01-close 0.75s forwards;
}
.header_item03_bar:nth-of-type(2) {
  display: block;
  margin: 6px 0;
  width: 100%;
  height: 2px;
  background: #004896;
  transition: all 0.25s 0.25s;
  opacity: 1;
}
.header_item03_bar:nth-of-type(3) {
  display: block;
  width: 100%;
  height: 2px;
  background: #004896;
  animation: header-menu-bar03-close 0.75s forwards;
}
.header_item03_text {
  margin: 9px 0 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #004896;
}
.header_item03.active .header_item03_bar:nth-of-type(1) {
  animation: header-menu-bar01 0.75s forwards;
  background: #ffffff;
}
.header_item03.active .header_item03_bar:nth-of-type(2) {
  opacity: 0;
  background: #ffffff;
}
.header_item03.active .header_item03_bar:nth-of-type(3) {
  animation: header-menu-bar03 0.75s forwards;
  background: #ffffff;
}
.header_item03.active .header_item03_text {
  margin: 16px 0 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
}
@media (min-width: 768px) {
  .header_item01 a {
    transition: 0.2s;
  }
  .header_item01 a:hover {
    color: #004896;
  }
  .header .header_item01_shorui:hover::before {
    background-image: url("/assets/img/common/Icons_download_blue.svg");
  }
  .header .header_item01_login:hover::before {
    background-image: url("/assets/img/common/Icons_login_blue.svg");
  }
  .header_item02 a {
    transition: 0.2s;
  }
  .header_item02 a:hover {
    background: #003671;
  }
  .header_item03 {
    transition: 0.2s;
  }
  .header_item03:hover {
    opacity: 0.5;
  }
}
@media (max-width: 1024px) {
  .header {
    width: 100%;
    padding: 0 max(30px, 3.90625%);
  }
  .header_list {
    gap: 32px;
  }
  .header_item01 {
    display: none;
  }
  .header_item02 a {
    flex-direction: column;
    gap: 9px;
    padding: 0;
    background: transparent;
    color: #004896;
    border-radius: 0;
  }
  .header_item02 a::before {
    display: block;
    background: url("/assets/img/common/Icons_mail_blue.svg") no-repeat;
    background-size: cover;
    width: 27.5px;
    height: 22px;
  }
  .header_item02 a:hover {
    background: transparent;
    opacity: 0.5;
  }
}
@media (max-width: 767px) {
  .header {
    width: 100%;
    height: 17.0666666667vw;
    padding: 0 6.4vw;
  }
  .header_inner {
    padding: 4.8vw 0;
  }
  .header_ttl {
    width: 52vw;
  }
  .header_list {
    gap: 3.7333333333vw;
  }
  .header_item02 a {
    gap: 1.6vw;
    font-size: 2.4vw;
    font-style: normal;
    font-weight: 500;
  }
  .header_item02 a::before {
    width: 4.2666666667vw;
    height: 3.4666666667vw;
  }
  .header_item03 {
    margin: 0;
    width: 9.6vw;
  }
  .header_item03_bar:nth-of-type(1) {
    animation: header-menu-bar01-close-sp 0.75s forwards;
  }
  .header_item03_bar:nth-of-type(2) {
    margin: 3px 0;
  }
  .header_item03_bar:nth-of-type(3) {
    animation: header-menu-bar03-close-sp 0.75s forwards;
  }
  .header_item03_text {
    margin: 6px 0 0;
    gap: 1.6vw;
    font-size: 2.4vw;
    font-style: normal;
    font-weight: 500;
  }
  .header_item03.active .header_item03_bar:nth-of-type(1) {
    animation: header-menu-bar01-sp 0.75s forwards;
    background: #ffffff;
  }
  .header_item03.active .header_item03_bar:nth-of-type(2) {
    opacity: 0;
    background: #ffffff;
  }
  .header_item03.active .header_item03_bar:nth-of-type(3) {
    animation: header-menu-bar03-sp 0.75s forwards;
    background: #ffffff;
  }
  .header_item03.active .header_item03_text {
    color: #ffffff;
    font-size: 2.4vw;
  }
}

@keyframes header-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(8px) rotate(0);
  }
  100% {
    transform: translateY(8px) rotate(30deg);
  }
}
@keyframes header-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-8px) rotate(0);
  }
  100% {
    transform: translateY(-8px) rotate(-30deg);
  }
}
@keyframes header-menu-bar01-close {
  0% {
    transform: translateY(8px) rotate(30deg);
  }
  50% {
    transform: translateY(8px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes header-menu-bar03-close {
  0% {
    transform: translateY(-8px) rotate(-30deg);
  }
  50% {
    transform: translateY(-8px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes header-menu-bar01-sp {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(5px) rotate(0);
  }
  100% {
    transform: translateY(5px) rotate(30deg);
  }
}
@keyframes header-menu-bar03-sp {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-5px) rotate(0);
  }
  100% {
    transform: translateY(-5px) rotate(-30deg);
  }
}
@keyframes header-menu-bar01-close-sp {
  0% {
    transform: translateY(5px) rotate(30deg);
  }
  50% {
    transform: translateY(5px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes header-menu-bar03-close-sp {
  0% {
    transform: translateY(-5px) rotate(-30deg);
  }
  50% {
    transform: translateY(-5px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.contents_sec_heading {
  font-size: 32px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #000000;
  word-break: keep-all;
}
@media (max-width: 767px) {
  .contents_sec_heading {
    font-size: 6.4vw;
  }
}
.contents_sec_ttl {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #000000;
  word-break: keep-all;
}
@media (max-width: 767px) {
  .contents_sec_ttl {
    font-size: 6.4vw;
  }
}
.contents_sec_subttl {
  margin: 8px 0 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
  color: #004896;
}
@media (max-width: 767px) {
  .contents_sec_subttl {
    font-size: 3.7333333333vw;
  }
}
@media (max-width: 767px) {
  .contents_sec_subttl {
    margin-top: 4px;
  }
}

.contents_sec_box_heading, .contents_philosophy_box_ttl, .contents_sports_heading, .contents_sports_box_heading {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #000000;
  word-wrap: break-word;
}
@media (max-width: 767px) {
  .contents_sec_box_heading, .contents_philosophy_box_ttl, .contents_sports_heading, .contents_sports_box_heading {
    font-size: 5.3333333333vw;
  }
}

.contents_box {
  position: relative;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 48px min(120px, 8.3333333333%);
}
.contents_sec {
  position: relative;
  padding: 64px 0;
}
.contents_sec:nth-of-type(1) {
  padding: 24px 0 64px;
}
@media (max-width: 1024px) {
  .contents_box {
    gap: 30px;
    padding: 48px max(30px, 2.9296875%);
  }
  .contents_sec:nth-of-type(1) {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .contents_box {
    padding-left: 6.4vw;
    padding-right: 6.4vw;
  }
  .contents_sec {
    padding-top: 8.5333333333vw;
    padding-bottom: 8.5333333333vw;
  }
  .contents_sec:nth-of-type(1) {
    padding-bottom: 8.5333333333vw;
  }
}

.header_nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: var(--scrollbar-width);
  width: 100%;
  height: 100%;
  background: #004896;
  z-index: 99999;
}
.header_nav.active {
  display: block;
  overflow-y: scroll;
}
.header_nav_inner {
  width: 100%;
}
.header_nav_wrap {
  display: flex;
  min-height: 100dvh;
  height: auto;
}
.header_nav_wrap_left {
  height: 100%;
  width: min(810px, 56.25%);
  padding: 30px min(60px, 3.4090909091%);
}
.header_nav_wrap_left_inner {
  display: flex;
  justify-content: space-between;
  gap: 64px;
}
.header_nav_wrap_left_logo img {
  width: 298px;
}
.header_nav_wrap_left_left {
  grid-row-start: 2;
  width: 100%;
  padding: 0 0 0 min(60px, 16.6666666667%);
  box-sizing: content-box;
}
.header_nav_wrap_left_right {
  grid-row-start: 2;
  width: 100%;
}
.header_nav_wrap_left_ttl {
  margin: 24px 0 0 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: #ffffff;
}
.header_nav_wrap_left_text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: #ffffff;
}
.header_nav_wrap_left_list {
  margin: 60px 0 0 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}
.header_nav_wrap_left_item {
  display: inline-block;
  padding: 8px 16px;
  background: #ffffff;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: #004896;
}
.header_nav_wrap_right {
  width: 43.75%;
}
.header_nav_list_ttl_wrap {
  color: #ffffff;
  background: url(/assets/img/common/arrowbg.svg) right bottom no-repeat;
  padding-bottom: 16px;
  margin-bottom: 20px;
  display: block;
}
.header_nav_list_subttl {
  margin: 40px 0 0 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}
.header_nav_list_ttl {
  position: relative;
  margin: 8px 0 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
.header_nav_list_text {
  display: block;
  margin: 16px 0 0 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #ffffff;
}
.header_nav_contact {
  position: relative;
  background: url("/assets/img/contact_bg.webp") no-repeat;
  background-size: cover;
  background-position: top center;
  height: 100%;
  padding: 0 0 30px;
}
.header_nav_contact_inner {
  padding: 100px 120px 16px min(48px, 7.9207920792%);
}
.header_nav_contact_ttl {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #ffffff;
  word-break: keep-all;
}
@media (max-width: 767px) {
  .header_nav_contact_ttl {
    font-size: 6.4vw;
  }
}
.header_nav_contact_subttl {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
  color: #004896;
}
@media (max-width: 767px) {
  .header_nav_contact_subttl {
    font-size: 3.7333333333vw;
  }
}
.header_nav_contact_subttl {
  color: #ffffff;
}
.header_nav_contact_text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0;
  color: #ffffff;
}
.header_nav_contact_list {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  flex-wrap: wrap;
  gap: 2px;
  padding: min(60px, 6.5789473684%) 0 0 0;
}
.header_nav_contact_item {
  padding: min(24px, 15.0943396226%) min(24px, 6%);
  background: rgba(255, 255, 255, 0.9);
}
.header_nav_contact_item_text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  color: #004896;
}
.header_nav_contact_item_subtext {
  font-size: 12px;
  margin-top: 8px;
}
.header_nav_contact_item_tel {
  display: block;
  padding: min(24px, 11.320754717%) 0 0 0;
  font-size: clamp(20px, 2.7777777778vw, 40px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: #000000;
  cursor: default;
}
.header_nav_contact_item_tel::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url("/assets/img/common/Icons_phone_blue.svg") no-repeat;
  background-size: cover;
  margin: 0 6px 0 0;
  width: 1em;
  height: 1em;
}
.header_nav_contact_item_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  width: 300px;
  margin: 24px auto 0;
  padding: 14px 16px 14px 100px;
  background: #004896;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
  border-radius: 30px;
}
.header_nav_contact_item_btn:hover {
  opacity: 0.8;
}
.header_nav_contact_item_btn::after {
  content: "";
  display: inline-block;
  background: url("/assets/img/common/Icons_mail_white.svg") no-repeat;
  background-size: cover;
  width: 32px;
  height: 32px;
}
@media (min-width: 768px) {
  .header_nav_list_ttl_wrap {
    transition: 0.2s;
  }
  .header_nav_list_ttl_wrap:hover {
    color: #C2CAD2;
  }
  .header_nav_list_text {
    transition: 0.2s;
  }
  .header_nav_list_text:hover {
    color: #C2CAD2;
  }
}
@media (max-width: 1024px) {
  .header_nav_wrap {
    display: block;
  }
  .header_nav_wrap_left {
    gap: 30px;
    margin: 0 auto;
    padding: 30px max(30px, 3.90625%) 30px;
    width: auto;
  }
  .header_nav_wrap_left_inner {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .header_nav_wrap_left_left {
    padding-left: 0;
  }
  .header_nav_wrap_right {
    width: 100%;
  }
  .header_nav_list_ttl_wrap {
    max-width: 300px;
    margin-bottom: 0;
  }
  .header_nav_contact {
    width: 100%;
    height: 100%;
  }
  .header_nav_contact_inner {
    padding: 60px max(30px, 3.90625%);
  }
  .header_nav_contact_ttl, .header_nav_contact_subttl {
    text-align: center;
  }
  .header_nav_contact_list {
    flex-direction: row;
    margin: 40px 0 0;
    padding: 0;
  }
  .header_nav_contact_item {
    width: calc(50% - 2px);
    max-width: unset;
  }
  .header_nav_contact_item:nth-of-type(3) {
    width: calc(100% - 2px);
  }
  .header_nav_contact_item:nth-of-type(3) br {
    display: none;
  }
}
@media (max-width: 767px) {
  .header_nav_wrap_left {
    height: 100%;
    width: 100vw;
    margin: 0;
    padding: 4.8vw 6.4vw;
  }
  .header_nav_wrap_left_inner {
    gap: 7.2vw;
  }
  .header_nav_wrap_left_logo img {
    width: 52vw;
  }
  .header_nav_wrap_left_left {
    padding: 0;
  }
  .header_nav_wrap_left_list {
    margin: 60px 0 0 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .header_nav_wrap_left_item {
    display: inline-block;
    padding: 8px 16px;
    background: #ffffff;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    color: #004896;
  }
  .header_nav_wrap_right {
    width: 100%;
  }
  .header_nav_list_ttl_wrap {
    color: #ffffff;
  }
  .header_nav_list_subttl {
    margin: 6.4vw 0 0 0;
    font-size: 2.6666666667vw;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
  }
  .header_nav_list_ttl {
    margin: 2.1333333333vw 0 0;
    font-size: 3.7333333333vw;
    font-weight: 700;
    line-height: 1;
  }
  .header_nav_list_text {
    margin: 0;
    padding: 4.2666666667vw 0 0 0;
    font-size: 3.2vw;
    font-weight: 500;
    line-height: 1.4;
  }
  .header_nav_contact {
    padding: 0 0;
  }
  .header_nav_contact_inner {
    padding: 6.4vw 6.4vw 14.4vw;
  }
  .header_nav_contact_text {
    display: none;
  }
  .header_nav_contact_list {
    display: block;
    margin: 0;
    padding: 6.4vw 0 0;
  }
  .header_nav_contact_item {
    width: 100%;
    margin: 0.2666666667vw 0 0;
    padding: 4.2666666667vw;
  }
  .header_nav_contact_item:nth-of-type(1) {
    margin: 0;
  }
  .header_nav_contact_item:nth-of-type(3) {
    width: 100%;
  }
  .header_nav_contact_item_text {
    font-size: 3.7333333333vw;
    font-weight: 700;
    line-height: 1;
  }
  .header_nav_contact_item_subtext {
    display: none;
  }
  .header_nav_contact_item_tel {
    padding: 4.2666666667vw;
    font-size: 6.4vw;
  }
  .header_nav_contact_item_tel::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    background: url("/assets/img/common/Icons_phone_blue.svg") no-repeat;
    background-size: cover;
    margin: 0 2.1333333333vw 0 0;
    width: 1em;
    height: 1em;
  }
  .header_nav_contact_item_btn {
    display: block;
    position: relative;
    width: 69.3333333333vw;
    max-width: none;
    height: auto;
    margin: 3.2vw auto 0;
    padding: 5.0666666667vw 4.2666666667vw;
    font-size: 4.2666666667vw;
    border-radius: 100px;
  }
  .header_nav_contact_item_btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 4.2666666667vw;
    transform: translate(0, -50%);
    width: 5.3333333333vw;
    height: 4.2666666667vw;
  }
}

.contact {
  position: relative;
  background: url("/assets/img/contact_bg.webp") no-repeat;
  background-size: cover;
  background-position: top center;
}
.contact_inner {
  position: relative;
  width: min(100%, 1640px);
  margin: 0 auto;
  padding: 80px min(120px, 8.3333333333%) 64px;
}
.contact_topBox {
  display: flex;
  align-items: center;
  gap: 80px;
}
.contact_topBox_left {
  flex-shrink: 0;
}
.contact_ttl {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #000000;
  word-break: keep-all;
}
@media (max-width: 767px) {
  .contact_ttl {
    font-size: 6.4vw;
  }
}
.contact_ttl {
  color: #ffffff;
}
.contact_subttl {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
  color: #004896;
}
@media (max-width: 767px) {
  .contact_subttl {
    font-size: 3.7333333333vw;
  }
}
.contact_subttl {
  color: #ffffff;
}
.contact_text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
  color: #ffffff;
}
.contact_box {
  margin: 60px 0 0;
}
.contact_list {
  display: flex;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 2px;
}
.contact_item {
  padding: 40px 16px;
  width: calc((100% - 4px) / 3);
  background: rgba(255, 255, 255, 0.9);
}
.contact_item_text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  color: #004896;
}
.contact_item_subtext {
  font-size: 12px;
  margin-top: 8px;
}
.contact_item_tel {
  display: block;
  padding: 30px 0 0 0;
  font-size: clamp(20px, 2.7777777778vw, 40px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: #000000;
  cursor: default;
}
.contact_item_tel::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url("/assets/img/common/Icons_phone_blue.svg") no-repeat;
  background-size: cover;
  margin: 0 6px 0 0;
  width: 1em;
  height: 1em;
}
.contact_item_btn {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 300px;
  margin: 24px auto 0;
  padding: 12px 16px;
  background: #004896;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
  border-radius: 30px;
  height: 60px;
}
.contact_item_btn_text {
  flex: 1;
}
.contact_item_btn:hover {
  opacity: 0.8;
}
.contact_item_btn::after {
  content: "";
  display: inline-block;
  background: url("/assets/img/common/Icons_mail_white.svg") no-repeat;
  background-size: cover;
  width: 32px;
  height: 32px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1024px) {
  .contact_inner {
    padding: 64px max(30px, 3.90625%);
  }
  .contact_text_br {
    display: none;
  }
}
@media (max-width: 768px) {
  .contact_topBox {
    gap: 3.906%;
  }
  .contact_topBox_left {
    flex-shrink: 0;
  }
  .contact_box {
    margin: 60px 0 0;
  }
  .contact_item {
    aspect-ratio: unset;
    width: calc(50% - 2px);
    padding: 32px 16px;
  }
  .contact_item:nth-of-type(3) {
    width: calc(100% - 2px);
  }
  .contact_item_tel {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .contact {
    padding: 0 0;
    background-position: top left;
  }
  .contact_inner {
    padding: 8.5333333333vw 6.4vw 8.5333333333vw;
  }
  .contact_topBox {
    display: block;
  }
  .contact_box {
    margin: 0;
  }
  .contact_ttl, .contact_subttl {
    text-align: center;
  }
  .contact_text {
    display: none;
  }
  .contact_list {
    display: block;
    margin: 0;
    padding: 6.4vw 0 0;
  }
  .contact_item {
    width: 100%;
    margin: 0.2666666667vw 0 0;
    padding: 4.2666666667vw;
  }
  .contact_item:nth-of-type(1) {
    margin: 0;
  }
  .contact_item:nth-of-type(3) {
    width: 100%;
  }
  .contact_item_text {
    font-size: 3.2vw;
    font-weight: 500;
    line-height: 1;
  }
  .contact_item_subtext {
    display: none;
  }
  .contact_item_tel {
    padding: 4.2666666667vw;
    font-size: 6.4vw;
  }
  .contact_item_tel::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    background: url("/assets/img/common/Icons_phone_blue.svg") no-repeat;
    background-size: cover;
    margin: 0 2.1333333333vw 0 0;
    width: 1em;
    height: 1em;
  }
  .contact_item_btn {
    display: block;
    position: relative;
    width: 69.3333333333vw;
    max-width: none;
    height: auto;
    margin: 3.2vw auto 0;
    padding: 5.0666666667vw 4.2666666667vw;
    font-size: 4.2666666667vw;
    border-radius: 100px;
  }
  .contact_item_btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 4.2666666667vw;
    transform: translate(0, -50%);
    width: 5.3333333333vw;
    height: 4.2666666667vw;
  }
}

.nav {
  background: #004896;
}
.nav_inner {
  width: min(100%, 1640px);
  margin: 0 auto;
  padding: 64px min(120px, 8.3333333333%) 64px;
}
.nav_wrap {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.nav_wrap_left_logo {
  width: 298px;
  margin: 0 0 40px;
}
.nav_wrap_left_ttl {
  margin: 24px 0 0 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #ffffff;
}
.nav_wrap_left_text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: #ffffff;
}
.nav_wrap_left_list {
  margin: 40px 0 0 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}
.nav_wrap_left_item {
  display: inline-block;
  padding: 8px 16px;
  background: #ffffff;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: #004896;
}
.nav_wrap_right {
  display: flex;
  gap: 60px;
  margin: -40px 0 0 0;
}
.nav_wrap_right_right {
  width: 240px;
}
.nav_wrap_right_left {
  width: 240px;
}
.nav_list_ttl_wrap {
  color: #ffffff;
  background: url(/assets/img/common/arrowbg.svg) right bottom no-repeat;
  padding-bottom: 16px;
  margin-bottom: 20px;
  display: block;
}
.nav_list_subttl {
  margin: 40px 0 0 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}
.nav_list_ttl {
  position: relative;
  margin: 8px 0 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
.nav_list_text {
  display: block;
  margin: 16px 0 0 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #ffffff;
}
@media (min-width: 768px) {
  .nav_list_ttl_wrap {
    transition: 0.2s;
  }
  .nav_list_ttl_wrap:hover {
    color: #C2CAD2;
  }
  .nav_list_text {
    transition: 0.2s;
  }
  .nav_list_text:hover {
    color: #C2CAD2;
  }
}
@media (max-width: 1024px) {
  .nav_inner {
    padding: 64px max(30px, 3.90625%) 64px;
  }
  .nav_wrap {
    gap: 30px;
  }
  .nav_wrap_left_logo {
    width: 298px;
    margin: 0;
  }
  .nav_wrap_left_text {
    font-weight: 400;
  }
  .nav_wrap_right {
    gap: 30px;
  }
  .nav_wrap_right_right {
    width: 175px;
  }
  .nav_wrap_right_left {
    width: 175px;
  }
  .nav_list_ttl::after {
    width: 164px;
    height: 54px;
  }
}
@media (max-width: 767px) {
  .nav_inner {
    padding: 6.4vw;
  }
  .nav_wrap {
    flex-wrap: wrap;
    gap: 6.4vw;
  }
  .nav_wrap_left_logo {
    width: 52vw;
    margin: 0;
  }
  .nav_wrap_left_ttl {
    margin: 4.2666666667vw 0 0 0;
    font-size: 3.7333333333vw;
  }
  .nav_wrap_left_ttl:nth-of-type(1) {
    margin: 6.4vw 0 0 0;
  }
  .nav_wrap_left_text {
    margin: 2.1333333333vw 0 0 0;
    font-size: 3.2vw;
    font-weight: 400;
  }
  .nav_wrap_left_list {
    margin: 4.2666666667vw 0 0 0;
    gap: 2.1333333333vw;
  }
  .nav_wrap_left_item {
    padding: 2.1333333333vw 4.2666666667vw;
    border-radius: 14px;
    font-size: 3.2vw;
    font-weight: 500;
  }
  .nav_wrap_right {
    gap: 7.2vw;
    margin: 0;
  }
  .nav_wrap_right_right {
    width: 40vw;
  }
  .nav_wrap_right_left {
    width: 40vw;
  }
  .nav_list_subttl {
    margin: 6.4vw 0 0 0;
    font-size: 2.6666666667vw;
  }
  .nav_list_ttl {
    margin: 2.1333333333vw 0 0;
    font-size: 3.7333333333vw;
  }
  .nav_list_text {
    margin: 4.2666666667vw 0 0 0;
    font-size: 3.2vw;
    font-weight: 500;
  }
}

.copyright {
  background: #4D4D4D;
}
.copyright_inner {
  width: min(100%, 1640px);
  margin: 0 auto;
  padding: 30px min(120px, 8.3333333333%);
  display: flex;
  justify-content: space-between;
}
.copyright_privacy {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  color: #ffffff;
}
.copyright_copy {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  color: #ffffff;
}
@media (min-width: 768px) {
  .copyright_privacy:hover {
    text-decoration: underline;
  }
}
@media (max-width: 1024px) {
  .copyright_inner {
    padding: 24px max(30px, 3.90625%);
  }
}
@media (max-width: 767px) {
  .copyright_inner {
    padding: 3.7333333333vw 4.2666666667vw;
  }
  .copyright_privacy {
    font-size: 3.2vw;
    line-height: 1.2;
  }
  .copyright_copy {
    font-size: 3.2vw;
    line-height: 1.2;
  }
}

.btn_to_top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  background-color: #004896;
  z-index: 999;
}
.btn_to_top_btn {
  display: block;
  padding: 48px 0 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
  text-align: center;
}
.btn_to_top_btn::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  width: 24px;
  height: 24px;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  transform: translate(-50%, 0) rotate(-45deg);
}
@media (min-width: 768px) {
  .btn_to_top {
    transition: background-color 0.2s;
  }
  .btn_to_top:hover {
    background-color: #003671;
  }
}
@media (min-width: 1680px) {
  .btn_to_top {
    left: calc(50% + 720px);
    right: auto;
  }
}
@media (max-width: 767px) {
  .btn_to_top {
    position: fixed;
    width: 11.7333333333vw;
    height: 11.7333333333vw;
    bottom: 0;
    right: 0;
  }
  .btn_to_top_btn {
    display: block;
    padding: 6.9333333333vw 0 1.3333333333vw;
    font-size: 2.4vw;
    font-weight: 500;
  }
  .btn_to_top_btn::before {
    content: "";
    position: absolute;
    top: 3.2vw;
    left: 50%;
    width: 3.4666666667vw;
    height: 3.4666666667vw;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    transform: translate(-50%, 0) rotate(-45deg);
  }
}

.top_pan {
  display: flex;
  gap: 72px;
  padding: 52px 0 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  color: #004896;
}
@media (max-width: 767px) {
  .top_pan {
    padding-top: 40px;
  }
}
.top_pan_item {
  position: relative;
}
.top_pan_item:not(:last-of-type)::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: calc(100% + 24px);
  width: 24px;
  height: 2px;
  background: #E1E6EB;
}
.top_pan_item:nth-last-of-type(1) {
  color: #666666;
}
@media (min-width: 768px) {
  .top_pan_item {
    transition: 0.2s;
    border-bottom: solid 1px transparent;
  }
  .top_pan_item:not(:last-of-type):hover {
    border-bottom-color: #004896;
  }
}
@media (max-width: 767px) {
  .top_pan {
    gap: 12.8vw;
    margin: 4.2666666667vw 0 0;
    padding: 6.4vw 0 0;
    font-size: 2.9333333333vw;
    font-weight: 400;
  }
  .top_pan_item {
    position: relative;
  }
  .top_pan_item:not(:last-of-type)::after {
    left: calc(100% + 4.2666666667vw);
    width: 4.2666666667vw;
  }
}

.contents_left_ttl {
  padding: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #004896;
  border-bottom: 1px solid #004896;
}
.contents_sticky {
  display: block;
  position: sticky;
  top: 120px;
}
.contents_sticky_list {
  margin: 16px 0 24px;
}
.contents_sticky_item {
  position: relative;
  margin: 16px 0 0;
  padding: 0 0 0 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: #808080;
  cursor: pointer;
}
.contents_sticky_item.active, .contents_sticky_item:hover {
  color: #004896;
}
.contents_sticky_item::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translate(0, -50%);
  width: 16px;
  height: 2px;
  background: #E1E6EB;
}
.contents_sticky_item-none {
  padding: 0;
}
.contents_sticky_item-none::after {
  content: none;
}
@media (min-width: 768px) {
  .contents_sticky_item-none a {
    transition: 0.2s;
  }
  .contents_sticky_item-none a:hover {
    color: #004896;
  }
}

.contents_box {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 60px;
}
.contents_left {
  width: 220px;
  flex-shrink: 0;
  mix-blend-mode: multiply;
}
.contents_right {
  flex: 1;
  min-width: 0;
}
@media (max-width: 768px) {
  .contents_left {
    display: none;
  }
}

.top {
  position: relative;
  margin: 100px 0 0;
}
.top::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% - 70px);
  right: 0;
  width: min(580px, 41.4285714286%);
  height: min(795px, 56.7857142857vw);
  background: #F4F4F4;
  clip-path: polygon(100% 0%, 100% 100%, 0% 0%);
  z-index: -9;
}
.top_inner_top {
  position: relative;
  display: flex;
  width: 100%;
  height: 500px;
  margin: 0 auto;
  padding: 60px min(120px, 8.3333333333%) 0;
  background: url("../img/mv.webp") no-repeat;
  background-size: cover;
  background-position: center center;
}
.top_inner_bottom {
  position: relative;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 min(120px, 8.3333333333%) 0;
}
.top_box {
  position: relative;
  left: max(50% - 600px, 0px);
  background: #ffffff;
  display: inline-block;
  margin: auto 0 -2px;
  padding: 24px 230px 0 0;
  z-index: 0;
}
.top_box::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 99%;
  width: 50vw;
  height: calc(100% + 1px);
  background: #ffffff;
  z-index: -1;
}
.top_box::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: calc(100% - 2px);
  width: 100px;
  height: 100%;
  background: #ffffff;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
.top_ttl {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #000000;
}
.top_subttl {
  margin: 8px 0 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  color: #004896;
}
@media (max-width: 1024px) {
  .top::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(100% - 70px);
    right: 0;
    width: min(290px, 28.3203125%);
    height: min(390px, 38.0859375vw);
    background: #F4F4F4;
    clip-path: polygon(100% 0%, 100% 100%, 0% 0%);
    z-index: -9;
  }
  .top_inner_top, .top_inner_bottom {
    padding-left: max(30px, 2.9296875%);
    padding-right: max(30px, 2.9296875%);
  }
}
@media (max-width: 767px) {
  .top {
    margin: 17.0666666667vw 0 0;
  }
  .top_inner_top {
    height: 300px;
    padding: 6.4vw 6.4vw 0;
  }
  .top_inner_bottom {
    padding-left: 6.4vw;
    padding-right: 6.4vw;
  }
  .top_ttl {
    font-size: 7.7333333333vw;
  }
  .top_subttl {
    margin: 3.2vw 0 0;
    font-size: 3.7333333333vw;
  }
  .top_box {
    padding-right: 0;
  }
}

.js-inviewAnimate_ttl {
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
}
.js-inviewAnimate_ttl::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  transition: 0.8s linear;
}
.js-inviewAnimate_ttl-blue {
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
}
.js-inviewAnimate_ttl-blue::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #004896;
  transition: 0.8s linear;
}
.js-inviewAnimate_ttl-gray {
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
}
.js-inviewAnimate_ttl-gray::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F4F4F4;
  transition: 0.8s linear;
}
.js-inviewAnimate_ttl-graylighter {
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
}
.js-inviewAnimate_ttl-graylighter::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #E6EDF5;
  transition: 0.8s linear;
}
.js-inviewAnimate_subttl {
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
}
.js-inviewAnimate_subttl::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  transition: 0.8s linear 0.8s;
}
.js-inviewAnimate_subttl-blue {
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
}
.js-inviewAnimate_subttl-blue::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #004896;
  transition: 0.8s linear 0.8s;
}
.js-inviewAnimate_subttl-gray {
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
}
.js-inviewAnimate_subttl-gray::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F4F4F4;
  transition: 0.8s linear 0.8s;
}
.js-inviewAnimate_subttl-graylighter {
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
}
.js-inviewAnimate_subttl-graylighter::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #E6EDF5;
  transition: 0.8s linear 0.8s;
}
.js-inviewAnimate.in-view .js-inviewAnimate_ttl::after {
  transform: translate(100%, 0);
}
.js-inviewAnimate.in-view .js-inviewAnimate_subttl::after {
  transform: translate(100%, 0);
}
.js-inviewAnimate.in-view .js-inviewAnimate_ttl-blue::after {
  transform: translate(100%, 0);
}
.js-inviewAnimate.in-view .js-inviewAnimate_subttl-blue::after {
  transform: translate(100%, 0);
}
.js-inviewAnimate.in-view .js-inviewAnimate_ttl-gray::after {
  transform: translate(100%, 0);
}
.js-inviewAnimate.in-view .js-inviewAnimate_subttl-gray::after {
  transform: translate(100%, 0);
}
.js-inviewAnimate.in-view .js-inviewAnimate_ttl-graylighter::after {
  transform: translate(100%, 0);
}
.js-inviewAnimate.in-view .js-inviewAnimate_subttl-graylighter::after {
  transform: translate(100%, 0);
}

.contents_sec.contents_philosophy::after {
  content: "";
  position: absolute;
  top: 0;
  left: var(--content-offset-left);
  width: calc(100vw - var(--scrollbar-width));
  height: 100%;
  background: #E6EDF5;
  z-index: -1;
}
.contents_sec_box {
  display: flex;
  gap: 40px;
  margin: 40px 0 0;
}
.contents_sec_box_img {
  width: min(45%, 320px);
  flex-shrink: 0;
}
.contents_sec_box_right {
  flex: 1;
}
.contents_sec_box_heading-blue {
  color: #004896;
}
.contents_sec_box_text {
  margin: 16px 0 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
  color: #000000;
}
@media (max-width: 767px) {
  .contents_sec_box_text {
    font-size: 4.2666666667vw;
  }
}
.contents_sec_box_name {
  margin: 24px 0 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
  color: #000000;
  text-align: right;
}
.contents_sec_img {
  width: 43.4782608696%;
}
.contents_philosophy_box {
  position: relative;
  margin: 40px -40px 0 0;
  padding: 40px;
  background: rgba(255, 255, 255, 0.8);
}
.contents_philosophy_box_ttl-blue {
  color: #004896;
}
.contents_philosophy_box_text {
  margin: 40px 0 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
  color: #000000;
}
@media (max-width: 767px) {
  .contents_philosophy_box_text {
    font-size: 4.2666666667vw;
  }
}
.contents_philosophy_box::after {
  content: "";
  position: absolute;
  bottom: -64px;
  left: 50%;
  transform: translate(-50%, 0);
  background: url("../img/yajirobee.png") no-repeat;
  background-size: contain;
  background-position: bottom center;
  width: min(717px, 74.6875%);
  aspect-ratio: 717/695;
}
.contents_philosophy_box::before {
  position: absolute;
  top: -120px;
  right: 0;
  content: "";
  width: 180px;
  height: 180px;
  background: url(../img/yajirobee2.png);
  background-size: cover;
  transform: rotate(15deg);
}
.contents_info {
  padding: 64px 0;
}
.contents_info_box {
  width: 100%;
  margin: 60px 0 0;
}
.contents_info_box_heading {
  position: relative;
  padding: 0 0 0 40px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #004896;
}
.contents_info_box_heading:before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  width: 24px;
  height: 2px;
  background: #004896;
}
@media (max-width: 767px) {
  .contents_info_box_heading {
    font-size: 5.3333333333vw;
    padding-left: 30px;
  }
  .contents_info_box_heading::before {
    width: 18px;
  }
}
.contents_info_box_list {
  width: 100%;
  margin: 40px 0 0;
}
.contents_info_box_item {
  display: flex;
  align-items: stretch;
}
.contents_info_box_ttl {
  width: 21.7391304348%;
  padding: 32px 0 32px 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
  color: #000000;
  border-top: 2px solid #004896;
}
.contents_info_box_ttl-last {
  border-bottom: 2px solid #004896;
}
.contents_info_box_right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 78.2608695652%;
  padding: 32px 0 32px 16px;
  border-top: 2px solid #E1E6EB;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  color: #000000;
}
@media (max-width: 767px) {
  .contents_info_box_right {
    font-size: 3.7333333333vw;
  }
}
.contents_info_box_right-last {
  border-bottom: 2px solid #E1E6EB;
}
.contents_info_box_right_list01_item, .contents_info_box_right_list02_item {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  color: #000000;
}
@media (max-width: 767px) {
  .contents_info_box_right_list01_item, .contents_info_box_right_list02_item {
    font-size: 3.7333333333vw;
  }
}
.contents_info_box_right_list01_item, .contents_info_box_right_list02_item {
  line-height: 1.6;
  padding-bottom: 0.2em;
}
.contents_info_box_right_list02 {
  list-style-type: disc;
  list-style-position: inside;
}
.contents_info_box_text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  color: #000000;
}
@media (max-width: 767px) {
  .contents_info_box_text {
    font-size: 3.7333333333vw;
  }
}
.contents_info_box_link {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  color: #000000;
}
@media (max-width: 767px) {
  .contents_info_box_link {
    font-size: 3.7333333333vw;
  }
}
.contents_info_box_link {
  color: #004896;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .contents_info_box_link:hover {
    text-decoration: none;
  }
}
.contents_info_box_btn {
  position: relative;
  display: block;
  width: min(400px, 81.9672131148%);
  margin: 0;
  padding: min(23px, 8.8461538462%) 0;
  border-radius: 100px;
  background: #004896;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
  text-align: center;
}
.contents_info_box_btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  width: 30px;
  height: 14px;
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  transform: skew(45deg) translate(0, -50%);
}
@media (min-width: 768px) {
  .contents_info_box_btn {
    transition: background-color 0.2s;
  }
  .contents_info_box_btn:hover {
    background-color: #003671;
  }
}
.contents_organization_box {
  width: 100%;
  padding: 72px 0 0;
}
.contents_organization_box_heading {
  position: relative;
  padding: 0 0 0 40px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #004896;
}
.contents_organization_box_heading:before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  width: 24px;
  height: 2px;
  background: #004896;
}
@media (max-width: 767px) {
  .contents_organization_box_heading {
    font-size: 5.3333333333vw;
    padding-left: 30px;
  }
  .contents_organization_box_heading::before {
    width: 18px;
  }
}
.contents_organization_box_imgBox {
  position: relative;
  transition: all 0.5s ease-in-out;
  background: #ffffff;
  z-index: 999;
  margin-top: 32px;
  border: solid 1px #E1E6EB;
}
.contents_organization_box_img {
  margin: 32px 0 0;
}
.contents_organization_box_btn {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 38px 0 0;
  width: 54px;
  height: 54px;
  background: #004896;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
}
.contents_organization_box_btn::before {
  content: "";
  position: absolute;
  top: 16px;
  left: calc(50% - 13px);
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
}
.contents_organization_box_btn::after {
  content: "";
  position: absolute;
  top: 6px;
  left: calc(50% - 2px);
  display: block;
  width: 2px;
  height: 24px;
  transform: rotate(90);
  background: #ffffff;
}
@media (min-width: 768px) {
  .contents_organization_box_btn {
    transition: background-color 0.2s;
  }
  .contents_organization_box_btn:hover {
    background-color: #003671;
  }
}
.contents_history_box {
  width: 100%;
  padding: 72px 0 0;
}
.contents_history_box_heading {
  position: relative;
  padding: 0 0 0 40px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #004896;
}
.contents_history_box_heading:before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  width: 24px;
  height: 2px;
  background: #004896;
}
@media (max-width: 767px) {
  .contents_history_box_heading {
    font-size: 5.3333333333vw;
    padding-left: 30px;
  }
  .contents_history_box_heading::before {
    width: 18px;
  }
}
.contents_history_box_text {
  margin: 32px 0 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
  color: #000000;
}
@media (max-width: 767px) {
  .contents_history_box_text {
    font-size: 4.2666666667vw;
  }
}
.contents_history_box_img {
  margin: 32px 0 0;
}
.contents_history_box_btn {
  position: relative;
  display: block;
  width: min(260px, 81.9672131148%);
  margin: 48px auto 0;
  padding: min(23px, 8.8461538462%) 0;
  border-radius: 100px;
  background: #004896;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
  text-align: center;
}
.contents_history_box_btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  width: 30px;
  height: 14px;
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  transform: skew(45deg) translate(0, -50%);
}
@media (min-width: 768px) {
  .contents_history_box_btn {
    transition: background-color 0.2s;
  }
  .contents_history_box_btn:hover {
    background-color: #003671;
  }
}
.contents_access {
  width: 100%;
  background: #004896;
}
.contents_access::after {
  content: "";
  position: absolute;
  top: 0;
  left: var(--content-offset-left);
  width: calc(100vw - var(--scrollbar-width));
  height: 100%;
  background: #004896;
  z-index: -1;
}
.contents_access .contents_sec_ttl {
  color: #ffffff;
}
.contents_access .contents_sec_subttl {
  color: #ffffff;
}
.contents_access_heading {
  position: relative;
  padding: 0 0 0 40px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #004896;
}
.contents_access_heading:before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  width: 24px;
  height: 2px;
  background: #004896;
}
@media (max-width: 767px) {
  .contents_access_heading {
    font-size: 5.3333333333vw;
    padding-left: 30px;
  }
  .contents_access_heading::before {
    width: 18px;
  }
}
.contents_access_imgBox {
  margin: 40px 0 0;
  position: relative;
}
.contents_access_imgBox_img {
  width: 100%;
}
.contents_access_imgBox_text {
  position: absolute;
  bottom: -1px;
  left: -1px;
  padding: 16px 16px 1px 17px;
  background: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  color: #000000;
}
@media (max-width: 767px) {
  .contents_access_imgBox_text {
    font-size: 3.7333333333vw;
  }
}
.contents_access_imgBox_text-bold {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  color: #000000;
}
.contents_access_box {
  position: relative;
  width: min(920px, 100%);
  margin: 40px 0 0;
  padding: 40px 24px 24px;
  background: #ffffff;
}
.contents_access_box_list {
  margin: 40px 0 0 0;
}
.contents_access_box_item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contents_access_box_item:nth-of-type(2) {
  margin: 16px 0 0;
}
.contents_access_box_car {
  flex-shrink: 0;
  position: relative;
  padding: 0 0 0 44px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
  color: #004896;
}
.contents_access_box_car::after {
  content: "";
  background: url("/assets/img/common/Icons_car_blue.svg");
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
}
.contents_access_box_train {
  flex-shrink: 0;
  position: relative;
  padding: 0 0 0 44px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
  color: #004896;
}
.contents_access_box_train::after {
  content: "";
  background: url("/assets/img/common/Icons_car_blue.svg");
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
}
.contents_access_box_text {
  width: 70.6422018349%;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  color: #000000;
}
@media (max-width: 767px) {
  .contents_access_box_text {
    font-size: 3.7333333333vw;
  }
}
.contents_access_box_map {
  margin: 40px 0 0 0;
}
.contents_access_box_map iframe {
  width: 100%;
  height: 320px;
}
.contents_access_box_listImg {
  display: flex;
  gap: 40px;
  margin: 40px 0 0;
}
.contents_access_box_listImg_cap {
  margin-top: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  color: #000000;
}
@media (max-width: 767px) {
  .contents_access_box_listImg_cap {
    font-size: 2.9333333333vw;
  }
}
.contents_access_linkText {
  margin: 40px auto 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  color: #000000;
}
@media (max-width: 767px) {
  .contents_access_linkText {
    font-size: 3.7333333333vw;
  }
}
.contents_access_linkText {
  font-weight: 700;
  color: #004896;
  text-align: center;
}
.contents_access_link {
  position: relative;
  display: block;
  width: min(397px, 100%);
  margin: 24px auto 0;
  padding: min(23px, 8.8461538462%) 0;
  border-radius: 100px;
  background: #004896;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
  text-align: center;
}
.contents_access_link::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  width: 30px;
  height: 14px;
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  transform: skew(45deg) translate(0, -50%);
}
@media (min-width: 768px) {
  .contents_access_link {
    transition: background-color 0.2s;
  }
  .contents_access_link:hover {
    background-color: #003671;
  }
}
.contents_links::after {
  content: "";
  position: absolute;
  top: 0;
  left: var(--content-offset-left);
  width: calc(100vw - var(--scrollbar-width));
  height: 100%;
  background: #F4F4F4;
  z-index: -1;
}
.contents_links_box {
  margin: 40px 0 0;
}
.contents_links_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px 40px;
}
.contents_links_item {
  width: calc(50% - 20px);
}
.contents_links_item_link {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  color: #000000;
}
@media (max-width: 767px) {
  .contents_links_item_link {
    font-size: 3.7333333333vw;
  }
}
.contents_links_item_link {
  position: relative;
  color: #004896;
}
.contents_links_item_link::after {
  content: "";
  display: inline-block;
  background: url("/assets/img/common/Icons_link_blue.svg");
  margin: 0 0 0 4px;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  background-size: contain;
}
@media (min-width: 768px) {
  .contents_links_item_link:hover {
    text-decoration: underline;
  }
}
.contents_sports_heading {
  margin: 40px 0 0;
}
.contents_sports_heading-blue {
  color: #004896;
}
.contents_sports_box {
  display: flex;
  gap: 48px;
  margin: 40px 0 0;
}
.contents_sports_box_img {
  width: get-per(400px, 920);
}
.contents_sports_box_label {
  display: inline-block;
  padding: 16px;
  background: #004896;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: #ffffff;
}
.contents_sports_box_name {
  margin: 16px 0 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
  color: #000000;
}
.contents_sports_box_name-small {
  margin: 0 0 0 24px;
  font-size: 16px;
  font-weight: 500;
}
.contents_sports_box_heading {
  margin: 24px 0 0;
  font-size: 18px;
  color: #004896;
}
.contents_sports_box_text {
  margin: 24px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  color: #000000;
}
@media (max-width: 767px) {
  .contents_sports_box_text {
    font-size: 3.7333333333vw;
  }
}
@media (max-width: 1024px) {
  .contents_topMessage .contents_sec_box {
    flex-direction: column;
  }
  .contents_topMessage .contents_sec_box_img {
    margin: 0 auto;
  }
  .contents_philosophy_box {
    position: relative;
    margin: 40px 0 0 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.8);
  }
  .contents_philosophy_box::before {
    top: -100px;
    right: 20px;
    width: 150px;
    height: 150px;
  }
  .contents_sports_box {
    flex-direction: column;
  }
  .contents_sports_box_img {
    max-width: 80%;
    margin: 0 auto;
  }
  .contents_sports_box_img img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .contents_philosophy_box {
    margin-top: 8.5333333333vw;
    padding: 6.4vw 3.2vw;
  }
  .contents_philosophy_box::after {
    bottom: 0;
    width: 100vw;
  }
  .contents_philosophy_box::before {
    top: -80px;
    right: 0px;
    width: 120px;
    height: 120px;
  }
  .contents_philosophy_box_text {
    margin-top: 4.2666666667vw;
  }
  .contents_info {
    padding-top: 8.5333333333vw;
    padding-bottom: 8.5333333333vw;
  }
  .contents_info_box {
    margin-top: 8vw;
  }
  .contents_info_box_list {
    margin-top: 6.4vw;
  }
  .contents_info_box_ttl {
    width: 6em;
    padding: 16px 0.5em;
    font-size: 12px;
    font-size: 1.4;
    text-align: center;
  }
  .contents_info_box_right {
    padding: 16px 0.8em;
  }
  .contents_info_box_btn {
    font-size: 14px;
    width: 100%;
    padding-right: 16px;
  }
  .contents_info_box_btn span {
    display: none;
  }
  .contents_info_box_btn::after {
    width: 21px;
    height: 9.8px;
  }
  .contents_organization_box {
    padding-top: 8.5333333333vw;
  }
  .contents_organization_box_imgBox {
    margin-top: 6.4vw;
  }
  .contents_history_box {
    padding-top: 8.5333333333vw;
  }
  .contents_history_box_text {
    margin-top: 6.4vw;
  }
  .contents_history_box_btn {
    margin-top: 6.4vw;
    font-size: 14px;
    max-width: 300px;
    padding-right: 16px;
  }
  .contents_history_box_btn::after {
    width: 21px;
    height: 9.8px;
  }
  .contents_access_imgBox {
    margin-top: 6.4vw;
  }
  .contents_access_imgBox_text {
    position: static;
    padding: 3.2vw 0 0;
  }
  .contents_access_imgBox_text-bold {
    font-size: 14px;
  }
  .contents_access_box {
    padding: 6.4vw 3.2vw;
  }
  .contents_access_box_item {
    flex-direction: column;
  }
  .contents_access_box_text {
    width: 100%;
  }
  .contents_access_box_map {
    margin-top: 6.4vw;
  }
  .contents_access_box_map iframe {
    aspect-ratio: 295/160;
    height: auto;
  }
  .contents_access_box_car, .contents_access_box_train {
    font-size: 14px;
  }
  .contents_access_box_listImg {
    margin-top: 6.4vw;
    gap: 4.2666666667vw;
  }
  .contents_access_linkText {
    margin-top: 6.4vw;
  }
  .contents_access_link {
    font-size: 14px;
    max-width: 300px;
    padding-right: 16px;
  }
  .contents_access_link::after {
    width: 21px;
    height: 9.8px;
  }
  .contents_links_box {
    margin-top: 6.4vw;
  }
  .contents_links_list {
    flex-direction: column;
    gap: 0.5em;
  }
  .contents_links_item {
    width: 100%;
  }
  .contents_links_item_link::after {
    width: 16px;
    height: 16px;
  }
  .contents_sports {
    padding-bottom: 0;
  }
  .contents_sports_heading {
    margin-top: 6.4vw;
  }
  .contents_sports_box {
    gap: 6.4vw;
    margin-top: 6.4vw;
  }
  .contents_sports_box_label {
    font-size: 3.7333333333vw;
  }
  .contents_sports_box_name {
    font-size: 4.8vw;
  }
  .contents_sports_box_name-small {
    font-size: 3.7333333333vw;
  }
  .contents_sports_box_text {
    margin-top: 4.2666666667vw;
  }
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99999;
}
.modal.active {
  display: block;
}
.modal_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(920px, 93.8775510204%);
  max-height: 80dvh;
  padding: 112px min(64px, 4.4444444444%) 110px;
  background: #ffffff;
  overflow-y: auto;
  z-index: 99;
}
.modal_btn {
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 40px;
  padding: 26px 0 0;
  cursor: pointer;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0;
  color: #ffffff;
  text-align: center;
  z-index: 999;
}
.modal_btn::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #004896;
  transform: rotate(20deg);
}
.modal_btn::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #004896;
  transform: rotate(-20deg);
}/*# sourceMappingURL=style.css.map */