@charset "UTF-8";
/*
Theme Name: オリジナルテーマ
Theme URI:
Description: オリジナルテーマ01
Version: 1.0
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap");
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;
}

body {
  line-height: 1.5;
}

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;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #000000;
}
a:hover {
  opacity: 0.9;
  transition: 0.3s;
}

p, a, span, strong {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
}
@media screen and (max-width: 767px) {
  p, a, span, strong {
    font-size: 13px;
  }
}

.sp {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
img {
  max-width: 100%;
}

.w5 {
  width: 5%;
}

.w10 {
  width: 10%;
}

.w15 {
  width: 15%;
}

.w20 {
  width: 20%;
}

.w25 {
  width: 25%;
}

.w30 {
  width: 30%;
}

.w35 {
  width: 35%;
}

.w40 {
  width: 40%;
}

.w45 {
  width: 45%;
}

.w50 {
  width: 50%;
}

.w55 {
  width: 55%;
}

.w60 {
  width: 60%;
}

.w65 {
  width: 65%;
}

.w70 {
  width: 70%;
}

.w75 {
  width: 75%;
}

.w80 {
  width: 80%;
}

.w85 {
  width: 85%;
}

.w90 {
  width: 90%;
}

.w95 {
  width: 95%;
}

.w100 {
  width: 100%;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignright {
  float: right;
  margin-left: 1.5em;
}

.alignleft {
  float: left;
  margin-right: 1.5em;
}

#wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 20px 20px 0px;
  display: flex;
  justify-content: space-between;
  flex-flow: column-reverse;
}

.btn {
  font-size: 14px;
  padding: 0;
  color: white;
  background-color: #001455;
  border-radius: 100px;
  padding: 8px 25px;
  margin: 0 auto;
  max-width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn3 {
  position: relative;
  max-width: 450px;
  width: 100%;
  height: 80px;
  border-radius: 40px;
  background: linear-gradient(70deg, #5f8bc9 0%, #395b9a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  margin: 0 auto;
}
.btn3::before, .btn3::after {
  position: absolute;
  top: 53%;
  right: 20px;
  height: 1px;
  background: white;
  content: "";
}
.btn3::before {
  width: 40px;
  transform: translateY(-50%);
}
.btn3::after {
  width: 8px;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
}

.breadcrumb {
  margin-bottom: 30px !important;
  background-color: #fcdf01;
  padding: 2px 20px 5px;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb li {
  display: inline;
  font-size: 14px;
}
@media screen and (max-width: 950px) {
  .breadcrumb li {
    font-size: 12px;
  }
}
.breadcrumb li a {
  color: inherit;
  text-decoration: none;
  font-size: 14px;
}
@media screen and (max-width: 950px) {
  .breadcrumb li a {
    font-size: 12px;
  }
}
.breadcrumb li + li:before {
  content: ">";
  margin: 0 5px 0 8px;
}

span.red {
  color: #C90000;
}

.flex {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-flow: wrap;
}

header {
  position: fixed;
  padding: 0px 20px;
  width: calc(100% - 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  height: 90px;
  background-color: rgba(255, 255, 255, 0.8784313725);
}
@media screen and (max-width: 1000px) {
  header {
    width: calc(100% - 90px);
    height: 55px;
    padding: 0px 70px 0 20px;
  }
}
@media screen and (max-width: 767px) {
  header {
    padding: 0px 70px 0 10px;
    width: calc(100% - 80px);
  }
}
@media screen and (max-width: 500px) {
  header {
    padding: 0px 60px 0 10px;
    width: calc(100% - 70px);
  }
}
header .hdrContent {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  header .hdrContent {
    margin-bottom: 0;
    height: 100%;
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  header .hdrContent {
    gap: 15px;
  }
}
@media screen and (max-width: 500px) {
  header .hdrContent {
    gap: 10px;
  }
}
header .hdrContent .nav-top {
  position: absolute;
  right: 5px;
  display: flex;
  align-items: center;
  top: 13px;
}
@media screen and (max-width: 1000px) {
  header .hdrContent .nav-top {
    display: none;
  }
}
header .hdrContent .nav-top li {
  padding: 0 20px;
}
header .hdrContent .nav-top li:first-child {
  border-right: 1px solid black;
}
header .hdrContent .logoImg {
  display: flex;
  max-width: 350px;
  width: 100%;
  height: max-content;
}
@media screen and (max-width: 1000px) {
  header .hdrContent .logoImg {
    max-width: 220px;
  }
}
@media screen and (max-width: 500px) {
  header .hdrContent .logoImg {
    max-width: 160px;
  }
}
header .hdrContent .logoImg p {
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  header .hdrContent .logoImg p {
    display: none;
  }
}
header .hdrContent .nav-right {
  display: flex;
  margin-top: 30px;
  gap: 40px;
}
@media screen and (max-width: 1035px) {
  header .hdrContent .nav-right {
    gap: 20px;
    margin-top: 0;
  }
}
header .hdrContent .hdrNav {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1000px) {
  header .hdrContent .hdrNav {
    gap: 10px;
  }
}
header .hdrContent .hdrBtn {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 500px) {
  header .hdrContent .hdrBtn {
    gap: 5px;
  }
}
header .hdrContent .hdrBtn a {
  font-size: 13px;
  width: max-content;
  padding: 5px 10px;
  text-align: center;
  line-height: 1.3;
  border-radius: 5px;
}
@media screen and (max-width: 1000px) {
  header .hdrContent .hdrBtn a {
    font-size: 12px;
  }
}
@media screen and (max-width: 500px) {
  header .hdrContent .hdrBtn a {
    font-size: 10px;
  }
}
header .hdrContent .hdrBtn .logoutBtn {
  color: white;
  background: unset;
  border: 1px solid #2d2d2d;
  background-color: #2d2d2d;
}
header .hdrContent .hdrBtn .logoutBtn::after {
  content: unset;
}
@media screen and (max-width: 1000px) {
  header .hdrContent .hdrBtn .logoutBtn {
    min-width: max-content;
    padding: 0 10px;
  }
}
@media screen and (max-width: 500px) {
  header .hdrContent .hdrBtn .logoutBtn {
    padding: 0 1px;
    font-size: 10px;
  }
}
header.is-fixed {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.gNav .nav_child {
  display: none;
}
@media screen and (min-width: 768px) {
  .gNav .nav_child {
    position: absolute;
    max-width: 220px;
    top: 39px;
    right: 20px;
  }
  .gNav .nav_child li a {
    padding: 10px 20px;
    color: white;
    background-color: #464646;
    display: block;
    font-size: 13px;
  }
}
.gNav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 1035px) {
  .gNav ul {
    gap: 20px;
  }
}
.gNav ul li a.current {
  color: #CCB66B;
}
.gNav ul .btn_parent {
  cursor: pointer;
}
.gNav ul .btn_parent a {
  pointer-events: none;
}

@media screen and (max-width: 1000px) {
  .gNav ul {
    display: unset;
  }
  .gNav ul .pc {
    display: none;
  }
  .gNav ul li a.current {
    position: unset;
  }
  .gNav ul li a.current::after {
    content: unset;
  }
  /* グローバルナビゲーション(SP)  */
  #nav_global {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;
  }
  #nav_global dt {
    position: fixed;
    top: 0;
    right: 0;
    width: 55px;
    height: 55px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 10px;
    color: white;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #001455;
  }
  #nav_global dt #btn_navcon {
    position: absolute;
    z-index: 1001;
    top: 17px;
    right: 12px;
    width: 30px;
    cursor: pointer;
  }
  #nav_global dt ul {
    width: auto;
    height: 23px;
    list-style: none;
    margin: 0 auto 6px;
  }
  #nav_global dt ul li {
    width: auto;
    height: 3px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background-color: white;
    margin: 0 0 6px;
  }
  #nav_global dt.is_active {
    width: 380px;
    height: 100vh;
    border-radius: 0;
  }
  #nav_global dt.is_active li:nth-child(2) {
    opacity: 0;
  }
  #nav_global dt.is_active li {
    -webkit-transform: translatey(8px) rotate(45deg);
    transform: translatey(8px) rotate(45deg);
  }
  #nav_global dt.is_active li:nth-child(3) {
    -webkit-transform: translatey(-10px) rotate(-45deg);
    transform: translatey(-10px) rotate(-45deg);
  }
  #nav_global dd {
    position: fixed;
    top: 95px;
    right: -380px;
    width: 380px;
    height: 100vh;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    opacity: 0;
    overflow: visible;
    font-family: YakuHanJP, "Noto Sans Bold", sans-serif;
    letter-spacing: 0.1em;
    color: white;
  }
  #nav_global dd ul {
    position: relative;
    z-index: 1001;
    width: auto;
    list-style: none;
  }
  #nav_global dd ul li {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    border-bottom: 1px solid white;
    font-size: 15px;
  }
  #nav_global dd ul li a, #nav_global dd ul li span {
    display: block;
    width: auto;
    cursor: pointer;
    padding: 22px;
    color: white;
  }
  #nav_global dd .btn_parent {
    position: relative;
    cursor: pointer;
  }
  #nav_global dd .btn_parent::after {
    font-family: FontAwesome;
    content: "\f107";
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
  }
  #nav_global dd .btn_parent.is_open_2 {
    position: relative;
    color: white;
    background-color: #001455;
  }
  #nav_global dd .btn_parent.is_open_2:after {
    font-family: FontAwesome;
    content: "\f106";
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
  }
  #nav_global dd ul.nav_child {
    display: none;
    width: auto;
    background-color: #24345f;
    top: 0;
    left: 0;
    max-width: 100%;
  }
  #nav_global dd ul.nav_child li {
    border-top: 1px solid #ddd;
    border-bottom: none;
  }
  #nav_global dd ul.nav_child li:first-child {
    border-top: 0;
  }
  #nav_global dd ul.nav_child a {
    padding: 15px 20px;
    background-color: #24345f;
  }
  #nav_global dd > ul:first-child {
    padding-bottom: 100px;
  }
  #nav_global dd.is_open {
    right: 0;
    opacity: 1;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  #nav_global dd.is_open::-webkit-scrollbar {
    display: none;
  }
}
/* トップへ戻るボタン */
#page_top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  font-weight: bold;
  padding: 5px;
  text-align: center;
  background: #001455;
  color: #fff;
  transition: 0.3s;
  width: 50px;
  height: 50px;
  font-size: 11px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  letter-spacing: 1px;
  z-index: 50;
}
#page_top img {
  width: 20px;
}
#page_top:hover {
  background: #009d9d;
}

