@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&family=Zen+Old+Mincho:wght@400;500;600;700&display=swap");
/* CSS Document */
body {
  background-color: #efefef;
  color: #000;
  font-family: "Zen Kaku Gothic New", serif;
}

body .bg-img-wrap {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

body.on .bg-img-wrap .bg-img {
  display: none;
}

body .bg-img-wrap {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

body.on .bg-img-wrap .bg-img {
  display: none;
}

a {
  display: inline-block;
  transition: ease 0.3s;
}

a:hover {
  opacity: 0.5;
}

a p,
a {
  color: #ffffff;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-black {
  font-weight: 900;
}

.loader {
  display: none;
}

.main-wrap {
  overflow: hidden;
}

.pd_wrap {
  padding: 150px 100px 0;
}

.pd_wrap_all {
  padding: 150px 100px 150px;
}

.pd_wrap_side {
  padding-left: 100px;
  padding-right: 100px;
}

/* ---------- common ---------- */
.pagetitle .txt-box {
  width: 30%;
}

.pagetitle .img-box {
  height: 450px;
  width: 70%;
}

.link-wrap {
  gap: 30px 50px;
  padding-top: 10px;
}

.link-wrap a {
  padding-left: 50px;
  position: relative;
}

.link-wrap a:hover {
  opacity: 1;
}

.link-wrap a .icon {
  background-color: #f0f0f0;
  border-radius: 50%;
  height: 30px;
  left: 5px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: ease 0.3s;
  width: 30px;
}

.link-wrap a .icon i {
  color: #001d3b;
  font-size: 12px;
  opacity: 0.6;
}

.link-wrap a:hover .icon {
  background-color: #001d3b;
  height: 40px;
  left: 0;
  width: 40px;
}

.link-wrap a:hover .icon i {
  color: #fff;
  opacity: 1;
}

.more-wrap {
  gap: 20px 40px;
}

.more {
  text-align: center;
}

.more a {
  border-radius: 100px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  padding: 15px 60px;
  position: relative;
}

.more a::after {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: translateX(-100%);
  transition: ease 0.4s;
  width: 100%;
  z-index: 1;
}

.more a:hover::after {
  transform: translateX(0);
}

.more a:hover {
  opacity: 1 !important;
}

.more a i,
.more a p {
  transition: ease 0.3s;
}

.more a i {
  font-size: 20px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.more a p {
  font-size: 18px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.more1 a {
  background-color: #fff;
}

.more1 a::after {
  background-color: #ed1b24;
}

.more1 a p,
.more1 a i {
  color: #ed1b24;
}

.more1 a:hover p,
.more1:hover a i {
  color: #fff;
}

/* ---------- header ---------- */
/* ANIME */
.sc-anime.topin.on {
  opacity: 0;
  transform: translateY(-50px);
}

.sc-anime.topin.on.active {
  -webkit-animation-name: topin;
  -webkit-animation-duration: 1.2s;
  -webkit-animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-name: topin;
  animation-timing-function: ease;
}

.sc-anime.bottomin.on {
  opacity: 0;
  transform: translateY(50px);
}

.sc-anime.bottomin.on.active {
  -webkit-animation-name: bottomin;
  -webkit-animation-duration: 1.2s;
  -webkit-animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-name: bottomin;
  animation-timing-function: ease;
}

.sc-anime.leftin.on {
  opacity: 0;
  transform: translateX(-50px);
}

.sc-anime.leftin.on.active {
  -webkit-animation-name: leftin;
  -webkit-animation-duration: 1.2s;
  -webkit-animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-name: leftin;
  animation-timing-function: ease;
}

.sc-anime.rightin.on {
  opacity: 0;
  transform: translateX(50px);
}

.sc-anime.rightin.on.active {
  -webkit-animation-name: rightin;
  -webkit-animation-duration: 1.2s;
  -webkit-animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-name: rightin;
  animation-timing-function: ease;
}

.sc-anime.fadein.on {
  opacity: 0;
}

.sc-anime.fadein.on.active {
  -webkit-animation-name: fadein;
  -webkit-animation-duration: 1.2s;
  -webkit-animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-name: fadein;
  animation-timing-function: ease;
}

.sc-anime.blurin.on {
  -ms-filter: blur(6px);
  filter: blur(6px);
  opacity: 0;
}

.sc-anime.blurin.on.active {
  -webkit-animation-name: blurin;
  -webkit-animation-duration: 1.2s;
  -webkit-animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-name: blurin;
  animation-timing-function: ease;
}

@-webkit-keyframes topin {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes topin {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@-webkit-keyframes bottomin {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes bottomin {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@-webkit-keyframes leftin {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes leftin {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@-webkit-keyframes rightin {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes rightin {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@-webkit-keyframes upin {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes upin {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes blurin {
  0% {
    -ms-filter: blur(6px);
    filter: blur(6px);
    opacity: 0;
  }
  100% {
    -ms-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
@keyframes blurin {
  0% {
    -ms-filter: blur(6px);
    filter: blur(6px);
    opacity: 0;
  }
  100% {
    -ms-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
/* color */
.txt-color-normal {
  color: #666666;
}

.txt-white {
  color: #ffffff;
}

.txt-red {
  color: red;
}

.txt-color1 {
  color: #009045;
}

.txt-color2 {
  color: #f5911e;
}

.txt-color3 {
  color: #ed1b24;
}

.txt-color4 {
  color: #001d3b;
}

.bg-white {
  background-color: #ffffff;
}

.bg-black {
  background-color: black;
}

.bg-color1 {
  background-color: #009045;
}

.bg-color2 {
  background-color: #f5911e;
}

.bg-color3 {
  background-color: #ed1b24;
}

.bg-color4 {
  background-color: #001d3b;
}

.border-color1 {
  border-color: #009045;
}

.border-color2 {
  border-color: #f5911e;
}

.border-color3 {
  border-color: #ed1b24;
}

.border-color4 {
  border-color: #001d3b;
}

.hvr-txt-color-normal:hover {
  color: #666666;
}

.hvr-txt-white:hover {
  color: #ffffff;
}

.hvr-txt-red:hover {
  color: red;
}

.hvr-txt-color1:hover {
  color: #009045;
}

.hvr-txt-color2:hover {
  color: #f5911e;
}

.hvr-txt-color3:hover {
  color: #ed1b24;
}

.hvr-txt-color4:hover {
  color: #001d3b;
}

.hvr-bg-white:hover {
  background-color: #ffffff;
}

.hvr-bg-black:hover {
  background-color: black;
}

.hvr-bg-color1:hover {
  background-color: #009045;
}

.hvr-bg-color2:hover {
  background-color: #f5911e;
}

.hvr-bg-color3:hover {
  background-color: #ed1b24;
}

.hvr-bg-color4:hover {
  background-color: #001d3b;
}

.hvr-border-color1:hover {
  border-color: #009045;
}

.hvr-border-color2:hover {
  border-color: #f5911e;
}

.hvr-border-color3:hover {
  border-color: #ed1b24;
}

.hvr-border-color4:hover {
  border-color: #001d3b;
}

/* ---------- IEのみ ---------- */
/* ---------- 1280px ~ ---------- */
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px) {
  .pd_wrap {
    padding: 150px 50px 0;
  }

  .pd_wrap_all {
    padding: 150px 50px 150px;
  }

  .pd_wrap_side {
    padding-left: 50px;
    padding-right: 50px;
  }

  /* ---------- common ---------- */
  .pagetitle .img-box {
    height: 400px;
  }

  .more a {
    padding: 15px 60px;
  }

  .more a p {
    font-size: 16px;
  }

  /* ---------- footer ---------- */
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px) {
  /* ---------- common ---------- */
  .pagetitle .txt-box {
    width: 350px;
  }

  .pagetitle .img-box {
    height: 400px;
    width: calc(100% - 350px);
  }
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px) {
  .pd_wrap {
    padding: 100px 50px 0;
  }

  .pd_wrap_all {
    padding: 100px 50px 100px;
  }

  .pd_wrap_side {
    padding-left: 50px;
    padding-right: 50px;
  }

  /* ---------- common ---------- */
  .link-wrap {
    gap: 30px 40px;
  }

  .pagetitle .txt-box {
    width: 250px;
  }

  .pagetitle .img-box {
    height: 300px;
    width: calc(100% - 250px);
  }
}
@-webkit-keyframes menuin {
  0% {
    -ms-filter: blur(6px);
    filter: blur(6px);
    opacity: 0;
    transform: translateY(50%);
  }
  100% {
    -ms-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes menuin {
  0% {
    -ms-filter: blur(6px);
    filter: blur(6px);
    opacity: 0;
    transform: translateY(50%);
  }
  100% {
    -ms-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
    transform: translateY(0);
  }
}
/* ---------- スマートフォン ---------- */
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px) {
  .pd_wrap {
    padding: 80px 5% 0;
  }

  .pd_wrap_all {
    padding: 80px 5% 80px;
  }

  .pd_wrap_side {
    padding-left: 5%;
    padding-right: 5%;
  }

  /* ---------- common ---------- */
  .link-wrap {
    gap: 30px 30px;
  }

  .link-wrap a {
    padding-left: 45px;
  }

  .link-wrap a .icon {
    height: 25px;
    width: 25px;
  }

  .link-wrap a .icon i {
    font-size: 10px;
  }

  .link-wrap a:hover .icon {
    height: 35px;
    width: 35px;
  }

  .pagetitle .txt-box {
    padding: 40px 10px;
    width: 100%;
  }

  .pagetitle .img-box {
    height: 200px;
    width: 100%;
  }

  .more a {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 15px 50px;
  }

  .more a p {
    font-size: 14px;
  }

  .more a i {
    font-size: 14px;
  }
}
/* ---------- 350px ~ ---------- */
/*----------------------------------------------------------
footer
------------------------------------------------------------*/
.footer_map {
  overflow: hidden;
  position: relative;
}
.footer_map__inner {
  height: 600px;
}
@media screen and (min-width: 1920px) {
  .footer_map__inner {
    height: 31.1vw;
  }
}
@media screen and (max-width: 768px) {
  .footer_map__inner {
    height: 450px;
  }
}
@media screen and (max-width: 576px) {
  .footer_map__inner {
    height: 340px;
  }
}

.footer_map iframe {
  border: none !important;
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.footer {
  background-color: #1a1a1a;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 100px;
}
@media screen and (max-width: 1080px) {
  .footer {
    padding-top: 70px;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 50px;
  }
}
.footer .flex {
  align-items: center;
  flex-wrap: nowrap;
  gap: 50px;
  justify-content: space-between;
  margin-inline: auto;
  width: min(100%, 1620px);
}
@media screen and (max-width: 1080px) {
  .footer .flex {
    align-items: center;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .footer .flex {
    gap: 30px;
  }
}
.footer .left_box p {
  color: #b7b7b7;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .footer .left_box p {
    margin-top: 10px;
  }
}
@media screen and (max-width: 576px) {
  .footer .left_box p {
    margin-top: 5px;
  }
}
.footer .right_box {
  width: min(100%, 600px);
}
@media screen and (max-width: 1080px) {
.footer .right_box {
  display:none;
}
}
/*
@media screen and (max-width: 768px) {
  .footer .right_box {
    width: min(100%, 310px);
  }
}
@media screen and (max-width: 576px) {
  .footer .right_box {
    width: min(100%, 267px);
  }
}
*/
.footer .right_box .ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 20px;
}
@media screen and (max-width: 1080px) {
  .footer .right_box .ul {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .footer .right_box .ul {
    gap: 20px 0px;
    justify-content: space-between;
  }
}
@media screen and (max-width: 576px) {
  .footer .right_box .ul {
    gap: 20px 0px;
  }
}
.footer .right_box .li {
  width: calc((100% - 20px * 2) / 3);
}
@media screen and (max-width: 768px) {
  .footer .right_box .li {
    width: calc((100% - 20px * 1) / 2);
  }
}
.footer .right_box .li a {
  display: block;
}
.footer .right_box .li a p {
  color: #fff;
  font-family: "Josefin Sans", serif;
  font-size: 22px;
  font-weight: 700;
}
@media screen and (max-width: 1080px) {
  .footer .right_box .li a p {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .footer .right_box .li a p {
    font-size: 16px;
  }
}
@media screen and (max-width: 576px) {
  .footer .right_box .li a p {
    font-size: 14px;
  }
}
.footer .logo {
  flex-shrink: 0;
  max-width: 320px;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .footer .logo {
    margin-inline: auto;
    max-width: 280px;
  }
}
@media screen and (max-width: 768px) {
  .footer .logo {
    max-width: 220px;
  }
}
@media screen and (max-width: 576px) {
  .footer .logo {
    max-width: 160px;
  }
}
.footer .logo a {
  color: #fff;
  display: block;
}
.footer .logo__link {
  margin-left: auto;
  margin-right: auto;
  max-width: 320px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer .logo__link {
    max-width: 280px;
  }
}
.footer .logo__access {
  font-size: 20px;
  font-weight: 900;
  margin-top: 34px;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .footer .logo__access {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .footer .logo__access {
    font-size: 16px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 576px) {
  .footer .logo__access {
    font-size: 14px;
    margin-top: 15px;
  }
}
.footer .logo__tel {
  font-weight: 900;
  margin-top: 12px;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .footer .logo__tel {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .footer .logo__tel {
    margin-top: 10px;
  }
}
@media screen and (max-width: 576px) {
  .footer .logo__tel {
    margin-top: 5px;
  }
}
.footer .logo__tel p {
  font-size: 20px;
}
@media screen and (max-width: 1080px) {
  .footer .logo__tel p {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .footer .logo__tel p {
    font-size: 16px;
  }
}
@media screen and (max-width: 576px) {
  .footer .logo__tel p {
    font-size: 14px;
  }
}
.footer p {
  font-weight: 700;
}
@media screen and (max-width: 360px) {
  .footer p {
    font-size: 12px;
  }
}
.footer .nav {
  width: 66.5%;
}
@media screen and (max-width: 576px) {
  .footer .nav {
    width: 85%;
  }
}
.footer .icons {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-top: 40px;
  width: min(100%, 163px);
}
@media screen and (max-width: 1080px) {
  .footer .icons {
    margin-inline: auto;
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .footer .icons {
    margin-top: 40px;
  }
}
@media screen and (max-width: 576px) {
  .footer .icons {
    width: min(100%, 133px);
  }
}
@media screen and (max-width: 360px) {
  .footer .icons {
    gap: 10px;
  }
}

/* ーーーーーーーーーーーー'コピーライト'ーーーーーーーーーーーーーー*/
.copyright {
  color: #4d4d4d;
  font-size: 14px;
  margin-inline: auto;
  margin-top: 40px;
  text-align: center;
  width: min(100%, 1720px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .copyright {
    font-size: 12px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 576px) {
  .copyright {
    font-size: 10px;
  }
}
@media screen and (max-width: 360px) {
  .copyright {
    font-size: 10px;
  }
}

.tel-link {
  display: block;
}

.footer_company {
  padding-bottom: 100px;
  padding-top: 100px;
}
@media screen and (max-width: 1080px) {
  .footer_company {
    padding-bottom: 80px;
    padding-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .footer_company {
    padding-bottom: 60px;
    padding-top: 60px;
  }
}
@media screen and (max-width: 576px) {
  .footer_company {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}
.footer_company .banner {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  display: block;
  display: block;
  margin-inline: auto;
  max-width: 1400px;
  width: 100%;
}
.footer_company .banner img {
  display: block;
}

/*----------------------------------------------------------
2つめのフッター
------------------------------------------------------------*/
.footer02 {
  background-color: #081266;
  padding-bottom: 15px;
  padding-top: 81px;
}
@media screen and (max-width: 1080px) {
  .footer02 {
    padding-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .footer02 {
    padding-top: 50px;
  }
}
@media screen and (max-width: 576px) {
  .footer02 {
    padding: 40px;
  }
}
.footer02 .box {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 64px;
  justify-content: center;
}
@media screen and (max-width: 1080px) {
  .footer02 .box {
    gap: 55px;
  }
}
@media screen and (max-width: 768px) {
  .footer02 .box {
    gap: 45px;
  }
}
@media screen and (max-width: 576px) {
  .footer02 .box {
    gap: 40px;
  }
}
.footer02 img {
  display: block;
  width: 100%;
}
.footer02 .logo {
  max-width: 430px;
  width: 65%;
}
@media screen and (max-width: 576px) {
  .footer02 .logo {
    width: 85%;
  }
}
.footer02 .links {
  align-items: center;
  display: flex;
  gap: 50px;
  justify-content: space-between;
}
@media screen and (max-width: 1080px) {
  .footer02 .links {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .footer02 .links {
    gao: 30px;
  }
}
@media screen and (max-width: 576px) {
  .footer02 .links {
    gap: 20px;
  }
}
.footer02 .links a {
  display: block;
}
.footer02 .links a p {
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1080px) {
  .footer02 .links a p {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .footer02 .links a p {
    font-size: 16px;
  }
}
@media screen and (max-width: 576px) {
  .footer02 .links a p {
    font-size: 14px;
  }
}
.footer02 .page-top-btn {
  max-width: 360px;
  width: 55%;
}
@media screen and (max-width: 576px) {
  .footer02 .page-top-btn {
    width: 75%;
  }
}
.footer02 .txt {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  margin-top: 80px;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .footer02 .txt {
    margin-top: 70px;
  }
}
@media screen and (max-width: 768px) {
  .footer02 .txt {
    margin-top: 60px;
  }
}
@media screen and (max-width: 576px) {
  .footer02 .txt {
    font-size: 12px;
    margin-top: 50px;
  }
}

.translate_link{
	position: relative;
}
.translate_link .lang_list{
	display: none;
	position: absolute;
	background-color: #000;
	padding: 10px;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
}
.translate_link .lang_list > div a{
	display: block;
	padding: 5px;
}
.translate_link .lang_list > div a p{
	color: #fff;
}


/*# sourceMappingURL=sourcemaps/style.css.map */