@charset "UTF-8";
* {
  margin: 0px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

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

body {
  font-family: "游ゴシック体";
}
@media screen and (min-width: 600px) {
  body {
    min-width: 1020px;
  }
}

.container {
  width: 90%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 599px) {
  .sp-container {
    width: 100%;
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
  }
}

.header {
  font-family: "YuGothic", "Yu Gothic Regular", "Yu Gothic", "Meiryo", sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 10000;
  width: 100%;
  height: 90px;
  background-color: white;
  transition: all 0.1s;
}
.header.scroll-nav {
  background-color: white;
  box-shadow: 0px 12px 24px rgba(153, 189, 234, 0.32);
  height: 90px;
  transition: all 0.3s;
}
@media screen and (max-width: 599px) {
  .header {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  .header {
    min-width: 1020px;
  }
}
.header .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}
.header .navbar .header-logo img {
  width: 180px;
  vertical-align: top;
}
.header .navbar nav {
  height: 100%;
  display: flex;
  align-items: center;
}
.header .navbar nav ul {
  font-weight: bold;
  display: flex;
  font-size: 14px;
  height: 100%;
}
.header .navbar nav ul li {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  cursor: pointer;
  height: 100%;
  font-family: "游ゴシック体";
}
.header .navbar nav ul li .nav-title {
  color: black;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0px 20px;
}
.header .navbar nav ul li .nav-title::after {
  content: "";
  background-color: #133d85;
  height: 8px;
  width: 8px;
  position: absolute;
  bottom: 25%;
  left: calc(50% - 4px);
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  /*アニメーションの速度設定*/
  -webkit-transition: all 0.3s ease;
  transition: all 0.6s ease;
}
.header .navbar nav ul li .nav-title:hover::after {
  opacity: 1;
  /*0位置に移動*/
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.header .navbar nav ul li ul {
  position: absolute;
  width: 100%;
  bottom: -90px;
  left: 0;
  height: 90px;
  padding: 0;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  -webkit-transform: translateY(10%);
  transform: translateY(10%);
  background-color: #041733;
}
.header .navbar nav ul li ul li {
  color: white;
}
.header .navbar nav ul li ul li a {
  color: white !important;
  margin: 0 20px;
}
.header .navbar nav ul li ul li::after {
  content: "→";
  background-color: white;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  color: #004eca;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 6px;
  margin-left: 10px;
}
.header .navbar nav ul li:hover ul {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.header .navbar nav ul li.nav-enter-button {
  width: 97px;
  height: height;
  border-radius: 4px;
  color: initial;
  cursor: initial;
  margin-left: 20px;
}
.header .navbar nav ul li.nav-enter-button img {
  width: 100%;
  height: 33px;
  cursor: pointer;
}

.header-sp {
  font-family: "游ゴシック体";
  height: 60px;
  position: fixed;
  top: 0;
  z-index: 10000;
  width: 100%;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10000;
}
@media screen and (min-width: 600px) {
  .header-sp {
    display: none;
  }
}
.header-sp .header-sp-logo {
  margin-left: 12px;
}
.header-sp .header-sp-logo img {
  width: 120px;
}
.header-sp .header-sp-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-sp .header-sp-buttons .header-sp-button-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 60px;
  background-color: #004eca;
  color: white;
  letter-spacing: 0.1em;
  position: relative;
  /*ボタン内側*/
  /*activeクラスが付与されると線が回転して×になる*/
}
.header-sp .header-sp-buttons .header-sp-button-1 .entry-text {
  transition: all 0.4s;
  font-family: "EB Garamond";
}
.header-sp .header-sp-buttons .header-sp-button-1 .entry-text.active {
  opacity: 0;
}
.header-sp .header-sp-buttons .header-sp-button-1 .openbtn6 {
  position: absolute;
  /*ボタン内側の基点となるためrelativeを指定*/
  cursor: pointer;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.4s;
}
.header-sp .header-sp-buttons .header-sp-button-1 .openbtn6.active {
  opacity: 1;
}
.header-sp .header-sp-buttons .header-sp-button-1 .openbtn6 span {
  display: inline-block;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 20px;
  height: 2px;
  background: #fff;
}
.header-sp .header-sp-buttons .header-sp-button-1 .openbtn6 span:nth-of-type(1) {
  top: 25px;
  width: 20px;
}
.header-sp .header-sp-buttons .header-sp-button-1 .openbtn6 span:nth-of-type(3) {
  bottom: 25px;
  width: 20px;
}
.header-sp .header-sp-buttons .header-sp-button-1 .openbtn6.active span:nth-of-type(1) {
  top: 22px;
  left: 19px;
  transform: translateY(6px) rotate(-135deg);
  width: 40%;
}
.header-sp .header-sp-buttons .header-sp-button-1 .openbtn6.active span:nth-of-type(2) {
  opacity: 0;
}
.header-sp .header-sp-buttons .header-sp-button-1 .openbtn6.active span:nth-of-type(3) {
  top: 34px;
  left: 19px;
  transform: translateY(-6px) rotate(135deg);
  width: 40%;
}
.header-sp .header-sp-buttons .header-sp-button-2 {
  position: relative;
  height: 60px;
  width: 60px;
  display: flex;
  box-sizing: border-box;
  /*ボタン内側*/
  /*activeクラスが付与されると線が回転して×になる*/
}
.header-sp .header-sp-buttons .header-sp-button-2 .openbtn6 {
  position: relative;
  /*ボタン内側の基点となるためrelativeを指定*/
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.header-sp .header-sp-buttons .header-sp-button-2 .openbtn6 span {
  display: inline-block;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 20px;
  height: 2px;
  background: #000;
}
.header-sp .header-sp-buttons .header-sp-button-2 .openbtn6 span:nth-of-type(1) {
  top: 20px;
  width: 20px;
}
.header-sp .header-sp-buttons .header-sp-button-2 .openbtn6 span:nth-of-type(2) {
  top: 28px;
  width: 15px;
}
.header-sp .header-sp-buttons .header-sp-button-2 .openbtn6 span:nth-of-type(3) {
  top: 36px;
  width: 10px;
}
.header-sp .header-sp-buttons .header-sp-button-2 .openbtn6.active span:nth-of-type(1) {
  top: 22px;
  left: 19px;
  transform: translateY(6px) rotate(-135deg);
  width: 40%;
}
.header-sp .header-sp-buttons .header-sp-button-2 .openbtn6.active span:nth-of-type(2) {
  opacity: 0;
}
.header-sp .header-sp-buttons .header-sp-button-2 .openbtn6.active span:nth-of-type(3) {
  top: 34px;
  left: 19px;
  transform: translateY(-6px) rotate(135deg);
  width: 40%;
}
.header-sp .entry-menu-sp {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100vh - 60px);
  background: #004eca;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* 初期：非表示 */
  visibility: hidden;
  opacity: 0;
  /* ふわっと表示 */
  transition: 0.3s ease-in-out;
}
.header-sp .entry-menu-sp.active {
  visibility: visible;
  opacity: 1;
  z-index: 100;
}
.header-sp .entry-menu-sp .title-wrapper {
  width: 100%;
}
.header-sp .entry-menu-sp .title-wrapper .title {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  font-size: 32px;
  margin-bottom: 10px;
  font-family: "EB Garamond";
}
.header-sp .entry-menu-sp .title-wrapper .title span {
  font-size: 13px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 900;
}
.header-sp .entry-menu-sp .entry-block-1 {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 35px;
}
.header-sp .entry-menu-sp .entry-block-1 a {
  width: 90%;
  height: 100px;
  background-color: white;
  margin-bottom: 8px;
}
.header-sp .entry-menu-sp .entry-block-1 a .entry-box-1 {
  width: 100%;
  height: 100px;
  background-color: white;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: black;
}
.header-sp .entry-menu-sp .entry-block-1 a .entry-box-1 .entry-logo {
  width: 150px;
}
.header-sp .entry-menu-sp .entry-block-1 a .entry-box-1 .arrow img {
  width: 16px;
}
.header-sp .entry-menu-sp .entry-block-1 a .entry-box-1 .eb-text {
  text-align: center;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 900;
}
.header-sp .entry-menu-sp .entry-block-2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.header-sp .entry-menu-sp .entry-block-2 .entry-box-2 {
  width: 90%;
  height: 100px;
  background-color: #001946;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: white;
  position: relative;
}
.header-sp .entry-menu-sp .entry-block-2 .entry-box-2 .arrow {
  position: absolute;
  top: 38%;
  right: 20px;
}
.header-sp .entry-menu-sp .entry-block-2 .entry-box-2 .arrow img {
  width: 16px;
}
.header-sp .entry-menu-sp .entry-block-2 .entry-box-2 .small-text {
  text-align: center;
  font-size: 14px;
}
.header-sp #nav-sp {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  background-image: url(../img/fv-left-2.png);
  background-position: center;
  background-size: cover;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: auto;
  /* 初期：非表示 */
  visibility: hidden;
  opacity: 0;
  /* ふわっと表示 */
  transition: 0.3s ease-in-out;
}
.header-sp #nav-sp .nav-bg {
  position: absolute;
  background: rgba(0, 0, 0, 0.9);
  height: 1000px;
  width: 100%;
}
.header-sp #nav-sp.active {
  visibility: visible;
  opacity: 1;
  z-index: 100;
}
.header-sp #nav-sp .nav-sp-menu {
  margin-top: 45px;
  padding-left: 30px;
}
.header-sp #nav-sp .nav-sp-menu .menu-title {
  font-size: 14px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 700;
}
.header-sp #nav-sp .nav-sp-menu ul {
  font-size: 13px;
  list-style: none;
  padding-left: 20px;
}
.header-sp #nav-sp .nav-sp-menu ul li {
  position: relative;
  padding-top: 15px;
}
.header-sp #nav-sp .nav-sp-menu ul li a {
  color: white;
}
.header-sp #nav-sp .nav-sp-menu ul li::before {
  position: absolute;
  content: "";
  top: 68%;
  left: -20px;
  width: 10px;
  height: 1px;
  background-color: #fff;
}
.header-sp #nav-sp .nav-sp-companyInfo {
  margin-top: 110px;
  font-size: 13px;
  padding-left: 30px;
}
.header-sp #nav-sp .nav-sp-companyInfo .nav-logo {
  margin-bottom: 25px;
}
.header-sp #nav-sp .nav-sp-companyInfo .nav-logo img {
  width: 144px;
}
.header-sp #nav-sp .nav-sp-companyInfo .zip-code {
  margin-bottom: 5px;
}