.member-none {
  display: none !important;
}

.sidebar a {
  color: #000000;
}

.mainVisual {
  position: relative;
  margin-top: 90px;
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  z-index: 100;
  background-color: #001455;
  height: 430px;
}
@media screen and (max-width: 1000px) {
  .mainVisual {
    margin-top: 55px;
  }
}
@media screen and (max-width: 500px) {
  .mainVisual {
    flex-flow: column;
    height: auto;
    gap: 0;
  }
}
.mainVisual .mainVisual-img {
  width: 100%;
}
.mainVisual .catchCopy {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 40%;
  z-index: 100;
  padding-left: 20px;
}
@media screen and (max-width: 1000px) {
  .mainVisual .catchCopy {
    max-width: 50%;
  }
}
@media screen and (max-width: 500px) {
  .mainVisual .catchCopy {
    max-width: 100%;
    padding: 50px 20px;
    align-items: center;
  }
}
.mainVisual .catchCopy .catchCopy1 {
  font-size: 18px;
  margin-bottom: 20px;
}
@media screen and (max-width: 500px) {
  .mainVisual .catchCopy .catchCopy1 {
    font-size: 17px;
  }
}
.mainVisual .catchCopy .catchCopy2 {
  font-size: 42px;
}
@media screen and (max-width: 500px) {
  .mainVisual .catchCopy .catchCopy2 {
    font-size: 39px;
  }
}
.mainVisual .catchCopy .catchCopy3 {
  font-size: 14px;
}
.mainVisual .catchCopy p {
  font-weight: 700;
  color: white;
  line-height: 1.8;
}
@media screen and (max-width: 1000px) {
  .mainVisual .catchCopy p {
    line-height: 1.5;
    font-size: 21px;
  }
}
.mainVisual .catchCopy .btn {
  background-color: #d0001b;
  border-radius: 100px;
  margin: 30px auto 0;
  padding: 6px 30px;
  font-size: 14px;
}
.mainVisual .mainImg {
  height: 100%;
  width: 60%;
}
@media screen and (max-width: 1000px) {
  .mainVisual .mainImg {
    width: 50%;
  }
}
@media screen and (max-width: 500px) {
  .mainVisual .mainImg {
    width: 100%;
  }
}
.mainVisual .mainImg .swiper {
  height: 100%;
}
.mainVisual .mainImg .swiper .swiper-wrapper {
  height: 100%;
}
.mainVisual .mainImg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

main .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px 0;
}
main .container .section-header {
  position: relative;
  font-size: 50px;
  font-weight: 700;
  padding: 0 0 35px;
  margin-bottom: 50px;
  letter-spacing: 1px;
  text-align: center;
  font-style: italic;
}
@media screen and (max-width: 767px) {
  main .container .section-header {
    font-size: 43px;
  }
}
main .container .section-header:before {
  position: absolute;
  content: attr(data-jp);
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 20px;
  margin: 0 auto;
  text-align: center;
  color: #001455;
  font-weight: 500;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  main .container .section-header:before {
    font-size: 18px;
  }
}
main .container .section-header::after {
  position: absolute;
  content: "";
  background-image: url(./images/top/head-line.svg);
  width: 200px;
  height: 3px;
  left: 0;
  right: 0;
  margin: auto;
  top: 35px;
  bottom: 0;
}
main .container .section-header span {
  font-size: 40px;
}
@media screen and (max-width: 950px) {
  main .container .section-header span {
    font-size: 35px;
  }
}
main .news {
  max-width: unset;
  padding: 80px 0 50px;
  z-index: 10;
  position: relative;
}
@media screen and (max-width: 767px) {
  main .news {
    padding: 70px 0 50px;
  }
}
main .news .news-content {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 20px;
}
main .news .news-content ul {
  margin-bottom: 50px;
  display: flex;
  flex-flow: column;
  gap: 20px;
}
main .news .news-content ul li {
  position: relative;
  border-bottom: 1px solid black;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0px 10px 20px;
}
@media screen and (max-width: 500px) {
  main .news .news-content ul li {
    flex-flow: column;
    align-items: baseline;
    gap: 5px !important;
    padding: 15px 5px;
  }
}
main .news .news-content ul li::after {
  content: "";
  display: inline-block;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent white;
  display: inline-block;
  width: 0;
  height: 0;
  position: absolute;
  top: 24%;
  right: 10px;
  transform: translateY(-50%);
}
@media screen and (max-width: 500px) {
  main .news .news-content ul li::after {
    content: unset;
  }
}
main .news .news-content ul li a {
  width: 100%;
}
main .news .news-content ul li .news-info {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 80px;
}
main .news .news-content ul li .news-info .news-cat {
  background-color: #047216;
  width: 100%;
  max-width: 100px;
  text-align: center;
  font-size: 12px;
  padding: 4px 0;
}
@media screen and (max-width: 767px) {
  main .news .news-content ul li .news-info .news-cat {
    font-size: 11px;
  }
}
main .news .news-content ul li .news-info .news-cat a {
  color: white;
}
main .news .news-content ul li .news-title {
  font-weight: 700;
}
main .report {
  max-width: unset;
  padding: 0;
  margin-top: 70px;
  background-color: #e6e6e6;
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  main .report {
    margin-top: 50px;
  }
}
main .report .report-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 20px 70px;
}
main .report .report-content ul {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
  justify-content: center;
  flex-flow: wrap;
}
@media screen and (max-width: 500px) {
  main .report .report-content ul {
    flex-flow: column;
  }
}
main .report .report-content ul li {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  max-width: calc(33.3333333333% - 20px);
  width: 100%;
  position: relative;
  background-color: white;
}
@media screen and (max-width: 767px) {
  main .report .report-content ul li {
    max-width: calc(50% - 15px);
  }
}
@media screen and (max-width: 500px) {
  main .report .report-content ul li {
    max-width: 100%;
  }
}
main .report .report-content ul li .report-date {
  position: absolute;
  top: 0;
  padding: 3px 30px 4px 20px;
  background-color: #001455;
  color: #fcdf01;
  font-size: 14px;
  font-weight: 500;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 767px) {
  main .report .report-content ul li .report-date {
    font-size: 13px;
  }
}
main .report .report-content ul li .report-img img {
  object-fit: cover;
  width: 100%;
  height: 220px;
}
main .report .report-content ul li .report-title {
  font-size: 15px;
  margin-bottom: 5px;
  padding: 10px 20px;
  min-height: 50px;
}
main .report .report-content ul li .btn2 {
  position: relative;
  width: 100%;
  max-width: calc(100% - 40px);
  background-color: #4c45ae;
  color: white;
  margin-top: 20px;
  border-radius: 0;
  display: inline-block;
  padding: 5px 20px;
  text-align: center;
  font-size: 12px;
  border-radius: 20px;
}
main .greeting {
  margin-bottom: 80px;
}
main .greeting .greeting-content .greeting-item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  main .greeting .greeting-content .greeting-item {
    flex-flow: column-reverse;
  }
}
main .greeting .greeting-content .greeting-item .greeting-text {
  background-color: #001455;
  padding: 50px 30px;
  max-width: 55%;
}
@media screen and (max-width: 767px) {
  main .greeting .greeting-content .greeting-item .greeting-text {
    max-width: 100%;
    padding: 30px;
  }
}
main .greeting .greeting-content .greeting-item .greeting-text h2 {
  color: white;
  font-size: 33px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  main .greeting .greeting-content .greeting-item .greeting-text h2 {
    font-size: 28px;
  }
}
main .greeting .greeting-content .greeting-item .greeting-text p {
  color: white;
}
main .greeting .greeting-content .greeting-item .greeting-text .btn {
  margin: 30px auto 0;
  background-color: white;
  color: #001455;
}
main .greeting .greeting-content .greeting-item .greeting-img {
  width: 45%;
}
@media screen and (max-width: 767px) {
  main .greeting .greeting-content .greeting-item .greeting-img {
    width: 100%;
  }
}
main .greeting .greeting-content .greeting-item .greeting-img img {
  width: 100%;
}

.pickup ul {
  display: flex;
  flex-flow: wrap;
}
.pickup ul li {
  position: relative;
  padding: 10px 20px;
  width: calc(25% - 40px);
  border-bottom: 15px solid #fcdf01;
}
@media screen and (max-width: 767px) {
  .pickup ul li {
    width: calc(50% - 20px);
    padding: 10px;
  }
}
.pickup ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: calc(100% + 15px);
  background-color: #001455;
}
.pickup ul li:first-child::after {
  content: unset;
}
.pickup ul li:nth-child(odd) {
  background-color: #2c4198;
}
.pickup ul li:nth-child(odd) a p {
  color: white;
}
.pickup ul li:nth-child(odd) a p span {
  color: white;
}
@media screen and (max-width: 767px) {
  .pickup ul li::after {
    content: unset;
  }
  .pickup ul li:nth-child(3) {
    background-color: white;
  }
  .pickup ul li:nth-child(3) a p {
    color: #001455;
  }
  .pickup ul li:nth-child(3) a p span {
    color: #001455;
  }
  .pickup ul li:nth-child(4) {
    background-color: #2c4198;
  }
  .pickup ul li:nth-child(4) a p {
    color: white;
  }
  .pickup ul li:nth-child(4) a p span {
    color: white;
  }
}
.pickup ul li:last-child {
  border-right: 0;
}
.pickup ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .pickup ul li a {
    flex-flow: column;
  }
}
.pickup ul li a .top-btn-img {
  width: 70px;
  height: 70px;
  border-radius: 500px;
  overflow: hidden;
}
.pickup ul li a .top-btn-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pickup ul li a p {
  font-size: 18px;
}
@media screen and (max-width: 1000px) {
  .pickup ul li a p {
    text-align: center;
  }
}
.pickup ul li a p span {
  font-size: 13px;
  display: block;
  margin-top: 5px;
}

