@charset "UTF-8";
/* reset
----------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  height: 100%;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* clearfix */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

/* Hides from IE-Mac \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  width: 100%;
  min-height: 100%;
  height: auto;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #505050;
  background-color: #fff;
  height: 100%;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

.l-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

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

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
main {
  position: relative;
  display: block;
  padding-top: 128px;
  padding-bottom: 120px;
  flex-grow: 1;
}
@media screen and (max-width: 960px) {
  main {
    padding-top: 70px;
    padding-bottom: 80px;
  }
}

.l-inner {
  margin: 0 auto;
  width: 92%;
  max-width: 946px;
}

.l-inner-small {
  margin: 0 auto;
  width: 92%;
  max-width: 747px;
}

.l-inner-large {
  margin: 0 auto;
  width: 92%;
  max-width: 980px;
}

.l-inner_fluid {
  margin: 0 auto;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .l-inner,
.l-inner-small,
.l-inner-large {
    width: 90%;
  }
}
.l-flex {
  display: flex;
}

/******************************
* utility
*******************************/
.u-bebas {
  font-family: "Bebas Neue", cursive;
}

.u-min {
  font-family: "Noto Serif JP", serif;
}

.u-tac {
  text-align: center;
}

.u-tal {
  text-align: left;
}

.u-tar {
  text-align: right;
}

.u-red {
  color: #f00;
}

.u-keycolor {
  color: #003379;
}

.u-bg-blue {
  background-color: #c9d6f1;
}

.u-bg-gray {
  background-color: #E5E5E5;
}

.u-indent10 {
  padding-left: 1em;
  text-indent: -1em;
}

.u-small {
  font-size: 80%;
}

/******************************
* header
*******************************/
.l-header {
  position: fixed;
  width: 100%;
  height: 128px;
  z-index: 100;
  background-color: #fff;
}
@media screen and (max-width: 1200px) {
  .l-header {
    height: 62px;
  }
}

.l-header_block1 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 auto;
  max-width: 1200px;
  width: 98%;
  height: 74px;
}
@media screen and (max-width: 960px) {
  .l-header_block1 {
    margin: 0 auto 0 4.5%;
    width: 92%;
    height: 62px;
  }
}

.c-logo {
  margin-right: auto;
  flex-shrink: 0;
  width: 286px;
  height: auto;
}
@media screen and (max-width: 1000px) {
  .c-logo {
    width: 250px;
  }
}
@media screen and (max-width: 960px) {
  .c-logo {
    width: 221px;
    height: auto;
  }
}
@media screen and (max-width: 280px) {
  .c-logo {
    width: calc(100% - 80px);
  }
}
.c-logo a {
  display: block;
}

.c-logo-w {
  position: absolute;
  left: 4.5%;
  padding: 15px 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease-out 0s;
  transition-property: opacity, visibility;
}

@media screen and (max-width: 1200px) {
  .open .c-logo-w {
    visibility: visible;
    opacity: 1;
    z-index: 110;
  }
}
@media screen and (max-width: 1200px) {
  .c-menu-subnav {
    display: none;
  }
}
.c-menu-subnav .subnav {
  display: flex;
}
.c-menu-subnav .subnav li {
  position: relative;
}
.c-menu-subnav .subnav li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 10px;
  height: 10px;
  background: url(../img/common/icon_arrow.svg) no-repeat center/contain;
}
.c-menu-subnav .subnav li a {
  display: block;
  padding-left: 1.3em;
  padding-right: 3em;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: #333333;
}
.c-menu-subnav .subnav li a:hover, .c-menu-subnav .subnav li a:focus, .c-menu-subnav .subnav li a:active {
  text-decoration: underline;
}
.c-menu-subnav .subnav li:last-child a {
  padding-right: 0;
}

.mainnav .sp-only.no-category-menu {
  display: none;
}
@media screen and (max-width: 1200px) {
  .mainnav .sp-only.no-category-menu {
    display: block;
  }
}

.c-menu-pc {
  height: 54px;
  color: #fff;
  background-color: #003379;
}
@media screen and (max-width: 1200px) {
  .c-menu-pc {
    display: none;
  }
}
.c-menu-pc .mainnav {
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
  margin: 0 auto;
  width: 100%;
  max-width: 822px;
}
.c-menu-pc .mainnav > li.js-dropdown {
  position: relative;
}
.c-menu-pc .mainnav > li {
  position: relative;
  width: 25%;
  text-align: center;
}
.c-menu-pc .mainnav > li:not(:first-child)::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 1px;
  height: 12px;
  background-color: #fff;
}
.c-menu-pc .mainnav > li > span {
  position: relative;
  display: block;
  padding: 1.5em 0;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.76em;
}
.c-menu-pc .mainnav > li > span:hover, .c-menu-pc .mainnav > li > span:focus, .c-menu-pc .mainnav > li > span:active {
  opacity: 0.6;
}
.c-menu-pc .categorylist {
  position: absolute;
  display: none;
  padding-bottom: 0.5em !important;
  width: 100%;
  height: auto;
  color: #fff;
  background-color: #003379;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.23;
  letter-spacing: 0.1em;
}
.c-menu-pc .categorylist.categorylist01 {
  width: 198px;
}
.c-menu-pc .categorylist.categorylist02 {
  width: 235px;
}
.c-menu-pc .categorylist.categorylist03 {
  width: 287px;
}
.c-menu-pc .categorylist.categorylist04 {
  width: 177px;
}
.c-menu-pc .categorylist > li {
  position: relative;
}
.c-menu-pc .categorylist > li > a {
  position: relative;
  display: block;
  padding: 0.7em 0.5em 0.7em 2.8em;
  text-align: left;
}
.c-menu-pc .categorylist > li > a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: block;
  width: 80%;
  height: 1px;
  border-bottom: 1px dotted #fff;
}
.c-menu-pc .categorylist > li > a::after {
  content: "";
  position: absolute;
  left: 1.5em;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 10px;
  height: 10px;
  background: url(../img/common/icon_arrow2.svg) no-repeat center/contain;
}
.c-menu-pc .categorylist > li > a:hover, .c-menu-pc .categorylist > li > a:focus, .c-menu-pc .categorylist > li > a:active {
  opacity: 0.6;
}
.c-menu-pc .sub-categorylist {
  position: relative;
  width: 100%;
  height: auto;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: 0.1em;
}
.c-menu-pc .sub-categorylist::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: block;
  width: 80%;
  height: 1px;
  border-bottom: 1px dotted #fff;
}
.c-menu-pc .sub-categorylist > li a {
  position: relative;
  display: block;
  padding: 0.75em 0.5em 0.75em 3.5em;
  text-align: left;
}
.c-menu-pc .sub-categorylist > li a:hover, .c-menu-pc .sub-categorylist > li a:focus, .c-menu-pc .sub-categorylist > li a:active {
  opacity: 0.6;
}
.c-menu-pc .categorylist.category-type02 {
  position: absolute;
  display: none;
  padding-bottom: 0.5em !important;
  width: 100%;
  height: auto;
  color: #fff;
  background-color: #003379;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.23;
  letter-spacing: 0.1em;
  text-align: left;
}
.c-menu-pc .categorylist.category-type02 > .has-menu > span {
  display: inline-block;
  width: 100%;
  padding: 0.5em 0.5em 0em 2.5em;
  text-align: left;
}
.c-menu-pc .categorylist.category-type02 > .has-menu + .has-menu {
  margin-top: 1em;
}
.c-menu-pc .categorylist.category-type02 .sub-categorylist > li {
  position: relative;
}
.c-menu-pc .categorylist.category-type02 .sub-categorylist > li > a {
  position: relative;
  display: block;
  padding: 0.7em 0.5em 0.7em 2.8em;
  text-align: left;
}
.c-menu-pc .categorylist.category-type02 .sub-categorylist > li > a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: block;
  width: 80%;
  height: 1px;
  border-bottom: 1px dotted #fff;
}
.c-menu-pc .categorylist.category-type02 .sub-categorylist > li > a::after {
  content: "";
  position: absolute;
  left: 1.5em;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 10px;
  height: 10px;
  background: url(../img/common/icon_arrow2.svg) no-repeat center/contain;
}
.c-menu-pc .categorylist.category-type02 .sub-categorylist > li > a:hover, .c-menu-pc .categorylist.category-type02 .sub-categorylist > li > a:focus, .c-menu-pc .categorylist.category-type02 .sub-categorylist > li > a:active {
  opacity: 0.6;
}

.c-menu-sp {
  display: none;
}

