@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  overflow-x: hidden;
  word-break: break-all;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
@media (max-width: 750px) {
  body {
    font-size: 1.4rem;
  }
}

section {
  display: block;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.wrap {
  max-width: 1350px;
  width: 90%;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: #000;
  transition: 0.2s ease-in-out;
}
a:hover {
  color: #DD8800 !important;
}
a img {
  transition: 0.2s ease-in-out;
}
a img:hover {
  opacity: 0.7;
}

@media (min-width: 1150px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

img {
  width: 100%;
  vertical-align: top;
}

p {
  line-height: 2;
  font-size: 1em;
}
@media (max-width: 999px) {
  p {
    font-size: 1em;
  }
}

h1 {
  font-size: 1em;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 999px) {
  h1 {
    margin: 0;
  }
}

h2, h3, h4 {
  margin: 0;
  padding: 0;
  border: none;
}

h2 {
  font-size: 3.2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

h3 {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media (max-width: 750px) {
  h3 {
    font-size: 2.6rem;
  }
}

h4 {
  font-size: 2.4rem;
  color: #00278c;
  font-weight: 700;
}

ul {
  list-style: none;
}

.full-width {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.pc {
  display: block !important;
}
@media (max-width: 750px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media (max-width: 750px) {
  .sp {
    display: block !important;
  }
}

.ttl-area {
  text-align: center;
}
.ttl-area .en {
  font-family: "Noto Serif JP", serif;
  margin-bottom: 35px;
  font-size: 1.4rem;
}
.ttl-area h2 {
  margin-bottom: 20px;
  font-weight: 300;
  letter-spacing: 0.5rem;
}
.ttl-area img {
  width: 80px;
  margin-bottom: 40px;
}

dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 960px;
  margin: 20px auto 40px;
}
dl dt {
  width: 30%;
  padding: 32px 0;
  margin-bottom: 6px;
  background-color: #06436C;
  color: #fff;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 750px) {
  dl dt {
    width: 100%;
    padding: 20px 0;
  }
}
dl dd {
  width: 66%;
  padding: 32px 2%;
  margin-bottom: 6px;
  background-color: #fff;
}
dl dd:nth-child(4n) {
  background-color: #E9F1F7;
}
@media (max-width: 750px) {
  dl dd {
    width: 100%;
    padding: 32px 5%;
  }
}

.heading-area {
  background-color: #06436C;
  height: 250px;
  position: relative;
}
.heading-area h1 {
  position: absolute;
  color: #fff;
  font-size: 3.2rem;
  letter-spacing: 0.1rem;
  font-weight: 300;
  left: 5%;
  bottom: 25%;
}

.breadcrumb {
  padding: 20px 0.5rem;
  font-size: 1.4rem;
}
.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb ul li:not(:last-child)::after {
  display: inline-block;
  margin: 0 0.25rem;
  content: ">";
}

.contents-area {
  max-width: 1000px;
  margin: 40px auto 80px;
}
.contents-area .news-info {
  margin: 10px 0;
}
.contents-area .news-info .cat {
  font-size: 1.4rem;
  margin: 0 0 0 10px;
  padding: 2px 16px;
  color: #06436C;
  border: 1px solid #06436C;
  border-radius: 20px;
}

.btn-area {
  position: relative;
  max-width: 300px;
  margin: 40px auto 0;
}
.btn-area .btn {
  text-align: center;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  display: block;
  background-color: #06436C;
  border: 1px solid #06436C;
  border-radius: 4px;
  padding: 12px 40px;
  text-decoration: none;
  color: #fff;
  position: relative;
  transition: 0.2s ease-in-out;
}
.btn-area .btn::after {
  position: absolute;
  content: "";
  width: 26px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: 14px 6px;
  background-size: 12px 11px;
  transition: 0.2s ease-in-out;
}
.btn-area .btn:hover {
  background-color: #fff;
  color: #06436C !important;
}

#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 40px;
  bottom: 20px;
  background: #06436C;
  border-radius: 50%;
  border: 1px solid #fff;
  z-index: 100;
}
@media (max-width: 750px) {
  #page_top {
    right: 6px;
  }
}

#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}

#page_top a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  content: "\f106";
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/*--------footer-----------*/
footer {
  text-align: center;
  background-color: #06436C;
  padding: 120px 0;
  color: #fff;
}
@media (max-width: 750px) {
  footer {
    padding: 80px 0;
  }
}
footer .footer-logo {
  max-width: 364px;
}
@media (max-width: 750px) {
  footer .footer-logo {
    max-width: 260px;
  }
}
footer .address-area {
  margin: 20px 0 40px;
}

/*--------header-----------*/
#top-head {
  border-top: 10px solid #fff;
  width: 100%;
}
@media (max-width: 750px) {
  #top-head {
    border-top: 4px solid #fff;
  }
}
#top-head .head-wrap {
  width: 100%;
  height: 93px;
  margin: 0 auto;
  display: flex;
  z-index: 999;
  position: relative;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 750px) {
  #top-head .head-wrap {
    height: 49px;
    align-items: flex-start;
  }
}
#top-head .head-wrap .contact {
  top: -10px;
  position: relative;
  font-size: 1.4rem;
}
@media (max-width: 750px) {
  #top-head .head-wrap .contact {
    display: none;
  }
}
#top-head .head-wrap .contact a {
  text-align: center;
  background-color: #DD8800;
  display: block;
  width: 114px;
  height: 114px;
  position: relative;
  border-bottom-left-radius: 5px;
  transition: all 0.3s ease;
}
#top-head .head-wrap .contact a span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 114px;
}
#top-head .head-wrap .contact a:hover {
  color: #fff;
  background-color: #06436C;
}
#top-head a {
  color: #fff;
  text-decoration: none;
}
#top-head .inner {
  position: relative;
}
#top-head .logo {
  float: left;
  background-color: #fff;
  padding: 10px 0 0 10px;
  height: 83px;
}
@media (max-width: 750px) {
  #top-head .logo {
    width: 220px;
    height: auto;
    padding: 10px 0 6px 10px;
  }
}
#top-head .logo .head-logo {
  display: block;
  margin: auto;
}
@media (min-width: 1150px) {
  #top-head .logo .head-logo {
    width: 340px;
  }
}
@media (max-width: 750px) {
  #top-head .logo .head-logo {
    width: 220px;
  }
}
#top-head .header-t {
  width: 154px;
  height: 93px;
}
@media (max-width: 750px) {
  #top-head .header-t {
    width: 84px;
    height: auto;
  }
}