.page-template-default header,
.archive header,
.single header,
.editor-visual-editor header {
  background-color: white;
  z-index: 200;
}

.page-content,
.archive-content,
.single-content,
.editor-visual-editor {
  position: relative;
  top: 90px;
}
@media screen and (max-width: 1000px) {
  .page-content,
  .archive-content,
  .single-content,
  .editor-visual-editor {
    top: 55px;
    padding-bottom: 0px;
  }
}
.page-content .page-head,
.archive-content .page-head,
.single-content .page-head,
.editor-visual-editor .page-head {
  position: relative;
  width: 100%;
  height: 300px;
}
.page-content .page-head::after,
.archive-content .page-head::after,
.single-content .page-head::after,
.editor-visual-editor .page-head::after {
  content: "";
  background: rgba(0, 0, 0, 0.39);
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .page-content .page-head,
  .archive-content .page-head,
  .single-content .page-head,
  .editor-visual-editor .page-head {
    height: 200px;
  }
}
.page-content .page-head img,
.archive-content .page-head img,
.single-content .page-head img,
.editor-visual-editor .page-head img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-content .page-head .page-title,
.archive-content .page-head .page-title,
.single-content .page-head .page-title,
.editor-visual-editor .page-head .page-title {
  font-size: 42px;
  font-weight: bold;
  color: white;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .page-content .page-head .page-title,
  .archive-content .page-head .page-title,
  .single-content .page-head .page-title,
  .editor-visual-editor .page-head .page-title {
    font-size: 35px;
  }
}
.page-content main,
.page-content .editor-styles-wrapper,
.archive-content main,
.archive-content .editor-styles-wrapper,
.single-content main,
.single-content .editor-styles-wrapper,
.editor-visual-editor main,
.editor-visual-editor .editor-styles-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 20px;
  background-color: white;
  margin-bottom: 140px;
}
@media screen and (max-width: 767px) {
  .page-content main,
  .page-content .editor-styles-wrapper,
  .archive-content main,
  .archive-content .editor-styles-wrapper,
  .single-content main,
  .single-content .editor-styles-wrapper,
  .editor-visual-editor main,
  .editor-visual-editor .editor-styles-wrapper {
    margin-bottom: 50px;
  }
}
.page-content main hr,
.page-content .editor-styles-wrapper hr,
.archive-content main hr,
.archive-content .editor-styles-wrapper hr,
.single-content main hr,
.single-content .editor-styles-wrapper hr,
.editor-visual-editor main hr,
.editor-visual-editor .editor-styles-wrapper hr {
  margin: 30px 0;
  border: 0;
}
.page-content main h1,
.page-content .editor-styles-wrapper h1,
.archive-content main h1,
.archive-content .editor-styles-wrapper h1,
.single-content main h1,
.single-content .editor-styles-wrapper h1,
.editor-visual-editor main h1,
.editor-visual-editor .editor-styles-wrapper h1 {
  position: relative;
  font-size: 50px;
  font-weight: 700;
  padding: 0 0 35px;
  margin-bottom: 80px;
  letter-spacing: 1px;
  text-align: center;
  font-style: italic;
}
@media screen and (max-width: 767px) {
  .page-content main h1,
  .page-content .editor-styles-wrapper h1,
  .archive-content main h1,
  .archive-content .editor-styles-wrapper h1,
  .single-content main h1,
  .single-content .editor-styles-wrapper h1,
  .editor-visual-editor main h1,
  .editor-visual-editor .editor-styles-wrapper h1 {
    font-size: 43px;
    margin-bottom: 50px;
  }
}
.page-content main h1:before,
.page-content .editor-styles-wrapper h1:before,
.archive-content main h1:before,
.archive-content .editor-styles-wrapper h1:before,
.single-content main h1:before,
.single-content .editor-styles-wrapper h1:before,
.editor-visual-editor main h1:before,
.editor-visual-editor .editor-styles-wrapper h1:before {
  position: absolute;
  content: attr(data-jp);
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 20px;
  margin: 0 auto;
  text-align: center;
  color: #001455;
  font-weight: 500;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .page-content main h1:before,
  .page-content .editor-styles-wrapper h1:before,
  .archive-content main h1:before,
  .archive-content .editor-styles-wrapper h1:before,
  .single-content main h1:before,
  .single-content .editor-styles-wrapper h1:before,
  .editor-visual-editor main h1:before,
  .editor-visual-editor .editor-styles-wrapper h1:before {
    font-size: 18px;
  }
}
.page-content main h1::after,
.page-content .editor-styles-wrapper h1::after,
.archive-content main h1::after,
.archive-content .editor-styles-wrapper h1::after,
.single-content main h1::after,
.single-content .editor-styles-wrapper h1::after,
.editor-visual-editor main h1::after,
.editor-visual-editor .editor-styles-wrapper h1::after {
  position: absolute;
  content: "";
  background-image: url(./images/top/head-line.svg);
  width: 200px;
  height: 3px;
  left: 0;
  right: 0;
  margin: auto;
  top: 35px;
  bottom: 0;
}
.page-content main h1 span,
.page-content .editor-styles-wrapper h1 span,
.archive-content main h1 span,
.archive-content .editor-styles-wrapper h1 span,
.single-content main h1 span,
.single-content .editor-styles-wrapper h1 span,
.editor-visual-editor main h1 span,
.editor-visual-editor .editor-styles-wrapper h1 span {
  font-size: 40px;
  display: block;
}
@media screen and (max-width: 950px) {
  .page-content main h1 span,
  .page-content .editor-styles-wrapper h1 span,
  .archive-content main h1 span,
  .archive-content .editor-styles-wrapper h1 span,
  .single-content main h1 span,
  .single-content .editor-styles-wrapper h1 span,
  .editor-visual-editor main h1 span,
  .editor-visual-editor .editor-styles-wrapper h1 span {
    font-size: 35px;
  }
}
.page-content main h2,
.page-content .editor-styles-wrapper h2,
.archive-content main h2,
.archive-content .editor-styles-wrapper h2,
.single-content main h2,
.single-content .editor-styles-wrapper h2,
.editor-visual-editor main h2,
.editor-visual-editor .editor-styles-wrapper h2 {
  position: relative;
  font-size: 27px;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.3;
  color: #001455;
  border-left: 4px solid #d0001b;
  padding-left: 15px;
}
@media screen and (max-width: 767px) {
  .page-content main h2,
  .page-content .editor-styles-wrapper h2,
  .archive-content main h2,
  .archive-content .editor-styles-wrapper h2,
  .single-content main h2,
  .single-content .editor-styles-wrapper h2,
  .editor-visual-editor main h2,
  .editor-visual-editor .editor-styles-wrapper h2 {
    font-size: 24px;
  }
}
.page-content main .single-title,
.page-content .editor-styles-wrapper .single-title,
.archive-content main .single-title,
.archive-content .editor-styles-wrapper .single-title,
.single-content main .single-title,
.single-content .editor-styles-wrapper .single-title,
.editor-visual-editor main .single-title,
.editor-visual-editor .editor-styles-wrapper .single-title {
  text-align: center;
  padding: 0;
  margin-bottom: 50px;
  font-size: 30px;
}
.page-content main .single-title::before,
.page-content .editor-styles-wrapper .single-title::before,
.archive-content main .single-title::before,
.archive-content .editor-styles-wrapper .single-title::before,
.single-content main .single-title::before,
.single-content .editor-styles-wrapper .single-title::before,
.editor-visual-editor main .single-title::before,
.editor-visual-editor .editor-styles-wrapper .single-title::before {
  content: unset;
}
@media screen and (max-width: 767px) {
  .page-content main .single-title,
  .page-content .editor-styles-wrapper .single-title,
  .archive-content main .single-title,
  .archive-content .editor-styles-wrapper .single-title,
  .single-content main .single-title,
  .single-content .editor-styles-wrapper .single-title,
  .editor-visual-editor main .single-title,
  .editor-visual-editor .editor-styles-wrapper .single-title {
    text-align: left;
    font-size: 25px;
  }
}
.page-content main .page-subtitle,
.page-content .editor-styles-wrapper .page-subtitle,
.archive-content main .page-subtitle,
.archive-content .editor-styles-wrapper .page-subtitle,
.single-content main .page-subtitle,
.single-content .editor-styles-wrapper .page-subtitle,
.editor-visual-editor main .page-subtitle,
.editor-visual-editor .editor-styles-wrapper .page-subtitle {
  text-align: center;
  padding: 70px 0 50px;
  font-size: 40px;
}
@media screen and (max-width: 767px) {
  .page-content main .page-subtitle,
  .page-content .editor-styles-wrapper .page-subtitle,
  .archive-content main .page-subtitle,
  .archive-content .editor-styles-wrapper .page-subtitle,
  .single-content main .page-subtitle,
  .single-content .editor-styles-wrapper .page-subtitle,
  .editor-visual-editor main .page-subtitle,
  .editor-visual-editor .editor-styles-wrapper .page-subtitle {
    font-size: 35px;
    padding: 50px 0 40px;
  }
}
.page-content main .page-subtitle::before,
.page-content .editor-styles-wrapper .page-subtitle::before,
.archive-content main .page-subtitle::before,
.archive-content .editor-styles-wrapper .page-subtitle::before,
.single-content main .page-subtitle::before,
.single-content .editor-styles-wrapper .page-subtitle::before,
.editor-visual-editor main .page-subtitle::before,
.editor-visual-editor .editor-styles-wrapper .page-subtitle::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 40px;
  left: 0;
  right: 0;
  margin: auto;
  top: unset;
  bottom: -10px;
  background-color: #CCB66B;
}
.page-content main .page-subtitle span,
.page-content .editor-styles-wrapper .page-subtitle span,
.archive-content main .page-subtitle span,
.archive-content .editor-styles-wrapper .page-subtitle span,
.single-content main .page-subtitle span,
.single-content .editor-styles-wrapper .page-subtitle span,
.editor-visual-editor main .page-subtitle span,
.editor-visual-editor .editor-styles-wrapper .page-subtitle span {
  font-size: 22px;
  display: block;
  color: #CCB66B;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .page-content main .page-subtitle span,
  .page-content .editor-styles-wrapper .page-subtitle span,
  .archive-content main .page-subtitle span,
  .archive-content .editor-styles-wrapper .page-subtitle span,
  .single-content main .page-subtitle span,
  .single-content .editor-styles-wrapper .page-subtitle span,
  .editor-visual-editor main .page-subtitle span,
  .editor-visual-editor .editor-styles-wrapper .page-subtitle span {
    font-size: 20px;
  }
}
.page-content main h3,
.page-content .editor-styles-wrapper h3,
.archive-content main h3,
.archive-content .editor-styles-wrapper h3,
.single-content main h3,
.single-content .editor-styles-wrapper h3,
.editor-visual-editor main h3,
.editor-visual-editor .editor-styles-wrapper h3 {
  padding-left: 25px;
  position: relative;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  background-color: #001455;
  color: white;
  border-radius: 100px;
  padding: 8px 20px 8px 45px;
}
.page-content main h3::before,
.page-content .editor-styles-wrapper h3::before,
.archive-content main h3::before,
.archive-content .editor-styles-wrapper h3::before,
.single-content main h3::before,
.single-content .editor-styles-wrapper h3::before,
.editor-visual-editor main h3::before,
.editor-visual-editor .editor-styles-wrapper h3::before {
  position: absolute;
  content: "■";
  left: 20px;
}
@media screen and (max-width: 767px) {
  .page-content main h3,
  .page-content .editor-styles-wrapper h3,
  .archive-content main h3,
  .archive-content .editor-styles-wrapper h3,
  .single-content main h3,
  .single-content .editor-styles-wrapper h3,
  .editor-visual-editor main h3,
  .editor-visual-editor .editor-styles-wrapper h3 {
    font-size: 18px;
  }
}
.page-content main h4,
.page-content .editor-styles-wrapper h4,
.archive-content main h4,
.archive-content .editor-styles-wrapper h4,
.single-content main h4,
.single-content .editor-styles-wrapper h4,
.editor-visual-editor main h4,
.editor-visual-editor .editor-styles-wrapper h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #001455;
}
.page-content main h5,
.page-content .editor-styles-wrapper h5,
.archive-content main h5,
.archive-content .editor-styles-wrapper h5,
.single-content main h5,
.single-content .editor-styles-wrapper h5,
.editor-visual-editor main h5,
.editor-visual-editor .editor-styles-wrapper h5 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}
.page-content main h6,
.page-content .editor-styles-wrapper h6,
.archive-content main h6,
.archive-content .editor-styles-wrapper h6,
.single-content main h6,
.single-content .editor-styles-wrapper h6,
.editor-visual-editor main h6,
.editor-visual-editor .editor-styles-wrapper h6 {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #777777;
}
.page-content main p,
.page-content .editor-styles-wrapper p,
.archive-content main p,
.archive-content .editor-styles-wrapper p,
.single-content main p,
.single-content .editor-styles-wrapper p,
.editor-visual-editor main p,
.editor-visual-editor .editor-styles-wrapper p {
  margin-bottom: 15px;
  word-break: break-word;
  line-height: 1.8;
}
.page-content main ul, .page-content main ol,
.page-content .editor-styles-wrapper ul,
.page-content .editor-styles-wrapper ol,
.archive-content main ul,
.archive-content main ol,
.archive-content .editor-styles-wrapper ul,
.archive-content .editor-styles-wrapper ol,
.single-content main ul,
.single-content main ol,
.single-content .editor-styles-wrapper ul,
.single-content .editor-styles-wrapper ol,
.editor-visual-editor main ul,
.editor-visual-editor main ol,
.editor-visual-editor .editor-styles-wrapper ul,
.editor-visual-editor .editor-styles-wrapper ol {
  margin-bottom: 15px;
}
.page-content main table,
.page-content .editor-styles-wrapper table,
.archive-content main table,
.archive-content .editor-styles-wrapper table,
.single-content main table,
.single-content .editor-styles-wrapper table,
.editor-visual-editor main table,
.editor-visual-editor .editor-styles-wrapper table {
  margin-top: 50px;
  width: 100%;
  border: 1px solid #cbcbcb;
}
.page-content main table tr:nth-child(even),
.page-content .editor-styles-wrapper table tr:nth-child(even),
.archive-content main table tr:nth-child(even),
.archive-content .editor-styles-wrapper table tr:nth-child(even),
.single-content main table tr:nth-child(even),
.single-content .editor-styles-wrapper table tr:nth-child(even),
.editor-visual-editor main table tr:nth-child(even),
.editor-visual-editor .editor-styles-wrapper table tr:nth-child(even) {
  background-color: #f6f6f6;
}
.page-content main table tr:nth-child(odd),
.page-content .editor-styles-wrapper table tr:nth-child(odd),
.archive-content main table tr:nth-child(odd),
.archive-content .editor-styles-wrapper table tr:nth-child(odd),
.single-content main table tr:nth-child(odd),
.single-content .editor-styles-wrapper table tr:nth-child(odd),
.editor-visual-editor main table tr:nth-child(odd),
.editor-visual-editor .editor-styles-wrapper table tr:nth-child(odd) {
  background-color: white;
}
.page-content main table th, .page-content main table td,
.page-content .editor-styles-wrapper table th,
.page-content .editor-styles-wrapper table td,
.archive-content main table th,
.archive-content main table td,
.archive-content .editor-styles-wrapper table th,
.archive-content .editor-styles-wrapper table td,
.single-content main table th,
.single-content main table td,
.single-content .editor-styles-wrapper table th,
.single-content .editor-styles-wrapper table td,
.editor-visual-editor main table th,
.editor-visual-editor main table td,
.editor-visual-editor .editor-styles-wrapper table th,
.editor-visual-editor .editor-styles-wrapper table td {
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .page-content main table th, .page-content main table td,
  .page-content .editor-styles-wrapper table th,
  .page-content .editor-styles-wrapper table td,
  .archive-content main table th,
  .archive-content main table td,
  .archive-content .editor-styles-wrapper table th,
  .archive-content .editor-styles-wrapper table td,
  .single-content main table th,
  .single-content main table td,
  .single-content .editor-styles-wrapper table th,
  .single-content .editor-styles-wrapper table td,
  .editor-visual-editor main table th,
  .editor-visual-editor main table td,
  .editor-visual-editor .editor-styles-wrapper table th,
  .editor-visual-editor .editor-styles-wrapper table td {
    padding: 10px;
  }
}
.page-content main table th,
.page-content .editor-styles-wrapper table th,
.archive-content main table th,
.archive-content .editor-styles-wrapper table th,
.single-content main table th,
.single-content .editor-styles-wrapper table th,
.editor-visual-editor main table th,
.editor-visual-editor .editor-styles-wrapper table th {
  text-align: left;
  text-align: center;
  font-weight: 700;
  border-right: solid 1px #cbcbcb;
  box-sizing: border-box;
  font-size: 16px;
  width: 300px;
  max-width: 300px;
  min-width: 300px;
}
@media screen and (max-width: 767px) {
  .page-content main table th,
  .page-content .editor-styles-wrapper table th,
  .archive-content main table th,
  .archive-content .editor-styles-wrapper table th,
  .single-content main table th,
  .single-content .editor-styles-wrapper table th,
  .editor-visual-editor main table th,
  .editor-visual-editor .editor-styles-wrapper table th {
    padding: 10px;
    width: auto;
    max-width: auto;
    min-width: auto;
    font-size: 14px;
  }
}
.page-content main table td,
.page-content .editor-styles-wrapper table td,
.archive-content main table td,
.archive-content .editor-styles-wrapper table td,
.single-content main table td,
.single-content .editor-styles-wrapper table td,
.editor-visual-editor main table td,
.editor-visual-editor .editor-styles-wrapper table td {
  box-sizing: border-box;
  font-size: 14px;
  vertical-align: middle;
}
.page-content main table td a,
.page-content .editor-styles-wrapper table td a,
.archive-content main table td a,
.archive-content .editor-styles-wrapper table td a,
.single-content main table td a,
.single-content .editor-styles-wrapper table td a,
.editor-visual-editor main table td a,
.editor-visual-editor .editor-styles-wrapper table td a {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .page-content main table td,
  .page-content .editor-styles-wrapper table td,
  .archive-content main table td,
  .archive-content .editor-styles-wrapper table td,
  .single-content main table td,
  .single-content .editor-styles-wrapper table td,
  .editor-visual-editor main table td,
  .editor-visual-editor .editor-styles-wrapper table td {
    font-size: 13px;
  }
}
.page-content main .wp-block-buttons > .wp-block-button,
.page-content .editor-styles-wrapper .wp-block-buttons > .wp-block-button,
.archive-content main .wp-block-buttons > .wp-block-button,
.archive-content .editor-styles-wrapper .wp-block-buttons > .wp-block-button,
.single-content main .wp-block-buttons > .wp-block-button,
.single-content .editor-styles-wrapper .wp-block-buttons > .wp-block-button,
.editor-visual-editor main .wp-block-buttons > .wp-block-button,
.editor-visual-editor .editor-styles-wrapper .wp-block-buttons > .wp-block-button {
  width: fit-content;
}
.page-content main .row,
.page-content .editor-styles-wrapper .row,
.archive-content main .row,
.archive-content .editor-styles-wrapper .row,
.single-content main .row,
.single-content .editor-styles-wrapper .row,
.editor-visual-editor main .row,
.editor-visual-editor .editor-styles-wrapper .row {
  display: flex;
  gap: 50px;
}
.page-content main .page-number,
.page-content .editor-styles-wrapper .page-number,
.archive-content main .page-number,
.archive-content .editor-styles-wrapper .page-number,
.single-content main .page-number,
.single-content .editor-styles-wrapper .page-number,
.editor-visual-editor main .page-number,
.editor-visual-editor .editor-styles-wrapper .page-number {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .page-content main .page-number,
  .page-content .editor-styles-wrapper .page-number,
  .archive-content main .page-number,
  .archive-content .editor-styles-wrapper .page-number,
  .single-content main .page-number,
  .single-content .editor-styles-wrapper .page-number,
  .editor-visual-editor main .page-number,
  .editor-visual-editor .editor-styles-wrapper .page-number {
    margin-top: 30px;
    gap: 5px;
  }
}
.page-content main .page-number .page-numbers,
.page-content .editor-styles-wrapper .page-number .page-numbers,
.archive-content main .page-number .page-numbers,
.archive-content .editor-styles-wrapper .page-number .page-numbers,
.single-content main .page-number .page-numbers,
.single-content .editor-styles-wrapper .page-number .page-numbers,
.editor-visual-editor main .page-number .page-numbers,
.editor-visual-editor .editor-styles-wrapper .page-number .page-numbers {
  width: 40px;
  height: 40px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #001455;
  color: #001455;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .page-content main .page-number .page-numbers,
  .page-content .editor-styles-wrapper .page-number .page-numbers,
  .archive-content main .page-number .page-numbers,
  .archive-content .editor-styles-wrapper .page-number .page-numbers,
  .single-content main .page-number .page-numbers,
  .single-content .editor-styles-wrapper .page-number .page-numbers,
  .editor-visual-editor main .page-number .page-numbers,
  .editor-visual-editor .editor-styles-wrapper .page-number .page-numbers {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
}
.page-content main .page-number .page-numbers.current,
.page-content .editor-styles-wrapper .page-number .page-numbers.current,
.archive-content main .page-number .page-numbers.current,
.archive-content .editor-styles-wrapper .page-number .page-numbers.current,
.single-content main .page-number .page-numbers.current,
.single-content .editor-styles-wrapper .page-number .page-numbers.current,
.editor-visual-editor main .page-number .page-numbers.current,
.editor-visual-editor .editor-styles-wrapper .page-number .page-numbers.current {
  background-color: #001455;
  color: white;
}
.page-content .single-info,
.archive-content .single-info,
.single-content .single-info,
.editor-visual-editor .single-info {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}
.page-content .single-info .single-date,
.archive-content .single-info .single-date,
.single-content .single-info .single-date,
.editor-visual-editor .single-info .single-date {
  color: gray;
  font-size: 16px;
}
.page-content .single-info .single-cat a,
.archive-content .single-info .single-cat a,
.single-content .single-info .single-cat a,
.editor-visual-editor .single-info .single-cat a {
  background-color: #001455;
  color: white;
  border-radius: 100px;
  padding: 2px 20px;
  display: inline-flex;
}
.page-content .single-btn,
.archive-content .single-btn,
.single-content .single-btn,
.editor-visual-editor .single-btn {
  margin-top: 50px;
}
.page-content .pdf-dl,
.archive-content .pdf-dl,
.single-content .pdf-dl,
.editor-visual-editor .pdf-dl {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 auto 40px;
  justify-content: center;
  border: 1px solid #001455;
  border-radius: 100px;
  max-width: 300px;
  padding: 10px;
}
.page-content .pdf-dl img,
.archive-content .pdf-dl img,
.single-content .pdf-dl img,
.editor-visual-editor .pdf-dl img {
  max-width: 23px;
}
.page-content .pdf-dl p,
.archive-content .pdf-dl p,
.single-content .pdf-dl p,
.editor-visual-editor .pdf-dl p {
  margin: 0;
  display: flex;
  gap: 10px;
  color: #001455;
}

#introduction main .prefecture-list .prefecture-block, #introduction-cat main .prefecture-list .prefecture-block, #introduction-search main .prefecture-list .prefecture-block {
  display: flex;
}
@media screen and (max-width: 767px) {
  #introduction main .prefecture-list .prefecture-block, #introduction-cat main .prefecture-list .prefecture-block, #introduction-search main .prefecture-list .prefecture-block {
    flex-flow: column;
  }
}
#introduction main .prefecture-list .prefecture-block p, #introduction-cat main .prefecture-list .prefecture-block p, #introduction-search main .prefecture-list .prefecture-block p {
  min-width: 140px;
  font-size: 18px;
}
#introduction main .prefecture-list .prefecture-block ul, #introduction-cat main .prefecture-list .prefecture-block ul, #introduction-search main .prefecture-list .prefecture-block ul {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
}
#introduction main .prefecture-list .prefecture-block ul li, #introduction-cat main .prefecture-list .prefecture-block ul li, #introduction-search main .prefecture-list .prefecture-block ul li {
  border: 1px solid #999999;
  color: #999999;
  padding: 1px 7px 3px;
  border-radius: 5px;
  font-size: 18px;
  width: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#introduction main .prefecture-list .prefecture-block ul li:has(a), #introduction-cat main .prefecture-list .prefecture-block ul li:has(a), #introduction-search main .prefecture-list .prefecture-block ul li:has(a) {
  color: white;
  background-color: #d0001b;
}
#introduction main .prefecture-list .prefecture-block ul li a, #introduction-cat main .prefecture-list .prefecture-block ul li a, #introduction-search main .prefecture-list .prefecture-block ul li a {
  color: white;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  #introduction main .table-scroll, #introduction-cat main .table-scroll, #introduction-search main .table-scroll {
    overflow-x: auto;
    display: block;
  }
}
#introduction main table, #introduction-cat main table, #introduction-search main table {
  border: 0;
}
@media screen and (max-width: 767px) {
  #introduction main table, #introduction-cat main table, #introduction-search main table {
    width: 1000px;
  }
}
#introduction main table tr th, #introduction-cat main table tr th, #introduction-search main table tr th {
  background-color: #fcdf01;
  border: 0;
  border-right: 1px solid white;
  text-align: left;
  vertical-align: middle;
}
#introduction main table tr th, #introduction main table tr td, #introduction-cat main table tr th, #introduction-cat main table tr td, #introduction-search main table tr th, #introduction-search main table tr td {
  padding: 10px;
  width: auto;
  max-width: auto;
  min-width: auto;
}
#introduction main table tr .table-reg, #introduction-cat main table tr .table-reg, #introduction-search main table tr .table-reg {
  width: 70px;
}
#introduction main table tr .table-last, #introduction-cat main table tr .table-last, #introduction-search main table tr .table-last {
  width: 65px;
}
#introduction main table tr .table-fast, #introduction-cat main table tr .table-fast, #introduction-search main table tr .table-fast {
  width: 65px;
}
#introduction main table tr .table-year, #introduction-cat main table tr .table-year, #introduction-search main table tr .table-year {
  width: 70px;
}
#introduction main table tr .table-post, #introduction-cat main table tr .table-post, #introduction-search main table tr .table-post {
  width: 105px;
}
#introduction main table tr .table-tel, #introduction-cat main table tr .table-tel, #introduction-search main table tr .table-tel {
  width: 170px;
}
#introduction main form, #introduction-cat main form, #introduction-search main form {
  position: relative;
  margin: 0 20px 50px;
}
#introduction main form::after, #introduction-cat main form::after, #introduction-search main form::after {
  content: "";
  position: absolute;
  background-image: url(./images/subpage/search.svg);
  width: 20px;
  height: 20px;
  left: 7px;
  top: 6px;
  bottom: 0;
  margin: 0 auto;
}
#introduction main form input, #introduction-cat main form input, #introduction-search main form input {
  max-width: 550px;
  padding: 7px 30px 7px;
  width: 100%;
  outline: unset;
}
#introduction main .red, #introduction-cat main .red, #introduction-search main .red {
  color: red;
  margin-top: 50px;
  font-size: 16px;
}

