@charset "UTF-8";
.mt1rem {
  margin-top: 1rem;
}

.mt2rem {
  margin-top: 2rem;
}

.mt3rem {
  margin-top: 3rem;
}

.mt4rem {
  margin-top: 4rem;
}

.mt5rem {
  margin-top: 5rem;
}

.mt6rem {
  margin-top: 6rem;
}

.flex-wrap100 {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .pc_none {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .sp_none {
    display: none !important;
  }
}

.consultation_button {
  background-color: #FF6C15;
  color: #FFFFFF;
  padding: 1rem 2rem;
  border-radius: 53px;
  text-decoration: none;
  font-size: 1.5rem;
  transition: background-color 0.3s ease;
}
.consultation_button:hover {
  background-color: #FF4500;
  cursor: pointer;
}

.line_button {
  background-color: #1DC55F;
  color: #FFFFFF;
  padding: 1rem 2rem;
  border-radius: 53px;
  text-decoration: none;
  font-size: 1.5rem;
  transition: background-color 0.3s ease;
}
.line_button:hover {
  background-color: #16A34A;
  cursor: pointer;
}

html {
  scroll-behavior: smooth;
  font-size: 10px;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 8px;
  }
}

body {
  padding-top: 7em;
}
body.no-scroll {
  overflow: hidden;
}

.wp-block-table {
  width: 100%;
}

