@charset "UTF-8";
@font-face {
  font-family: "Arial Black";
  font-style: normal;
  font-weight: 400;
  src: local("Arial Black"), url("ariblk_0.ttf") format("ttf");
}
select::-ms-expand {
  display: none;
}

html {
  height: 100%;
  font-size: 62.5%;
  background: #fff;
  overflow-y: scroll;
}
@media (max-width: 480px) {
  html {
    font-size: 87.5%;
    overflow-y: inherit;
  }
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
input,
textarea,
p,
th,
td {
  padding: 0;
  margin: 0;
}

address,
caption,
em,
strong,
th {
  font-style: normal;
}

caption,
th {
  text-align: left;
}

hr,
legend {
  display: none;
}

figure {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

li {
  list-style-type: none;
}

table,
ol,
ul,
dl,
blockquote,
pre {
  margin-bottom: 0px;
}

p {
  margin-bottom: 0;
}

a img,
fieldset {
  border: none;
}

article,
aside,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

a:link {
  color: #3F464B;
  text-decoration: none;
}

a:visited {
  color: #3F464B;
  text-decoration: none;
}

* {
  box-sizing: border-box;
  word-wrap: break-word;
}

img {
  width: 100%;
  display: block;
}

#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
	perspective: 1000px;
}

#loading-image {
  width: 100px; /* のサイズを指定 */
  /* animation: spin 2s ease-in-out infinite;*/
  animation: loadingSpin 2s ease-in-out infinite;
	/*transform-style: preserve-3d;*/
}
@media (max-width: 480px) {
  #loading-image {
    width: 18.6666666667vw;
  }
}

@keyframes loadingSpin {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
/*-----------------------------------------*/
@media (max-width: 480px) {
  .only-pc {
    display: none;
  }
}

.only-sp {
  display: none;
}
@media (max-width: 480px) {
  .only-sp {
    display: block;
  }
}

.txt_b {
  font-weight: bold;
  margin: 0 3px;
}

.font-b {
  font-weight: bold;
}

.roboto {
  font-family: "Roboto Condensed", serif;
}

.serif {
  font-family: "Noto Serif JP", serif;
}

.t-center {
  text-align: center;
}

.w1200 {
  max-width: 1200px;
  margin: 0 auto;
}

.font-color_b {
  color: #2A9BCB;
}

.box-list {
  width: 900px;
  margin: 0 auto;
  padding-top: 80px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .box-list {
    width: 100%;
    padding-top: 10.6666666667vw;
  }
}
.box-list .box-list-slick {
  width: 670px;
}
@media (max-width: 480px) {
  .box-list .box-list-slick {
    width: 100%;
    margin-bottom: 4vw;
  }
}
.box-list .box-list-slick li {
  position: relative;
}
.box-list .box-list-slick li span {
  position: absolute;
  font-size: 1.8rem;
  color: #fff;
  background-color: #0C3471;
  border-radius: 10px;
  padding: 2px 14px;
  left: 20px;
  top: 20px;
}
@media (max-width: 480px) {
  .box-list .box-list-slick li span {
    font-size: 3.4666666667vw;
    border-radius: 1.3333333333vw;
    padding: 0.8vw 4vw;
    left: 2.6666666667vw;
    top: 2.6666666667vw;
  }
}
.box-list .box-list-slick li p {
  margin-top: 20px;
}
.box-list .box-list-slick .slick-slide {
  overflow: hidden;
}
.box-list .box-list-slick .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.box-list .thumbs_dots {
  width: 220px;
}
@media (max-width: 480px) {
  .box-list .thumbs_dots {
    width: 100%;
  }
}
.box-list .thumbs_list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px 0;
}
@media (max-width: 480px) {
  .box-list .thumbs_list {
    flex-direction: row;
    gap: 1.3333333333vw 1.3%;
  }
}
.box-list .thumbs_list li {
  display: inline-block;
  width: 100%;
  height: 160px;
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media (max-width: 480px) {
  .box-list .thumbs_list li {
    width: 24%;
    height: 21.3333333333vw;
  }
}
.box-list .thumbs_list li.slick-active {
  opacity: 1;
}

.btn-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 70px;
}
@media (max-width: 480px) {
  .btn-list {
    justify-content: flex-start;
    gap: 2.6666666667vw 1.5%;
    padding: 0 5.3333333333vw;
    margin-top: 8vw;
  }
}
.btn-list .btn01 {
  width: 228px;
  text-align: center;
}
@media (max-width: 480px) {
  .btn-list .btn01 {
    width: 32%;
    height: 13.3333333333vw;
    margin: 0;
  }
}
@media (max-width: 480px) {
  .btn-list .btn01.col2 {
    width: 66%;
  }
}
.btn-list .btn01 .btn01__link {
  padding: 0 10px;
  justify-content: center;
  padding-right: 20px;
}
@media (max-width: 480px) {
  .btn-list .btn01 .btn01__link {
    font-size: 2.9333333333vw;
    padding-right: 6.6666666667vw;
    line-height: 1.4;
  }
}
.btn-list .btn01 .btn01__link::before {
  right: 15px;
}
@media (max-width: 480px) {
  .btn-list .btn01 .btn01__link::before {
    right: 1.6vw;
  }
}
.btn-list .btn01 .btn01__link::after {
  right: 19px;
}
@media (max-width: 480px) {
  .btn-list .btn01 .btn01__link::after {
    right: 2.4vw;
  }
}
@media (min-width: 896px) {
  .btn-list .btn01 .btn01__link:hover::before {
    right: 18px;
  }
  .btn-list .btn01 .btn01__link:hover::after {
    right: 17px;
  }
}