.pagination {
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  margin-top: 50px;
  gap: 10px;
}
.pagination .page-numbers {
  border: 1px solid #fcdf08;
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.pagination .page-numbers + .current {
  background-color: #fcdf08;
}

.book-content ul {
  display: flex;
  flex-flow: column;
  gap: 50px;
}
.book-content ul li {
  display: flex;
  gap: 50px;
  border-bottom: 1px dotted;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .book-content ul li {
    flex-flow: column-reverse;
    align-items: center;
    gap: 20px;
  }
}
.book-content ul li .book-img {
  max-width: 300px;
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.book-content ul li .book-img img {
  height: auto;
}
.book-content ul li .book-img .btn {
  margin-top: 20px;
  width: 100%;
  max-width: calc(100% - 50px);
  background-color: #d0011a;
}
.book-content .nav-links {
  display: flex;
  gap: 10px;
}

.single-content .book-content ul li {
  flex-flow: column;
  align-items: center;
  border: 0;
  gap: 70px;
}

#about .about-list, #summary .about-list {
  margin-top: 60px;
  display: flex;
  flex-flow: column;
  gap: 40px;
}
#about .about-content, #summary .about-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  #about .about-content, #summary .about-content {
    flex-flow: column;
    gap: 20px;
  }
}
#about .about-content .about-content-img, #summary .about-content .about-content-img {
  width: 30%;
}
@media screen and (max-width: 767px) {
  #about .about-content .about-content-img, #summary .about-content .about-content-img {
    width: 100%;
  }
}
#about .about-content .about-content-img img, #summary .about-content .about-content-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#about .about-content-text, #summary .about-content-text {
  width: 70%;
}
@media screen and (max-width: 767px) {
  #about .about-content-text, #summary .about-content-text {
    width: 100%;
  }
}
#about .about-bnr, #summary .about-bnr {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  #about .about-bnr, #summary .about-bnr {
    margin-top: 50px;
    flex-flow: column;
    gap: 20px;
    align-items: center;
  }
}