#global-nav {
  margin-left: auto;
}
@media (max-width: 750px) {
  #global-nav {
    display: block;
  }
}
@media (max-width: 999px) {
  #global-nav {
    display: block;
    position: fixed;
    /* 開いてないときは画面外に配置 */
    top: 62px;
    left: 100%;
    background: #fff;
    width: 265px;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
}
#global-nav ul {
  list-style: none;
  position: relative;
  right: 0;
  top: -10px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 850px;
}
@media (max-width: 999px) {
  #global-nav ul {
    position: relative;
    display: block;
    right: 0;
    bottom: 0;
    width: 265px;
  }
}
#global-nav ul li {
  margin: auto;
}
@media (max-width: 999px) {
  #global-nav ul li {
    float: none;
    position: static;
    padding: 0;
    color: #fff;
    border-bottom: 1px dotted #fff;
  }
}
#global-nav ul li:first-child a {
  padding-left: 0;
}
@media (max-width: 999px) {
  #global-nav ul li:first-child a {
    padding-left: 20px;
  }
}
#global-nav ul li a {
  padding: 0px;
  margin: 0 15px;
  position: relative;
  display: inline-block;
}
@media (max-width: 1150px) {
  #global-nav ul li a {
    padding: 0px 10px;
  }
}
@media (max-width: 999px) {
  #global-nav ul li a {
    width: 100%;
    display: block;
    color: #fff;
    padding: 18px 20px;
  }
}
#global-nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  background-color: #DD8800;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#global-nav ul li a:hover::after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

/*--------固定化されたときのCSS-----------*/
#top-head.fixed {
  position: fixed;
  z-index: 999;
  background: rgba(6, 67, 108, 0.8);
  transition: top 0.65s ease-in;
  -webkit-transition: top 0.65s ease-in;
  -moz-transition: top 0.65s ease-in;
}

/*-----------スマホのトグルボタンのCSS-------------*/
#nav-toggle {
  display: none;
  position: absolute;
  width: 38px;
  height: 38px;
  padding: 0px 20px 20px;
  right: 0px;
  top: 0px;
  cursor: pointer;
  z-index: 999;
}
@media (max-width: 999px) {
  #nav-toggle {
    display: block;
  }
}
#nav-toggle div {
  position: relative;
}
#nav-toggle span {
  display: block;
  position: absolute;
  margin-top: 10px;
  height: 2px;
  width: 100%;
  background: #fff;
  left: 0;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 7px;
}
#nav-toggle span:nth-child(3) {
  top: 14px;
}
#nav-toggle .menu {
  position: relative;
  top: 26px;
  font-size: 1.2rem;
  color: #fff;
}
#nav-toggle .menu::after {
  content: "MENU";
}