.btn01 {
  width: 264px;
  height: 74px;
}
@media (max-width: 480px) {
  .btn01 {
    width: 60.2666666667vw;
    height: 14.6666666667vw;
    margin: 0 auto;
  }
}
.btn01 .btn01__link {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  font-weight: 700;
  color: #0C3471;
  border: 1px solid #0C3471;
  background-color: #fff;
  border-radius: 40px;
  padding: 0 40px;
  letter-spacing: 1px;
}
@media (max-width: 480px) {
  .btn01 .btn01__link {
    border-width: 0.2666666667vw;
    border-radius: 10.6666666667vw;
    padding: 0 8vw;
  }
}
.btn01 .btn01__link::before, .btn01 .btn01__link::after {
  position: absolute;
  content: " ";
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.btn01 .btn01__link::before {
  width: 14px;
  height: 14px;
  border: 1px solid #798dac;
  right: 30px;
  transition: width 0.3s, height 0.3s, right 0.3s;
  z-index: 10;
}
@media (max-width: 480px) {
  .btn01 .btn01__link::before {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    right: 2.6666666667vw;
  }
}
.btn01 .btn01__link::after {
  width: 8px;
  height: 8px;
  background-color: #0C3471;
  right: 34px;
  transition: width 0.3s, height 0.3s, right 0.3s;
}
@media (max-width: 480px) {
  .btn01 .btn01__link::after {
    width: 1.6vw;
    height: 1.6vw;
    right: 3.4666666667vw;
  }
}
@media (min-width: 896px) {
  .btn01 .btn01__link {
    transition: color 0.4s, background-color 0.4s, border-color 0.4s;
  }
  .btn01 .btn01__link:hover {
    color: #fff;
    background-color: #0C3471;
    border-color: #fff;
  }
  .btn01 .btn01__link:hover::before {
    width: 10px;
    height: 10px;
    border-color: #0C3471;
    right: 31px;
  }
  .btn01 .btn01__link:hover::after {
    width: 14px;
    height: 14px;
    background-color: #fff;
    right: 30px;
  }
}

.ttl01-block {
  position: relative;
  margin-bottom: 60px;
  z-index: 1;
}
@media (max-width: 480px) {
  .ttl01-block {
    padding: 0 5.3333333333vw;
    margin-bottom: 8vw;
  }
}
.ttl01-block.animate .ttl01-block__ttlen {
  opacity: 0;
  transform: translateX(-80px);
  transition: transform 0.6s, opacity 0.4s;
}
.ttl01-block.animate .ttl01-block__ttl {
  opacity: 0;
  transform: translateX(60px);
  transition: transform 0.6s, opacity 0.4s;
}
.ttl01-block.animate .ttl01-block__txt {
  opacity: 0;
  transform: translateY(60px);
  transition: transform 0.6s 0.6s, opacity 0.4s 0.6s;
}
.ttl01-block.effect .ttl01-block__ttlen {
  opacity: 0.1;
  transform: translateX(0);
}
.ttl01-block.effect .ttl01-block__ttl {
  opacity: 1;
  transform: translateX(0);
}
.ttl01-block.effect .ttl01-block__txt {
  opacity: 1;
  transform: translateY(0);
}
.ttl01-block .ttl01-block__ttlen {
  position: absolute;
  width: 1460px;
  font-size: 20rem;
  font-weight: 700;
  color: #2A9BCB;
  top: -110px;
  left: -120px;
  opacity: 0.1;
  z-index: -1;
  line-height: 1;
  letter-spacing: 0;
}
@media (max-width: 480px) {
  .ttl01-block .ttl01-block__ttlen {
    width: 186.6666666667vw;
    font-size: 24vw;
    top: -10.6666666667vw;
    left: -1.3333333333vw;
    letter-spacing: 0.5333333333vw;
  }
}
.ttl01-block .ttl01-block__ttl {
  font-size: 4.2rem;
  font-weight: 700;
  color: #333;
}
@media (max-width: 480px) {
  .ttl01-block .ttl01-block__ttl {
    font-size: 6.4vw;
  }
}
.ttl01-block .ttl01-block__txt {
  padding-top: 30px;
}
@media (max-width: 480px) {
  .ttl01-block .ttl01-block__txt {
    padding-top: 8vw;
  }
}

.ttl02-block {
  position: relative;
  line-height: 1;
  text-align: center;
}
.ttl02-block .ttl02-block__sub {
  font-size: 7rem;
  font-weight: 700;
  color: #2A9BCB;
  opacity: 0.1;
  letter-spacing: 8px;
  line-height: 0.8;
}
@media (max-width: 480px) {
  .ttl02-block .ttl02-block__sub {
    position: absolute;
    font-size: 10.6666666667vw;
    letter-spacing: 0.2666666667vw;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.ttl02-block .ttl02-block__main {
  position: absolute;
  font-size: 3.2rem;
  font-weight: bold;
  color: #0C3471;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 480px) {
  .ttl02-block .ttl02-block__main {
    position: unset;
    font-size: 6.1333333333vw;
    transform: none;
  }
}

.ttl03-block {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .ttl03-block {
    padding: 0 5.3333333333vw;
  }
}

.pagination {
  background-color: #F1F4F8;
  width: 100%;
  margin: 60px 0; /* 上下のマージンをしっかり確保 */
  display: flex;
  justify-content: center; /* 横方向の中央寄せ */
}
.pagination .pagination__in {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: space-between;
  width: 100%;
}

.pagination .page-numbers {
  display: inline-block;
  margin: 0 8px; /* 各数字の左右にしっかりマージンをとる */
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  border: 1px solid #333; /* 基本は枠あり */
  background-color: #fff;
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
    border: none; /* 枠線を消す */
    background: transparent; /* 背景も透明に */
    padding: 10px 5px; /* 余白を微調整 */
}
.pagination .page-numbers.current {
  background-color: #333;
  color: #fff;
  border: 1px solid #333; /* 現在地は目立つように枠あり */
}
.pagination a.page-numbers:not(.prev):not(.next):hover {
  background-color: #eee;
}

.pagination a.prev:hover,
.pagination a.next:hover {
  opacity: 0.6; /* テキストだけのボタンは不透明度でホバーを表現 */
  text-decoration: underline;
}
@media (min-width: 896px) {
  .pagination .pagination__item:hover {
    opacity: 0.5;
  }
}


/*-----------------------------------------*/
body {
  position: relative;
  -webkit-text-size-adjust: none;
  min-width: 1200px;
  height: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #54657E;
  letter-spacing: 2px;
  line-height: 1.8;
  margin: 0px;
  background: #fff;
}
@media (max-width: 480px) {
  body {
    font-size: 3.7333333333vw;
    min-width: 100%;
    line-height: 1.8;
    letter-spacing: 0.5333333333vw;
    overflow-x: hidden;
  }
}

.header {
  width: 100%;
  background-color: rgba(255, 255, 255, 0);
  transition: background-color 0.3s;
  margin-bottom: 10px;
  z-index: 10000;
}
@media (max-width: 480px) {
  .header {
    width: 100%;
    padding: 0;
    margin-bottom: 5.3333333333vw;
  }
}
@media (min-width: 896px) {
  .header.active {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
.header.active .header__logo {
  color: #1b2025;
}
.header.active .smoothlist__link {
  color: #333;
}
@media (min-width: 896px) {
  .header.active .smoothlist__link.contact {
    background-color: #fff;
    border-color: #1b2025;
  }
}
@media (min-width: 896px) {
  .header.active .smoothlist__link::before {
    background-color: #1b2025;
  }
}
.header .header__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 10px 30px;
}
@media (max-width: 480px) {
  .header .header__inner {
    width: 100%;
    padding: 2.6666666667vw 8vw 0 4vw;
  }
}
.header .header__logo {
  width: 227px;
}
@media (max-width: 480px) {
  .header .header__logo {
    width: 40vw;
    padding-top: 1.3333333333vw;
  }
}
.header .header__logo--img {
  width: 100%;
}
@media (max-width: 480px) {
  .nav-block {
    position: absolute;
    width: 90vw;
    transform: translateX(110%);
  }
}

.gnavi {
  display: flex;
}
.gnavi .gnavi__item:not(:last-child) {
  margin-right: 30px;
}
@media (max-width: 480px) {
  .gnavi .gnavi__item:not(:last-child) {
    margin-right: 0;
  }
}
.gnavi .gnavi__link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  padding: 5px;
}
@media (max-width: 480px) {
  .gnavi .gnavi__link {
    font-size: 4.8vw;
  }
}
.gnavi .gnavi__link::before {
  position: absolute;
  content: " ";
  width: 0;
  height: 2px;
  background-color: #000;
  right: 0;
  bottom: 0;
  transition: width 0.3s;
}
.gnavi .gnavi__link:hover::before {
  width: 100%;
  left: 0;
  transition: width 0.3s;
}

@media (max-width: 480px) {
  .smoothNav .smoothNav2 {
    position: fixed;
    width: 100vw;
    height: 100vh;
    padding: 14.6666666667vw 5.3333333333vw 9.3333333333vw 24vw;
    transform: translateX(110%);
    background-color: #F1F4F8;
    transition: transform 0.3s;
    top: 0;
    right: 0;
    z-index: 1000;
  }
}
@media (max-width: 480px) {
  .smoothNav .smoothNav2::after {
    position: absolute;
    content: "CONTENTS";
    font-size: 24vw;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    color: #2A9BCB;
    transform: rotate(90deg) translate(50%, 232%);
    opacity: 0.1;
    top: 0;
    left: -10.6666666667vw;
    line-height: 1;
  }
}
.smoothNav .openbtn {
  display: none;
}
@media (max-width: 480px) {
  .smoothNav .openbtn {
    position: fixed;
    content: " ";
    font-family: "Roboto", sans-serif;
    display: block;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    width: 12vw;
    height: 12vw;
    top: 1.8666666667vw;
    right: 2.6666666667vw;
    transition: top 0.2s, right 0.3s, opacity 0.3s, border-radius 0.1s;
    color: #fff;
    z-index: 1000;
  }
}
@media (max-width: 480px) {
  .smoothNav .openbtn:before, .smoothNav .openbtn:after {
    position: absolute;
    content: " ";
    background-color: #000;
    width: 9.3333333333vw;
    height: 0.2666666667vw;
    transform: translate(-50%, -50%);
    transition: transform 0.2s, top 0.2s 0.2s;
    top: 50%;
    left: 50%;
  }
}
.smoothNav .openbtn:before {
  top: calc(50% - 1.0666666667vw);
}
.smoothNav .openbtn:after {
  top: calc(50% + 1.0666666667vw);
}
.smoothNav .openbtn span.close-change {
  position: absolute;
  color: #000;
  bottom: 0.5333333333vw;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.1333333333vw;
  letter-spacing: 0;
}
.smoothNav.openbtn-active .smoothNav2 {
  transform: translateX(0);
  transition: transform 0.4s;
}
@media (max-width: 480px) {
  .smoothNav.openbtn-active .smoothlist__item {
    transform: translateX(0);
    opacity: 1;
    transition: transform 0.3s, opacity 0.6s;
  }
}
@media (max-width: 480px) {
  .smoothNav.openbtn-active .smoothlist__item:nth-child(1) {
    transition-delay: 0.3s;
  }
}
@media (max-width: 480px) {
  .smoothNav.openbtn-active .smoothlist__item:nth-child(2) {
    transition-delay: 0.5s;
  }
}
@media (max-width: 480px) {
  .smoothNav.openbtn-active .smoothlist__item:nth-child(3) {
    transition-delay: 0.6s;
  }
}
@media (max-width: 480px) {
  .smoothNav.openbtn-active .smoothlist__item:nth-child(4) {
    transition-delay: 0.8s;
  }
}
@media (max-width: 480px) {
  .smoothNav.openbtn-active .smoothlist__item:nth-child(5) {
    transition-delay: 1s;
  }
}
@media (max-width: 480px) {
  .smoothNav.openbtn-active .smoothlist__item:nth-child(6) {
    transition-delay: 1.2s;
  }
}
.smoothNav.openbtn-active .openbtn:before, .smoothNav.openbtn-active .openbtn:after {
  top: calc(50% - 8px);
  width: 27px;
  transition: transform 0.2s 0.2s, top 0.2s;
}
@media (max-width: 480px) {
  .smoothNav.openbtn-active .openbtn:before, .smoothNav.openbtn-active .openbtn:after {
    top: 50%;
    width: 9.3333333333vw;
  }
}
.smoothNav.openbtn-active .openbtn:before {
  transform: translate(-50%, -50%) rotate(15deg);
}
.smoothNav.openbtn-active .openbtn:after {
  transform: translate(-50%, -50%) rotate(-15deg);
}
.smoothNav.openbtn-active span.close-change {
  font-size: 0;
}
.smoothNav.openbtn-active span.close-change::before {
  font-size: 1.1rem;
  content: "CLOSE";
}
@media (max-width: 480px) {
  .smoothNav.openbtn-active span.close-change::before {
    font-size: 2.1333333333vw;
  }
}
.smoothNav .smoothlist {
  display: flex;
  gap: 0 25px;
}
@media (max-width: 480px) {
  .smoothNav .smoothlist {
    flex-direction: column;
    gap: 0;
  }
}
.smoothNav .smoothlist__item {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .smoothNav .smoothlist__item {
    display: block;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0s, opacity 0s;
  }
}
@media (max-width: 480px) {
  .smoothNav .smoothlist__item.mark {
    margin-top: 5.3333333333vw;
  }
}
.smoothNav .smoothlist__item.mark .smoothlist__link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  background-color: #EC681B;
  border: 1px solid #EC681B;
  border-radius: 20px;
  padding: 5px 25px;
  transition: background-color 0.3s, border 0.3s;
}
@media (max-width: 480px) {
  .smoothNav .smoothlist__item.mark .smoothlist__link {
    width: 100%;
    border-radius: 2.6666666667vw;
    padding: 2.6666666667vw 0;
  }
}
@media (min-width: 896px) {
  .smoothNav .smoothlist__item.mark .smoothlist__link:hover {
    color: #EC681B;
    background-color: #fff;
  }
}
@media (max-width: 480px) {
  .smoothNav .smoothlist__item:not(.mark) .smoothlist__link {
    padding: 5.3333333333vw 2.6666666667vw;
    border-top: 1px solid #D9D9D9;
  }
}
.smoothNav .smoothlist__item:not(.mark) .smoothlist__link:hover::before {
  width: 100%;
  left: 0;
  transition: width 0.3s;
}
.smoothNav .smoothlist__link {
  position: relative;
  display: block;
  color: #333;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 4px 2px;
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0;
}
@media (max-width: 480px) {
  .smoothNav .smoothlist__link {
    font-size: 3.7333333333vw;
    font-weight: bold;
    line-height: 1;
    z-index: 1;
  }
}
.smoothNav .smoothlist__link::before {
  position: absolute;
  content: " ";
  width: 0;
  height: 2px;
  background-color: #0C3471;
  right: 0;
  bottom: 0;
  transition: width 0.3s;
}
@media (max-width: 480px) {
  .smoothNav .smoothlist__link::before {
    display: none;
  }
}
.smoothNav .smoothlist__linksub {
  display: none;
}
@media (max-width: 480px) {
  .smoothNav .smoothlist__linksub {
    display: block;
    font-size: 2.6666666667vw;
    color: #ffb03c;
    margin-bottom: 3.2vw;
  }
}
.smoothNav .smoothlist__linkin {
  display: inline-block;
}
@media (max-width: 480px) {
  .smoothNav .smoothlist__linkin {
    display: inline-block;
    padding-left: 0;
  }
}
.smoothNav .smoothbtn {
  width: 300px;
  margin: 0 auto 20px;
}
@media (max-width: 480px) {
  .smoothNav .smoothbtn {
    width: 100%;
    margin-bottom: 8vw;
  }
}
.smoothNav .smoothbtn__link {
  position: relative;
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  background-color: #ff7e02;
  border-radius: 23px;
  padding: 10px 0;
}
@media (max-width: 480px) {
  .smoothNav .smoothbtn__link {
    font-size: 5.3333333333vw;
    font-weight: bold;
    border-radius: 13.3333333333vw;
    padding: 5.3333333333vw 0;
    line-height: 1.3;
  }
}
.smoothNav .smoothbtn__link::before, .smoothNav .smoothbtn__link::after {
  position: absolute;
  content: " ";
  top: 50%;
  transform: translateY(-50%);
}
.smoothNav .smoothbtn__link::before {
  width: 13px;
  height: 13px;
  background-color: #17b0ab;
  border-radius: 50%;
  right: 15px;
}
@media (max-width: 480px) {
  .smoothNav .smoothbtn__link::before {
    width: 7.4666666667vw;
    height: 7.4666666667vw;
    right: 4vw;
  }
}
.smoothNav .smoothbtn__link::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent #ff7e02;
  right: 18px;
}
@media (max-width: 480px) {
  .smoothNav .smoothbtn__link::after {
    border-width: 2.1333333333vw 0 2.1333333333vw 2.9333333333vw;
    right: 5.8666666667vw;
  }
}
.smoothNav .smoothbtn__inpuilylink {
  border: 1px solid #333;
  background-color: #fff;
  padding: 15px 40px 10px;
  display: block;
  pointer-events: none;
}
@media (max-width: 480px) {
  .smoothNav .smoothbtn__inpuilylink {
    pointer-events: auto;
    padding: 5.3333333333vw 8vw;
  }
}
.smoothNav .closebtn {
  position: relative;
  width: 200px;
  color: #fff;
  display: none;
  padding: 8px 0;
  margin: 0 auto;
  text-align: center;
  background-color: #666;
  border-radius: 20px;
  border: none;
  transition: opacity 0.3s;
}
@media (max-width: 480px) {
  .smoothNav .closebtn {
    display: block;
    font-size: 3.4666666667vw;
    width: 80%;
    padding: 2.1333333333vw 0;
    border-radius: 2.6666666667vw;
    margin-top: 10.6666666667vw;
  }
}
@media (min-width: 896px) {
  .smoothNav .closebtn:hover {
    opacity: 0.7;
  }
}
.smoothNav .closebtn .fas {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.header-content {
  position: relative;
  padding: 100px 0;
  background: url(../img/header-img01.jpg) no-repeat center bottom/cover;
  z-index: 1;
}
@media (max-width: 480px) {
  .header-content {
    padding: 10.6666666667vw 0;
  }
}
.header-content .header-content__in {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .header-content .header-content__in {
    padding: 0 5.3333333333vw;
  }
}
.header-content .header-content__ttl {
  font-size: 2.8rem;
  font-weight: 700;
  color: #0C3471;
}
@media (max-width: 480px) {
  .header-content .header-content__ttl {
    font-size: 5.8666666667vw;
  }
}

.breadcrumb {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .breadcrumb {
    padding: 0 2.6666666667vw;
  }
}
.breadcrumb .breadcrumb__item {
  font-size: 1.4rem;
  color: #54657E;
}
@media (max-width: 480px) {
  .breadcrumb .breadcrumb__item {
    font-size: 2.6666666667vw;
  }
}

@media (max-width: 480px) {
  .top-msg {
    font-size: 3.2vw;
    padding: 0 8vw;
  }
}

.ttl-box01 {
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .ttl-box01 {
    padding: 0 5.3333333333vw;
  }
}

.ttl01 {
  position: relative;
  font-size: 4.2rem;
  font-weight: bold;
  color: #0C3471;
  line-height: 1;
}
@media (max-width: 480px) {
  .ttl01 {
    font-size: 5.6vw;
  }
}
.ttl01.bg01::after {
  position: absolute;
  width: 577px;
  height: 253px;
  content: " ";
  background-image: url(../img/ttl-bg01.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media (max-width: 480px) {
  .ttl01.bg01::after {
    width: 40vw;
    height: 17.3333333333vw;
  }
}

.ttl02 {
  font-size: 2rem;
  color: #0C3471;
}
@media (max-width: 480px) {
  .ttl02 {
    font-size: 4vw;
  }
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

@media (max-width: 480px) {
  .sp-mb10 {
    margin-bottom: 2.6666666667vw;
  }
}

@media (max-width: 480px) {
  .sp-mb20 {
    margin-bottom: 5.3333333333vw;
  }
}

@media (max-width: 480px) {
  .sp-mb30 {
    margin-bottom: 8vw;
  }
}

@media (max-width: 480px) {
  .sp-mb40 {
    margin-bottom: 10.6666666667vw;
  }
}

@media (max-width: 480px) {
  .sp-mb50 {
    margin-bottom: 13.3333333333vw;
  }
}

@media (max-width: 480px) {
  .sp-mb60 {
    margin-bottom: 16vw;
  }
}

@media (max-width: 480px) {
  .sp-mb70 {
    margin-bottom: 18.6666666667vw;
  }
}

@media (max-width: 480px) {
  .sp-mb80 {
    margin-bottom: 21.3333333333vw;
  }
}

.pt10 {
  padding-top: 10px;
}

.pt20 {
  padding-top: 20px;
}

.pt30 {
  padding-top: 30px;
}

.pt40 {
  padding-top: 40px;
}

.pt50 {
  padding-top: 50px;
}

.pt60 {
  padding-top: 60px;
}

.pt70 {
  padding-top: 70px;
}

.pt80 {
  padding-top: 80px;
}

.pt120 {
  padding-top: 120px;
}

@media (max-width: 480px) {
  .sp-pt10 {
    padding-top: 2.6666666667vw !important;
  }
}

@media (max-width: 480px) {
  .sp-pt20 {
    padding-top: 5.3333333333vw !important;
  }
}

@media (max-width: 480px) {
  .sp-pt30 {
    padding-top: 8vw !important;
  }
}

@media (max-width: 480px) {
  .sp-pt40 {
    padding-top: 10.6666666667vw !important;
  }
}

@media (max-width: 480px) {
  .sp-pt50 {
    padding-top: 13.3333333333vw !important;
  }
}

@media (max-width: 480px) {
  .sp-pt60 {
    padding-top: 16vw !important;
  }
}

@media (max-width: 480px) {
  .sp-pt70 {
    padding-top: 18.6666666667vw !important;
  }
}

@media (max-width: 480px) {
  .sp-pt80 {
    padding-top: 21.3333333333vw !important;
  }
}

@media (max-width: 480px) {
  .sp-pt60 {
    padding-top: 16vw !important;
  }
}

.pb10 {
  padding-bottom: 10px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb50 {
  padding-bottom: 50px;
}

.pb60 {
  padding-bottom: 60px;
}

.pb70 {
  padding-bottom: 70px;
}

.pb80 {
  padding-bottom: 80px;
}

@media (max-width: 480px) {
  .sp-pb10 {
    padding-bottom: 2.6666666667vw;
  }
}

@media (max-width: 480px) {
  .sp-pb20 {
    padding-bottom: 5.3333333333vw;
  }
}

@media (max-width: 480px) {
  .sp-pb30 {
    padding-bottom: 8vw;
  }
}

@media (max-width: 480px) {
  .sp-pb40 {
    padding-bottom: 10.6666666667vw;
  }
}

@media (max-width: 480px) {
  .sp-pb50 {
    padding-bottom: 13.3333333333vw;
  }
}

@media (max-width: 480px) {
  .sp-pb60 {
    padding-bottom: 16vw;
  }
}

@media (max-width: 480px) {
  .sp-pb70 {
    padding-bottom: 18.6666666667vw;
  }
}

@media (max-width: 480px) {
  .sp-pb80 {
    padding-bottom: 21.3333333333vw;
  }
}

@media (max-width: 480px) {
  .sp-pb60 {
    padding-bottom: 16vw;
  }
}

.section {
  padding: 100px 0;
  overflow: hidden;
}
@media (max-width: 480px) {
  .section {
    padding: 16vw 0;
  }
}
.section.bg01 {
  background-color: #F1F4F8;
}
.section .section__in {
  position: relative;
  max-width: 1200px;
  width: calc(100% - 20px);
  margin: 0 auto;
  z-index: 1;
}
@media (max-width: 480px) {
  .section .section__in {
    width: 100%;
    padding: 0 5.3333333333vw;
  }
}
.section .section__in.w_free {
  max-width: 100%;
  width: 100%;
}
@media (max-width: 480px) {
  .section .section__in.w_free {
    padding: 0;
  }
}
.section .section-ttl {
  position: relative;
  color: #3F464B;
  padding-top: 20px;
  padding-bottom: 65px;
  margin-bottom: 5px;
}
@media (max-width: 480px) {
  .section .section-ttl {
    padding-top: 8vw;
    margin-bottom: 9.3333333333vw;
    text-align: center;
  }
}
.section .section-ttl::after {
  position: absolute;
  content: " ";
  width: 2px;
  height: 50px;
  background-color: #dadada;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.section .section-ttl__ico {
  position: absolute;
  width: 20px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 480px) {
  .section .section-ttl__ico {
    width: 8vw;
  }
}
.section .section-ttl__main {
  height: 35px;
  margin: 0 auto -6px;
}
@media (max-width: 480px) {
  .section .section-ttl__main {
    height: 9.3333333333vw;
    margin-top: -1.6vw;
  }
}
.section .section-ttl__main img {
  width: auto;
  height: 100%;
  margin: 0 auto;
}
.section .section-ttl__sub {
  font-size: 1.6rem;
  top: 0;
  left: 0;
  line-height: 1;
}
@media (max-width: 480px) {
  .section .section-ttl__sub {
    font-size: 4.5333333333vw;
  }
}

.table_base {
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .table_base {
    width: 100%;
  }
}
.table_base table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
}
@media (max-width: 480px) {
  .table_base table {
    border: 0;
  }
}
.table_base table td,
.table_base table th {
  font-weight: normal;
  padding: 25px 0;
}
@media (max-width: 480px) {
  .table_base table td,
  .table_base table th {
    font-weight: normal;
    border: 0;
    padding: 3.2vw;
    display: block;
  }
}
.table_base table tbody th {
  width: 21%;
  border-bottom: solid 1px #54657E;
}
@media (max-width: 480px) {
  .table_base table tbody th {
    text-align: left;
    width: 100%;
    background: #f1f1f1;
  }
}
.table_base table tbody td {
  padding: 25px 0;
  border-bottom: solid 1px #54657E;
}
@media (max-width: 480px) {
  .table_base table tbody td {
    padding: 5.3333333333vw 3.2vw;
  }
}
.table_base table dd {
  margin-bottom: 10px;
  padding-bottom: 10px;
}
@media (max-width: 480px) {
  .table_base table dd {
    margin-bottom: 2.6666666667vw;
    padding-bottom: 2.6666666667vw;
  }
}
.table_base table dd:last-child {
  margin-bottom: 0;
  padding: 0;
  border: 0;
}

.contact-block {
  position: relative;
  padding-bottom: 80px;
}
@media (max-width: 480px) {
  .contact-block {
    padding-bottom: 18.6666666667vw;
  }
}
.contact-block::after {
  position: absolute;
  width: 577px;
  height: 253px;
  content: " ";
  background-image: url(../img/ttl-bg01.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: calc(50% + 100px);
}
@media (max-width: 480px) {
  .contact-block::after {
    content: none;
    width: 40vw;
    height: 17.3333333333vw;
    left: auto;
    right: 0;
  }
}
.contact-block .ttl01-block {
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .contact-block .ttl01-block {
    margin-bottom: 2.6666666667vw;
  }
}
.contact-block .contact-block-msg {
  width: 620px;
  margin-bottom: 60px;
}
@media (max-width: 480px) {
  .contact-block .contact-block-msg {
    width: 100%;
    margin-bottom: 13.3333333333vw;
  }
}
.contact-block .contact-block-msg__txt {
  letter-spacing: 0;
}
.contact-block .contact-block-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.contact-block .contact-block-list__set {
  text-align: center;
  padding-bottom: 10px;
}
@media (max-width: 480px) {
  .contact-block .contact-block-list__set {
    width: 100%;
    padding-bottom: 2.6666666667vw;
  }
}
.contact-block .contact-block-list__set:not(:last-child) {
  position: relative;
  margin-right: 70px;
  padding-right: 70px;
}
@media (max-width: 480px) {
  .contact-block .contact-block-list__set:not(:last-child) {
    margin-right: 0;
    padding-right: 0;
    margin-bottom: 5.3333333333vw;
  }
}
.contact-block .contact-block-list__set:not(:last-child)::after {
  position: absolute;
  content: " ";
  width: 1px;
  height: 100%;
  background-color: #54657E;
  top: 0;
  right: 0;
}
@media (max-width: 480px) {
  .contact-block .contact-block-list__set:not(:last-child)::after {
    content: none;
  }
}
.contact-block .contact-block-list__ttl {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  color: #0C3471;
  margin-bottom: 25px;
}
@media (max-width: 480px) {
  .contact-block .contact-block-list__ttl {
    font-size: 5.6vw;
    margin-bottom: 4vw;
    line-height: 1;
  }
}
.contact-block .contact-block-list__tellink {
  font-size: 4.2rem;
  font-weight: bold;
  color: #0C3471;
  line-height: 1;
}
@media (max-width: 480px) {
  .contact-block .contact-block-list__tellink {
    font-size: 8vw;
  }
}
.contact-block .btn01 {
  width: 300px;
}
@media (max-width: 480px) {
  .contact-block .btn01 {
    width: 80%;
    height: 16vw;
  }
}
.contact-block .contact-block-list__img {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  background-color: #ccc;
}

.footer {
  color: #54657E;
  padding: 50px 0 0;
  background-color: #F1F4F8;
}
@media (max-width: 480px) {
  .footer {
    padding: 10.6666666667vw 0 0;
    border-width: 0.5333333333vw;
  }
}
.footer .footer__in {
  max-width: 1150px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 130px;
  margin: 0 auto;
  border-bottom: 1px solid #fff;
}
@media (max-width: 480px) {
  .footer .footer__in {
    flex-direction: column-reverse;
    align-items: center;
    padding: 0 5.3333333333vw 13.3333333333vw;
  }
}
.footer .footer-main {
  font-size: 1.6rem;
  font-weight: 500;
}
@media (max-width: 480px) {
  .footer .footer-main {
    font-size: 3.7333333333vw;
  }
}
.footer .footer__logo {
  width: 238px;
  padding-bottom: 50px;
}
@media (max-width: 480px) {
  .footer .footer__logo {
    width: 45.3333333333vw;
    padding-bottom: 0;
    margin: 0 auto 5.3333333333vw;
  }
}
.footer .footer__add {
  margin-bottom: 30px;
}
@media (max-width: 480px) {
  .footer .footer__add {
    margin-bottom: 2.6666666667vw;
  }
}
.footer .footer__tel a {
  color: #54657E;
}
.footer .footer-list {
  width: 770px;
}
@media (max-width: 480px) {
  .footer .footer-list {
    width: 100%;
    margin-bottom: 21.3333333333vw;
  }
}
.footer .footer-area {
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  color: #0C3471;
  padding: 0 30px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #B2C0D6;
  margin-bottom: 70px;
}
@media (max-width: 480px) {
  .footer .footer-area {
    display: block;
    height: auto;
    padding: 8vw 5.3333333333vw;
    border-radius: 2.6666666667vw;
    border-width: 0.2666666667vw;
    margin-bottom: 13.3333333333vw;
    letter-spacing: 0;
  }
}
.footer .footer-area__ttl {
  font-size: 1.8rem;
  font-weight: 700;
  margin-right: 30px;
  padding-right: 30px;
  border-right: 1px solid #B2C0D6;
}
@media (max-width: 480px) {
  .footer .footer-area__ttl {
    font-size: 4.2666666667vw;
    margin-right: 0;
    padding-right: 0;
    margin-bottom: 5.3333333333vw;
    padding-bottom: 5.3333333333vw;
    border-right: none;
    border-bottom: 0.2666666667vw solid #B2C0D6;
  }
}
.footer .footer-area-list {
  font-size: 1.6rem;
}
@media (max-width: 480px) {
  .footer .footer-area-list {
    font-size: 3.7333333333vw;
    line-height: 2;
  }
}
.footer .smoothlist {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0 50px;
}
@media (max-width: 480px) {
  .footer .smoothlist {
    max-width: 100%;
    flex-wrap: wrap;
    padding: 0 5.3333333333vw;
    gap: 10.6666666667vw 0;
    letter-spacing: 0;
  }
}
.footer .smoothlist .smoothlist__item {
  line-height: 1;
}
@media (max-width: 480px) {
  .footer .smoothlist .smoothlist__item {
    width: 50%;
  }
}
.footer .smoothlist .smoothlist__link {
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0C3471;
}
@media (max-width: 480px) {
  .footer .smoothlist .smoothlist__link {
    font-size: 3.7333333333vw;
  }
}
@media (min-width: 896px) {
  .footer .smoothlist .smoothlist__link:hover {
    text-decoration: underline;
  }
}
.footer .smoothlist.smoothlist-min {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #B2C0D6;
}
@media (max-width: 480px) {
  .footer .smoothlist.smoothlist-min {
    gap: 8vw 0;
  }
}
.footer .smoothlist.smoothlist-min .smoothlist__link {
  font-size: 1.4rem;
  color: #54657E;
}
@media (max-width: 480px) {
  .footer .smoothlist.smoothlist-min .smoothlist__link {
    font-size: 3.2vw;
    margin-top: 10.6666666667vw;
    padding-top: 10.6666666667vw;
    border-width: 0.2666666667vw;
  }
}
.footer .footer__copy {
  font-size: 1.2rem;
  color: #fff;
  padding: 30px 0;
  background-color: #0C3471;
}
@media (max-width: 480px) {
  .footer .footer__copy {
    font-size: 2.6666666667vw;
    padding: 8vw 5.3333333333vw;
  }
}
.footer .footer__copy p {
  max-width: 1150px;
  margin: 0 auto;
}

.pc-br {
  display: block;
}

.sp-br {
  display: none;
}

@media screen and (max-width: 480px) {
  .pc-br {
    display: none;
  }

  .sp-br {
    display: block;
  }
}/*# sourceMappingURL=common.css.map */