@media screen and (max-width: 1200px) {
  .c-menu-pc {
    display: none;
  }
  .c-menu-sp {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-bottom: 100px;
  }
  .c-menu-sp .mainnav {
    margin: 74px auto 0;
    display: block;
    width: 100%;
    max-width: 100%;
  }
  .c-menu-sp .mainnav .menutitle {
    position: relative;
    display: block;
    padding: 1.2em 0;
    font-size: 18px;
    letter-spacing: 0.15em;
    border-bottom: 1px dotted #fff;
  }
  .c-menu-sp .mainnav .menutitle:not(.submenu-none)::before {
    content: "";
    position: absolute;
    right: 10.5%;
    top: 2em;
    display: block;
    width: 14px;
    height: 1px;
    background-color: #fff;
    transform: translateY(-50%) rotate(0deg);
  }
  .c-menu-sp .mainnav .menutitle:not(.submenu-none)::after {
    content: "";
    position: absolute;
    right: 10.5%;
    top: 2em;
    display: block;
    width: 14px;
    height: 1px;
    background-color: #fff;
    transform: translateY(-50%) rotate(90deg);
    transition: transform ease-in-out 0.3s;
  }
  .c-menu-sp .mainnav .menutitle a {
    display: block;
  }
  .c-menu-sp .mainnav .menutitle a:hover {
    opacity: 0.6;
  }
  .c-menu-sp .mainnav > li.is-open .menutitle::after {
    content: "";
    transform: translateY(-50%) rotate(0deg);
  }
  .c-menu-sp .mainnav > li {
    position: relative;
    width: 100%;
    text-align: center;
  }
  .c-menu-sp .mainnav > li:not(:first-child)::after {
    display: none;
  }
  .c-menu-sp .mainnav > li > a {
    position: relative;
    display: block;
    padding: 1.27em 0;
    font-size: 16px;
  }
  .c-menu-sp .mainnav > li > a:hover, .c-menu-sp .mainnav > li > a:focus, .c-menu-sp .mainnav > li > a:active {
    opacity: 0.6;
  }
  .c-menu-sp .categorylist {
    display: none;
    position: relative;
    padding-bottom: 0 !important;
    background: #002454;
    height: auto;
  }
  .c-menu-sp .categorylist.categorylist01, .c-menu-sp .categorylist.categorylist02, .c-menu-sp .categorylist.categorylist03, .c-menu-sp .categorylist.categorylist04 {
    width: 100%;
  }
  .c-menu-sp .categorylist li {
    position: relative;
  }
  .c-menu-sp .categorylist li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    display: block;
    width: 94.2%;
    height: 1px;
    background-color: #0d2f5d;
  }
  .c-menu-sp .categorylist li.has-menu::after {
    display: none;
  }
  .c-menu-sp .categorylist > li > a {
    position: relative;
    display: block;
    padding: 0.8em 4.5% 0.8em 17%;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-align: left;
    color: #fff;
  }
  .c-menu-sp .categorylist > li > a:before {
    display: none;
  }
  .c-menu-sp .categorylist > li > a::after {
    content: "";
    position: absolute;
    left: calc(17% - 1.2em);
    top: 1.1em;
    transform: translateY(0);
    display: block;
    width: 15px;
    height: 15px;
    background: url(../img/common/icon_arrow2.svg) no-repeat center/contain;
  }
  .c-menu-sp .categorylist > li > a span {
    position: relative;
  }
  .c-menu-sp .categorylist > li > a:hover, .c-menu-sp .categorylist > li > a:focus, .c-menu-sp .categorylist > li > a:active {
    opacity: 0.6;
  }
  .c-menu-sp .sub-categorylist {
    background: #001632;
    height: auto;
  }
  .c-menu-sp .sub-categorylist::after {
    display: none;
  }
  .c-menu-sp .sub-categorylist > li {
    position: relative;
  }
  .c-menu-sp .sub-categorylist > li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    display: block;
    width: 94.2%;
    height: 1px;
    background-color: #0d223c;
  }
  .c-menu-sp .sub-categorylist > li > a {
    position: relative;
    display: block;
    padding: 0.8em 20% 0.8em;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-align: left;
    color: #fff;
  }
  .c-menu-sp .sub-categorylist > li > a span {
    position: relative;
  }
  .c-menu-sp .sub-categorylist > li > a:hover, .c-menu-sp .sub-categorylist > li > a:focus, .c-menu-sp .sub-categorylist > li > a:active {
    opacity: 0.6;
  }
  .c-menu-sp .categorylist.category-type02 > .has-menu > span {
    display: inline-block;
    width: 100%;
    padding: 0.8em 4.5% 0.8em 17%;
    text-align: left;
    font-size: 16px;
  }
  .c-menu-sp .categorylist.category-type02 .sub-categorylist {
    position: relative;
    padding-bottom: 0 !important;
    background: #002454;
    height: auto;
    width: 100%;
  }
  .c-menu-sp .categorylist.category-type02 .sub-categorylist li {
    position: relative;
  }
  .c-menu-sp .categorylist.category-type02 .sub-categorylist li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    display: block;
    width: 94.2%;
    height: 1px;
    background-color: #0d2f5d;
  }
  .c-menu-sp .categorylist.category-type02 .sub-categorylist li.has-menu::after {
    display: none;
  }
  .c-menu-sp .categorylist.category-type02 .sub-categorylist > li > a {
    position: relative;
    display: block;
    padding: 0.8em 4.5% 0.8em 17%;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-align: left;
    color: #fff;
  }
  .c-menu-sp .categorylist.category-type02 .sub-categorylist > li > a:before {
    display: none;
  }
  .c-menu-sp .categorylist.category-type02 .sub-categorylist > li > a::after {
    content: "";
    position: absolute;
    left: calc(17% - 1.2em);
    top: 1.1em;
    transform: translateY(0);
    display: block;
    width: 15px;
    height: 15px;
    background: url(../img/common/icon_arrow2.svg) no-repeat center/contain;
  }
  .c-menu-sp .categorylist.category-type02 .sub-categorylist > li > a span {
    position: relative;
  }
  .c-menu-sp .categorylist.category-type02 .sub-categorylist > li > a:hover, .c-menu-sp .categorylist.category-type02 .sub-categorylist > li > a:focus, .c-menu-sp .categorylist.category-type02 .sub-categorylist > li > a:active {
    opacity: 0.6;
  }
  .l-header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0px;
  }
  .l-header .c-menu-sp {
    position: fixed;
    top: 0;
    left: 0;
    color: #fff;
    background-color: #003379;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-out 0s;
    transition-property: opacity, visibility;
    z-index: 100;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-backface-visibility: hidden;
  }
  .l-header.open .c-menu-sp {
    opacity: 1;
    visibility: visible;
  }
}
.nav-toggle {
  display: none;
}

@media screen and (max-width: 1200px) {
  .nav-toggle {
    position: relative;
    position: fixed;
    display: block;
    width: 48px;
    height: 48px;
    top: 0;
    right: 0;
    z-index: 102;
    border-color: transparent;
    background: transparent;
    -webkit-appearance: button;
  }
  .nav-toggle .bar {
    display: block;
    height: 1px;
    position: absolute;
    width: 30px;
    right: 12px;
    transition: all 0.5s ease-in-out 0s;
    transition-property: transform, top, width, background-color;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: #003379;
    border-radius: 4px;
  }
  .nav-toggle .bar:nth-child(1) {
    top: 14px;
  }
  .nav-toggle .bar:nth-child(2) {
    top: 22px;
  }
  .nav-toggle .bar:nth-child(3) {
    top: 30px;
  }
  .open .nav-toggle .bar {
    background-color: #fff;
  }
  .open .nav-toggle .bar:nth-child(1) {
    top: 22px;
    transform: rotate(-315deg) translateZ(0);
  }
  .open .nav-toggle .bar:nth-child(2) {
    top: 22px;
    transform: rotate(315deg) translateZ(0);
  }
  .open .nav-toggle .bar:nth-child(3) {
    width: 0;
  }
}
/*******************************
* common
******************************/
.c-title01 {
  position: relative;
  padding: 5em 1em 1em;
  text-align: center;
  height: 190px;
}
@media screen and (max-width: 768px) {
  .c-title01 {
    padding: 3em 1em 1em;
    height: auto;
  }
}
.c-title01.under-line {
  border-bottom: 1px solid #B0B0B0;
  height: 244px;
}
@media screen and (max-width: 768px) {
  .c-title01.under-line {
    padding: 3em 1em 3em;
    height: auto;
  }
}
.c-title01 .maintitle {
  display: block;
  font-size: 3.9rem;
  letter-spacing: 0.11em;
}
@media screen and (max-width: 768px) {
  .c-title01 .maintitle {
    font-size: 3rem;
  }
}
.c-title01 .maintitle.u-bebas {
  display: block;
  font-size: 4.8rem;
  letter-spacing: 0.11em;
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  .c-title01 .maintitle.u-bebas {
    font-size: 4rem;
  }
}
.c-title01 .subtitle {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.11em;
}
@media screen and (max-width: 768px) {
  .c-title01 .subtitle {
    font-size: 1.2rem;
  }
}

.c-title02 {
  display: flex;
  padding: 1em;
  align-items: center;
  justify-content: center;
  height: 194px;
  color: #003379;
}
@media screen and (max-width: 768px) {
  .c-title02 {
    padding: 2em 1em;
    height: auto;
  }
}
.c-title02 .maintitle {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-title02 .maintitle {
    font-size: 2.4rem;
  }
}

.c-title03 {
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
}
.c-title03 span {
  margin-top: 0.5em;
  display: flex;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 768px) {
  .c-title03 span {
    font-size: 1.2rem;
  }
}
.c-title03 span::before {
  content: "[";
  margin-right: 0.5em;
  display: block;
}
.c-title03 span::after {
  content: "]";
  margin-left: 0.5em;
  display: block;
}
.c-title03::after {
  content: attr(data-subtitle);
  display: block;
  width: 100%;
  text-align: center;
  font-family: "Bebas Neue", cursive;
  color: #003379;
  font-size: 6rem;
  line-height: 1;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .c-title03::after {
    font-size: 4rem;
  }
}