.h1default h1:not(.top_h1) {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.h1default p {
  font-size: 2.4rem;
  color: #666;
  line-height: 1.8;
  text-align: center;
}

.parent_title {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 0.5em;
  text-align: center;
  font-weight: 700;
  background-color: #0D3A6D;
  padding: 1rem;
}

h1 {
  color: #0D3A6D;
  margin-left: auto;
  margin-right: auto;
  font-size: 4rem;
  text-align: center;
}

h2 {
  font-size: 3.2rem;
  color: #0D3A6D;
  margin-bottom: 2rem;
  font-weight: 700;
  text-align: left;
  line-height: 1.5;
}
h2::after {
  content: "";
  display: block;
  width: 5rem;
  height: 0.3rem;
  background-color: #FF6C15;
  margin: 2rem 0 0;
}

h3 {
  font-size: 2.7rem;
  color: #0D3A6D;
  margin: 3rem 0;
  line-height: 1.5;
}
h3::before {
  content: "";
  margin-right: 1rem;
  display: inline-block;
  background-color: #FF6C15;
  height: 2.4rem;
  width: 1rem;
}

h1, h2, h3, h4, h5, h6, p, a, li, button, span, label, input, textarea, select, th, td, blockquote, caption, dt, dd {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

p {
  font-weight: 400;
  font-size: 1.8rem;
  color: #333333;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  p {
    font-size: 2rem;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 3rem;
}
table th, table td {
  border: 1px solid #ccc;
  padding: 1rem;
  text-align: left;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  table th, table td {
    font-size: 1.8rem;
  }
}
table th {
  background-color: #f5f5f5;
  font-weight: 700;
}
table tr:nth-child(even) {
  background-color: #fafafa;
}

figure {
  margin: 0;
  margin-bottom: 3rem;
  text-align: center;
}
figure img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
figure figcaption {
  font-size: 1.4rem;
  color: #666;
  margin-top: 0.5rem;
}

.linkblue {
  color: #7AC0E8;
}
.linkblue:hover {
  opacity: 0.5;
}

.breadcrumbs {
  padding: 1rem;
  margin-top: 10rem;
  margin-bottom: 2rem;
  margin-left: 3rem;
  font-size: 1.2rem;
  cursor: pointer;
  color: #0D3A6D;
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    margin-top: 0;
  }
}
.breadcrumbs span {
  cursor: pointer;
}
.breadcrumbs span:hover {
  opacity: 0.7;
}
.home .breadcrumbs {
  display: none;
}

main {
  margin: 0 auto 10rem;
}
main section {
  margin: 5rem 0 0;
}
main .inner {
  max-width: 104rem;
  width: 90%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  main section {
    padding: 1rem 0;
  }
  main section .inner {
    padding: 0 0.5rem;
  }
}
.pc_header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #0D3A6D;
  color: #FFFFFF;
  padding: 1.5rem 2rem;
  height: auto;
}
@media screen and (max-width: 768px) {
  .pc_header {
    padding: 1em;
    height: 100vh;
    transform: translateX(100vh);
    transition: 0.3s ease-in-out;
  }
}
.pc_header .header_container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin: auto;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .pc_header .header_container {
    margin-top: 3rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
}
.pc_header .header_container .header_menu_container {
  display: flex;
  align-items: center;
  flex-flow: row;
  justify-content: space-around;
  width: 100%;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .pc_header .header_container .header_menu_container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .pc_header .header_container .header_menu_container .logo {
    margin-top: 2rem;
  }
}
.pc_header .header_container .header_menu_container .logo a {
  display: flex;
  flex-flow: row;
  flex-wrap: nowrap;
  align-items: center;
  text-decoration: none;
  font-size: 100%;
}
.pc_header .header_container .header_menu_container .logo a img {
  max-width: 5rem;
  height: auto;
}
.pc_header .header_container .header_menu_container .logo a .logo-name {
  font-size: 3em;
  margin: 0;
  color: #FFFFFF;
  margin-left: 0.5em;
  line-height: 1;
  font-weight: 500;
}
.pc_header .header_container .header_menu_container .header_menu {
  margin-left: 20px;
  font-size: 1.2rem;
  margin-bottom: 1em;
  width: 60%;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
  gap: 10px;
  flex-direction: row;
}
@media screen and (max-width: 767px) {
  .pc_header .header_container .header_menu_container .header_menu {
    margin: 0;
    justify-content: center;
    flex-direction: column;
    margin-top: 3rem;
    width: 100%;
  }
}
.pc_header .header_container .header_menu_container .header_menu li {
  display: inline-block;
  margin-left: 2rem;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .pc_header .header_container .header_menu_container .header_menu li {
    margin: 0;
  }
}
.pc_header .header_container .header_menu_container .header_menu li button {
  background-color: #FF6C15;
  color: #FFFFFF;
  padding: 1rem 2rem;
  border-radius: 53px;
  text-decoration: none;
  font-size: 1.5rem;
  transition: background-color 0.3s ease;
  line-height: 1;
  width: 24rem;
}
@media screen and (max-width: 767px) {
  .pc_header .header_container .header_menu_container .header_menu li button {
    font-size: 2.5rem;
    margin-block: 1rem;
    padding-block: 2rem;
    width: 40rem;
  }
}
.pc_header .header_container .header_menu_container .header_menu li button:hover {
  background-color: #FF4500;
  cursor: pointer;
}
.pc_header .header_container .header_menu_container .header_menu li .line_button {
  background-color: #1DC55F;
  color: #FFFFFF;
  padding: 1rem 2rem;
  border-radius: 53px;
  text-decoration: none;
  font-size: 1.5rem;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .pc_header .header_container .header_menu_container .header_menu li .line_button {
    font-size: 2.5rem;
    margin-block: 1rem;
    padding-block: 2rem;
  }
}
.pc_header .header_container .header_menu_container .header_menu li .line_button:hover {
  background-color: #16A34A;
  cursor: pointer;
}
.pc_header .header_container .nav_menu {
  list-style: none;
  justify-content: right;
  display: flex;
  gap: 30px;
  margin: 0;
}
.pc_header .header_container .nav_menu li {
  line-height: 1;
}
.pc_header .header_container .nav_menu li a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1.8rem;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .pc_header .header_container .nav_menu li a {
    font-size: 2.5rem;
  }
}
.pc_header .header_container .nav_menu li a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .sp_header {
    width: 100vw;
    height: 5rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    background-color: #0D3A6D;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (max-width: 768px) and (min-width: 768px) {
  .sp_header .logo {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sp_header .logo a {
    display: flex;
    flex-flow: row;
    flex-wrap: nowrap;
    align-items: center;
    text-decoration: none;
    font-size: 100%;
  }
  .sp_header .logo a img {
    max-width: 5rem;
    height: auto;
  }
  .sp_header .logo a .logo-name {
    font-size: 2rem;
    margin: 0;
    color: #FFFFFF;
    margin-left: 0.5em;
    line-height: 1;
    font-weight: 500;
  }
  .sp_header .hamburger_menu {
    display: block !important;
    height: auto;
    z-index: 1001;
    width: 10rem;
    height: auto;
  }
  .sp_header .hamburger_menu a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #FFFFFF;
    width: 4rem;
  }
  .sp_header .hamburger_menu a span {
    display: block;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
    width: 100%;
    height: 0.5rem;
    border-radius: 10px;
    margin: 0.5rem;
  }
  .sp_header .hamburger_menu a.hamburger_close {
    display: flex;
    margin: 0;
    border: none;
    position: relative;
    transition: 0.3s;
  }
  .sp_header .hamburger_menu a.hamburger_close span {
    background-color: #FFFFFF;
    position: absolute;
  }
  .sp_header .hamburger_menu a.hamburger_close span:nth-child(1) {
    transform: translate(0%, 0%) rotate(45deg);
    width: 4.2rem;
  }
  .sp_header .hamburger_menu a.hamburger_close span:nth-child(2) {
    opacity: 0;
  }
  .sp_header .hamburger_menu a.hamburger_close span:nth-child(3) {
    transform: translate(0%, 0%) rotate(-45deg);
    width: 4.2rem;
  }
  .pc_header {
    height: 100vh;
    transform: translateX(100vh);
    transition: 0.3s ease-in-out;
    padding-bottom: 5rem;
  }
  .pc_header .header_container .header_menu {
    justify-content: center;
    align-items: center;
    margin: 0;
  }
  .pc_header .header_container .header_menu li {
    margin: 0;
  }
  .pc_header .header_container .nav_menu {
    flex-direction: column;
    margin: 4rem 0 0;
  }
  .pc_header.is-active {
    transform: translateX(0);
    transition: 0.3s ease-in-out;
    position: fixed;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    padding: 0;
  }
  .pc_header.is-active .header_container {
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    /* 画面の高さに応じて最大高さを設定 */
    max-height: 150%;
    /* コンテンツが溢れた場合にスクロールを有効化 */
    overflow-y: scroll;
    /* オプション：スクロールを滑らかにする */
    -webkit-overflow-scrolling: touch;
  }
}
.side_menu {
  position: fixed;
  top: 30%;
  right: 0;
  z-index: 1000;
  color: #FFFFFF;
  padding: 1em;
}
.side_menu a {
  display: block;
  color: #FFFFFF;
  text-decoration: none;
}
.side_menu a img {
  max-width: 3em;
  height: auto;
}

