@charset "UTF-8";

html {
  scroll-behavior: smooth;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  letter-spacing: 0.03rem;
  line-height: 1.8;
  font-weight: 400;
}
/* 記事ページのタイトルパーツとメイン画像の余白調整　※ !importantがないと効かない */
.clearfix {
margin-top: 2% !important;
}
/* 記事ページのヘッダーとの余白調整 */
.container {
margin: 150px auto 0;
}
/* スマホでの記事ページのヘッダーとの余白調整 */
@media screen and (max-width: 767px) {
.container {
margin:100px auto 0;
}
}
/* 記事一覧ページのヘッダーとの余白調整 */
.articleList {
margin-top:100px;
}
#rightArea {
margin-top:100px;
}
/* 記事内の画像にtext-alignを利かせるためのcss */
#articleArea img {
display: inline-block;
}

.br-sm {
  display: none;
}
@media screen and (max-width: 767px) {
  .br-sm {
    display: block;
  }
}

body {
  background-image: url(../../img/bg.webp);
  color: #2E2E2E;
}

header {
  background-color: #fff;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  font-size: 1.4rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  filter: drop-shadow(0 4px 10px rgba(217, 217, 217, 0.5));
}
@media screen and (max-width: 767px) {
  header {
    padding: 20px 10px;
    justify-content: center;
    height: 60px;
  }
}
header img {
  max-width: 425px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1200px) {
  header img {
    width: 80%;
    height: auto;
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  header img {
    width: 60%;
    margin: 0;
    margin-left: 10px;
  }
}
@media screen and (max-width: 1023px) {
  header .gl-nav {
    display: none;
  }
}
header .gl-nav ul {
  width: 600px;
  height: 55px;
  border-radius: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  background-color: #fff;
  filter: drop-shadow(0 0 20px rgba(2, 31, 177, 0.2));
}
header .gl-nav ul li a {
  transition: ease-in-out 0.1s;
  font-weight: 500;
}
header .gl-nav ul li a:hover {
  color: #021EB1;
  text-shadow: 1px 1px 3px #b2bce6;
  transition: ease-in-out 0.1s;
}
header .gl-nav ul .gl-nav-list {
  position: relative;
  transition: all 0.3s;
}
header .gl-nav ul .gl-nav-list .dropdown-lists {
  visibility: hidden;
  opacity: 0;
  width: auto;
  height: 100px;
  position: absolute;
  top: 40px;
  left: -70px;
  transition: all 0.3s;
  display: flex;
  /* 追加 */
  flex-direction: column;
  /* 縦並びを強制 */
  gap: 0;
}
header .gl-nav ul .gl-nav-list .dropdown-lists::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-bottom: 5px solid #fff;
  border-top: 0;
}
header .gl-nav ul .gl-nav-list .dropdown-lists .dropdown-list {
  background-color: #fff;
  width: 200px;
  height: 60px;
  transition: all 0.3s;
  position: relative;
  display: block;
}
header .gl-nav ul .gl-nav-list .dropdown-lists .dropdown-list:not(:first-child)::before {
  content: "";
  width: 90%;
  height: 2px;
  background-color: #021EB1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
}
header .gl-nav ul .gl-nav-list .dropdown-lists .dropdown-list:hover {
  color: #021EB1;
  transition: all 0.3s;
}
header .gl-nav ul .gl-nav-list .dropdown-lists .dropdown-list a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 200px;
  height: 60px;
  text-align: left;
  padding-left: 20px;
  color: #2E2E2E;
  text-decoration: none;
  position: relative;
}
header .gl-nav ul .gl-nav-list .dropdown-lists .dropdown-list a:hover {
  color: #021EB1;
}
header .gl-nav ul .gl-nav-list:hover .dropdown-lists {
  visibility: visible;
  opacity: 1;
  transition: all 0.3s;
}
header .ham-box {
  display: none;
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 1023px) {
  header .ham-box {
    display: block;
    position: relative;
    width: 60px;
    height: 60px;
  }
}
header .ham-box .menu {
  /* 閉じる用の薄黒カバー */
  /* 中身 */
  /* チェックが入ったらもろもろ表示 */
  /* 中身を表示（スライド） */
  position: absolute;
  cursor: pointer;
}
header .ham-box .menu .nav-unshown {
  display: none;
}
header .ham-box .menu .menu-btn {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  header .ham-box .menu .menu-btn {
    position: absolute;
    top: -20px;
    right: -5px;
  }
}
header .ham-box .menu .menu-btn span,
header .ham-box .menu .menu-btn span:before,
header .ham-box .menu .menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 30px;
  border-radius: 3px;
  background-color: #021EB1;
  position: absolute;
  transition: all 0.5s;
  z-index: 999;
}
header .ham-box .menu .menu-btn span:before {
  bottom: 10px;
  transition: all 0.5s;
  z-index: 999;
}
header .ham-box .menu .menu-btn span:after {
  top: 10px;
  transition: all 0.5s;
  z-index: 999;
}
header .ham-box .menu #nav-input:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);
  /*メニューオープン時は真ん中の線を透明にする*/
}
header .ham-box .menu #nav-input:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
  background-color: #fff;
  z-index: 999;
  transition: all 0.5s;
}
header .ham-box .menu #nav-input:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
  background-color: #fff;
  z-index: 999;
  transition: all 0.5s;
}
header .ham-box .menu #nav-input {
  display: none;
}
header .ham-box .menu #nav-close {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  display: none;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
}
header .ham-box .menu #sp-navi-in {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  width: 30%;
  height: 100vh;
  overflow: auto;
  background-color: rgba(2, 30, 177, 0.9);
  transition: 0.3s ease-in-out;
  transform: translateX(105%);
}
@media screen and (max-width: 1023px) {
  header .ham-box .menu #sp-navi-in {
    width: 70%;
    height: 100vh;
    transform: translate(105%);
  }
}
header .ham-box .menu #sp-navi-in .ham-main-menu {
  padding: 100px 10px 30px;
}
header .ham-box .menu #sp-navi-in .ham-main-menu li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
  padding: 10px;
}
header .ham-box .menu #sp-navi-in .ham-main-menu li .ham-main-menu-a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #fff;
  text-decoration: none;
  padding: 5px 15px 5px 0;
  position: relative;
}
header .ham-box .menu #sp-navi-in .ham-main-menu li .ham-main-menu-a:before {
  content: "";
  width: 9px;
  height: 7px;
  border-left: solid 2px #ffffff;
  transform: rotate(90deg);
  position: absolute;
  right: 11px;
  top: 22px;
}
@media screen and (max-width: 500px) {
  header .ham-box .menu #sp-navi-in .ham-main-menu li .ham-main-menu-a:before {
    right: 11px;
  }
}
header .ham-box .menu #sp-navi-in .ham-main-menu li .ham-main-menu-a:after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 19px;
}
header .ham-box .menu #sp-navi-in .ham-nolosee li .ham-main-menu-a {
 text-align:left;
}
@media screen and (max-width: 500px) {
  header .ham-box .menu #sp-navi-in .ham-main-menu li .ham-main-menu-a:after {
    right: 11px;
  }
}
header .ham-box .menu #sp-navi-in .ham-main-menu li .sub-menu {
  display: flex;
  color: #fff;
  gap: 20px;
}
header .ham-box .menu #sp-navi-in .ham-nolosee li .sub-menu a:link {
  color: #fff;
}
header .ham-box .menu #sp-navi-in .ham-nolosee li .sub-menu a:visited {
  color: #fff;
}
@media screen and (max-width: 500px) {
  header .ham-box .menu #sp-navi-in .ham-main-menu li .sub-menu {
    display: block;
  }
}
header .ham-box .menu #sp-navi-in .ham-main-menu li .sub-menu li {
  border-bottom: unset;
  position: relative;
}
header .ham-box .menu #sp-navi-in .ham-nolosee li .sub-menu li {
  text-align:left;
}
header .ham-box .menu #sp-navi-in .ham-main-menu li .sub-menu li:before {
  content: "";
  width: 9px;
  height: 7px;
  border-left: solid 2px #ffffff;
  transform: rotate(90deg);
  position: absolute;
  right: -5px;
  top: 22px;
}
@media screen and (max-width: 500px) {
  header .ham-box .menu #sp-navi-in .ham-main-menu li .sub-menu li:before {
    right: 11px;
  }
}
header .ham-box .menu #sp-navi-in .ham-main-menu li .sub-menu li:after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: -5px;
  top: 19px;
}
@media screen and (max-width: 500px) {
  header .ham-box .menu #sp-navi-in .ham-main-menu li .sub-menu li:after {
    right: 11px;
  }
}
header .ham-box .menu #sp-navi-in .ham-main-menu li .sub-menu li .br-350 {
  display: none;
}
@media screen and (max-width: 350px) {
  header .ham-box .menu #sp-navi-in .ham-main-menu li .sub-menu li .br-350 {
    display: block;
  }
}
@media screen and (max-width: 350px) {
  header .ham-box .menu #sp-navi-in .ham-main-menu li .sub-menu .sub-menu-flow:before {
    top: 35px;
  }
}
@media screen and (max-width: 350px) {
  header .ham-box .menu #sp-navi-in .ham-main-menu li .sub-menu .sub-menu-flow:after {
    top: 32px;
  }
}
header .ham-box .menu #nav-input:checked ~ #nav-close {
  display: block;
}
header .ham-box .menu #nav-input:checked ~ #sp-navi-in {
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
  transform: translate(0%);
}
@media screen and (max-width: 1023px) {
  header .ham-box .menu {
    position: fixed;
    top: 20px;
    right: 20px;
  }
  header .ham-box .menu:before {
    background-color: #021EB1;
    border: #000 1px solid;
  }
}

