@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #303030;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

button,
input,
textarea,
select {
  font-family: "Noto Sans JP", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
  word-break: break-word;
}

a:hover {
  opacity: 0.7;
}

p {
  word-break: break-all;
  font-weight: 500;
}

ul,
ol {
  list-style: none;
  word-break: break-all;
  font-weight: 500;
}

input,
button,
select,
textarea {
  -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;
}

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

img.auto {
  width: auto;
  height: auto;
  margin: 0 auto;
}

main {
  margin-top: 96px;
}

@media (max-width: 768px) {
  main {
    margin-top: 64px;
  }
}

.inner {
  margin: 0 auto;
  width: 1120px;
}

@media (max-width: 1360px) {
  .inner {
    width: 100%;
    padding: 0 80px;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  .inner {
    padding: 0 40px;
  }
}

@media (max-width: 480px) {
  .inner {
    padding: 0 20px;
  }
}

.blue {
  color: #023D97;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.bg-blue {
  background: #EDF8FF;
}

header {
  position: fixed;
  width: 100%;
  height: 96px;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  gap: 32px;
}

header a {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

header a.logo-link img {
  display: block;
}

header .hamburger {
  display: none;
}

header .gnav {
  /* トップ階層の ul のみ flex（.gnav > ul でサブメニュー ul には当てない） */
}

header .gnav>ul {
  display: flex;
  align-items: center;
}

header .gnav>ul>li.link-txt {
  margin-right: 32px;
}

header .gnav>ul>li.btn-txt {
  margin-right: 12px;
}

header .gnav>ul>li.btn-txt:last-child {
  margin-right: 0;
}

header .gnav>ul>li>a,
header .gnav>ul>li .gnav-item-inner a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  padding: 16px 20px 16px 0;
  background: url(../img/icon-nav.svg) no-repeat right center;
}

header .gnav>ul>li>a:hover,
header .gnav>ul>li .gnav-item-inner a:hover {
  color: #023D97;
}

header .gnav>ul>li.has-submenu {
  position: relative;
}

header .gnav>ul>li.has-submenu .gnav-item-inner {
  display: flex;
  align-items: center;
}

header .gnav>ul>li.has-submenu .gnav-accordion-trigger {
  display: none;
}

header .gnav>ul>li.has-submenu>.submenu,
header .gnav>ul>li.has-submenu>.gnav-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: opacity 0.2s ease;
  z-index: 10;
}

header .gnav>ul>li.has-submenu>.submenu li,
header .gnav>ul>li.has-submenu>.gnav-submenu li {
  margin: 0;
  border-bottom: #D9D9D9 1px solid;
}

header .gnav>ul>li.has-submenu>.submenu li:last-child,
header .gnav>ul>li.has-submenu>.gnav-submenu li:last-child {
  border: 0;
}

header .gnav>ul>li.has-submenu>.submenu li a,
header .gnav>ul>li.has-submenu>.gnav-submenu li a {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  white-space: nowrap;
}

header .gnav>ul>li.has-submenu>.submenu li a:hover,
header .gnav>ul>li.has-submenu>.gnav-submenu li a:hover {
  background: #f5f5f5;
  opacity: 1;
}

header .gnav>ul>li.has-submenu:hover>.submenu,
header .gnav>ul>li.has-submenu:hover>.gnav-submenu {
  display: block;
}

@media (max-width: 1200px) {
  header .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 32px 40px;
  }

  header .hamburger {
    cursor: pointer;
    position: absolute;
    display: block;
    width: 96px;
    height: 96px;
    top: 0;
    right: 0;
    border: 0;
    background: #F39700;
  }

  header .hamburger span {
    display: block;
    width: 48px;
    margin: 12px auto;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
  }

  header .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(12px, 9px);
  }

  header .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  header .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -8px);
  }

  header .gnav {
    display: none;
    position: fixed;
    top: 96px;
    left: 0;
    width: 100%;
    height: 100dvh;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    background: #F39700;
  }

  header .gnav.active {
    display: block;
    transform: translateY(0);
  }

  header .gnav>ul {
    flex-direction: column;
    border-top: #DDDDDD 1px solid;
  }

  header .gnav>ul>li {
    width: 100%;
  }

  header .gnav>ul>li>a,
  header .gnav>ul>li .gnav-item-inner a {
    display: block;
    font-size: 18px;
    padding: 20px 24px;
  }

  header .gnav>ul>li.link-txt {
    border-bottom: 1px solid #eee;
    margin: 0;
  }

  header .gnav>ul>li.link-txt>a,
  header .gnav>ul>li.link-txt .gnav-item-inner a {
    position: relative;
    color: #fff;
    background: none;
  }

  header .gnav>ul>li.link-txt.has-submenu .gnav-item-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-right: 12px;
  }

  header .gnav>ul>li.link-txt.has-submenu .gnav-item-inner a {
    flex: 1;
    background-position: top 24px right 56px;
  }

  header .gnav>ul>li.link-txt.has-submenu .gnav-item-inner a::before {
    display: none;
  }

  header .gnav>ul>li.link-txt.has-submenu .gnav-accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    border-radius: 4px;
    flex-shrink: 0;
  }

  header .gnav>ul>li.link-txt.has-submenu .gnav-accordion-trigger .gnav-icon-open,
  header .gnav>ul>li.link-txt.has-submenu .gnav-accordion-trigger .gnav-icon-close {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  header .gnav>ul>li.link-txt.has-submenu .gnav-accordion-trigger .gnav-icon-close {
    display: none;
  }

  header .gnav>ul>li.link-txt.has-submenu .gnav-accordion-trigger .gnav-icon-open {
    display: inline;
  }

  header .gnav>ul>li.link-txt.has-submenu {
    /* 開いているとき: li に .is-open → パネル表示＆「－」だけ表示 */
  }

  header .gnav>ul>li.link-txt.has-submenu.is-open .gnav-accordion-trigger .gnav-icon-close {
    display: inline;
  }

  header .gnav>ul>li.link-txt.has-submenu.is-open .gnav-accordion-trigger .gnav-icon-open {
    display: none;
  }

  header .gnav>ul>li.link-txt.has-submenu.is-open>.gnav-submenu,
  header .gnav>ul>li.link-txt.has-submenu.is-open>.submenu {
    max-height: 500px;
  }

  header .gnav>ul>li.link-txt.has-submenu>.gnav-submenu,
  header .gnav>ul>li.link-txt.has-submenu>.submenu {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    position: static;
    margin: 0;
    padding: 0;
    min-width: auto;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 0;
  }

  header .gnav>ul>li.link-txt.has-submenu>.gnav-submenu li,
  header .gnav>ul>li.link-txt.has-submenu>.submenu li {
    border-bottom: none;
  }

  header .gnav>ul>li.link-txt.has-submenu>.gnav-submenu li:first-child a,
  header .gnav>ul>li.link-txt.has-submenu>.submenu li:first-child a {
    padding-top: 16px;
    background: url(../img/icon-arrow.svg) no-repeat top 21px left 24px;
  }

  header .gnav>ul>li.link-txt.has-submenu>.gnav-submenu li:last-child a,
  header .gnav>ul>li.link-txt.has-submenu>.submenu li:last-child a {
    padding-bottom: 16px;
    background: url(../img/icon-arrow.svg) no-repeat top 14px left 24px;
  }

  header .gnav>ul>li.link-txt.has-submenu>.gnav-submenu li a,
  header .gnav>ul>li.link-txt.has-submenu>.submenu li a {
    padding: 8px 40px;
    color: #fff;
    background: none;
    font-size: 16px;
    font-weight: bold;
    background: url(../img/icon-arrow.svg) no-repeat top 14px left 24px;
  }

  header .gnav>ul>li.btn-txt {
    margin: 0;
  }

  header .gnav>ul>li.btn-txt a {
    width: 100%;
    height: 56px;
    border-radius: 56px;
    margin: 16px 0 0;
  }
}

@media (max-width: 768px) {
  header {
    height: 64px;
  }

  header .header-container {
    padding: 22px 24px;
  }

  header .header-container .logo-link img {
    width: 248px;
    height: 20px;
  }

  header .hamburger {
    width: 64px;
    height: 64px;
  }

  header .hamburger span {
    width: 32px;
    margin: 8px auto;
  }

  header .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }

  header .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  header .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  header .gnav {
    top: 64px;
  }

  header .gnav>ul>li a,
  header .gnav>ul>li .gnav-item-inner a {
    padding: 16px 20px 16px 20px;
  }
}

@media (max-width: 480px) {
  header .logo-link img {
    width: auto;
    height: 20px;
  }

  header .gnav>ul .btn-txt {
    padding: 0 16px;
  }
}

footer .fnav-box {
  padding: 64px 0;
  background: #F39700;
}

@media (max-width: 768px) {
  footer .fnav-box {
    padding: 0;
  }
}

@media (max-width: 768px) {
  footer .fnav-box .inner {
    width: 100%;
    padding: 0;
    margin: 0;
  }
}

footer .fnav-box .fnav>ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 32px;
}

@media (max-width: 1200px) {
  footer .fnav-box .fnav>ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 32px;
  }
}

@media (max-width: 768px) {
  footer .fnav-box .fnav>ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}

footer .fnav-box .fnav>ul>li>a,
footer .fnav-box .fnav>ul>li .fnav-item-inner a {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  padding: 8px 0;
  background: none;
}

footer .fnav-box .fnav>ul>li>a:hover,
footer .fnav-box .fnav>ul>li .fnav-item-inner a:hover {
  opacity: 0.5;
}

footer .fnav-box .fnav>ul>li .fnav-item-inner>a {
  border-bottom: 1px solid #fff;
  padding-bottom: 16px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  footer .fnav-box .fnav>ul>li .fnav-item-inner>a {
    border: 0;
    margin: 0;
  }
}

footer .fnav-box .fnav>ul>li .fnav-submenu li {
  margin: 16px 0;
}

@media (max-width: 768px) {
  footer .fnav-box .fnav>ul>li .fnav-submenu li {
    margin: 0;
  }
}