.c-title04 {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.c-title04 .maintitle {
  margin-top: 0.75em;
  display: flex;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 768px) {
  .c-title04 .maintitle {
    font-size: 1.2rem;
  }
}
.c-title04 .maintitle::before {
  content: "[";
  margin-right: 0.5em;
  display: block;
}
.c-title04 .maintitle::after {
  content: "]";
  margin-left: 0.5em;
  display: block;
}
.c-title04 .subtitle {
  position: relative;
  display: inline-block;
  width: 100%;
  font-family: "Bebas Neue", cursive;
  color: #003379;
  font-size: 6rem;
  line-height: 1;
  letter-spacing: 0.05em;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .c-title04 .subtitle {
    font-size: 4rem;
  }
}
.c-title04 .subtitle::before {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #003379;
  z-index: 1;
}
.c-title04 .subtitle span {
  position: relative;
  display: inline-block;
  padding-right: 0.25em;
  background-color: #fff;
  z-index: 2;
}

.c-subtitle01 {
  padding: 0.75em 0;
  font-size: 2.2rem;
  font-weight: 700;
  border-bottom: 1px solid #E5E5E5;
}

.c-subtitle02 {
  padding: 0.5em 0;
  font-size: 1.8rem;
  font-weight: 700;
}

.c-subtitle03 {
  position: relative;
  padding: 0 0 0.75em 1.5em;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.36em;
  color: #003379;
}
@media screen and (max-width: 768px) {
  .c-subtitle03 {
    font-size: 1.6rem;
  }
}
.c-subtitle03::before {
  content: "";
  position: absolute;
  top: 0.25em;
  left: 0;
  display: block;
  background-color: #D9E2EF;
  width: 20px;
  height: 20px;
  border-radius: 100%;
}
.c-subtitle03.under-line {
  border-bottom: 1px solid #003379;
}

.c-subtitle04 {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
}
.c-subtitle04 span {
  display: flex;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 768px) {
  .c-subtitle04 span {
    font-size: 1.6rem;
  }
}
.c-subtitle04 span::before {
  content: "[";
  margin-right: 0.5em;
  display: block;
}
.c-subtitle04 span::after {
  content: "]";
  margin-left: 0.5em;
  display: block;
}
.c-subtitle04.under-arrow::after {
  content: "";
  position: absolute;
  left: calc(50% - 1.7em);
  bottom: -3.2em;
  display: block;
  width: 28px;
  height: 28px;
  border: 0px;
  border-top: solid 4px #003379;
  border-right: solid 4px #003379;
  transform: rotate(135deg) translateX(-50%);
}
@media screen and (max-width: 768px) {
  .c-subtitle04.under-arrow::after {
    left: calc(50% - 1em);
    bottom: -2em;
    display: block;
    width: 15px;
    height: 15px;
  }
}

.c-btn01 {
  text-align: center;
}

.c-btn01 a {
  position: relative;
  display: inline-block;
  min-width: 242px;
  padding: 1.25em 3.5em 1.25em;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #fff;
  background-color: #003379;
  border: 1px solid #003379;
  border-radius: 40px;
  text-align: center;
  transition: color 0.3s ease-in-out;
  transition-property: color, background-color;
}
@media screen and (max-width: 260px) {
  .c-btn01 a {
    min-width: 0;
  }
}
.c-btn01 a::after {
  content: "";
  position: absolute;
  right: 3em;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 8px;
  height: 8px;
  border: 0px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg) translateY(-50%);
}
.c-btn01 a:hover, .c-btn01 a:focus {
  color: #003379;
  background-color: #fff;
}
.c-btn01 a:hover::after, .c-btn01 a:focus::after {
  border-top: solid 1px #003379;
  border-right: solid 1px #003379;
}

.c-btn01[data-color=jh] a {
  background-color: #ee6d62;
  color: #fff;
  border: 1px solid #ee6d62;
}
.c-btn01[data-color=jh] a::after {
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
}
.c-btn01[data-color=jh] a:hover, .c-btn01[data-color=jh] a:focus {
  color: #ee6d62;
  background-color: #fff;
}
.c-btn01[data-color=jh] a:hover::after, .c-btn01[data-color=jh] a:focus::after {
  border-top: solid 1px #ee6d62;
  border-right: solid 1px #ee6d62;
}

.c-btn01[data-color=sh] a {
  background-color: #00afec;
  color: #fff;
  border: 1px solid #00afec;
}
.c-btn01[data-color=sh] a::after {
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
}
.c-btn01[data-color=sh] a:hover, .c-btn01[data-color=sh] a:focus {
  color: #00afec;
  background-color: #fff;
}
.c-btn01[data-color=sh] a:hover::after, .c-btn01[data-color=sh] a:focus::after {
  border-top: solid 1px #00afec;
  border-right: solid 1px #00afec;
}

.c-btn02 {
  text-align: center;
}

.c-btn02 a,
.c-btn02 > div {
  position: relative;
  display: inline-block;
  min-width: 198px;
  padding: 0.85em 3.5em;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #003379;
  background-color: #fff;
  border: 1px solid #003379;
  border-radius: 40px;
  text-align: center;
  transition: color 0.3s ease-in-out;
  transition-property: color, background-color;
}
@media screen and (max-width: 200px) {
  .c-btn02 a,
.c-btn02 > div {
    min-width: 0;
  }
}
.c-btn02 a::after,
.c-btn02 > div::after {
  content: "";
  position: absolute;
  right: 1.5em;
  top: 50%;
  display: block;
  width: 6px;
  height: 6px;
  border: 0px;
  border-top: solid 1px #003379;
  border-right: solid 1px #003379;
  transform: rotate(45deg) translateY(-50%);
}
.c-btn02 a:hover, .c-btn02 a:focus,
.c-btn02 > div:hover,
.c-btn02 > div:focus {
  color: #fff;
  background-color: #003379;
}
.c-btn02 a:hover::after, .c-btn02 a:focus::after,
.c-btn02 > div:hover::after,
.c-btn02 > div:focus::after {
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
}

.c-btn02.arrow-down a::after {
  right: 1.5em;
  top: calc(50% - 0.5em);
  transform: rotate(135deg) translateY(-50%);
}
.c-btn02.more > div {
  padding: 0.5em 3.5em;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  cursor: pointer;
}
.c-btn02.more > div::after {
  right: 1em;
  top: calc(50% - 0.1em);
}

.c-btn02[data-color=jh] a {
  color: #ee6d62;
  background-color: #fff;
  border: 1px solid #ee6d62;
}
.c-btn02[data-color=jh] a::after {
  border-top: solid 1px #ee6d62;
  border-right: solid 1px #ee6d62;
}
.c-btn02[data-color=jh] a:hover, .c-btn02[data-color=jh] a:focus {
  background-color: #ee6d62;
  color: #fff;
}
.c-btn02[data-color=jh] a:hover::after, .c-btn02[data-color=jh] a:focus::after {
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
}

.c-btn02[data-color=sh] a {
  color: #00afec;
  background-color: #fff;
  border: 1px solid #00afec;
}
.c-btn02[data-color=sh] a::after {
  border-top: solid 1px #00afec;
  border-right: solid 1px #00afec;
}
.c-btn02[data-color=sh] a:hover, .c-btn02[data-color=sh] a:focus {
  background-color: #00afec;
  color: #fff;
}
.c-btn02[data-color=sh] a:hover::after, .c-btn02[data-color=sh] a:focus::after {
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
}

.header-img {
  height: 303px;
  display: flex;
  align-items: center;
}
.header-img .inner {
  margin: 0 auto;
  width: 92%;
  max-width: 695px;
}
.header-img .title {
  position: relative;
}
.header-img .title .maintitle {
  position: relative;
  color: #fff;
  display: block;
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .header-img .title .maintitle {
    font-size: 2.4rem;
  }
}
.header-img .title .maintitle::after {
  content: attr(data-subtitle);
  margin-top: 0.5em;
  display: block;
  width: 100%;
  text-align: left;
  text-transform: uppercase;
  font-family: "Bebas Neue", cursive;
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0.095em;
}

.header-img02 {
  position: relative;
  margin: 78px auto 0;
  width: 92%;
  max-width: 1080px;
}
@media screen and (max-width: 768px) {
  .header-img02 {
    margin: 36px auto 0;
    width: 92%;
  }
}
.header-img02::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 45.3703703704%;
}
.header-img02 .title {
  position: absolute;
  top: calc(50% + 0.5em);
  transform: translateY(-50%);
  left: 9.2592592593%;
  text-shadow: 2px 2px 6px #fff, 0px -1px 6px #fff;
  z-index: 2;
}
.header-img02 .title .maintitle {
  position: relative;
  display: block;
  font-size: 3.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .header-img02 .title .maintitle {
    font-size: 2.4rem;
  }
}
.header-img02 .title .maintitle::after {
  content: attr(data-subtitle);
  margin-top: 0.1em;
  display: block;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-family: "Bebas Neue", cursive;
  color: #000;
  font-size: 2.4rem;
  letter-spacing: 0.095em;
}
@media screen and (max-width: 768px) {
  .header-img02 .title .maintitle::after {
    font-size: 1.8rem;
  }
}

