@charset "UTF-8";
/******************************* Preface ***************************************/
a:hover {
  color: #005098;
}

/********************************* body ***************************************/
html {
  scroll-behavior: smooth;
}

body {
  /******************************** header **************************************/
  /********************************  Main Content ******************************/
  /***********************************  footer ********************************/
  /******************************** nav modal **************************************/
  /*========= ページトップのためのCSS ===============*/
  /*リンクの形状*/
  /*リンクを右下に固定*/
  /*　上に上がる動き　*/
  /*　下に下がる動き　*/
}
body header {
  position: relative;
}
body header.scrolled .inner {
  background-color: rgba(241, 241, 234, 0.7);
  transition: all linear 0.2s;
}
body header.header.top {
  height: 100vh;
}
body header.header .inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem 3rem;
  background: white;
  z-index: 99;
}
body header.header .inner .logo {
  display: flex;
  align-items: center;
  margin-right: auto;
}
body header.header .inner .logo a {
  display: block;
}
body header.header .inner .logo a img {
  height: 1.8rem;
  width: auto;
}
body header.header .inner .logo a::after {
  content: "";
  border-right: 1px solid black;
  height: 1.5em;
  display: inline-block;
  padding-left: 1em;
  margin-right: 1em;
  vertical-align: text-bottom;
}
body header.header .inner .logo h1 {
  font-weight: bold;
  letter-spacing: 0.05em;
}
body header.header .inner .menu-wrapper nav.gnav {
  flex: none;
  position: relative;
}
body header.header .inner .menu-wrapper nav.gnav .menu-container .menu {
  display: flex;
  align-items: center;
  margin: 0 1rem;
}
body header.header .inner .menu-wrapper nav.gnav .menu-container .menu > .menu-item {
  position: relative;
}
body header.header .inner .menu-wrapper nav.gnav .menu-container .menu > .menu-item a {
  display: block;
  font-size: 0.9rem;
  padding: 1rem;
  line-height: 1;
  color: #4C4948;
  transition: all 0.3s;
}
body header.header .inner .menu-wrapper nav.gnav .menu-container .menu > .menu-item a:hover {
  color: #005098;
  text-decoration: none;
}
body header.header .inner .menu-wrapper nav.gnav .menu-container .menu > .menu-item:not(:nth-last-child(-n+2))::after {
  content: "|";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: black;
}
body header.header .inner .menu-wrapper nav.gnav .menu-container .menu > .menu-item.button {
  padding-left: 1rem;
}
body header.header .inner .menu-wrapper nav.gnav .menu-container .menu > .menu-item.button a, body header.header .inner .menu-wrapper nav.gnav .menu-container .menu > .menu-item.button .btn {
  border: 1px solid #005098;
  background-color: #005098;
  border-radius: 100rem;
  padding: 1rem 2rem;
  color: white;
}
body header.header .inner .menu-wrapper nav.gnav .menu-container .menu > .menu-item.button a:hover, body header.header .inner .menu-wrapper nav.gnav .menu-container .menu > .menu-item.button a:focus, body header.header .inner .menu-wrapper nav.gnav .menu-container .menu > .menu-item.button .btn:hover, body header.header .inner .menu-wrapper nav.gnav .menu-container .menu > .menu-item.button .btn:focus {
  background: white;
  color: #005098;
  text-decoration: none;
  opacity: 0.8;
  box-shadow: none;
}
body header.header .inner .menu-wrapper nav.gnav .menu-container .menu > .menu-item.button a.btn-close, body header.header .inner .menu-wrapper nav.gnav .menu-container .menu > .menu-item.button .btn.btn-close {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}
body header.header .mainvi {
  height: 100%;
  width: 100%;
  position: relative;
  overflow-x: hidden;
}
body header.header .mainvi .slider {
  height: 100%;
}
body header.header .mainvi .slider div {
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: brightness(80%);
}
body header.header .mainvi .copy {
  position: absolute;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: auto;
  width: 100%;
}
body header.header .mainvi .copy h1 {
  width: 100%;
  padding-left: 160px;
}
body header.header .mainvi .copy h1 span {
  font-family: "Montserrat", sans-serif;
  display: block;
  font-size: 4vw;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: white;
}
body header.header .mainvi .copy h1 span.sub {
  font-size: 1.5vw;
  line-height: 2;
  padding-top: 3em;
}
body header.header.back-head .mainvi {
  position: relative;
  padding-left: 60px;
  height: 300px;
}
body header.header.back-head .header-title-wrap {
  background: #005098;
  border-radius: 20px 0 0 20px;
  height: 100%;
}
body header.header.back-head .header-title-wrap h1 {
  font-family: "Montserrat", sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  font-weight: 600;
  color: white;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.1em;
  width: 100%;
}
body header.header.back-head .header-title-wrap h1 > span {
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  font-size: 0.9rem;
  letter-spacing: normal;
  padding-top: 20px;
}
@media screen and (max-width: 1040px) {
  body header.header .inner {
    flex-wrap: wrap;
    width: 100%;
    min-width: 100%;
  }
  body header.header .inner .logo {
    flex-wrap: wrap;
  }
  body header.header .inner .logo a img {
    height: 2.5rem;
  }
  body header.header .inner nav.gnav {
    width: 100%;
    padding: 1rem 0;
  }
  body header.header .inner nav.gnav ul {
    justify-content: center;
  }
  body header.header .inner nav.gnav ul li a {
    padding: 0.7rem;
  }
  body header.header .mainvi .copy h1 {
    width: 100%;
    padding-left: 160px;
  }
  body header.header .mainvi .copy h1 span {
    font-size: 5vw;
  }
  body header.header .mainvi .copy h1 span.sub {
    font-size: 2vw;
  }
}
body .breadcrumb-wrap {
  padding: 0 60px;
}
body .breadcrumb-wrap ul {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 1em 0;
}
body .breadcrumb-wrap ul li {
  font-size: 0.9rem;
}
body .breadcrumb-wrap ul li::after {
  padding: 0 1em;
  content: url(../img/arrow_black.svg);
  vertical-align: text-top;
}
body .breadcrumb-wrap ul li:last-child::after {
  content: "";
}
body .breadcrumb-wrap ul li:first-child {
  color: #005098;
}
body .breadcrumb-wrap ul li a {
  text-decoration: none;
}
@media screen and (min-width: 678px) and (max-width: 1140px) {
  body .breadcrumb-wrap {
    padding: 0 40px;
  }
}
body .content-wrap {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  /* ドットの数字を非表示にする */
  /* ドットを円形に設定 */
  /* ドットをアクティブ状態にした時のスタイル */
}
body .content-wrap .inner.inner-l {
  width: 100%;
  max-width: 1110px;
  margin: 0 auto;
}
body .content-wrap .inner.inner-m {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}
body .content-wrap .inner.inner-s {
  width: 100%;
  max-width: 730px;
  margin: 0 auto;
}
@media screen and (min-width: 678px) and (max-width: 1150px) {
  body .content-wrap .inner.inner-s {
    padding: 0 40px;
  }
  body .content-wrap .inner.inner-m {
    padding: 0 40px;
  }
  body .content-wrap .inner.inner-l {
    padding: 0 40px;
  }
}
body .content-wrap.sec-bg-img {
  position: relative;
}
body .content-wrap.sec-bg-img::before {
  content: "";
  background-image: url(../img/business_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: calc(100% - 100px);
  height: 100%;
  aspect-ratio: 16/9;
}
@media screen and (min-width: 678px) and (max-width: 1150px) {
  body .content-wrap.sec-bg-img {
    padding-left: 40px;
  }
}
body .content-wrap h1.section-title,
body .content-wrap h2.section-title,
body .content-wrap h3.section-title,
body .content-wrap h4.section-title,
body .content-wrap h5.section-title,
body .content-wrap h6.section-title {
  margin-bottom: 4rem;
}
body .content-wrap h1.section-title span,
body .content-wrap h2.section-title span,
body .content-wrap h3.section-title span,
body .content-wrap h4.section-title span,
body .content-wrap h5.section-title span,
body .content-wrap h6.section-title span {
  display: block;
}
body .content-wrap h1.section-title span.main,
body .content-wrap h2.section-title span.main,
body .content-wrap h3.section-title span.main,
body .content-wrap h4.section-title span.main,
body .content-wrap h5.section-title span.main,
body .content-wrap h6.section-title span.main {
  font-size: 3rem;
  font-weight: bold;
}
body .content-wrap h1.section-title span.sub,
body .content-wrap h2.section-title span.sub,
body .content-wrap h3.section-title span.sub,
body .content-wrap h4.section-title span.sub,
body .content-wrap h5.section-title span.sub,
body .content-wrap h6.section-title span.sub {
  font-size: 1.1rem;
  font-weight: 500;
}
body .content-wrap h1.section-title.border-left-01 .main,
body .content-wrap h2.section-title.border-left-01 .main,
body .content-wrap h3.section-title.border-left-01 .main,
body .content-wrap h4.section-title.border-left-01 .main,
body .content-wrap h5.section-title.border-left-01 .main,
body .content-wrap h6.section-title.border-left-01 .main {
  font-weight: 600;
  letter-spacing: 0.05em;
  padding-bottom: 0.5rem;
}
body .content-wrap h1.section-title.border-left-01 .sub,
body .content-wrap h2.section-title.border-left-01 .sub,
body .content-wrap h3.section-title.border-left-01 .sub,
body .content-wrap h4.section-title.border-left-01 .sub,
body .content-wrap h5.section-title.border-left-01 .sub,
body .content-wrap h6.section-title.border-left-01 .sub {
  position: relative;
  padding-left: 2.5rem;
  font-weight: bold;
  color: #005098;
}
body .content-wrap h1.section-title.border-left-01 .sub:before,
body .content-wrap h2.section-title.border-left-01 .sub:before,
body .content-wrap h3.section-title.border-left-01 .sub:before,
body .content-wrap h4.section-title.border-left-01 .sub:before,
body .content-wrap h5.section-title.border-left-01 .sub:before,
body .content-wrap h6.section-title.border-left-01 .sub:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 2rem;
  height: 1px;
  content: "";
  background: #005098;
}
body .content-wrap h1.section-title.border-left-01 .sub.t_white::before,
body .content-wrap h2.section-title.border-left-01 .sub.t_white::before,
body .content-wrap h3.section-title.border-left-01 .sub.t_white::before,
body .content-wrap h4.section-title.border-left-01 .sub.t_white::before,
body .content-wrap h5.section-title.border-left-01 .sub.t_white::before,
body .content-wrap h6.section-title.border-left-01 .sub.t_white::before {
  background-color: white;
}
body .content-wrap h1.content-title,
body .content-wrap h2.content-title,
body .content-wrap h3.content-title,
body .content-wrap h4.content-title,
body .content-wrap h5.content-title,
body .content-wrap h6.content-title {
  margin-bottom: 3rem;
}
body .content-wrap h1.content-title.boder-left-01,
body .content-wrap h2.content-title.boder-left-01,
body .content-wrap h3.content-title.boder-left-01,
body .content-wrap h4.content-title.boder-left-01,
body .content-wrap h5.content-title.boder-left-01,
body .content-wrap h6.content-title.boder-left-01 {
  font-size: 1.4rem;
  font-weight: bold;
  border-left: 6px solid #e1002a;
  padding-left: 0.7rem;
}
body .content-wrap .banner-area-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 4rem 0;
}
body .content-wrap .banner-area-wrap a {
  display: block;
  width: calc(50% - 15px);
  margin-bottom: 30px;
}
body .content-wrap .banner-area-wrap a img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
body .content-wrap .top-bridge-wrap {
  position: relative;
  padding-bottom: 15%;
}
body .content-wrap .top-bridge-wrap .contents {
  max-width: 455px;
  margin: 0 auto;
  position: relative;
  right: -10%;
}
body .content-wrap .top-bridge-wrap .contents h2 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.8;
}
body .content-wrap .top-bridge-wrap .contents h2 > span {
  color: #005098;
}
body .content-wrap .top-bridge-wrap .parallax-img {
  position: absolute;
  overflow: hidden;
}
body .content-wrap .top-bridge-wrap .parallax-img.img01 {
  top: 20%;
  left: 0;
  margin-left: -330px;
}
body .content-wrap .top-bridge-wrap .parallax-img.img01 img {
  max-width: 600px;
  aspect-ratio: 16/10;
  display: block;
  width: 100%;
  height: auto;
  transform: translateX(-10%);
}
body .content-wrap .top-bridge-wrap .parallax-img.img02 {
  overflow-x: hidden;
  top: 0;
  left: 50%;
  margin-left: 400px;
}
body .content-wrap .top-bridge-wrap .parallax-img.img02 img {
  display: block;
  width: 360px;
  height: 460px;
  transform: translateX(-10%);
  object-fit: cover;
}
@media screen and (min-width: 678px) and (max-width: 1024px) {
  body .content-wrap .top-bridge-wrap .contents {
    max-width: 350px;
  }
  body .content-wrap .top-bridge-wrap .contents h2 {
    font-size: 2.4vw;
  }
  body .content-wrap .top-bridge-wrap .parallax-img {
    position: absolute;
    overflow: hidden;
  }
  body .content-wrap .top-bridge-wrap .parallax-img.img01 {
    top: 20%;
    left: 0;
    margin-left: -280px;
  }
  body .content-wrap .top-bridge-wrap .parallax-img.img01 img {
    max-width: 500px;
    aspect-ratio: 16/10;
    display: block;
    width: 100%;
    height: auto;
    transform: translateX(-8%);
  }
  body .content-wrap .top-bridge-wrap .parallax-img.img02 {
    overflow-x: hidden;
    top: 0;
    left: 60%;
    margin-left: 200px;
  }
  body .content-wrap .top-bridge-wrap .parallax-img.img02 img {
    display: block;
    width: 200px;
    height: 250px;
    transform: translateX(-10%);
    object-fit: cover;
  }
}
body .content-wrap .bridge-img {
  max-width: 1110px;
  margin: 0 auto;
}
body .content-wrap .bridge-img img {
  display: block;
  object-fit: contain;
  aspect-ratio: 229/86;
  width: 100%;
}
body .content-wrap .content-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
body .content-wrap .content-flex .content-left {
  width: 20%;
}
body .content-wrap .content-flex .content-right {
  width: 80%;
  max-width: 825px;
}
body .content-wrap .top-fac-wrap {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
}
body .content-wrap .top-fac-wrap .text {
  width: 55%;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-right: 3rem;
}
body .content-wrap .top-fac-wrap .text h3.section-title {
  margin-bottom: 3rem;
}
body .content-wrap .top-fac-wrap .text > p {
  font-size: 1rem;
  line-height: 1.8;
}
body .content-wrap .recruit-wrap {
  margin-bottom: 4rem;
}
body .content-wrap .recruit-wrap a {
  position: relative;
  display: flex;
  border-top: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
  padding: 3rem 0;
  transition: all 0.3s;
}
body .content-wrap .recruit-wrap a::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 2em;
  transform: translateY(-50%);
  display: block;
  width: 30px;
  height: 30px;
  padding: 8px;
  line-height: 1;
  border-radius: 100rem;
  background: #e1002a;
  color: white;
  font-size: 14px;
}
body .content-wrap .recruit-wrap a > h3 {
  width: 40%;
  margin-bottom: 0;
  line-height: 1;
}
body .content-wrap .recruit-wrap a .text {
  width: 60%;
  padding-right: 5rem;
}
body .content-wrap .fac-slider {
  width: 45%;
  margin-left: auto;
  position: relative;
  overflow: visible;
}
body .content-wrap .fac-slider .slick-list {
  overflow: visible;
}
body .content-wrap .fac-slider .slick-item img {
  height: auto;
  width: 100%;
  aspect-ratio: 16/10;
}
body .content-wrap .slick-dots {
  display: flex;
  padding-top: 1em;
}
body .content-wrap .slick-dots li {
  margin-right: 1em;
}
body .content-wrap .fac-slider .slick-dots li button {
  font-size: 0;
  /* 数字を見えなくする */
}
body .content-wrap .fac-slider .slick-dots li button:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #D9D9D9;
  border-radius: 50%;
  opacity: 0.5;
  transition: opacity 0.3s;
}
body .content-wrap .fac-slider .slick-dots li.slick-active button:before {
  opacity: 1;
  background-color: #005098;
  /* アクティブ時のドット色 */
}
body .content-wrap .gallery-slider .slick-item {
  margin-right: 10px;
  margin-left: 10px;
}
body .content-wrap .gallery-slider .slick-item img {
  height: auto;
  width: 100%;
  aspect-ratio: 25/34;
  object-fit: cover;
}
body .content-wrap .news-list-wrap li {
  border: 1px solid #EBEBEB;
  border-radius: 5px;
  margin-bottom: 0.5rem;
}
body .content-wrap .news-list-wrap li a {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 1.5rem 1rem;
  transition: all 0.3s;
}
body .content-wrap .news-list-wrap li a:hover {
  text-decoration: none;
  color: black;
  opacity: 0.7;
}
body .content-wrap .news-list-wrap li a::after {
  content: url(../img/arrow_blue.svg);
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  display: block;
}
body .content-wrap .news-list-wrap li a .date {
  font-family: "Montserrat", sans-serif;
  color: #B0AFB0;
  font-weight: 500;
  font-size: 0.9rem;
}
body .content-wrap .news-list-wrap li a .category {
  display: inline-block;
  color: #005098;
  border: 1px solid #005098;
  border-radius: 4px;
  font-size: 0.9rem;
  padding: 0.3rem 0.8rem;
  margin: 0 1rem;
  line-height: 1;
}
body .content-wrap .news-list-wrap li a .title {
  width: 70%;
  padding-right: 3rem;
}
body .content-wrap .article-detail .ttl h2 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.8;
}
body .content-wrap .article-detail .ttl .date {
  font-family: "Montserrat", sans-serif;
}
body .content-wrap .article-detail .ttl .date > span {
  display: inline-block;
  border: 1px solid #005098;
  color: #005098;
  padding: 0 2rem;
  border-radius: 4px;
  margin-left: 1rem;
  font-size: 0.9rem;
}
body .content-wrap .article-detail .artcle img {
  display: block;
  width: 100%;
  padding: 2rem 0;
}
body .content-wrap .article-detail .artcle a {
  text-decoration: underline;
  color: #005098;
}
body .content-wrap .tab-nav-wrap ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
}
body .content-wrap .tab-nav-wrap ul li {
  width: calc(50% - 1rem);
}
body .content-wrap .tab-nav-wrap ul li a {
  display: block;
  padding: 1.5rem 0;
  text-align: center;
  color: #D5D5D5;
  font-size: 1.2rem;
  font-weight: bold;
  border-bottom: 2px solid #F0F0F0;
}
body .content-wrap .tab-nav-wrap ul li a:hover {
  color: #005098;
  border-color: #005098;
}
body .content-wrap .tab-nav-wrap ul li a:active, body .content-wrap .tab-nav-wrap ul li a.active {
  color: black;
  border-bottom: 5px solid #005098;
}
body .content-wrap .area {
  display: none;
  opacity: 0;
}
body .content-wrap .area.is-active {
  display: block;
  /*表示*/
  animation-name: displayAnime;
  /*ふわっと表示させるためのアニメーション*/
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
body .content-wrap .area .rec-list {
  padding: 4rem;
}
body .content-wrap .area .rec-list li {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #dee2e6;
  padding: 1em;
}
body .content-wrap .area .rec-list li .ttl {
  width: 28%;
  font-weight: bold;
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body .content-wrap .text-list-wrap {
  border: 1px solid #005098;
  border-radius: 5px;
  padding: 2rem 3rem;
  margin-bottom: 2rem;
}
body .content-wrap .text-list-wrap li {
  display: flex;
  align-items: center;
  padding-bottom: 2rem;
}
body .content-wrap .text-list-wrap li:last-child {
  padding-bottom: 0;
}
body .content-wrap .text-list-wrap li .main {
  position: relative;
  display: inline-block;
  width: 20%;
  font-weight: bold;
  color: #005098;
  margin-right: 1em;
}
body .content-wrap .text-list-wrap li .main::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 2px;
  background-color: #005098;
}
body .content-wrap .text-list-wrap li .detail {
  width: 80%;
  font-weight: bold;
}
body .content-wrap .box-1col.box-1col-01 .thumb img {
  display: block;
  width: 100%;
  margin: 0 auto;
  object-fit: cover;
  aspect-ratio: 16/9;
}
body .content-wrap .box-1col.box-1col-01 .thumb img.thumb-full {
  object-fit: contain;
  aspect-ratio: 9/16;
}
body .content-wrap .box-1col.box-1col-02 {
  position: relative;
  max-width: 1110px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  flex-direction: row-reverse;
  justify-content: space-between;
}
body .content-wrap .box-1col.box-1col-02 .thumb {
  width: 100%;
  margin-right: -40%;
}
@media screen and (min-width: 678px) and (max-width: 1024px) {
  body .content-wrap .box-1col.box-1col-02 .thumb {
    margin-right: -40px;
  }
}
body .content-wrap .box-1col.box-1col-02 .thumb img {
  display: block;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  height: 100%;
}
body .content-wrap .box-1col.box-1col-02 .text {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 4rem 0;
  padding-right: 3rem;
}
body .content-wrap .box-1col.box-1col-02 .text h3.section-title {
  margin-bottom: 3rem;
}
body .content-wrap .box-1col.box-1col-02 .text > p {
  font-size: 1rem;
  line-height: 1.8;
}
body .content-wrap .box-1col.box-1col-02 .text .text-link {
  width: 100%;
}
body .content-wrap .box-1col.box-1col-02 .text .text-link li {
  border-top: 1px solid white;
}
body .content-wrap .box-1col.box-1col-02 .text .text-link li:last-child {
  border-bottom: 1px solid white;
}
body .content-wrap .box-1col.box-1col-02 .text .text-link li a {
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  padding: 1rem 0.5rem;
}
body .content-wrap .box-1col.box-1col-02 .text .text-link li a .num {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: #4C4948;
  border-radius: 10rem;
  line-height: 1;
  margin-right: 1em;
  width: 40px;
  height: 40px;
  font-size: 18px;
  font-weight: 300;
}
body .content-wrap .box-1col.box-1col-02 .text .text-link li a .title {
  font-weight: bold;
}
body .content-wrap .box-1col.box-1col-02 .text .text-link li a::after {
  content: url(../img/arrow_white.svg);
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
  display: block;
}
body .content-wrap .box-1col.box-1col-03 > ul li a {
  display: flex;
  align-items: center;
  transition: all 0.3s;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 80, 152, 0.5);
  border-radius: 5px;
}
body .content-wrap .box-1col.box-1col-03 > ul li a:hover {
  opacity: 0.7;
}
body .content-wrap .box-1col.box-1col-03 > ul li a .logo img {
  display: block;
  width: 100%;
  max-width: 300px;
}
body .content-wrap .box-1col.box-1col-03 > ul li a .text {
  padding-left: 2em;
}
body .content-wrap .box-1col.box-1col-03 > ul li a .text p {
  font-size: 1rem;
}
body .content-wrap .box-1col.box-1col-03 > ul li a .text p.main {
  font-weight: bold;
  font-size: 1.3rem;
}
body .content-wrap .box.box-2 .item {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
body .content-wrap .box.box-2 .item.reverse {
  flex-direction: row-reverse;
}
body .content-wrap .box.box-2 .item.reverse .text {
  padding-right: 2rem;
  padding-left: 0;
}
body .content-wrap .box.box-2 .item > * {
  width: calc(50% - 20px);
}
body .content-wrap .box .thumb img {
  display: block;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 16/10;
  object-fit: cover;
}
body .content-wrap .box .store-map {
  aspect-ratio: 16/10;
}
body .content-wrap .box .store-map iframe {
  width: 100%;
  height: 100%;
}
body .content-wrap .box .text p {
  font-size: 1rem;
}
body .content-wrap .box .text .main {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
body .content-wrap .box .text .address > p,
body .content-wrap .box .text .address a {
  font-size: 0.9rem;
}
body .content-wrap .box .text .store-banner a {
  display: block;
}
body .content-wrap .box .text .store-banner a img {
  display: block;
  width: 300px;
}
body .content-wrap .box-col2-wrap-01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
body .content-wrap .box-col2-wrap-01 .item {
  width: 48%;
  margin-right: 1.5rem;
  margin-bottom: 1.5rem;
}
body .content-wrap .box-col2-wrap-01 .item:nth-child(2n) {
  margin-right: 0;
}
body .content-wrap .box-col2-wrap-01 .item .thumb img {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16/10;
  overflow: hidden;
}
body .content-wrap .box-col2-wrap-01 .item .text {
  padding: 1rem 0;
}
body .content-wrap .box-col2-wrap-01 .item .text .title {
  font-weight: bold;
  font-size: 1rem;
}
body .content-wrap .box-col2-wrap-01 .item .text .detail {
  font-size: 0.9rem;
}
body .content-wrap .box-col2-wrap-02 .item {
  display: flex;
  align-items: center;
  background: #EEF2F5;
  border-radius: 5px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
body .content-wrap .box-col2-wrap-02 .item .thumb img {
  display: block;
  width: 100%;
  margin: 0 auto;
  max-width: 250px;
}
body .content-wrap .box-col2-wrap-02 .item .text {
  padding-left: 2em;
}
body .content-wrap .box-col2-wrap-02 .item .text .main {
  padding-bottom: 1rem;
  font-weight: bold;
}
body .content-wrap .box-3col.box-3col-01 ul.list {
  display: flex;
  flex-wrap: wrap;
}
body .content-wrap .box-3col.box-3col-01 ul.list li {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 2%;
  border: 1px solid rgba(0, 80, 152, 0.5);
  padding: 2rem;
  text-align: center;
}
body .content-wrap .box-3col.box-3col-01 ul.list li:nth-child(3n) {
  margin-right: 0;
}
body .content-wrap .box-3col.box-3col-01 ul.list li .main {
  font-size: 1.8rem;
  font-weight: bold;
}
body .content-wrap .box-3col.box-3col-01 ul.list li .sub {
  font-size: 1.2rem;
  font-weight: 600;
}
body .content-wrap .box-3col.box-3col-01 ul.list li .sub > span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 3rem;
}
body .content-wrap .btn-wrap a {
  position: relative;
  display: block;
  color: #005098;
}
body .content-wrap .btn-wrap a::after {
  content: "→";
  position: absolute;
  top: 50%;
  left: 7em;
  transform: translateY(-50%);
  display: block;
  width: 30px;
  height: 30px;
  padding: 8px;
  line-height: 1;
  border-radius: 100rem;
  background: #e1002a;
  color: white;
  font-size: 14px;
}
body .content-wrap .link-btn {
  width: 350px;
}
body .content-wrap .link-btn.center {
  margin: 0 auto;
}
body .content-wrap .link-btn.right {
  margin-left: auto;
}
body .content-wrap .link-btn.main-color a {
  display: block;
  background-color: #005098;
  border: 1px solid #005098;
  color: #fff;
}
body .content-wrap .link-btn.main-color a:hover {
  background-color: #fff;
  color: #005098;
}
body .content-wrap .link-btn.main-color a:hover::after {
  border-color: #005098;
}
body .content-wrap .link-btn.main-color a::after {
  border-color: #fff;
}
body .content-wrap .link-btn.reverse-color a {
  background-color: #fff;
  border: 1px solid #005098;
  color: #005098;
}
body .content-wrap .link-btn.reverse-color a:hover {
  background-color: #005098;
  color: #fff;
}
body .content-wrap .link-btn.reverse-color a:hover::after {
  border-color: #fff;
}
body .content-wrap .link-btn a {
  display: block;
  transition: 0.3s;
}
body .content-wrap .link-btn.link-btn-01 a {
  position: relative;
  text-align: center;
  padding: 1rem;
  font-size: 1rem;
}
body .content-wrap .link-btn.link-btn-01 a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: rotate(45deg) translateY(-50%);
  width: 8px;
  height: 8px;
  border-width: 2px 2px 0 0;
  border-style: solid;
}
body .content-wrap .link-btn.link-btn-02 a {
  background: white;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  padding: 10px 25px;
  color: #005098;
  transition: 0.3s ease-in-out;
  z-index: 0;
  border-left: solid 5px #005098;
}
body .content-wrap .link-btn.link-btn-02 a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  display: block;
  background: #005098;
  transition: 0.3s;
  left: 0;
}
body .content-wrap .link-btn.link-btn-02 a:hover {
  color: white;
}
body .content-wrap .link-btn.link-btn-02 a:hover:before {
  width: 100%;
  z-index: -1;
}
body .content-wrap .link-btn.link-btn-02.main-color a {
  background: #005098;
  color: white;
  border: 0;
  border-left: solid 5px white;
}
body .content-wrap .link-btn.link-btn-02.main-color a::before {
  background: white;
}
body .content-wrap .link-btn.link-btn-02.main-color a:hover {
  color: #005098;
}
body .content-wrap .link-btn.link-btn-03 a {
  background: 0;
  border: 0;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  padding: 10px 0px 10px 25px;
  color: #005098;
  transition: 0.3s ease-in-out;
}
body .content-wrap .link-btn.link-btn-03 a:before, body .content-wrap .link-btn.link-btn-03 a:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
}
body .content-wrap .link-btn.link-btn-03 a::before {
  width: 0.5rem;
  height: 0.5rem;
  left: 1.1rem;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  z-index: 2;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}