footer .fnav-box .fnav>ul>li .fnav-submenu li a {
  display: block;
  opacity: 1;
  color: #fff;
  font-size: 16px;
  padding-left: 20px;
  background: url(../img/icon-arrow.svg) no-repeat top 5px left;
}

footer .fnav-box .fnav>ul>li .fnav-submenu li a:hover {
  opacity: 0.5;
}

@media (min-width: 769px) {
  footer .fnav-box .fnav>ul>li.has-submenu {
    position: relative;
    width: 100%;
  }

  footer .fnav-box .fnav>ul>li.has-submenu .fnav-accordion-trigger {
    display: none;
  }
}

@media (max-width: 768px) {
  footer .fnav-box .fnav {
    display: block;
    position: relative;
    width: 100%;
    background: #F39700;
    box-shadow: none;
    transform: none;
    height: auto;
  }

  footer .fnav-box .fnav>ul {
    flex-direction: column;
    flex-wrap: nowrap;
    border-top: #DDDDDD 1px solid;
    padding: 0;
  }

  footer .fnav-box .fnav>ul>li {
    width: 100%;
  }

  footer .fnav-box .fnav>ul>li>a,
  footer .fnav-box .fnav>ul>li .fnav-item-inner a {
    display: block;
    font-size: 18px;
    padding: 20px 24px;
  }

  footer .fnav-box .fnav>ul>li.link-txt {
    border-bottom: 1px solid #eee;
    margin: 0;
  }

  footer .fnav-box .fnav>ul>li.link-txt>a,
  footer .fnav-box .fnav>ul>li.link-txt .fnav-item-inner a {
    position: relative;
    color: #fff;
    background: none;
  }

  footer .fnav-box .fnav>ul>li.link-txt.has-submenu .fnav-item-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-right: 12px;
  }

  footer .fnav-box .fnav>ul>li.link-txt.has-submenu .fnav-item-inner a {
    flex: 1;
  }

  footer .fnav-box .fnav>ul>li.link-txt.has-submenu .fnav-accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    border-radius: 4px;
    flex-shrink: 0;
  }

  footer .fnav-box .fnav>ul>li.link-txt.has-submenu .fnav-accordion-trigger .fnav-icon-open,
  footer .fnav-box .fnav>ul>li.link-txt.has-submenu .fnav-accordion-trigger .fnav-icon-close {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  footer .fnav-box .fnav>ul>li.link-txt.has-submenu .fnav-accordion-trigger .fnav-icon-close {
    display: none;
  }

  footer .fnav-box .fnav>ul>li.link-txt.has-submenu .fnav-accordion-trigger .fnav-icon-open {
    display: inline;
  }

  footer .fnav-box .fnav>ul>li.link-txt.has-submenu.is-open .fnav-accordion-trigger .fnav-icon-close {
    display: inline;
  }

  footer .fnav-box .fnav>ul>li.link-txt.has-submenu.is-open .fnav-accordion-trigger .fnav-icon-open {
    display: none;
  }

  footer .fnav-box .fnav>ul>li.link-txt.has-submenu.is-open>.fnav-submenu {
    max-height: 500px;
  }

  footer .fnav-box .fnav>ul>li.link-txt.has-submenu>.fnav-submenu {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    position: static;
    margin: 0;
    padding: 0;
    min-width: auto;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 0;
  }

  footer .fnav-box .fnav>ul>li.link-txt.has-submenu>.fnav-submenu li {
    border-bottom: none;
  }

  footer .fnav-box .fnav>ul>li.link-txt.has-submenu>.fnav-submenu li:first-child a {
    padding-top: 16px;
    background: url(../img/icon-arrow.svg) no-repeat top 21px left 24px;
  }

  footer .fnav-box .fnav>ul>li.link-txt.has-submenu>.fnav-submenu li:last-child a {
    padding-bottom: 16px;
    background: url(../img/icon-arrow.svg) no-repeat top 14px left 24px;
  }

  footer .fnav-box .fnav>ul>li.link-txt.has-submenu>.fnav-submenu li a {
    padding: 8px 24px 8px 40px;
    color: #fff;
    background: none;
    font-size: 16px;
    font-weight: bold;
    background: url(../img/icon-arrow.svg) no-repeat top 14px left 24px;
  }
}

@media (max-width: 768px) {

  footer .fnav-box .fnav>ul>li a,
  footer .fnav-box .fnav>ul>li .fnav-item-inner a {
    padding: 16px 20px;
  }
}

footer .copyright-box {
  position: relative;
  background: #023D97;
}

footer .copyright-box small {
  display: block;
  color: #fff;
  text-align: center;
  padding: 16px;
  font-size: 14px;
}

footer .copyright-box small br {
  display: none;
}

@media (max-width: 480px) {
  footer .copyright-box small br {
    display: block;
  }
}

.page-top-btn {
  position: fixed;
  bottom: 24px;
  right: 0;
  z-index: 100;
  width: 39px;
  height: 144px;
  padding: 0;
  border: 1px solid #fff;
  border-right: none;
  background: #023D97;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  line-height: 39px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-top-btn.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mv {
  position: relative;
  padding: 104px 0;
  text-align: left;
  overflow: hidden;
}

.mv .mv-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.mv .mv-bg .mv-bg-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 1;
}

.mv .inner {
  position: relative;
  z-index: 2;
  text-align: left;
}

.mv .page-title .title-en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #6390C6;
  margin-bottom: 5px;
}

.mv .page-title .title-ja {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-weight: 500;
  color: #404040;
  margin-top: -10px;
}

.mv .page-title .title-ja br.sp {
  display: block;
}

@media (max-width: 768px) {
  .mv {
    padding: 64px 0;
  }

  .mv .page-title .title-en {
    font-size: 18px;
  }

  .mv .page-title .title-ja {
    font-size: 32px;
  }

  .mv .page-title .title-ja br.sp {
    display: none;
  }
}

@media (max-width: 480px) {
  .mv {
    padding: 40px 0;
  }

  .mv .page-title .title-en {
    font-size: 14px;
  }

  .mv .page-title .title-ja {
    font-size: 24px;
  }
}

main.top .top-mv {
  position: relative;
  height: 640px;
}

main.top .top-mv h1 {
  position: absolute;
  width: 100%;
  font-size: 75px;
  font-weight: 600;
  text-align: center;
  bottom: 48px;
  z-index: 1;
  line-height: 1.2;
}

main.top .top-mv h1 strong {
  position: relative;
  line-height: 1;
  color: #fff;
  font-weight: 600;
}

main.top .top-mv h1 strong::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 80px;
  top: 18px;
  background: #F39700;
  z-index: -1;
}

main.top .top-mv h1 br.sp {
  display: none;
}

@media (max-width: 768px) {
  main.top .top-mv h1 br.sp {
    display: block;
  }
}

main.top .top-mv h1.sp {
  display: none;
}

main.top .top-mv img.sp {
  display: none;
}

@media (max-width: 960px) {
  main.top .top-mv h1 {
    font-size: 64px;
    padding: 80px 0;
  }

  main.top .top-mv h1 strong::before {
    height: 72px;
    top: 12px;
  }
}

@media (max-width: 768px) {
  main.top .top-mv img.pc {
    display: none;
  }

  main.top .top-mv img.sp {
    display: block;
  }

  main.top .top-mv h1 {
    width: 100%;
    font-size: 48px;
    bottom: calc(50% - 128px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 40%, #EDF8FF 60%, rgba(255, 255, 255, 0) 100%);
    padding: 80px 40px;
  }

  main.top .top-mv h1 strong::before {
    height: 52px;
    top: 12px;
  }

  main.top .top-mv h1.pc {
    display: none;
  }

  main.top .top-mv h1.sp {
    display: block;
  }
}

@media (max-width: 480px) {
  main.top .top-mv {
    height: 560px;
  }

  main.top .top-mv h1 {
    font-size: 40px;
    padding: 80px 24px;
  }

  main.top .top-mv h1 strong::before {
    height: 44px;
    top: 8px;
  }
}

main.top .nav-box {
  position: relative;
  display: block;
  background: linear-gradient(180deg, #fff 0%, #fff 10%, #EDF8FF 10%, #EDF8FF 100%);
  padding-bottom: 80px;
  z-index: 1;
}

main.top .nav-box .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}

main.top .nav-box .box div {
  width: calc((100% - 128px) / 3);
}

main.top .nav-box .box a {
  position: relative;
  display: flex;
  gap: 20px;
  width: 100%;
}

main.top .nav-box .box a::before {
  position: absolute;
  content: "";
  top: 16px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: #023D97 url(../img/icon-arrow.svg) no-repeat center;
}

main.top .nav-box .box a:last-child {
  border: 0;
  margin: 0;
  padding: 0;
}

main.top .nav-box .box a:last-child::before {
  right: 0;
}

main.top .nav-box .box a img {
  width: 56px;
  height: 56px;
}

main.top .nav-box .box a span {
  font-size: 20px;
  font-weight: bold;
}

@media (max-width: 1200px) {
  main.top .nav-box .box {
    padding: 24px;
  }

  main.top .nav-box .box div {
    width: calc((100% - 96px) / 3);
  }

  main.top .nav-box .box a {
    gap: 12px;
  }

  main.top .nav-box .box a::before {
    top: 8px;
  }

  main.top .nav-box .box a img {
    width: 48px;
    height: 48px;
  }

  main.top .nav-box .box a span {
    font-size: 18px;
  }
}

@media (max-width: 1080px) {
  main.top .nav-box .box a::before {
    display: none;
  }
}

@media (max-width: 960px) {
  main.top .nav-box {
    margin-top: -36px;
    padding-bottom: 48px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 10%, #EDF8FF 10%, #EDF8FF 100%);
  }

  main.top .nav-box .box {
    display: block;
  }

  main.top .nav-box .box>img {
    display: none;
  }

  main.top .nav-box .box div {
    width: 100%;
    border-bottom: #D9D9D9 1px solid;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  main.top .nav-box .box div:last-child {
    margin-bottom: 0;
    padding: 0;
    border: 0;
  }

  main.top .nav-box .box a::before {
    display: block;
  }
}

main.top section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  main.top section {
    padding: 64px 0;
  }
}