@media (max-width: 999px) {
  .head-inner {
    display: none;
  }
}

/* #nav-toggle 切り替えアニメーション */
.open #nav-toggle {
  background-color: #06436C;
}
.open #nav-toggle span {
  margin-top: 0;
  background: #fff !important;
}
@media (max-width: 999px) {
  .open #nav-toggle span:nth-child(1) {
    top: 17px;
    -webkit-transform: rotate(325deg);
    -moz-transform: rotate(325deg);
    transform: rotate(325deg);
  }
}
@media (max-width: 999px) {
  .open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
}
@media (max-width: 999px) {
  .open #nav-toggle span:nth-child(3) {
    top: 17px;
    -webkit-transform: rotate(-325deg);
    -moz-transform: rotate(-325deg);
    transform: rotate(-325deg);
  }
}
.open #nav-toggle .menu {
  color: #fff;
}
.open #nav-toggle .menu::after {
  content: "閉じる";
}
.open #global-nav {
  /* #global-nav top + #mobile-head height */
}
@media (max-width: 999px) {
  .open #global-nav {
    -moz-transform: translateX(-265px);
    -webkit-transform: translateX(-265px);
    transform: translateX(-265px);
    background-color: #06436C;
  }
}
@media (max-width: 999px) {
  .open #mobile-head {
    transition: top 0.65s ease-in;
    -webkit-transition: top 0.65s ease-in;
    -moz-transition: top 0.65s ease-in;
    width: 100%;
    z-index: 999;
    position: relative;
  }
}

header {
  position: fixed;
  z-index: 100;
}