#summary main .greeting-bg {
  margin-top: 70px;
}
#summary main .greeting-bg h2 {
  margin: 0 auto;
  text-align: center;
  font-size: 50px;
  margin-bottom: 70px;
}
@media screen and (max-width: 950px) {
  #summary main .greeting-bg h2 {
    font-size: 30px;
    margin-bottom: 40px;
  }
}
#summary main .greeting-bg .greeting-top {
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: center;
}
@media screen and (max-width: 950px) {
  #summary main .greeting-bg .greeting-top {
    flex-flow: column;
    align-items: center;
    margin-top: 30px;
    gap: 30px;
  }
}
#summary main .greeting-bg .greeting-top .greeting-img img {
  max-width: 350px;
  display: block;
}
#summary main .greeting-bg .greeting-top .greeting-copy {
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 950px) {
  #summary main .greeting-bg .greeting-top .greeting-copy {
    top: 0;
    width: 100%;
    text-align: center;
  }
}
#summary main .greeting-bg .greeting-top .greeting-copy p {
  font-weight: 700;
}
#summary main .greeting-bg .greeting-top .greeting-copy .greeting-title {
  font-size: 40px;
  margin-bottom: 30px;
}
@media screen and (max-width: 950px) {
  #summary main .greeting-bg .greeting-top .greeting-copy .greeting-title {
    font-size: 25px;
  }
}
#summary main .greeting-bg .greeting-top .greeting-copy .greeting-name {
  font-size: 20px;
  line-height: 1.7;
}
@media screen and (max-width: 950px) {
  #summary main .greeting-bg .greeting-top .greeting-copy .greeting-name {
    font-size: 20px;
    margin-bottom: 40px;
  }
}
#summary main .greeting-bg .greeting-top .greeting-copy .greeting-name strong {
  font-size: 25px;
  margin-left: 10px;
}
@media screen and (max-width: 950px) {
  #summary main .greeting-bg .greeting-top .greeting-copy .greeting-name strong {
    font-size: 21px;
  }
}
#summary main .greeting-content {
  padding: 40px;
  position: relative;
  margin: 0 auto;
  margin: -50px 20px 0;
  background-color: rgba(247, 249, 255, 0.9);
  width: 100%;
  max-width: calc(100% - 100px);
}
@media screen and (max-width: 950px) {
  #summary main .greeting-content {
    padding: 20px;
    max-width: calc(100% - 40px);
    margin: 0;
  }
}
#summary main .greeting-content .greeting-sign {
  text-align: right;
  margin-top: 20px;
}