@media (max-width: 480px) {
  main.top section {
    padding: 48px 0;
  }
}

main.top .section-header {
  margin-bottom: 24px;
}

main.top .section-header span {
  line-height: 1.2;
  color: #F39700;
  font-size: 20px;
  font-weight: 600;
}

main.top .section-header h2 {
  line-height: 1.2;
  color: #023D97;
  font-size: 36px;
}

@media (max-width: 768px) {
  main.top .section-header span {
    font-size: 18px;
  }

  main.top .section-header h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  main.top .section-header {
    margin-bottom: 32px;
  }

  main.top .section-header span {
    font-size: 16px;
  }

  main.top .section-header h2 {
    font-size: 24px;
  }
}

main.top section.message {
  padding-top: 80px;
  background: url(../img/bg-message.png) no-repeat top 64px center;
}

main.top section.message .btn {
  position: relative;
  display: flex;
  align-items: center;
  width: 168px;
  height: 40px;
  color: #023D97;
  font-size: 18px;
  font-weight: bold;
  padding-right: 60px;
}

main.top section.message .btn::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  right: 0;
  border-radius: 40px;
  background: #F39700 url(../img/icon-arrow.svg) no-repeat center;
}

main.top section.message .sp {
  display: none;
}

main.top section.message .flex {
  display: flex;
  justify-content: space-between;
  gap: 64px;
}

main.top section.message .flex .img-box {
  width: 500px;
}

main.top section.message .flex .txt-box {
  width: 550px;
}

main.top section.message .flex .txt-box p {
  font-size: 18px;
  margin-bottom: 16px;
}

main.top section.message .flex .txt-box p:last-child {
  margin-bottom: 0;
}

main.top section.message .box {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  padding: 56px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  margin: 80px 0 0;
}

main.top section.message .box .head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 150px;
}

main.top section.message .box .head .section-header {
  width: 100%;
}

main.top section.message .box .link {
  width: 855px;
}

main.top section.message .box .link ul li {
  border-bottom: #D9D9D9 1px solid;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

main.top section.message .box .link ul li:last-child {
  padding: 0;
  margin: 0;
  border: 0;
}

main.top section.message .box .link ul li .tag-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

main.top section.message .box .link ul li .tag-box time {
  color: #023D97;
  font-size: 16px;
  font-weight: 600;
  word-break: keep-all;
}

main.top section.message .box .link ul li .tag-box .tag {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  border-radius: 32px;
  padding: 6px 16px;
}

main.top section.message .box .link ul li .tag-box .green {
  background: #7DB700;
}

main.top section.message .box .link ul li .tag-box .orange {
  background: #EF857D;
}

main.top section.message .box .link ul li .tag-box .blue {
  background: #53529C;
}

main.top section.message .box .link ul li p {
  font-size: 16px;
  font-weight: 500;
}

main.top section.message .box .link ul li p a {
  color: #205EA5;
  font-weight: bold;
  text-decoration: underline;
}

@media (max-width: 960px) {
  main.top section.message {
    padding-top: 48px;
  }

  main.top section.message .pc {
    display: none;
  }

  main.top section.message .sp {
    display: flex;
  }

  main.top section.message .btn {
    margin: 24px auto 0;
  }

  main.top section.message .flex {
    display: block;
  }

  main.top section.message .flex .img-box {
    width: 100%;
    margin-bottom: 40px;
  }

  main.top section.message .flex .img-box img {
    width: 100%;
    height: auto;
  }

  main.top section.message .flex .txt-box {
    width: 100%;
  }

  main.top section.message .flex .txt-box .section-header {
    text-align: center;
  }

  main.top section.message .box {
    display: block;
    padding: 56px 40px 24px;
  }

  main.top section.message .box .head {
    width: 100%;
    text-align: center;
  }

  main.top section.message .box .link {
    width: 100%;
  }

  main.top section.message .box .link ul li:last-child {
    border-bottom: #D9D9D9 1px solid;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  main.top section.message .box .link ul li .tag-box {
    gap: 8px;
  }

  main.top section.message .box .link ul li .tag-box time {
    display: block;
    width: 100%;
  }
}

@media (max-width: 560px) {
  main.top section.message .btn {
    width: 100%;
    margin: 24px auto 0;
  }

  main.top section.message .flex .txt-box p {
    font-size: 16px;
  }

  main.top section.message .box {
    display: block;
    padding: 40px 40px 24px;
  }

  main.top section.message .box .head {
    width: 100%;
    text-align: center;
  }

  main.top section.message .box .link {
    width: 100%;
  }
}

@media (max-width: 480px) {
  main.top section.message .btn {
    width: 100%;
    margin: 24px auto 0;
  }

  main.top section.message .flex .txt-box p {
    font-size: 16px;
  }

  main.top section.message .box {
    display: block;
    padding: 32px 24px 24px;
    margin-top: 48px;
  }

  main.top section.message .box .head {
    width: 100%;
    text-align: center;
  }

  main.top section.message .box .link {
    width: 100%;
  }

  main.top section.message .box .link ul li a time {
    font-size: 16px;
  }

  main.top section.message .box .link ul li a p {
    font-size: 16px;
  }
}

main.top section.nurse {
  padding-top: 0;
  background: url(../img/bg-nurse.png) no-repeat top 360px center;
}

main.top section.nurse .inner {
  position: relative;
  z-index: 2;
}

main.top section.nurse .introduction-box {
  padding: 0 0 80px;
}

main.top section.nurse .introduction-box .slider img {
  width: auto;
  height: 360px;
}

@media (max-width: 480px) {
  main.top section.nurse .introduction-box .slider img {
    height: 200px;
  }
}

main.top section.nurse .introduction-box img {
  width: 100%;
  height: auto;
}

main.top section.nurse .introduction-box h2 {
  color: #023D97;
  font-size: 40px;
  font-weight: bold;
  margin: -40px 0 32px;
}

main.top section.nurse .introduction-box h2 span.marker {
  background-color: #fff;
}

main.top section.nurse .introduction-box .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 56px;
  border-radius: 56px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin-top: 40px;
  background: #F39700 url(../img/icon_link.svg) no-repeat center right 24px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  main.top section.nurse .introduction-box {
    padding: 0 0 48px;
  }

  main.top section.nurse .introduction-box h2 {
    font-size: 32px;
    margin-bottom: 16px;
  }

  main.top section.nurse .introduction-box h2 br {
    display: none;
  }

  main.top section.nurse .introduction-box .btn {
    margin-top: 24px;
  }
}

@media (max-width: 480px) {
  main.top section.nurse .introduction-box h2 {
    font-size: 24px;
  }

  main.top section.nurse .introduction-box .btn {
    width: 100%;
  }
}

main.top section.nurse .section-header {
  text-align: center;
}

main.top section.nurse .head-box {
  display: flex;
  justify-content: space-between;
}

main.top section.nurse .head-box .img-box {
  width: 464px;
  height: auto;
}

main.top section.nurse .head-box .txt-box {
  width: 600px;
}

main.top section.nurse .txt-box h3 {
  font-size: 32px;
  border-bottom: #F39700 1px solid;
  margin-top: 80px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  box-sizing: border-box;
}

main.top section.nurse .txt-box h4 {
  position: relative;
  color: #023D97;
  font-size: 24px;
  font-weight: bold;
  padding-left: 32px;
  margin-bottom: 16px;
}

main.top section.nurse .txt-box h4::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 24px;
  top: 8px;
  left: 0;
  background: #F39700;
}

main.top section.nurse .txt-box p {
  margin-bottom: 16px;
}

main.top section.nurse .txt-box p:last-child {
  margin-bottom: 0;
}

main.top section.nurse .txt-box p a {
  color: #205EA5;
  font-weight: bold;
  text-decoration: underline;
}

main.top section.nurse .txt-box .flex {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 32px 0;
}

main.top section.nurse .txt-box .flex .box {
  width: calc((100% - 32px) / 2);
  padding: 32px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  border-radius: 16px;
}

main.top section.nurse .txt-box .flex .box h5 {
  color: #023D97;
  font-size: 20px;
  margin-bottom: 12px;
}

main.top section.nurse .txt-box .flex .box ul li {
  position: relative;
  font-size: 16px;
  margin-bottom: 8px;
  padding-left: 20px;
}

main.top section.nurse .txt-box .flex .box ul li:last-child {
  margin-bottom: 0;
}

main.top section.nurse .txt-box .flex .box ul li::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  top: 7px;
  left: 0;
  border-radius: 12px;
  background: #F39700;
}

@media (max-width: 768px) {
  main.top section.nurse {
    background: url(../img/bg-nurse.png) no-repeat top 320px right -64px;
    background-size: 700px;
  }

  main.top section.nurse .head-box {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }

  main.top section.nurse .head-box .img-box {
    width: 100%;
    margin-bottom: 24px;
  }

  main.top section.nurse .head-box .img-box img {
    width: 100%;
    height: auto;
  }

  main.top section.nurse .head-box .txt-box {
    width: 100%;
  }

  main.top section.nurse .txt-box h3 {
    font-size: 28px;
    margin-bottom: 24px;
    margin-top: 40px;
  }

  main.top section.nurse .txt-box h4 {
    font-size: 20px;
    padding-left: 24px;
  }

  main.top section.nurse .txt-box h4::before {
    width: 16px;
    height: 16px;
    top: 9px;
  }

  main.top section.nurse .txt-box .flex {
    gap: 16px;
  }

  main.top section.nurse .txt-box .flex .box {
    width: 100%;
  }

  main.top section.nurse .txt-box .flex .box h5 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  main.top section.nurse .txt-box h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  main.top section.nurse .txt-box .flex .box {
    padding: 24px;
  }
}

main.top section.information {
  background: #EDF8FF;
}

main.top section.information .inner {
  position: relative;
}

