@charset "UTF-8";
.appear.up .item {
  transform: translateY(6px);
}

.appear.down .item {
  transform: translateY(-6px);
}

.appear.left .item {
  transform: translateX(40px);
}

.appear.right .item {
  transform: translateX(-40px);
}

.appear .item {
  transition: all 0.8s;
  
}
.appear.inview .item {
  opacity: 1;
  transform: none;
}
.appear.inview .item:nth-child(1) {
  transition-delay: 0.1s;
}
.appear.inview .item:nth-child(2) {
  transition-delay: 0.2s;
}
.appear.inview .item:nth-child(3) {
  transition-delay: 0.3s;
}
.appear.inview .item:nth-child(4) {
  transition-delay: 0.4s;
}
.appear.inview .item:nth-child(5) {
  transition-delay: 0.5s;
}
.appear.inview .item:nth-child(6) {
  transition-delay: 0.6s;
}
.appear.inview .item:nth-child(7) {
  transition-delay: 0.7s;
}
.appear.inview .item:nth-child(8) {
  transition-delay: 0.8s;
}
.appear.inview .item:nth-child(9) {
  transition-delay: 0.9s;
}
.appear.inview .item:nth-child(10) {
  transition-delay: 1s;
}
.appear.inview .item:nth-child(11) {
  transition-delay: 1.1s;
}
.appear.inview .item:nth-child(12) {
  transition-delay: 1.2s;
}
.appear.inview .item:nth-child(13) {
  transition-delay: 1.3s;
}
.appear.inview .item:nth-child(14) {
  transition-delay: 1.4s;
}
.appear.inview .item:nth-child(15) {
  transition-delay: 1.5s;
}
.appear.inview .item:nth-child(16) {
  transition-delay: 1.6s;
}
.appear.inview .item:nth-child(17) {
  transition-delay: 1.7s;
}
.appear.inview .item:nth-child(18) {
  transition-delay: 1.8s;
}
.appear.inview .item:nth-child(19) {
  transition-delay: 1.9s;
}
.appear.inview .item:nth-child(20) {
  transition-delay: 2s;
}
.appear.inview .item:nth-child(21) {
  transition-delay: 2.1s;
}
.appear.inview .item:nth-child(22) {
  transition-delay: 2.2s;
}
.appear.inview .item:nth-child(23) {
  transition-delay: 2.3s;
}
.appear.inview .item:nth-child(24) {
  transition-delay: 2.4s;
}
.appear.inview .item:nth-child(25) {
  transition-delay: 2.5s;
}
.appear.inview .item:nth-child(26) {
  transition-delay: 2.6s;
}
.appear.inview .item:nth-child(27) {
  transition-delay: 2.7s;
}
.appear.inview .item:nth-child(28) {
  transition-delay: 2.8s;
}
.appear.inview .item:nth-child(29) {
  transition-delay: 2.9s;
}
.appear.inview .item:nth-child(30) {
  transition-delay: 3s;
}
.appear.inview .item:nth-child(31) {
  transition-delay: 3.1s;
}
.appear.inview .item:nth-child(32) {
  transition-delay: 3.2s;
}
.appear.inview .item:nth-child(33) {
  transition-delay: 3.3s;
}
.appear.inview .item:nth-child(34) {
  transition-delay: 3.4s;
}
.appear.inview .item:nth-child(35) {
  transition-delay: 3.5s;
}
.appear.inview .item:nth-child(36) {
  transition-delay: 3.6s;
}
.appear.inview .item:nth-child(37) {
  transition-delay: 3.7s;
}
.appear.inview .item:nth-child(38) {
  transition-delay: 3.8s;
}
.appear.inview .item:nth-child(39) {
  transition-delay: 3.9s;
}
.appear.inview .item:nth-child(40) {
  transition-delay: 4s;
}
.appear.inview .item:nth-child(41) {
  transition-delay: 4.1s;
}
.appear.inview .item:nth-child(42) {
  transition-delay: 4.2s;
}
.appear.inview .item:nth-child(43) {
  transition-delay: 4.3s;
}
.appear.inview .item:nth-child(44) {
  transition-delay: 4.4s;
}
.appear.inview .item:nth-child(45) {
  transition-delay: 4.5s;
}
.appear.inview .item:nth-child(46) {
  transition-delay: 4.6s;
}
.appear.inview .item:nth-child(47) {
  transition-delay: 4.7s;
}
.appear.inview .item:nth-child(48) {
  transition-delay: 4.8s;
}
.appear.inview .item:nth-child(49) {
  transition-delay: 4.9s;
}
.appear.inview .item:nth-child(50) {
  transition-delay: 5s;
}