body .content-wrap .link-btn.link-btn-03 a::after {
  left: 0;
  background: #005098;
  z-index: 1;
  width: 3rem;
  height: 3rem;
  border-radius: 4rem;
  transform: translateY(-50%);
  transition: all 0.5s;
}
body .content-wrap .link-btn.link-btn-03 a span {
  position: relative;
  transition: all 0.3s;
  z-index: 3;
}
body .content-wrap .link-btn.link-btn-03 a:hover {
  background: 0;
}
body .content-wrap .link-btn.link-btn-03 a:hover span {
  color: #fff;
}
body .content-wrap .link-btn.link-btn-03 a:hover:before {
  left: 2rem;
}
body .content-wrap .link-btn.link-btn-03 a:hover:after {
  right: 0;
  width: 100%;
}
body .content-wrap .link-btn.link-btn-03.reverse-color a::before {
  width: 0.5rem;
  height: 0.5rem;
  left: 1.1rem;
  border-top: solid 2px #005098;
  border-right: solid 2px #005098;
  z-index: 2;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}
body .content-wrap .link-btn.link-btn-03.reverse-color a::after {
  left: 0;
  background: white;
  z-index: 1;
  width: 3rem;
  height: 3rem;
  border-radius: 4rem;
  transform: translateY(-50%);
  transition: all 0.5s;
  border: solid 1px #005098;
}
body .content-wrap .link-btn.link-btn-03.reverse-color a span {
  position: relative;
  transition: all 0.3s;
  z-index: 3;
}
body .content-wrap .link-btn.link-btn-03.reverse-color a:hover {
  background: 0;
}
body .content-wrap .link-btn.link-btn-03.reverse-color a:hover span {
  color: #005098;
}
body .content-wrap .link-btn.link-btn-03.reverse-color a:hover:before {
  left: 2rem;
}
body .content-wrap .link-btn.link-btn-03.reverse-color a:hover:after {
  right: 0;
  width: 100%;
}
body .content-wrap .table tr th {
  width: 28%;
  padding: 1.5rem 0;
}
body .content-wrap .table tr td {
  padding: 1.5rem 0;
}
body .content-wrap form .form-control {
  height: auto;
}
body .content-wrap form .row {
  border-bottom: 1px solid #eef3f1;
}
body .content-wrap form .row:first-child {
  border-top: 1px solid #eef3f1;
}
body .content-wrap form .row .col-12,
body .content-wrap form .row .col-6 {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 0;
}
body .content-wrap form .row .col-12 label,
body .content-wrap form .row .col-6 label {
  width: 20%;
  font-size: 1.1rem;
  font-weight: bold;
}
body .content-wrap form .row .col-12 label.reqire::after,
body .content-wrap form .row .col-6 label.reqire::after {
  content: "*";
  color: red;
  font-size: 1.2rem;
}
body .content-wrap form .row .col-12 .radio-wrap,
body .content-wrap form .row .col-6 .radio-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 70%;
}
body .content-wrap form .row .col-12 .radio-wrap label,
body .content-wrap form .row .col-6 .radio-wrap label {
  display: flex;
  align-items: center;
  width: 100%;
  padding-bottom: 0.5rem;
}
body .content-wrap form .row .col-12 .radio-wrap input[type=radio],
body .content-wrap form .row .col-6 .radio-wrap input[type=radio] {
  position: relative;
  background: white;
  padding: 0;
  margin-right: 0.5rem;
  width: 16px;
  height: 16px;
  border: 1px solid #000;
  border-radius: 50%;
  vertical-align: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
body .content-wrap form .row .col-12 .radio-wrap input[type=radio]:checked:before,
body .content-wrap form .row .col-6 .radio-wrap input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #000;
  content: "";
}
body .content-wrap form .row .col-12 select,
body .content-wrap form .row .col-12 input,
body .content-wrap form .row .col-12 textarea,
body .content-wrap form .row .col-6 select,
body .content-wrap form .row .col-6 input,
body .content-wrap form .row .col-6 textarea {
  width: 80%;
  background-color: #f3f3f3;
  border: 1px solid #f3f3f3;
  padding: 1em;
  border-radius: 0.25rem;
}
body .content-wrap form .row .col-12 select:hover, body .content-wrap form .row .col-12 select:focus, body .content-wrap form .row .col-12 select:active,
body .content-wrap form .row .col-12 input:hover,
body .content-wrap form .row .col-12 input:focus,
body .content-wrap form .row .col-12 input:active,
body .content-wrap form .row .col-12 textarea:hover,
body .content-wrap form .row .col-12 textarea:focus,
body .content-wrap form .row .col-12 textarea:active,
body .content-wrap form .row .col-6 select:hover,
body .content-wrap form .row .col-6 select:focus,
body .content-wrap form .row .col-6 select:active,
body .content-wrap form .row .col-6 input:hover,
body .content-wrap form .row .col-6 input:focus,
body .content-wrap form .row .col-6 input:active,
body .content-wrap form .row .col-6 textarea:hover,
body .content-wrap form .row .col-6 textarea:focus,
body .content-wrap form .row .col-6 textarea:active {
  outline: 2px solid #005098;
  border-color: transparent !important;
  box-shadow: none !important;
}
body .content-wrap form .checkbox-consent {
  text-align: center;
}
body .content-wrap form .checkbox-consent .form-group .form-check {
  width: 100%;
  justify-content: center;
}
body .content-wrap form .checkbox-consent .form-group .form-check input[type=checkbox] {
  position: relative;
  width: 16px;
  height: 16px;
  line-height: 1;
  padding: 0;
  margin-right: 10px;
  display: inline-block;
  background: white;
  outline: 1px solid #005098;
}
body .content-wrap form .checkbox-consent .form-group .form-check input[type=checkbox]:checked:after {
  content: "✓";
  font-weight: bold;
}
body .content-wrap form .checkbox-consent .form-group .form-check label {
  width: auto;
}
body .content-wrap form .checkbox-consent .form-group .form-check label > a {
  text-decoration: underline;
}
body .content-wrap form .checkbox-consent .form-group .form-check span.error {
  margin-left: 1rem;
}
body .content-wrap form .link-btn a,
body .content-wrap form .link-btn input[type=submit] {
  display: block;
  background-color: #005098;
  color: white;
  position: relative;
  text-align: center;
  padding: 1rem;
  font-size: 1rem;
  width: 350px;
  margin: 0 auto;
  border-radius: 100rem;
}
body .content-wrap form .link-btn a::after,
body .content-wrap form .link-btn input[type=submit]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: rotate(45deg) translateY(-50%);
  width: 8px;
  height: 8px;
  border-width: 2px 2px 0 0;
  border-style: solid;
}
body .content-wrap .scroll-wrap {
  height: 300px;
  overflow: auto;
  border: 1px solid #D6D6D6;
  padding: 1.5rem;
  background: white;
}
body .content-wrap .scroll-wrap h5 {
  padding-bottom: 1rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 500;
}
body .content-wrap .scroll-wrap p {
  padding-bottom: 1rem;
  line-height: 1.8;
}
body .content-wrap .accordion-wrap .card {
  margin-bottom: 2rem;
  border: none;
  border-radius: 0;
}
body .content-wrap .accordion-wrap .card-header {
  background: white;
  margin-bottom: 0;
  border: 2px solid #005098;
}
body .content-wrap .accordion-wrap .card-header .btn-link {
  position: relative;
  width: 100%;
  color: #005098;
  font-size: 1.2rem;
  text-align: left;
  font-weight: 500;
  text-decoration: none;
  padding: 0;
}
body .content-wrap .accordion-wrap .card-header .btn-link:focus {
  box-shadow: none;
}
body .content-wrap .accordion-wrap .card-header .btn-link::before, body .content-wrap .accordion-wrap .card-header .btn-link::after {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 2px;
  background-color: #005098;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
body .content-wrap .accordion-wrap .card-header .btn-link::after {
  transform: translateY(-50%) rotate(90deg);
}
body .content-wrap .accordion-wrap .card-header .btn-link.collapsed::before {
  opacity: 1;
}
body .content-wrap .accordion-wrap .card-header .btn-link.collapsed::after {
  transform: translateY(-50%) rotate(90deg);
}
body .content-wrap .accordion-wrap .card-header .btn-link:not(.collapsed)::before {
  opacity: 1;
}
body .content-wrap .accordion-wrap .card-header .btn-link:not(.collapsed)::after {
  transform: translateY(-50%) rotate(0deg);
}
body .content-wrap .accordion-wrap .card-body {
  padding: 1.5rem 2rem;
}
body .content-wrap .accordion-wrap .card-body > img {
  display: block;
  width: 50%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
body .content-wrap .accordion-wrap .card-body .text-detail {
  padding-bottom: 2rem;
}
body .content-wrap .accordion-wrap .card-body .text-detail p {
  padding-left: 2em;
  text-indent: -2em;
}
body .content-wrap .map {
  aspect-ratio: 16/8;
}
body .content-wrap .map iframe {
  width: 100%;
  height: 100%;
  max-height: 500px;
}
body footer.footer .inner {
  width: 100%;
  max-width: 1110px;
  margin: 0 auto;
  padding: 4rem 0;
}
@media screen and (min-width: 678px) and (max-width: 1024px) {
  body footer.footer .inner.inner {
    padding: 4rem 40px;
  }
}
body footer.footer .inner .flex-wrap {
  display: flex;
  justify-content: space-between;
  padding-bottom: 2rem;
}
body footer.footer .inner .flex-wrap .info {
  width: 50%;
}
body footer.footer .inner .flex-wrap .info .logo img {
  display: block;
  padding-bottom: 2rem;
  width: 100%;
  max-width: 355px;
}
body footer.footer .inner .flex-wrap .info .add h1 {
  font-weight: bold;
  line-height: 2;
}
body footer.footer .inner .flex-wrap .info .add > p {
  font-size: 0.9rem;
}
body footer.footer .inner .flex-wrap .contact a, body footer.footer .inner .flex-wrap .contact .btn {
  display: block;
  position: relative;
  border: 1px solid #005098;
  background-color: #005098;
  border-radius: 100rem;
  width: 350px;
  padding: 1.5rem 0;
  color: white;
  text-align: center;
  transition: all 0.3s;
}
body footer.footer .inner .flex-wrap .contact a::after, body footer.footer .inner .flex-wrap .contact .btn::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 2em;
  transform: translateY(-50%);
  display: block;
  width: 30px;
  height: 30px;
  padding: 8px;
  line-height: 1;
  border-radius: 100rem;
  background: white;
  color: #005098;
  font-size: 14px;
}
body footer.footer .inner .flex-wrap .contact a:hover, body footer.footer .inner .flex-wrap .contact a:focus, body footer.footer .inner .flex-wrap .contact .btn:hover, body footer.footer .inner .flex-wrap .contact .btn:focus {
  background: white;
  color: #005098;
  text-decoration: none;
  opacity: 0.8;
  box-shadow: none;
}
body footer.footer .inner .flex-wrap .contact a:hover::after, body footer.footer .inner .flex-wrap .contact a:focus::after, body footer.footer .inner .flex-wrap .contact .btn:hover::after, body footer.footer .inner .flex-wrap .contact .btn:focus::after {
  background-color: #005098;
  color: white;
}
body footer.footer .inner .flex-wrap .contact a.btn-close, body footer.footer .inner .flex-wrap .contact .btn.btn-close {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  width: 75px;
}
body footer.footer .inner .flex-wrap .contact a.btn-close::after, body footer.footer .inner .flex-wrap .contact .btn.btn-close::after {
  display: none;
}
@media screen and (min-width: 678px) and (max-width: 1024px) {
  body footer.footer .inner .flex-wrap .contact .btn {
    width: 280px;
  }
}
body footer.footer .inner .copyright p {
  font-size: 0.9rem;
}
body .modal-dialog-centered {
  max-width: 800px;
}
body .modal-content {
  padding: 0 2rem;
}
body .modal-content .modal-header .close:focus {
  outline: none;
}
body .modal-content .modal-body > h5 {
  border-left: 5px solid #005098;
  padding-left: 0.5rem;
  font-size: 1.2rem;
}
body .modal-content .modal-body > ul {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 0 2rem;
}
body .modal-content .modal-body > ul li {
  width: calc(50% - 15px);
}
body .modal-content .modal-body > ul li a {
  display: block;
  position: relative;
  padding: 0.5rem;
  text-align: center;
  border: 1px solid #005098;
  border-radius: 100rem;
  font-weight: 600;
  color: #4C4948;
  transition: all 0.3s;
}
body .modal-content .modal-body > ul li a:hover {
  background-color: #005098;
  color: white !important;
}
body #page-top {
  display: none;
  /* 初期状態では非表示 */
  position: fixed;
  bottom: 50px;
  right: 50px;
  /* ここにボタンのスタイルを追加 */
  transition: opacity 0.5s ease-in-out;
  /* フェードイン/フェードアウトのエフェクト */
}
body #page-top a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #4C4948;
  border-radius: 100rem;
  width: 80px;
  height: 80px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}
body #page-top a::before {
  content: url(../img/aroow_top.svg);
  display: block;
}
body #page-top a:hover {
  background: #777;
}
body #page-top {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 2;
  opacity: 0;
  transform: translateY(100px);
}
body #page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body #page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
body .modal-backdrop {
  z-index: 0;
}