main.top section.information .slider {
  height: 360px;
}

main.top section.information .slider .owl-stage-outer,
main.top section.information .slider .owl-stage,
main.top section.information .slider .owl-item,
main.top section.information .slider .item {
  height: 100%;
}

main.top section.information .slider .item {
  display: flex;
  align-items: center;
  justify-content: center;
}

main.top section.information .slider .item img {
  width: auto;
  height: 360px;
  max-width: 100%;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
}

main.top section.information .slider .owl-nav,
main.top section.information .slider .owl-dots {
  display: none !important;
}

main.top section.information .head {
  position: absolute;
  top: 0;
  left: 0;
}

main.top section.information .head .box {
  width: 544px;
  padding: 32px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}

main.top section.information .head .box span {
  display: block;
  color: #023D97;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  main.top section.information .head .box {
    display: none;
  }
}

main.top section.information .sp {
  display: none;
}

main.top section.information .map svg {
  width: 100%;
  height: 100%;
}

main.top section.information .map a {
  position: relative;
}

main.top section.information .map a path {
  position: relative;
  z-index: 1;
}

main.top section.information .map a .name {
  position: absolute;
  color: #fff;
  font-size: 16px;
  z-index: 2;
}

main.top section.information .map a .number {
  position: absolute;
  color: #fff;
  font-size: 16px;
  z-index: 2;
}

main.top section.information .detail-box {
  display: flex;
  gap: 56px;
  align-items: anchor-center;
  margin-top: 16px;
}

main.top section.information .detail-box .number-box p {
  color: #023D97;
  font-size: 64px;
  font-weight: bold;
}

main.top section.information .detail-box .number-box p span {
  font-size: 96px;
  font-family: "Roboto", sans-serif;
}

main.top section.information .detail-box .number-box small {
  font-size: 16px;
}

main.top section.information .detail-box .collar-box p {
  display: block;
  position: relative;
  color: #303030;
  font-size: 20px;
  padding-left: 32px;
}

main.top section.information .detail-box .collar-box p::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  top: 4px;
  left: 0;
  border-radius: 8px;
  background: #878787;
}

main.top section.information .detail-box .collar-box p.gray::before {
  background: #878787;
}

main.top section.information .detail-box .collar-box p.blue::before {
  background: #023D97;
}

main.top section.information .detail-box .collar-box p.yellow::before {
  background: #F39700;
}

main.top section.information .detail-box .collar-box p.orange::before {
  background: #E05600;
}

@media (max-width: 1080px) {
  main.top section.information .detail-box {
    gap: 32px;
  }

  main.top section.information .detail-box .number-box p {
    font-size: 48px;
  }

  main.top section.information .detail-box .number-box p span {
    font-size: 72px;
  }

  main.top section.information .detail-box .number-box small {
    font-size: 14px;
  }

  main.top section.information .detail-box .collar-box p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  main.top section.information .detail-box {
    display: block;
  }

  main.top section.information .detail-box .number-box {
    text-align: center;
  }

  main.top section.information .detail-box .number-box p {
    font-size: 36px;
  }

  main.top section.information .detail-box .number-box p span {
    font-size: 64px;
  }

  main.top section.information .detail-box .number-box small {
    font-size: 14px;
  }

  main.top section.information .detail-box .collar-box {
    display: none;
  }
}

@media (max-width: 1360px) {
  main.top section.information .head {
    left: 80px;
  }
}

@media (max-width: 960px) {
  main.top section.information .head {
    position: relative;
    left: 0;
    margin-bottom: 48px;
  }

  main.top section.information .head .section-header {
    text-align: center;
    margin-bottom: 32px;
  }

  main.top section.information .head .box {
    width: 100%;
  }
}

@media (max-width: 768px) {
  main.top section.information .pc {
    display: none;
  }

  main.top section.information .sp {
    display: block;
  }

  main.top section.information .map-nav .nav {
    margin-bottom: 32px;
  }

  main.top section.information .map-nav .nav:last-child {
    margin-bottom: 0;
  }

  main.top section.information .map-nav .nav>a {
    display: block;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    border-bottom: #F39700 1px solid;
    padding-bottom: 16px;
    position: relative;
    padding-right: 40px;
    cursor: pointer;
  }

  main.top section.information .map-nav .nav>a::after {
    position: absolute;
    content: "";
    width: 24px;
    height: 24px;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: url(../img/icon-accordion.svg) no-repeat center;
    background-size: 16px;
    transition: transform 0.3s ease;
  }

  main.top section.information .map-nav .nav>a.active::after {
    transform: translateY(-50%) rotate(180deg);
  }

  main.top section.information .map-nav .nav ul.map-nav-content {
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    transition: max-height 0.3s ease, padding-top 0.3s ease;
  }

  main.top section.information .map-nav .nav>a.active+ul.map-nav-content {
    padding-top: 16px;
  }

  main.top section.information .map-nav .nav ul {
    padding-top: 16px;
  }

  main.top section.information .map-nav .nav ul li {
    margin-bottom: 12px;
  }

  main.top section.information .map-nav .nav ul li:last-child {
    margin-bottom: 0;
  }

  main.top section.information .map-nav .nav ul li a {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    padding-left: 20px;
    text-decoration: underline;
  }

  main.top section.information .map-nav .nav ul li a::before {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    top: 8px;
    left: 0;
    border-radius: 12px;
    background: #023D97;
  }
}

main.top section.activity-results {
  background: url(../img/bg-activity-results.jpg) no-repeat;
  background-size: cover;
}

main.top section.activity-results .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 56px;
  border-radius: 56px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin-top: 40px;
  background: #F39700 url(../img/icon-arrow.svg) no-repeat center right 24px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}

@media (max-width: 480px) {
  main.top section.activity-results {
    padding-top: 196px;
    background: url(../img/bg-activity-results-sp.jpg) no-repeat top;
    background-size: contain;
  }

  main.top section.activity-results .section-header {
    text-align: center;
    margin-bottom: 16px;
  }

  main.top section.activity-results .btn {
    width: 100%;
    margin-top: 24px;
  }
}

main.contents .mv {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  box-sizing: border-box;
  height: 260px;
  background: url(../img/bg-mv.jpg) no-repeat;
  background-size: cover;
  text-align: center;
}

main.contents .mv h1 {
  color: #023D97;
  font-size: 40px;
}

main.contents .mv h1 br {
  display: none;
}

@media (max-width: 480px) {
  main.contents .mv {
    height: 200px;
  }

  main.contents .mv h1 {
    font-size: 28px;
  }

  main.contents .mv h1 br {
    display: block;
  }
}

main.contents .nav-box {
  position: relative;
  display: block;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 24px, #EDF8FF 24px, #EDF8FF 100%);
  padding-bottom: 80px;
  margin-top: -24px;
  z-index: 1;
}

main.contents .nav-box .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}

main.contents .nav-box .box div {
  width: calc((100% - 128px) / 3);
}

main.contents .nav-box .box a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

main.contents .nav-box .box a::before {
  position: absolute;
  content: "";
  top: 12px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: #023D97 url(../img/icon-arrow.svg) no-repeat center;
  transform: rotate(90deg);
}

main.contents .nav-box .box a:last-child {
  border: 0;
  margin: 0;
  padding: 0;
}

main.contents .nav-box .box a:last-child::before {
  right: 0;
}

main.contents .nav-box .box a img {
  width: 56px;
  height: 56px;
}

main.contents .nav-box .box a span {
  font-size: 20px;
  font-weight: bold;
}

@media (max-width: 1200px) {
  main.contents .nav-box .box {
    padding: 24px;
  }

  main.contents .nav-box .box div {
    width: calc((100% - 96px) / 3);
  }

  main.contents .nav-box .box a {
    gap: 12px;
  }

  main.contents .nav-box .box a::before {
    top: 8px;
  }

  main.contents .nav-box .box a img {
    width: 48px;
    height: 48px;
  }

  main.contents .nav-box .box a span {
    font-size: 18px;
  }
}

@media (max-width: 1080px) {
  main.contents .nav-box .box a::before {
    display: none;
  }
}

@media (max-width: 960px) {
  main.contents .nav-box {
    padding-bottom: 48px;
  }

  main.contents .nav-box .box {
    display: block;
  }

  main.contents .nav-box .box>img {
    display: none;
  }

  main.contents .nav-box .box div {
    width: 100%;
    border-bottom: #D9D9D9 1px solid;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  main.contents .nav-box .box div:last-child {
    margin-bottom: 0;
    padding: 0;
    border: 0;
  }

  main.contents .nav-box .box a::before {
    display: block;
  }
}

main.contents .nav-box .index-box ul {
  padding: 32px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}