.more-btn {
  text-align: center;
}
.more-btn a {
  font-family: "Montserrat", "Noto Sans JP";
  font-size: clamp(1.4rem, 1.377rem + 0.1vw, 1.5rem);
  letter-spacing: 0.2rem;
  position: relative;
  display: inline-block;
  background: #294064;
  text-align: center;
  font-weight: 600;
  max-width: 300px;
  width: 100%;
  padding: 1em;
  margin: 10px auto;
  transition: all 0.3s;
  color: white;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 480px) {
  .more-btn a {
    max-width: 270px;
  }
}
.more-btn a::before {
  position: absolute;
  content: "";
  background: url(../images/arrows_white.svg) no-repeat center/contain;
  right: 1em;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 2em;
  aspect-ratio: 39/6;
  transition: 0.3s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.more-btn a:hover {
  background: rgba(41, 64, 100, 0.5);
}
.more-btn a:hover::before {
  right: 0.5em;
}

.dl-btn {
  width: 270px;
  margin: 0 auto;
}
.dl-btn a {
  border: 1px solid #294064;
  color: #294064;
  padding: 1em;
  display: inline-block;
  text-align: center;
  width: 100%;
  position: relative;
  transition: 0.3s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.dl-btn a:hover {
  background: #294064;
  color: white;
}
.dl-btn a::before {
  position: absolute;
  content: "";
  background: url(../images/dl_ico_blue.svg) no-repeat center/contain;
  width: 1em;
  height: 1em;
  right: 2em;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.3s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.dl-btn a:hover::before {
  background: url(../images/dl_ico_white.svg) no-repeat center/contain;
}

.animate-text .char {
  
}

.animate-text.inview .char {
  animation: letter-glow 0.7s 0s ease both, kf-blur-chars 2s 0s ease both;
}
.animate-text.inview .char:nth-child(1) {
  animation-delay: 0.1s;
}
.animate-text.inview .char:nth-child(2) {
  animation-delay: 0.2s;
}
.animate-text.inview .char:nth-child(3) {
  animation-delay: 0.3s;
}
.animate-text.inview .char:nth-child(4) {
  animation-delay: 0.4s;
}
.animate-text.inview .char:nth-child(5) {
  animation-delay: 0.5s;
}
.animate-text.inview .char:nth-child(6) {
  animation-delay: 0.6s;
}
.animate-text.inview .char:nth-child(7) {
  animation-delay: 0.7s;
}
.animate-text.inview .char:nth-child(8) {
  animation-delay: 0.8s;
}
.animate-text.inview .char:nth-child(9) {
  animation-delay: 0.9s;
}
.animate-text.inview .char:nth-child(10) {
  animation-delay: 1s;
}
.animate-text.inview .char:nth-child(11) {
  animation-delay: 1.1s;
}
.animate-text.inview .char:nth-child(12) {
  animation-delay: 1.2s;
}
.animate-text.inview .char:nth-child(13) {
  animation-delay: 1.3s;
}
.animate-text.inview .char:nth-child(14) {
  animation-delay: 1.4s;
}
.animate-text.inview .char:nth-child(15) {
  animation-delay: 1.5s;
}
.animate-text.inview .char:nth-child(16) {
  animation-delay: 1.6s;
}
.animate-text.inview .char:nth-child(17) {
  animation-delay: 1.7s;
}
.animate-text.inview .char:nth-child(18) {
  animation-delay: 1.8s;
}
.animate-text.inview .char:nth-child(19) {
  animation-delay: 1.9s;
}
.animate-text.inview .char:nth-child(20) {
  animation-delay: 2s;
}
.animate-text.inview .char:nth-child(21) {
  animation-delay: 2.1s;
}
.animate-text.inview .char:nth-child(22) {
  animation-delay: 2.2s;
}
.animate-text.inview .char:nth-child(23) {
  animation-delay: 2.3s;
}
.animate-text.inview .char:nth-child(24) {
  animation-delay: 2.4s;
}
.animate-text.inview .char:nth-child(25) {
  animation-delay: 2.5s;
}
.animate-text.inview .char:nth-child(26) {
  animation-delay: 2.6s;
}
.animate-text.inview .char:nth-child(27) {
  animation-delay: 2.7s;
}
.animate-text.inview .char:nth-child(28) {
  animation-delay: 2.8s;
}
.animate-text.inview .char:nth-child(29) {
  animation-delay: 2.9s;
}
.animate-text.inview .char:nth-child(30) {
  animation-delay: 3s;
}

@keyframes kf-blur-chars {
  0% {
    
    filter: blur(20px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes letter-glow {
  0% {
    
    text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.1);
  }
  66% {
    opacity: 1;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.9);
  }
  77% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0);
  }
}
.fadeUp-text .char {
  
}

.fadeUp-text.inview .char {
  animation-name: kf-fadeUp-chars;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.39, 1.57, 0.58, 1);
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
.fadeUp-text.inview .char:nth-child(1) {
  animation-delay: 0.1s;
}
.fadeUp-text.inview .char:nth-child(2) {
  animation-delay: 0.2s;
}
.fadeUp-text.inview .char:nth-child(3) {
  animation-delay: 0.3s;
}
.fadeUp-text.inview .char:nth-child(4) {
  animation-delay: 0.4s;
}
.fadeUp-text.inview .char:nth-child(5) {
  animation-delay: 0.5s;
}
.fadeUp-text.inview .char:nth-child(6) {
  animation-delay: 0.6s;
}
.fadeUp-text.inview .char:nth-child(7) {
  animation-delay: 0.7s;
}
.fadeUp-text.inview .char:nth-child(8) {
  animation-delay: 0.8s;
}
.fadeUp-text.inview .char:nth-child(9) {
  animation-delay: 0.9s;
}
.fadeUp-text.inview .char:nth-child(10) {
  animation-delay: 1s;
}
.fadeUp-text.inview .char:nth-child(11) {
  animation-delay: 1.1s;
}
.fadeUp-text.inview .char:nth-child(12) {
  animation-delay: 1.2s;
}
.fadeUp-text.inview .char:nth-child(13) {
  animation-delay: 1.3s;
}
.fadeUp-text.inview .char:nth-child(14) {
  animation-delay: 1.4s;
}
.fadeUp-text.inview .char:nth-child(15) {
  animation-delay: 1.5s;
}
.fadeUp-text.inview .char:nth-child(16) {
  animation-delay: 1.6s;
}
.fadeUp-text.inview .char:nth-child(17) {
  animation-delay: 1.7s;
}
.fadeUp-text.inview .char:nth-child(18) {
  animation-delay: 1.8s;
}
.fadeUp-text.inview .char:nth-child(19) {
  animation-delay: 1.9s;
}
.fadeUp-text.inview .char:nth-child(20) {
  animation-delay: 2s;
}
.fadeUp-text.inview .char:nth-child(21) {
  animation-delay: 2.1s;
}
.fadeUp-text.inview .char:nth-child(22) {
  animation-delay: 2.2s;
}
.fadeUp-text.inview .char:nth-child(23) {
  animation-delay: 2.3s;
}
.fadeUp-text.inview .char:nth-child(24) {
  animation-delay: 2.4s;
}
.fadeUp-text.inview .char:nth-child(25) {
  animation-delay: 2.5s;
}
.fadeUp-text.inview .char:nth-child(26) {
  animation-delay: 2.6s;
}
.fadeUp-text.inview .char:nth-child(27) {
  animation-delay: 2.7s;
}
.fadeUp-text.inview .char:nth-child(28) {
  animation-delay: 2.8s;
}
.fadeUp-text.inview .char:nth-child(29) {
  animation-delay: 2.9s;
}
.fadeUp-text.inview .char:nth-child(30) {
  animation-delay: 3s;
}

@keyframes kf-fadeUp-chars {
  0% {
    
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-height: 0vw;
}

html {
  font-size: 62.5%;
}

body {
  height: 100%;
  font-size: clamp(1.4rem, 1.354rem + 0.21vw, 1.6rem);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #555;
  overflow-x: hidden;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.container {
  flex: 1;
  margin-top: 70px;
}

#loading {
  transition: all 0.6s; /*ローディングにかかる時間*/
  background-color: white;
  z-index: 99999;
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.loaded {
  
  visibility: hidden;
}

.main-text.is-active {
  opacity: 1;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}
@media screen and (max-width: 960px) {
  img {
    image-rendering: auto;
  }
}

@media screen and (max-width: 960px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 960px) {
  .sp {
    display: block;
  }
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: text;
    text-decoration: none;
  }
}
.inner {
  width: 93%;
  margin: 0 auto;
  max-width: 1450px;
}

.section_content {
  padding: 100px 0 0;
}
@media screen and (max-width: 960px) {
  .section_content {
    padding: 60px 0 0;
  }
}

.flex {
  display: flex;
}
@media screen and (max-width: 600px) {
  .flex {
    flex-direction: column;
  }
}

.anchor {
  display: block;
  padding-top: 80px;
  margin-top: -80px;
}

.wrapper {
  position: relative;
  overflow: hidden;
}

.ban a {
  position: relative;
  display: inline-block;
  text-align: center;
  line-height: 1.4;
  overflow: hidden;
  width: 100%;
}
.ban a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.ban a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  z-index: 1;
  transition: 0.3s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.ban a:hover::after {
  transform: scale(1.2);
}
.ban a:hover::before {
  opacity: 0.4;
}
.ban a .ban-txt {
  font-size: clamp(2.6rem, 2.415rem + 0.82vw, 3.4rem);
  font-weight: 700;
  font-family: "Montserrat", "Noto Sans JP";
  color: white;
  position: absolute;
  z-index: 2;
}
.ban a .ban-txt span {
  font-size: clamp(1.6rem, 1.554rem + 0.21vw, 1.8rem);
}

/** topics list **/
.topics_list-item a {
  transition: 0.3s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.topics_list-item a:hover {
  opacity: 0.6;
}

.topics_list-cate {
  background: #294064;
  color: white;
  font-weight: bold;
  padding: 1rem;
  text-align: center;
}

.topics_list-date {
  font-size: clamp(1.4rem, 1.377rem + 0.1vw, 1.5rem);
  padding: 1.5rem 0 0.5rem;
}

.topics_list-ttl {
  font-size: clamp(1.6rem, 1.554rem + 0.21vw, 1.8rem);
  font-weight: 600;
  line-height: 1.4;
  color: #294064;
}

.topics_list-date {
  color: #555;
  font-weight: 600;
}

.topics_list-img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 5/3;
  width: 100%;
}

/** info list **/
.info_list-item {
  position: relative;
  background: #F4F4F4;
  transition: 0.3s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.info_list-item a .info_list-img {
  overflow: hidden;
  position: relative;
}
.info_list-item a .info_list-img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 46/35;
  width: 100%;
  transition: 0.3s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.info_list-item:hover {
  opacity: 0.6;
}
.info_list-item:hover .info_list-img img {
  transform: scale(1.2);
}

.info_list-cate {
  position: absolute;
  left: 0;
  top: 0;
  background: #5F81B4;
  color: white;
  padding: 8px 3em;
  font-weight: 600;
  z-index: 10;
}

.info_list-ttl {
  font-size: clamp(1.6rem, 1.554rem + 0.21vw, 1.8rem);
  font-weight: 600;
  color: #294064;
  padding: 1.25em;
  line-height: 1.4;
  min-height: 6em;
}
/** blog list **/
.blog_list li {
  margin-bottom: 1.5em;
  border-bottom: #d0d0d0 1px solid;
}
.blog_list li a {
  display: flex;
  align-items: center;
  color: #294064;
  font-weight: 600;
  padding-bottom: 1.5em;
  transition: 0.3s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.blog_list li a:hover {
  opacity: 0.6;
}
.blog_list li a .blog_list-date {
  font-size: 1.4rem;
  color: #555;
  margin-bottom: 0.5em;
}

.blog_list-thum {
  max-width: 150px;
  margin-right: 2em;
}
@media screen and (max-width: 600px) {
  .blog_list-thum {
    max-width: 30%;
    margin-right: 1em;
  }
}
.blog_list-thum img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 168/97;
  width: 100%;
}

.blog_list-ttlWrap {
  flex: 1;
}

/** お問合わせ共通 **/
.contact-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -50px;
}
@media screen and (max-width: 960px) {
  .contact-list {
    align-items: flex-start;
  }
}
.contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  margin-left: 50px;
}
.contact-list li img {
  margin-right: 1.5em;
}
@media screen and (max-width: 600px) {
  .contact-list li img {
    width: 40px;
    margin-right: 1em;
  }
}
.contact-list li._tel a {
  white-space: nowrap;
  font-family: "Montserrat", "Noto Sans JP";
  font-size: clamp(2.8rem, 2.615rem + 0.82vw, 3.6rem);
  letter-spacing: 0.3rem;
  font-weight: 600;
  color: white;
}
@media screen and (max-width: 480px) {
  .contact-list li._tel a {
    font-size: 7.2vw;
  }
}
.contact-list li._mail a {
  font-size: clamp(1.5rem, 1.391rem + 0.55vw, 1.8rem);
  font-weight: 500;
  width: 250px;
  padding: 1em;
  margin-top: 1rem;
  display: block;
  background: white;
  color: #5F81B4;
  text-align: center;
  transition: 0.3s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
@media screen and (max-width: 480px) {
  .contact-list li._mail a {
    width: 220px;
  }
}
.contact-list li._mail a:hover {
  background: #5F81B4;
  color: white;
}

.contact-txt span {
  display: block;
}

/* 資料請求・ご来場予約 */
.request-list {
  flex-wrap: wrap;
  margin-top: 40px;
  margin-left: -60px;
}
.request-list li {
  margin-left: 60px;
  margin-bottom: 30px;
  text-align: center;
}
.request-list .request-link a {
  position: relative;
  text-align: center;
  padding: 1em;
  font-size: clamp(1.5rem, 1.391rem + 0.55vw, 1.8rem);
  font-weight: 500;
  display: block;
  width: 320px;
  background: #5F81B4;
  color: white;
  border-radius: 50px;
  transition: 0.3s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
@media screen and (max-width: 600px) {
  .request-list .request-link a {
    width: min(350px, 95%);
    margin: 0 auto;
  }
}
.request-list .request-link a::before {
  position: absolute;
  content: "";
  background: url(../images/arrows_white.svg) no-repeat center/contain;
  right: 1em;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 2em;
  aspect-ratio: 39/6;
  transition: 0.3s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.request-list .request-link a:hover {
  opacity: 0.7;
}
.request-list .request-link a:hover::before {
  right: 0.75em;
}

.request-description {
  margin-top: 1em;
  display: inline-block;
  text-align: left;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.header {
  position: fixed;
  width: 100%;
  height: 70px;
  background: white;
  z-index: 1000;
}
.header .head-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .head-inner .logo {
  line-height: 0;
}
.header .head-inner .logo a {
  width: 100%;
  margin: 0 15px;
  transition: 0.3s cubic-bezier(0.49, 0.06, 0.02, 0.98);
  display: inline-block;
  width: 280px;
}
@media screen and (max-width: 600px) {
  .header .head-inner .logo a {
    width: 220px;
  }
}
.header .head-inner .logo a:hover {
  opacity: 0.5;
}

.nav-area {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .nav-area .pc-nav {
    display: none;
  }
}
.nav-area .pc-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-area .pc-nav ul .nav-contact {
  margin-left: 15px;
}
.nav-area .pc-nav ul .nav-contact a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #5F81B4;
  transition: 0.3s cubic-bezier(0.49, 0.06, 0.02, 0.98);
  color: white;
  white-space: nowrap;
  height: 70px;
  padding: 15px;
  line-height: 1.4;
}
.nav-area .pc-nav ul .nav-contact a span {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
}
.nav-area .pc-nav ul .nav-contact a:hover {
  background: rgba(95, 129, 180, 0.3);
}
.nav-area .pc-nav ul li {
  position: relative;
}
.nav-area .pc-nav ul li a.nav-main-link {
  text-decoration: none;
  color: #294064;
  transition: 0.3s cubic-bezier(0.49, 0.06, 0.02, 0.98);
  font-weight: 600;
  padding: 15px;
  height: 70px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.nav-area .pc-nav ul li a.nav-main-link:hover {
  color: #5F81B4;
}
.nav-area .pc-nav ul li .submenu {
  top: 2.5em;
  visibility: hidden;
  
  transition: all 0.2s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: auto;
  width: 180px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  background: #294064;
}
.nav-area .pc-nav ul li .submenu ul {
  flex-direction: column;
}
.nav-area .pc-nav ul li .submenu ul li {
  width: 100%;
  border-bottom: 1px solid #335a7a;
  background: white;
}
.nav-area .pc-nav ul li .submenu ul li:last-child {
  border-bottom: none;
}
.nav-area .pc-nav ul li .submenu ul li a {
  white-space: nowrap;
  background: #294064;
  color: white;
  font-size: 0.9em;
  display: block;
  padding: 10px 2em;
  text-align: center;
  transition: 0.3s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.nav-area .pc-nav ul li .submenu ul li a:hover {
  background: rgba(41, 64, 100, 0.5);
}
.nav-area .pc-nav ul li:hover .submenu {
  top: 4em;
  visibility: visible;
  opacity: 1;
}
.nav-area .hamburger-menu {
  background: #294064;
  height: 70px;
  width: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10000;
  transition: 0.3s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.nav-area .hamburger-menu .hamburger-icon {
  width: 40px;
  height: 10px;
  position: relative;
}
.nav-area .hamburger-menu .hamburger-icon span {
  position: absolute;
  height: 1px;
  width: 100%;
  background: white;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.5s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.nav-area .hamburger-menu .hamburger-icon span:nth-child(1) {
  top: 0;
}
.nav-area .hamburger-menu .hamburger-icon span:nth-child(2) {
  top: 10px;
}
.nav-area .hamburger-menu.open {
  background: #5F81B4;
}
.nav-area .hamburger-menu.open .hamburger-icon span:nth-child(1) {
  top: 5px;
  transform: rotate(135deg);
}
.nav-area .hamburger-menu.open .hamburger-icon span:nth-child(2) {
  top: 5px;
  transform: rotate(-135deg);
}
.nav-area .mega-menu {
  
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  transition: opacity 0.3s ease, visibility 0.3s;
}
.nav-area .mega-menu.open {
  opacity: 1;
  visibility: visible;
}
.nav-area .mega-menu .mega-menu-inner {
  background: #294064;
  width: 90%;
  max-width: 1050px;
  height: 100%;
  margin-left: auto;
  overflow-y: auto;
  position: relative;
  padding: 100px min(80px, 4vw);
}
.nav-area .mega-menu .mega-menu-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}
@media screen and (max-width: 600px) {
  .nav-area .mega-menu .mega-menu-content {
    gap: 20px;
  }
}
.nav-area .mega-menu .mega-menu-content .mega-menu-column .mega-menu-cap {
  font-size: 2rem;
  font-weight: 600;
  border-bottom: 2px solid #5F81B4;
  padding-bottom: 10px;
  margin-bottom: 25px;
  color: white;
  position: relative;
}
.nav-area .mega-menu .mega-menu-content .mega-menu-column .mega-menu-cap::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 65%;
  height: 2px;
  background-color: white;
  opacity: 0.5;
}
.nav-area .mega-menu .mega-menu-content .mega-menu-column .mega-menu-cap a {
  color: white;
  transition: color 0.3s;
}
.nav-area .mega-menu .mega-menu-content .mega-menu-column .mega-menu-cap a:hover {
  color: #5F81B4;
}
.nav-area .mega-menu .mega-menu-content .mega-menu-column ul li {
  padding-left: 1em;
  margin-bottom: 15px;
  position: relative;
}
.nav-area .mega-menu .mega-menu-content .mega-menu-column ul li::before {
  position: absolute;
  content: "";
  width: 0.5em;
  height: 1px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: rgba(255, 255, 255, 0.5);
}
.nav-area .mega-menu .mega-menu-content .mega-menu-column ul li a {
  text-decoration: none;
  color: white;
  transition: color 0.3s;
}
.nav-area .mega-menu .mega-menu-content .mega-menu-column ul li a:hover {
  color: #5F81B4;
}

.mega-menu-contact {
  margin: 50px 0 40px;
  color: white;
}
@media screen and (max-width: 600px) {
  .mega-menu-contact {
    margin: 30px 0 0;
  }
}
.mega-menu-contact .contact-list {
  justify-content: flex-start;
}
@media screen and (max-width: 960px) {
  .mega-menu-contact .contact-list {
    justify-content: center;
  }
}
.mega-menu-contact .request-list {
  justify-content: flex-start;
}
@media screen and (max-width: 960px) {
  .mega-menu-contact .request-list {
    justify-content: center;
  }
}

.mega-menu-submenu {
  display: flex;
  justify-content: space-between;
}
.mega-menu-submenu a {
  transition: 0.3s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.mega-menu-submenu a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 600px) {
  .mega-menu-submenu {
    flex-direction: column;
    align-items: center;
  }
}
.mega-menu-submenu .sns-list {
  display: flex;
  margin-left: -2rem;
}
@media screen and (max-width: 600px) {
  .mega-menu-submenu .sns-list {
    margin-top: 3rem;
  }
}
.mega-menu-submenu .sns-list li {
  margin-left: 2rem;
}
.mega-menu-submenu .head-nav-list {
  margin-top: 2rem;
}
.mega-menu-submenu .head-nav-list a {
  font-size: 1.4rem;
  color: white;
}

.footer {
  background: #F4F4F4;
  padding: 60px 0;
}
@media screen and (max-width: 600px) {
  .footer {
    padding: 50px 0 30px;
  }
}
.footer .foot-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 960px) {
  .footer .foot-inner {
    flex-direction: column;
    align-items: center;
  }
}
.footer .foot-logo {
  width: 300px;
  margin-bottom: 3rem;
}
@media screen and (max-width: 960px) {
  .footer .foot-logo {
    text-align: center;
    width: 260px;
  }
}
@media screen and (max-width: 960px) {
  .footer .foot-logo a {
    display: inline-block;
  }
}
.footer .foot-logo img {
  width: 100%;
  transition: 0.3s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.footer .foot-logo img:hover {
  opacity: 0.5;
}
.footer .foot-name {
  margin-bottom: 1.5em;
}
@media screen and (max-width: 960px) {
  .footer .foot-name {
    text-align: center;
  }
  .footer .foot-name img {
    display: inline-block;
  }
}
@media screen and (max-width: 960px) {
  .footer .foot-address {
    text-align: center;
    margin-bottom: 40px;
  }
}
.footer .foot-address .foot-address-item {
  line-height: 1.8;
}
@media screen and (max-width: 600px) {
  .footer .foot-address .foot-address-item {
    margin-bottom: 1em;
    line-height: 1.6;
  }
}
.footer .foot-address .foot-address-item .foot-address-name {
  position: relative;
  padding-right: 0.75em;
  margin-right: 0.5em;
}
@media screen and (max-width: 600px) {
  .footer .foot-address .foot-address-item .foot-address-name {
    font-weight: 600;
    display: block;
    padding-right: 0;
    margin-right: 0;
  }
}
.footer .foot-address .foot-address-item .foot-address-name::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 1em;
  background: #555;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 600px) {
  .footer .foot-address .foot-address-item .foot-address-name::before {
    display: none;
  }
}
.footer .foot-address .foot-address-item .foot-address-tel {
  margin-left: 1em;
}
@media screen and (max-width: 600px) {
  .footer .foot-address .foot-address-item .foot-address-tel {
    display: block;
    margin-left: 0;
  }
}
.footer .foot-address a {
  color: #555;
}
.footer .foot-nav a {
  transition: 0.3s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.footer .foot-nav a:hover {
  opacity: 0.5;
}
.footer .foot-nav-list {
  text-align: right;
}
@media screen and (max-width: 960px) {
  .footer .foot-nav-list {
    text-align: center;
  }
}
.footer .foot-nav-list a {
  color: #555;
}
.footer .foot-sns-list {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}
@media screen and (max-width: 960px) {
  .footer .foot-sns-list {
    justify-content: center;
    margin-left: -2rem;
  }
}
.footer .foot-sns-list li {
  margin-left: 2rem;
}

.backtotop a {
  position: fixed;
  right: 0;
  bottom: 0;
  background: rgba(85, 85, 85, 0.87);
  width: 50px;
  height: 50px;
  padding: 17px 15px 15px;
  z-index: 999;
}

.copy {
  font-size: clamp(1rem, 0.954rem + 0.21vw, 1.2rem);
  margin-top: 1.5rem;
}/*# sourceMappingURL=style.css.map */