.scr-target {
  /* アニメーション開始から終了までの所要時間 */
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  /* アニメーションが開始するまでの遅延時間 */
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  /* アニメーションのループ回数 - infiniteで無限ループ */
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  /* キーフレームアニメーションで指定したプロパティをアニメーション開始前、終了後に適用するかどうか */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.scr-target.delay-500 {
  animation-delay: 0.5s;
}
.scr-target.delay-1000 {
  animation-delay: 1s;
}

.scr-target[class*=fadeIn],
.scr-target[class*=zoom] {
  opacity: 0;
}

/* フェードイン */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.anime__fadeIn.is-active {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

/* フェードイン(上から) */
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.anime__fadeInDown.is-active {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

/* フェードイン(下から) */
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.anime__fadeInUp.is-active {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/* フェードイン(左から) */
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-30%, 0, 0);
    transform: translate3d(-30%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-30%, 0, 0);
    transform: translate3d(-30%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.anime__fadeInLeft.is-active {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

/* フェードイン(右から) */
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(30%, 0, 0);
    transform: translate3d(30%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(30%, 0, 0);
    transform: translate3d(30%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.anime__fadeInRight.is-active {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

/* ズームイン */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
    transform: scale3d(0.8, 0.8, 0.8);
  }
  100% {
    opacity: 1;
  }
}
.anime__zoomIn.is-active {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

/* ズームアウト */
@-webkit-keyframes zoomOut {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.2, 1.2, 1.2);
    transform: scale3d(1.2, 1.2, 1.2);
  }
  100% {
    opacity: 1;
  }
}
@keyframes zoomOut {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.2, 1.2, 1.2);
    transform: scale3d(1.2, 1.2, 1.2);
  }
  100% {
    opacity: 1;
  }
}
.anime__zoomOut.is-active {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

.links-section {
  border-top: 1px solid #cccccc;
}
.links-section.links-section-datapage {
  border-top: initial;
}
.links-section .links-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 120px;
  padding-top: 100px;
}
@media screen and (max-width: 599px) {
  .links-section .links-wrapper {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 50px;
    margin-bottom: 50px;
  }
}
.links-section .links-wrapper a {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.links-section .links-wrapper a:hover {
  opacity: 0.6;
}
.links-section .links-wrapper img {
  width: 100%;
}

.entry {
  width: 100%;
}
.entry .entry-grid {
  display: flex;
  font-size: 24px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  color: white;
}
@media screen and (max-width: 599px) {
  .entry .entry-grid {
    flex-direction: column;
  }
}
.entry .entry-grid .entry-grid-1 {
  width: 100%;
  height: 240px;
  background-color: #0345ca;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
@media screen and (max-width: 599px) {
  .entry .entry-grid .entry-grid-1 {
    height: 140px;
    font-size: 16px;
  }
}
.entry .entry-grid .entry-grid-1:hover {
  background-color: #3371d5;
}
.entry .entry-grid .entry-grid-1 img {
  width: 24px;
  margin-left: 15px;
}
@media screen and (max-width: 599px) {
  .entry .entry-grid .entry-grid-1 img {
    width: 20px;
  }
}
.entry .entry-grid .entry-grid-2 {
  width: 100%;
  height: 240px;
  background-color: #012b8c;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 599px) {
  .entry .entry-grid .entry-grid-2 {
    height: 140px;
    font-size: 16px;
  }
}
.entry .entry-grid .entry-grid-2 .wrap {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
.entry .entry-grid .entry-grid-2:hover {
  background-color: #335ba3;
}
.entry .entry-grid .entry-grid-2 img {
  width: 24px;
  margin-left: 15px;
}
@media screen and (max-width: 599px) {
  .entry .entry-grid .entry-grid-2 img {
    width: 20px;
  }
}
.entry .entry-grid .entry-grid-2 .small-text {
  font-size: 16px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
.entry .modal {
  height: 534px;
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 200000;
}
.entry .modal .modal__bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.entry .modal .modal__content {
  background-color: #146efe;
  padding-top: 75px;
  padding-bottom: 88px;
  width: 90%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  color: white;
}
.entry .modal .modal__content h2 {
  font-size: 64px;
  font-family: "EB Garamond";
  text-align: center;
}
@media screen and (max-width: 599px) {
  .entry .modal .modal__content h2 {
    font-size: 42px;
  }
}
.entry .modal .modal__content h2 span {
  font-size: 15px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 800;
  display: block;
}
.entry .modal .modal__content .btn-wrapper {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 80px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 599px) {
  .entry .modal .modal__content .btn-wrapper {
    flex-direction: column;
  }
}
.entry .modal .modal__content .btn-wrapper .btn-container {
  max-width: 100%;
}
.entry .modal .modal__content .btn-wrapper .btn-container img {
  max-width: 100%;
}

.footer {
  width: 100%;
  background-color: #041733;
  color: white;
  padding: 145px 0;
}
@media screen and (max-width: 599px) {
  .footer {
    padding-top: 0px;
    padding-bottom: 35px;
  }
}
.footer .mb-30px {
  margin-bottom: 25px;
}
.footer .footer-grid {
  display: flex;
  justify-content: space-between;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 599px) {
  .footer .footer-grid {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 599px) {
  .footer .footer-grid .footer-grid-1 {
    margin-top: 35px;
  }
}
.footer .footer-grid .footer-grid-1 .footer-logo img {
  max-width: 200px;
  max-height: 33.5px;
}
@media screen and (max-width: 599px) {
  .footer .footer-grid .footer-grid-1 .footer-logo img {
    max-width: 144px;
  }
}
.footer .footer-grid .footer-grid-1 .footer-address {
  font-size: 14px;
}
@media screen and (max-width: 599px) {
  .footer .footer-grid .footer-grid-1 .footer-address {
    font-size: 13px;
  }
}
.footer .footer-grid .footer-grid-1 .footer-address .address-zip {
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .footer .footer-grid .footer-grid-1 .footer-address .address-zip {
    margin-bottom: 5px;
  }
}
.footer .footer-grid .footer-grid-2 {
  display: flex;
}
@media screen and (max-width: 599px) {
  .footer .footer-grid .footer-grid-2 {
    flex-direction: column;
  }
}
.footer .footer-grid .footer-grid-2 .footer-title {
  padding-right: 100px;
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .footer .footer-grid .footer-grid-2 .footer-title {
    display: none;
  }
}
.footer .footer-grid .footer-grid-2 .footer-title.last {
  padding-right: initial;
}
.footer .footer-grid .footer-grid-2 .footer-title-sp {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  height: 55px;
  padding-left: 30px;
  border-top: 1px solid #393a3b;
}
@media screen and (min-width: 600px) {
  .footer .footer-grid .footer-grid-2 .footer-title-sp {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  .footer .footer-grid .footer-grid-2 .footer-title-sp {
    position: relative;
    transition: all 0.3s ease;
  }
}
.footer .footer-grid .footer-grid-2 .footer-title-sp.first {
  border-top: initial;
}
.footer .footer-grid .footer-grid-2 .footer-title-sp.last {
  padding-right: initial;
}
@media screen and (max-width: 599px) {
  .footer .footer-grid .footer-grid-2 .footer-title-sp::after, .footer .footer-grid .footer-grid-2 .footer-title-sp::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 1px;
    background-color: #000;
    transition: all 0.3s;
    z-index: 10;
  }
}
.footer .footer-grid .footer-grid-2 .footer-title-sp::before {
  top: 48%;
  right: 30px;
  transform: rotate(45deg);
}
.footer .footer-grid .footer-grid-2 .footer-title-sp::after {
  top: 48%;
  right: 30px;
  transform: rotate(-45deg);
}
.footer .footer-grid .footer-grid-2 .footer-title-sp.close::before {
  transform: rotate(0deg);
}
.footer .footer-grid .footer-grid-2 .footer-title-sp.close::after {
  transform: rotate(-90deg);
}
.footer .footer-grid .footer-grid-2 .footer-title-sp .footer-sp-icon::after {
  position: absolute;
  top: calc(50% - 8px);
  right: 26px;
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.3s;
}
@media screen and (max-width: 599px) {
  .footer .footer-grid .footer-grid-2 .last-footer-menu {
    border-bottom: 1px solid #393a3b;
  }
}
@media screen and (max-width: 599px) {
  .footer .footer-grid .footer-grid-2 .box {
    display: none;
  }
}
.footer .footer-grid .footer-grid-2 .box ul {
  padding: 0;
}
@media screen and (max-width: 599px) {
  .footer .footer-grid .footer-grid-2 .box ul {
    padding-left: 30px;
    margin-bottom: 20px;
    margin-top: 15px;
  }
}
.footer .footer-grid .footer-grid-2 .box ul li {
  list-style: none;
  padding-bottom: 8px;
  font-size: 14px;
}
@media screen and (max-width: 599px) {
  .footer .footer-grid .footer-grid-2 .box ul li {
    font-size: 13px;
    padding-bottom: 10px;
  }
}
.footer .footer-grid .footer-grid-2 .box ul li a {
  color: white;
}
.footer .footer-grid .footer-grid-2 .box ul li a:hover {
  color: #9BA2AD;
}

article {
  padding-top: 90px;
}
@media screen and (max-width: 599px) {
  article {
    padding-top: 60px;
  }
}
article .title-wrapper {
  width: 100%;
  height: 320px;
  background-image: url(../img/title-bg.png);
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
}
@media screen and (max-width: 599px) {
  article .title-wrapper {
    background-image: url(../img/title-bg-sp.png);
  }
}
article .title-wrapper .breadcrumb {
  font-size: 14px;
  display: flex;
  align-items: center;
  color: white;
  padding-top: 40px;
  list-style: none;
  padding-left: 0;
}
@media screen and (max-width: 599px) {
  article .title-wrapper .breadcrumb {
    font-size: 10px;
    padding-top: 10px;
  }
}
article .title-wrapper .breadcrumb .bread-1 {
  position: relative;
}
article .title-wrapper .breadcrumb .bread-1::after {
  content: "";
  height: 1px;
  width: 15px;
  background-color: white;
  position: absolute;
  top: 48%;
  right: -28px;
}
article .title-wrapper .breadcrumb li {
  margin-right: 40px;
}
article .title-wrapper .breadcrumb li a {
  text-decoration: none;
}
article .title-wrapper .breadcrumb li a span {
  color: white;
}
article .title-wrapper .breadcrumb .bread-bar {
  height: 1px;
  width: 12px;
  background-color: white;
  margin: 0 10px;
}
@media screen and (max-width: 599px) {
  article .title-wrapper .title-container {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
article .title-wrapper .title-container h1 {
  font-size: 54px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 600;
  color: white;
  margin-top: 70px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 600px) {
  article .title-wrapper .title-container h1 .br-for-sp {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  article .title-wrapper .title-container h1 {
    font-size: 36px;
    margin-top: 90px;
  }
}
article .title-wrapper .title-container .en-title {
  color: white;
  font-size: 22px;
  font-family: "EB Garamond";
  letter-spacing: 0.1em;
}
@media screen and (max-width: 599px) {
  article .title-wrapper .title-container .en-title {
    font-size: 16px;
  }
}
article .about-training {
  margin-top: 100px;
}
@media screen and (max-width: 599px) {
  article .about-training {
    margin-top: 80px;
  }
}
article .about-training h2 {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 50px;
  font-size: 38px;
}
@media screen and (min-width: 600px) {
  article .about-training h2 .br-sp {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  article .about-training h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
article .about-training .p-under-title {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  line-height: 1.75em;
  font-size: 19px;
  color: #333333;
  margin-bottom: 45px;
}
article .about-training .training-img-container {
  display: flex;
  gap: 20px;
}
@media screen and (min-width: 600px) {
  article .about-training .training-img-container {
    width: 90%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
}
article .about-training .training-img-container img {
  width: 100%;
}
@media screen and (max-width: 599px) {
  article .about-training .training-img-container .pc-ver {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  article .about-training .training-img-container .sp-ver {
    display: none;
  }
}
article .about-training .training-img-container .training-img-sp {
  height: 750px;
  width: 974px;
  margin-left: 5%;
  margin-right: 5%;
}
article .about-training .training-img-container .about-freshman-sp {
  height: 395px;
  width: 769px;
  margin-left: 5%;
  margin-right: 5%;
}
article .about-training .training-img-container.dropShadow {
  filter: drop-shadow(0px 7px 5px rgba(0, 0, 0, 0.1));
}
@media screen and (max-width: 599px) {
  article .about-training .training-img-container {
    flex-direction: column;
  }
}
article .about-training .training-img-container .card-title {
  font-size: 22px;
  background: linear-gradient(90deg, #00b1fa, #0053d0);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  color: white;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
@media screen and (max-width: 599px) {
  article .about-training .training-img-container .card-title {
    font-size: 18px;
    height: 46px;
  }
}
article .about-training .annotation-under-img {
  margin-top: 20px;
  font-family: "Noto Sans JP", sans-serif;
}
article .about-training .annotation-under-img .anotation {
  font-size: 12px;
  color: #aaaaaa;
}
article .overflow {
  overflow-x: auto;
  white-space: nowrap;
}
article .other-training {
  margin-top: 100px;
  margin-bottom: 200px;
}
@media screen and (max-width: 599px) {
  article .other-training {
    margin-top: 80px;
    margin-bottom: 100px;
  }
}
article .other-training h2 {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 50px;
  font-size: 38px;
}
@media screen and (min-width: 600px) {
  article .other-training h2 .br-sp {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  article .other-training h2 {
    font-size: 26px;
    text-align: center;
  }
}
article .other-training .tab {
  list-style: none;
  display: flex;
  gap: 40px;
  width: 100%;
  padding-left: 0;
  margin-bottom: 60px;
}
@media screen and (max-width: 599px) {
  article .other-training .tab {
    flex-direction: column;
    gap: 10px;
  }
}
article .other-training .tab li {
  height: 75px;
  font-size: 22px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 600;
  color: #0056cc;
  width: 100%;
}
@media screen and (max-width: 599px) {
  article .other-training .tab li {
    height: 46px;
    font-size: 18px;
  }
}
article .other-training .tab li.active a {
  color: white;
  background: linear-gradient(90deg, #00b1fa, #0053d0);
}
article .other-training .tab li a {
  text-decoration: none;
  color: #0056cc;
  width: 100%;
  height: 100%;
  border: 1px solid;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
article .other-training .tab-item {
  display: none;
  opacity: 0;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 599px) {
  article .other-training .tab-item {
    grid-template-columns: 1fr;
  }
}
article .other-training .tab-item.is-active {
  display: grid;
  animation-name: displayAnime;
  /*ふわっと表示させるためのアニメーション*/
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
article .other-training .tab-item .about-training-card {
  filter: drop-shadow(0px 7px 5px rgba(0, 0, 0, 0.1));
  width: 100%;
}
article .other-training .tab-item .about-training-card .img-container {
  width: 100%;
}
article .other-training .tab-item .about-training-card .img-container img {
  width: 100%;
  vertical-align: top;
}
article .other-training .tab-item .about-training-card .under-img {
  padding: 5%;
  letter-spacing: 0.1em;
  background-color: white;
}
article .other-training .tab-item .about-training-card .under-img .card-title {
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  border-bottom: 1px solid #0056cc;
}
@media screen and (max-width: 599px) {
  article .other-training .tab-item .about-training-card .under-img .card-title {
    font-size: 16px;
  }
}
article .other-training .tab-item .about-training-card .under-img .card-text {
  font-size: 13px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.75em;
}
@media screen and (max-width: 599px) {
  article .other-training .tab-item .about-training-card .under-img .card-text {
    font-size: 13px;
  }
}
article .other-training .tab-item .about-training-card .under-img .card-text ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 0px;
  margin-top: 20px;
}
@media screen and (max-width: 599px) {
  article .other-training .tab-item .about-training-card .under-img .card-text ul {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
article .other-training .tab-item .about-training-card .under-img .card-text ul.gird-2colum {
  grid-template-columns: 2fr 1fr;
}
article .other-training .tab-item .about-training-card .under-img .card-text ul li {
  position: relative;
  list-style: none;
  margin-left: 20px;
}
article .other-training .tab-item .about-training-card .under-img .card-text ul li.br-sp {
  display: none;
}
@media screen and (max-width: 599px) {
  article .other-training .tab-item .about-training-card .under-img .card-text ul li.br-sp {
    display: block;
  }
}
article .other-training .tab-item .about-training-card .under-img .card-text ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -20px;
  width: 8px;
  height: 8px;
  background-color: #0056cc;
  border-radius: 50%;
}