main.contents .nav-box .index-box ul li {
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

main.contents .nav-box .index-box ul li:last-child {
  border: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

main.contents .nav-box .index-box ul li a {
  display: block;
  position: relative;
  font-size: 18px;
  font-weight: bold;
  padding-left: 24px;
}

main.contents .nav-box .index-box ul li a::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 8px;
  top: 10px;
  left: 0;
  background: url(../img/icon-down.svg) no-repeat center;
}

main.contents .nav-box .index-box p {
  margin-top: 32px;
  text-align: center;
}

@media (max-width: 480px) {
  main.contents .nav-box .index-box ul {
    padding: 20px;
  }

  main.contents .nav-box .index-box p {
    font-size: 14px;
    margin-top: 20px;
  }
}

main.contents .bg-blue {
  background: #EDF8FF;
}

main.contents .contents-section {
  padding: 80px 0;
  scroll-margin-top: 96px;
}

@media (max-width: 768px) {
  main.contents .contents-section {
    padding: 64px 0;
    scroll-margin-top: 64px;
  }
}

@media (max-width: 480px) {
  main.contents .contents-section {
    padding: 48px 0;
  }
}

main.contents .contents-section h2 {
  text-align: center;
  color: #023D97;
  font-size: 36px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  main.contents .contents-section h2 {
    font-size: 32px;
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  main.contents .contents-section h2 {
    font-size: 24px;
  }
}

main.contents .contents-section h3 {
  font-size: 32px;
  border-bottom: #F39700 1px solid;
  margin-top: 80px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  box-sizing: border-box;
  line-height: 1.3;
}

@media (max-width: 768px) {
  main.contents .contents-section h3 {
    font-size: 28px;
    margin-bottom: 24px;
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  main.contents .contents-section h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }
}

main.contents .contents-section h4 {
  position: relative;
  color: #023D97;
  font-size: 24px;
  font-weight: bold;
  padding-left: 32px;
  margin-bottom: 16px;
}

main.contents .contents-section h4::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 24px;
  top: 8px;
  left: 0;
  background: #F39700;
}

@media (max-width: 768px) {
  main.contents .contents-section h4 {
    font-size: 20px;
    padding-left: 24px;
    margin-bottom: 8px;
  }

  main.contents .contents-section h4::before {
    width: 16px;
    height: 16px;
    top: 9px;
  }
}

@media (max-width: 480px) {
  main.contents .contents-section h4 {
    font-size: 20px;
    margin-bottom: 4px;
  }
}

main.contents .contents-section .btn-box.center {
  display: flex;
  justify-content: center;
}

main.contents .contents-section .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 56px;
  border-radius: 56px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin-top: 40px;
  background: #F39700 url(../img/icon-arrow.svg) no-repeat center right 24px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}

@media (max-width: 480px) {
  main.contents .contents-section .btn {
    width: 100%;
    margin-top: 24px;
  }
}

main.contents .contents-section p {
  font-size: 18px;
}

main.contents .contents-section p a {
  color: #205EA5;
  font-weight: bold;
  text-decoration: underline;
}

@media (max-width: 768px) {
  main.contents .contents-section p {
    font-size: 16px;
  }
}

main.contents .contents-section small {
  display: block;
  font-size: 14px;
  margin-top: 16px;
}

main.contents .contents-section .shadow-box {
  position: relative;
  padding: 40px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  margin-bottom: 24px;
}

main.contents .contents-section .shadow-box:last-child {
  margin-bottom: 0;
}

main.contents .contents-section .shadow-box h5 {
  color: #023D97;
  font-size: 20px;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  main.contents .contents-section .shadow-box h5 {
    font-size: 18px;
  }
}

main.contents .contents-section .shadow-box img {
  margin: 24px 0;
}

main.contents .contents-section .shadow-box img.qr {
  position: absolute;
  right: 40px;
  bottom: 40px;
  margin: 0;
}

@media (max-width: 1280px) {
  main.contents .contents-section .shadow-box img.qr {
    position: relative;
    right: auto;
    bottom: auto;
  }
}

@media (max-width: 480px) {
  main.contents .contents-section .shadow-box img {
    margin: 16px 0;
  }
}

main.contents .contents-section .shadow-box p {
  font-size: 16px;
  margin-bottom: 16px;
}

main.contents .contents-section .shadow-box p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  main.contents .contents-section .shadow-box {
    padding: 32px;
  }
}

@media (max-width: 480px) {
  main.contents .contents-section .shadow-box {
    padding: 24px;
  }
}

main.contents .contents-section .talk-box {
  padding: 40px;
  background: #EDF8FF;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  main.contents .contents-section .talk-box {
    padding: 24px;
  }
}

main.contents .contents-section .talk-box:last-child {
  margin-bottom: 0;
}

main.contents .contents-section .talk-box.flex-box {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

main.contents .contents-section .talk-box.flex-box .img-box {
  width: 400px;
}

main.contents .contents-section .talk-box.flex-box .img-box img {
  margin-bottom: 16px;
}

main.contents .contents-section .talk-box.flex-box .img-box img:last-child {
  margin-bottom: 0;
}

main.contents .contents-section .talk-box.flex-box .img-box small {
  margin: 0 0 16px;
}

main.contents .contents-section .talk-box.flex-box .txt-box {
  width: calc(100% - 440px);
}

@media (max-width: 1080px) {
  main.contents .contents-section .talk-box.flex-box {
    gap: 24px;
  }

  main.contents .contents-section .talk-box.flex-box .img-box {
    width: 100%;
  }

  main.contents .contents-section .talk-box.flex-box .img-box img {
    width: 100%;
    height: auto;
  }

  main.contents .contents-section .talk-box.flex-box .txt-box {
    width: 100%;
  }
}

main.contents .contents-section .talk-box .act-box {
  /*display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;*/
  margin-bottom: 16px;
}

main.contents .contents-section .talk-box .act-box .post {
  color: #023D97;
  font-size: 30px;
  font-weight: bold;
}

main.contents .contents-section .talk-box .act-box .name {
  font-size: 25px;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 768px) {
  main.contents .contents-section .talk-box .act-box .post {
    font-size: 18px;
  }

  main.contents .contents-section .talk-box .act-box .name {
    font-size: 16px;
  }
}

main.contents .contents-section .talk-box p {
  font-size: 16px;
  margin-bottom: 16px;
}

main.contents .contents-section .talk-box .right {
  text-align: right;
  margin-bottom: 0;
}

main.contents .contents-section .report-box {
  padding: 32px;
  background: #EDF8FF;
  margin-bottom: 4px;
}

main.contents .contents-section .report-box:last-child {
  margin-bottom: 0;
}

main.contents .contents-section .report-box .flex {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

main.contents .contents-section .report-box .flex .tag {
  display: flex;
  justify-content: center;
  width: 88px;
  min-width: 88px;
  padding: 4px;
  border-radius: 240px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  background: #F39700;
}

main.contents .contents-section .report-box .flex time {
  color: #023D97;
  font-size: 20px;
  font-weight: bold;
}

main.contents .contents-section .report-box .flex h3 {
  color: #023D97;
  font-size: 24px;
  font-weight: bold;
  border: 0;
  margin: 0 0 8px;
  padding: 0;
}

@media (max-width: 768px) {
  main.contents .contents-section .report-box .flex h3 br {
    display: none;
  }
}

main.contents .contents-section .report-box h4 {
  font-size: 16px;
  padding-left: 24px;
  margin-top: 16px;
  margin-bottom: 8px;
}

main.contents .contents-section .report-box h4::before {
  width: 16px;
  height: 16px;
  top: 5px;
}

main.contents .contents-section .report-box p {
  font-size: 15px;
}

main.contents .contents-section .report-box p a {
  color: #205EA5;
  font-weight: bold;
  text-decoration: underline;
}

main.contents .contents-section .report-box ul li {
  position: relative;
  font-size: 15px;
  padding-left: 16px;
}

main.contents .contents-section .report-box ul li::before {
  position: absolute;
  content: "・";
  width: 16px;
  height: 16px;
  top: 0px;
  left: 0;
}

main.contents .contents-section .report-box ul li a {
  color: #205EA5;
  font-weight: bold;
  text-decoration: underline;
}

@media (max-width: 560px) {
  main.contents .contents-section .report-box {
    padding: 0 0 20px;
  }

  main.contents .contents-section .report-box .flex {
    display: block;
    padding: 0 24px;
    margin-bottom: 8px;
  }

  main.contents .contents-section .report-box .flex:first-child {
    padding: 0;
  }

  main.contents .contents-section .report-box .flex:first-child .tag {
    display: none;
  }

  main.contents .contents-section .report-box .flex .tag {
    width: 100%;
    min-width: auto;
    margin-bottom: 8px;
  }

  main.contents .contents-section .report-box .flex time {
    display: block;
    width: 100%;
    color: #fff;
    font-size: 14px;
    padding: 8px;
    background: #023D97;
    text-align: center;
    margin-bottom: 20px;
  }

  main.contents .contents-section .report-box .flex h3 {
    font-size: 18px;
  }

  main.contents .contents-section .report-box h4 {
    margin: 0 24px 8px;
  }

  main.contents .contents-section .report-box p {
    margin: 0 24px;
  }

  main.contents .contents-section .report-box ul {
    margin: 0 24px;
  }
}

main.contents .contents-section.bg-blue .report-box {
  background: #fff;
}

main.contents .contents-section.section-become .center {
  text-align: center;
}

@media (max-width: 480px) {
  main.contents .contents-section.section-become .center {
    text-align: left;
  }
}

main.contents .contents-section.section-become .left {
  text-align: left;
}

@media (max-width: 480px) {
  main.contents .contents-section.section-become .left {
    text-align: center;
  }
}

main.contents .contents-section.section-become.section-txt .inner h2 {
  margin-bottom: 24px;
}

main.contents .contents-section.section-become.section-txt .inner p {
  margin-bottom: 16px;
}

main.contents .contents-section.section-become.section-txt .inner>h4 {
  margin-top: 32px;
}

main.contents .contents-section.section-become.section-txt .inner h3+h4 {
  margin-top: 0;
}

main.contents .contents-section.section-become.section-txt .inner>img {
  margin-bottom: 16px;
}

main.contents .contents-section.section-become.section-txt .inner>img+h4 {
  margin: 16px 0 0;
}

main.contents .contents-section.section-become.section-interview .inner>img {
  margin: 64px 0 0;
}

@media (max-width: 480px) {
  main.contents .contents-section.section-become.section-interview .inner>img {
    margin: 24px 0 0;
  }
}

main.contents .contents-section.section-become.section-interview .inner small {
  line-height: 2;
}

main.contents .contents-section.section-become.section-interview .inner>.img-box {
  margin-bottom: 64px;
}

@media (max-width: 480px) {
  main.contents .contents-section.section-become.section-interview .inner>.img-box {
    margin-bottom: 40px;
  }
}

main.contents .contents-section.section-become.bg-blue .interview-box-top .box {
  background: #fff;
}

main.contents .contents-section.section-become .interview-box-top .box {
  padding: 40px;
  border-radius: 16px;
  background: #EDF8FF;
}

@media (max-width: 480px) {
  main.contents .contents-section.section-become .interview-box-top .box {
    padding: 24px;
  }
}

main.contents .contents-section.section-become .interview-box-top .box.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 32px;
}

main.contents .contents-section.section-become .interview-box-top .box.flex .img-box {
  width: 350px;
  height: 200px;
  margin-bottom: 20px;
}

main.contents .contents-section.section-become .interview-box-top .box.flex .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
  margin: 0;
}