#administrator .administrator-info {
  display: flex;
  flex-flow: wrap;
  gap: 15px 25px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  #administrator .administrator-info {
    justify-content: space-between;
    gap: 15px;
  }
}
#administrator .administrator-info .administrator-info-item {
  display: flex;
  gap: 20px;
  max-width: calc(33.3333333333% - 80px);
  width: 100%;
  justify-content: space-between;
  background-color: #f4f4f4;
  border-radius: 10px;
  padding: 10px 30px;
}
@media screen and (max-width: 767px) {
  #administrator .administrator-info .administrator-info-item {
    max-width: calc(50% - 70px);
  }
}
@media screen and (max-width: 500px) {
  #administrator .administrator-info .administrator-info-item {
    max-width: 100%;
  }
}
#administrator .administrator-info .administrator-info-item p {
  margin: 0;
}
#administrator .administrator-info .administrator-info-item .administrator-info-name {
  color: #001455;
  font-weight: 700;
}

#list {
  background-color: #FAFAFA;
}
#list main {
  background-color: #FAFAFA;
}

#qa {
  background-color: #FAFAFA;
}
#qa .btn {
  position: relative;
  background-color: transparent;
  color: #3b559a;
  border: 1px solid #3b559a;
  max-width: 300px;
  padding: 10px 20px;
  border-radius: 100px;
  margin-top: 50px;
}
#qa .btn::after {
  content: "";
  display: inline-block;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #001455;
  display: inline-block;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
#qa main {
  background-color: #FAFAFA;
}
#qa .accordion-container .accordion-list:not(:first-child) {
  margin-top: 20px;
}
#qa .accordion-container .accordion-title {
  background: #3b559a;
  color: white;
  cursor: pointer;
  font-size: 16px;
  padding: 10px 40px 10px 50px;
  position: relative;
}
#qa .accordion-container .accordion-title::after {
  position: absolute;
  display: block;
  content: "";
  top: 35%;
  right: 22px;
  width: 8px;
  height: 8px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(135deg);
  transition: all 0.3s ease-in-out;
}
#qa .accordion-container .accordion-title.open::after {
  transform: rotate(-45deg);
  top: 45%;
}
#qa .accordion-container .accordion-title::before {
  content: "Q";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  width: 30px;
  height: 25px;
  justify-content: center;
  background-color: white;
  border-radius: 100px;
  font-size: 18px;
  color: #001455;
  font-weight: 700;
  padding: 0 0 5px 0;
}
#qa .accordion-container .accordion-text {
  position: relative;
  border-left: 1px solid #DDD;
  border-right: 1px solid #DDD;
  border-bottom: 1px solid #DDD;
  display: none;
  padding: 20px 40px 20px 60px;
  background-color: white;
}
#qa .accordion-container .accordion-text::before {
  content: "A";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  width: 30px;
  height: 26px;
  justify-content: center;
  background-color: #ce1e0f;
  border-radius: 100px;
  font-size: 18px;
  color: white;
  font-weight: 700;
  padding: 0 0 4px 0;
}

#report .report-content {
  margin: 0 auto;
  padding: 0px 20px 0px;
}
#report .report-content ul {
  display: flex;
  gap: 80px 30px;
  flex-flow: wrap;
}
@media screen and (max-width: 767px) {
  #report .report-content ul {
    gap: 50px 30px;
  }
}
@media screen and (max-width: 500px) {
  #report .report-content ul {
    flex-flow: column;
  }
}
#report .report-content ul li {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  max-width: calc(33.3333333333% - 20px);
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  #report .report-content ul li {
    max-width: calc(50% - 15px);
  }
}
@media screen and (max-width: 500px) {
  #report .report-content ul li {
    max-width: 100%;
  }
}
#report .report-content ul li .report-date {
  position: absolute;
  top: 0;
  padding: 2px 7px;
  background-color: #4D4972;
  color: white;
  font-size: 16px;
  font-weight: 500;
}
#report .report-content ul li .report-img img {
  object-fit: cover;
  width: 100%;
  height: 220px;
}
#report .report-content ul li .report-title {
  color: #4D4972;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}
#report .report-content ul li .btn2 {
  position: relative;
  width: 100%;
  max-width: calc(100% - 40px);
  border: 1px solid #CCB66B;
  background-color: white;
  color: #CCB66B;
  border-radius: 0;
  display: inline-block;
  padding: 5px 20px;
  text-align: center;
  font-size: 12px;
}
#report .report-content ul li .btn2::before, #report .report-content ul li .btn2::after {
  position: absolute;
  top: 55%;
  right: 10px;
  height: 1px;
  background: #CCB66B;
  content: "";
}
#report .report-content ul li .btn2::before {
  width: 30px;
  transform: translateY(-50%);
}
#report .report-content ul li .btn2::after {
  width: 8px;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
}
#report .report-content .btn {
  position: relative;
  max-width: 460px;
  border-radius: 5px;
  padding: 10px 20px;
}
#report .report-content .btn::after {
  content: "";
  display: inline-block;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #fff;
  display: inline-block;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

@media screen and (max-width: 950px) {
  #office .office-greeting {
    flex-flow: column-reverse;
    gap: 20px;
  }
}
#office .office-greeting .office-greeting-img {
  min-width: 17%;
  line-height: 1.2;
}
@media screen and (max-width: 950px) {
  #office .office-greeting .office-greeting-img {
    margin-bottom: 10px;
  }
}
#office .office-greeting .office-greeting-img strong {
  display: inline-block;
  font-size: 13px;
  margin-bottom: 5px;
}
#office .office-greeting .office-greeting-img img {
  width: 100%;
  margin-bottom: 10px;
}
@media screen and (max-width: 950px) {
  #office .office-greeting .office-greeting-img img {
    max-width: 200px;
    width: 100%;
  }
}
#office iframe {
  width: 100%;
  height: 300px;
}

#news .news-content li {
  margin-bottom: 30px;
  padding: 0px 10px 30px 10px;
  border-bottom: 1px solid #d5d5d5;
}
#news .news-content li .news-date {
  font-size: 15px;
  color: #727272;
}
@media screen and (max-width: 767px) {
  #news .news-content li .news-date {
    font-size: 13px;
  }
}
#news .news-content li .news-info {
  margin-bottom: 10px;
  display: flex;
  gap: 15px;
  align-items: center;
  flex-flow: wrap;
}
#news .news-content li .news-info .news-cat {
  margin: 0;
}
#news .news-content li .news-info .news-cat a {
  margin: 0;
  background-color: #001455 !important;
  color: white;
  padding: 2px 20px;
  border-radius: 100px;
  font-size: 12px;
}
#news .news-content li .news-info .news-cat .report {
  background-color: transparent;
}
#news .news-content li .news-title a {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}
#news .news-content li .news-text {
  margin-bottom: 0;
}