footer {
  background-color: #0D3A6D;
  color: #FFFFFF;
  padding: 2rem 0 5rem;
}
footer .footer_container {
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 5em;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
@media screen and (max-width: 767px) {
  footer .footer_container {
    flex-direction: column;
    padding: 0 2rem;
    gap: 3rem;
  }
}
footer .footer_container .footer_info .footer_logo img {
  max-width: 10rem;
  height: auto;
}
footer .footer_container .footer_info .access_info {
  padding-block: 3rem;
  padding-inline: 0;
}
footer .footer_container .footer_info .access_info dl {
  text-align: left;
  line-height: 1.5;
}
footer .footer_container .footer_info .access_info dl dt {
  font-size: 1.8rem;
  font-weight: 700;
}
footer .footer_container .footer_info .access_info dl dd {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
footer .footer_container .footer_nav {
  list-style: none;
  height: 30rem;
}
@media screen and (max-width: 767px) {
  footer .footer_container .footer_nav {
    width: 100%;
    height: auto;
    margin: 0;
  }
}
footer .footer_container .footer_nav .footer_mainnav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  flex-direction: column;
  height: 30rem;
}
@media screen and (max-width: 767px) {
  footer .footer_container .footer_nav .footer_mainnav {
    justify-content: center;
    height: auto;
    width: 70%;
    margin: 0 auto;
  }
}
footer .footer_container .footer_nav .footer_mainnav li {
  margin-block: 0.5rem;
  margin-inline: 2rem;
}
footer .footer_container .footer_nav .footer_mainnav li a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1.5rem;
  line-height: 1;
  margin-block: 3rem;
}
footer .footer_container .footer_nav .footer_mainnav li a:hover {
  opacity: 0.7;
}
footer .footer_container .footer_nav .footer_mainnav li .footer_subnav {
  list-style: none;
  padding-left: 0;
  margin-top: 3rem;
  margin-left: 3rem;
  height: auto;
}
footer .footer_container .footer_nav .footer_mainnav li .footer_subnav li {
  margin: 0;
}
footer .footer_container .footer_nav .footer_mainnav li .footer_subnav li a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1.5rem;
  line-height: 1;
  margin-block: 3rem;
}
footer .footer_container .footer_contact {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-direction: column;
}
footer .footer_container .footer_contact .line_button {
  background-color: #1DC55F;
  color: #FFFFFF;
  padding: 1rem 2rem;
  border-radius: 53px;
  text-decoration: none;
  font-size: 1.5rem;
  transition: background-color 0.3s ease;
  width: 24rem;
}
footer .footer_container .footer_contact .line_button:hover {
  background-color: #16A34A;
  cursor: pointer;
}
footer .footer_container .footer_contact button {
  background-color: #FF6C15;
  color: #FFFFFF;
  padding: 1rem 2rem;
  border-radius: 53px;
  text-decoration: none;
  font-size: 1.5rem;
  transition: background-color 0.3s ease;
  width: 24rem;
}
footer .footer_container .footer_contact button:hover {
  background-color: #FF4500;
  cursor: pointer;
}
footer .copyright p {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.2rem;
  color: #FFFFFF;
}