main.contents .contents-section.section-become .interview-box-top .box.flex .txt-box {
  width: calc(100% - 390px);
}

@media (max-width: 1080px) {
  main.contents .contents-section.section-become .interview-box-top .box.flex {
    gap: 20px;
    text-align: center;
  }

  main.contents .contents-section.section-become .interview-box-top .box.flex .img-box {
    width: 100%;
    margin: 0;
  }

  main.contents .contents-section.section-become .interview-box-top .box.flex .img-box img {
    margin: 0;
  }

  main.contents .contents-section.section-become .interview-box-top .box.flex .txt-box {
    width: 100%;
  }

  main.contents .contents-section.section-become .interview-box-top .box.flex .txt-box>p {
    text-align: left;
  }
}

main.contents .contents-section.section-become .interview-box-top .box .txt-box {
  margin-bottom: 32px;
}

@media (max-width: 480px) {
  main.contents .contents-section.section-become .interview-box-top .box .txt-box {
    margin-bottom: 24px;
  }
}

main.contents .contents-section.section-become .interview-box-top .box .txt-box:last-child {
  margin-bottom: 0;
}

main.contents .contents-section.section-become .interview-box-top .box .txt-box .act-box .post {
  color: #023D97;
  font-size: 16px;
  font-weight: 500;
}

main.contents .contents-section.section-become .interview-box-top .box .txt-box .act-box .name {
  color: #303030;
  font-size: 24px;
  font-weight: bold;
  margin: 8px 0 4px;
  padding: 0;
}

main.contents .contents-section.section-become .interview-box-top .box .txt-box .act-box .name::before {
  display: none;
}

main.contents .contents-section.section-become .interview-box-top .box .txt-box .act-box .name span {
  font-size: 16px;
}

main.contents .contents-section.section-become .interview-box-top .box .txt-box .act-box .entry {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 20px;
}

main.contents .contents-section.section-become .interview-box-top .box .txt-box .name {
  position: relative;
  color: #023D97;
  font-size: 24px;
  font-weight: bold;
  padding-left: 32px;
  margin-bottom: 8px;
}

main.contents .contents-section.section-become .interview-box-top .box .txt-box .name::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 24px;
  top: 8px;
  left: 0;
  background: #F39700;
}

@media (max-width: 768px) {
  main.contents .contents-section.section-become .interview-box-top .box .txt-box .name {
    font-size: 20px;
    padding-left: 24px;
    margin-bottom: 8px;
  }

  main.contents .contents-section.section-become .interview-box-top .box .txt-box .name::before {
    width: 16px;
    height: 16px;
    top: 9px;
  }
}

@media (max-width: 480px) {
  main.contents .contents-section.section-become .interview-box-top .box .txt-box .name {
    font-size: 16px;
    padding-left: 16px;
    margin-bottom: 4px;
  }

  main.contents .contents-section.section-become .interview-box-top .box .txt-box .name::before {
    width: 12px;
    height: 12px;
    top: 8px;
  }
}

main.contents .contents-section.section-become .interview-box-top .box .txt-box p {
  font-size: 16px;
}

@media (max-width: 480px) {
  main.contents .contents-section.section-become .interview-box-top .box .txt-box p {
    font-size: 15px;
  }
}

main.contents .contents-section.section-become .interview-box .box {
  display: flex;
  gap: 40px;
  margin-bottom: 32px;
}

main.contents .contents-section.section-become .interview-box .box:last-child {
  margin-bottom: 0;
}

main.contents .contents-section.section-become .interview-box .box .img-box {
  width: 156px;
  text-align: center;
}

main.contents .contents-section.section-become .interview-box .box .img-box .img {
  width: 156px;
  height: 156px;
}

main.contents .contents-section.section-become .interview-box .box .img-box .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 156px;
}

main.contents .contents-section.section-become .interview-box .box .img-box .name {
  font-size: 24px;
  font-weight: bold;
}

main.contents .contents-section.section-become .interview-box .box .img-box .name span {
  font-size: 16px;
}

main.contents .contents-section.section-become .interview-box .box .txt-box {
  position: relative;
  width: calc(100% - 196px);
  padding: 32px;
  border-radius: 16px;
  background: #EDF8FF;
}

main.contents .contents-section.section-become .interview-box .box .txt-box::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 32px;
  top: 88px;
  left: -24px;
  background: #EDF8FF;
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}

main.contents .contents-section.section-become .interview-box .box .txt-box img {
  border-radius: 24px;
  margin-bottom: 24px;
}

main.contents .contents-section.section-become .interview-box .box .txt-box img:last-child {
  margin-bottom: 0;
}

main.contents .contents-section.section-become .interview-box .box .txt-box p {
  font-size: 18px;
  margin-bottom: 24px;
}

main.contents .contents-section.section-become .interview-box .box .txt-box p:last-child {
  margin-bottom: 0;
}

main.contents .contents-section.section-become .interview-box .box:nth-child(odd) {
  flex-direction: row-reverse;
}

main.contents .contents-section.section-become .interview-box .box:nth-child(odd) .txt-box::before {
  left: auto;
  right: -24px;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}

@media (max-width: 768px) {
  main.contents .contents-section.section-become .interview-box .box {
    display: block;
    border-radius: 12px;
    background: #fff;
    margin-bottom: 20px;
  }

  main.contents .contents-section.section-become .interview-box .box .img-box {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    text-align: left;
    padding: 32px 32px 8px;
  }

  main.contents .contents-section.section-become .interview-box .box .img-box .img {
    width: 72px;
    height: 72px;
  }

  main.contents .contents-section.section-become .interview-box .box .txt-box {
    width: 100%;
    padding: 32px;
  }

  main.contents .contents-section.section-become .interview-box .box .txt-box::before {
    display: none;
  }

  main.contents .contents-section.section-become .interview-box .box .txt-box img {
    border-radius: 16px;
    margin-bottom: 16px;
  }

  main.contents .contents-section.section-become .interview-box .box .txt-box p {
    font-size: 16px;
    margin-bottom: 16px;
  }
}

@media (max-width: 480px) {
  main.contents .contents-section.section-become .interview-box .box .img-box {
    padding: 16px 16px 8px;
  }

  main.contents .contents-section.section-become .interview-box .box .txt-box {
    padding: 16px;
  }
}

main.contents .contents-section.section-become .interview-box.blue-box .box .txt-box {
  background: #fff;
}

main.contents .contents-section.section-become .interview-box.blue-box .box .txt-box::before {
  background: #fff;
}

@media (max-width: 768px) {
  main.contents .contents-section.section-become .interview-box.blue-box .box {
    background: #fff;
  }
}

main.contents .contents-section.section-become .flex-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 64px;
}

main.contents .contents-section.section-become .flex-box .txt-box {
  width: calc(100% - 544px);
}

main.contents .contents-section.section-become .flex-box .txt-box h2 {
  text-align: left;
}

main.contents .contents-section.section-become .flex-box .img-box {
  width: 480px;
  height: 300px;
}

main.contents .contents-section.section-become .flex-box .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 24px;
}

@media (max-width: 1080px) {
  main.contents .contents-section.section-become .flex-box {
    gap: 32px;
  }

  main.contents .contents-section.section-become .flex-box .txt-box {
    width: 100%;
  }

  main.contents .contents-section.section-become .flex-box .txt-box h2 {
    text-align: center;
  }

  main.contents .contents-section.section-become .flex-box .img-box {
    width: 100%;
  }
}

main.contents .contents-section.section-become table {
  border: 1px solid #BEBEBE;
  border-collapse: collapse;
  margin-bottom: 32px;
  background: #fff;
}

main.contents .contents-section.section-become table tr {
  border: 1px solid #BEBEBE;
}

main.contents .contents-section.section-become table tr th,
main.contents .contents-section.section-become table tr td {
  padding: 16px 24px;
}

main.contents .contents-section.section-become table tr th {
  word-break: keep-all;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  background: #023D97;
}

main.contents .contents-section.section-become table tr td {
  font-size: 16px;
}

@media (max-width: 480px) {

  main.contents .contents-section.section-become table tr th,
  main.contents .contents-section.section-become table tr td {
    display: block;
    width: 100%;
    padding: 12px 16px;
  }
}

main.contents .contents-section.section-become .backpack-box {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}

main.contents .contents-section.section-become .backpack-box .box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  width: calc((100% - 48px) / 2);
}

main.contents .contents-section.section-become .backpack-box .box .img-box {
  width: 220px;
  height: 160px;
}

main.contents .contents-section.section-become .backpack-box .box .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
}

main.contents .contents-section.section-become .backpack-box .box .txt-box {
  width: calc(100% - 252px);
}

main.contents .contents-section.section-become .backpack-box .box .txt-box h4 {
  margin-bottom: 8px;
}

main.contents .contents-section.section-become .backpack-box .box .txt-box p {
  font-size: 16px;
}

@media (max-width: 1080px) {
  main.contents .contents-section.section-become .backpack-box {
    gap: 32px;
  }

  main.contents .contents-section.section-become .backpack-box .box {
    align-items: flex-start;
    gap: 16px;
  }

  main.contents .contents-section.section-become .backpack-box .box .img-box {
    width: 100%;
    height: 200px;
  }

  main.contents .contents-section.section-become .backpack-box .box .txt-box {
    width: 100%;
  }
}

@media (max-width: 768px) {
  main.contents .contents-section.section-become .backpack-box .box {
    width: 100%;
  }

  main.contents .contents-section.section-become .backpack-box .box .img-box {
    height: 240px;
  }
}

main.contents .contents-section.section-nurse .news-box-h2 br {
  display: none;
}

@media (max-width: 1080px) {
  main.contents .contents-section.section-nurse .news-box-h2 {
    text-align: left;
  }
}