footer {
  margin-top: 150px;
  background: url(../../img/bg-footer.webp);
  background-size: cover;
  padding: 50px 0 30px;
}
footer .sec--contact {
  max-width: 1080px;
  padding: 50px 0 55px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
footer .sec--contact .box-text p {
  color: #fff;
  font-weight: 400;
  word-break: keep-all;
line-height:1.8;
}
footer .sec--contact .box-text .box-head {
  margin-bottom: 20px;
text-align:left;
}
@media screen and (max-width: 767px) {
footer .sec--contact .box-text .box-head {
text-align:center;
}
}

footer .sec--contact .box-text .box-head img {
  margin-bottom: 20px;
max-width:186px;
max-height:40px;
 width:100%;
height:auto;
}
footer .sec--contact .box-text .box-head p {
  margin-top: 5px;
}
footer .sec--contact .box-btn {
  display: flex;
  justify-content: center;
  gap: 40px;
}
footer .sec--contact .box-btn p {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-weight: 500;
  font-size: 2.4rem;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  width: 300px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  transition: ease-in 0.2s;
}
footer .sec--contact .box-btn p a {
  font-size: 2.4rem;
  transition: ease-in 0.2s;
}
footer .sec--contact .box-btn p a i {
  color: #021EB1;
  font-size: 1.8rem;
}
footer .sec--contact .box-btn p a span {
  font-size: 1.3rem;
  color: #021EB1;
}
footer .sec--contact .box-btn p:hover {
  background-color: #D5F3FF;
  transition: ease-in 0.2s;
}
footer .sec--contact .box-btn .btn-contact {
  position: relative;
  padding-right: 45px;
}
footer .sec--contact .box-btn .btn-contact:after {
  content: "";
  width: 27px;
  height: 27px;
  background: url(../../img/img-arrow.webp);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 27px;
  right: 26px;
}
footer .sec--contact .box-btn .btn-contact a {
  font-size: 1.6rem;
}
@media screen and (max-width: 1080px) {
  footer .sec--contact {
    display: block;
    margin: 0 auto;
    text-align: center;
  }
  footer .sec--contact .box-text {
    margin-bottom: 40px;
  }
  footer .sec--contact .box-text img {
    margin: 0 auto;
  }
  footer .sec--contact .box-btn button {
    margin: 0;
    display: block;
  }
}
@media screen and (max-width: 1080px) and (max-width: 650px) {
  footer .sec--contact .box-btn {
    display: block;
  }
  footer .sec--contact .box-btn button {
    margin: 20px auto;
  }
}
footer .box-footer {
  max-width: 1200px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 65px 0;
  color: #021EB1;
}
@media screen and (max-width: 1200px) {
  footer .box-footer {
    width: 90%;
    padding: 65px 20px;
  }
}
footer .box-footer .box-footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1080px) {
  footer .box-footer .box-footer-inner {
    display: block;
    text-align: center;
    margin: 0 auto;
  }
}
footer .box-footer .box-footer-inner .box-info {
  font-size: 1.5rem;
  line-height: 2;
}
footer .box-footer .box-footer-inner .box-info img {
  mix-blend-mode: multiply;
}
footer .box-footer .box-footer-inner .box-info .nolosee-address {
  margin-top: 10px;
text-align: left;
}
@media screen and (max-width: 1080px) {
  footer .box-footer .box-footer-inner .box-info img {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 425px;
    width: 100%;
    height: auto;
  }
  footer .box-footer .box-footer-inner .box-info p {
    word-break: keep-all;
    margin: 20px auto;
  }
footer .box-footer .box-footer-inner .box-info .nolosee-address {
    margin-top:20px;
  }
}
footer .box-footer .box-footer-inner .box-footer-list {
  max-width: 440px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1080px) {
  footer .box-footer .box-footer-inner .box-footer-list {
    margin: 40px auto 0;
    text-align: left;
    font-size: 1.4rem;
  }
}
footer .box-footer .box-footer-inner .box-footer-list .nolosee-ul {
  padding: 10px 0;
  font-weight: 500;
text-align: left;
}
footer .box-footer .box-footer-inner .box-footer-list .nolosee-ul li a:link {
color: #021EB1;
}
footer .box-footer .box-footer-inner .box-footer-list .nolosee-ul li a:visited {
color: #021EB1;
}
footer .box-footer .box-footer-inner .box-footer-list ul li {
  padding: 10px 0;
  font-weight: 500;
}
footer .box-footer .box-footer-inner .box-footer-list ul li .list-rec {
  padding-top: 10px;
}
footer .box-footer .box-footer-inner .box-footer-list ul li .nolosee-list-rec {
  text-align:left;
}
footer .box-footer .box-footer-inner .box-footer-list ul li .list-rec li {
  padding: 10px 0;
  text-indent: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  footer .box-footer .box-footer-inner .box-footer-list {
    display: block;
    margin: 0 auto;
  }
  footer .box-footer .box-footer-inner .box-footer-list ul {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
}
footer .copy {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  margin-top: 30px;
  background-color: #021EB1;
  text-align: center;
  color: #fff;
  padding: 15px;
  font-size: 1.2rem;
  font-weight: 400;
line-height:1.8;
}