.img-of-cover {
  position: relative;
  overflow: hidden;
}
.img-of-cover img {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.post-contents01 {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.post-contents01 h1,
.post-contents01 h2 {
  padding: 0.75em 0;
  font-size: 2.2rem;
  font-weight: 700;
  color: #003379;
  border-bottom: 1px solid #E5E5E5;
}
@media screen and (max-width: 768px) {
  .post-contents01 h1,
.post-contents01 h2 {
    font-size: 2rem;
  }
}
.post-contents01 h3 {
  padding: 0 1.25em;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .post-contents01 h3 {
    font-size: 1.6rem;
  }
}
.post-contents01 ul {
  list-style: square;
}
.post-contents01 ol {
  list-style: decimal;
}
.post-contents01 ul,
.post-contents01 ol {
  margin-left: 1.5em;
}
.post-contents01 .field_text {
  padding: 0 1.25em;
  font-size: 1.6rem;
  line-height: 1.75;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .post-contents01 .field_text {
    font-size: 1.4rem;
  }
}
.post-contents01 p,
.post-contents01 ul,
.post-contents01 ol {
  font-size: 1.6rem;
  line-height: 1.75;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .post-contents01 p,
.post-contents01 ul,
.post-contents01 ol {
    font-size: 1.4rem;
  }
}
.post-contents01 strong {
  font-weight: 700;
}
.post-contents01 * + * {
  margin-top: 1em;
}
.post-contents01 * + div[class^=c-btn] {
  margin-top: 50px;
}
.post-contents01 ol li + li,
.post-contents01 ul li + li {
  margin-top: 0;
}
.post-contents01 a:not([class]):hover, .post-contents01 a:not([class]):focus {
  text-decoration: underline;
}
.post-contents01 .c-btn01 a:hover, .post-contents01 .c-btn01 a:focus {
  text-decoration: none;
}

div[class^=c-btn] + article {
  margin-top: 40px;
}

.post-contents02 {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.post-contents02 h1,
.post-contents02 h2 {
  padding: 0.75em 0;
  font-size: 2.2rem;
  font-weight: 700;
  border-bottom: 1px solid #E5E5E5;
}
@media screen and (max-width: 768px) {
  .post-contents02 h1,
.post-contents02 h2 {
    font-size: 2rem;
  }
}
.post-contents02 h3 {
  position: relative;
  padding-left: 1em;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .post-contents02 h3 {
    font-size: 1.6rem;
  }
}
.post-contents02 h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 4px;
  height: 20px;
  background-color: #003379;
}
.post-contents02 h4 {
  padding: 0 1.25em;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .post-contents02 h4 {
    font-size: 1.6rem;
  }
}
.post-contents02 .field_text {
  padding: 0 1.25em;
  font-size: 1.6rem;
  line-height: 1.75;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .post-contents02 .field_text {
    font-size: 1.4rem;
  }
}
.post-contents02 p,
.post-contents02 ul,
.post-contents02 ol {
  font-size: 1.6rem;
  line-height: 1.75;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .post-contents02 p,
.post-contents02 ul,
.post-contents02 ol {
    font-size: 1.4rem;
  }
}
.post-contents02 ul {
  list-style: square;
}
.post-contents02 ol {
  list-style: decimal;
}
.post-contents02 ul,
.post-contents02 ol {
  margin-left: 1.5em;
}
.post-contents02 strong {
  font-weight: 700;
}
.post-contents02 * + * {
  margin-top: 1em;
}
.post-contents02 * + div[class^=c-btn] {
  margin-top: 50px;
}
.post-contents02 ol li + li,
.post-contents02 ul li + li {
  margin-top: 0;
}
.post-contents02 a:not([class]):hover, .post-contents02 a:not([class]):focus {
  text-decoration: underline;
}
.post-contents02 .c-btn01 a:hover, .post-contents02 .c-btn01 a:focus {
  text-decoration: none;
}

.post-contents03 {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.post-contents03 h1,
.post-contents03 h2,
.post-contents03 h3 {
  position: relative;
  padding-left: 1em;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .post-contents03 h1,
.post-contents03 h2,
.post-contents03 h3 {
    font-size: 1.6rem;
  }
}
.post-contents03 h1::before,
.post-contents03 h2::before,
.post-contents03 h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 4px;
  height: 20px;
  background-color: #003379;
}
.post-contents03 h4 {
  padding: 0 1.25em;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .post-contents03 h4 {
    font-size: 1.6rem;
  }
}
.post-contents03 a:not([class]):hover, .post-contents03 a:not([class]):focus {
  text-decoration: underline;
}
.post-contents03 figure {
  margin: 0 auto;
  display: block;
  max-width: 744px;
}
.post-contents03 * + figure {
  margin-top: 30px;
}
.post-contents03 ul {
  list-style: square;
}
.post-contents03 ol {
  list-style: decimal;
}
.post-contents03 ul,
.post-contents03 ol {
  margin-left: 1.5em;
}
.post-contents03 .field_text {
  padding: 0 1.25em;
  font-size: 1.6rem;
  line-height: 1.75;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .post-contents03 .field_text {
    font-size: 1.4rem;
  }
}
.post-contents03 p,
.post-contents03 ul,
.post-contents03 ol {
  font-size: 1.6rem;
  line-height: 1.75;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .post-contents03 p,
.post-contents03 ul,
.post-contents03 ol {
    padding: 0;
    font-size: 1.4rem;
  }
}
.post-contents03 strong {
  font-weight: 700;
}
.post-contents03 * + * {
  margin-top: 1em;
}
.post-contents03 * + div[class^=c-btn] {
  margin-top: 50px;
}
.post-contents03 ol li + li,
.post-contents03 ul li + li {
  margin-top: 0;
}
.post-contents03 .c-btn01 a:hover, .post-contents03 .c-btn01 a:focus {
  text-decoration: none;
}
.post-contents03 .wp-block-embed-youtube .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.post-contents03 .wp-block-embed-youtube .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.post-contents03 .wp-element-caption {
  font-family: "Noto Serif JP", serif;
  font-size: 80%;
}
.post-contents03 .wp-block-button a {
  position: relative;
  display: inline-block;
  min-width: 242px;
  padding: 1.25em 3.5em 1.25em;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #fff;
  background-color: #003379;
  border: 1px solid #003379;
  border-radius: 40px;
  text-align: center;
  transition: color 0.3s ease-in-out;
  transition-property: color, background-color;
}
@media screen and (max-width: 260px) {
  .post-contents03 .wp-block-button a {
    min-width: 0;
  }
}
.post-contents03 .wp-block-button a::after {
  content: "";
  position: absolute;
  right: 3em;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 8px;
  height: 8px;
  border: 0px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg) translateY(-50%);
}
.post-contents03 .wp-block-button a:hover, .post-contents03 .wp-block-button a:focus {
  color: #003379;
  background-color: #fff;
}
.post-contents03 .wp-block-button a:hover::after, .post-contents03 .wp-block-button a:focus::after {
  border-top: solid 1px #003379;
  border-right: solid 1px #003379;
}

.related-info {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .related-info {
    margin-top: 60px;
  }
}
.related-info h3 {
  padding: 0.5em 0;
  font-size: 2.2rem;
  font-weight: 700;
  border-bottom: 1px solid #E5E5E5;
}
@media screen and (max-width: 768px) {
  .related-info h3 {
    font-size: 2rem;
  }
}
.related-info h3 + .related-itemlist {
  margin-top: 30px;
}
.related-info .related-itemlist {
  margin: 0 auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
}
@media screen and (max-width: 768px) {
  .related-info .related-itemlist {
    grid-template-columns: 1fr;
  }
}
.related-info .related-itemlist .item-block {
  padding-bottom: 1.5em;
  display: block;
}
.related-info .related-itemlist .item-block:hover, .related-info .related-itemlist .item-block:focus {
  opacity: 0.8;
}
.related-info .related-itemlist .item-img {
  position: relative;
  overflow: hidden;
}
.related-info .related-itemlist .item-img::before {
  content: "";
  display: block;
  padding-top: 67.8%;
  width: 100%;
}
.related-info .related-itemlist .item-img img {
  position: absolute;
  left: 0%;
  top: 0;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.related-info .related-itemlist .item-title {
  margin-top: 0.5em;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .related-info .related-itemlist .item-title {
    font-size: 1.6rem;
  }
}

/***********************
* ぱんくず
************************/
.breadcrumb {
  padding: 0.5em 0;
  display: flex;
  flex-wrap: wrap;
  font-size: 1rem;
}
.breadcrumb li {
  display: flex;
  margin-right: 1em;
}
.breadcrumb li a {
  display: block;
}
.breadcrumb li a:hover, .breadcrumb li a:focus, .breadcrumb li a:active {
  text-decoration: underline;
}
.breadcrumb li:first-child {
  text-transform: uppercase;
}
.breadcrumb li:not(:first-child)::before {
  content: ">";
  margin-right: 0.5em;
  display: inline-block;
}

/*******************************
* sp固定メニュー
******************************/
.fixed-menu {
  position: fixed;
  display: none;
  left: 0;
  bottom: 0;
  width: 100%;
  color: #fff;
  background-color: rgba(0, 51, 121, 0.9);
  z-index: 99;
}
@media screen and (max-width: 960px) {
  .fixed-menu {
    display: block;
  }
}

.fixed-menulist {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% 8.33%;
  grid-template-rows: auto 1fr;
  gap: 0px 0px;
  grid-template-areas: "menu01 menu01 menu01 menu02 menu02 menu02 menu03 menu03 menu03 menu04 menu04 menu04" "icon01 icon01 icon01 icon01 icon02 icon02 icon02 icon02 icon03 icon03 icon03 icon03";
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.08;
  text-align: center;
}
.fixed-menulist .menu01 {
  grid-area: menu01;
}
.fixed-menulist .menu02 {
  grid-area: menu02;
}
.fixed-menulist .menu03 {
  grid-area: menu03;
}
.fixed-menulist .menu04 {
  grid-area: menu04;
}
.fixed-menulist .icon01 {
  grid-area: icon01;
}
.fixed-menulist .icon02 {
  grid-area: icon02;
}
.fixed-menulist .icon03 {
  grid-area: icon03;
}
.fixed-menulist li {
  padding: 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fixed-menulist li[class^=menu0] {
  height: 46px;
  border-bottom: 1px solid #5c7aa4;
}
.fixed-menulist li[class^=menu0]:not(:first-of-type) {
  border-left: 1px solid #5c7aa4;
}
.fixed-menulist li.icon02:not(:first-of-type) {
  border-left: 1px solid #5c7aa4;
}
.fixed-menulist li.icon03:not(:first-of-type) {
  border-left: 1px solid #5c7aa4;
}
.fixed-menulist li[class^=icon] {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 64px;
}
.fixed-menulist .icon {
  display: block;
  margin: 0 auto;
  width: 22px;
  height: 22px;
}
.fixed-menulist .icon img {
  width: 100%;
  height: 100%;
}
.fixed-menulist .text {
  margin-top: 0.5em;
  display: inline-block;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.18;
}
/***********************
* footer
************************/
.l-footer {
  color: #fff;
  background-color: #003379;
}
@media screen and (max-width: 960px) {
  .l-footer {
    padding-bottom: 110px;
  }
}

.footer-wrap {
  padding: 48px 0 50px;
  margin: 0 auto;
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: 25% 25% 25% 25%;
  grid-template-rows: auto 1fr;
  gap: 0px 0px;
  grid-template-areas: "box01 box02 box03 box04" "box05 box02 box03 box04";
  max-width: 960px;
  color: #fff;
  background-color: #003379;
}
.footer-wrap .box01 {
  grid-area: box01;
}
.footer-wrap .box02 {
  grid-area: box02;
}
.footer-wrap .box03 {
  grid-area: box03;
}
.footer-wrap .box04 {
  grid-area: box04;
}
.footer-wrap .box05 {
  grid-area: box05;
}
.footer-wrap .box05 {
  padding-top: 25px;
}
@media screen and (max-width: 960px) {
  .footer-wrap {
    padding: 20px 0;
    grid-auto-columns: 1fr;
    grid-template-columns: 100%;
    grid-template-rows: auto 1fr;
    grid-template-areas: "box01" "box02" "box03" "box04" "box05";
    width: 92%;
    text-align: center;
  }
  .footer-wrap .box05 {
    padding-top: 0;
  }
}
.footer-wrap .menubox {
  padding-left: 1.25em;
  border-left: 1px solid #fff;
}
@media screen and (max-width: 960px) {
  .footer-wrap .menubox {
    border-left: none;
    width: 100%;
  }
  .footer-wrap .menubox:nth-child(n+2) {
    margin-top: 20px;
  }
}
.footer-wrap .menutitle {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 960px) {
  .footer-wrap .menutitle {
    position: relative;
    padding-right: 1.5em;
    font-size: 1.2rem;
  }
  .footer-wrap .menutitle::before {
    content: "";
    position: absolute;
    right: 2em;
    top: 50%;
    display: block;
    width: 14px;
    height: 1px;
    background-color: #fff;
    transform: translateY(-50%) rotate(0deg);
  }
  .footer-wrap .menutitle::after {
    content: "";
    position: absolute;
    right: 2em;
    top: 50%;
    display: block;
    width: 14px;
    height: 1px;
    background-color: #fff;
    transform: translateY(-50%) rotate(90deg);
    transition: transform ease-in-out 0.3s;
  }
  .footer-wrap .menutitle.is-open::after {
    content: "";
    transform: translateY(-50%) rotate(0deg);
  }
}
.footer-wrap .categorylist {
  margin-top: 0.5em;
}
@media screen and (min-width: 961px) {
  .footer-wrap .categorylist {
    display: block !important;
  }
}
@media screen and (max-width: 960px) {
  .footer-wrap .categorylist {
    display: none;
    margin-top: 0.5em;
    text-align: left;
  }
}
.footer-wrap .categorylist > li > a {
  position: relative;
  display: block;
  font-size: 1.2rem;
  line-height: 1.66;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .footer-wrap .categorylist > li > a {
    padding: 0.5em 0;
  }
}
.footer-wrap .categorylist > li > a:before {
  content: "▼";
  margin-right: 0.5em;
  display: inline-block;
  color: #90A6C4;
  transform: rotate(-90deg) scale(0.5);
}
.footer-wrap .categorylist > li > a:hover, .footer-wrap .categorylist > li > a:focus {
  text-decoration: underline;
}
.footer-wrap .sub-categorylist {
  padding-left: 1.5em;
}
.footer-wrap .sub-categorylist > li a {
  display: block;
  font-size: 1.1rem;
  line-height: 1.81;
  letter-spacing: 0.1em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .footer-wrap .sub-categorylist > li a {
    padding: 0.5em 0;
  }
}
.footer-wrap .sub-categorylist > li a:hover, .footer-wrap .sub-categorylist > li a:focus {
  text-decoration: underline;
}
.footer-wrap .categorylist.category-type02 {
  margin-top: 0.25em;
}
@media screen and (max-width: 960px) {
  .footer-wrap .categorylist.category-type02 {
    margin-top: 0.5em;
  }
}
.footer-wrap .categorylist.category-type02 span {
  font-size: 1.2rem;
  line-height: 1.66;
  letter-spacing: 0.1em;
}
.footer-wrap .categorylist.category-type02 .sub-categorylist {
  margin-top: 0;
  padding-left: 0;
}
@media screen and (min-width: 961px) {
  .footer-wrap .categorylist.category-type02 .sub-categorylist {
    display: block !important;
  }
}
@media screen and (max-width: 960px) {
  .footer-wrap .categorylist.category-type02 .sub-categorylist {
    margin-top: 0;
    text-align: left;
  }
}
.footer-wrap .categorylist.category-type02 .sub-categorylist > li > a {
  position: relative;
  display: block;
  font-size: 1.2rem;
  line-height: 1.66;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .footer-wrap .categorylist.category-type02 .sub-categorylist > li > a {
    padding: 0.5em 0;
  }
}
.footer-wrap .categorylist.category-type02 .sub-categorylist > li > a:before {
  content: "▼";
  margin-right: 0.5em;
  display: inline-block;
  color: #90A6C4;
  transform: rotate(-90deg) scale(0.5);
}
.footer-wrap .categorylist.category-type02 .sub-categorylist > li > a:hover, .footer-wrap .categorylist.category-type02 .sub-categorylist > li > a:focus {
  text-decoration: underline;
}

.logoarea {
  padding: 36px 30px 36px;
  color: #505050;
  background-color: #fff;
  text-align: center;
}

.footerlogo {
  margin: 0 auto;
  width: 284px;
}
@media screen and (max-width: 960px) {
  .footerlogo {
    width: 100%;
    max-width: 260px;
  }
}

.footer-address {
  margin-top: 30px;
  font-size: 1.2rem;
  line-height: 1.83;
  letter-spacing: 0.08em;
}

.footer-tel {
  font-size: 1.2rem;
  line-height: 1.83;
  letter-spacing: 0.08em;
}

.copyarea {
  display: flex;
  align-items: center;
  color: #fff;
  background-color: #3B8CCC;
  height: 58px;
}

.c-copy {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 960px) {
  .c-copy {
    font-size: 1.2rem;
  }
}
/**************************
* topics
***************************/
.post-nodata {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .post-nodata {
    padding: 40px 0;
  }
}

.relatied-topic {
  margin-top: 84px;
}
@media screen and (max-width: 768px) {
  .relatied-topic {
    margin-top: 40px;
  }
}

.topics-detail .topicslist {
  margin-top: 25px;
}
.topics-detail .topicslist + .title-topics-categorylist {
  margin-top: 34px;
}
.topics-detail .topics-categorylist {
  margin-top: 20px;
  grid-template-columns: repeat(5, 1fr);
  max-width: 742px;
}
@media screen and (max-width: 960px) {
  .topics-detail .topics-categorylist {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .topics-detail .topics-categorylist {
    grid-template-columns: repeat(2, 1fr);
  }
}

.topics-archive .topicslist {
  margin-top: 54px;
}

.topicslist {
  margin: 0 auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 20px;
}
@media screen and (max-width: 768px) {
  .topicslist {
    grid-template-columns: 1fr;
  }
}
.topicslist .item-block {
  padding-bottom: 1.5em;
  display: block;
  border-radius: 10px 10px;
  background-color: #EDF1F6;
  overflow: hidden;
}
.topicslist .item-block:hover, .topicslist .item-block:focus {
  opacity: 0.8;
}
.topicslist .item-img::before {
  content: "";
  display: block;
  padding-top: 53.2%;
  width: 100%;
}
.topicslist .item-detail {
  position: relative;
  padding: 1em 1.75em 1em;
}
@media screen and (max-width: 768px) {
  .topicslist .item-detail {
    padding: 1em 1.25em 1em;
  }
}
.topicslist .item-detail-header {
  align-items: flex-start;
}
.topicslist .item-category {
  position: absolute;
  top: -46px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: #fff;
  background-color: #911E20;
  border-radius: 100%;
}
@media screen and (max-width: 768px) {
  .topicslist .item-category {
    top: -46px;
    right: 11px;
  }
}
.topicslist .item-category span {
  font-size: 1.2rem;
}
.topicslist .item-category.cat01 {
  background-color: #911E20;
}
.topicslist .item-category.cat02 {
  background-color: #153F79;
}
.topicslist .item-category.cat03 {
  background-color: #EA6458;
}
.topicslist .item-category.cat03 span {
  font-size: 1rem;
  transform: scale(0.8);
}
.topicslist .item-category.cat04 {
  background-color: #349570;
}
.topicslist .item-category.cat05 {
  background-color: #9D4077;
}
.topicslist .item-category.cat05 span {
  font-size: 1.2rem;
}
.topicslist .item-labels {
  margin-left: 6px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.topicslist .item-labels li {
  margin-left: 0.25em;
  margin-bottom: 0.25em;
}
.topicslist .item-labels li span {
  display: inline-block;
  color: #fff;
  background-color: #003379;
  padding: 0.2em 0.75em;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}
.topicslist .item-date {
  padding-top: 0.5em;
  color: #003379;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .topicslist .item-date {
    padding-top: 0.5em;
  }
}
.topicslist .item-text {
  margin-top: 1em;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  line-height: 1.75;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media screen and (max-width: 768px) {
  .topicslist .item-text {
    margin-top: 0.5em;
  }
}
.topicslist + .c-btn02.more {
  margin-top: 50px;
}

.topics-categorylist {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px 10px;
  margin: 0 auto;
  max-width: 890px;
}
@media screen and (max-width: 960px) {
  .topics-categorylist {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .topics-categorylist {
    grid-template-columns: repeat(2, 1fr);
  }
}
.topics-categorylist li a {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 0.5em 0.5em;
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  color: #003379;
  background-color: #E5E5E5;
  border-radius: 40px;
  text-align: center;
  transition: color 0.3s ease-in-out;
  transition-property: color, background-color;
}
@media screen and (max-width: 200px) {
  .topics-categorylist li a {
    min-width: 0;
  }
}
.topics-categorylist li a:hover, .topics-categorylist li a:focus {
  color: #fff;
  background-color: #003379;
}
.topics-categorylist li.is-active a {
  color: #fff;
  background-color: #003379;
}
.topics-categorylist li.is-active a:hover, .topics-categorylist li.is-active a:focus {
  color: #003379;
  background-color: #E5E5E5;
}

.topics-detail .post-date .date {
  font-size: 1.5rem;
}
.topics-detail .post-title {
  padding: 0.5em 0;
  color: #003379;
  font-size: 2.5rem;
  font-weight: 700;
  border-bottom: 1px solid #E6E6E6;
}
@media screen and (max-width: 768px) {
  .topics-detail .post-title {
    font-size: 2rem;
  }
}
.topics-detail .post-category {
  margin-left: 15px;
  display: inline-block;
  color: #fff;
  background-color: #911E20;
  padding: 0.1em 0.75em;
  font-size: 1.2rem;
  border-radius: 2px;
}
.topics-detail .post-category.cat01 {
  background-color: #911E20;
}
.topics-detail .post-category.cat02 {
  background-color: #153F79;
}
.topics-detail .post-category.cat03 {
  background-color: #EA6458;
}
.topics-detail .post-category.cat04 {
  background-color: #349570;
}
.topics-detail .post-category.cat05 {
  background-color: #9D4077;
}
.topics-detail .post-header {
  margin-top: 10px;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .topics-detail .post-header {
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
  }
}
.topics-detail .share {
  position: relative;
  margin-left: 20px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .topics-detail .share {
    margin-left: auto;
    margin-top: 10px;
    flex-shrink: 1;
  }
}
.topics-detail .share-text {
  margin-right: 10px;
  flex-shrink: 0;
  font-size: 1.2rem;
  font-weight: 500;
}
@media screen and (max-width: 320px) {
  .topics-detail .share-text {
    flex-shrink: 1;
  }
}
.topics-detail .taglist {
  flex-wrap: wrap;
}
.topics-detail .taglist li {
  display: inline-block;
  margin: 0.5em 1em 0 0;
  padding: 0.1em 1em;
  background-color: #E5E5E5;
  font-size: 1.2rem;
  font-weight: 500;
  border-radius: 2px;
}
.topics-detail .post-contents03 {
  margin-top: 44px;
}
@media screen and (max-width: 768px) {
  .topics-detail .post-contents03 {
    margin-top: 30px;
  }
}

/*************************
* history
**************************/
.contents-history {
  margin: 45px auto 0;
  max-width: 624px;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .contents-history {
    width: 100%;
  }
}
.contents-history p + p {
  margin-top: 1.75em;
}
.contents-history figure {
  margin: 30px auto 0;
}
.contents-history table {
  margin: 32px auto 0;
  width: 100%;
  border: none;
}
.contents-history table td:nth-child(1) {
  padding: 0.25em 0;
  width: 4.5em;
}
.contents-history table td:nth-child(2) {
  padding: 0.25em 0;
  width: calc(100% - 4.5em);
}
@media screen and (max-width: 768px) {
  .contents-history table td:nth-child(1),
.contents-history table td:nth-child(2) {
    display: block;
    width: 100%;
  }
  .contents-history table td:nth-child(1) {
    padding: 0.5em 0 0;
  }
  .contents-history table td:nth-child(2) {
    padding: 0 0 0.5em;
  }
}

/*************************
* club
**************************/
.bg-club {
  position: relative;
  background: url(../img/club/bg_club2.jpg) no-repeat center/cover;
}
.bg-club::before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  z-index: 1;
}

.contents-club .c-subtitle01 + .c-subtitle02 {
  margin-top: 40px;
}
.contents-club .c-subtitle02 + .club-itemlist {
  margin-top: 20px;
}
.contents-club .club-itemlist + .c-subtitle02 {
  margin-top: 60px;
}
.contents-club .sec-club + .sec-club {
  margin-top: 60px;
}
.contents-club .club-lead {
  padding: 42px 0;
  text-align: center;
}
.contents-club .club-lead .lead-text {
  display: inline-block;
  max-width: 629px;
  font-size: 1.6rem;
  line-height: 2;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .contents-club .club-lead .lead-text {
    font-size: 1.4rem;
    line-height: 2.28;
  }
}
.contents-club .club-anchormenu {
  margin-top: 56px;
}
.contents-club .club-anchormenu a:nth-child(2) {
  margin-left: 60px;
}
@media screen and (max-width: 680px) {
  .contents-club .club-anchormenu a:nth-child(2) {
    margin-top: 30px;
    margin-left: 0;
  }
}
.contents-club .club-itemlist {
  margin: 0 auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 40px;
}
@media screen and (max-width: 768px) {
  .contents-club .club-itemlist {
    grid-template-columns: 1fr;
  }
}
.contents-club .club-itemlist .item-block {
  display: block;
}
.contents-club .club-itemlist .item-block:hover, .contents-club .club-itemlist .item-block:focus {
  opacity: 0.8;
}
.contents-club .club-itemlist .item-img {
  position: relative;
  overflow: hidden;
}
.contents-club .club-itemlist .item-img::before {
  content: "";
  display: block;
  padding-top: 67.8%;
  width: 100%;
}
.contents-club .club-itemlist .item-img img {
  position: absolute;
  left: 0%;
  top: 0;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.contents-club .club-itemlist .item-title {
  margin-top: 0.5em;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .contents-club .club-itemlist .item-title {
    font-size: 1.5rem;
  }
}

.contents-clubdetail {
  margin-top: 66px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.contents-clubdetail .message-box {
  margin: 8px 0 0 23.2653061224%;
}
@media screen and (max-width: 768px) {
  .contents-clubdetail .message-box {
    margin: 30px auto 0;
  }
}
.contents-clubdetail .message-lead {
  text-align: left;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 2.17;
  letter-spacing: 0.26em;
}
@media screen and (max-width: 768px) {
  .contents-clubdetail .message-lead {
    font-size: 1.8rem;
    line-height: 1.75;
  }
}
.contents-clubdetail .message-text {
  margin-top: 30px;
  text-align: left;
  font-size: 1.8rem;
  line-height: 1.72;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .contents-clubdetail .message-text {
    font-size: 1.5rem;
  }
}
.contents-clubdetail .club-imglist {
  margin: 90px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 12px;
}
@media screen and (max-width: 768px) {
  .contents-clubdetail .club-imglist {
    margin: 45px auto 0;
    grid-template-columns: 1fr;
    gap: 20px 0;
  }
}
.contents-clubdetail .club-imglist .item-block {
  display: block;
}
.contents-clubdetail .club-imglist .item-img {
  position: relative;
  overflow: hidden;
}
.contents-clubdetail .club-imglist .item-img::before {
  content: "";
  display: block;
  padding-top: 59.8%;
  width: 100%;
}
.contents-clubdetail .club-imglist .item-img img {
  position: absolute;
  left: 0%;
  top: 0;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.clubinfo-wrap {
  margin: 50px auto 0;
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: 46.5% 46.5%;
  grid-template-rows: auto 1fr;
  gap: 20px 7%;
  grid-template-areas: "clubinfo-box01 clubinfo-box02" "clubinfo-box03 clubinfo-box02";
}
@media screen and (max-width: 768px) {
  .clubinfo-wrap {
    grid-auto-columns: auto;
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto;
    gap: 40px 0;
    grid-template-areas: "clubinfo-box01" "clubinfo-box02" "clubinfo-box03";
  }
}
.clubinfo-wrap .clubinfo-box01 {
  grid-area: clubinfo-box01;
}
.clubinfo-wrap .clubinfo-box02 {
  grid-area: clubinfo-box02;
}
.clubinfo-wrap .clubinfo-box03 {
  grid-area: clubinfo-box03;
}
.clubinfo-wrap .clubinfo-text {
  margin-top: 0.5em;
  font-size: 1.6rem;
  line-height: 2.12;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .clubinfo-wrap .clubinfo-text {
    font-size: 1.4rem;
  }
}
.clubinfo-wrap .clubinfo-table {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.6rem;
  line-height: 2.12;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .clubinfo-wrap .clubinfo-table {
    font-size: 1.4rem;
  }
}
.clubinfo-wrap .clubinfo-table dt {
  text-align: justify;
  width: 30%;
}
.clubinfo-wrap .clubinfo-table dd {
  padding-left: 1em;
  width: 70%;
}
@media screen and (max-width: 768px) {
  .clubinfo-wrap .clubinfo-table dt {
    display: block;
    text-align: left;
    width: 100%;
  }
  .clubinfo-wrap .clubinfo-table dd {
    display: block;
    width: 100%;
  }
}
.clubinfo-wrap .clubinfo-schedule {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.6rem;
  line-height: 1.68;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .clubinfo-wrap .clubinfo-schedule {
    font-size: 1.4rem;
  }
}
.clubinfo-wrap .clubinfo-schedule dt {
  text-align: left;
  width: 3em;
}
.clubinfo-wrap .clubinfo-schedule dd {
  width: calc(100% - 3em);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.sec-clubtopics {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .sec-clubtopics {
    margin-top: 60px;
  }
}

.club-topicslist {
  margin: 24px auto 0;
  gap: 40px 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid #003379;
}
@media screen and (max-width: 768px) {
  .club-topicslist {
    gap: 20px 20px;
  }
}
.club-topicslist .item-block {
  display: block;
  border-radius: 0;
}
.club-topicslist .item-date {
  padding-top: 0.5em;
  font-size: 1.7rem;
}
@media screen and (max-width: 768px) {
  .club-topicslist .item-date {
    font-size: 1.5rem;
  }
}
.club-topicslist .item-text {
  margin-top: 0.5em;
}

.sec-otherclub {
  margin-top: 110px;
}
@media screen and (max-width: 768px) {
  .sec-otherclub {
    margin-top: 60px;
  }
}
.sec-otherclub .club-linklist + .c-subtitle03 {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .sec-otherclub .club-linklist + .c-subtitle03 {
    margin-top: 40px;
  }
}
.sec-otherclub .c-subtitle04.under-arrow + .c-subtitle03 {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .sec-otherclub .c-subtitle04.under-arrow + .c-subtitle03 {
    margin-top: 30px;
  }
}

.club-linklist {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 8px;
}
@media screen and (max-width: 960px) {
  .club-linklist {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .club-linklist {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 580px) {
  .club-linklist {
    grid-template-columns: repeat(1, 1fr);
  }
}
.club-linklist li a {
  display: block;
  padding: 0.75em 0.5em;
  border: 1px solid #003379;
  text-align: center;
  transition: color ease-in-out 0.3s;
  transition-property: color, background-color;
  font-size: 1.4rem;
  font-weight: 400;
}
.club-linklist li a:hover, .club-linklist li a:focus {
  color: #fff;
  background-color: #003379;
}

/****************************
* 下層ページ共通
*****************************/
.page-contents01 {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.page-contents01 h1,
.page-contents01 h2 {
  padding: 0.75em 0;
  font-size: 2.2rem;
  font-weight: 700;
  border-bottom: 1px solid #E5E5E5;
}
@media screen and (max-width: 768px) {
  .page-contents01 h1,
.page-contents01 h2 {
    font-size: 2rem;
  }
}
.page-contents01 h3 {
  position: relative;
  padding-left: 1em;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .page-contents01 h3 {
    font-size: 1.6rem;
  }
}
.page-contents01 h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 4px;
  height: 20px;
  background-color: #003379;
}
.page-contents01 h4 {
  padding: 0 1.25em;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .page-contents01 h4 {
    font-size: 1.6rem;
  }
}
.page-contents01 * + h2 {
  margin-top: 1.75em;
}
.page-contents01 * + h3 {
  margin-top: 1.75em;
}
.page-contents01 * + h4 {
  margin-top: 1.75em;
}
.page-contents01 .field_text {
  padding: 0 1.25em;
  font-size: 1.6rem;
  line-height: 1.75;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .page-contents01 .field_text {
    font-size: 1.4rem;
  }
}
.page-contents01 .text-caution {
  font-size: 80%;
}
.page-contents01 p,
.page-contents01 ul,
.page-contents01 ol,
.page-contents01 dl {
  font-size: 1.6rem;
  line-height: 1.75;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .page-contents01 p,
.page-contents01 ul,
.page-contents01 ol,
.page-contents01 dl {
    font-size: 1.4rem;
  }
}
.page-contents01 ul {
  list-style: square;
}
.page-contents01 ol {
  list-style: decimal;
}
.page-contents01 ul,
.page-contents01 ol {
  margin-left: 1.5em;
}
.page-contents01 strong {
  font-weight: 700;
}
.page-contents01 * + * {
  margin-top: 1em;
}
.page-contents01 * + div[class^=c-btn] {
  margin-top: 30px;
}
.page-contents01 * + div[class^=c-btn].mt-medium {
  margin-top: 50px;
}
.page-contents01 div[class^=c-btn] a:not([class]):hover, .page-contents01 div[class^=c-btn] a:not([class]):focus {
  text-decoration: none;
}
.page-contents01 ol li + li,
.page-contents01 ul li + li {
  margin-top: 0;
}
.page-contents01 a:not([class]):hover, .page-contents01 a:not([class]):focus {
  text-decoration: underline;
}
.page-contents01 dl dt + *,
.page-contents01 dl dd + * {
  margin-top: 0;
}
.page-contents01 .u-fwb {
  font-weight: 700;
}
.page-contents01 .u-ml2em {
  margin-left: 2em;
}
.page-contents01 .u-ml3em {
  margin-left: 3em;
}
.page-contents01 .l-col1 {
  width: 100%;
}
.page-contents01 .l-col1 .img {
  width: 100%;
}
.page-contents01 .c-dl01 {
  display: flex;
  flex-wrap: wrap;
}
.page-contents01 .c-dl01 dt {
  width: 10%;
}
.page-contents01 .c-dl01 dd {
  width: 90%;
}
@media screen and (max-width: 768px) {
  .page-contents01 .c-dl01 {
    flex-direction: column;
  }
  .page-contents01 .c-dl01 dt {
    width: 100%;
  }
  .page-contents01 .c-dl01 dd {
    width: 100%;
  }
}
.page-contents01 .c-dl02 {
  display: flex;
  flex-wrap: wrap;
}
.page-contents01 .c-dl02 dt {
  width: 15%;
}
.page-contents01 .c-dl02 dd {
  width: 85%;
}
@media screen and (max-width: 768px) {
  .page-contents01 .c-dl02 {
    flex-direction: column;
  }
  .page-contents01 .c-dl02 dt {
    width: 100%;
  }
  .page-contents01 .c-dl02 dd {
    width: 100%;
  }
}
.page-contents01 .c-table01 {
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.75;
  font-family: "Noto Serif JP", serif;
}
.page-contents01 .c-table01 th {
  padding: 0.5em 0;
}
.page-contents01 .c-table01 td {
  padding: 0.5em 0;
}
.page-contents01 .c-table01 th + td,
.page-contents01 .c-table01 td + td {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .page-contents01 .c-table01 th,
.page-contents01 .c-table01 td {
    display: block;
    width: 100%;
  }
}
.page-contents01 .c-table02 {
  font-size: 1.5rem;
  line-height: 1.75;
  font-family: "Noto Serif JP", serif;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
.page-contents01 .c-table02 p + p {
  margin-top: 0;
}
.page-contents01 .c-table02 th {
  padding: 0.5em;
  border: 1px solid #e5e5e5;
  vertical-align: middle;
}
.page-contents01 .c-table02 td {
  padding: 0.5em;
  border: 1px solid #e5e5e5;
}
.page-contents01 .c-table02 th + td,
.page-contents01 .c-table02 td + td {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .page-contents01 .c-table02 th,
.page-contents01 .c-table02 td {
    display: block;
    width: 100%;
  }
}
.page-contents01 .l-col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 40px;
}
@media screen and (max-width: 768px) {
  .page-contents01 .l-col2 {
    grid-template-columns: 1fr;
  }
}
.page-contents01 .l-col2 .img {
  width: 100%;
}
.page-contents01 .l-col3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 40px;
}
@media screen and (max-width: 768px) {
  .page-contents01 .l-col3 {
    grid-template-columns: 1fr;
  }
}
.page-contents01 .l-col3 .img {
  width: 100%;
}
.page-contents01 .l-col4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 40px;
}
@media screen and (max-width: 768px) {
  .page-contents01 .l-col4 {
    grid-template-columns: 1fr;
  }
}
.page-contents01 .l-col4 .img {
  width: 100%;
}
.page-contents01 * + div[class^=l-col] {
  margin-top: 40px;
}
.page-contents01 div[class^=l-col] .col-item + .col-item {
  margin-top: 0;
}

.page-for h2 {
  padding: 0.75em 0;
  font-size: 2.2rem;
  font-weight: 700;
  border-bottom: 1px solid #E5E5E5;
}
@media screen and (max-width: 768px) {
  .page-for h2 {
    font-size: 2rem;
  }
}
.page-for h3 {
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.75em;
}
@media screen and (max-width: 768px) {
  .page-for h3 {
    font-size: 1.6rem;
  }
}
.page-for h4 {
  padding: 0 1.25em;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .page-for h4 {
    font-size: 1.6rem;
  }
}
.page-for * + h2 {
  margin-top: 1.75em;
}
.page-for * + h3 {
  margin-top: 1.75em;
}
.page-for * + h4 {
  margin-top: 1.75em;
}
.page-for .btn-more-topics {
  margin-top: 40px;
}
.page-for .btn-more-menu {
  margin-top: 40px;
}
.page-for .l-col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 40px;
}
@media screen and (max-width: 768px) {
  .page-for .l-col2 {
    grid-template-columns: 1fr;
  }
}
.page-for .l-col2 .img {
  width: 100%;
}
.page-for .l-col3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 40px;
}
@media screen and (max-width: 768px) {
  .page-for .l-col3 {
    grid-template-columns: 1fr;
  }
}
.page-for .l-col3 .img {
  width: 100%;
}
.page-for .l-col4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 40px;
}
@media screen and (max-width: 768px) {
  .page-for .l-col4 {
    grid-template-columns: 1fr;
  }
}
.page-for .l-col4 .img {
  width: 100%;
}
.page-for + * {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .page-for + * {
    margin-top: 40px;
  }
}

.form-flow-wrap {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .form-flow-wrap {
    margin-top: 25px;
  }
}

.form-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 80%;
}

.form-flow .flowstep {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em 0;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: #003379;
  background-color: #b9b7b7;
  width: 250px;
}
@media screen and (max-width: 768px) {
  .form-flow .flowstep {
    font-size: 1.3rem;
    width: 32%;
  }
}
.form-flow .flowstep .number {
  display: inline-block;
  margin-right: 0.5em;
}

.form-flow .flowstep:not(:first-of-type) {
  margin-left: 25px;
}
@media screen and (max-width: 768px) {
  .form-flow .flowstep:not(:first-of-type) {
    margin-left: 2%;
  }
}

.form-flow .flowstep.on {
  color: #fff;
  background-color: #003379;
}
.form-flow .flowstep.on .number {
  color: #fff;
}

.contactform {
  width: 100%;
}
.contactform label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.contactform input[type=text],
.contactform input[type=email],
.contactform input[type=number],
.contactform select,
.contactform textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0.5em 0.75em;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #505050;
  background-color: #fff;
  border: 1px solid #bfbec4;
  border-radius: 2px;
  -webkit-appearance: none;
}
.contactform input[type=text],
.contactform input[type=email],
.contactform input[type=number],
.contactform select,
.contactform textarea {
  padding: 0.5em;
}
.contactform select::-ms-expand {
  display: none;
}
.contactform select {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0.5em 1em;
  font-family: "Noto Serif JP", serif;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
  border: 1px solid #bfbec4;
  border-radius: 2px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff url("../img/common/icon_select_arrow.svg") no-repeat right 20px top 46%;
  background-size: 14px 14px;
}
.contactform button[type=submit],
.contactform input[type=button],
.contactform input[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
}

.contactform {
  margin: 40px auto 0;
  font-size: 1.6rem;
  line-height: 1.75;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .contactform {
    font-size: 1.4rem;
  }
}
.contactform th {
  display: block;
  padding-bottom: 16px;
  width: 100%;
  text-align: left;
  font-weight: 400;
}
.contactform td {
  display: block;
  width: 100%;
  padding-bottom: 30px;
}
.contactform td .text-label {
  color: #b0b0b0;
  font-size: 0.8em;
}
.contactform .required span {
  position: relative;
}
.contactform .required span::after {
  content: "必須";
  margin-left: 2em;
  padding: 0.25em 0.5em;
  display: inline-block;
  color: #fff;
  font-size: 0.8em;
  background-color: #003379;
}

.btn-area {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .btn-area {
    flex-direction: column-reverse;
  }
  .btn-area .contact-btn02 {
    margin-top: 40px;
  }
}
.btn-area .contact-btn01 {
  position: relative;
  display: inline-block;
  padding: 1.25em 3.5em 1.25em;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #fff;
  background-color: #003379;
  border: 1px solid #003379;
  border-radius: 40px;
  text-align: center;
  transition: color 0.3s ease-in-out;
  transition-property: color, background-color;
  cursor: pointer;
}
@media screen and (max-width: 260px) {
  .btn-area .contact-btn01 {
    min-width: 0;
  }
}
.btn-area .contact-btn01:hover, .btn-area .contact-btn01:focus {
  color: #003379;
  background-color: #fff;
}
.btn-area .contact-btn02 {
  position: relative;
  display: inline-block;
  padding: 1.25em 3.5em 1.25em;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #003379;
  background-color: #fff;
  cursor: pointer;
  border: 1px solid #003379;
  border-radius: 40px;
  text-align: center;
  transition: color 0.3s ease-in-out;
  transition-property: color, background-color;
}
@media screen and (max-width: 260px) {
  .btn-area .contact-btn02 {
    min-width: 0;
  }
}
.btn-area .contact-btn02:hover, .btn-area .contact-btn02:focus {
  color: #fff;
  background-color: #003379;
}

.mw_wp_form_confirm .contactform td .text-label {
  display: none;
}
.mw_wp_form_confirm .contactform .required span {
  position: relative;
}
.mw_wp_form_confirm .contactform .required span::after {
  display: none;
}
.mw_wp_form_confirm .btn-area .contact-btn01 {
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .mw_wp_form_confirm .btn-area .contact-btn01 {
    margin-left: 0;
  }
}

.mw_wp_form_complete .txt-contact-complete {
  margin-top: 40px;
}

.btn-contact-totop {
  margin-top: 40px;
}

* + .txt-contact-form,
* + .txt-contact-complete {
  margin-top: 40px;
}

.txt-contact-form,
.txt-contact-complete {
  font-size: 1.6rem;
  line-height: 1.75;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .txt-contact-form,
.txt-contact-complete {
    font-size: 1.4rem;
  }
}
.txt-contact-form a,
.txt-contact-complete a {
  text-decoration: underline;
}

.article-parent + .article-parent,
.article-guidance + .article-guidance {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .article-parent + .article-parent,
.article-guidance + .article-guidance {
    margin-top: 40px;
  }
}

/**************************
* fixed-buttom 画面固定ボタン
***************************/
.fixed-btn {
  position: fixed;
  top: 30vh;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 64px;
  z-index: 10;
}

.fixed-btn .request {
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.3em;
  position: relative;
  width: 100%;
  height: 152px;
  background: url(../img/common/bg_fixed_document.svg) no-repeat center/contain;
}
.fixed-btn .request span {
  display: inline-block;
  padding-top: 2em;
  position: relative;
  writing-mode: vertical-rl;
  color: #fff;
}
.fixed-btn .request span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 1em;
  height: 1em;
  background: url(../img/common/icon_document.svg) no-repeat center/contain;
}

.fixed-btn .guidance-button {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  gap: 1px 0px;
  grid-auto-flow: row;
  grid-template-areas: "events-senior events-label" "events-junior events-label";
}
.fixed-btn .guidance-button .events-label {
  grid-area: events-label;
}
.fixed-btn .guidance-button .events-senior {
  grid-area: events-senior;
}
.fixed-btn .guidance-button .events-junior {
  grid-area: events-junior;
}

.fixed-btn .events-label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 32px;
  height: 219px;
  background-color: #48578F;
}
.fixed-btn .events-label span {
  display: inline-block;
  padding-top: 2em;
  position: relative;
  writing-mode: vertical-rl;
  color: #fff;
}
.fixed-btn .events-label span::before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: url(../img/common/icon_calendar.svg) no-repeat center/contain;
}

.fixed-btn a.events {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 109px;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  color: #fff;
}

.fixed-btn a.events-senior {
  background: url(../img/common/bg_fixed_senior.svg) no-repeat right top/contain;
}

.fixed-btn a.events-junior {
  background: url(../img/common/bg_fixed_junior.svg) no-repeat right top/contain;
}

@media screen and (max-width: 960px) {
  .fixed-btn {
    display: none;
  }
}