@media (max-width: 768px) {
  main.contents .contents-section.section-nurse .news-box-h2 br {
    display: block;
  }
}

main.contents .contents-section.section-nurse .character-box {
  position: relative;
}

main.contents .contents-section.section-nurse .character-box::before {
  position: absolute;
  content: "";
  width: 139px;
  height: 164px;
  top: -136px;
  right: 0;
  background: url(../img/img-character.png) no-repeat;
  background-size: cover;
  z-index: 1;
}

@media (max-width: 840px) {
  main.contents .contents-section.section-nurse .character-box::before {
    width: 96px;
    height: 113px;
    top: -110px;
  }
}

@media (max-width: 560px) {
  main.contents .contents-section.section-nurse .character-box::before {
    width: 80px;
    height: 95px;
    top: -90px;
  }
}

main.contents .contents-section.section-nurse .character-box .news-box {
  position: relative;
  z-index: 2;
}

main.contents .contents-section.section-nurse .character-box .news-box .link ul li {
  display: flex;
  align-items: baseline;
  gap: 20px;
}

@media (max-width: 480px) {
  main.contents .contents-section.section-nurse .character-box .news-box .link ul li {
    display: block;
  }
}

main.contents .contents-section.section-nurse .character-box .news-box .link ul li .tag-box {
  width: 96px;
  margin-bottom: 0;
}

main.contents .contents-section.section-nurse .character-box .news-box .link ul li p {
  margin-bottom: 0;
}

main.contents .contents-section.section-nurse p {
  margin-bottom: 16px;
}

main.contents .contents-section.section-nurse .font-20 {
  font-size: 20px;
}

@media (max-width: 480px) {
  main.contents .contents-section.section-nurse .font-20 {
    font-size: 18px;
  }
}

main.contents .contents-section.section-nurse .font-24 {
  font-size: 24px;
}

@media (max-width: 480px) {
  main.contents .contents-section.section-nurse .font-24 {
    font-size: 18px;
  }
}

main.contents .contents-section.section-nurse .shadow-box:first-child {
  margin-top: 40px;
}

main.contents .contents-section.section-nurse .important-box {
  border: 2px solid #F30035;
  background: #FFE8ED;
}

main.contents .contents-section.section-nurse .important-box h4 {
  padding-left: 40px;
}

main.contents .contents-section.section-nurse .important-box h4::before {
  width: 32px;
  height: 32px;
  top: 4px;
  border-radius: 0;
  background: url(../img/icon-important.png) no-repeat;
  background-size: cover;
}

@media (max-width: 768px) {
  main.contents .contents-section.section-nurse .important-box h4 {
    padding-left: 32px;
  }

  main.contents .contents-section.section-nurse .important-box h4::before {
    width: 24px;
    height: 24px;
  }
}

main.contents .contents-section form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 18px;
}

main.contents .contents-section form label {
  display: flex;
  width: calc((100% - 192px) / 2);
  gap: 8px;
  align-items: center;
}

main.contents .contents-section form .input-txt {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 48px;
  border-radius: 8px;
  padding: 0 16px;
  border: 2px solid #A8BBD9;
}

main.contents .contents-section form .input-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 48px;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  background: #F39700;
  margin-left: 16px;
}

@media (max-width: 960px) {
  main.contents .contents-section form label {
    width: 100%;
  }

  main.contents .contents-section form .input-btn {
    width: 100%;
    margin-top: 8px;
    margin-left: 0;
  }
}

main.contents .contents-section.section-management.bg-management {
  background: url(../img/bg-management.png) no-repeat bottom right;
  background-size: contain;
}

@media (max-width: 960px) {
  main.contents .contents-section.section-management.bg-management {
    background: url(../img/bg-management.png) bottom right;
    background-size: contain;
    background-color: rgba(255, 255, 255, 0.5);
    background-blend-mode: lighten;
  }
}

main.contents .contents-section.section-management .txt-box {
  margin-bottom: 64px;
}

main.contents .contents-section.section-management .txt-box:last-child {
  margin-bottom: 0;
}

main.contents .contents-section.section-management .txt-box h3 {
  margin-top: 0;
}

main.contents .contents-section.section-management .txt-box .act-box {
  text-align: right;
}

main.contents .contents-section.section-management .txt-box .act-box .post {
  color: #023D97;
  font-size: 20px;
  font-weight: bold;
}

main.contents .contents-section.section-management .txt-box .act-box .name {
  font-size: 32px;
  font-weight: bold;
}

main.contents .contents-section.section-management .txt-box .act-box .name span {
  font-size: 24px;
}

main.contents .contents-section.section-management img {
  width: 80%;
  height: auto;
  margin-bottom: 24px;
}

main.contents .contents-section.section-management p {
  margin-bottom: 24px;
}

main.contents .contents-section.section-management p:last-child {
  margin-bottom: 0;
}

@media (max-width: 960px) {
  main.contents .contents-section.section-management .txt-box {
    width: 100%;
  }

  main.contents .contents-section.section-management .txt-box h3 {
    margin-top: 32px;
  }
}

@media (max-width: 480px) {
  main.contents .contents-section.section-management .txt-box {
    margin-bottom: 40px;
  }

  main.contents .contents-section.section-management .txt-box .act-box .post {
    font-size: 16px;
  }

  main.contents .contents-section.section-management .txt-box .act-box .name {
    font-size: 24px;
  }

  main.contents .contents-section.section-management .txt-box .act-box .name span {
    font-size: 20px;
  }

  main.contents .contents-section.section-management img {
    margin-bottom: 16px;
  }

  main.contents .contents-section.section-management p {
    margin-bottom: 16px;
  }
}

/* スマホ用：画像拡大モーダルトリガー（768px以下でタップ可能表示） */
.img-zoom-trigger-sp {
  position: relative;
  margin: 24px 0;
}

.img-zoom-trigger-sp img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.img-zoom-trigger-sp-label {
  display: none;
}

.img-zoom-trigger-sp-label.sp {
  display: none;
}

@media (max-width: 768px) {
  .img-zoom-trigger-sp {
    cursor: pointer;
    margin: 16px 0;
  }

  .img-zoom-trigger-sp-label.sp {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: #023D97;
    text-align: center;
  }
}

/* 画像拡大モーダル */
.img-zoom-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.img-zoom-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.img-zoom-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.img-zoom-modal-inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: none;
}

.img-zoom-modal-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
  background: #fff;
}

.img-zoom-modal-title {
  font-size: 14px;
  font-weight: 700;
  color: #303030;
  margin: 0;
}

.img-zoom-modal-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  color: #666;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.img-zoom-modal-close:hover {
  background: #f0f0f0;
  color: #303030;
}

.img-zoom-modal-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
  background: #fff;
}

.img-zoom-modal-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  color: #023D97;
  background: #e8f0fe;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  touch-action: manipulation;
}

.img-zoom-modal-btn:hover {
  background: #023D97;
  color: #fff;
}

.img-zoom-modal-scale {
  font-size: 14px;
  font-weight: 600;
  color: #303030;
  min-width: 48px;
  text-align: center;
}

.img-zoom-modal-content {
  position: relative;
  z-index: 0;
  flex: 1;
  overflow: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 12px;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
}

.img-zoom-modal-content-inner {
  display: inline-block;
  transform-origin: top left;
  transition: transform 0.15s ease;
}

.img-zoom-modal-content-inner img,
.img-zoom-modal-content img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

main.contents .contents-section.section-faq .head-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 48px;
}

main.contents .contents-section.section-faq .head-box h2 {
  color: #023D97;
  font-size: 36px;
}

main.contents .contents-section.section-faq .head-box .btn {
  margin: 0;
}

@media (max-width: 1080px) {
  main.contents .contents-section.section-faq .head-box h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  main.contents .contents-section.section-faq .head-box {
    justify-content: center;
    text-align: center;
    gap: 24px;
  }

  main.contents .contents-section.section-faq .head-box h2 {
    font-size: 28px;
    width: 100%;
    margin-bottom: 0;
  }
}

main.contents .contents-section.section-faq .faq-box .box {
  padding: 32px;
  margin-bottom: 24px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}

main.contents .contents-section.section-faq .faq-box .box:last-child {
  margin-bottom: 0;
}

main.contents .contents-section.section-faq .faq-box .box .question {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  padding-left: 40px;
}

main.contents .contents-section.section-faq .faq-box .box .question::before {
  position: absolute;
  content: "Q.";
  color: #023D97;
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: bold;
  width: 32px;
  height: 32px;
  top: -6px;
  left: 0;
}

main.contents .contents-section.section-faq .faq-box .box .question.faq-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding-right: 48px;
}

main.contents .contents-section.section-faq .faq-box .box .question.faq-toggle span {
  flex: 1;
}

main.contents .contents-section.section-faq .faq-box .box .question.faq-toggle .faq-toggle-btn {
  position: absolute;
  right: 0;
  top: 16px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  color: #023D97;
  line-height: 1;
}

main.contents .contents-section.section-faq .faq-box .box .question.faq-toggle .faq-toggle-btn .faq-icon-plus {
  display: block;
  font-size: 56px;
  font-weight: normal;
  font-family: "Inter", sans-serif;
}

main.contents .contents-section.section-faq .faq-box .box .question.faq-toggle .faq-toggle-btn .faq-icon-minus {
  display: none;
}

main.contents .contents-section.section-faq .faq-box .box .question.faq-toggle.active .faq-toggle-btn .faq-icon-plus {
  display: none;
}

main.contents .contents-section.section-faq .faq-box .box .question.faq-toggle.active .faq-toggle-btn .faq-icon-minus {
  display: block;
  font-size: 56px;
  font-weight: normal;
  font-family: "Inter", sans-serif;
}

main.contents .contents-section.section-faq .faq-box .box .answer {
  position: relative;
  font-size: 16px;
  padding-left: 40px;
  transition: max-height 0.3s ease, padding-top 0.3s ease, margin-top 0.3s ease, border-top 0.3s ease;
}

