@charset "UTF-8";
/*
Theme Name: マイテーマ
*/
html {
  -webkit-text-size-adjust: 100%;
}

body {
  color: #262626;
  font-family: "Noto Sans JP", "Yu Gothic", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  margin: 0;
}

div {
  font-size: 0;
  line-height: 1;
  box-sizing: border-box;
}

input {
  color: #4E4E4E;
}

h1, h2, h3, h4, h5, h6, p, ul, figure {
  line-height: 1;
  margin: 0;
}

ul, ol {
  padding: 0;
}

dl, dd {
  margin: 0;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}

input, button, select, textarea {
  width: 95%;
  padding: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox], input[type=radio] {
  display: none;
}

input[type=submit], input[type=button], label, button, select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

form.post-password-form {
  font-size: 4vw;
  padding-top: 100px;
  width: 90%;
  margin: 0 auto 5em;
}
@media screen and (min-width: 600px) {
  form.post-password-form {
    font-size: 2.7vw;
  }
}
@media screen and (min-width: 768px) {
  form.post-password-form {
    font-size: 2.3vw;
  }
}
@media screen and (min-width: 1025px) {
  form.post-password-form {
    font-size: 18px;
    max-width: 1100px;
    padding-top: 160px;
  }
}
form.post-password-form p {
  line-height: 1.4;
}
form.post-password-form p:first-of-type {
  margin-bottom: 2em;
}
form.post-password-form p label {
  margin-bottom: 3em;
  display: grid;
}
form.post-password-form p label input {
  padding: 0.5em;
  width: 100%;
  max-width: 500px;
  background-color: #f0f0f0;
  box-sizing: border-box;
}
form.post-password-form p input[type=submit] {
  color: #fff;
  padding: 1em 0;
  width: 100%;
  background-color: #13568B;
}
form.post-password-form p input[type=submit]:hover {
  opacity: 0.7;
}

header {
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #262626;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  z-index: 1000;
}
header .header_bar {
  display: none;
}
@media screen and (min-width: 1025px) {
  header .header_bar {
    width: 100%;
    height: 40px;
    background-color: #13568B;
    display: flex;
    align-items: center;
  }
}
header .header_bar p {
  color: #fff;
  font-size: 15px;
  font-weight: 300;
  width: 95%;
  max-width: 1200px;
  margin-inline: auto;
}
header .container {
  width: 90%;
  height: 50px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  header .container {
    width: 95%;
    height: 70px;
    max-width: 1200px;
    justify-content: space-between;
    position: relative;
  }
}
header .container .header_logo {
  width: 120px;
}
@media screen and (min-width: 1025px) {
  header .container .header_logo {
    width: 150px;
  }
}
header .container .header_logo:hover {
  opacity: 0.7;
}
header .container .header_logo a {
  line-height: 1;
  display: block;
}
header .container a.login_link {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 0.7em 0.8em;
  background-color: #5FB1F2;
  border-radius: 5px;
  display: flex;
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translate(0, -50%);
  gap: 0 0.5em;
}
@media screen and (min-width: 1025px) {
  header .container a.login_link {
    right: 0;
  }
}
header .container a.login_link:hover {
  opacity: 0.7;
}
header .container a.login_link img {
  width: 1em;
}

button.mobile_menu--button {
  width: auto;
  height: 100%;
  background-color: #13568B;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 1000;
  aspect-ratio: 1;
}
@media screen and (min-width: 1025px) {
  button.mobile_menu--button {
    display: none;
  }
}
button.mobile_menu--button div {
  width: 40%;
  height: 1px;
  background-color: #fff;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transition: all 0.3s;
}
button.mobile_menu--button div:first-of-type {
  transform: translate(-50%, calc(-50% - 7px));
}
button.mobile_menu--button div:nth-of-type(2) {
  opacity: 1;
  transform: translate(-50%, -50%);
}
button.mobile_menu--button div:nth-of-type(3) {
  transform: translate(-50%, calc(-50% + 7px));
}

button.mobile_menu--button.open_menu div:first-of-type {
  transform: translate(-50%, -50%) rotate(30deg);
}
button.mobile_menu--button.open_menu div:nth-of-type(2) {
  opacity: 0;
  transform: translate(100%, -50%);
}
button.mobile_menu--button.open_menu div:nth-of-type(3) {
  transform: translate(-50%, -50%) rotate(-30deg);
}

nav.mobile_menu--nav {
  width: 100vw;
  height: calc(100svh - 50px);
  background-color: #fff;
  opacity: 0;
  overflow-y: scroll;
  position: fixed;
  left: 0;
  top: 51px;
  transition: all 0.4s;
  z-index: -1;
  pointer-events: none;
}
nav.mobile_menu--nav.open_menu {
  opacity: 1;
  z-index: 999;
  pointer-events: auto;
}
@media screen and (min-width: 1025px) {
  nav.mobile_menu--nav {
    display: none;
  }
}
nav.mobile_menu--nav p.mobile_menu--text {
  color: #13568B;
  font-size: 3.8vw;
  line-height: 1.8;
  padding: 1.2em 7%;
  border-bottom: 1px solid #262626;
}
@media screen and (min-width: 600px) {
  nav.mobile_menu--nav p.mobile_menu--text {
    font-size: 2.5vw;
    padding: 1.2em 10%;
  }
}
@media screen and (min-width: 768px) {
  nav.mobile_menu--nav p.mobile_menu--text {
    font-size: 2.1vw;
    padding: 1.2em 15%;
  }
}

.mobile_menu--box > ul {
  font-size: 4.8vw;
}
@media screen and (min-width: 600px) {
  .mobile_menu--box > ul {
    font-size: 3.5vw;
  }
}
@media screen and (min-width: 768px) {
  .mobile_menu--box > ul {
    font-size: 2.9vw;
  }
}
.mobile_menu--box > ul > li {
  padding: 1.3em 7%;
  border-bottom: 1px solid #262626;
}
@media screen and (min-width: 600px) {
  .mobile_menu--box > ul > li {
    padding: 1.3em 10%;
  }
}
@media screen and (min-width: 768px) {
  .mobile_menu--box > ul > li {
    padding: 1.3em 15%;
  }
}
.mobile_menu--box > ul > li.menu-item-7755 {
  display: none;
}
.mobile_menu--box > ul > li > a {
  color: #13568B;
  font-weight: bold;
}
.mobile_menu--box > ul > li ul.sub-menu {
  margin-top: 1.5em;
  display: grid;
  gap: 1.2em 0;
}
.mobile_menu--box > ul > li ul.sub-menu li {
  list-style: none;
  display: flex;
  align-items: center;
}
.mobile_menu--box > ul > li ul.sub-menu li::before {
  content: "";
  width: 0.8em;
  height: 1px;
  margin-right: 0.5em;
  background-color: #13568B;
  display: inline-block;
}
.mobile_menu--box > ul > li ul.sub-menu li a {
  color: #13568B;
  font-weight: bold;
}

.mobile_menu--infoBox {
  padding: 0 7%;
}
@media screen and (min-width: 600px) {
  .mobile_menu--infoBox {
    padding: 0 10%;
  }
}
@media screen and (min-width: 768px) {
  .mobile_menu--infoBox {
    padding: 0 15%;
  }
}
.mobile_menu--infoBox p {
  color: #13568B;
  line-height: 1.6;
}
.mobile_menu--infoBox p.name {
  font-size: 4vw;
  font-weight: 600;
  margin: 2em 0;
}
@media screen and (min-width: 600px) {
  .mobile_menu--infoBox p.name {
    font-size: 2.7vw;
  }
}
@media screen and (min-width: 768px) {
  .mobile_menu--infoBox p.name {
    font-size: 2.3vw;
  }
}
.mobile_menu--infoBox p.info {
  font-size: 3.5vw;
  font-weight: 400;
}
@media screen and (min-width: 600px) {
  .mobile_menu--infoBox p.info {
    font-size: 2.2vw;
  }
}
@media screen and (min-width: 768px) {
  .mobile_menu--infoBox p.info {
    font-size: 1.8vw;
  }
}

nav.header_menu--nav {
  display: none;
}
@media screen and (min-width: 1025px) {
  nav.header_menu--nav {
    margin-right: 130px;
    display: flex;
  }
}

.header_menu--box {
  font-size: clamp(12px, 1.1vw, 14px);
}
.header_menu--box > ul {
  padding: 0;
  display: flex;
  align-items: center;
}
.header_menu--box > ul > li {
  list-style: none;
  margin-left: min(2vw, 2.2em);
  position: relative;
}
.header_menu--box > ul > li.menu-item-7755 {
  display: none;
}
.header_menu--box > ul > li a {
  color: #13568B;
  font-weight: bold;
  position: relative;
}
.header_menu--box > ul > li a:hover {
  opacity: 0.7;
}
.header_menu--box > ul.global_nav--ul li::before {
  content: "";
  width: 1px;
  height: 1.2em;
  background-color: #262626;
  position: absolute;
  right: -1.1em;
  top: 50%;
  transform: translate(0, -50%);
}
.header_menu--box > ul.class_nav--ul {
  position: relative;
}
.header_menu--box > ul.class_nav--ul::before {
  content: "";
  width: 1px;
  height: 1.2em;
  background-color: #262626;
  position: absolute;
  right: -1.1em;
  top: 50%;
  transform: translate(0, -50%);
}
.header_menu--box > ul.class_nav--ul > li:not(:last-of-type)::before {
  content: "";
  width: 1px;
  height: 1.2em;
  background-color: #262626;
  position: absolute;
  right: -1.1em;
  top: 50%;
  transform: translate(0, -50%);
}
.header_menu--box > ul.class_nav--ul > li a[href="#"] {
  padding-right: 1.2em;
}
.header_menu--box > ul.class_nav--ul > li a[href="#"]::before {
  content: "";
  width: 0.7em;
  background-color: #13568B;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  aspect-ratio: 1.2/1;
}
.header_menu--box > ul.class_nav--ul > li a[href="#"] + ul.sub-menu {
  width: -moz-max-content;
  width: max-content;
  padding: 20px;
  background-color: #fff;
  border: 3px solid #13568B;
  border-radius: 10px;
  opacity: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 30px;
  position: absolute;
  right: 0;
  top: 35px;
  pointer-events: none;
  transition: all 0.4s;
}
.header_menu--box > ul.class_nav--ul > li a[href="#"] + ul.sub-menu:hover {
  opacity: 1;
  pointer-events: auto;
}
.header_menu--box > ul.class_nav--ul > li a[href="#"] + ul.sub-menu::before {
  content: "";
  width: 0.8em;
  background-color: #fff;
  border-top: 3px solid #13568B;
  border-right: 3px solid #13568B;
  position: absolute;
  right: 20px;
  top: 0;
  transform: translate(0, -65%) rotate(-45deg) skew(-25deg, -25deg);
  aspect-ratio: 1;
}
.header_menu--box > ul.class_nav--ul > li a[href="#"] + ul.sub-menu::after {
  content: "";
  width: 100%;
  height: 1.5em;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(0, -100%);
}
.header_menu--box > ul.class_nav--ul > li a[href="#"] + ul.sub-menu li {
  list-style: none;
  margin: 0;
}
.header_menu--box > ul.class_nav--ul > li a[href="#"] + ul.sub-menu li::before {
  content: "・";
}
.header_menu--box > ul.class_nav--ul > li a[href="#"]:hover + ul.sub-menu {
  opacity: 1;
  pointer-events: auto;
}
.header_menu--box > ul.contact_nav--ul li:not(:last-of-type):before {
  content: "";
  width: 1px;
  height: 1.2em;
  background-color: #262626;
  position: absolute;
  right: -1.1em;
  top: 50%;
  transform: translate(0, -50%);
}

.top_page--header {
  padding-top: 50px;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .top_page--header {
    padding-top: 110px;
  }
}
.top_page--header h1 {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
          clip-path: inset(0px 0px 99.9% 99.9%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
}
.top_page--header .container {
  position: relative;
}
@media screen and (min-width: 768px) {
  .top_page--header .container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
  }
}
@media screen and (min-width: 1025px) {
  .top_page--header .container {
    width: 95%;
    max-width: 1150px;
    margin-inline: auto;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0 85px;
  }
}
.top_page--header .container::before {
  content: "";
  width: 100vw;
  height: 1px;
  background-color: #262626;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}
.top_page--header .container .text_box {
  text-align: center;
  padding: 12% 0 10%;
}
@media screen and (min-width: 600px) {
  .top_page--header .container .text_box {
    padding: 8% 0 6%;
  }
}
@media screen and (min-width: 768px) {
  .top_page--header .container .text_box {
    padding: 14% 0 16%;
  }
}
.top_page--header .container .text_box .text_topBox {
  font-size: 4.3vw;
  margin-bottom: 2em;
}
@media screen and (min-width: 600px) {
  .top_page--header .container .text_box .text_topBox {
    font-size: 2.9vw;
  }
}
@media screen and (min-width: 768px) {
  .top_page--header .container .text_box .text_topBox {
    font-size: 2.4vw;
  }
}
@media screen and (min-width: 1025px) {
  .top_page--header .container .text_box .text_topBox {
    font-size: 23px;
    margin-bottom: 3em;
  }
}
.top_page--header .container .text_box .text_topBox p.large_text {
  color: #13568B;
  font-size: 2em;
  font-weight: bold;
  width: -moz-max-content;
  width: max-content;
  padding: 0 0 0.2em;
  margin: 0 auto 0.4em;
  border-bottom: 1px solid #13568B;
}
@media screen and (min-width: 1025px) {
  .top_page--header .container .text_box .text_topBox p.large_text {
    padding: 0 0 0.4em;
  }
}
.top_page--header .container .text_box .text_topBox p.small_text {
  font-weight: bold;
  letter-spacing: 0.25em;
}
.top_page--header .container .text_box .text_bottomBox {
  font-size: 3.8vw;
}
@media screen and (min-width: 600px) {
  .top_page--header .container .text_box .text_bottomBox {
    font-size: 2.6vw;
  }
}
@media screen and (min-width: 768px) {
  .top_page--header .container .text_box .text_bottomBox {
    font-size: 2.2vw;
  }
}
@media screen and (min-width: 1025px) {
  .top_page--header .container .text_box .text_bottomBox {
    font-size: 21px;
  }
}
.top_page--header .container .text_box .text_bottomBox p.small_text {
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 1025px) {
  .top_page--header .container .text_box .text_bottomBox p.small_text {
    line-height: 2;
  }
}
.top_page--header .container .text_box .text_bottomBox p.small_text:nth-of-type(2) {
  letter-spacing: 0.15em;
  margin: 0 0 0.8em 0.15em;
}
.top_page--header .container .text_box .text_bottomBox p.small_text span {
  color: #F0662A;
}
.top_page--header .container .text_box .text_bottomBox p.large_text {
  font-size: 1.55em;
  font-weight: bold;
  letter-spacing: 0.7em;
  margin-left: 0.7em;
}
.top_page--header .container .img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1025px) {
  .top_page--header .container .img img {
    width: calc(100% + 50px);
    max-width: none;
  }
}