#contact .required, #admission-form .required, #event-form .required {
  background-color: #c70000;
  color: white;
  font-size: 10px;
  margin: 10px;
  padding: 2px 8px 3px 8px;
  border-radius: 50px;
  position: relative;
  top: -3px;
  display: inline-block;
}
#contact .privacy-scrollBox, #admission-form .privacy-scrollBox, #event-form .privacy-scrollBox {
  height: 200px;
  overflow-y: scroll;
  padding: 10px;
  width: calc(100% - 20px);
  border: 1px solid #d5d5d5;
}
#contact .privacy-scrollBox br, #admission-form .privacy-scrollBox br, #event-form .privacy-scrollBox br {
  display: none;
}
#contact table, #admission-form table, #event-form table {
  width: 100%;
}
#contact table tr:nth-child(even), #admission-form table tr:nth-child(even), #event-form table tr:nth-child(even) {
  background-color: unset;
}
#contact table tr:nth-child(odd), #admission-form table tr:nth-child(odd), #event-form table tr:nth-child(odd) {
  background-color: unset;
}
#contact table th, #admission-form table th, #event-form table th {
  background-color: #f6f6f6;
}
#contact table th, #contact table td, #admission-form table th, #admission-form table td, #event-form table th, #event-form table td {
  border: 1px solid #cbcbcb;
}
#contact input, #contact textarea, #admission-form input, #admission-form textarea, #event-form input, #event-form textarea {
  padding: 6px 10px;
  outline: unset;
}
#contact textarea, #admission-form textarea, #event-form textarea {
  width: calc(100% - 20px);
}
#contact input, #admission-form input, #event-form input {
  margin: 0px 2px 10px 2px;
}
#contact input:last-child, #admission-form input:last-child, #event-form input:last-child {
  margin-bottom: 0;
}
#contact .privacy-check input, #admission-form .privacy-check input, #event-form .privacy-check input {
  margin: 0px 5px 0px 0px;
}
#contact .submit-btn, #admission-form .submit-btn, #event-form .submit-btn {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
#contact .submit-btn input, #admission-form .submit-btn input, #event-form .submit-btn input {
  margin: 0;
  width: 200px;
  background-color: #001455;
  border: 0;
  color: white;
  cursor: pointer;
  font-weight: 700;
  border-radius: 100px;
  padding: 7px 20px;
  font-size: 16px;
  letter-spacing: 5px;
  display: flex;
  justify-content: center;
}
#contact .submit-btn .send_btn2, #admission-form .submit-btn .send_btn2, #event-form .submit-btn .send_btn2 {
  display: none;
}

#event .event-content {
  max-width: 1200px;
  margin: 50px auto 0;
  padding: 0px 20px;
}
@media screen and (max-width: 950px) {
  #event .event-content {
    padding: 0px 0px;
    margin: 0;
  }
}
#event .event-content ul {
  display: flex;
  gap: 30px;
  flex-flow: wrap;
}
@media screen and (max-width: 950px) {
  #event .event-content ul {
    flex-flow: wrap;
    gap: 20px;
  }
}
#event .event-content ul li {
  max-width: calc(25% - 23px);
}
@media screen and (max-width: 950px) {
  #event .event-content ul li {
    max-width: calc(50% - 10px);
  }
}
#event .event-content ul li a:hover {
  opacity: 1;
}
#event .event-content ul li .event-img {
  overflow: hidden;
  border-radius: 10px;
  height: 250px;
  margin-bottom: 10px;
}
#event .event-content ul li .event-img:hover img {
  transform: scale(1.1);
}
@media screen and (max-width: 767px) {
  #event .event-content ul li .event-img {
    height: 150px;
  }
}
#event .event-content ul li .event-img img {
  transition: transform 0.6s ease;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#event .event-content ul li .event-title {
  font-weight: 700;
  color: #001455;
  margin: 5px 0;
}

#member .member-content .news {
  background-image: unset;
  padding: 30px 0 50px;
}
@media screen and (max-width: 950px) {
  #member .member-content .news {
    padding: 50px 0;
  }
}
#member .member-content .news h2::before {
  width: unset;
  height: unset;
  top: unset;
  background-color: unset;
}
#member .member-content .news .news-content ul li {
  border-bottom: 1px solid #d4d4d4;
  gap: 30px;
  padding: 15px 25px 15px 5px;
}
#member .member-content .news .news-content ul li .news-info {
  width: unset;
}
#member .member-content .news .news-content ul li .news-info .news-cat {
  margin: 0;
}
#member .member-content .news .news-content ul li .news-info .news-cat a {
  width: max-content;
  margin: 0;
  padding: 2px 20px;
}
#member .member-content .news .news-content ul li .news-title {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}
#member .member-content .news .news-content ul li .news-title img {
  max-width: 23px;
}
#member .member-content .report {
  background-color: white;
}
#member .member-content .report::after {
  content: unset;
}
#member .member-content .report h2::before {
  width: unset;
  height: unset;
  top: unset;
  background-color: unset;
  color: #CCB66B;
}
#member .member-content .report ul li .report-title {
  min-height: auto;
}
#member .member-content .report ul li .report-text {
  padding: 0 20px;
}
#member .member-content .report ul li .btn2 {
  width: calc(100% - 70px);
  margin: 0 auto;
}
#member .member-content .document::after {
  content: unset;
}
#member .member-content .document h2::before {
  width: unset;
  height: unset;
  top: unset;
  background-color: unset;
  color: #CCB66B;
}

#gathering .flex > div {
  max-width: calc(50% - 20px);
  width: 100%;
}
@media screen and (max-width: 767px) {
  #gathering .flex > div {
    max-width: 100%;
  }
}
#gathering .flex > div .btn3 {
  text-align: center;
}

#member-front div {
  width: 100%;
}
#member-front div .btn3 {
  margin-bottom: 20px;
}
#member-front .pass-reset a {
  text-decoration: underline;
}

#member-news .member-content .news, #bulletin .member-content .news {
  padding-bottom: 0;
  background-image: unset;
}
#member-news .member-content .news h2::before, #bulletin .member-content .news h2::before {
  width: unset;
  height: unset;
  top: unset;
  background-color: unset;
}
#member-news .member-content .news .news-content ul, #bulletin .member-content .news .news-content ul {
  margin-bottom: 0;
}
#member-news .member-content .news .news-content ul li, #bulletin .member-content .news .news-content ul li {
  border-bottom: 1px solid #d4d4d4;
  gap: 30px;
  padding: 15px 25px 15px 5px;
}
#member-news .member-content .news .news-content ul li .news-info, #bulletin .member-content .news .news-content ul li .news-info {
  width: unset;
}
#member-news .member-content .news .news-content ul li .news-title, #bulletin .member-content .news .news-content ul li .news-title {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}
#member-news .member-content .news .news-content ul li .news-title img, #bulletin .member-content .news .news-content ul li .news-title img {
  max-width: 23px;
}

#member-news .member-content .news-content .news-info .news-category {
  margin: 0;
}
#member-news .member-content .news-content .news-info .news-category a {
  margin: 0;
  background-color: #64b53b;
  color: white;
  padding: 2px 20px;
  border-radius: 100px;
  font-size: 12px;
  width: max-content;
}

#single-member-download .pdf-dl {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 auto 60px;
  justify-content: center;
  border: 1px solid #4c45ae;
  color: #4c45ae;
  border-radius: 100px;
  max-width: 300px;
  padding: 10px;
}
#single-member-download .pdf-dl img {
  max-width: 23px;
}
#single-member-download .pdf-dl p {
  margin: 0;
  display: flex;
  gap: 10px;
  color: #4c45ae;
}
#single-member-download .single-info .single-cat a {
  background-color: #64b53b;
}
#single-member-download .single-date {
  text-align: center;
  margin-bottom: 50px;
}
#single-member-download h2 {
  text-align: center;
  margin-bottom: 10px;
  border: 0;
}
#single-member-download p {
  text-align: center;
  margin-bottom: 30px;
}

.member-content .news .section-header {
  color: #CCB66B;
}
.member-content .news .news-content ul li .news-info .news-date {
  color: #000000;
}
.member-content .news .news-content ul li .news-title {
  color: #000000;
}

#admission-form table {
  margin-bottom: 50px;
  margin-top: 0;
}
#admission-form table tbody th .supplement {
  display: block;
  font-size: 11px;
  text-align: left;
  margin-top: 10px;
}
#admission-form table tbody th, #admission-form table tbody td {
  text-align: left;
}

.mw_wp_form_confirm .required, .mw_wp_form_confirm .supplement {
  display: none;
}
.mw_wp_form_confirm h2 {
  margin-top: 50px;
}
.mw_wp_form_confirm table {
  margin-top: 20px !important;
}
.mw_wp_form_confirm .submit-btn {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  gap: 20px;
}
.mw_wp_form_confirm .submit-btn input {
  margin: 0;
  width: 200px;
  background-color: #001455;
  border: 0;
  color: white;
  cursor: pointer;
  font-weight: 700;
  border-radius: 100px;
  padding: 7px 20px;
  font-size: 16px;
  letter-spacing: 5px;
  display: flex;
  justify-content: center;
}

#single-member .member-document-icon a {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  text-decoration: underline;
}
#single-member .member-document-icon a img {
  width: 30px;
}

@media screen and (max-width: 767px) {
  #single-report {
    padding-bottom: 30px;
  }
}
#single-report main .report-head-img {
  width: 100%;
  margin-bottom: 40px;
  text-align: center;
}
#single-report main .report-head-img img {
  height: auto;
  margin: 0;
  width: 80%;
  height: 560px;
}
@media screen and (max-width: 767px) {
  #single-report main .report-head-img img {
    width: 100%;
    height: 250px;
  }
}
#single-report main img {
  margin: 15px 25px 0 0;
  width: 350px;
  height: auto;
}
#single-report main .single-flex {
  display: flex;
  gap: 40px 20px;
  flex-flow: wrap;
  margin-top: 30px;
}
#single-report main .btn {
  margin-top: 50px;
}