.main-visual {
  height: 100vh;
  position: relative;
}
@media (max-width: 750px) {
  .main-visual {
    height: 90vh;
  }
}
.main-visual .head-img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
@media (max-width: 750px) {
  .main-visual .head-img {
    height: 90vh;
  }
}
.main-visual::after {
  content: "";
  background-color: #143953;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  opacity: 0.7;
  z-index: 2;
}
.main-visual .head-mark {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
}
@media (max-width: 750px) {
  .main-visual .head-mark {
    width: 200px;
  }
}
.main-visual .txt-area {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
}
.main-visual .txt-area .copy-text {
  font-size: 4rem;
  letter-spacing: 0.5rem;
  line-height: 1.5;
  margin-bottom: 40px;
}
@media (max-width: 750px) {
  .main-visual .txt-area .copy-text {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.main-visual .txt-area .en {
  font-size: 1.2rem;
}

.greeting-area {
  padding: 80px 0 0;
  color: #fff;
  background-image: url(../img/greeting-bg.jpg);
  background-size: cover;
  min-height: 950px;
}
.greeting-area h3 {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  margin: 0 0 40px;
}
.greeting-area .txt {
  max-width: 750px;
  margin: 0 auto 32px;
}
.greeting-area .footer {
  margin: 40px 0 0 0;
}

.activities-area {
  background-color: #E9F1F7;
  padding: 80px 0;
}
.activities-area .activities-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 40px;
  min-height: 258px;
}
@media (max-width: 750px) {
  .activities-area .activities-block {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.activities-area .activities-block__figure {
  position: relative;
  min-height: 258px;
}
.activities-area .activities-block__figure::after {
  content: "";
  border-radius: 5px;
  background-color: #143953;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  opacity: 0.7;
  z-index: 2;
}
.activities-area .activities-block__figure img {
  border-radius: 5px;
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.activities-area .activities-block__figure h3 {
  position: absolute;
  color: #fff;
  border: 1px solid #fff;
  padding: 14px;
  font-size: 2rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
@media (max-width: 750px) {
  .activities-area .activities-block__figure h3 {
    text-align: center;
    width: 80%;
  }
}
.activities-area .activities-block__txt ul li {
  margin-bottom: 10px;
}
.activities-area .heading-wrapper {
  text-align: center;
}
.activities-area .schedule {
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 400;
  position: relative;
  display: inline-block;
  padding: 0 55px;
  margin: 40px auto 0;
  text-align: center;
  color: #06436C;
}
.activities-area .schedule:before, .activities-area .schedule:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 1px;
  background-color: #06436C;
}
.activities-area .schedule:before {
  left: 0;
}
.activities-area .schedule:after {
  right: 0;
}
.activities-area dl {
  margin: 40px auto;
}
.activities-area dl dt {
  padding: 24px 0;
}
.activities-area dl dd {
  padding: 24px 2%;
}
.activities-area dl dd:nth-child(4n) {
  background-color: #fff;
}

.news-area {
  background-color: #06436C;
  padding: 80px 0;
  color: #fff;
}
.news-area .news-list {
  max-width: 900px;
  margin: 40px auto;
}
.news-area .news-list li {
  border-bottom: 1px solid #fff;
  margin: 40px 0;
}
.news-area .news-list li .cat {
  font-size: 1.4rem;
  margin: 0 0 0 10px;
  padding: 2px 16px;
  border: 1px solid #fff;
  border-radius: 20px;
}
.news-area .news-list li h3 {
  font-size: 1.6rem;
  font-weight: 500;
  padding: 10px 0;
  letter-spacing: 0.1rem;
}
.news-area .news-list li h3 a {
  color: #fff;
}

.legal-area {
  padding: 120px 0;
}
.legal-area .txt {
  max-width: 750px;
  margin: 0 auto 32px;
}
.legal-area .txt span {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  text-align: center;
  margin: 32px 0 0 0;
}

.list-area {
  background-color: #E9F1F7;
  padding: 80px 0;
}

.organization-area {
  padding: 120px 0;
}
.organization-area .heading-wrapper {
  text-align: center;
}
.organization-area h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 400;
  position: relative;
  display: inline-block;
  padding: 0 55px;
  margin: 40px auto 0;
  text-align: center;
  color: #06436C;
}
.organization-area h3:before, .organization-area h3:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 1px;
  background-color: #06436C;
}
.organization-area h3:before {
  left: 0;
}
.organization-area h3:after {
  right: 0;
}
.organization-area table {
  max-width: 960px;
  width: 100%;
  margin: 40px auto 0;
}
.organization-area table tr td {
  padding: 32px 0;
}
.organization-area table tr .position {
  width: 30%;
  text-align: center;
  font-weight: 700;
}
.organization-area table tr .name {
  width: 66%;
  text-align: center;
}
.organization-area table tr:nth-child(2n) {
  background-color: #E9F1F7;
}

.membership-area {
  background-color: #E9F1F7;
  padding: 120px 0;
}
.membership-area .wrap {
  max-width: 750px;
}
.membership-area .wrap .membership-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 40px auto;
  max-width: 600px;
}
@media (max-width: 750px) {
  .membership-area .wrap .membership-block {
    grid-template-columns: repeat(1, 1fr);
  }
}
.membership-area .wrap .membership-block__list h3 {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 2.4rem;
}
.membership-area .wrap .membership-block__list p {
  text-align: center;
  margin-bottom: 20px;
}
.membership-area .wrap .membership-block__list:first-child {
  border-right: 1px solid #000;
}
@media (max-width: 750px) {
  .membership-area .wrap .membership-block__list:first-child {
    padding-bottom: 40px;
    border-right: none;
    border-bottom: 1px solid #000;
  }
}
.membership-area .wrap .loss-area {
  background-color: #fff;
  border-radius: 5px;
  padding: 20px 40px;
}
@media (max-width: 750px) {
  .membership-area .wrap .loss-area {
    padding: 20px;
  }
}
.membership-area .wrap .loss-area h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-area {
  background-image: url(../img/contact-bg.jpg);
  background-size: cover;
  padding: 120px 0;
  position: relative;
}
.contact-area::after {
  content: "";
  background-color: #143953;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  opacity: 0.6;
  z-index: 2;
}
.contact-area .wrap {
  position: relative;
  z-index: 3;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
  max-width: 900px;
  padding: 80px;
}
@media (max-width: 750px) {
  .contact-area .wrap {
    padding: 20px;
  }
}
.contact-area .wrap .txt {
  max-width: 700px;
  margin: 0 auto;
}
.contact-area .wrap .tel-area {
  text-align: center;
  margin: 40px 0 0 0;
}
.contact-area .wrap .tel-area .tel {
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
  width: 300px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .contact-area .wrap .tel-area .tel {
    font-size: 3rem;
  }
}
.contact-area .wrap .tel-area .tel a {
  color: #06436C;
}
.contact-area .wrap .tel-area .tel::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -54px;
  background-image: url(../img/contact-mark_tel.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 24px;
  border: 1px solid #06436C;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
@media (max-width: 750px) {
  .contact-area .wrap .tel-area .tel::before {
    top: -12px;
    left: -24px;
  }
}
.contact-area .wrap .tel-area .name {
  color: #06436C;
  font-size: 1.4rem;
}
/*# sourceMappingURL=sourcemaps/style.css.map */