main.contents .contents-section.section-faq .faq-box .box .answer::before {
  position: absolute;
  content: "A.";
  color: #023D97;
  font-size: 32px;
  font-weight: bold;
  width: 32px;
  height: 32px;
  top: 8px;
  left: 0;
}

main.contents .contents-section.section-faq .faq-box .box .answer.faq-answer-content {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

main.contents .contents-section.section-faq .faq-box .box .answer a {
  color: #205EA5;
  font-weight: bold;
  text-decoration: underline;
}

@media (max-width: 768px) {
  main.contents .contents-section.section-faq .faq-box .box {
    padding: 24px;
  }

  main.contents .contents-section.section-faq .faq-box .box .question {
    font-size: 20px;
    padding-left: 32px;
  }

  main.contents .contents-section.section-faq .faq-box .box .question::before {
    font-size: 24px;
    top: -2px;
  }

  main.contents .contents-section.section-faq .faq-box .box .question.faq-toggle {
    padding-right: 48px;
  }

  main.contents .contents-section.section-faq .faq-box .box .question.faq-toggle .faq-toggle-btn {
    font-size: 32px;
  }

  main.contents .contents-section.section-faq .faq-box .box .question.faq-toggle .faq-toggle-btn .faq-icon-plus {
    font-size: 40px;
  }

  main.contents .contents-section.section-faq .faq-box .box .question.faq-toggle.active .faq-toggle-btn .faq-icon-minus {
    font-size: 40px;
  }

  main.contents .contents-section.section-faq .faq-box .box .answer {
    padding-left: 32px;
  }

  main.contents .contents-section.section-faq .faq-box .box .answer::before {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  main.contents .contents-section.section-faq .faq-box .box {
    padding: 16px;
    border-radius: 12px;
  }

  main.contents .contents-section.section-faq .faq-box .box .question {
    font-size: 18px;
    padding-left: 32px;
  }

  main.contents .contents-section.section-faq .faq-box .box .question::before {
    font-size: 24px;
    top: -2px;
  }

  main.contents .contents-section.section-faq .faq-box .box .question.faq-toggle {
    padding-right: 48px;
  }

  main.contents .contents-section.section-faq .faq-box .box .question.faq-toggle .faq-toggle-btn {
    font-size: 32px;
  }

  main.contents .contents-section.section-faq .faq-box .box .question.faq-toggle .faq-toggle-btn .faq-icon-plus {
    font-size: 40px;
  }

  main.contents .contents-section.section-faq .faq-box .box .question.faq-toggle.active .faq-toggle-btn .faq-icon-minus {
    font-size: 40px;
  }

  main.contents .contents-section.section-faq .faq-box .box .answer {
    padding-left: 32px;
  }

  main.contents .contents-section.section-faq .faq-box .box .answer::before {
    font-size: 24px;
  }
}

main.contents .contents-section.section-link h2 {
  text-align: center;
}

main.contents .contents-section.section-link ul li {
  margin-bottom: 40px;
}

main.contents .contents-section.section-link ul li:last-child {
  margin-bottom: 0;
}

main.contents .contents-section.section-link ul li p a {
  color: #023D97;
  font-size: 16px;
  font-weight: bold;
  text-decoration: underline;
}

@media (max-width: 480px) {
  main.contents .contents-section.section-link ul li {
    margin-bottom: 32px;
  }
}

main.contents .contents-section.section-news .news-box {
  padding: 56px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}

main.contents .contents-section.section-news .news-box .link ul li {
  border-bottom: #D9D9D9 1px solid;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

main.contents .contents-section.section-news .news-box .link ul li:last-child {
  padding: 0;
  margin: 0;
  border: 0;
}

main.contents .contents-section.section-news .news-box .link ul li .tag-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

main.contents .contents-section.section-news .news-box .link ul li .tag-box time {
  color: #023D97;
  font-size: 16px;
  font-weight: 600;
  word-break: keep-all;
}

main.contents .contents-section.section-news .news-box .link ul li .tag-box .tag {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  border-radius: 32px;
  padding: 6px 16px;
}

main.contents .contents-section.section-news .news-box .link ul li .tag-box .green {
  background: #7DB700;
}

main.contents .contents-section.section-news .news-box .link ul li .tag-box .orange {
  background: #EF857D;
}

main.contents .contents-section.section-news .news-box .link ul li .tag-box .blue {
  background: #53529C;
}

main.contents .contents-section.section-news .news-box .link ul li p {
  font-size: 16px;
  font-weight: 500;
}

main.contents .contents-section.section-news .news-box .link ul li p a {
  color: #205EA5;
  font-weight: bold;
  text-decoration: underline;
}

@media (max-width: 960px) {
  main.contents .contents-section.section-news .news-box {
    display: block;
    padding: 40px;
  }

  main.contents .contents-section.section-news .news-box .link ul li .tag-box {
    gap: 8px;
  }

  main.contents .contents-section.section-news .news-box .link ul li .tag-box time {
    display: block;
    width: 100%;
  }
}

@media (max-width: 480px) {
  main.contents .contents-section.section-news .news-box {
    padding: 24px;
  }

  main.contents .contents-section.section-news .news-box .link ul li a time {
    font-size: 16px;
  }

  main.contents .contents-section.section-news .news-box .link ul li a p {
    font-size: 16px;
  }
}

main.contents .contents-section.section-related-info .inner>h4 {
  margin-top: 32px;
}

@media (max-width: 480px) {
  main.contents .contents-section.section-related-info .inner>h4 {
    margin-top: 24px;
  }

  main.contents .contents-section.section-related-info .mt-40 {
    margin-top: 24px !important;
  }
}

main.contents .contents-section .table-box {
  overflow: auto;
  margin-bottom: 64px;
}

main.contents .contents-section .table-box:last-child {
  margin-bottom: 0;
}

main.contents .contents-section .table-box table {
  width: 100%;
  background: #D9D9D9;
}

@media (max-width: 768px) {
  main.contents .contents-section .table-box table {
    width: 800px;
  }
}

main.contents .contents-section .table-box table thead tr th {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 12px 16px;
  background: #023D97;
}

main.contents .contents-section .table-box table tbody tr td {
  font-size: 15px;
  font-weight: 500;
  padding: 12px 16px;
  background: #EDF8FF;
}

main.contents .contents-section .table-box table tbody tr td p,
main.contents .contents-section .table-box table tbody tr td li {
  font-size: 15px;
  font-weight: 500;
}

main.contents .contents-section .table-box table tbody tr td:last-child ul {
  list-style: disc;
  padding-left: 24px;
}

main.contents .contents-section .table-box table tbody tr td:first-child {
  word-break: keep-all;
  text-align: center;
}

main.contents .contents-section.bg-blue table tbody tr td {
  background: #fff;
}

.link-box {
  padding: 80px 0;
}

.link-box .section-header {
  margin-bottom: 40px;
  text-align: center;
}

.link-box .section-header span {
  line-height: 1.2;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.link-box .section-header h2 {
  line-height: 1.2;
  color: #023D97;
  font-size: 36px;
}

.link-box ul {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.link-box ul li {
  width: calc((100% - 24px) / 2);
}

.link-box ul li .btn {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  font-size: 20px;
  font-weight: bold;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  padding: 32px 80px 32px 40px;
  justify-content: center;
  text-align: center;
}

.link-box ul li .btn::before {
  position: absolute;
  content: "";
  top: calc(50% - 20px);
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: #023D97 url(../img/icon-arrow.svg) no-repeat center;
}

.link-box ul li .btn p {
  display: block;
  font-size: 16px;
  margin-top: 8px;
}

.link-box ul li .target-btn::before {
  background: url(../img/icon-target-btn.svg) no-repeat;
}

@media (max-width: 960px) {
  .link-box ul {
    gap: 16px;
  }

  .link-box ul li {
    width: calc((100% - 16px) / 2);
  }

  .link-box ul li .btn {
    width: 100%;
    font-size: 18px;
    padding: 20px 64px 20px 28px;
  }

  .link-box ul li .btn::before {
    right: 16px;
  }

  /*.link-box ul li .btn br {
    display: none;
  }*/
}

@media (max-width: 768px) {
  .link-box {
    padding: 64px 0;
  }

  .link-box .section-header span {
    font-size: 18px;
  }

  .link-box .section-header h2 {
    font-size: 28px;
  }

  .link-box ul {
    gap: 16px;
  }

  .link-box ul li {
    width: 100%;
  }

  .link-box ul li .btn {
    width: 100%;
    font-size: 18px;
    padding: 20px 80px 20px 28px;
  }
}

@media (max-width: 480px) {
  .link-box {
    padding: 48px 0;
  }

  .link-box .section-header {
    margin-bottom: 32px;
  }

  .link-box .section-header span {
    font-size: 16px;
  }

  .link-box .section-header h2 {
    font-size: 24px;
  }
}

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

main.contents .contents-section h3#nav02 {
  scroll-margin-top: 106px;
}

main.contents .contents-section h3#nav05 {
  scroll-margin-top: 106px;
}

main.top section#information02 {
  scroll-margin-top: 100px;
}

.flexbox {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  row-gap: 30px;
  margin-bottom: 50px;
}

.imagebox {
  width: calc((100% - 40px) / 3);
  text-align: center;
}

@media (max-width: 768px) {
  .imagebox {
    width: calc((100% - 40px) / 2);
  }
}

main.contents .contents-section a.pdfLink.comlink {
  color: #205EA5;
  font-weight: bold;
  text-decoration: underline;
}

img.imgsmall {
  width: 60%;
}

.spdisplay {
  display: none;
}

li.sp {
  display: none;
}

@media (max-width: 768px) {
  img.imgsmall {
    width: 100%;
  }

  .spdisplay {
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 320px;
    height: 70px;
    border-radius: 56px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    background: #F39700 url(../img/icon-arrow.svg) no-repeat center right 24px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  }

  .pcdisplay {
    display: none;
  }

  li.sp {
    display: block;
  }

  li.pc {
  display: none;
}
}

@media (max-width: 480px) {
  .btn.spdisplay {
    width: 90%;
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
  }
}