.single-member-gathering p {
  line-height: 1.8;
}
.single-member-gathering .flex {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .single-member-gathering .flex {
    gap: 15px;
  }
}
.single-member-gathering .flex.col-1 div {
  width: 100%;
}
.single-member-gathering .flex.col-2 div {
  width: calc(50% - 15px);
}
@media screen and (max-width: 767px) {
  .single-member-gathering .flex.col-2 div {
    width: calc(50% - 8px);
  }
}
.single-member-gathering .flex.col-3 div {
  width: calc(33.3333333333% - 20px);
}
@media screen and (max-width: 767px) {
  .single-member-gathering .flex.col-3 div {
    width: calc(33.3333333333% - 10px);
  }
}
.single-member-gathering .flex.col-4 div {
  width: calc(25% - 23px);
}
@media screen and (max-width: 767px) {
  .single-member-gathering .flex.col-4 div {
    width: calc(50% - 8px);
  }
}
.single-member-gathering .flex div {
  display: flex;
  flex-flow: column;
  gap: 3px;
  width: calc(33.3333333333% - 20px);
}
@media screen and (max-width: 767px) {
  .single-member-gathering .flex div {
    width: calc(50% - 8px);
  }
}
.single-member-gathering .flex div img {
  width: 100%;
}
.single-member-gathering .flex div p {
  font-size: 12px;
  margin: 0;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .single-member-gathering .flex div p {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  .single-member-gathering .flex div p br {
    display: none;
  }
}
.single-member-gathering .btn {
  max-width: 180px;
}
@media screen and (max-width: 767px) {
  .single-member-gathering .btn {
    margin-bottom: 120px;
  }
}

#wpmem_login {
  width: 60% !important;
}
@media screen and (max-width: 767px) {
  #wpmem_login {
    width: 95% !important;
  }
}
#wpmem_login .button_div {
  text-align: left !important;
}
#wpmem_login .button_div .buttons {
  display: block;
  margin-top: 10px;
}
#wpmem_login .link-text-forgot a,
#wpmem_login .link-text-register a {
  text-decoration: underline;
  display: inline-block;
}

#wpmem_reg .button_div {
  text-align: left !important;
}

#wpmem_msg, .wpmem_msg {
  width: 100% !important;
  margin-bottom: 70px !important;
}

#wpmem_login fieldset {
  margin: 0 !important;
}
#wpmem_login fieldset legend {
  margin-bottom: 40px;
}
#wpmem_login .buttons {
  display: flex;
  max-width: max-content;
  background-color: #3B559A;
  padding: 5px 20px;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 0;
  border-radius: 5px;
  width: 100%;
  outline: unset;
}

#wpmem_login label[for=log] {
  position: relative;
}
#wpmem_login label[for=log]::after {
  position: absolute;
  content: "(メールアドレス)";
  width: max-content;
  margin-left: 10px;
  font-size: 12px;
  top: 0;
  bottom: 0;
}
#wpmem_login label[for=pwd] {
  position: relative;
}
#wpmem_login label[for=pwd]::after {
  position: absolute;
  content: "(半角英数字)";
  width: max-content;
  margin-left: 10px;
  font-size: 12px;
  top: 0;
  bottom: 0;
}

#wpmem_register_form .button_div .buttons {
  display: flex;
  max-width: max-content;
  background-color: #3B559A;
  padding: 5px 20px;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 0;
  border-radius: 5px;
  width: 100%;
  outline: unset;
}
#wpmem_register_form label[for=username] {
  position: relative;
}
#wpmem_register_form label[for=username]::after {
  position: absolute;
  content: "(登録番号半角数字8桁)";
  width: max-content;
  margin-left: 10px;
  font-size: 12px;
  top: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  #wpmem_register_form label[for=username]::after {
    top: 5px;
  }
}
#wpmem_register_form label[for=password] {
  position: relative;
}
#wpmem_register_form label[for=password]::after {
  position: absolute;
  content: "(半角英数字8文字以上)";
  width: max-content;
  margin-left: 10px;
  font-size: 12px;
  top: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  #wpmem_register_form label[for=password]::after {
    top: 5px;
  }
}

#wpmem_pwdreset_form .link-text-username {
  display: none;
}
#wpmem_pwdreset_form label[for=user] {
  position: relative;
}
#wpmem_pwdreset_form label[for=user]::after {
  position: absolute;
　content: "" ;
  width: max-content;
  margin-left: 10px;
  font-size: 12px;
  top: 0;
  bottom: 0;
}

#member-profile .page-head::after {
  background: #929292;
}
#member-profile fieldset {
  margin: 0 !important;
}
#member-profile fieldset legend {
  margin-bottom: 40px;
}
#member-profile .button_div .buttons {
  display: flex;
  max-width: max-content;
  background-color: #3B559A;
  padding: 5px 20px;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 0;
  border-radius: 5px;
  width: 100%;
  outline: unset;
}
#member-profile div ul {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  #member-profile div ul {
    flex-flow: column;
  }
}
#member-profile div ul li {
  max-width: 450px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #member-profile div ul li {
    max-width: 100%;
  }
}
#member-profile div ul li a {
  position: relative;
  height: 80px;
  border-radius: 40px;
  background: linear-gradient(45deg, #4c45ae 0%, #403999 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  margin: 0 auto;
}
#member-profile div ul li a::before, #member-profile div ul li a::after {
  position: absolute;
  top: 53%;
  right: 20px;
  height: 1px;
  background: white;
  content: "";
}
#member-profile div ul li a::before {
  width: 40px;
  transform: translateY(-50%);
}
#member-profile div ul li a::after {
  width: 8px;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
}
#member-profile + footer .ftrContent nav .member-none {
  display: block !important;
}
#member-profile + footer .ftrContent nav .member-block {
  display: none !important;
}
#member-profile label[for=pass1], #member-profile label[for=pass2] {
  position: relative;
}
#member-profile label[for=pass1]::after, #member-profile label[for=pass2]::after {
  position: absolute;
  content: "(半角英数字8文字以上)";
  width: max-content;
  margin-left: 10px;
  font-size: 12px;
  top: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  #member-profile label[for=pass1]::after, #member-profile label[for=pass2]::after {
    top: 5px;
  }
}

.popup {
  display: none;
}

.featherlight .featherlight-content {
  max-width: 700px;
  width: calc(100% - 40px);
}
.featherlight .featherlight-content .popup {
  padding: 20px 10px;
}
.featherlight .featherlight-content .popup h2 {
  position: relative;
  font-weight: 700;
  line-height: 1.3;
  padding-left: 35px;
  font-size: 20px;
  margin-bottom: 30px;
}
.featherlight .featherlight-content .popup h2::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 25px;
  height: 5px;
  background-color: #001455;
}
.featherlight .featherlight-content .popup h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #001455;
  margin-top: 30px;
}
.featherlight .featherlight-content .popup ul li {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .featherlight .featherlight-content .popup ul li {
    font-size: 13px;
  }
}

#wpmem_register_form select#division, #wpmem_reg select#division {
  display: none !important;
}

#wpmem_register_form label[for=division], #wpmem_reg label[for=division] {
  display: none;
}

.member-limited {
  text-align: center;
}

.editor-visual-editor h1::after {
  content: unset !important;
}

.components-panel__body {
  display: block !important;
}

#event-form .event-form-content {
  background-color: #f6f6f6;
  padding: 25px;
  border: 1px solid gray;
  border-radius: 5px;
  margin-bottom: 50px;
}
#event-form .event-form-content p {
  margin: 0;
}
#event-form .event-form-application h2 {
  margin-top: 50px;
}
#event-form .event-form-application table {
  margin-top: 30px;
}
#event-form .privacy-scrollBox h2 {
  margin-top: 0;
}
#event-form .event-status {
  background-color: #ffe5e3;
  padding: 15px;
}

img.fancybox-image {
  height: auto;
}

.mw_wp_form_complete p {
  text-align: center;
}

footer {
  background-color: #4d4d4d;
}
footer .ftrContent {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  footer .ftrContent {
    flex-flow: column;
  }
}
footer .ftrContent .logoImg {
  display: inline-block;
  max-width: 400px;
}
@media screen and (max-width: 767px) {
  footer .ftrContent .logoImg {
    max-width: 300px;
  }
}
footer .ftrContent p span {
  display: block;
  margin-bottom: 10px;
}
footer .ftrContent nav {
  display: flex;
  flex-flow: column;
  gap: 80px;
  align-items: baseline;
  justify-content: center;
  margin-top: 50px;
  flex-flow: wrap;
}
@media screen and (max-width: 767px) {
  footer .ftrContent nav {
    gap: 30px;
    justify-content: flex-start;
    max-width: 510px;
    margin: 30px auto 0;
  }
}
footer .ftrContent nav ul {
  display: flex;
  flex-flow: column;
  gap: 10px;
}
footer .ftrContent nav ul li a {
  position: relative;
  font-size: 15px;
  display: flex;
  align-items: center;
  padding-left: 15px;
  color: white;
}
@media screen and (max-width: 767px) {
  footer .ftrContent nav ul li a {
    font-size: 13px;
  }
}
footer .ftrContent nav ul li a::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 18px;
  background-color: #fcdf01;
  left: 0;
  background-size: cover;
}
footer .ftrContent nav ul li div {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}
footer .ftrContent nav ul li div span a {
  padding-left: 30px;
  margin-bottom: 8px;
}
footer .ftrContent nav ul li div span a::before {
  background-color: unset;
}
footer .copyright {
  padding: 10px 0;
  background: #000000;
}
footer .copyright p {
  text-align: center;
  font-size: 10px;
  letter-spacing: 1px;
  color: #fff;
}

.member-block {
  display: block;
}/*# sourceMappingURL=style.css.map */