.top_page_header--classBox {
  font-size: 4.8vw;
  padding: 8% 0;
  position: relative;
}
@media screen and (min-width: 600px) {
  .top_page_header--classBox {
    font-size: 3.2vw;
    padding: 6% 0;
  }
}
@media screen and (min-width: 768px) {
  .top_page_header--classBox {
    font-size: 2.7vw;
    width: 85%;
    padding: 4% 0;
    margin-inline: auto;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: baseline;
  }
}
@media screen and (min-width: 1025px) {
  .top_page_header--classBox {
    font-size: 25px;
    width: 95%;
    max-width: 1100px;
    padding: 30px 0 35px;
    margin-inline: auto;
  }
}
.top_page_header--classBox::before {
  content: "";
  width: 100vw;
  height: 1px;
  background-color: #262626;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}
.top_page_header--classBox p {
  text-align: center;
  font-size: 1.39em;
  font-weight: bold;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .top_page_header--classBox p {
    margin: 0;
  }
}
@media screen and (min-width: 1025px) {
  .top_page_header--classBox p {
    letter-spacing: 0.1em;
  }
}
.top_page_header--classBox ul {
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1em 0;
}
@media screen and (min-width: 768px) {
  .top_page_header--classBox ul {
    margin: 0 0 0 auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media screen and (min-width: 1025px) {
  .top_page_header--classBox ul {
    display: flex;
  }
}
.top_page_header--classBox ul li {
  font-weight: bold;
  letter-spacing: 0.05em;
  list-style: none;
}
@media screen and (min-width: 1025px) {
  .top_page_header--classBox ul li {
    letter-spacing: 0.1em;
  }
}
.top_page_header--classBox ul li:not(:nth-of-type(3n)):not(:last-of-type) {
  border-right: 1px solid #262626;
}
@media screen and (min-width: 768px) {
  .top_page_header--classBox ul li:not(:nth-of-type(3n)):not(:last-of-type) {
    border: none;
  }
}
@media screen and (min-width: 1025px) {
  .top_page_header--classBox ul li:not(:nth-of-type(3n)):not(:last-of-type) {
    border-right: 1px solid #262626;
  }
}
@media screen and (min-width: 768px) {
  .top_page_header--classBox ul li:not(:nth-of-type(4n)):not(:last-of-type) {
    border-right: 1px solid #262626;
  }
}
@media screen and (min-width: 1025px) {
  .top_page_header--classBox ul li:not(:last-of-type) {
    border-right: 1px solid #262626;
  }
}
.top_page_header--classBox ul li:nth-of-type(3n-2) {
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .top_page_header--classBox ul li:nth-of-type(3n-2) {
    padding: 0 1em;
  }
}
@media screen and (min-width: 1025px) {
  .top_page_header--classBox ul li:nth-of-type(3n-2) {
    padding: 0 0.6em;
  }
}
.top_page_header--classBox ul li:nth-of-type(3n-1) {
  padding: 0 1.8em;
}
@media screen and (min-width: 768px) {
  .top_page_header--classBox ul li:nth-of-type(3n-1) {
    padding: 0 1em;
  }
}
@media screen and (min-width: 1025px) {
  .top_page_header--classBox ul li:nth-of-type(3n-1) {
    padding: 0 0.6em;
  }
}
.top_page_header--classBox ul li:nth-of-type(3n) {
  padding-left: 1.2em;
}
@media screen and (min-width: 768px) {
  .top_page_header--classBox ul li:nth-of-type(3n) {
    padding: 0 1em;
  }
}
@media screen and (min-width: 1025px) {
  .top_page_header--classBox ul li:nth-of-type(3n) {
    padding: 0 0.6em;
  }
}
.top_page_header--classBox ul li:last-of-type {
  grid-column: span 2;
}

section.top_page--section .section_container {
  width: 80%;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  section.top_page--section .section_container {
    max-width: 1100px;
  }
}

h2.top_page--title {
  font-size: 4vw;
}
@media screen and (min-width: 600px) {
  h2.top_page--title {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 768px) {
  h2.top_page--title {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  h2.top_page--title {
    font-size: 18px;
    display: flex;
    align-items: baseline;
    gap: 0 1.2em;
  }
}
h2.top_page--title span {
  display: block;
}
h2.top_page--title span.eng {
  font-size: 2.14em;
  font-weight: 900;
  margin-bottom: 0.4em;
}
@media screen and (min-width: 1025px) {
  h2.top_page--title span.eng {
    margin: 0;
  }
}
h2.top_page--title span.ja {
  color: #13568B;
  font-weight: 500;
}

.common_button {
  text-align: center;
  font-size: 4vw;
  width: 20em;
  margin-inline: auto;
}
@media screen and (min-width: 600px) {
  .common_button {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 768px) {
  .common_button {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  .common_button {
    font-size: 18px;
    width: 16em;
  }
}
.common_button a {
  font-weight: bold;
  padding: 1.2em 1em 1.2em 0;
  display: block;
  position: relative;
}
.common_button a::before {
  content: "";
  width: 0.7em;
  height: 1em;
  -webkit-clip-path: polygon(28% 0, 100% 50%, 28% 100%, 0 82%, 45% 50%, 0 18%);
          clip-path: polygon(28% 0, 100% 50%, 28% 100%, 0 82%, 45% 50%, 0 18%);
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

section.top_page--section.section01 {
  padding: 12% 0 15%;
}
@media screen and (min-width: 600px) {
  section.top_page--section.section01 {
    padding: 8% 0 12%;
  }
}
@media screen and (min-width: 768px) {
  section.top_page--section.section01 {
    padding: 7% 0 10%;
  }
}
@media screen and (min-width: 1025px) {
  section.top_page--section.section01 {
    padding: 60px 0 90px;
  }
}
@media screen and (min-width: 1025px) {
  section.top_page--section.section01 .section_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
section.top_page--section.section01 .section_container h2.top_page--title {
  margin-bottom: 2em;
}
@media screen and (min-width: 1025px) {
  section.top_page--section.section01 .section_container h2.top_page--title {
    margin-bottom: 1.5em;
  }
}
section.top_page--section.section01 .section_container .text_box {
  margin-bottom: 10%;
}
@media screen and (min-width: 600px) {
  section.top_page--section.section01 .section_container .text_box {
    margin-bottom: 7%;
  }
}
@media screen and (min-width: 768px) {
  section.top_page--section.section01 .section_container .text_box {
    margin-bottom: 5%;
  }
}
@media screen and (min-width: 1025px) {
  section.top_page--section.section01 .section_container .text_box {
    margin-bottom: 40px;
    order: 3;
  }
}
section.top_page--section.section01 .section_container .text_box p.large_text {
  font-size: 5.9vw;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-bottom: 1.5em;
}
@media screen and (min-width: 600px) {
  section.top_page--section.section01 .section_container .text_box p.large_text {
    font-size: 3.9vw;
  }
}
@media screen and (min-width: 768px) {
  section.top_page--section.section01 .section_container .text_box p.large_text {
    font-size: 3.3vw;
  }
}
@media screen and (min-width: 1025px) {
  section.top_page--section.section01 .section_container .text_box p.large_text {
    font-size: 30px;
    margin-bottom: 1.2em;
  }
}
section.top_page--section.section01 .section_container .text_box p.small_text {
  font-size: 4.3vw;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 600px) {
  section.top_page--section.section01 .section_container .text_box p.small_text {
    font-size: 2.7vw;
  }
}
@media screen and (min-width: 768px) {
  section.top_page--section.section01 .section_container .text_box p.small_text {
    font-size: 2.2vw;
  }
}
@media screen and (min-width: 1025px) {
  section.top_page--section.section01 .section_container .text_box p.small_text {
    font-size: 18px;
  }
}
section.top_page--section.section01 .section_container .text_box p.small_text.space {
  margin-bottom: 1.2em;
}
section.top_page--section.section01 .section_container .img {
  width: 90%;
  margin: 0 auto 10%;
}
@media screen and (min-width: 600px) {
  section.top_page--section.section01 .section_container .img {
    width: 70%;
    margin: 0 auto 7%;
  }
}
@media screen and (min-width: 768px) {
  section.top_page--section.section01 .section_container .img {
    width: 60%;
    margin: 0 auto 5%;
  }
}
@media screen and (min-width: 1025px) {
  section.top_page--section.section01 .section_container .img {
    width: 90%;
    margin: 0 0 0 auto;
    grid-row: span 2;
  }
}
section.top_page--section.section01 .section_container .common_button {
  background-color: #13568B;
  border: 3px solid #13568B;
  transition: all 0.3s;
}
@media screen and (min-width: 1025px) {
  section.top_page--section.section01 .section_container .common_button {
    margin: 0;
    order: 4;
  }
}
section.top_page--section.section01 .section_container .common_button:hover {
  background-color: #fff;
}
section.top_page--section.section01 .section_container .common_button a {
  color: #fff;
  transition: all 0.3s;
}
section.top_page--section.section01 .section_container .common_button a:hover {
  color: #13568B;
}
section.top_page--section.section01 .section_container .common_button a::before {
  background-color: #fff;
  right: 3em;
  transition: all 0.3s;
}
section.top_page--section.section01 .section_container .common_button a:hover::before {
  background-color: #13568B;
}

section.top_page--section.section02 {
  padding-bottom: 15%;
}
@media screen and (min-width: 600px) {
  section.top_page--section.section02 {
    padding-bottom: 10%;
  }
}
@media screen and (min-width: 768px) {
  section.top_page--section.section02 {
    padding-bottom: 8%;
  }
}
@media screen and (min-width: 1025px) {
  section.top_page--section.section02 {
    padding-bottom: 80px;
  }
}
section.top_page--section.section02 .section_container {
  font-size: 4.3vw;
  padding: 2em 0;
  background-color: #E5F0F3;
  border-radius: 20px;
  position: relative;
}
@media screen and (min-width: 600px) {
  section.top_page--section.section02 .section_container {
    font-size: 2.7vw;
  }
}
@media screen and (min-width: 768px) {
  section.top_page--section.section02 .section_container {
    font-size: 2.2vw;
  }
}
@media screen and (min-width: 1025px) {
  section.top_page--section.section02 .section_container {
    font-size: 18px;
    padding: 2.5em 3em 2.5em 4em;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: baseline;
    gap: 0 60px;
  }
}
section.top_page--section.section02 .section_container h2 {
  text-align: center;
  font-size: 4.6vw;
  padding-bottom: 1.2em;
  margin-bottom: 1.2em;
  position: relative;
}
@media screen and (min-width: 600px) {
  section.top_page--section.section02 .section_container h2 {
    font-size: 3vw;
  }
}
@media screen and (min-width: 768px) {
  section.top_page--section.section02 .section_container h2 {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 1025px) {
  section.top_page--section.section02 .section_container h2 {
    font-size: 24px;
    padding-bottom: 0.5em;
    margin: 0;
  }
}
section.top_page--section.section02 .section_container h2::before {
  content: "";
  width: 85%;
  height: 1px;
  background-color: #13568B;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}
@media screen and (min-width: 600px) {
  section.top_page--section.section02 .section_container h2::before {
    width: 88%;
  }
}
@media screen and (min-width: 768px) {
  section.top_page--section.section02 .section_container h2::before {
    width: 90%;
  }
}
@media screen and (min-width: 1025px) {
  section.top_page--section.section02 .section_container h2::before {
    width: 120%;
  }
}
section.top_page--section.section02 .section_container h2 span.eng {
  font-size: 10.7vw;
  color: #13568B;
  opacity: 0.2;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(0, -100%) rotate(90deg);
  transform-origin: left bottom;
}
@media screen and (min-width: 600px) {
  section.top_page--section.section02 .section_container h2 span.eng {
    font-size: 8vw;
  }
}
@media screen and (min-width: 768px) {
  section.top_page--section.section02 .section_container h2 span.eng {
    font-size: 7vw;
  }
}
@media screen and (min-width: 1025px) {
  section.top_page--section.section02 .section_container h2 span.eng {
    font-size: 36px;
    transform: translate(-50px, -20px) rotate(0deg);
  }
}
section.top_page--section.section02 .section_container h2 span.ja {
  color: #13568B;
  letter-spacing: 0.2em;
}
section.top_page--section.section02 .section_container .text_box {
  font-size: inherit;
  line-height: 1.6;
  width: 85%;
  margin-inline: auto;
}
@media screen and (min-width: 600px) {
  section.top_page--section.section02 .section_container .text_box {
    width: 88%;
  }
}
@media screen and (min-width: 768px) {
  section.top_page--section.section02 .section_container .text_box {
    width: 90%;
  }
}
@media screen and (min-width: 1025px) {
  section.top_page--section.section02 .section_container .text_box {
    width: 100%;
  }
}
section.top_page--section.section02 .section_container .text_box h3 {
  color: #fff;
  font-size: 4.8vw;
  line-height: 1.4;
  letter-spacing: 0.05em;
  padding: 0.8em 1em;
  margin-bottom: 1.2em;
  background-color: #13568B;
  border-radius: 1.5em;
  position: relative;
}
@media screen and (min-width: 600px) {
  section.top_page--section.section02 .section_container .text_box h3 {
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 768px) {
  section.top_page--section.section02 .section_container .text_box h3 {
    font-size: 2.7vw;
  }
}
@media screen and (min-width: 1025px) {
  section.top_page--section.section02 .section_container .text_box h3 {
    font-size: 24px;
  }
}
section.top_page--section.section02 .section_container .text_box p {
  color: #13568B;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
section.top_page--section.section02 .section_container .text_box span.border {
  width: 100%;
  height: 1px;
  margin: 1em 0;
  background-image: linear-gradient(to right, #13568B, #13568B 6px, transparent 6px, transparent 8px);
  background-size: 8px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
  display: block;
}

section.top_page--section.section03 {
  padding: 14% 0;
  background-color: #13568B;
}
@media screen and (min-width: 600px) {
  section.top_page--section.section03 {
    padding: 8% 0;
  }
}
@media screen and (min-width: 768px) {
  section.top_page--section.section03 {
    padding: 7% 0;
  }
}
@media screen and (min-width: 1025px) {
  section.top_page--section.section03 {
    padding: 70px 0;
  }
}
section.top_page--section.section03 .section_container h2.top_page--title {
  color: #fff;
  margin-bottom: 3em;
}
@media screen and (min-width: 1025px) {
  section.top_page--section.section03 .section_container h2.top_page--title {
    margin-bottom: 2.8em;
  }
}
section.top_page--section.section03 .section_container h2.top_page--title span.ja {
  color: #fff;
}
section.top_page--section.section03 .section_container .common_button {
  background-color: #fff;
  border: 3px solid #fff;
  transition: all 0.3s;
}
section.top_page--section.section03 .section_container .common_button:hover {
  background-color: #13568B;
}
section.top_page--section.section03 .section_container .common_button a {
  color: #13568B;
  transition: all 0.3s;
}
section.top_page--section.section03 .section_container .common_button a:hover {
  color: #fff;
}
section.top_page--section.section03 .section_container .common_button a::before {
  background-color: #13568B;
  right: 2em;
  transition: all 0.3s;
}
section.top_page--section.section03 .section_container .common_button a:hover::before {
  background-color: #fff;
}

.top_page_section03--contentsBox h3 {
  color: #13568B;
  font-size: 4.6vw;
  font-weight: 900;
  letter-spacing: 0.15em;
  width: -moz-max-content;
  width: max-content;
  background-color: #EEE;
  position: relative;
}
@media screen and (min-width: 600px) {
  .top_page_section03--contentsBox h3 {
    font-size: 3vw;
  }
}
@media screen and (min-width: 768px) {
  .top_page_section03--contentsBox h3 {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 1025px) {
  .top_page_section03--contentsBox h3 {
    font-size: 24px;
  }
}

.top_page_section03--contentsBox.contents_strong {
  color: #13568B;
  padding: 7% 7% 13%;
  margin-bottom: 15%;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (min-width: 600px) {
  .top_page_section03--contentsBox.contents_strong {
    padding: 4% 10% 9%;
    margin-bottom: 10%;
  }
}
@media screen and (min-width: 768px) {
  .top_page_section03--contentsBox.contents_strong {
    padding: 3% 12% 7%;
    margin-bottom: 8%;
  }
}
@media screen and (min-width: 1025px) {
  .top_page_section03--contentsBox.contents_strong {
    padding: 15px 110px 50px;
    margin-bottom: 60px;
  }
}
.top_page_section03--contentsBox.contents_strong h3 {
  text-align: center;
  padding: 0.9em 1.8em;
  margin: 0 auto;
  border-radius: 5em;
  transform: translate(0, 40%);
}
@media screen and (min-width: 1025px) {
  .top_page_section03--contentsBox.contents_strong h3 {
    padding: 0.9em 3em;
    margin: 0;
    transform: translate(0, 60%);
  }
}
.top_page_section03--contentsBox.contents_strong .text_box {
  text-align: center;
  padding: 14% 0 8%;
  margin-bottom: 15%;
  background-color: #EEE;
  border-radius: 20px;
}
@media screen and (min-width: 600px) {
  .top_page_section03--contentsBox.contents_strong .text_box {
    padding: 10% 0 6%;
    margin-bottom: 10%;
  }
}
@media screen and (min-width: 768px) {
  .top_page_section03--contentsBox.contents_strong .text_box {
    padding: 9% 0 5%;
    margin-bottom: 8%;
  }
}
@media screen and (min-width: 1025px) {
  .top_page_section03--contentsBox.contents_strong .text_box {
    width: 95%;
    padding: 45px 0 35px;
    margin: 0 0 35px auto;
  }
}
.top_page_section03--contentsBox.contents_strong .text_box p {
  font-weight: bold;
}
.top_page_section03--contentsBox.contents_strong .text_box p.large_text {
  font-size: 6.2vw;
  letter-spacing: 0.15em;
  margin-bottom: 0.9em;
}
@media screen and (min-width: 600px) {
  .top_page_section03--contentsBox.contents_strong .text_box p.large_text {
    font-size: 4.6vw;
  }
}
@media screen and (min-width: 768px) {
  .top_page_section03--contentsBox.contents_strong .text_box p.large_text {
    font-size: 4.2vw;
  }
}
@media screen and (min-width: 1025px) {
  .top_page_section03--contentsBox.contents_strong .text_box p.large_text {
    font-size: 41px;
    letter-spacing: 0.2em;
    margin-bottom: 0.5em;
  }
}
.top_page_section03--contentsBox.contents_strong .text_box p.small_text {
  font-size: 4.6vw;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 600px) {
  .top_page_section03--contentsBox.contents_strong .text_box p.small_text {
    font-size: 3vw;
  }
}
@media screen and (min-width: 768px) {
  .top_page_section03--contentsBox.contents_strong .text_box p.small_text {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 1025px) {
  .top_page_section03--contentsBox.contents_strong .text_box p.small_text {
    font-size: 23px;
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 1025px) {
  .top_page_section03--contentsBox.contents_strong .text_box p.small_text br {
    display: none;
  }
}
.top_page_section03--contentsBox.contents_strong > p {
  font-size: 4vw;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1em;
}
@media screen and (min-width: 600px) {
  .top_page_section03--contentsBox.contents_strong > p {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 768px) {
  .top_page_section03--contentsBox.contents_strong > p {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  .top_page_section03--contentsBox.contents_strong > p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0.7em;
  }
}
.top_page_section03--contentsBox.contents_strong > p.space {
  margin-bottom: 3em;
}
.top_page_section03--contentsBox.contents_strong > p.space span {
  margin-bottom: 1em;
  display: block;
}
@media screen and (min-width: 1025px) {
  .top_page_section03--contentsBox.contents_strong > p.space span {
    margin-bottom: 0.7em;
  }
}
.top_page_section03--contentsBox.contents_strong > p.bg_yellow span {
  background: linear-gradient(rgba(250, 255, 0, 0.5), rgba(250, 255, 0, 0.5)) 100%/100% no-repeat;
  display: inline;
}
.top_page_section03--contentsBox.contents_strong > p.fw_bold {
  font-size: 4.2vw;
  text-shadow: 0 0 1px #13568B;
}
@media screen and (min-width: 600px) {
  .top_page_section03--contentsBox.contents_strong > p.fw_bold {
    font-size: 2.7vw;
  }
}
@media screen and (min-width: 768px) {
  .top_page_section03--contentsBox.contents_strong > p.fw_bold {
    font-size: 2.2vw;
  }
}
@media screen and (min-width: 1025px) {
  .top_page_section03--contentsBox.contents_strong > p.fw_bold {
    font-size: 20px;
  }
}
.top_page_section03--contentsBox.contents_strong > ul {
  font-size: 4vw;
  margin-bottom: 1.5em;
}
@media screen and (min-width: 600px) {
  .top_page_section03--contentsBox.contents_strong > ul {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 768px) {
  .top_page_section03--contentsBox.contents_strong > ul {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  .top_page_section03--contentsBox.contents_strong > ul {
    font-size: 18px;
    margin-top: 1em;
  }
}
.top_page_section03--contentsBox.contents_strong > ul li {
  font-weight: bold;
  line-height: 1.4;
  list-style: none;
}
.top_page_section03--contentsBox.contents_strong > ul li:not(:last-of-type) {
  margin-bottom: 1.5em;
}
@media screen and (min-width: 1025px) {
  .top_page_section03--contentsBox.contents_strong > ul li:not(:last-of-type) {
    margin-bottom: 1.2em;
  }
}

.top_page_section03--contentsBox.contents_pickup {
  color: #fff;
  margin-top: 15%;
}
@media screen and (min-width: 600px) {
  .top_page_section03--contentsBox.contents_pickup {
    margin-top: 12%;
  }
}
@media screen and (min-width: 768px) {
  .top_page_section03--contentsBox.contents_pickup {
    margin-top: 9%;
  }
}
@media screen and (min-width: 1025px) {
  .top_page_section03--contentsBox.contents_pickup {
    margin-top: 80px;
  }
}
.top_page_section03--contentsBox.contents_pickup h3 {
  padding: 0.9em 1.8em 0.9em 0;
  margin-bottom: 2.5em;
  border-radius: 0 5em 5em 0;
}
.top_page_section03--contentsBox.contents_pickup h3::before {
  content: "";
  width: 100vw;
  height: 100%;
  background-color: #EEE;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-100%, 0);
}
.top_page_section03--contentsBox.contents_pickup dl {
  font-size: 4.3vw;
  margin-bottom: 2.5em;
}
@media screen and (min-width: 600px) {
  .top_page_section03--contentsBox.contents_pickup dl {
    font-size: 2.7vw;
  }
}
@media screen and (min-width: 768px) {
  .top_page_section03--contentsBox.contents_pickup dl {
    font-size: 2.2vw;
  }
}
@media screen and (min-width: 1025px) {
  .top_page_section03--contentsBox.contents_pickup dl {
    font-size: 18px;
    margin-bottom: 3.5em;
  }
}
.top_page_section03--contentsBox.contents_pickup dl dt {
  font-size: 1.12em;
  font-weight: bold;
  line-height: 1.4;
  padding-left: 2.5em;
  margin-bottom: 2em;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .top_page_section03--contentsBox.contents_pickup dl dt {
    padding-left: 65px;
  }
}
.top_page_section03--contentsBox.contents_pickup dl dt span {
  font-size: 9.9vw;
  line-height: 1;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (min-width: 600px) {
  .top_page_section03--contentsBox.contents_pickup dl dt span {
    font-size: 6.7vw;
    top: auto;
    bottom: 0;
    transform: translate(0, 10%);
  }
}
@media screen and (min-width: 768px) {
  .top_page_section03--contentsBox.contents_pickup dl dt span {
    font-size: 5.7vw;
  }
}
@media screen and (min-width: 1025px) {
  .top_page_section03--contentsBox.contents_pickup dl dt span {
    font-size: 52px;
  }
}
@media screen and (min-width: 600px) {
  .top_page_section03--contentsBox.contents_pickup dl dt br {
    display: none;
  }
}
.top_page_section03--contentsBox.contents_pickup dl dd {
  position: relative;
}
.top_page_section03--contentsBox.contents_pickup dl dd:first-of-type {
  padding-bottom: 2.5em;
  margin-bottom: 3em;
}
.top_page_section03--contentsBox.contents_pickup dl dd:first-of-type::before {
  content: "";
  width: calc(100% + 1em);
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}
.top_page_section03--contentsBox.contents_pickup dl dd p.text {
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 2em;
}
@media screen and (min-width: 1025px) {
  .top_page_section03--contentsBox.contents_pickup dl dd p.text {
    padding-left: 65px;
  }
}
.top_page_section03--contentsBox.contents_pickup dl dd p.text br.br_pc {
  display: none;
}
@media screen and (min-width: 600px) {
  .top_page_section03--contentsBox.contents_pickup dl dd p.text br.br_pc {
    display: block;
  }
}
.top_page_section03--contentsBox.contents_pickup dl dd > ul {
  text-align: center;
  display: grid;
  gap: 2em 0;
}
@media screen and (min-width: 600px) {
  .top_page_section03--contentsBox.contents_pickup dl dd > ul {
    width: 70%;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .top_page_section03--contentsBox.contents_pickup dl dd > ul {
    width: 60%;
  }
}
@media screen and (min-width: 1025px) {
  .top_page_section03--contentsBox.contents_pickup dl dd > ul {
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0 30px;
  }
}
.top_page_section03--contentsBox.contents_pickup dl dd > ul li {
  color: #13568B;
  font-weight: bold;
  line-height: 2.2;
  list-style: none;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 47%;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1.75/1;
}

.top_page_section03_contentsBox_supportBox {
  text-align: center;
  font-size: 4.3vw;
}
@media screen and (min-width: 600px) {
  .top_page_section03_contentsBox_supportBox {
    font-size: 2.7vw;
    width: 70%;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .top_page_section03_contentsBox_supportBox {
    font-size: 2.2vw;
    width: 60%;
  }
}
@media screen and (min-width: 1025px) {
  .top_page_section03_contentsBox_supportBox {
    font-size: 18px;
    width: 100%;
  }
}
.top_page_section03_contentsBox_supportBox h4 {
  color: #fff;
  font-size: 1.12em;
  padding: 0.7em 0;
  margin-bottom: 6%;
  background-color: #F0662B;
  border-radius: 10px;
}
@media screen and (min-width: 1025px) {
  .top_page_section03_contentsBox_supportBox h4 {
    margin-bottom: 10px;
  }
}
.top_page_section03_contentsBox_supportBox ul {
  color: #13568B;
  display: grid;
}
@media screen and (min-width: 1025px) {
  .top_page_section03_contentsBox_supportBox ul {
    grid-template-columns: repeat(4, 1fr);
    gap: 0 10px;
  }
}
.top_page_section03_contentsBox_supportBox ul li {
  width: 100%;
  box-sizing: border-box;
  list-style: none;
  padding: 1.2em 2em;
  margin-inline: auto;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (min-width: 1025px) {
  .top_page_section03_contentsBox_supportBox ul li {
    padding: 1.5em 0em;
  }
}
.top_page_section03_contentsBox_supportBox ul li:not(:last-of-type) {
  margin-bottom: 6%;
}
@media screen and (min-width: 1025px) {
  .top_page_section03_contentsBox_supportBox ul li:not(:last-of-type) {
    margin: 0;
  }
}
.top_page_section03_contentsBox_supportBox ul li img {
  width: auto;
  height: 9.3em;
  margin-bottom: 1em;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 1025px) {
  .top_page_section03_contentsBox_supportBox ul li img {
    width: 10em;
  }
}
.top_page_section03_contentsBox_supportBox ul li p {
  font-weight: bold;
  width: 10.6em;
  margin-inline: auto;
  padding: 0.5em 0;
  border-top: 2px solid #13568B;
  border-bottom: 2px solid #13568B;
}

section.top_page--section.section04 {
  padding: 15% 0 12%;
}
@media screen and (min-width: 600px) {
  section.top_page--section.section04 {
    padding: 10% 0 8%;
  }
}
@media screen and (min-width: 768px) {
  section.top_page--section.section04 {
    padding: 8% 0 7%;
  }
}
@media screen and (min-width: 1025px) {
  section.top_page--section.section04 {
    padding: 90px 0 80px;
  }
}
section.top_page--section.section04 .section_container h2.top_page--title {
  margin-bottom: 2.5em;
}

ul.top_page_section04--ul {
  font-size: 4.3vw;
  margin-bottom: 2.5em;
  display: grid;
  gap: 1.5em;
}
@media screen and (min-width: 600px) {
  ul.top_page_section04--ul {
    font-size: 3.4vw;
  }
}
@media screen and (min-width: 768px) {
  ul.top_page_section04--ul {
    font-size: 2.7vw;
  }
}
@media screen and (min-width: 1025px) {
  ul.top_page_section04--ul {
    font-size: 20px;
    margin-bottom: 3em;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px 35px;
  }
}
ul.top_page_section04--ul li {
  text-align: center;
  list-style: none;
}
ul.top_page_section04--ul li a {
  color: #13568B;
  font-weight: bold;
  padding: 1em 1em 1em 0;
  background-color: #EAEAEA;
  display: block;
  position: relative;
  transition: all 0.3s;
}
ul.top_page_section04--ul li a:hover {
  color: #EAEAEA;
  background-color: #13568B;
}
ul.top_page_section04--ul li a::before {
  content: "";
  font-size: 0.8em;
  width: 0.7em;
  height: 1.2em;
  background-color: #13568B;
  -webkit-clip-path: polygon(28% 0, 100% 50%, 28% 100%, 0 82%, 45% 50%, 0 18%);
          clip-path: polygon(28% 0, 100% 50%, 28% 100%, 0 82%, 45% 50%, 0 18%);
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.3s;
}
ul.top_page_section04--ul li a:hover::before {
  background-color: #EAEAEA;
}
@media screen and (min-width: 1025px) {
  ul.top_page_section04--ul li.menu-item-has-children {
    grid-column: span 3;
  }
}
ul.top_page_section04--ul li.menu-item-has-children > a {
  display: none;
}
ul.top_page_section04--ul li ul.sub-menu {
  display: grid;
  gap: 1.5em;
}
@media screen and (min-width: 1025px) {
  ul.top_page_section04--ul li ul.sub-menu {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px 35px;
  }
}

.top_page_section04--linkBox {
  text-align: center;
  padding: 16% 0 20%;
  background-size: cover;
  background-position: center;
  position: relative;
}
@media screen and (min-width: 600px) {
  .top_page_section04--linkBox {
    padding: 10% 0 14%;
  }
}
@media screen and (min-width: 768px) {
  .top_page_section04--linkBox {
    padding: 8% 0 12%;
  }
}
@media screen and (min-width: 1025px) {
  .top_page_section04--linkBox {
    padding: 50px 0 80px;
  }
}
.top_page_section04--linkBox::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.2;
  position: absolute;
  left: 0;
  top: 0;
}
.top_page_section04--linkBox h3 {
  color: #fff;
  font-size: 4.3vw;
  margin-bottom: 1.7em;
  position: relative;
}
@media screen and (min-width: 600px) {
  .top_page_section04--linkBox h3 {
    font-size: 2.8vw;
  }
}
@media screen and (min-width: 768px) {
  .top_page_section04--linkBox h3 {
    font-size: 2.3vw;
  }
}
@media screen and (min-width: 1025px) {
  .top_page_section04--linkBox h3 {
    font-size: 20px;
  }
}
.top_page_section04--linkBox a {
  color: #fff;
  font-size: 4.8vw;
  width: -moz-max-content;
  width: max-content;
  padding: 0 2em 0.5em 0.5em;
  margin-inline: auto;
  border-bottom: 1px solid #fff;
  display: block;
  position: relative;
}
@media screen and (min-width: 600px) {
  .top_page_section04--linkBox a {
    font-size: 3.4vw;
  }
}
@media screen and (min-width: 768px) {
  .top_page_section04--linkBox a {
    font-size: 3.1vw;
  }
}
@media screen and (min-width: 1025px) {
  .top_page_section04--linkBox a {
    font-size: 28px;
    letter-spacing: 0.15em;
  }
}
.top_page_section04--linkBox a:hover {
  opacity: 0.7;
}
.top_page_section04--linkBox a::before {
  content: "";
  font-size: 0.8em;
  width: 0.7em;
  height: 1em;
  background-color: #fff;
  -webkit-clip-path: polygon(28% 0, 100% 50%, 28% 100%, 0 82%, 45% 50%, 0 18%);
          clip-path: polygon(28% 0, 100% 50%, 28% 100%, 0 82%, 45% 50%, 0 18%);
  position: absolute;
  right: 0.3em;
  top: 50%;
  transform: translate(0, calc(-50% - 0.25em));
}

.page_header {
  padding: calc(50px + 10%) 0 8%;
  border-bottom: 1px solid #262626;
}
@media screen and (min-width: 600px) {
  .page_header {
    padding: calc(50px + 7%) 0 6%;
  }
}
@media screen and (min-width: 768px) {
  .page_header {
    padding: calc(50px + 6%) 0 5%;
  }
}
@media screen and (min-width: 1025px) {
  .page_header {
    padding: 160px 0 40px;
  }
}
.page_header .header_container {
  font-size: 6vw;
  width: 80%;
  margin-inline: auto;
}
@media screen and (min-width: 600px) {
  .page_header .header_container {
    font-size: 4vw;
  }
}
@media screen and (min-width: 768px) {
  .page_header .header_container {
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 1025px) {
  .page_header .header_container {
    font-size: 30px;
    max-width: 1100px;
  }
}
.page_header .header_container h1 {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 0.8em;
}
@media screen and (min-width: 1025px) {
  .page_header .header_container h1 br {
    display: none;
  }
}
.page_header .header_container span.eng {
  color: #13568B;
  font-size: 0.8em;
  font-weight: bold;
}

.page_header.page_about-us .header_container h1 {
  font-weight: 900;
}
.page_header.page_about-us .header_container h1 span.eng {
  color: #13568B;
  font-size: 0.55em;
  font-weight: bold;
  margin-left: 1.5em;
}
@media screen and (min-width: 1025px) {
  .page_header.page_about-us .header_container h1 span.eng {
    font-size: 0.5em;
  }
}
.page_header.page_about-us .header_container p {
  font-size: 0.6em;
  line-height: 1.4;
  margin-bottom: 1em;
}
.page_header.page_about-us .header_container p.fw_bold {
  font-size: 0.65em;
  font-weight: bold;
  margin-bottom: 1.5em;
}
.page_header.page_about-us .header_container p:last-of-type {
  margin-bottom: 2em;
}

section.page_about--section .section_container {
  width: 80%;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  section.page_about--section .section_container {
    max-width: 1100px;
  }
}

section.page_about--section.section01 {
  padding: 8% 0 20%;
}
@media screen and (min-width: 600px) {
  section.page_about--section.section01 {
    padding: 5% 0 12%;
  }
}
@media screen and (min-width: 768px) {
  section.page_about--section.section01 {
    padding: 4% 0 9%;
  }
}
@media screen and (min-width: 1025px) {
  section.page_about--section.section01 {
    padding: 25px 0 90px;
  }
}
section.page_about--section.section01 .section_container {
  color: #13568B;
}
section.page_about--section.section01 .section_container h2 {
  text-align: center;
  font-size: 5.4vw;
  font-weight: 900;
  letter-spacing: 0.15em;
  width: -moz-max-content;
  width: max-content;
  padding: 0.7em 2.8em;
  margin: 0 auto;
  background-color: #EEE;
  border-radius: 5em;
  transform: translate(0, 40%);
}
@media screen and (min-width: 600px) {
  section.page_about--section.section01 .section_container h2 {
    font-size: 3.4vw;
  }
}
@media screen and (min-width: 768px) {
  section.page_about--section.section01 .section_container h2 {
    font-size: 2.7vw;
  }
}
@media screen and (min-width: 1025px) {
  section.page_about--section.section01 .section_container h2 {
    font-size: 24px;
    padding: 20px 120px;
    margin: 0;
    transform: translate(0, 60%);
  }
}
section.page_about--section.section01 .section_container .contents_box {
  padding: 12% 6% 9%;
  background-color: #EEE;
  border-radius: 20px;
}
@media screen and (min-width: 600px) {
  section.page_about--section.section01 .section_container .contents_box {
    padding: 8% 7% 7%;
  }
}
@media screen and (min-width: 768px) {
  section.page_about--section.section01 .section_container .contents_box {
    padding: 6% 8% 5%;
  }
}
@media screen and (min-width: 1025px) {
  section.page_about--section.section01 .section_container .contents_box {
    width: calc(100% - 40px);
    padding: 60px 50px 40px;
    margin: 0 0 0 auto;
    border-radius: 10px;
  }
}
section.page_about--section.section01 .section_container .contents_box .profile_box {
  padding: 0 5% 9%;
  margin-bottom: 9%;
  border-bottom: 1px solid #13568B;
}
@media screen and (min-width: 600px) {
  section.page_about--section.section01 .section_container .contents_box .profile_box {
    padding: 0 5% 6%;
    margin-bottom: 6%;
  }
}
@media screen and (min-width: 768px) {
  section.page_about--section.section01 .section_container .contents_box .profile_box {
    padding: 0 5% 5%;
    margin-bottom: 5%;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
    gap: 0 8%;
  }
}
@media screen and (min-width: 1025px) {
  section.page_about--section.section01 .section_container .contents_box .profile_box {
    padding: 0 30px 30px;
    margin-bottom: 25px;
    grid-template-columns: 1fr 3.5fr;
    gap: 0 50px;
  }
}
section.page_about--section.section01 .section_container .contents_box .profile_box .img {
  width: 60%;
  margin: 0 auto 12%;
}
@media screen and (min-width: 600px) {
  section.page_about--section.section01 .section_container .contents_box .profile_box .img {
    width: 50%;
    margin: 0 auto 9%;
  }
}
@media screen and (min-width: 768px) {
  section.page_about--section.section01 .section_container .contents_box .profile_box .img {
    width: 100%;
    margin: 0;
  }
}
section.page_about--section.section01 .section_container .contents_box .profile_box .info_box p {
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1025px) {
  section.page_about--section.section01 .section_container .contents_box .profile_box .info_box p {
    line-height: 2;
  }
}
section.page_about--section.section01 .section_container .contents_box .profile_box .info_box p.title {
  font-size: 4.3vw;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 600px) {
  section.page_about--section.section01 .section_container .contents_box .profile_box .info_box p.title {
    font-size: 2.8vw;
  }
}
@media screen and (min-width: 768px) {
  section.page_about--section.section01 .section_container .contents_box .profile_box .info_box p.title {
    font-size: 2.3vw;
  }
}
@media screen and (min-width: 1025px) {
  section.page_about--section.section01 .section_container .contents_box .profile_box .info_box p.title {
    font-size: 20px;
  }
}
section.page_about--section.section01 .section_container .contents_box .profile_box .info_box p.name {
  font-size: 5.4vw;
  font-weight: bold;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 600px) {
  section.page_about--section.section01 .section_container .contents_box .profile_box .info_box p.name {
    font-size: 3.7vw;
  }
}
@media screen and (min-width: 768px) {
  section.page_about--section.section01 .section_container .contents_box .profile_box .info_box p.name {
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 1025px) {
  section.page_about--section.section01 .section_container .contents_box .profile_box .info_box p.name {
    font-size: 28px;
    margin: 0;
  }
}
section.page_about--section.section01 .section_container .contents_box .profile_box .info_box p.name span {
  font-size: 0.75em;
  font-weight: 500;
  margin-left: 1em;
}
section.page_about--section.section01 .section_container .contents_box .profile_box .info_box p.graduate {
  font-size: 4vw;
}
@media screen and (min-width: 600px) {
  section.page_about--section.section01 .section_container .contents_box .profile_box .info_box p.graduate {
    font-size: 2.7vw;
  }
}
@media screen and (min-width: 768px) {
  section.page_about--section.section01 .section_container .contents_box .profile_box .info_box p.graduate {
    font-size: 2.3vw;
  }
}
@media screen and (min-width: 1025px) {
  section.page_about--section.section01 .section_container .contents_box .profile_box .info_box p.graduate {
    font-size: 20px;
  }
}
@media screen and (min-width: 1025px) {
  section.page_about--section.section01 .section_container .contents_box .profile_box .info_box p.graduate br {
    display: none;
  }
}
section.page_about--section.section01 .section_container .contents_box .text_box {
  padding: 0 3%;
}
@media screen and (min-width: 1025px) {
  section.page_about--section.section01 .section_container .contents_box .text_box {
    padding: 0 30px;
  }
}
section.page_about--section.section01 .section_container .contents_box .text_box .large_text {
  font-size: 4vw;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-bottom: 2em;
}
@media screen and (min-width: 600px) {
  section.page_about--section.section01 .section_container .contents_box .text_box .large_text {
    font-size: 2.6vw;
  }
}
@media screen and (min-width: 768px) {
  section.page_about--section.section01 .section_container .contents_box .text_box .large_text {
    font-size: 2.1vw;
  }
}
@media screen and (min-width: 1025px) {
  section.page_about--section.section01 .section_container .contents_box .text_box .large_text {
    font-size: 19px;
  }
}
@media screen and (min-width: 1025px) {
  section.page_about--section.section01 .section_container .contents_box .text_box .large_text br.br_sp {
    display: none;
  }
}
section.page_about--section.section01 .section_container .contents_box .text_box h3 {
  font-size: 4.3vw;
  line-height: 1.4;
  letter-spacing: 0.05em;
  width: -moz-max-content;
  width: max-content;
  padding: 1em 2em 1em 1px;
  margin-bottom: 1.5em;
  background-color: #fff;
  border-radius: 0 5em 5em 0;
  position: relative;
}
@media screen and (min-width: 600px) {
  section.page_about--section.section01 .section_container .contents_box .text_box h3 {
    font-size: 2.7vw;
  }
}
@media screen and (min-width: 768px) {
  section.page_about--section.section01 .section_container .contents_box .text_box h3 {
    font-size: 2.2vw;
  }
}
@media screen and (min-width: 1025px) {
  section.page_about--section.section01 .section_container .contents_box .text_box h3 {
    font-size: 19px;
  }
}
section.page_about--section.section01 .section_container .contents_box .text_box h3::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 1px;
  top: 0;
  transform: translate(-100%, 0);
}
@media screen and (min-width: 600px) {
  section.page_about--section.section01 .section_container .contents_box .text_box h3 br.br_sp {
    display: none;
  }
}
section.page_about--section.section01 .section_container .contents_box .text_box .small_text {
  font-size: 4vw;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 600px) {
  section.page_about--section.section01 .section_container .contents_box .text_box .small_text {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 768px) {
  section.page_about--section.section01 .section_container .contents_box .text_box .small_text {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  section.page_about--section.section01 .section_container .contents_box .text_box .small_text {
    font-size: 17px;
  }
}

h2.page_about--h2 {
  text-align: center;
  font-size: 4.6vw;
  line-height: 1.2;
  letter-spacing: 0.1em;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 600px) {
  h2.page_about--h2 {
    font-size: 3.1vw;
  }
}
@media screen and (min-width: 768px) {
  h2.page_about--h2 {
    font-size: 2.6vw;
  }
}
@media screen and (min-width: 1025px) {
  h2.page_about--h2 {
    font-size: 23px;
  }
}
h2.page_about--h2::before, h2.page_about--h2::after {
  content: "";
  width: 100vw;
  height: 1px;
  background-color: #959595;
  position: absolute;
  top: 50%;
}
h2.page_about--h2::before {
  left: -1em;
  transform: translate(-100%, -50%);
}
h2.page_about--h2::after {
  right: -1em;
  transform: translate(100%, -50%);
}
@media screen and (min-width: 1025px) {
  h2.page_about--h2 br {
    display: none;
  }
}

section.page_about--section.section02 {
  padding: 12% 0 0;
  background-color: #E5F0F3;
}
@media screen and (min-width: 600px) {
  section.page_about--section.section02 {
    padding: 8% 0 0;
  }
}
@media screen and (min-width: 768px) {
  section.page_about--section.section02 {
    padding: 6% 0 0;
  }
}
@media screen and (min-width: 1025px) {
  section.page_about--section.section02 {
    padding: 60px 0 0;
  }
}
section.page_about--section.section02 .section_container {
  padding-bottom: 10%;
  overflow: hidden;
}
@media screen and (min-width: 600px) {
  section.page_about--section.section02 .section_container {
    padding-bottom: 8%;
  }
}
@media screen and (min-width: 768px) {
  section.page_about--section.section02 .section_container {
    padding-bottom: 7%;
  }
}
@media screen and (min-width: 1025px) {
  section.page_about--section.section02 .section_container {
    padding-bottom: 70px;
  }
}
section.page_about--section.section02 .section_container h2.page_about--h2 {
  margin-bottom: 2em;
}
@media screen and (min-width: 600px) {
  section.page_about--section.section02 .section_container h2.page_about--h2 {
    margin-bottom: 1em;
  }
}
section.page_about--section.section02 .section_container p.profile_text {
  text-align: center;
  color: #13568B;
  font-size: 4.6vw;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 2em;
}
@media screen and (min-width: 600px) {
  section.page_about--section.section02 .section_container p.profile_text {
    font-size: 2.9vw;
    margin-bottom: 2.5em;
  }
}
@media screen and (min-width: 768px) {
  section.page_about--section.section02 .section_container p.profile_text {
    font-size: 2.3vw;
  }
}
@media screen and (min-width: 1025px) {
  section.page_about--section.section02 .section_container p.profile_text {
    font-size: 22px;
  }
}
@media screen and (min-width: 600px) {
  section.page_about--section.section02 .section_container p.profile_text br {
    display: none;
  }
}

dl.page_about_section02--dl {
  font-size: 3.8vw;
  margin-bottom: 1.5em;
}
@media screen and (min-width: 600px) {
  dl.page_about_section02--dl {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 768px) {
  dl.page_about_section02--dl {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  dl.page_about_section02--dl {
    font-size: 18px;
  }
}
dl.page_about_section02--dl dt {
  text-align: center;
  color: #13568B;
  font-size: 1.13em;
  font-weight: bold;
  line-height: 1.4;
  padding: 0.7em 0;
  margin-bottom: 1.5em;
  background-color: #fff;
  border-radius: 5em;
}
@media screen and (min-width: 768px) {
  dl.page_about_section02--dl dt {
    width: -moz-max-content;
    width: max-content;
    padding: 0.7em 2em;
  }
}
@media screen and (min-width: 600px) {
  dl.page_about_section02--dl dt br {
    display: none;
  }
}
dl.page_about_section02--dl dd:not(:last-of-type) {
  margin-bottom: 2em;
}
dl.page_about_section02--dl dd ul li {
  line-height: 1.4;
  padding: 0 0 0.5em 1.4em;
  margin-bottom: 0.5em;
  border-bottom: 1px solid #13568B;
  list-style: none;
  position: relative;
}
dl.page_about_section02--dl dd ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.page_about_section02--textBox {
  font-size: 3.8vw;
  padding: 2em 1.5em;
  background-color: #fff;
  border-radius: 20px;
}
@media screen and (min-width: 600px) {
  .page_about_section02--textBox {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 768px) {
  .page_about_section02--textBox {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  .page_about_section02--textBox {
    font-size: 18px;
    padding: 2em 2.5em;
  }
}
.page_about_section02--textBox h3 {
  text-align: center;
  color: #13568B;
  font-size: 1.3em;
  font-weight: bold;
  padding-bottom: 1.2em;
  margin-bottom: 1.2em;
  position: relative;
}
.page_about_section02--textBox h3::before {
  content: "";
  width: 1em;
  height: 1px;
  background-color: #13568B;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}
@media screen and (min-width: 1025px) {
  .page_about_section02--textBox h3::before {
    width: 2em;
  }
}
.page_about_section02--textBox p {
  color: #13568B;
  font-weight: bold;
  line-height: 1.6;
}
.page_about_section02--textBox p:not(:last-of-type) {
  margin-bottom: 1em;
}

.page_about_sectio02--tableContainer {
  padding: 10% 0 15%;
  background-color: #fff;
}
@media screen and (min-width: 600px) {
  .page_about_sectio02--tableContainer {
    padding: 7% 0 12%;
  }
}
@media screen and (min-width: 768px) {
  .page_about_sectio02--tableContainer {
    padding: 6% 0 10%;
  }
}
@media screen and (min-width: 1025px) {
  .page_about_sectio02--tableContainer {
    padding: 60px 0 100px;
  }
}
.page_about_sectio02--tableContainer p {
  font-size: 3.8vw;
  line-height: 1.6;
  width: 80%;
  margin-inline: auto;
  margin: 2em auto 0;
}
@media screen and (min-width: 600px) {
  .page_about_sectio02--tableContainer p {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 768px) {
  .page_about_sectio02--tableContainer p {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  .page_about_sectio02--tableContainer p {
    font-size: 18px;
    max-width: 1100px;
  }
}
.page_about_sectio02--tableContainer p a {
  color: inherit;
  border-bottom: 1px solid;
}
.page_about_sectio02--tableContainer p a:hover {
  opacity: 0.7;
}

.page_about_sectio02--tableBox {
  width: 90vw;
  margin: 0 0 0 auto;
  overflow-x: scroll;
}
@media screen and (min-width: 1025px) {
  .page_about_sectio02--tableBox {
    width: 80%;
    max-width: 1100px;
    margin: 0 auto;
    overflow-x: auto;
  }
}
.page_about_sectio02--tableBox::-webkit-scrollbar {
  width: 12px;
}
.page_about_sectio02--tableBox::-webkit-scrollbar-thumb {
  background-color: #fff;
  border: 3px solid #D9D9D9;
  border-radius: 20px;
}
.page_about_sectio02--tableBox::-webkit-scrollbar-track {
  background-color: #D9D9D9;
  border-radius: 20px;
}

.page_about_sectio02--table {
  font-size: 3.8vw;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(9, 6em);
  gap: 3px;
}
@media screen and (min-width: 600px) {
  .page_about_sectio02--table {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 768px) {
  .page_about_sectio02--table {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  .page_about_sectio02--table {
    font-size: 18px;
    width: 100%;
    grid-template-columns: repeat(9, 1fr);
  }
}
.page_about_sectio02--table div {
  font-size: inherit;
  font-weight: bold;
  line-height: 1.4;
  padding: 0.6em 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page_about_sectio02--table div.title {
  text-align: center;
  color: #fff;
  background-color: #13568B;
}
.page_about_sectio02--table div.title span {
  font-size: 0.8em;
}
.page_about_sectio02--table div.content {
  background-color: #E5F0F3;
}
.page_about_sectio02--table div.columns_09 {
  grid-column: span 9;
}

section.page_about--section.section03 {
  padding: 0 0 20%;
}
@media screen and (min-width: 600px) {
  section.page_about--section.section03 {
    padding: 0 0 14%;
  }
}
@media screen and (min-width: 768px) {
  section.page_about--section.section03 {
    padding: 0 0 12%;
  }
}
@media screen and (min-width: 1025px) {
  section.page_about--section.section03 {
    padding: 0 0 120px;
  }
}
section.page_about--section.section03 .section_container h2 {
  text-align: center;
  color: #fff;
  font-size: 5.4vw;
  margin: 0 auto 3em;
  position: relative;
}
@media screen and (min-width: 600px) {
  section.page_about--section.section03 .section_container h2 {
    font-size: 3.4vw;
    margin: 0 auto 3.5em;
  }
}
@media screen and (min-width: 768px) {
  section.page_about--section.section03 .section_container h2 {
    font-size: 2.8vw;
  }
}
@media screen and (min-width: 1025px) {
  section.page_about--section.section03 .section_container h2 {
    font-size: 26px;
    margin: 0 auto 4em;
  }
}
section.page_about--section.section03 .section_container h2::before {
  content: "";
  width: 100%;
  height: 1px;
  background-size: 4px 1px;
  background-image: linear-gradient(to right, #fff 0px, #fff 2px, transparent 2px);
  background-repeat: repeat-x;
  background-position: left bottom;
  position: absolute;
  top: calc(0.6em + 4px);
  left: 0;
  z-index: 1;
}
section.page_about--section.section03 .section_container h2 span.ribbon {
  width: calc(15% + 1em);
  height: 100%;
  background-color: #f27844;
  position: absolute;
  top: 0.6em;
}
@media screen and (min-width: 1025px) {
  section.page_about--section.section03 .section_container h2 span.ribbon {
    width: calc(12% + 1em);
  }
}
section.page_about--section.section03 .section_container h2 span.ribbon.left_ribbon {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 25% 50%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 25% 50%);
  left: 0;
}
@media screen and (min-width: 1025px) {
  section.page_about--section.section03 .section_container h2 span.ribbon.left_ribbon {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 20% 50%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 20% 50%);
  }
}
section.page_about--section.section03 .section_container h2 span.ribbon.right_ribbon {
  -webkit-clip-path: polygon(0 0, 100% 0, 75% 50%, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 75% 50%, 100% 100%, 0 100%);
  right: 0;
}
@media screen and (min-width: 1025px) {
  section.page_about--section.section03 .section_container h2 span.ribbon.right_ribbon {
    -webkit-clip-path: polygon(0 0, 100% 0, 80% 50%, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 80% 50%, 100% 100%, 0 100%);
  }
}
section.page_about--section.section03 .section_container h2 span.ribbon::before {
  content: "";
  width: 100%;
  height: 1px;
  background-size: 4px 1px;
  background-image: linear-gradient(to right, #fff 0px, #fff 2px, transparent 2px);
  background-repeat: repeat-x;
  background-position: left bottom;
  position: absolute;
  bottom: 4px;
  left: 0;
  z-index: 1;
}
section.page_about--section.section03 .section_container h2 span.ribbon::after {
  content: "";
  width: 1em;
  height: 0.6em;
  background-color: #d45a26;
  position: absolute;
  bottom: 0;
  z-index: 1;
}
section.page_about--section.section03 .section_container h2 span.ribbon.left_ribbon::after {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%);
  right: 0;
}
section.page_about--section.section03 .section_container h2 span.ribbon.right_ribbon::after {
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%);
  left: 0;
}
section.page_about--section.section03 .section_container h2 span.text {
  padding: 0.75em 0;
  width: 70%;
  margin-inline: auto;
  background-color: #F0662B;
  display: block;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1025px) {
  section.page_about--section.section03 .section_container h2 span.text {
    width: 76%;
  }
}
section.page_about--section.section03 .section_container h2 span.text::before, section.page_about--section.section03 .section_container h2 span.text::after {
  content: "";
  width: 100%;
  height: 1px;
  background-size: 4px 1px;
  background-image: linear-gradient(to right, #fff 0px, #fff 2px, transparent 2px);
  background-repeat: repeat-x;
  background-position: left bottom;
  position: absolute;
  left: 0;
}
section.page_about--section.section03 .section_container h2 span.text::before {
  top: 4px;
}
section.page_about--section.section03 .section_container h2 span.text::after {
  bottom: 4px;
}

dl.page_about_section03--dl {
  font-size: 4vw;
  margin: 0 auto 3.5em;
  position: relative;
}
@media screen and (min-width: 600px) {
  dl.page_about_section03--dl {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 768px) {
  dl.page_about_section03--dl {
    font-size: 2vw;
    width: calc(100% - 10vw);
    box-sizing: border-box;
  }
}
@media screen and (min-width: 1025px) {
  dl.page_about_section03--dl {
    font-size: 18px;
    width: 80%;
    margin: 0 auto 4em;
  }
}
dl.page_about_section03--dl::before, dl.page_about_section03--dl::after {
  content: "";
  width: 1px;
  height: calc(100% + 10vw);
  background-color: #F0662A;
  position: absolute;
  top: -5vw;
}
@media screen and (min-width: 768px) {
  dl.page_about_section03--dl::before, dl.page_about_section03--dl::after {
    height: calc(100% + 8vw);
    top: -4vw;
  }
}
@media screen and (min-width: 1025px) {
  dl.page_about_section03--dl::before, dl.page_about_section03--dl::after {
    height: calc(100% + 80px);
    top: -40px;
  }
}
dl.page_about_section03--dl::before {
  left: 0;
}
dl.page_about_section03--dl::after {
  right: 0;
}
dl.page_about_section03--dl dt {
  color: #F0662A;
  font-size: 4.8vw;
  font-weight: bold;
  line-height: 1.4;
  width: -moz-max-content;
  width: max-content;
  padding: 1.5em 0.5em 0.5em;
  margin: 0 auto 1.5em;
  border-bottom: 1px solid #F0662A;
}
@media screen and (min-width: 600px) {
  dl.page_about_section03--dl dt {
    font-size: 3.1vw;
  }
}
@media screen and (min-width: 768px) {
  dl.page_about_section03--dl dt {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 1025px) {
  dl.page_about_section03--dl dt {
    font-size: 23px;
    padding: 1.8em 0.5em 0.5em;
  }
}
dl.page_about_section03--dl dt:first-of-type::before {
  content: "";
  width: 90vw;
  height: 1px;
  background-color: #F0662A;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
}
@media screen and (min-width: 768px) {
  dl.page_about_section03--dl dt:first-of-type::before {
    width: 78vw;
  }
}
@media screen and (min-width: 1025px) {
  dl.page_about_section03--dl dt:first-of-type::before {
    width: calc(100% + 80px);
  }
}
dl.page_about_section03--dl dd {
  padding: 0 1em 1.5em;
  position: relative;
}
@media screen and (min-width: 600px) {
  dl.page_about_section03--dl dd {
    padding: 0 2em 1.5em;
  }
}
@media screen and (min-width: 1025px) {
  dl.page_about_section03--dl dd {
    padding: 0 3em 2em;
  }
}
dl.page_about_section03--dl dd::before {
  content: "";
  width: 90vw;
  height: 1px;
  background-color: #F0662A;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}
@media screen and (min-width: 768px) {
  dl.page_about_section03--dl dd::before {
    width: 78vw;
  }
}
@media screen and (min-width: 1025px) {
  dl.page_about_section03--dl dd::before {
    width: calc(100% + 80px);
  }
}
dl.page_about_section03--dl dd p {
  line-height: 1.6;
}
dl.page_about_section03--dl dd p.name {
  text-align: right;
  font-weight: bold;
  margin-top: 1.5em;
}
@media screen and (min-width: 1025px) {
  dl.page_about_section03--dl dd p.name {
    margin-top: 2em;
  }
}
@media screen and (min-width: 600px) {
  dl.page_about_section03--dl dd p.name br {
    display: none;
  }
}

.page_about_section03--textBox {
  text-align: center;
  font-size: 3.8vw;
  background-color: #F0662B;
  border-radius: 0 40px 40px 40px;
  padding: 2em 0;
  position: relative;
}
@media screen and (min-width: 600px) {
  .page_about_section03--textBox {
    font-size: 2.5vw;
    width: -moz-max-content;
    width: max-content;
    padding: 2em 4em;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .page_about_section03--textBox {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  .page_about_section03--textBox {
    font-size: 18px;
    padding: 2.5em 4em;
  }
}
.page_about_section03--textBox::before {
  content: "";
  width: calc(100% - 1em);
  height: calc(100% - 1em);
  border: 1px solid #fff;
  border-radius: 0 35px 35px 35px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.page_about_section03--textBox p {
  color: #fff;
  font-weight: bold;
  line-height: 1.6;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page_about_section03--textBox p br {
    display: none;
  }
}

section.page_about--section.section04 {
  padding: 0 0 18%;
}
@media screen and (min-width: 600px) {
  section.page_about--section.section04 {
    padding: 0 0 14%;
  }
}
@media screen and (min-width: 768px) {
  section.page_about--section.section04 {
    padding: 0 0 11%;
  }
}
@media screen and (min-width: 1025px) {
  section.page_about--section.section04 {
    padding: 0 0 100px;
  }
}
section.page_about--section.section04 .section_container {
  overflow: hidden;
  padding-top: 70px;
  margin-top: -70px;
}
@media screen and (min-width: 1025px) {
  section.page_about--section.section04 .section_container {
    padding-top: 140px;
    margin-top: -140px;
  }
}
section.page_about--section.section04 .section_container h2.page_about--h2 {
  margin-bottom: 3em;
}
@media screen and (min-width: 600px) {
  section.page_about--section.section04 .section_container h2.page_about--h2 {
    margin-bottom: 2.5em;
  }
}
@media screen and (min-width: 768px) {
  section.page_about--section.section04 .section_container h2.page_about--h2 {
    margin-bottom: 2em;
  }
}

.page_about_section04--dl {
  font-size: 3.8vw;
}
@media screen and (min-width: 600px) {
  .page_about_section04--dl {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 768px) {
  .page_about_section04--dl {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  .page_about_section04--dl {
    font-size: 18px;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
  }
}
.page_about_section04--dl dt, .page_about_section04--dl dd {
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.page_about_section04--dl dt {
  font-weight: bold;
  margin-bottom: 1em;
}
@media screen and (min-width: 1025px) {
  .page_about_section04--dl dt {
    padding: 1.2em 0.5em;
    margin: 0;
    border-bottom: 1px solid #959595;
  }
}
.page_about_section04--dl dd {
  border-bottom: 1px solid #959595;
  padding-bottom: 1.5em;
}
@media screen and (min-width: 1025px) {
  .page_about_section04--dl dd {
    padding: 1.2em 0;
  }
}
.page_about_section04--dl dd:not(:last-of-type) {
  margin-bottom: 1.5em;
}
@media screen and (min-width: 1025px) {
  .page_about_section04--dl dd:not(:last-of-type) {
    margin: 0;
  }
}
@media screen and (min-width: 1025px) {
  .page_about_section04--dl dd br.br_sp {
    display: none;
  }
}

.page_about--scrollBox {
  font-size: 3.8vw;
  height: 22em;
  padding: 1.8em;
  background-color: #EEE;
  overflow-y: scroll;
}
@media screen and (min-width: 600px) {
  .page_about--scrollBox {
    font-size: 2.4vw;
  }
}
@media screen and (min-width: 768px) {
  .page_about--scrollBox {
    font-size: 1.9vw;
  }
}
@media screen and (min-width: 1025px) {
  .page_about--scrollBox {
    font-size: 16px;
    height: 18em;
  }
}
.page_about--scrollBox::-webkit-scrollbar {
  width: 12px;
}
.page_about--scrollBox::-webkit-scrollbar-thumb {
  background-color: #fff;
  border: 3px solid #D9D9D9;
  border-radius: 20px;
}
.page_about--scrollBox::-webkit-scrollbar-track {
  background-color: #D9D9D9;
  border-radius: 20px;
}
.page_about--scrollBox p.text {
  margin-bottom: 2em;
}
.page_about--scrollBox p.text span {
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 0.7em;
  display: block;
}

section.page_about--section.section05 {
  padding: 0 0 18%;
}
@media screen and (min-width: 600px) {
  section.page_about--section.section05 {
    padding: 0 0 14%;
  }
}
@media screen and (min-width: 768px) {
  section.page_about--section.section05 {
    padding: 0 0 11%;
  }
}
@media screen and (min-width: 1025px) {
  section.page_about--section.section05 {
    padding: 0 0 100px;
  }
}
section.page_about--section.section05 .section_container {
  padding-top: 70px;
  margin-top: -70px;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  section.page_about--section.section05 .section_container {
    padding-top: 140px;
    margin-top: -140px;
  }
}
section.page_about--section.section05 .section_container h2.page_about--h2 {
  margin-bottom: 1.2em;
}

dl.page_about_section05--dl dt, dl.page_about_section05--dl dd {
  line-height: 1.2;
}
dl.page_about_section05--dl dt {
  font-weight: bold;
  margin-bottom: 1.5em;
}
dl.page_about_section05--dl dd:not(:last-of-type) {
  margin-bottom: 2em;
}
dl.page_about_section05--dl dd p {
  line-height: 1.2;
  letter-spacing: 0.05em;
}
dl.page_about_section05--dl dd p:first-of-type {
  margin-bottom: 1.2em;
}
dl.page_about_section05--dl dd ul li {
  line-height: 1.2;
  letter-spacing: 0.05em;
  list-style: none;
}
dl.page_about_section05--dl dd ul li:not(:last-of-type) {
  margin-bottom: 0.8em;
}

section.page_about--section.section06 {
  padding: 0 0 18%;
}
@media screen and (min-width: 600px) {
  section.page_about--section.section06 {
    padding: 0 0 12%;
  }
}
@media screen and (min-width: 768px) {
  section.page_about--section.section06 {
    padding: 0 0 9%;
  }
}
@media screen and (min-width: 1025px) {
  section.page_about--section.section06 {
    padding: 0 0 90px;
  }
}
section.page_about--section.section06 .section_container {
  overflow: hidden;
}
section.page_about--section.section06 .section_container h2.page_about--h2 {
  margin-bottom: 1.2em;
}

ul.page_about_section06--ul {
  margin-bottom: 2.5em;
}
ul.page_about_section06--ul > li {
  list-style: none;
  padding-left: 1.5em;
  position: relative;
  counter-increment: number;
}
ul.page_about_section06--ul > li:not(:last-of-type) {
  margin-bottom: 1.2em;
}
ul.page_about_section06--ul > li::before {
  content: counter(number) ".";
  line-height: 1.2;
  position: absolute;
  left: 0;
  top: 0;
}
ul.page_about_section06--ul > li p {
  line-height: 1.2;
  letter-spacing: 0.05em;
}
ul.page_about_section06--ul > li p:first-of-type {
  margin-bottom: 1.2em;
}
ul.page_about_section06--ul > li ul li {
  line-height: 1.2;
  letter-spacing: 0.05em;
  list-style: none;
}
ul.page_about_section06--ul > li ul li:not(:last-of-type) {
  margin-bottom: 0.5em;
}

.page_about_section06--notesBox {
  font-size: 3.8vw;
}
@media screen and (min-width: 600px) {
  .page_about_section06--notesBox {
    font-size: 2.4vw;
  }
}
@media screen and (min-width: 768px) {
  .page_about_section06--notesBox {
    font-size: 1.9vw;
  }
}
@media screen and (min-width: 1025px) {
  .page_about_section06--notesBox {
    font-size: 16px;
  }
}
.page_about_section06--notesBox ul li {
  padding-left: 2em;
  list-style: none;
  position: relative;
  counter-increment: number;
}
.page_about_section06--notesBox ul li:not(:last-of-type) {
  margin-bottom: 1em;
}
.page_about_section06--notesBox ul li::before {
  content: "※" counter(number);
  line-height: 1.2;
  position: absolute;
  left: 0;
  top: 0;
}
.page_about_section06--notesBox ul li p {
  line-height: 1.2;
  letter-spacing: 0.05em;
}

section.page_about--section.section07 {
  padding: 0 0 18%;
}
@media screen and (min-width: 600px) {
  section.page_about--section.section07 {
    padding: 0 0 10%;
  }
}
@media screen and (min-width: 768px) {
  section.page_about--section.section07 {
    padding: 0 0 7%;
  }
}
@media screen and (min-width: 1025px) {
  section.page_about--section.section07 {
    padding: 0 0 60px;
  }
}
section.page_about--section.section07 .section_container h2 {
  font-size: 4vw;
  margin-bottom: 2em;
}
@media screen and (min-width: 600px) {
  section.page_about--section.section07 .section_container h2 {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 768px) {
  section.page_about--section.section07 .section_container h2 {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  section.page_about--section.section07 .section_container h2 {
    font-size: 18px;
    display: flex;
    align-items: baseline;
    gap: 0 1.2em;
  }
}
section.page_about--section.section07 .section_container h2 span {
  display: block;
}
section.page_about--section.section07 .section_container h2 span.eng {
  font-size: 2.14em;
  font-weight: 900;
  margin-bottom: 0.4em;
}
@media screen and (min-width: 1025px) {
  section.page_about--section.section07 .section_container h2 span.eng {
    margin: 0;
  }
}
section.page_about--section.section07 .section_container h2 span.ja {
  color: #13568B;
  font-weight: 500;
}
section.page_about--section.section07 .section_container .button_box {
  font-size: 4.8vw;
  margin-bottom: 1.2em;
  display: grid;
  gap: 1.5em 0;
}
@media screen and (min-width: 600px) {
  section.page_about--section.section07 .section_container .button_box {
    font-size: 3.1vw;
  }
}
@media screen and (min-width: 768px) {
  section.page_about--section.section07 .section_container .button_box {
    font-size: 2.5vw;
    margin-bottom: 1em;
    grid-template-columns: 1fr 1fr;
    gap: 0 1em;
  }
}
@media screen and (min-width: 1025px) {
  section.page_about--section.section07 .section_container .button_box {
    font-size: 23px;
    margin-bottom: 0.7em;
    gap: 0 2.5em;
  }
}
section.page_about--section.section07 .section_container .button_box a {
  color: #fff;
  font-weight: 500;
  background-color: #13568B;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em 0;
  aspect-ratio: 2/1;
}
@media screen and (min-width: 600px) {
  section.page_about--section.section07 .section_container .button_box a {
    aspect-ratio: 3/1;
  }
}
@media screen and (min-width: 768px) {
  section.page_about--section.section07 .section_container .button_box a {
    aspect-ratio: 2/1;
  }
}
@media screen and (min-width: 1025px) {
  section.page_about--section.section07 .section_container .button_box a {
    aspect-ratio: 2.4/1;
  }
}
section.page_about--section.section07 .section_container .button_box a:hover {
  opacity: 0.7;
}
section.page_about--section.section07 .section_container .button_box a span.border {
  border-bottom: 1px solid #fff;
}
section.page_about--section.section07 .section_container p.text {
  color: #13568B;
  font-size: 4.3vw;
  line-height: 1.4;
  padding-left: 1.2em;
  position: relative;
}
@media screen and (min-width: 600px) {
  section.page_about--section.section07 .section_container p.text {
    font-size: 2.7vw;
  }
}
@media screen and (min-width: 768px) {
  section.page_about--section.section07 .section_container p.text {
    font-size: 2.2vw;
  }
}
@media screen and (min-width: 1025px) {
  section.page_about--section.section07 .section_container p.text {
    font-size: 18px;
  }
}
section.page_about--section.section07 .section_container p.text::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

nav.page_recruit--nav {
  font-size: 3.8vw;
  width: 80%;
  margin: 2em auto 4em;
}
@media screen and (min-width: 600px) {
  nav.page_recruit--nav {
    font-size: 2.4vw;
  }
}
@media screen and (min-width: 768px) {
  nav.page_recruit--nav {
    font-size: 1.9vw;
  }
}
@media screen and (min-width: 1025px) {
  nav.page_recruit--nav {
    font-size: 16px;
    width: 90%;
    max-width: 1100px;
    margin: 2.5em auto 3.5em;
  }
}
nav.page_recruit--nav ul {
  display: grid;
  gap: 1.5em 0;
}
@media screen and (min-width: 600px) {
  nav.page_recruit--nav ul {
    grid-template-columns: 1fr 1fr;
    gap: 0 1em;
  }
}
@media screen and (min-width: 768px) {
  nav.page_recruit--nav ul {
    grid-template-columns: 16em 16em;
    gap: 0 1.5em;
  }
}
nav.page_recruit--nav ul li {
  text-align: center;
  list-style: none;
}
nav.page_recruit--nav ul li a {
  color: #13568B;
  font-weight: bold;
  padding: 0.9em 0;
  border: 2px solid #13568B;
  border-radius: 5em;
  display: block;
  position: relative;
}
nav.page_recruit--nav ul li a::before {
  content: "\f063";
  font-size: 1.2em;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(-2em, -50%);
}
@media screen and (min-width: 600px) {
  nav.page_recruit--nav ul li a::before {
    transform: translate(-1.2em, -50%);
  }
}

.page_recruit--section {
  padding: 0 0 20%;
}
@media screen and (min-width: 600px) {
  .page_recruit--section {
    padding: 0 0 12%;
  }
}
@media screen and (min-width: 768px) {
  .page_recruit--section {
    padding: 0 0 9%;
  }
}
@media screen and (min-width: 1025px) {
  .page_recruit--section {
    padding: 0 0 90px;
  }
}
.page_recruit--section .section_container {
  width: 80%;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  .page_recruit--section .section_container {
    width: 90%;
    max-width: 1100px;
  }
}
.page_recruit--section .section_container h2.page_recruit--h2 {
  font-size: 4.3vw;
  line-height: 1.4;
  padding-left: 0.6em;
  margin-bottom: 1.5em;
  position: relative;
}
@media screen and (min-width: 600px) {
  .page_recruit--section .section_container h2.page_recruit--h2 {
    font-size: 3vw;
  }
}
@media screen and (min-width: 768px) {
  .page_recruit--section .section_container h2.page_recruit--h2 {
    font-size: 2.7vw;
  }
}
@media screen and (min-width: 1025px) {
  .page_recruit--section .section_container h2.page_recruit--h2 {
    font-size: 24px;
    padding-left: 1.1em;
  }
}
.page_recruit--section .section_container h2.page_recruit--h2::before {
  content: "";
  width: 5px;
  height: 1.3em;
  background-color: #13568B;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(0, 10%);
}
@media screen and (min-width: 600px) {
  .page_recruit--section .section_container h2.page_recruit--h2::before {
    top: 50%;
    transform: translate(0, -50%);
  }
}
@media screen and (min-width: 1025px) {
  .page_recruit--section .section_container h2.page_recruit--h2::before {
    width: 10px;
    height: 1.8em;
  }
}
.page_recruit--section .section_container .page_recruit--textBox {
  font-size: 3.8vw;
  margin-bottom: 5em;
}
@media screen and (min-width: 600px) {
  .page_recruit--section .section_container .page_recruit--textBox {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 768px) {
  .page_recruit--section .section_container .page_recruit--textBox {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  .page_recruit--section .section_container .page_recruit--textBox {
    font-size: 18px;
    padding-left: 30px;
  }
}
.page_recruit--section .section_container .page_recruit--textBox p {
  line-height: 1.8;
  margin-bottom: 0.5em;
}
.page_recruit--section .section_container a {
  text-align: center;
  color: #fff;
  font-size: 4.3vw;
  width: 14.3em;
  padding: 1.2em 0;
  margin-inline: auto;
  background-color: #13568B;
  border-radius: 10px;
  display: block;
}
@media screen and (min-width: 600px) {
  .page_recruit--section .section_container a {
    font-size: 2.9vw;
  }
}
@media screen and (min-width: 768px) {
  .page_recruit--section .section_container a {
    font-size: 2.4vw;
  }
}
@media screen and (min-width: 1025px) {
  .page_recruit--section .section_container a {
    font-size: 22px;
    width: 19.2em;
    padding: 1.3em 0;
  }
}
.page_recruit--section .section_container a:hover {
  opacity: 0.7;
}

.page_recruit--itemBox {
  padding-top: 80px;
  margin-top: -80px;
}
@media screen and (min-width: 1025px) {
  .page_recruit--itemBox {
    padding-top: 130px;
    margin-top: -130px;
  }
}
.page_recruit--itemBox:not(:last-of-type) {
  margin-bottom: 30%;
}
@media screen and (min-width: 600px) {
  .page_recruit--itemBox:not(:last-of-type) {
    margin-bottom: 22%;
  }
}
@media screen and (min-width: 768px) {
  .page_recruit--itemBox:not(:last-of-type) {
    margin-bottom: 18%;
  }
}
@media screen and (min-width: 768px) and (min-width: 1025px) {
  .page_recruit--itemBox:not(:last-of-type) {
    margin-bottom: 140px;
  }
}
.page_recruit--itemBox h3 {
  text-align: center;
  font-size: 4.8vw;
  margin-bottom: 2.2em;
  position: relative;
}
@media screen and (min-width: 600px) {
  .page_recruit--itemBox h3 {
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 768px) {
  .page_recruit--itemBox h3 {
    font-size: 2.7vw;
  }
}
@media screen and (min-width: 1025px) {
  .page_recruit--itemBox h3 {
    font-size: 25px;
  }
}
.page_recruit--itemBox h3::before, .page_recruit--itemBox h3::after {
  content: "";
  width: 3em;
  height: 1px;
  background-color: #0E3E65;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
@media screen and (min-width: 600px) {
  .page_recruit--itemBox h3::before, .page_recruit--itemBox h3::after {
    width: 6em;
  }
}
@media screen and (min-width: 768px) {
  .page_recruit--itemBox h3::before, .page_recruit--itemBox h3::after {
    width: 9em;
  }
}
@media screen and (min-width: 1025px) {
  .page_recruit--itemBox h3::before, .page_recruit--itemBox h3::after {
    width: 16em;
  }
}
.page_recruit--itemBox h3::before {
  left: 0;
}
.page_recruit--itemBox h3::after {
  right: 0;
}
.page_recruit--itemBox dl {
  font-size: 3.8vw;
  margin-bottom: 2.5em;
}
@media screen and (min-width: 600px) {
  .page_recruit--itemBox dl {
    font-size: 2.4vw;
  }
}
@media screen and (min-width: 768px) {
  .page_recruit--itemBox dl {
    font-size: 1.9vw;
  }
}
@media screen and (min-width: 1025px) {
  .page_recruit--itemBox dl {
    font-size: 17px;
    margin-bottom: 3em;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 3px;
  }
}
.page_recruit--itemBox dl dt, .page_recruit--itemBox dl dd {
  line-height: 1.4;
  padding: 1em 1.5em;
}
@media screen and (min-width: 1025px) {
  .page_recruit--itemBox dl dt, .page_recruit--itemBox dl dd {
    padding: 1.2em 1.8em;
  }
}
.page_recruit--itemBox dl dt {
  font-weight: bold;
  background-color: #E5F0F3;
}
.page_recruit--itemBox dl dd {
  background-color: #F1F1F1;
}
.page_recruit--itemBox dl dd:not(:last-of-type) {
  margin-bottom: 0.4em;
}
@media screen and (min-width: 1025px) {
  .page_recruit--itemBox dl dd:not(:last-of-type) {
    margin: 0;
  }
}
.page_recruit--itemBox dl dd p {
  line-height: 1.4;
}
.page_recruit--itemBox dl dd p.orange {
  color: #F0662A;
}
@media screen and (min-width: 600px) {
  .page_recruit--itemBox dl dd p br.br_sp {
    display: none;
  }
}

h2.page_test--h2 {
  font-size: 4.3vw;
  line-height: 1.4;
  padding-left: 0.6em;
  position: relative;
}
@media screen and (min-width: 600px) {
  h2.page_test--h2 {
    font-size: 3vw;
  }
}
@media screen and (min-width: 768px) {
  h2.page_test--h2 {
    font-size: 2.7vw;
  }
}
@media screen and (min-width: 1025px) {
  h2.page_test--h2 {
    font-size: 24px;
    padding-left: 1.1em;
  }
}
h2.page_test--h2::before {
  content: "";
  width: 5px;
  height: 1.3em;
  background-color: #13568B;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(0, 10%);
}
@media screen and (min-width: 600px) {
  h2.page_test--h2::before {
    top: 50%;
    transform: translate(0, -50%);
  }
}
@media screen and (min-width: 1025px) {
  h2.page_test--h2::before {
    width: 10px;
    height: 1.8em;
  }
}
@media screen and (min-width: 600px) {
  h2.page_test--h2 br {
    display: none;
  }
}

section.page_test--section.section01 .section_container,
section.page_test--section.section02 .section_container,
section.page_test--section.section04 .section_container {
  width: 80%;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  section.page_test--section.section01 .section_container,
  section.page_test--section.section02 .section_container,
  section.page_test--section.section04 .section_container {
    width: 90%;
    max-width: 1100px;
  }
}
section.page_test--section.section01 .section_container h2.page_test--h2,
section.page_test--section.section02 .section_container h2.page_test--h2,
section.page_test--section.section04 .section_container h2.page_test--h2 {
  margin-bottom: 1.8em;
}
section.page_test--section.section01 .section_container .text_box,
section.page_test--section.section02 .section_container .text_box,
section.page_test--section.section04 .section_container .text_box {
  font-size: 3.8vw;
  margin-bottom: 2.5em;
}
@media screen and (min-width: 600px) {
  section.page_test--section.section01 .section_container .text_box,
  section.page_test--section.section02 .section_container .text_box,
  section.page_test--section.section04 .section_container .text_box {
    font-size: 2.5vw;
    margin-bottom: 2em;
  }
}
@media screen and (min-width: 768px) {
  section.page_test--section.section01 .section_container .text_box,
  section.page_test--section.section02 .section_container .text_box,
  section.page_test--section.section04 .section_container .text_box {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  section.page_test--section.section01 .section_container .text_box,
  section.page_test--section.section02 .section_container .text_box,
  section.page_test--section.section04 .section_container .text_box {
    font-size: 18px;
    padding-left: 30px;
  }
}
section.page_test--section.section01 .section_container .text_box p,
section.page_test--section.section02 .section_container .text_box p,
section.page_test--section.section04 .section_container .text_box p {
  line-height: 1.8;
  margin-bottom: 0.5em;
}
section.page_test--section.section01 .section_container .text_box p span,
section.page_test--section.section02 .section_container .text_box p span,
section.page_test--section.section04 .section_container .text_box p span {
  padding: 0 0.2em;
  background-color: rgba(250, 255, 0, 0.5);
}
section.page_test--section.section01 .section_container .text_box p br.br_pc,
section.page_test--section.section02 .section_container .text_box p br.br_pc,
section.page_test--section.section04 .section_container .text_box p br.br_pc {
  display: none;
}
@media screen and (min-width: 1025px) {
  section.page_test--section.section01 .section_container .text_box p br.br_pc,
  section.page_test--section.section02 .section_container .text_box p br.br_pc,
  section.page_test--section.section04 .section_container .text_box p br.br_pc {
    display: block;
  }
}
section.page_test--section.section01 .section_container p.note,
section.page_test--section.section02 .section_container p.note,
section.page_test--section.section04 .section_container p.note {
  font-size: 3.2vw;
  line-height: 1.4;
}
@media screen and (min-width: 600px) {
  section.page_test--section.section01 .section_container p.note,
  section.page_test--section.section02 .section_container p.note,
  section.page_test--section.section04 .section_container p.note {
    font-size: 2.1vw;
  }
}
@media screen and (min-width: 768px) {
  section.page_test--section.section01 .section_container p.note,
  section.page_test--section.section02 .section_container p.note,
  section.page_test--section.section04 .section_container p.note {
    font-size: 1.8vw;
  }
}
@media screen and (min-width: 1025px) {
  section.page_test--section.section01 .section_container p.note,
  section.page_test--section.section02 .section_container p.note,
  section.page_test--section.section04 .section_container p.note {
    font-size: 16px;
  }
}

.page_test_section--tableBox {
  width: 90vw;
  overflow-x: scroll;
}
@media screen and (min-width: 1025px) {
  .page_test_section--tableBox {
    width: 100%;
    overflow-x: auto;
  }
}
.page_test_section--tableBox.tableBox01 {
  margin-bottom: 12%;
}
@media screen and (min-width: 600px) {
  .page_test_section--tableBox.tableBox01 {
    margin-bottom: 10%;
  }
}
@media screen and (min-width: 768px) {
  .page_test_section--tableBox.tableBox01 {
    margin-bottom: 8%;
  }
}
@media screen and (min-width: 1025px) {
  .page_test_section--tableBox.tableBox01 {
    margin-bottom: 55px;
  }
}
.page_test_section--tableBox.tableBox02 {
  margin-bottom: 3%;
}
@media screen and (min-width: 600px) {
  .page_test_section--tableBox.tableBox02 {
    margin-bottom: 2%;
  }
}
@media screen and (min-width: 768px) {
  .page_test_section--tableBox.tableBox02 {
    margin-bottom: 1%;
  }
}
@media screen and (min-width: 1025px) {
  .page_test_section--tableBox.tableBox02 {
    margin-bottom: 15px;
  }
}
.page_test_section--tableBox::-webkit-scrollbar {
  width: 12px;
}
.page_test_section--tableBox::-webkit-scrollbar-thumb {
  background-color: #fff;
  border: 3px solid #D9D9D9;
  border-radius: 20px;
}
.page_test_section--tableBox::-webkit-scrollbar-track {
  background-color: #D9D9D9;
  border-radius: 20px;
}

.page_test_section--table {
  text-align: center;
  font-size: 3.8vw;
  width: -moz-max-content;
  width: max-content;
  padding: 0;
  margin: 0 auto;
  display: grid;
  gap: 3px;
}
@media screen and (min-width: 600px) {
  .page_test_section--table {
    font-size: 2.4vw;
  }
}
@media screen and (min-width: 768px) {
  .page_test_section--table {
    font-size: 1.9vw;
  }
}
@media screen and (min-width: 1025px) {
  .page_test_section--table {
    font-size: 17px;
    width: 100%;
  }
}
.page_test_section--table h3 {
  text-align: center;
  color: #fff;
  font-size: 3.8vw;
  letter-spacing: 0.1em;
  padding: 0.6em 0;
  background-color: #13568B;
}
@media screen and (min-width: 600px) {
  .page_test_section--table h3 {
    font-size: 2.4vw;
  }
}
@media screen and (min-width: 768px) {
  .page_test_section--table h3 {
    font-size: 1.9vw;
  }
}
@media screen and (min-width: 1025px) {
  .page_test_section--table h3 {
    font-size: 17px;
  }
}
.page_test_section--table div {
  font-size: inherit;
  line-height: 1.6;
}
.page_test_section--table div.title {
  color: #fff;
  font-weight: 500;
  background-color: #13568B;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page_test_section--table div.title.column_title {
  letter-spacing: 0.1em;
}
.page_test_section--table div.content {
  background-color: #E5F0F3;
  display: flex;
  justify-content: center;
  align-items: center;
}

section.page_test--section.section01 {
  padding: 8% 0 14%;
}
@media screen and (min-width: 600px) {
  section.page_test--section.section01 {
    padding: 6% 0 12%;
  }
}
@media screen and (min-width: 768px) {
  section.page_test--section.section01 {
    padding: 6% 0 10%;
  }
}
@media screen and (min-width: 1025px) {
  section.page_test--section.section01 {
    padding: 70px 0 80px;
  }
}

.page_test_section--table.section01_table {
  grid-template-columns: repeat(7, 1fr);
}
.page_test_section--table.section01_table h3 {
  grid-column: span 7;
}
.page_test_section--table.section01_table div.title.column_title {
  padding: 0.6em 1.5em;
}
.page_test_section--table.section01_table div.content {
  padding: 0.8em 0;
}
.page_test_section--table.section01_table div.content:nth-of-type(7n + 6) {
  font-weight: bold;
}

section.page_test--section.section02 {
  padding: 0 0 18%;
}
@media screen and (min-width: 600px) {
  section.page_test--section.section02 {
    padding: 0 0 12%;
  }
}
@media screen and (min-width: 768px) {
  section.page_test--section.section02 {
    padding: 0 0 10%;
  }
}
@media screen and (min-width: 1025px) {
  section.page_test--section.section02 {
    padding: 0 0 80px;
  }
}

.page_test_section--table.section02_table {
  grid-template-columns: 2.2em 6.6em 6.6em 1fr 6.6em 1fr;
}
.page_test_section--table.section02_table h3 {
  grid-column: span 6;
}
.page_test_section--table.section02_table div.title:first-of-type {
  letter-spacing: 0.3em;
  writing-mode: vertical-rl;
}
.page_test_section--table.section02_table div.title.column_title {
  padding: 0.6em 0;
}
.page_test_section--table.section02_table div.title.row_title {
  letter-spacing: 0.3em;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.page_test_section--table.section02_table div.title.row_title.rows_07 {
  grid-row: span 7;
}
.page_test_section--table.section02_table div.title.row_title.rows_08 {
  grid-row: span 8;
}
.page_test_section--table.section02_table div.content {
  min-height: 4em;
}
.page_test_section--table.section02_table div.justify_left {
  padding-right: 1.5em;
  padding-left: 1.5em;
  justify-content: left;
}
.page_test_section--table.section02_table div.align_left {
  padding-right: 1.5em;
  padding-left: 1.5em;
  text-align: left;
  justify-content: left;
}
.page_test_section--table.section02_table div.rows_04 {
  padding-top: 1.2em;
  align-items: baseline;
  grid-row: span 4;
}
.page_test_section--table.section02_table div.rows_06 {
  padding-top: 1.2em;
  align-items: baseline;
  grid-row: span 6;
}
.page_test_section--table.section02_table div.rows_12 {
  padding-top: 1.2em;
  align-items: baseline;
  grid-row: span 12;
}
.page_test_section--table.section02_table div.rows_15 {
  padding-top: 1.2em;
  align-items: baseline;
  grid-row: span 15;
}

section.page_test--section.section03 {
  padding: 0 0 18%;
}
@media screen and (min-width: 600px) {
  section.page_test--section.section03 {
    padding: 0 0 12%;
  }
}
@media screen and (min-width: 768px) {
  section.page_test--section.section03 {
    padding: 0 0 10%;
  }
}
@media screen and (min-width: 1025px) {
  section.page_test--section.section03 {
    padding: 0 0 80px;
  }
}
section.page_test--section.section03 .section_container {
  width: 80%;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  section.page_test--section.section03 .section_container {
    width: 90%;
    max-width: 1100px;
  }
}
section.page_test--section.section03 .section_container h2.page_test--h2 {
  margin-bottom: 1.8em;
}
section.page_test--section.section03 .section_container .text_box {
  font-size: 3.8vw;
  margin-bottom: 2em;
}
@media screen and (min-width: 600px) {
  section.page_test--section.section03 .section_container .text_box {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 768px) {
  section.page_test--section.section03 .section_container .text_box {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  section.page_test--section.section03 .section_container .text_box {
    font-size: 18px;
    padding-left: 30px;
  }
}
section.page_test--section.section03 .section_container .text_box p {
  line-height: 1.8;
  margin-bottom: 0.7em;
}
section.page_test--section.section03 .section_container .text_box p span {
  padding: 0 0.2em;
  background-color: rgba(250, 255, 0, 0.5);
}
section.page_test--section.section03 .section_container .text_box p br.br_pc {
  display: none;
}
@media screen and (min-width: 1025px) {
  section.page_test--section.section03 .section_container .text_box p br.br_pc {
    display: block;
  }
}

ul.page_test_section03--ul {
  font-size: 3.8vw;
}
@media screen and (min-width: 600px) {
  ul.page_test_section03--ul {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 768px) {
  ul.page_test_section03--ul {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  ul.page_test_section03--ul {
    font-size: 18px;
    padding-left: 30px;
  }
}
ul.page_test_section03--ul li {
  font-weight: bold;
  line-height: 1.6;
  list-style: none;
  padding-left: 1.5em;
  position: relative;
  counter-increment: number;
}
ul.page_test_section03--ul li:not(:last-of-type) {
  margin-bottom: 1.2em;
}
ul.page_test_section03--ul li::before {
  content: counter(number) ".";
  position: absolute;
  left: 0;
  top: 0;
}

section.page_test--section.section04 {
  padding: 0 0 18%;
}
@media screen and (min-width: 600px) {
  section.page_test--section.section04 {
    padding: 0 0 12%;
  }
}
@media screen and (min-width: 768px) {
  section.page_test--section.section04 {
    padding: 0 0 10%;
  }
}
@media screen and (min-width: 1025px) {
  section.page_test--section.section04 {
    padding: 0 0 80px;
  }
}

.page_test_section--table.section04_table {
  grid-template-columns: 6.6em 7.2em auto 6.6em 6.6em;
}
.page_test_section--table.section04_table div.title.column_title {
  padding: 0.6em 0;
}
.page_test_section--table.section04_table div.content {
  padding: 1em 0;
}
.page_test_section--table.section04_table div.fw_bold {
  font-weight: bold;
  letter-spacing: 0.1em;
}
.page_test_section--table.section04_table div.justify_left {
  text-align: left;
  padding-right: 1.5em;
  padding-left: 1.5em;
  justify-content: left;
}
.page_test_section--table.section04_table div.columns_02 {
  grid-column: span 2;
}
.page_test_section--table.section04_table div.rows_05 {
  align-items: baseline;
  grid-row: span 5;
}
.page_test_section--table.section04_table div.rows_05.align_center {
  align-items: center;
}

.top_page_section04--linkBox.page_test--linkBox {
  margin-top: 15%;
}
@media screen and (min-width: 600px) {
  .top_page_section04--linkBox.page_test--linkBox {
    margin-top: 12%;
  }
}
@media screen and (min-width: 768px) {
  .top_page_section04--linkBox.page_test--linkBox {
    margin-top: 9%;
  }
}
@media screen and (min-width: 1025px) {
  .top_page_section04--linkBox.page_test--linkBox {
    margin-top: 80px;
  }
}

section.page_test--section.section05 {
  padding: 0 0 15%;
}
@media screen and (min-width: 600px) {
  section.page_test--section.section05 {
    padding: 0 0 12%;
  }
}
@media screen and (min-width: 768px) {
  section.page_test--section.section05 {
    padding: 0 0 10%;
  }
}
@media screen and (min-width: 1025px) {
  section.page_test--section.section05 {
    padding: 0 0 80px;
  }
}
section.page_test--section.section05 .section_container {
  width: 80%;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  section.page_test--section.section05 .section_container {
    width: 90%;
    max-width: 1100px;
  }
}
section.page_test--section.section05 .section_container h2.page_test--h2 {
  margin-bottom: 1.8em;
}
section.page_test--section.section05 .section_container .text_box {
  font-size: 3.8vw;
  margin-bottom: 2em;
}
@media screen and (min-width: 600px) {
  section.page_test--section.section05 .section_container .text_box {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 768px) {
  section.page_test--section.section05 .section_container .text_box {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  section.page_test--section.section05 .section_container .text_box {
    font-size: 18px;
    padding-left: 30px;
  }
}
section.page_test--section.section05 .section_container .text_box p {
  line-height: 1.8;
  margin-bottom: 0.7em;
}
section.page_test--section.section05 .section_container .text_box p span {
  padding: 0 0.2em;
  background-color: rgba(250, 255, 0, 0.5);
}
section.page_test--section.section05 .section_container .text_box p br.br_pc {
  display: none;
}
@media screen and (min-width: 1025px) {
  section.page_test--section.section05 .section_container .text_box p br.br_pc {
    display: block;
  }
}
section.page_test--section.section05 .section_container p.note {
  font-size: 3.8vw;
  line-height: 1.6;
}
@media screen and (min-width: 600px) {
  section.page_test--section.section05 .section_container p.note {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 768px) {
  section.page_test--section.section05 .section_container p.note {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  section.page_test--section.section05 .section_container p.note {
    font-size: 18px;
    padding-left: 30px;
  }
}

ul.page_test_section05--ul {
  font-size: 3.8vw;
  margin-bottom: 2em;
}
@media screen and (min-width: 600px) {
  ul.page_test_section05--ul {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 768px) {
  ul.page_test_section05--ul {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  ul.page_test_section05--ul {
    font-size: 18px;
    padding-left: 30px;
  }
}
ul.page_test_section05--ul li {
  font-weight: bold;
  line-height: 1.6;
  list-style: none;
  padding-left: 1.5em;
  position: relative;
  counter-increment: number;
}
ul.page_test_section05--ul li:not(:last-of-type) {
  margin-bottom: 1.2em;
}
ul.page_test_section05--ul li::before {
  content: counter(number) ".";
  position: absolute;
  left: 0;
  top: 0;
}

h2.page_strategy--h2 {
  font-size: 4.3vw;
  line-height: 1.4;
  padding-left: 0.6em;
  box-sizing: border-box;
  position: relative;
}
@media screen and (min-width: 600px) {
  h2.page_strategy--h2 {
    font-size: 3vw;
  }
}
@media screen and (min-width: 768px) {
  h2.page_strategy--h2 {
    font-size: 2.7vw;
  }
}
@media screen and (min-width: 1025px) {
  h2.page_strategy--h2 {
    font-size: 24px;
    padding-left: 1.1em;
  }
}
h2.page_strategy--h2::before {
  content: "";
  width: 5px;
  height: 1.3em;
  background-color: #13568B;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(0, 10%);
}
@media screen and (min-width: 600px) {
  h2.page_strategy--h2::before {
    top: 50%;
    transform: translate(0, -50%);
  }
}
@media screen and (min-width: 1025px) {
  h2.page_strategy--h2::before {
    width: 10px;
    height: 1.8em;
  }
}
h2.page_strategy--h2 span {
  display: block;
}
@media screen and (min-width: 600px) {
  h2.page_strategy--h2 span {
    display: inline;
  }
}
h2.page_strategy--h2 span.large_text {
  margin-bottom: 0.3em;
}
h2.page_strategy--h2 span.small_text {
  font-size: 0.75em;
}

h3.page_strategy--h3 {
  font-size: 1.13em;
  line-height: 1.4;
  padding-left: 1.3em;
  margin-bottom: 1.5em;
  position: relative;
}
@media screen and (min-width: 1025px) {
  h3.page_strategy--h3 {
    font-size: 21px;
  }
}
h3.page_strategy--h3::before {
  content: "●";
  color: #13568B;
  position: absolute;
  left: 0;
  top: 0;
}
h3.page_strategy--h3 br {
  display: none;
}
@media screen and (min-width: 1025px) {
  h3.page_strategy--h3 br.br_pc {
    display: block !important;
  }
}

nav.page_strategy--nav {
  font-size: 3.8vw;
  width: 80%;
  margin: 2em auto 3em;
}
@media screen and (min-width: 600px) {
  nav.page_strategy--nav {
    font-size: 2.4vw;
  }
}
@media screen and (min-width: 768px) {
  nav.page_strategy--nav {
    font-size: 1.9vw;
  }
}
@media screen and (min-width: 1025px) {
  nav.page_strategy--nav {
    font-size: 16px;
    width: 90%;
    max-width: 1100px;
    margin: 2.5em auto 3.5em;
  }
}
nav.page_strategy--nav ul {
  display: grid;
  gap: 1.5em 0;
}
@media screen and (min-width: 600px) {
  nav.page_strategy--nav ul {
    grid-template-columns: 1fr 1fr;
    gap: 0 1em;
  }
}
@media screen and (min-width: 768px) {
  nav.page_strategy--nav ul {
    grid-template-columns: 16em 16em;
    gap: 0 1.5em;
  }
}
nav.page_strategy--nav ul li {
  text-align: center;
  list-style: none;
}
nav.page_strategy--nav ul li a {
  color: #13568B;
  font-weight: bold;
  padding: 0.9em 0;
  border: 2px solid #13568B;
  border-radius: 5em;
  display: block;
  position: relative;
}
nav.page_strategy--nav ul li a::before {
  content: "\f063";
  font-size: 1.2em;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(-2em, -50%);
}
@media screen and (min-width: 600px) {
  nav.page_strategy--nav ul li a::before {
    transform: translate(-1.2em, -50%);
  }
}

section.page_strategy--section .section_container {
  padding-top: 70px;
  margin-top: -70px;
}
@media screen and (min-width: 1025px) {
  section.page_strategy--section .section_container {
    padding-top: 120px;
    margin-top: -120px;
  }
}

section.page_strategy--section.section01 {
  padding-bottom: 15%;
}
@media screen and (min-width: 600px) {
  section.page_strategy--section.section01 {
    padding-bottom: 10%;
  }
}
@media screen and (min-width: 1025px) {
  section.page_strategy--section.section01 {
    padding-bottom: 100px;
  }
}
section.page_strategy--section.section01 .section_container h2.page_strategy--h2 {
  margin-bottom: 1.5em;
  width: 80%;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  section.page_strategy--section.section01 .section_container h2.page_strategy--h2 {
    width: 90%;
    max-width: 1100px;
  }
}
section.page_strategy--section.section01 .section_container .page_strategy--textBox {
  font-size: 3.8vw;
  width: 80%;
  margin-inline: auto;
  margin-bottom: 2.5em;
}
@media screen and (min-width: 600px) {
  section.page_strategy--section.section01 .section_container .page_strategy--textBox {
    font-size: 2.5vw;
    margin-bottom: 2em;
  }
}
@media screen and (min-width: 768px) {
  section.page_strategy--section.section01 .section_container .page_strategy--textBox {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  section.page_strategy--section.section01 .section_container .page_strategy--textBox {
    font-size: 18px;
    width: 90%;
    max-width: 1100px;
    padding-left: 30px;
  }
}
section.page_strategy--section.section01 .section_container .page_strategy--textBox p {
  line-height: 1.8;
  margin-bottom: 0.5em;
}

.page_strategy_section01--contentsBox01 {
  font-size: 3.8vw;
  width: 80%;
  padding: 1.5em;
  margin: 0 auto 9em;
  background-color: #E5F0F3;
}
@media screen and (min-width: 600px) {
  .page_strategy_section01--contentsBox01 {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 768px) {
  .page_strategy_section01--contentsBox01 {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  .page_strategy_section01--contentsBox01 {
    font-size: 18px;
    width: 90%;
    max-width: 1100px;
    padding: 45px 75px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 60px;
  }
}
.page_strategy_section01--contentsBox01 .contents_text--box {
  font-size: inherit;
}
.page_strategy_section01--contentsBox01 .contents_text--box p {
  line-height: 1.6;
  margin-bottom: 1em;
}
.page_strategy_section01--contentsBox01 .contents_text--box p span.fc_red {
  color: #C31414;
}
.page_strategy_section01--contentsBox01 .contents_text--box ol {
  margin: 2em 0;
}
.page_strategy_section01--contentsBox01 .contents_text--box ol li {
  font-weight: bold;
  line-height: 1.4;
  padding-left: 1.2em;
  list-style: none;
  position: relative;
  counter-increment: number;
}
.page_strategy_section01--contentsBox01 .contents_text--box ol li::before {
  content: counter(number) ".";
  position: absolute;
  left: 0;
  top: 0;
}
.page_strategy_section01--contentsBox01 .contents_point--box {
  font-size: inherit;
  margin: 2.5em 0;
  padding-bottom: 2.5em;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (min-width: 1025px) {
  .page_strategy_section01--contentsBox01 .contents_point--box {
    grid-column: span 2;
  }
}
.page_strategy_section01--contentsBox01 .contents_point--box h4 {
  color: #13568B;
  text-align: center;
  font-size: 4.3vw;
  line-height: 1.4;
  letter-spacing: 0.05em;
  padding: 1.2em 0;
  margin-bottom: 1em;
  border-bottom: 1px solid #13568B;
}
@media screen and (min-width: 600px) {
  .page_strategy_section01--contentsBox01 .contents_point--box h4 {
    font-size: 2.9vw;
  }
}
@media screen and (min-width: 768px) {
  .page_strategy_section01--contentsBox01 .contents_point--box h4 {
    font-size: 2.4vw;
  }
}
@media screen and (min-width: 1025px) {
  .page_strategy_section01--contentsBox01 .contents_point--box h4 {
    font-size: 24px;
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 1025px) {
  .page_strategy_section01--contentsBox01 .contents_point--box h4 br {
    display: none;
  }
}
.page_strategy_section01--contentsBox01 .contents_point--box > p {
  line-height: 1.6;
  width: 85%;
  margin: 0 auto 1.5em;
}
@media screen and (min-width: 1025px) {
  .page_strategy_section01--contentsBox01 .contents_point--box ul {
    width: 85%;
    margin-inline: auto;
  }
}
.page_strategy_section01--contentsBox01 .contents_point--box ul li {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5em 0;
}
@media screen and (min-width: 1025px) {
  .page_strategy_section01--contentsBox01 .contents_point--box ul li {
    flex-direction: row;
  }
}
.page_strategy_section01--contentsBox01 .contents_point--box ul li:not(:last-of-type) {
  margin-bottom: 2em;
}
.page_strategy_section01--contentsBox01 .contents_point--box ul li .point_box {
  color: #13568B;
  font-size: 2.8vw;
  width: 5.8em;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
}
@media screen and (min-width: 600px) {
  .page_strategy_section01--contentsBox01 .contents_point--box ul li .point_box {
    font-size: 1.8vw;
  }
}
@media screen and (min-width: 768px) {
  .page_strategy_section01--contentsBox01 .contents_point--box ul li .point_box {
    font-size: 1.5vw;
  }
}
@media screen and (min-width: 1025px) {
  .page_strategy_section01--contentsBox01 .contents_point--box ul li .point_box {
    font-size: 14px;
  }
}
.page_strategy_section01--contentsBox01 .contents_point--box ul li .point_box span {
  font-weight: bold;
  display: block;
}
.page_strategy_section01--contentsBox01 .contents_point--box ul li .point_box span:first-of-type {
  margin-bottom: 0.2em;
}
.page_strategy_section01--contentsBox01 .contents_point--box ul li .point_box span:nth-of-type(2) {
  font-size: 2.5em;
}
.page_strategy_section01--contentsBox01 .contents_point--box ul li .text_box {
  font-size: inherit;
  width: 85%;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  .page_strategy_section01--contentsBox01 .contents_point--box ul li .text_box {
    font-size: 20px;
  }
}
.page_strategy_section01--contentsBox01 .contents_point--box ul li .text_box p {
  color: #13568B;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (min-width: 1025px) {
  .page_strategy_section01--contentsBox01 .contents_point--box ul li .text_box p {
    line-height: 1.6;
  }
}
.page_strategy_section01--contentsBox01 .contents_point--box ul li .text_box p span {
  font-size: 1.13em;
}
@media screen and (min-width: 1025px) {
  .page_strategy_section01--contentsBox01 .contents_point--box ul li .text_box p span {
    font-size: 25px;
  }
}
.page_strategy_section01--contentsBox01 .contents_point--box ul li .text_box p br {
  display: none;
}
@media screen and (min-width: 1025px) {
  .page_strategy_section01--contentsBox01 .contents_point--box ul li .text_box p br {
    display: block;
  }
}

.page_strategy_section01--contentsBox02 {
  padding: 10% 0;
  background-color: #13568B;
  border-radius: 10px;
  position: relative;
}
@media screen and (min-width: 600px) {
  .page_strategy_section01--contentsBox02 {
    padding: 7% 0;
  }
}
@media screen and (min-width: 768px) {
  .page_strategy_section01--contentsBox02 {
    width: 80%;
    padding: 6% 0;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1025px) {
  .page_strategy_section01--contentsBox02 {
    width: 90%;
    max-width: 1100px;
    padding: 60px 0;
  }
}
.page_strategy_section01--contentsBox02 h3 {
  text-align: center;
  color: #fff;
  font-size: 4vw;
  line-height: 2;
  width: 100%;
  padding: 2em 0 0;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -100%);
}
@media screen and (min-width: 600px) {
  .page_strategy_section01--contentsBox02 h3 {
    font-size: 2.9vw;
  }
}
@media screen and (min-width: 768px) {
  .page_strategy_section01--contentsBox02 h3 {
    font-size: 2.6vw;
    transform: translate(-50%, -80%);
  }
}
@media screen and (min-width: 1025px) {
  .page_strategy_section01--contentsBox02 h3 {
    font-size: 25px;
  }
}
.page_strategy_section01--contentsBox02 h3::before {
  content: "";
  width: 20em;
  background-color: #13568B;
  border-radius: 50%;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
          clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  aspect-ratio: 1;
}
.page_strategy_section01--contentsBox02 h3 span {
  position: relative;
}
.page_strategy_section01--contentsBox02 ul {
  font-size: 3.8vw;
  width: 80%;
  padding: 2em 1.5em;
  margin-inline: auto;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
}
@media screen and (min-width: 600px) {
  .page_strategy_section01--contentsBox02 ul {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 768px) {
  .page_strategy_section01--contentsBox02 ul {
    font-size: 2vw;
    width: 85%;
    padding: 2.5em;
  }
}
@media screen and (min-width: 1025px) {
  .page_strategy_section01--contentsBox02 ul {
    font-size: 18px;
    padding: 2.5em 3.5em;
  }
}
.page_strategy_section01--contentsBox02 ul li {
  font-weight: bold;
  line-height: 1.4;
  padding-left: 1.5em;
  list-style: none;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .page_strategy_section01--contentsBox02 ul li {
    line-height: 1.6;
    padding-left: 2.5em;
  }
}
.page_strategy_section01--contentsBox02 ul li:not(:last-of-type) {
  margin-bottom: 0.8em;
}
@media screen and (min-width: 1025px) {
  .page_strategy_section01--contentsBox02 ul li:not(:last-of-type) {
    margin-bottom: 1.5em;
  }
}
.page_strategy_section01--contentsBox02 ul li img {
  width: 1.2em;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (min-width: 1025px) {
  .page_strategy_section01--contentsBox02 ul li img {
    width: 1.8em;
  }
}
.page_strategy_section01--contentsBox02 ul li span {
  color: #C31414;
}

section.page_strategy--section.section02 {
  padding: 0 0 15%;
}
@media screen and (min-width: 600px) {
  section.page_strategy--section.section02 {
    padding: 0 0 10%;
  }
}
@media screen and (min-width: 768px) {
  section.page_strategy--section.section02 {
    padding: 0 0 8%;
  }
}
@media screen and (min-width: 1025px) {
  section.page_strategy--section.section02 {
    padding: 0 0 80px;
  }
}
section.page_strategy--section.section02 .section_container h2.page_strategy--h2 {
  width: 80%;
  margin-inline: auto;
  margin-bottom: 1.5em;
}
@media screen and (min-width: 1025px) {
  section.page_strategy--section.section02 .section_container h2.page_strategy--h2 {
    width: 90%;
    max-width: 1100px;
  }
}
section.page_strategy--section.section02 .section_container .page_strategy--textBox {
  font-size: 3.8vw;
  width: 80%;
  margin-inline: auto;
  margin-bottom: 2.5em;
}
@media screen and (min-width: 600px) {
  section.page_strategy--section.section02 .section_container .page_strategy--textBox {
    font-size: 2.5vw;
    margin-bottom: 2em;
  }
}
@media screen and (min-width: 768px) {
  section.page_strategy--section.section02 .section_container .page_strategy--textBox {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  section.page_strategy--section.section02 .section_container .page_strategy--textBox {
    font-size: 18px;
    width: 90%;
    max-width: 1100px;
    padding-left: 30px;
  }
}
section.page_strategy--section.section02 .section_container .page_strategy--textBox p {
  line-height: 1.8;
  margin-bottom: 0.5em;
}

.page_strategy_section02--contentsBox01 {
  font-size: 3.8vw;
  width: 80%;
  padding: 1.5em;
  margin: 0 auto 2.5em;
  background-color: #E5F0F3;
}
@media screen and (min-width: 600px) {
  .page_strategy_section02--contentsBox01 {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 768px) {
  .page_strategy_section02--contentsBox01 {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  .page_strategy_section02--contentsBox01 {
    font-size: 18px;
    width: 90%;
    max-width: 1100px;
    padding: 45px 75px;
  }
}

dl.page_strategy_section02_contentsBox01--dl dt {
  color: #13568B;
  font-size: 1.13em;
  font-weight: bold;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 1em;
}
dl.page_strategy_section02_contentsBox01--dl dd:not(:last-of-type) {
  font-weight: bold;
  margin-bottom: 3em;
}
dl.page_strategy_section02_contentsBox01--dl dd > ul > li {
  line-height: 1.4;
  padding-left: 1.2em;
  list-style: none;
  position: relative;
  counter-increment: number;
}
dl.page_strategy_section02_contentsBox01--dl dd > ul > li:not(:last-of-type) {
  margin-bottom: 0.8em;
}
dl.page_strategy_section02_contentsBox01--dl dd > ul > li::before {
  content: counter(number) ".";
  position: absolute;
  left: 0;
  top: 0;
}
dl.page_strategy_section02_contentsBox01--dl dd > ul > li a {
  color: inherit;
  border-bottom: 1px solid;
}
dl.page_strategy_section02_contentsBox01--dl dd > ul > li a:hover {
  opacity: 0.7;
}
dl.page_strategy_section02_contentsBox01--dl dd > ul > li ul {
  padding-left: 1em;
  margin: 1em 0;
}
dl.page_strategy_section02_contentsBox01--dl dd > ul > li ul li {
  line-height: 1.4;
  padding-left: 2em;
  list-style: none;
  position: relative;
}
dl.page_strategy_section02_contentsBox01--dl dd > ul > li ul li span {
  position: absolute;
  left: 0;
  top: 0;
}

.page_strategy_section02--contentsBox02 {
  width: 90%;
  padding: 7% 10%;
  margin-inline: auto;
  border: 2px solid #13568B;
  border-radius: 10px;
}
@media screen and (min-width: 600px) {
  .page_strategy_section02--contentsBox02 {
    width: 80%;
    padding: 6% 8%;
  }
}
@media screen and (min-width: 768px) {
  .page_strategy_section02--contentsBox02 {
    padding: 5% 7%;
  }
}
@media screen and (min-width: 1025px) {
  .page_strategy_section02--contentsBox02 {
    width: 90%;
    max-width: 1100px;
    padding: 55px 75px;
  }
}
.page_strategy_section02--contentsBox02 h3 {
  text-align: center;
  color: #13568B;
  font-size: 4.3vw;
  margin-bottom: 2.5em;
}
@media screen and (min-width: 600px) {
  .page_strategy_section02--contentsBox02 h3 {
    font-size: 2.9vw;
  }
}
@media screen and (min-width: 768px) {
  .page_strategy_section02--contentsBox02 h3 {
    font-size: 2.4vw;
  }
}
@media screen and (min-width: 1025px) {
  .page_strategy_section02--contentsBox02 h3 {
    font-size: 24px;
  }
}

dl.page_strategy_section02_contentsBox02--dl {
  font-size: 3.8vw;
}
@media screen and (min-width: 600px) {
  dl.page_strategy_section02_contentsBox02--dl {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 768px) {
  dl.page_strategy_section02_contentsBox02--dl {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  dl.page_strategy_section02_contentsBox02--dl {
    font-size: 18px;
  }
}
dl.page_strategy_section02_contentsBox02--dl > dt, dl.page_strategy_section02_contentsBox02--dl > dd {
  font-weight: bold;
  line-height: 1.4;
}
dl.page_strategy_section02_contentsBox02--dl > dt {
  color: #13568B;
  padding-left: 1.2em;
  margin-bottom: 1.2em;
  position: relative;
}
dl.page_strategy_section02_contentsBox02--dl > dt::before {
  content: "●";
  color: #13568B;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (min-width: 768px) {
  dl.page_strategy_section02_contentsBox02--dl > dt br {
    display: none;
  }
}
dl.page_strategy_section02_contentsBox02--dl > dd:not(:last-of-type) {
  margin-bottom: 3em;
}
dl.page_strategy_section02_contentsBox02--dl > dd p {
  line-height: 1.4;
  margin-bottom: 2em;
}
dl.page_strategy_section02_contentsBox02--dl > dd dl {
  color: #13568B;
  font-weight: 400;
}
@media screen and (min-width: 1025px) {
  dl.page_strategy_section02_contentsBox02--dl > dd dl {
    display: grid;
    grid-template-columns: 1fr 4fr;
    gap: 1em 0;
  }
}
dl.page_strategy_section02_contentsBox02--dl > dd dl dt, dl.page_strategy_section02_contentsBox02--dl > dd dl dd {
  line-height: 1.4;
}
dl.page_strategy_section02_contentsBox02--dl > dd dl dt {
  margin-bottom: 1em;
}
@media screen and (min-width: 1025px) {
  dl.page_strategy_section02_contentsBox02--dl > dd dl dt {
    padding-bottom: 1em;
    margin: 0;
    border-bottom: 1px solid #13568B;
  }
}
dl.page_strategy_section02_contentsBox02--dl > dd dl dd {
  padding-bottom: 1.5em;
  border-bottom: 1px solid #13568B;
}
dl.page_strategy_section02_contentsBox02--dl > dd dl dd:not(:last-of-type) {
  margin-bottom: 1em;
}
@media screen and (min-width: 1025px) {
  dl.page_strategy_section02_contentsBox02--dl > dd dl dd:not(:last-of-type) {
    margin: 0;
  }
}
dl.page_strategy_section02_contentsBox02--dl > dd dl dd ul li {
  line-height: 1.4;
  list-style: none;
  padding-left: 1.5em;
  counter-increment: number;
  position: relative;
}
dl.page_strategy_section02_contentsBox02--dl > dd dl dd ul li:not(:last-of-type) {
  margin-bottom: 0.8em;
}
dl.page_strategy_section02_contentsBox02--dl > dd dl dd ul li::before {
  content: counter(number) ".";
  position: absolute;
  left: 0;
  top: 0;
}
dl.page_strategy_section02_contentsBox02--dl > dd dl dd ul li span {
  color: #C31414;
  font-weight: bold;
  margin-left: 1em;
}

section.page_course--section .section_container {
  width: 80%;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  section.page_course--section .section_container {
    width: 90%;
    max-width: 1100px;
  }
}

h2.page_course--h2 {
  font-size: 4.3vw;
  line-height: 1.4;
  padding-left: 0.6em;
  box-sizing: border-box;
  position: relative;
}
@media screen and (min-width: 600px) {
  h2.page_course--h2 {
    font-size: 3vw;
  }
}
@media screen and (min-width: 768px) {
  h2.page_course--h2 {
    font-size: 2.7vw;
  }
}
@media screen and (min-width: 1025px) {
  h2.page_course--h2 {
    font-size: 24px;
    padding-left: 1.1em;
  }
}
h2.page_course--h2::before {
  content: "";
  width: 5px;
  height: 1.3em;
  background-color: #13568B;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(0, 10%);
}
@media screen and (min-width: 600px) {
  h2.page_course--h2::before {
    top: 50%;
    transform: translate(0, -50%);
  }
}
@media screen and (min-width: 1025px) {
  h2.page_course--h2::before {
    width: 10px;
    height: 1.8em;
  }
}
h2.page_course--h2 span {
  display: block;
}
@media screen and (min-width: 600px) {
  h2.page_course--h2 span {
    display: inline;
  }
}
h2.page_course--h2 span.large_text {
  margin-bottom: 0.3em;
}
h2.page_course--h2 span.small_text {
  font-size: 0.75em;
}

section.page_course--section.section01 {
  padding: 8% 0 14%;
}
@media screen and (min-width: 600px) {
  section.page_course--section.section01 {
    padding: 6% 0 12%;
  }
}
@media screen and (min-width: 768px) {
  section.page_course--section.section01 {
    padding: 6% 0 10%;
  }
}
@media screen and (min-width: 1025px) {
  section.page_course--section.section01 {
    padding: 70px 0 80px;
  }
}
section.page_course--section.section01 .section_container h2.page_course--h2 {
  margin-bottom: 1.8em;
}
@media screen and (min-width: 1025px) {
  section.page_course--section.section01 .section_container h2.page_course--h2 {
    margin-bottom: 2.2em;
  }
}

dl.page_course_section01--dl {
  font-size: 3.8vw;
}
@media screen and (min-width: 600px) {
  dl.page_course_section01--dl {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 768px) {
  dl.page_course_section01--dl {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  dl.page_course_section01--dl {
    font-size: 18px;
    width: 94%;
    margin-inline: auto;
  }
}
dl.page_course_section01--dl > div {
  font-size: inherit;
  position: relative;
  overflow: hidden;
  counter-increment: number;
}
dl.page_course_section01--dl > div:not(:last-of-type) {
  padding-bottom: 2em;
}
dl.page_course_section01--dl > div:not(:last-of-type)::after {
  content: "";
  width: 2px;
  height: 200vh;
  background-color: #13568B;
  position: absolute;
  left: 1.4em;
  top: 0;
}
dl.page_course_section01--dl > div > dt {
  color: #13568B;
  font-size: 1.13em;
  font-weight: bold;
  letter-spacing: 0.15em;
  line-height: 1.4;
  padding: 0.6em 0 0.6em 3.5em;
  margin-bottom: 1.5em;
  background-color: #EEE;
  border-radius: 1.5em;
  position: relative;
  z-index: 1;
}
dl.page_course_section01--dl > div > dt::before {
  content: counter(number);
  color: #fff;
  font-size: 1.25em;
  height: 2.08em;
  background-color: #13568B;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  aspect-ratio: 1;
}
@media screen and (min-width: 600px) {
  dl.page_course_section01--dl > div > dt br {
    display: none;
  }
}
dl.page_course_section01--dl > div > dd {
  padding: 0 1em 0 3.2em;
}
@media screen and (min-width: 1025px) {
  dl.page_course_section01--dl > div > dd {
    padding: 0 3em 0 4em;
    display: grid;
    grid-template-columns: 1fr 2.8fr;
    gap: 0 10px;
  }
}
dl.page_course_section01--dl > div > dd .img {
  width: 75%;
  margin: 0 auto 8%;
}
@media screen and (min-width: 600px) {
  dl.page_course_section01--dl > div > dd .img {
    width: 60%;
    margin: 0 auto 5%;
  }
}
@media screen and (min-width: 768px) {
  dl.page_course_section01--dl > div > dd .img {
    width: 50%;
    margin: 0 auto 3%;
  }
}
@media screen and (min-width: 1025px) {
  dl.page_course_section01--dl > div > dd .img {
    width: 100%;
  }
}
dl.page_course_section01--dl > div > dd .text_box {
  font-size: inherit;
}
dl.page_course_section01--dl > div > dd .text_box > p {
  color: #13568B;
  line-height: 1.6;
}
dl.page_course_section01--dl > div > dd .text_box > p:not(:last-of-type) {
  margin-bottom: 1em;
}
dl.page_course_section01--dl > div > dd .text_box > p.small_text {
  font-size: 0.85em;
  margin: 0;
}
dl.page_course_section01--dl > div > dd .text_box > p.small_text a {
  color: inherit;
  border-bottom: 1px solid;
}
dl.page_course_section01--dl > div > dd .text_box > p.small_text a:hover {
  opacity: 0.7;
}
dl.page_course_section01--dl > div > dd .text_box > p span.bg_yellow {
  width: -moz-max-content;
  width: max-content;
  background-color: rgba(250, 255, 0, 0.5);
}

ul.page_course_section01--ul01 {
  padding: 1.5em 1em;
  margin: 1.2em 0;
  background-color: #EEE;
}
ul.page_course_section01--ul01 > li {
  color: #13568B;
  padding-left: 1.5em;
  list-style: none;
  position: relative;
}
ul.page_course_section01--ul01 > li:not(:last-of-type) {
  margin-bottom: 2em;
}
ul.page_course_section01--ul01 > li span.alphabet {
  font-weight: bold;
  line-height: 1.6;
  position: absolute;
  left: 0;
  top: 0;
}
ul.page_course_section01--ul01 > li dl {
  line-height: 1.6;
}
ul.page_course_section01--ul01 > li dl dt:not(:first-of-type) {
  padding-left: 2em;
}
ul.page_course_section01--ul01 > li p {
  line-height: 1.6;
}
ul.page_course_section01--ul01 > li ul {
  margin-top: 1em;
}
@media screen and (min-width: 600px) {
  ul.page_course_section01--ul01 > li ul {
    display: flex;
    gap: 0 1em;
  }
}
ul.page_course_section01--ul01 > li ul li {
  font-size: 0.85em;
  line-height: 1.6;
  list-style: none;
}

ul.page_course_section01--ul02 li {
  color: #13568B;
  line-height: 1.6;
  list-style: none;
}
ul.page_course_section01--ul02 li:not(:last-of-type) {
  margin-bottom: 0.8em;
}

section.page_course--section.section02 {
  padding-bottom: 10%;
}
@media screen and (min-width: 600px) {
  section.page_course--section.section02 {
    padding-bottom: 8%;
  }
}
@media screen and (min-width: 768px) {
  section.page_course--section.section02 {
    padding-bottom: 7%;
  }
}
@media screen and (min-width: 1025px) {
  section.page_course--section.section02 {
    padding-bottom: 70px;
  }
}
section.page_course--section.section02 .section_container h2.page_course--h2 {
  margin-bottom: 1.8em;
}

.page_course_sectio02--contentsBox {
  font-size: 3.8vw;
  margin-bottom: 4em;
}
@media screen and (min-width: 600px) {
  .page_course_sectio02--contentsBox {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 768px) {
  .page_course_sectio02--contentsBox {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  .page_course_sectio02--contentsBox {
    font-size: 18px;
  }
}
.page_course_sectio02--contentsBox h3 {
  font-size: 1.13em;
  font-weight: bold;
  padding-left: 0.7em;
  margin-bottom: 2.5em;
}

ul.page_course_section02--ul {
  padding: 2.5em 0 3em;
  background-color: #EEE;
  border-radius: 10px;
}
@media screen and (min-width: 1025px) {
  ul.page_course_section02--ul {
    padding: 2em 1.5em 1.5em;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
}
ul.page_course_section02--ul li {
  width: 80%;
  padding-bottom: 4em;
  margin-inline: auto;
  list-style: none;
  position: relative;
  counter-increment: number;
}
@media screen and (min-width: 1025px) {
  ul.page_course_section02--ul li {
    padding: 0 1em 3em;
  }
}
ul.page_course_section02--ul li:not(:last-of-type) {
  margin-bottom: 3em;
}
@media screen and (min-width: 1025px) {
  ul.page_course_section02--ul li:not(:last-of-type) {
    margin: 0;
  }
}
ul.page_course_section02--ul li::before {
  content: counter(number);
  color: #13568B;
  font-size: 17vw;
  font-weight: bold;
  opacity: 0.5;
  position: absolute;
  right: 0.2em;
  bottom: 0;
}
@media screen and (min-width: 600px) {
  ul.page_course_section02--ul li::before {
    font-size: 10.7vw;
  }
}
@media screen and (min-width: 768px) {
  ul.page_course_section02--ul li::before {
    font-size: 8.4vw;
  }
}
@media screen and (min-width: 1025px) {
  ul.page_course_section02--ul li::before {
    font-size: 70px;
  }
}
ul.page_course_section02--ul li p {
  line-height: 1.4;
}

.page_course_sectio02--tableBox {
  width: 90vw;
  overflow-x: scroll;
}
@media screen and (min-width: 1025px) {
  .page_course_sectio02--tableBox {
    width: 100%;
    overflow-x: auto;
  }
}
.page_course_sectio02--tableBox::-webkit-scrollbar {
  width: 12px;
}
.page_course_sectio02--tableBox::-webkit-scrollbar-thumb {
  background-color: #fff;
  border: 3px solid #D9D9D9;
  border-radius: 20px;
}
.page_course_sectio02--tableBox::-webkit-scrollbar-track {
  background-color: #D9D9D9;
  border-radius: 20px;
}

.page_course_sectio02--table {
  font-size: 3.8vw;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  display: grid;
  grid-template-columns: 3.5em 27em 27em;
  gap: 3px;
}
@media screen and (min-width: 600px) {
  .page_course_sectio02--table {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 768px) {
  .page_course_sectio02--table {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  .page_course_sectio02--table {
    font-size: 18px;
    width: 100%;
    grid-template-columns: 3.5em 1fr 1fr;
  }
}
.page_course_sectio02--table div {
  font-size: inherit;
}
.page_course_sectio02--table div.title {
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding: 1.5em 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page_course_sectio02--table div.title.bg_gray {
  background-color: #52616D;
}
.page_course_sectio02--table div.title.bg_blue {
  background-color: #13568B;
}
.page_course_sectio02--table div.content {
  line-height: 1.4;
  padding: 1.2em 1.5em;
  display: flex;
  align-items: center;
}
.page_course_sectio02--table div.content.bg_gray {
  background-color: #EEE;
}
.page_course_sectio02--table div.content.bg_blue {
  background-color: #E5F0F3;
}
.page_course_sectio02--table div.content.bg_yellow {
  background-color: #FFFBE8;
}
.page_course_sectio02--table div.content.bg_orange {
  font-weight: bold;
  background-color: #FBC7AB;
  justify-content: center;
}
.page_course_sectio02--table div.rows_02 {
  grid-row: span 2;
}
.page_course_sectio02--table div.rows_03 {
  grid-row: span 3;
}
.page_course_sectio02--table div.columns_02 {
  grid-column: span 2;
}
.page_course_sectio02--table div.columns_03 {
  grid-column: span 3;
}

h2.page_class--h2 {
  font-size: 4.3vw;
  line-height: 1.4;
  padding-left: 0.6em;
  position: relative;
}
@media screen and (min-width: 600px) {
  h2.page_class--h2 {
    font-size: 3vw;
  }
}
@media screen and (min-width: 768px) {
  h2.page_class--h2 {
    font-size: 2.7vw;
  }
}
@media screen and (min-width: 1025px) {
  h2.page_class--h2 {
    font-size: 24px;
    padding-left: 1.1em;
  }
}
h2.page_class--h2::before {
  content: "";
  width: 5px;
  height: 1.3em;
  background-color: #13568B;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(0, 10%);
}
@media screen and (min-width: 600px) {
  h2.page_class--h2::before {
    top: 50%;
    transform: translate(0, -50%);
  }
}
@media screen and (min-width: 1025px) {
  h2.page_class--h2::before {
    width: 10px;
    height: 1.8em;
  }
}
@media screen and (min-width: 600px) {
  h2.page_class--h2 br {
    display: none;
  }
}

section.page_class--section.info_section {
  padding: 10% 0;
}
@media screen and (min-width: 600px) {
  section.page_class--section.info_section {
    padding: 5% 0;
  }
}
@media screen and (min-width: 768px) {
  section.page_class--section.info_section {
    padding: 4% 0;
  }
}
@media screen and (min-width: 1025px) {
  section.page_class--section.info_section {
    padding: 40px 0;
  }
}
section.page_class--section.info_section .section_container {
  width: 80%;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 1025px) {
  section.page_class--section.info_section .section_container {
    width: 90%;
    max-width: 1100px;
  }
}
section.page_class--section.info_section .section_container::before {
  content: "";
  width: 90%;
  font-size: 4.6vw;
  height: calc(100% - 2.4em);
  background-color: #F0662A;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (min-width: 600px) {
  section.page_class--section.info_section .section_container::before {
    font-size: 3vw;
    width: 92%;
  }
}
@media screen and (min-width: 768px) {
  section.page_class--section.info_section .section_container::before {
    font-size: 2.5vw;
    width: 94%;
  }
}
@media screen and (min-width: 1025px) {
  section.page_class--section.info_section .section_container::before {
    font-size: 22px;
    width: 96%;
  }
}
section.page_class--section.info_section .section_container h2 {
  color: #fff;
  font-size: 4.6vw;
  letter-spacing: 0.2em;
  width: 90%;
  padding: 0.7em 0 0.7em 10%;
  background-color: #F0662A;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 0 0.5em;
  position: relative;
}
@media screen and (min-width: 600px) {
  section.page_class--section.info_section .section_container h2 {
    font-size: 3vw;
    width: 92%;
    padding: 0.7em 0 0.7em 8%;
  }
}
@media screen and (min-width: 768px) {
  section.page_class--section.info_section .section_container h2 {
    font-size: 2.5vw;
    width: 94%;
    padding: 0.7em 0 0.7em 6%;
  }
}
@media screen and (min-width: 1025px) {
  section.page_class--section.info_section .section_container h2 {
    font-size: 22px;
    width: 96%;
    padding: 0.7em 0 0.7em 4%;
  }
}
section.page_class--section.info_section .section_container h2 img {
  width: auto;
  height: 1.45em;
}
section.page_class--section.info_section .section_container .text_box {
  font-size: 3.8vw;
  width: 90%;
  padding: 1.5em 2em;
  margin: 0 0 0 auto;
  background-color: #fff;
  border: 2px solid #F0662B;
  position: relative;
}
@media screen and (min-width: 600px) {
  section.page_class--section.info_section .section_container .text_box {
    font-size: 2.4vw;
    width: 92%;
  }
}
@media screen and (min-width: 768px) {
  section.page_class--section.info_section .section_container .text_box {
    font-size: 2vw;
    width: 94%;
  }
}
@media screen and (min-width: 1025px) {
  section.page_class--section.info_section .section_container .text_box {
    font-size: 18px;
    width: 96%;
    margin: 0 0 0 auto;
  }
}
section.page_class--section.info_section .section_container .text_box h3 {
  color: #F0662A;
  font-size: 4.8vw;
  line-height: 1.4;
  letter-spacing: 0.05em;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  position: relative;
}
@media screen and (min-width: 600px) {
  section.page_class--section.info_section .section_container .text_box h3 {
    font-size: 3.4vw;
  }
}
@media screen and (min-width: 768px) {
  section.page_class--section.info_section .section_container .text_box h3 {
    font-size: 2.9vw;
  }
}
@media screen and (min-width: 1025px) {
  section.page_class--section.info_section .section_container .text_box h3 {
    font-size: 24px;
  }
}
section.page_class--section.info_section .section_container .text_box h3::before {
  content: "";
  width: calc(100% + 1em);
  height: 1px;
  background-color: #262626;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}
section.page_class--section.info_section .section_container .text_box p {
  line-height: 1.4;
  letter-spacing: 0.05em;
}
section.page_class--section.info_section .section_container .text_box p.color_red {
  color: #EF454A;
}
section.page_class--section.info_section .section_container .text_box span.border {
  width: 100%;
  height: 1px;
  margin: 1em 0;
  background-image: linear-gradient(to right, #262626, #262626 6px, transparent 6px, transparent 8px);
  background-size: 8px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
  display: block;
}

section.page_class--section.schedule_section {
  padding: 8% 0 15%;
}
@media screen and (min-width: 600px) {
  section.page_class--section.schedule_section {
    padding: 6% 0 11%;
  }
}
@media screen and (min-width: 768px) {
  section.page_class--section.schedule_section {
    padding: 6% 0 9%;
  }
}
@media screen and (min-width: 1025px) {
  section.page_class--section.schedule_section {
    padding: 60px 0 80px;
  }
}
section.page_class--section.schedule_section .section_container {
  width: 80%;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  section.page_class--section.schedule_section .section_container {
    width: 90%;
    max-width: 1100px;
  }
}
section.page_class--section.schedule_section .section_container h2.page_class--h2 {
  margin-bottom: 2em;
}

.page_class--accordionButton {
  text-align: left;
  font-size: 3.8vw;
  line-height: 1.6;
  white-space: nowrap;
  width: -moz-max-content;
  width: max-content;
  padding: 0;
  display: flex;
}
@media screen and (min-width: 600px) {
  .page_class--accordionButton {
    font-size: 2.4vw;
  }
}
@media screen and (min-width: 768px) {
  .page_class--accordionButton {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  .page_class--accordionButton {
    font-size: 18px;
  }
}
.page_class--accordionButton button {
  padding: 0;
  margin-left: 0.5em;
  text-decoration: underline;
}
.page_class--accordionButton button:hover {
  opacity: 0.7;
}

dl.page_class_schedule_section--dl {
  font-size: 3.8vw;
  margin-top: 3.5em;
}
@media screen and (min-width: 600px) {
  dl.page_class_schedule_section--dl {
    font-size: 2.4vw;
  }
}
@media screen and (min-width: 768px) {
  dl.page_class_schedule_section--dl {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  dl.page_class_schedule_section--dl {
    font-size: 18px;
    width: 96%;
    margin: 4em 0 0 auto;
  }
}
dl.page_class_schedule_section--dl div {
  font-size: inherit;
  padding: 3em 1.8em 2.2em;
  background-color: #EEE;
  border-radius: 10px;
  position: relative;
  counter-increment: number;
}
@media screen and (min-width: 600px) {
  dl.page_class_schedule_section--dl div {
    padding: 3em 3.5em 2.2em;
  }
}
@media screen and (min-width: 768px) {
  dl.page_class_schedule_section--dl div {
    padding: 2.5em 4.5em 2em;
  }
}
@media screen and (min-width: 1025px) {
  dl.page_class_schedule_section--dl div {
    padding: 1.7em 4.5em;
  }
}
dl.page_class_schedule_section--dl div:not(:last-of-type) {
  margin-bottom: 2em;
}
@media screen and (min-width: 1025px) {
  dl.page_class_schedule_section--dl div:not(:last-of-type) {
    margin-bottom: 2.8em;
  }
}
dl.page_class_schedule_section--dl div:not(:last-of-type)::after {
  content: "";
  width: 3em;
  height: calc(2em + 1px);
  background-color: #EEE;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
  position: absolute;
  left: 50%;
  bottom: 1px;
  transform: translate(-50%, 100%);
}
@media screen and (min-width: 1025px) {
  dl.page_class_schedule_section--dl div:not(:last-of-type)::after {
    width: 4.2em;
    height: calc(2.8em + 1px);
  }
}
dl.page_class_schedule_section--dl div::before {
  content: counter(number);
  color: #fff;
  font-size: 5.3vw;
  font-weight: bold;
  width: 2em;
  background-color: #13568B;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(40%, -50%);
  aspect-ratio: 1;
}
@media screen and (min-width: 600px) {
  dl.page_class_schedule_section--dl div::before {
    font-size: 3.6vw;
  }
}
@media screen and (min-width: 768px) {
  dl.page_class_schedule_section--dl div::before {
    font-size: 3vw;
  }
}
@media screen and (min-width: 1025px) {
  dl.page_class_schedule_section--dl div::before {
    font-size: 28px;
    transform: translate(-40%, -50%);
  }
}
dl.page_class_schedule_section--dl div > dt, dl.page_class_schedule_section--dl div > dd {
  color: #13568B;
  line-height: 1.6;
}
dl.page_class_schedule_section--dl div > dt {
  font-size: 4.6vw;
  font-weight: bold;
  letter-spacing: 0.15em;
  padding-bottom: 1.1em;
  margin-bottom: 1.1em;
  position: relative;
}
@media screen and (min-width: 600px) {
  dl.page_class_schedule_section--dl div > dt {
    font-size: 3vw;
  }
}
@media screen and (min-width: 768px) {
  dl.page_class_schedule_section--dl div > dt {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 1025px) {
  dl.page_class_schedule_section--dl div > dt {
    font-size: 22px;
    letter-spacing: 0.2em;
    padding-bottom: 1em;
    margin-bottom: 1em;
  }
}
dl.page_class_schedule_section--dl div > dt::before {
  content: "";
  width: calc(100% + 0.6em);
  height: 1px;
  background-color: #13568B;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}
@media screen and (min-width: 600px) {
  dl.page_class_schedule_section--dl div > dt::before {
    width: calc(100% + 1.6em);
  }
}
@media screen and (min-width: 768px) {
  dl.page_class_schedule_section--dl div > dt::before {
    width: calc(100% + 2em);
  }
}
@media screen and (min-width: 768px) {
  dl.page_class_schedule_section--dl div > dt br {
    display: none;
  }
}
dl.page_class_schedule_section--dl div > dd {
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1025px) {
  dl.page_class_schedule_section--dl div > dd {
    letter-spacing: 0.15em;
  }
}
dl.page_class_schedule_section--dl div > dd dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5em 1em;
}
@media screen and (min-width: 1025px) {
  dl.page_class_schedule_section--dl div > dd dl {
    gap: 0.5em 1.2em;
  }
}
dl.page_class_schedule_section--dl div > dd dl dt, dl.page_class_schedule_section--dl div > dd dl dd {
  font-weight: 500;
}
@media screen and (min-width: 1025px) {
  dl.page_class_schedule_section--dl div > dd dl dd br {
    display: none;
  }
}
dl.page_class_schedule_section--dl.first_exam--ended div.first_exam {
  opacity: 0.5;
}
dl.page_class_schedule_section--dl.first_exam--ended div.first_exam:not(.first_step) {
  display: none;
}
dl.page_class_schedule_section--dl.first_exam--ended div.first_exam dd {
  display: none;
}

section.page_class--section.table_section {
  padding: 0 0 18%;
}
@media screen and (min-width: 600px) {
  section.page_class--section.table_section {
    padding: 0 0 12%;
  }
}
@media screen and (min-width: 768px) {
  section.page_class--section.table_section {
    padding: 0 0 10%;
  }
}
@media screen and (min-width: 1025px) {
  section.page_class--section.table_section {
    padding: 0 0 80px;
  }
}
section.page_class--section.table_section .section_container {
  width: 80%;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  section.page_class--section.table_section .section_container {
    width: 90%;
    max-width: 1100px;
  }
}
section.page_class--section.table_section .section_container .first_exam {
  margin-top: 10%;
}
@media screen and (min-width: 600px) {
  section.page_class--section.table_section .section_container .first_exam {
    margin-top: 7%;
  }
}
@media screen and (min-width: 768px) {
  section.page_class--section.table_section .section_container .first_exam {
    margin-top: 6%;
  }
}
@media screen and (min-width: 1025px) {
  section.page_class--section.table_section .section_container .first_exam {
    margin-top: 45px;
  }
}
section.page_class--section.table_section .section_container .first_exam.first_exam--ended {
  display: none;
}
section.page_class--section.table_section .section_container h2.page_class--h2 {
  margin-bottom: 1.8em;
}
section.page_class--section.table_section .section_container .text_box {
  font-size: 3.8vw;
  margin-bottom: 2.5em;
}
@media screen and (min-width: 600px) {
  section.page_class--section.table_section .section_container .text_box {
    font-size: 2.5vw;
    margin-bottom: 2em;
  }
}
@media screen and (min-width: 768px) {
  section.page_class--section.table_section .section_container .text_box {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  section.page_class--section.table_section .section_container .text_box {
    font-size: 18px;
    padding-left: 30px;
  }
}
section.page_class--section.table_section .section_container .text_box p {
  line-height: 1.8;
  margin-bottom: 0.5em;
}
section.page_class--section.table_section .section_container .text_box p span {
  padding: 0 0.2em;
  background-color: rgba(250, 255, 0, 0.5);
}

.page_class_section--tableBox {
  width: 90vw;
  overflow-x: scroll;
}
@media screen and (min-width: 1025px) {
  .page_class_section--tableBox {
    width: 100%;
    overflow-x: auto;
  }
}
.page_class_section--tableBox.space {
  margin-bottom: 15%;
}
@media screen and (min-width: 600px) {
  .page_class_section--tableBox.space {
    margin-bottom: 10%;
  }
}
@media screen and (min-width: 768px) {
  .page_class_section--tableBox.space {
    margin-bottom: 7%;
  }
}
@media screen and (min-width: 1025px) {
  .page_class_section--tableBox.space {
    margin-bottom: 40px;
  }
}
.page_class_section--tableBox::-webkit-scrollbar {
  width: 12px;
}
.page_class_section--tableBox::-webkit-scrollbar-thumb {
  background-color: #fff;
  border: 3px solid #D9D9D9;
  border-radius: 20px;
}
.page_class_section--tableBox::-webkit-scrollbar-track {
  background-color: #D9D9D9;
  border-radius: 20px;
}

.page_class_section--table {
  text-align: center;
  font-size: 3.8vw;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  padding: 0;
  margin: 0 auto;
  display: grid;
  gap: 3px;
}
@media screen and (min-width: 600px) {
  .page_class_section--table {
    font-size: 2.4vw;
  }
}
@media screen and (min-width: 768px) {
  .page_class_section--table {
    font-size: 1.9vw;
  }
}
@media screen and (min-width: 1025px) {
  .page_class_section--table {
    font-size: 17px;
    width: 100%;
  }
}
.page_class_section--table div {
  font-size: inherit;
  line-height: 1.6;
}
.page_class_section--table div.title {
  color: #fff;
  font-weight: 500;
  background-color: #13568B;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page_class_section--table div.title.column_title {
  letter-spacing: 0.1em;
  padding: 0.6em 0;
}
.page_class_section--table div.content {
  padding: 1.8em 1em;
  background-color: #E5F0F3;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page_class_section--table div.content span.fw_bold {
  font-weight: bold;
}
.page_class_section--table div.content span.bg_yellow {
  width: -moz-max-content;
  width: max-content;
  background-color: rgba(250, 255, 0, 0.5);
}
.page_class_section--table div.fw_bold {
  font-weight: bold;
}
.page_class_section--table div.bg_yellow {
  background-color: rgba(250, 255, 0, 0.5);
}
.page_class_section--table div.columns_02 {
  grid-column: span 2;
}
.page_class_section--table div.columns_03 {
  grid-column: span 3;
}
.page_class_section--table div.columns_04 {
  grid-column: span 4;
}
.page_class_section--table div.columns_05 {
  grid-column: span 5;
}
.page_class_section--table div.rows_02 {
  grid-row: span 2;
}
.page_class_section--table div.rows_03 {
  grid-row: span 3;
}
.page_class_section--table div.rows_04 {
  grid-row: span 4;
}
.page_class_section--table div.rows_05 {
  grid-row: span 5;
}
.page_class_section--table div.rows_06 {
  grid-row: span 6;
}
.page_class_section--table div.rows_07 {
  grid-row: span 7;
}
.page_class_section--table div.rows_08 {
  grid-row: span 8;
  justify-content: left;
}
.page_class_section--table div.rows_09 {
  grid-row: span 9;
  justify-content: left;
}
.page_class_section--table div.rows_10 {
  grid-row: span 10;
  justify-content: left;
}
.page_class_section--table div.al_center {
  align-items: center;
}
.page_class_section--table div.ta_left {
  text-align: left;
  padding-right: 1.5em;
  padding-left: 1.5em;
}

.page_class_section--table.table01 {
  grid-template-columns: 2.2em 8.5em 8.5em 8.5em auto;
}

.page_class_section--table.table02 {
  grid-template-columns: 6em 8em 1fr 8em 8em;
}

.page_class_section--table.table03 {
  grid-template-columns: 2.2em 7.5em 7.5em 10.5em 8.5em 8.5em auto;
}

.page_class_section--table.table04 {
  grid-template-columns: 2.2em 7.5em 11.5em 8.5em 8.5em auto;
}

.page_class_section--table.table05 {
  grid-template-columns: 3em 9em 9em auto;
}

.page_class_section--table.table06 {
  grid-template-columns: 6em 10em 1fr 10em 10em;
}

.page_class_section--table.table07 {
  grid-template-columns: 2.2em 4.4em 12.5em 8.5em 1fr;
}

.page_class_section--table.table08 {
  grid-template-columns: 10em 10em 1fr;
}

.page_class_section--table.table09 {
  grid-template-columns: 2.2em 1fr 12.5em 10em;
}

.page_class_section--table.table10 {
  grid-template-columns: 2.2em 10em 10em 1fr;
}

.page_class_section--table.table11 {
  grid-template-columns: 6em 8em 1fr 9em 8em;
}

.page_class_section_table_section--textBox {
  color: #13568B;
  font-size: 3.8vw;
  margin-top: 12%;
  padding: 2em 1.7em 2.5em;
  background-color: #EEE;
  border-radius: 10px;
}
@media screen and (min-width: 600px) {
  .page_class_section_table_section--textBox {
    font-size: 2.4vw;
    margin-top: 9%;
  }
}
@media screen and (min-width: 768px) {
  .page_class_section_table_section--textBox {
    font-size: 1.9vw;
    padding: 2.5em 2em 3em;
    margin-top: 7%;
  }
}
@media screen and (min-width: 1025px) {
  .page_class_section_table_section--textBox {
    font-size: 17px;
    padding: 2.5em 4.5em 3em;
    margin-top: 50px;
  }
}
.page_class_section_table_section--textBox h3 {
  font-size: 4.3vw;
  line-height: 1.6;
  padding-bottom: 0.7em;
  margin-bottom: 1.5em;
  position: relative;
}
@media screen and (min-width: 600px) {
  .page_class_section_table_section--textBox h3 {
    font-size: 2.8vw;
  }
}
@media screen and (min-width: 768px) {
  .page_class_section_table_section--textBox h3 {
    font-size: 2.3vw;
  }
}
@media screen and (min-width: 1025px) {
  .page_class_section_table_section--textBox h3 {
    font-size: 20px;
    margin-bottom: 1em;
  }
}
.page_class_section_table_section--textBox h3::before {
  content: "";
  width: calc(100% + 0.6em);
  height: 1px;
  background-color: #13568B;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}
@media screen and (min-width: 600px) {
  .page_class_section_table_section--textBox h3 br {
    display: none;
  }
}
.page_class_section_table_section--textBox p.text {
  line-height: 1.5;
  margin-bottom: 1.5em;
}
.page_class_section_table_section--textBox p.text span.fw_bold {
  font-weight: bold;
}
.page_class_section_table_section--textBox p.text span.fw_border {
  font-weight: bold;
  border-bottom: 1px solid;
}
.page_class_section_table_section--textBox ul.ul_number {
  margin-bottom: 2.5em;
}
.page_class_section_table_section--textBox ul.ul_iroha {
  padding-left: 1.5em;
}
.page_class_section_table_section--textBox ul li {
  line-height: 1.4;
  list-style: none;
  position: relative;
}
.page_class_section_table_section--textBox ul li:not(:last-of-type) {
  margin-bottom: 0.8em;
}
.page_class_section_table_section--textBox ul li span.fw_bold {
  font-weight: bold;
}
.page_class_section_table_section--textBox ul li span.fw_border {
  font-weight: bold;
  border-bottom: 1px solid;
}
.page_class_section_table_section--textBox ul.ul_number li {
  padding-left: 1.5em;
  counter-increment: number;
}
.page_class_section_table_section--textBox ul.ul_number li::before {
  content: counter(number) ".";
  position: absolute;
  left: 0;
  top: 0;
}
section.page_class--section.colums_section {
  padding-bottom: 15%;
}
@media screen and (min-width: 600px) {
  section.page_class--section.colums_section {
    padding-bottom: 12%;
  }
}
@media screen and (min-width: 768px) {
  section.page_class--section.colums_section {
    padding-bottom: 10%;
  }
}
@media screen and (min-width: 1025px) {
  section.page_class--section.colums_section {
    padding-bottom: 100px;
  }
}
section.page_class--section.colums_section .section_container {
  font-size: 4.3vw;
  width: 80%;
  padding: 1em 1em 1.5em 2.5em;
  margin-inline: auto;
  border: 1px solid #FFCFBA;
  border-radius: 20px;
  position: relative;
}
@media screen and (min-width: 600px) {
  section.page_class--section.colums_section .section_container {
    font-size: 2.9vw;
  }
}
@media screen and (min-width: 768px) {
  section.page_class--section.colums_section .section_container {
    font-size: 2.4vw;
  }
}
@media screen and (min-width: 1025px) {
  section.page_class--section.colums_section .section_container {
    font-size: 22px;
    width: 90%;
    max-width: 1100px;
    padding: 1em 1.5em 1.5em 3.5em;
    display: grid;
    grid-template-columns: auto 1fr;
  }
}
section.page_class--section.colums_section .section_container::before {
  content: "";
  width: 2em;
  height: calc(100% - 2em);
  background-color: #fff;
  background-image: radial-gradient(#FFCFBA 20%, transparent 20%);
  background-size: 35px 35px;
  background-repeat: repeat-y;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
@media screen and (min-width: 600px) {
  section.page_class--section.colums_section .section_container::before {
    height: calc(100% - 1.5em);
    background-image: radial-gradient(#FFCFBA 25%, transparent 25%);
    left: 0.5em;
  }
}
section.page_class--section.colums_section .section_container .img {
  width: 31%;
  margin-bottom: 5%;
}
@media screen and (min-width: 600px) {
  section.page_class--section.colums_section .section_container .img {
    width: 22%;
    margin-bottom: 4%;
  }
}
@media screen and (min-width: 768px) {
  section.page_class--section.colums_section .section_container .img {
    width: 18%;
    margin-bottom: 3%;
  }
}
@media screen and (min-width: 1025px) {
  section.page_class--section.colums_section .section_container .img {
    width: 115px;
    margin: 0;
    grid-row: span 2;
  }
}
section.page_class--section.colums_section .section_container h2, section.page_class--section.colums_section .section_container h3 {
  font-size: inherit;
  line-height: 2em;
  padding: 0 0.5em;
  background-color: #fff;
  background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%), linear-gradient(180deg, transparent 0%, transparent calc(100% - 1px), #F0662B calc(100% - 1px), #F0662B 100%);
  background-size: 6px 100%, 100% 2em;
}
@media screen and (min-width: 1025px) {
  section.page_class--section.colums_section .section_container h2, section.page_class--section.colums_section .section_container h3 {
    padding: 0 1em;
  }
}
section.page_class--section.colums_section .section_container h3 {
  color: #F0662A;
  margin-bottom: 1em;
}
@media screen and (min-width: 1025px) {
  section.page_class--section.colums_section .section_container h3 {
    min-height: 3em;
    margin: 0;
  }
}
section.page_class--section.colums_section .section_container h3 br {
  display: none;
}
section.page_class--section.colums_section .section_container .text_box {
  font-size: 3.5vw;
}
@media screen and (min-width: 600px) {
  section.page_class--section.colums_section .section_container .text_box {
    font-size: 2.2vw;
  }
}
@media screen and (min-width: 768px) {
  section.page_class--section.colums_section .section_container .text_box {
    font-size: 1.8vw;
  }
}
@media screen and (min-width: 1025px) {
  section.page_class--section.colums_section .section_container .text_box {
    font-size: 16px;
    margin-top: 1.5em;
    grid-column: span 2;
  }
}
section.page_class--section.colums_section .section_container .text_box p {
  letter-spacing: 0.05em;
  line-height: 1.6em;
  padding: 0 0.5em;
  background-color: #fff;
  background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%), linear-gradient(180deg, transparent 0%, transparent calc(100% - 1px), #959595 calc(100% - 1px), #959595 100%);
  background-size: 6px 100%, 100% 1.6em;
}
@media screen and (min-width: 1025px) {
  section.page_class--section.colums_section .section_container .text_box p {
    line-height: 1.8em;
    padding: 0 0.8em;
    background-size: 6px 100%, 100% 1.8em;
  }
}

section.page_class--section.contents_section {
  padding: 0 0 18%;
}
@media screen and (min-width: 600px) {
  section.page_class--section.contents_section {
    padding: 0 0 12%;
  }
}
@media screen and (min-width: 768px) {
  section.page_class--section.contents_section {
    padding: 0 0 9%;
  }
}
@media screen and (min-width: 1025px) {
  section.page_class--section.contents_section {
    padding: 0 0 80px;
  }
}
section.page_class--section.contents_section .section_container {
  width: 80%;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  section.page_class--section.contents_section .section_container {
    width: 90%;
    max-width: 1100px;
  }
}
section.page_class--section.contents_section .section_container h2.page_class--h2 {
  margin-bottom: 1.8em;
}

.page_class--contentsBox {
  color: #13568B;
  font-size: 3.8vw;
  padding-bottom: 2em;
  background-color: #EEE;
  border-radius: 10px;
}
@media screen and (min-width: 600px) {
  .page_class--contentsBox {
    font-size: 2.4vw;
  }
}
@media screen and (min-width: 768px) {
  .page_class--contentsBox {
    font-size: 1.9vw;
    padding-bottom: 2.5em;
  }
}
@media screen and (min-width: 1025px) {
  .page_class--contentsBox {
    font-size: 17px;
    padding-bottom: 3em;
  }
}
.page_class--contentsBox:has(.first_exam--ended) {
  opacity: 0.5;
}
.page_class--contentsBox h3 {
  text-align: center;
  color: #fff;
  font-size: 4.3vw;
  line-height: 1.8;
  padding: 1.3em 0;
  margin-bottom: 1.8em;
  background-color: #13568B;
  border-radius: 10px;
}
@media screen and (min-width: 600px) {
  .page_class--contentsBox h3 {
    font-size: 2.9vw;
  }
}
@media screen and (min-width: 768px) {
  .page_class--contentsBox h3 {
    font-size: 2.4vw;
    padding: 0.5em 0;
    margin-bottom: 1.5em;
  }
}
@media screen and (min-width: 1025px) {
  .page_class--contentsBox h3 {
    font-size: 22px;
  }
}
.page_class--contentsBox h3.bg_lightblue {
  background-color: #208FE4;
}
@media screen and (min-width: 768px) {
  .page_class--contentsBox h3 br {
    display: none;
  }
}
.page_class--contentsBox .page_class--accordionButton {
  color: inherit;
  padding: 0 1.7em;
  margin-bottom: 2em;
}
@media screen and (min-width: 768px) {
  .page_class--contentsBox .page_class--accordionButton {
    padding: 0 3em;
  }
}
@media screen and (min-width: 1025px) {
  .page_class--contentsBox .page_class--accordionButton {
    padding: 0 4em;
  }
}
.page_class--contentsBox .page_class--accordionButton button {
  color: inherit;
}
.page_class--contentsBox .first_exam {
  font-size: inherit;
}
.page_class--contentsBox .first_exam.first_exam--ended {
  display: none;
}
.page_class--contentsBox p.text {
  font-weight: bold;
  line-height: 1.4;
  padding: 0 1.7em;
  margin-bottom: 0.7em;
}
@media screen and (min-width: 768px) {
  .page_class--contentsBox p.text {
    padding: 0 3em;
  }
}
@media screen and (min-width: 1025px) {
  .page_class--contentsBox p.text {
    line-height: 1.8;
    padding: 0 4em;
    margin-bottom: 0;
  }
}
.page_class--contentsBox p.text:last-of-type {
  margin-bottom: 2em;
}
.page_class--contentsBox dl {
  padding: 0 1.7em;
}
@media screen and (min-width: 768px) {
  .page_class--contentsBox dl {
    padding: 0 3em;
  }
}
@media screen and (min-width: 1025px) {
  .page_class--contentsBox dl {
    padding: 0 4em;
  }
}
.page_class--contentsBox dl dt {
  font-size: 4.3vw;
  font-weight: bold;
  line-height: 1.6;
  padding-bottom: 0.7em;
  margin-bottom: 1em;
  position: relative;
}
@media screen and (min-width: 600px) {
  .page_class--contentsBox dl dt {
    font-size: 2.8vw;
  }
}
@media screen and (min-width: 768px) {
  .page_class--contentsBox dl dt {
    font-size: 2.3vw;
  }
}
@media screen and (min-width: 1025px) {
  .page_class--contentsBox dl dt {
    font-size: 20px;
  }
}
.page_class--contentsBox dl dt.price_dt {
  margin-top: 2.5em;
}
@media screen and (min-width: 1025px) {
  .page_class--contentsBox dl dt.price_dt {
    margin-top: 2em;
  }
}
.page_class--contentsBox dl dt.period_dt {
  margin-top: 2em;
}
@media screen and (min-width: 1025px) {
  .page_class--contentsBox dl dt.period_dt {
    margin-top: 1.8em;
  }
}
.page_class--contentsBox dl dt::before {
  content: "";
  width: calc(100% + 0.6em);
  height: 1px;
  background-color: #13568B;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}
.page_class--contentsBox dl dd.services_dd > ul > li {
  padding-left: 1.5em;
  list-style: none;
  line-height: 1.4;
  position: relative;
  counter-increment: number;
}
.page_class--contentsBox dl dd.services_dd > ul > li:not(:last-of-type) {
  margin-bottom: 0.8em;
}
.page_class--contentsBox dl dd.services_dd > ul > li::before {
  content: counter(number) ".";
  position: absolute;
  left: 0;
  top: 0;
}
.page_class--contentsBox dl dd.services_dd > ul > li span {
  background-color: rgba(250, 255, 0, 0.5);
}
.page_class--contentsBox dl dd.services_dd > ul > li ul li {
  list-style: none;
  line-height: 1.4;
}
.page_class--contentsBox dl dd.services_dd > ul > li ul li:not(:last-of-type) {
  margin-bottom: 0.8em;
}
.page_class--contentsBox dl dd.price_dd {
  font-size: 4.3vw;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (min-width: 600px) {
  .page_class--contentsBox dl dd.price_dd {
    font-size: 2.8vw;
  }
}
@media screen and (min-width: 768px) {
  .page_class--contentsBox dl dd.price_dd {
    font-size: 2.3vw;
  }
}
@media screen and (min-width: 1025px) {
  .page_class--contentsBox dl dd.price_dd {
    font-size: 20px;
  }
}
.page_class--contentsBox dl dd.price_dd > span {
  background-color: rgba(250, 255, 0, 0.5);
}
.page_class--contentsBox dl dd.price_dd > ul > li {
  list-style: none;
  line-height: 1.4;
  display: grid;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .page_class--contentsBox dl dd.price_dd > ul > li {
    grid-template-columns: 6.5em 14em 1fr;
  }
}
.page_class--contentsBox dl dd.price_dd > ul > li:not(:last-of-type) {
  margin-bottom: 0.8em;
}
.page_class--contentsBox dl dd.price_dd > ul > li span.bg_yellow {
  width: -moz-max-content;
  width: max-content;
  background-color: rgba(250, 255, 0, 0.5);
  display: inline-block;
}
@media screen and (min-width: 1025px) {
  .page_class--contentsBox dl dd.price_dd br {
    display: none;
  }
}
.page_class--contentsBox dl dd.period_dd {
  font-weight: bold;
  line-height: 1.4;
}

section.page_class--section.price_section {
  padding-bottom: 15%;
}
@media screen and (min-width: 600px) {
  section.page_class--section.price_section {
    padding-bottom: 10%;
  }
}
@media screen and (min-width: 768px) {
  section.page_class--section.price_section {
    padding-bottom: 8%;
  }
}
@media screen and (min-width: 1025px) {
  section.page_class--section.price_section {
    padding-bottom: 80px;
  }
}
section.page_class--section.price_section .section_container {
  width: 88%;
  padding: 6% 0 8%;
  margin-inline: auto;
  border: 2px solid #13568B;
  border-radius: 10px;
}
@media screen and (min-width: 600px) {
  section.page_class--section.price_section .section_container {
    padding: 5% 0 7%;
  }
}
@media screen and (min-width: 768px) {
  section.page_class--section.price_section .section_container {
    padding: 4% 0 6%;
  }
}
@media screen and (min-width: 1025px) {
  section.page_class--section.price_section .section_container {
    width: 90%;
    max-width: 1100px;
    padding: 35px 0 50px;
  }
}
section.page_class--section.price_section .section_container h2 {
  text-align: center;
  color: #13568B;
  font-size: 4.3vw;
  line-height: 1.8;
  margin-bottom: 2em;
}
@media screen and (min-width: 600px) {
  section.page_class--section.price_section .section_container h2 {
    font-size: 2.9vw;
  }
}
@media screen and (min-width: 768px) {
  section.page_class--section.price_section .section_container h2 {
    font-size: 2.4vw;
    margin-bottom: 2.2em;
  }
}
@media screen and (min-width: 1025px) {
  section.page_class--section.price_section .section_container h2 {
    font-size: 22px;
  }
}
@media screen and (min-width: 600px) {
  section.page_class--section.price_section .section_container h2 br {
    display: none;
  }
}

dl.page_class_price_section--dl {
  color: #13568B;
  font-size: 3.8vw;
  width: 80%;
  margin: 0 auto 2.5em;
}
@media screen and (min-width: 600px) {
  dl.page_class_price_section--dl {
    font-size: 2.4vw;
    width: 87%;
    margin: 0 auto 2em;
  }
}
@media screen and (min-width: 768px) {
  dl.page_class_price_section--dl {
    font-size: 1.9vw;
  }
}
@media screen and (min-width: 1025px) {
  dl.page_class_price_section--dl {
    font-size: 17px;
    min-width: 900px;
  }
}
dl.page_class_price_section--dl div {
  font-size: inherit;
}
dl.page_class_price_section--dl div:first-of-type {
  margin-bottom: 3em;
}
dl.page_class_price_section--dl div dt {
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  dl.page_class_price_section--dl div dt {
    margin-bottom: 1.2em;
  }
}
@media screen and (min-width: 600px) {
  dl.page_class_price_section--dl div dt br {
    display: none;
  }
}
dl.page_class_price_section--dl div dd {
  margin-bottom: 1em;
  border-bottom: 1px solid #13568B;
  position: relative;
  padding-left: 2em;
}
@media screen and (min-width: 768px) {
  dl.page_class_price_section--dl div dd {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 0.5em;
  }
}
@media screen and (min-width: 1025px) {
  dl.page_class_price_section--dl div dd {
    grid-template-columns: 1.8fr 1fr auto;
  }
}
dl.page_class_price_section--dl div dd::before {
  content: "●";
  line-height: 1.8;
  position: absolute;
  left: 0;
  top: 0;
}
dl.page_class_price_section--dl div dd p {
  line-height: 1.8;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  dl.page_class_price_section--dl div dd p {
    margin-bottom: 0.5em;
  }
}
dl.page_class_price_section--dl div dd p:nth-of-type(2) {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
@media screen and (min-width: 1025px) {
  dl.page_class_price_section--dl div dd p:nth-of-type(2) {
    min-width: 290px;
  }
}
dl.page_class_price_section--dl div dd p.price {
  text-align: right;
  color: #C31414;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  dl.page_class_price_section--dl div dd p.price {
    padding-bottom: 0.5em;
    grid-column: span 2;
  }
}
@media screen and (min-width: 1025px) {
  dl.page_class_price_section--dl div dd p.price {
    grid-column: span 1;
  }
}
@media screen and (min-width: 600px) {
  dl.page_class_price_section--dl div dd p br {
    display: none;
  }
}

span.icon_kihon::before {
  content: "\f4ff";
  color: #862600;
  font-family: "Font Awesome 6 Free";
  font-size: 1.1em;
  font-weight: 900;
  margin: 0 0.3em 0 0.2em;
  position: relative;
}
span.icon_gensen::before {
  content: "\f518";
  color: #EF6E3B;
  font-family: "Font Awesome 6 Free";
  font-size: 1.1em;
  font-weight: 900;
  margin: 0 0.3em 0 0.2em;
  position: relative;
}
span.icon_gensen.gensen_01::before {
  color: rgba(239, 110, 59, 0.45);
  font-family: "Font Awesome 6 Free";
  font-size: 1.1em;
  font-weight: 900;
  margin: 0 0.3em 0 0.2em;
  position: relative;
}
span.icon_gensen.gensen_02::before {
  color: rgba(239, 110, 59, 0.75);
  font-family: "Font Awesome 6 Free";
  font-size: 1.1em;
  font-weight: 900;
  margin: 0 0.3em 0 0.2em;
  position: relative;
}
span.icon_gensen.gensen_03::before {
  color: #EF6E3B;
  font-family: "Font Awesome 6 Free";
  font-size: 1.1em;
  font-weight: 900;
  margin: 0 0.3em 0 0.2em;
  position: relative;
}
span.icon_daikou::before {
  content: "\f303";
  color: #13568B;
  font-family: "Font Awesome 6 Free";
  font-size: 1.1em;
  font-weight: 900;
  margin: 0 0.3em 0 0.2em;
  position: relative;
}

dl.page_class_price_section--dl div dd p span.icon_box {
  right: 4em;
  position: relative;
  transform: translate(100%, 0);
}
@media screen and (min-width: 768px) {
  dl.page_class_price_section--dl div dd p span.icon_box {
    right: 3.2em;
  }
}
@media screen and (min-width: 1025px) {
  dl.page_class_price_section--dl div dd p span.icon_box {
    right: 6em;
  }
}
dl.page_class_price_section--dl div dd p span.icon_box span.icon_daikou + span.icon_gensen:not(.gensen_01):not(.gensen_02):not(.gensen_03) {
  margin: 0 0.3em 0 0.1em;
}

ul.page_class_price_section--ul {
  font-size: 3.8vw;
  width: 80%;
  margin: 0 auto 2em;
}
@media screen and (min-width: 600px) {
  ul.page_class_price_section--ul {
    font-size: 2.4vw;
    width: 85%;
    margin: 0 auto 2.5em;
  }
}
@media screen and (min-width: 768px) {
  ul.page_class_price_section--ul {
    font-size: 1.9vw;
    margin: 0 auto 3em;
  }
}
@media screen and (min-width: 1025px) {
  ul.page_class_price_section--ul {
    font-size: 17px;
  }
}
ul.page_class_price_section--ul li {
  color: #13568B;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 0.8em;
  list-style: none;
}

.common_button.page_class_price_section--button {
  background-color: #13568B;
  border: 3px solid #13568B;
  transition: all 0.3s;
}
.common_button.page_class_price_section--button.bg_vermilion {
  background-color: #EF454A;
  border: 3px solid #EF454A;
}
.common_button.page_class_price_section--button:hover {
  background-color: #fff;
}
.common_button.page_class_price_section--button a {
  color: #fff;
  transition: all 0.3s;
}
.common_button.page_class_price_section--button a:hover {
  color: #13568B;
}
.common_button.page_class_price_section--button a::before {
  background-color: #fff;
  right: 2em;
  transition: all 0.3s;
}
.common_button.page_class_price_section--button a:hover::before {
  background-color: #13568B;
}
.common_button.page_class_price_section--button.bg_vermilion a:hover {
  color: #EF454A;
}
.common_button.page_class_price_section--button.bg_vermilion a:hover::before {
  background-color: #EF454A;
}

.page_header .header_container.page_faq--header h1 {
  white-space: nowrap;
}

section.page_faq--section {
  padding: 8% 0 5%;
}
@media screen and (min-width: 600px) {
  section.page_faq--section {
    padding: 8% 0 3%;
  }
}
@media screen and (min-width: 768px) {
  section.page_faq--section {
    padding: 8% 0 2%;
  }
}
@media screen and (min-width: 1025px) {
  section.page_faq--section {
    padding: 80px 0 20px;
  }
}
section.page_faq--section.section04 {
  padding: 8% 0 15%;
}
@media screen and (min-width: 600px) {
  section.page_faq--section.section04 {
    padding: 8% 0 12%;
  }
}
@media screen and (min-width: 768px) {
  section.page_faq--section.section04 {
    padding: 8% 0 9%;
  }
}
@media screen and (min-width: 1025px) {
  section.page_faq--section.section04 {
    padding: 80px 0 90px;
  }
}
section.page_faq--section .section_container {
  width: 80%;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 1025px) {
  section.page_faq--section .section_container {
    width: 85%;
    max-width: 1000px;
  }
}

h2.page_faq--h2 {
  text-align: center;
  font-size: 4vw;
  letter-spacing: 0.15em;
  line-height: 1.6;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto 1.8em;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 600px) {
  h2.page_faq--h2 {
    font-size: 2.9vw;
  }
}
@media screen and (min-width: 768px) {
  h2.page_faq--h2 {
    font-size: 2.6vw;
  }
}
@media screen and (min-width: 1025px) {
  h2.page_faq--h2 {
    font-size: 26px;
    margin: 0 auto 2.2em;
  }
}
h2.page_faq--h2 span {
  font-size: 1.35em;
  display: block;
}

.page_faq--imgBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
}
@media screen and (min-width: 600px) {
  .page_faq--imgBox {
    width: 90%;
    transform: translate(-50%, -15%);
  }
}
@media screen and (min-width: 768px) {
  .page_faq--imgBox {
    width: 85%;
    transform: translate(-50%, -25%);
  }
}
@media screen and (min-width: 1025px) {
  .page_faq--imgBox {
    width: 75%;
    transform: translate(-50%, -30%);
  }
}
.page_faq--imgBox img {
  width: 13.5vw;
}
@media screen and (min-width: 768px) {
  .page_faq--imgBox img {
    width: 14.5vw;
  }
}
@media screen and (min-width: 1025px) {
  .page_faq--imgBox img {
    width: 160px;
  }
}

dl.page_faq--dl {
  font-size: 4vw;
  border-top: 1px solid #13568B;
}
@media screen and (min-width: 600px) {
  dl.page_faq--dl {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 768px) {
  dl.page_faq--dl {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  dl.page_faq--dl {
    font-size: 18px;
  }
}
dl.page_faq--dl dt {
  color: #13568B;
  font-weight: bold;
  line-height: 1.6;
  padding: 1.5em 2.5em 1.5em 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  dl.page_faq--dl dt {
    padding: 1.5em 2.5em 1.5em 1em;
  }
}
@media screen and (min-width: 1025px) {
  dl.page_faq--dl dt {
    padding: 1.5em 2.5em 1.5em 1.5em;
  }
}
@media screen and (min-width: 600px) {
  dl.page_faq--dl dt br.br_sp {
    display: none;
  }
}
dl.page_faq--dl dt button.page_faq--accordionButton {
  width: 2em;
  padding: 0;
  position: absolute;
  right: 0.3em;
  top: 1.3em;
  aspect-ratio: 1;
}
@media screen and (min-width: 600px) {
  dl.page_faq--dl dt button.page_faq--accordionButton {
    width: 2.5em;
    top: 1em;
  }
}
dl.page_faq--dl dt button.page_faq--accordionButton:hover {
  opacity: 0.7;
}
dl.page_faq--dl dt button.page_faq--accordionButton::before, dl.page_faq--dl dt button.page_faq--accordionButton::after {
  content: "";
  width: 60%;
  height: 2px;
  background-color: #13568B;
  position: absolute;
  left: 50%;
  top: 50%;
}
dl.page_faq--dl dt button.page_faq--accordionButton::before {
  transform: translate(-50%, -50%);
}
dl.page_faq--dl dt button.page_faq--accordionButton::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: all 0.4s;
}
dl.page_faq--dl dt button.page_faq--accordionButton.active::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
dl.page_faq--dl dd.page_faq_accordion--dd {
  padding-right: 2em;
  border-bottom: 1px solid #13568B;
  display: grid;
  grid-template-rows: 0fr;
  transition: all 0.4s;
}
@media screen and (min-width: 768px) {
  dl.page_faq--dl dd.page_faq_accordion--dd {
    padding-left: 1em;
  }
}
@media screen and (min-width: 1025px) {
  dl.page_faq--dl dd.page_faq_accordion--dd {
    padding-left: 1.5em;
  }
}
dl.page_faq--dl dd.page_faq_accordion--dd.active {
  grid-template-rows: 1fr;
}
dl.page_faq--dl dd.page_faq_accordion--dd div {
  font-size: inherit;
  overflow: hidden;
}
dl.page_faq--dl dd.page_faq_accordion--dd div p {
  color: #F0662A;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 1025px) {
  dl.page_faq--dl dd.page_faq_accordion--dd div p {
    margin-bottom: 0.8em;
  }
}
dl.page_faq--dl dd.page_faq_accordion--dd div p:last-of-type {
  margin-bottom: 2em;
}
@media screen and (min-width: 1025px) {
  dl.page_faq--dl dd.page_faq_accordion--dd div p:last-of-type {
    margin-bottom: 3em;
  }
}

section.archive_special_articles--section {
  padding: 8% 0 14%;
}
@media screen and (min-width: 600px) {
  section.archive_special_articles--section {
    padding: 6% 0 12%;
  }
}
@media screen and (min-width: 768px) {
  section.archive_special_articles--section {
    padding: 6% 0 10%;
  }
}
@media screen and (min-width: 1025px) {
  section.archive_special_articles--section {
    padding: 70px 0 80px;
  }
}
section.archive_special_articles--section .section_container {
  font-size: 3.8vw;
  width: 80%;
  margin-inline: auto;
}
@media screen and (min-width: 600px) {
  section.archive_special_articles--section .section_container {
    font-size: 2.4vw;
  }
}
@media screen and (min-width: 768px) {
  section.archive_special_articles--section .section_container {
    font-size: 1.9vw;
  }
}
@media screen and (min-width: 1025px) {
  section.archive_special_articles--section .section_container {
    font-size: 18px;
    width: 90%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: auto 305px;
    gap: 0 40px;
  }
}
section.archive_special_articles--section .section_container > h2 {
  font-size: 4.3vw;
  line-height: 1.4;
  padding-left: 0.6em;
  margin-bottom: 1.5em;
  position: relative;
}
@media screen and (min-width: 600px) {
  section.archive_special_articles--section .section_container > h2 {
    font-size: 3vw;
  }
}
@media screen and (min-width: 768px) {
  section.archive_special_articles--section .section_container > h2 {
    font-size: 2.7vw;
  }
}
@media screen and (min-width: 1025px) {
  section.archive_special_articles--section .section_container > h2 {
    font-size: 24px;
    padding-left: 1.1em;
    grid-column: span 2;
  }
}
section.archive_special_articles--section .section_container > h2::before {
  content: "";
  width: 5px;
  height: 1.3em;
  background-color: #13568B;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(0, 10%);
}
@media screen and (min-width: 600px) {
  section.archive_special_articles--section .section_container > h2::before {
    top: 50%;
    transform: translate(0, -50%);
  }
}
@media screen and (min-width: 1025px) {
  section.archive_special_articles--section .section_container > h2::before {
    width: 10px;
    height: 1.8em;
  }
}
@media screen and (min-width: 600px) {
  section.archive_special_articles--section .section_container > h2 br {
    display: none;
  }
}
section.archive_special_articles--section .section_container .message_box {
  font-size: 4.3vw;
  margin-bottom: 2em;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0 0.5em;
}
@media screen and (min-width: 600px) {
  section.archive_special_articles--section .section_container .message_box {
    font-size: 2.7vw;
    grid-template-columns: 1fr 3.5fr;
  }
}
@media screen and (min-width: 768px) {
  section.archive_special_articles--section .section_container .message_box {
    font-size: 2.2vw;
    grid-template-columns: 1fr 4.5fr;
  }
}
@media screen and (min-width: 1025px) {
  section.archive_special_articles--section .section_container .message_box {
    font-size: 20px;
    width: 95%;
    margin: 0 auto 1em;
    grid-template-columns: 135px 1fr;
    gap: 0 45px;
    grid-column: span 2;
  }
}
section.archive_special_articles--section .section_container .message_box .text_box {
  font-size: inherit;
}
@media screen and (min-width: 1025px) {
  section.archive_special_articles--section .section_container .message_box .text_box {
    padding-top: 0.5em;
  }
}
section.archive_special_articles--section .section_container .message_box .text_box p {
  font-weight: bold;
  line-height: 1.2;
}
section.archive_special_articles--section .section_container .message_box .text_box p:not(:last-of-type) {
  margin-bottom: 0.5em;
}
section.archive_special_articles--section .section_container nav.navigation.pagination {
  font-size: 4vw;
  margin-bottom: 3em;
}
@media screen and (min-width: 600px) {
  section.archive_special_articles--section .section_container nav.navigation.pagination {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 768px) {
  section.archive_special_articles--section .section_container nav.navigation.pagination {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  section.archive_special_articles--section .section_container nav.navigation.pagination {
    font-size: 18px;
    margin: 0;
    grid-column: 1/2;
  }
}
section.archive_special_articles--section .section_container nav.navigation.pagination .nav-links {
  font-size: inherit;
  display: flex;
  justify-content: center;
  gap: 0 1em;
}
section.archive_special_articles--section .section_container nav.navigation.pagination .nav-links .page-numbers {
  font-weight: bold;
  width: 2.4em;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
}
section.archive_special_articles--section .section_container nav.navigation.pagination .nav-links span.page-numbers.current {
  color: #fff;
  background-color: #F0662A;
}
section.archive_special_articles--section .section_container nav.navigation.pagination .nav-links a.page-numbers {
  color: inherit;
  background-color: #EEE;
}
section.archive_special_articles--section .section_container nav.navigation.pagination .nav-links a.next.page-numbers, section.archive_special_articles--section .section_container nav.navigation.pagination .nav-links a.prev.page-numbers {
  color: inherit;
  background-color: #C1C1C1;
}

ul.archive_special_articles--ul {
  margin-bottom: 3em;
}
@media screen and (min-width: 1025px) {
  ul.archive_special_articles--ul {
	margin-bottom: 2em;
    grid-column: 1/2;
  }
}
ul.archive_special_articles--ul li {
  list-style: none;
  padding-bottom: 1.2em;
  margin-bottom: 2em;
  border-bottom: 1px solid #0E3E65;
}
@media screen and (min-width: 1025px) {
  ul.archive_special_articles--ul li {
    /* padding: 0;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0 20px; */
  }
}
ul.archive_special_articles--ul li .title_box {
  font-size: 4vw;
  padding: 1em 1.5em;
  margin-bottom: 1em;
  background-color: #0E3E65;
  border-radius: 10px;
}
@media screen and (min-width: 600px) {
  ul.archive_special_articles--ul li .title_box {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 768px) {
  ul.archive_special_articles--ul li .title_box {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  ul.archive_special_articles--ul li .title_box {
    font-size: 18px;
	padding: 1.2em 1.8em;
    /* padding: 0 2em;
    margin: 0;
    display: flex;
    align-items: center; */
  }
}
ul.archive_special_articles--ul li .title_box p a {
  color: #fff;
  line-height: 1.4;
  background: linear-gradient(#fff, #fff) 0 100%/0 1px no-repeat;
  transition: background 0.4s;
}
ul.archive_special_articles--ul li .title_box p a:hover {
  background-size: 100% 1px;
}
ul.archive_special_articles--ul li .contents_box {
  font-size: 3.5vw;
  line-height: 1.4em;
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (min-width: 600px) {
  ul.archive_special_articles--ul li .contents_box {
    font-size: 2.3vw;
  }
}
@media screen and (min-width: 768px) {
  ul.archive_special_articles--ul li .contents_box {
    font-size: 1.9vw;
  }
}
@media screen and (min-width: 1025px) {
  ul.archive_special_articles--ul li .contents_box {
    font-size: 16px;
    -webkit-line-clamp: 5;
  }
}
ul.archive_special_articles--ul li .contents_box .articles_info {
  font-size: 0.9em;
  padding-bottom: 1em;
  margin-bottom: 1.2em;
  border-bottom: 1px solid #0E3E65;
  display: flex;
  gap: 0 1em;
}
ul.archive_special_articles--ul li .contents_box .articles_info span {
  color: #858585;
  display: flex;
  align-items: center;
  gap: 0 0.5em;
}
ul.archive_special_articles--ul li .contents_box .articles_info span img {
  width: 1.2em;
  height: auto;
}
ul.archive_special_articles--ul li .contents_box h2, ul.archive_special_articles--ul li .contents_box h3 {
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.4;
  display: inline;
}
ul.archive_special_articles--ul li .contents_box p {
  line-height: 1.4;
  display: inline;
}
@media screen and (min-width: 1025px) {
  ul.archive_special_articles--ul li .contents_box p {
    line-height: 1.6;
  }
}

aside.archive_special_articles--aside {
  color: #13568B;
  padding: 2em 1.5em;
  background-color: #EEE;
  border-radius: 20px;
  box-sizing: border-box;
}
@media screen and (min-width: 600px) {
  aside.archive_special_articles--aside {
    width: 65%;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  aside.archive_special_articles--aside {

  }
}
@media screen and (min-width: 1025px) {
  aside.archive_special_articles--aside {
    font-size: 16px;
    width: 100%;
    grid-row: 3 / 5;
    grid-column: 2 / 3;
    align-self: start;
  }
}

aside.archive_special_articles--aside h3 {
  text-align: center;
  font-size: 5.4vw;
  margin-bottom: 1.5em;
}
@media screen and (min-width: 600px) {
  aside.archive_special_articles--aside h3 {
    font-size: 3.4vw;
  }
}
@media screen and (min-width: 768px) {
  aside.archive_special_articles--aside h3 {
    font-size: 2.7vw;
  }
}
@media screen and (min-width: 1025px) {
  aside.archive_special_articles--aside h3 {
    font-size: 24px;
  }
}

aside.archive_special_articles--aside ul.category_ul {

}

aside.archive_special_articles--aside ul.category_ul li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0 1em;
}

aside.archive_special_articles--aside ul.category_ul li:not(:last-of-type) {
  margin-bottom: 2em;
}

aside.archive_special_articles--aside ul.category_ul li::before {
  content: "";
  width: 1em;
  height: 1px;
  background-color: #13568B;
  display: inline-block;
}

aside.archive_special_articles--aside ul.category_ul li a {
  color: inherit;
}
aside.archive_special_articles--aside ul.category_ul li a:hover {
  opacity: 0.7;
}
aside.archive_special_articles--aside ul.category_ul li.current a {
  border-bottom: 1px solid;
}

.page_header .header_container.page_faq--header h1 {
  white-space: nowrap;
}

article.single_special_articles--articles {
  padding: 8% 0 14%;
}
@media screen and (min-width: 600px) {
  article.single_special_articles--articles {
    padding: 6% 0 12%;
  }
}
@media screen and (min-width: 768px) {
  article.single_special_articles--articles {
    padding: 6% 0 10%;
  }
}
@media screen and (min-width: 1025px) {
  article.single_special_articles--articles {
    padding: 70px 0 80px;
  }
}
article.single_special_articles--articles .article_container {
  font-size: 3.8vw;
  width: 80%;
  margin-inline: auto;
}
@media screen and (min-width: 600px) {
  article.single_special_articles--articles .article_container {
    font-size: 2.4vw;
  }
}
@media screen and (min-width: 768px) {
  article.single_special_articles--articles .article_container {
    font-size: 1.9vw;
  }
}
@media screen and (min-width: 1025px) {
  article.single_special_articles--articles .article_container {
    font-size: 18px;
    width: 90%;
    max-width: 1100px;
  }
}
article.single_special_articles--articles .article_container h2 {
  font-size: 4.3vw;
  line-height: 1.4;
  padding-left: 0.6em;
  margin-bottom: 1.5em;
  position: relative;
}
@media screen and (min-width: 600px) {
  article.single_special_articles--articles .article_container h2 {
    font-size: 3vw;
  }
}
@media screen and (min-width: 768px) {
  article.single_special_articles--articles .article_container h2 {
    font-size: 2.7vw;
  }
}
@media screen and (min-width: 1025px) {
  article.single_special_articles--articles .article_container h2 {
    font-size: 24px;
    padding-left: 1.1em;
  }
}
article.single_special_articles--articles .article_container h2::before {
  content: "";
  width: 5px;
  height: 1.3em;
  background-color: #13568B;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(0, 10%);
}
@media screen and (min-width: 600px) {
  article.single_special_articles--articles .article_container h2::before {
    top: 50%;
    transform: translate(0, -50%);
  }
}
@media screen and (min-width: 1025px) {
  article.single_special_articles--articles .article_container h2::before {
    width: 10px;
    height: 1.8em;
  }
}
@media screen and (min-width: 600px) {
  article.single_special_articles--articles .article_container h2 br {
    display: none;
  }
}
article.single_special_articles--articles .article_container .articles_info {
  font-size: 0.9em;
  padding-bottom: 1.5em;
  margin-bottom: 2em;
  border-bottom: 1px solid #0E3E65;
  display: flex;
  gap: 0 1.5em;
}
article.single_special_articles--articles .article_container .articles_info span {
  color: #858585;
  display: flex;
  align-items: center;
  gap: 0 0.5em;
}
article.single_special_articles--articles .article_container .articles_info span img {
  width: 1.2em;
  height: auto;
}
article.single_special_articles--articles .article_container h3 {
  color: #F0662A;
  font-size: 1.3em;
  line-height: 1.4;
  margin: 1.5em 0 1em;
}
@media screen and (min-width: 1025px) {
  article.single_special_articles--articles .article_container h3 {
    margin: 2em 0 1em;
  }
}
article.single_special_articles--articles .article_container p {
  line-height: 1.6;
}
article.single_special_articles--articles .article_container p.fw_bold {
  font-weight: bold;
  margin: 2em 0 0.5em;
}
article.single_special_articles--articles .article_container p.color_blue {
  color: #0E3E65;
  font-weight: bold;
  margin: 2em 0 1.5em;
}
article.single_special_articles--articles .article_container iframe {
  width: 100%;
  height: auto;
  margin-bottom: 8%;
  aspect-ratio: 1.5/1;
}
@media screen and (min-width: 600px) {
  article.single_special_articles--articles .article_container iframe {
    margin-bottom: 5%;
  }
}
@media screen and (min-width: 768px) {
  article.single_special_articles--articles .article_container iframe {
    margin-bottom: 3%;
  }
}
@media screen and (min-width: 1025px) {
  article.single_special_articles--articles .article_container iframe {
    width: 40%;
    margin-bottom: 20px;
  }
}
article.single_special_articles--articles .article_container > img {
  width: 40%;
  margin-bottom: 8%;
  border: 1px solid #000;
}
@media screen and (min-width: 600px) {
  article.single_special_articles--articles .article_container > img {
    margin-bottom: 5%;
  }
}
@media screen and (min-width: 768px) {
  article.single_special_articles--articles .article_container > img {
    margin-bottom: 3%;
  }
}
@media screen and (min-width: 1025px) {
  article.single_special_articles--articles .article_container > img {
    width: 25%;
    margin-bottom: 20px;
  }
}
article.single_special_articles--articles .article_container dl {
  margin: 1.5em 0;
}
article.single_special_articles--articles .article_container dl dt, article.single_special_articles--articles .article_container dl dd {
  line-height: 1.4;
}
article.single_special_articles--articles .article_container dl dt {
  margin-bottom: 0.3em;
}
article.single_special_articles--articles .article_container dl dt:not(:first-of-type) {
  margin-top: 1.5em;
}
article.single_special_articles--articles .article_container dl dd {
  padding-left: 0.5em;
}
article.single_special_articles--articles .article_container ul {
  margin-top: 0.5em;
}
article.single_special_articles--articles .article_container ul li {
  line-height: 1.4;
  list-style: none;
  padding-left: 0.5em;
}
article.single_special_articles--articles .article_container > a {
  color: inherit;
  border-bottom: 1px solid;
}
article.single_special_articles--articles .article_container .common_button.to_class {
  width: 20em;
  margin: 3em auto 5em;
  background-color: #F0662A;
  border: 3px solid #F0662A;
  transition: all 0.3s;
}
article.single_special_articles--articles .article_container .common_button.to_class:hover {
  background-color: #fff;
}
article.single_special_articles--articles .article_container .common_button.to_class a {
  color: #fff;
  transition: all 0.3s;
}
article.single_special_articles--articles .article_container .common_button.to_class a:hover {
  color: #F0662A;
}
article.single_special_articles--articles .article_container .common_button.to_class a::before {
  background-color: #fff;
  right: 2em;
  transition: all 0.3s;
}
article.single_special_articles--articles .article_container .common_button.to_class a:hover::before {
  background-color: #F0662A;
}
article.single_special_articles--articles .article_container .to_back--button {
  text-align: center;
  font-size: 4vw;
  width: 15em;
  background-color: #C1C1C1;
  border: 3px solid #C1C1C1;
  border-radius: 5px;
  margin-inline: auto;
  transition: all 0.3s;
}
@media screen and (min-width: 600px) {
  article.single_special_articles--articles .article_container .to_back--button {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 768px) {
  article.single_special_articles--articles .article_container .to_back--button {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1025px) {
  article.single_special_articles--articles .article_container .to_back--button {
    font-size: 18px;
  }
}
article.single_special_articles--articles .article_container .to_back--button:hover {
  background-color: #fff;
}
article.single_special_articles--articles .article_container .to_back--button a {
  color: inherit;
  font-weight: bold;
  padding: 1.2em 0;
  display: block;
  transition: all 0.3s;
}

footer {
  color: #fff;
  padding: 10% 0 3%;
  background-color: #13568B;
}
@media screen and (min-width: 600px) {
  footer {
    padding: 6% 0 3%;
  }
}
@media screen and (min-width: 768px) {
  footer {
    padding: 5% 0 2%;
  }
}
@media screen and (min-width: 1025px) {
  footer {
    padding: 45px 0 20px;
  }
}
footer .footer_container {
  width: 85%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  footer .footer_container {
    width: 97%;
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1025px) {
  footer .footer_container {
    max-width: 1150px;
  }
}

.footer_info--box {
  margin-bottom: 10%;
}
@media screen and (min-width: 600px) {
  .footer_info--box {
    margin-bottom: 7%;
  }
}
@media screen and (min-width: 768px) {
  .footer_info--box {
    margin: 0;
  }
}
.footer_info--box p {
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.footer_info--box p.name {
  font-size: 4vw;
  line-height: 1.4;
  margin-bottom: 0.7em;
}
@media screen and (min-width: 600px) {
  .footer_info--box p.name {
    font-size: 2.7vw;
  }
}
@media screen and (min-width: 768px) {
  .footer_info--box p.name {
    font-size: 2.3vw;
  }
}
@media screen and (min-width: 1025px) {
  .footer_info--box p.name {
    font-size: 20px;
  }
}
.footer_info--box p.trademark {
  font-size: 3vw;
  font-weight: 300;
  margin-bottom: 2.5em;
}
@media screen and (min-width: 600px) {
  .footer_info--box p.trademark {
    font-size: 1.9vw;
  }
}
@media screen and (min-width: 768px) {
  .footer_info--box p.trademark {
    font-size: 1.5vw;
  }
}
@media screen and (min-width: 1025px) {
  .footer_info--box p.trademark {
    font-size: 14px;
  }
}
.footer_info--box p.info {
  font-size: 3.5vw;
  font-weight: 300;
}
@media screen and (min-width: 600px) {
  .footer_info--box p.info {
    font-size: 2.2vw;
  }
}
@media screen and (min-width: 768px) {
  .footer_info--box p.info {
    font-size: 1.8vw;
  }
}
@media screen and (min-width: 1025px) {
  .footer_info--box p.info {
    font-size: 16px;
  }
}
.footer_info--box p.info span {
  width: 3.8em;
  display: inline-block;
}

.footer_nav--box {
  margin-bottom: 20%;
}
@media screen and (min-width: 600px) {
  .footer_nav--box {
    margin-bottom: 15%;
  }
}
@media screen and (min-width: 768px) {
  .footer_nav--box {
    margin: 0;
  }
}
@media screen and (min-width: 1025px) {
  .footer_nav--box {
    display: grid;
    grid-template: auto 1fr/auto auto;
  }
}

.footer_menu--box {
  font-size: 3.5vw;
}
@media screen and (min-width: 600px) {
  .footer_menu--box {
    font-size: 2.2vw;
  }
}
@media screen and (min-width: 768px) {
  .footer_menu--box {
    font-size: 1.8vw;
  }
}
@media screen and (min-width: 1025px) {
  .footer_menu--box {
    font-size: 16px;
  }
}
.footer_menu--box:first-of-type {
  margin-bottom: 1.5em;
}
.footer_menu--box:nth-of-type(2) {
  margin-bottom: 3em;
}
@media screen and (min-width: 1025px) {
  .footer_menu--box:nth-of-type(2) {
    order: 2;
  }
}
@media screen and (min-width: 1025px) {
  .footer_menu--box:nth-of-type(3) {
    grid-row: span 2;
  }
}
@media screen and (min-width: 768px) {
  .footer_menu--box ul.global_nav--ul {
    display: grid;
    grid-template-rows: auto auto auto auto;
    grid-auto-flow: column;
  }
}
@media screen and (min-width: 1025px) {
  .footer_menu--box ul.global_nav--ul {
    margin: 0 4em 0 0;
  }
}
.footer_menu--box ul.global_nav--ul li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0 1em;
}
.footer_menu--box ul.global_nav--ul li:not(:last-of-type) {
  margin-bottom: 1.5em;
}
.footer_menu--box ul.global_nav--ul li::before {
  content: "";
  width: 1em;
  height: 1px;
  background-color: #fff;
  display: inline-block;
}
.footer_menu--box ul.global_nav--ul li a {
  color: #fff;
  letter-spacing: 0.05em;
}
.footer_menu--box ul.global_nav--ul li a:hover {
  opacity: 0.7;
}
.footer_menu--box ul.global_nav--ul li a i {
  margin-left: 0.5em;
}
.footer_menu--box ul.class_nav--ul > li {
  list-style: none;
}
.footer_menu--box ul.class_nav--ul > li > a {
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 1.5em;
  display: block;
  pointer-events: none;
}
.footer_menu--box ul.class_nav--ul > li ul.sub-menu {
  display: grid;
  gap: 1.5em 0;
}
@media screen and (min-width: 600px) {
  .footer_menu--box ul.class_nav--ul > li ul.sub-menu {
    grid-template-columns: 1fr 1fr;
    gap: 1.5em;
  }
}
.footer_menu--box ul.class_nav--ul > li ul.sub-menu li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0 1em;
}
.footer_menu--box ul.class_nav--ul > li ul.sub-menu li::before {
  content: "";
  width: 1em;
  height: 1px;
  background-color: #fff;
  display: inline-block;
}
.footer_menu--box ul.class_nav--ul > li ul.sub-menu li a {
  color: #fff;
  letter-spacing: 0.05em;
}
.footer_menu--box ul.class_nav--ul > li ul.sub-menu li a:hover {
  opacity: 0.7;
}

.footer_bottom--box {
  text-align: center;
  font-size: 2.8vw;
}
@media screen and (min-width: 600px) {
  .footer_bottom--box {
    font-size: 1.8vw;
  }
}
@media screen and (min-width: 768px) {
  .footer_bottom--box {
    font-size: 1.5vw;
    margin-top: 6em;
    grid-column: span 2;
  }
}
@media screen and (min-width: 1025px) {
  .footer_bottom--box {
    font-size: 12px;
    align-self: end;
  }
}
.footer_bottom--box a {
  color: #fff;
  font-size: 1.1em;
  margin-bottom: 1.5em;
  display: inline-block;
  position: relative;
}
.footer_bottom--box a:hover {
  opacity: 0.7;
}
.footer_bottom--box a::before, .footer_bottom--box a::after {
  content: "";
  width: 1em;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
}
.footer_bottom--box a::before {
  left: -1em;
  transform: translate(-100%, -50%);
}
.footer_bottom--box a::after {
  right: -1em;
  transform: translate(100%, -50%);
}
.footer_bottom--box small {
  font-size: inherit;
  font-weight: 300;
  display: block;
}/*# sourceMappingURL=style.css.map */