html {
  width: 100%;
  margin-top: 0 !important;
}

body {
  background-color: #fff;
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #777777;
  margin: 0 auto;
  letter-spacing: 0.1em;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  min-width: 1280px;
  animation: loading 1s;
  position: relative;
}

@keyframes loading {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none !important;
  color: #777777;
  transition: 0.3s;
}

a:hover {
  opacity: 0.6;
  transition: 0.8s;
}

ul {
  padding: 0;
}

li {
  list-style-type: none;
}

th {
  font-weight: normal;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

figure {
  margin: 0;
}


section {
  padding-top: 150px;
}

h3 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #608996;
  line-height: 1.6;
  margin-bottom: 0.1em;
}

.section_title .en {
  color: #F2D600;
  display: inline-block;
  text-align: center;
}

.inner {
  width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0;
  text-align: left;
  text-align: center;
}

.pc {
  display: block;
}

.mobile {
  display: none;
}

.row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0;
  position: relative;
}


.en {
  font-family: "Albert Sans", sans-serif;
  font-weight: 500;
}

.btn {
  display: inline-block;
  background-color: #FFF;
  color: #608996;
  border: 2px solid #608996;
  padding: 0.9em 2em;
  font-size: 1.1em;
  text-align: center;
  margin: 0 auto;
  border-radius: 100vmax;
  width: auto;
  min-width: 280px;
  font-size: 15px;
  position: relative;
  transition: all 0.3s ease;
  /* ← アニメーション */
}

.btn::after {
  position: absolute;
  content: "";
  width: 11px;
  height: 22px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='22' viewBox='0 0 11 22'%3E%3Cpath d='M2 5.98072L3.04108 5L8.71157 10.3449C8.80297 10.4306 8.87551 10.5324 8.92502 10.6446C8.97452 10.7568 9 10.8771 9 10.9986C9 11.1201 8.97452 11.2404 8.92502 11.3526C8.87551 11.4648 8.80297 11.5666 8.71157 11.6523L3.04108 17L2.00098 16.0193L7.32314 11L2 5.98072Z' fill='%23608996'/%3E%3C/svg%3E");
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 20px;
  transition: background-image 0.3s ease;
  /* ← スムーズ切替用 */
}

/* ===========================
   ▼ ホバー時のスタイル
=========================== */
.btn:hover {
  background-color: #608996;
  color: #FFF;
  border-color: #608996;
  opacity: 1;
}

/* ホバー時の矢印を白に変更 */
.btn:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='22' viewBox='0 0 11 22'%3E%3Cpath d='M2 5.98072L3.04108 5L8.71157 10.3449C8.80297 10.4306 8.87551 10.5324 8.92502 10.6446C8.97452 10.7568 9 10.8771 9 10.9986C9 11.1201 8.97452 11.2404 8.92502 11.3526C8.87551 11.4648 8.80297 11.5666 8.71157 11.6523L3.04108 17L2.00098 16.0193L7.32314 11L2 5.98072Z' fill='%23ffffff'/%3E%3C/svg%3E");
}

.ly_border {
  border: 2px solid #608996;
  border-radius: 24px;
  max-width: 1046px;
  margin: 0 auto;
  padding: 84px 60px 60px;
  text-align: center;
}

header {
  width: 100%;
  padding: 60px 5vw 0;
  z-index: 10;
  /* position: fixed;
  top: 0;
  left: 0; */
}

.header_logo {
  width: 232px;
}

.header_logo a {
  z-index: 300;
}


header .row {
  flex-wrap: nowrap;
}

.header_nav_wrapper {
  display: flex;
  align-items: center;
}

.header_nav a {
  padding: 20px;
  font-size: 18px;
  transition-duration: 0.6s;
}

.pc_nav a {
  display: block;
  color: #608996;
}

/* 
hamburger(ハンバーガーアイコン)
=================================== */
#nav-wrapper {
  display: flex;
}

.hamburger {
  position: fixed;
  width: 64px;
  height: 44px;
  cursor: pointer;
  z-index: 300;
  right: 5vw;
  top: 55px;
}

.hamburger__line {
  position: absolute;
  width: 64px;
  height: 2px;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #777;
  transition: all 0.5s;
}

.hamburger__line--1 {
  transform: translateY(-10px);
}

.hamburger__line--3 {
  transform: translateY(10px);
}

/*ハンバーガーがクリックされたら*/
.open .hamburger__line--1 {
  transform: rotate(-26deg);
}

.open .hamburger__line--2 {
  opacity: 0;
}

.open .hamburger__line--3 {
  transform: rotate(26deg);
}

/* 
  sp-nav(ナビ)
  =================================== */
.sp-nav {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  /* ふわっと表示 */
  transition: 0.5s ease-in-out;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 200;
  background-color: #F8FDFF;
  padding: 5vw;
  color: #608996;
  display: block;
  /* ★ブロック要素に戻す */
  overflow-y: auto;
  /* ★縦スクロール可能にする */
  -webkit-overflow-scrolling: touch;
  /* iOSで滑らかスクロール */
}

.sp-nav a {
  color: #608996;
}

.sp-nav .footer_nav {
  gap: 80px;
  margin-bottom: 200px;
}

.sp-nav .ly_footer_body figure {
  width: 416px;
}

.sp-nav .footer_logo {
  width: 180px;
  display: inline-block;
}

.sp-nav .footer_info .access_info {
  width: 380px;
}


.sp-nav .sns_link {
  margin-top: 120px;
}

.sns_link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px
}


.sns_link a {
  background-color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 100vmax;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sns_link a img {
  vertical-align: sub;
  width: 18px;
}

.sp-nav .nav_privacy {
  font-size: 0.9em;
}


.open .sp-nav {
  visibility: visible;
  opacity: 1;
  margin-top: 0;
}

.sp-nav_header {
  display: flex;
  padding: 32px 22px 32px;
}

header .header_nav {
  display: none;
}

.sp-nav_header .yukapeta_title {
  width: 200px;
  margin-bottom: 0;
}

.spnav_menu {
  height: inherit;
}

header .sp-nav .spnav_menu {
  display: flex;
  flex-direction: column;
  padding: 80px 120px 0 120px;
}

header .sp-nav .spnav_menu a {
  padding: 0.8em 0;
  /* border-bottom: 1px solid #D8D8D8; */
  font-size: 16px;
}

header .sp-nav .spnav_menu a.insta {
  padding: 0.8em 0 0;
  border-bottom: 1px solid #747474;
  font-size: 16px;
  display: inline-block;
  width: fit-content;
  margin-top: 40px;
  font-size: 13px;
}

.js-float {
  opacity: 0;
  transform: translateY(24px);
}

.js-float.is-show {
  animation: floatUp 1.2s cubic-bezier(.22, .61, .36, 1) forwards;
}

@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }

  60% {
    opacity: 1;
    transform: translateY(-6px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.js-fade {
  opacity: 0;
  transform: translateY(12px);
}

.js-fade.is-show {
  animation: fadeUp 1s ease-out forwards;
}


@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.delay-1.is-show {
  animation-delay: 0.25s;
}

.delay-2.is-show {
  animation-delay: 0.5s;
}

.delay-3.is-show {
  animation-delay: 0.75s;
}

.sec_news .section_title,
.sec_partner .section_title,
.sec_contact .section_title {
  background-color: #fff;
  padding: 0 3em;
  margin-top: -120px;
}

.news_list {
  max-width: 876px;
  text-align: left;
}

.news_list li {
  padding: 0 24px 24px;
  border-bottom: 1px dashed #608996;
  margin-bottom: 32px;

}

.news_list li .news_body {
  width: 700px;
}

.news_list li figure {
  width: 100px;
  height: 100px;
  overflow: hidden;
}

.news_list li .news_body {
  width: 700px;
}

.date {
  font-size: 14px;
  margin-right: 0.8em;
  margin-top: 80px;
}

.sec_link {
  margin-bottom: 100px;
  padding-top: 100px;
}

.sec_link .row {
  justify-content: center;
  gap: 40px;
}

.sec_link h3 {
  margin-bottom: 0px;
}

.sec_link a {
  width: 500px;
  display: block;
  position: relative;
  padding: 56px 0 40px;
  margin: 0;
  transition: 0.6s;
}

.sec_link a:hover {
  background-color: #EFF8FF;
  opacity: 1;
}

.sec_link .section_title {
  margin: 0 auto;
}

.sec_link a figure {
  width: 68px;
  position: absolute;
  bottom: -1px;
  right: 50px;
}

.sec_link a:last-of-type figure {
  width: 100px;
}

.sec_link .ly_border .section_title {
  margin: 0 auto;
}

.l_image {
  padding: 0 5vw;
}

.category_tag {
  font-size: 12px;
  color: #fff;
  background-color: #81C0D4;
  padding: 0.3em 0.8em;
  border-radius: 100vmax;
  line-height: 1;
}

.sec_contact {
  margin-top: 150px;
  padding-top: 0;
}

.sec_contact h3 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #608996;
  line-height: 1.6;
  margin-bottom: 0;
}

.sec_contact .section_title .en {
  color: #F2D600;
  display: inline-block;
  text-align: center;
}

.sec_contact .ly_border .section_title {
  margin: -110px auto 24px;
  width: fit-content;
}

.sec_contact .contact_inner {
  max-width: 1046px;
  margin: 0 auto;
  padding: 80px 64px 48px;
}

.sec_contact .btn {
  background-color: #81C0D4;
  border: none;
  color: #fff;
  margin: 0 24px 0;
  transition: 0.6s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: color 0.6s ease;
}

.sec_contact .btn svg path {
  transition: stroke 0.6s ease;
}

/* ホバー時 */
.sec_contact .btn:hover {
  color: #608996;
}

.sec_contact .btn:hover svg path {
  stroke: #608996;
}

.sec_contact .btn:hover {
  background-color: #F9F4B3;
  opacity: 1;
}

.sec_contact .btn::after {
  content: none;
}


.sec_contact a.en {
  font-size: 28px;
}

.sec_contact a.en small {
  font-size: 17px;
}

.btn_wrap {
  display: flex;
  justify-content: center;
  margin: 1.6em auto 0 auto;
  flex-wrap: wrap;
}


footer {
  margin-top: 120px;
  padding: 16px 5vw;
  position: relative;
  color: #608996;
}

footer a {
  color: #608996;
}

.footer_bg {
  position: absolute;
  width: 40vw;
  min-width: 580px;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.ly_footer_body {
  gap: 40px;
}

.footer_info {
  font-size: 15px;
}

.footer_info .logo {
  width: 212px;
  height: fit-content;
}

.footer_info .access_info {
  width: 380px;
}

.footer_info .map {
  width: 385px;
}

.footer_nav_wrapper {
  margin-top: 80px;
  align-items: center;
}

.footer_tel {
  margin-top: 20px;
  margin-bottom: 16px;
}

.footer_add {
  margin-top: 32px;
}

.gmap {
  color: #608996;
  padding-bottom: 0.4em;
  border-bottom: 1px solid #608996;
}

.gmap img {
  vertical-align: middle;
}

.footer_nav a {
  display: block;
  padding: 0.4em 0;
}

.footer_nav {
  justify-content: flex-start;
  gap: 50px;
}

footer .sns_link {
  margin-top: 40px;
}

footer .sns_link a {
  background-color: #F4FAFC;
}

#page-top {
  width: 90px;
}

#page-top a:hover {
  opacity: 1;
}

#page-top a:hover img {
  animation: swing 0.6s ease-in-out;
}

@keyframes swing {
  0% {
    transform: rotate(0deg);
  }

  20% {
    transform: rotate(5deg);
  }

  40% {
    transform: rotate(-5deg);
  }

  60% {
    transform: rotate(3deg);
  }

  80% {
    transform: rotate(-3deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.copyright {
  padding-top: 24px;
  padding-bottom: 16px;
  font-size: 12px;
  text-align: right;
}


@media screen and (max-width: 767px) {
  html {
    margin-top: 0 !important;
  }

  body {
    min-width: inherit;
    font-size: 15px;
    line-height: 1.8;
  }

  section {
    padding-top: 80px;
  }

  .inner {
    width: 91vw;
  }

  .pc {
    display: none;
  }

  .mobile {
    display: block;
  }

  .row {
    flex-wrap: wrap;
  }

  header {
    padding: 20px 5vw;
  }

  .hamburger {
    top: 14px;
  }

  .header_logo {
    width: 160px;
  }

  .hamburger__line {
    width: 40px;
  }

  .hamburger__line--2 {
    width: 40px;
  }

  .hamburger__line--3 {
    width: 40px;
  }

  .open .hamburger__line--3 {
    width: 40px;
  }

  header .inner {
    width: 100%;
    padding-right: 0;
  }

  .sp-nav {
    padding-bottom: 64px;
  }


  .sp-nav .footer_nav {
    flex-wrap: wrap;
    width: 100%;
    gap: 0;
    margin-bottom: 80px;
  }

  .sp-nav .footer_info .access_info {
    width: 100%;
  }

  .sp-nav .footer_nav>div,
  .sp-nav .ly_footer_body figure,
  .sp-nav .footer_info .access_info {
    width: 100%;
  }

  .sp-nav .footer_info,
  .sp-nav .ly_footer_body {
    flex-wrap: wrap;
  }

  .sp-nav .footer_logo {
    width: 154px;
    margin-bottom: 28px;
  }

  .sp-nav .sns_link {
    margin-top: 0;
    margin-bottom: 2.5em;
    font-size: 13px;
  }

  .sns_link {
    margin-top: 0;
  }

  .sp-nav .access_info {
    font-size: 0.9em;
  }


  .btn {
    width: 260px;
    padding: 0.9em 1em;
  }

  .section_title .en {
    font-size: 12px;
  }

  .ly_border {
    border-radius: 20px;
    margin: 0 auto;
    padding: 64px 24px 40px;
    text-align: center;
  }

  .sec_news .section_title,
  .sec_partner .section_title,
  .sec_contact .section_title {
    padding: 0 1em;
    margin-top: -102px;
  }

  .news_list li {
    padding: 0 4px 24px;
    margin-bottom: 24px;
  }

  .news_list li figure {
    width: 80px;
    height: 80px;
  }

  .news_list li .news_body {
    width: calc(100% - 100px)
  }

  .sec_link a {
    width: 100%;
    padding: 32px 0 28px;
    margin: 0;
  }

  .sec_link h3 {
    font-size: 22px;
  }

  .sec_link .row {
    justify-content: center;
    gap: 24px;
  }

  .sec_link a figure {
    width: 17%;
    right: 20px;
  }

  .sec_link a:last-of-type figure {
    width: 70px;
  }

  .l_image {
    height: 200px;
  }

  .l_image img {
    border-radius: 20px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: 20% center;
  }

  .sec_contact {
    padding-top: 0;
    margin-top: 90px;
  }

  .sec_contact h3 {
    font-size: 22px;
    line-height: 1.4;
  }

  .sec_contact .contact_inner {
    padding: 80px 24px 40px;
  }

  .sec_contact .btn {
    margin: 16px auto;
  }

  .sec_contact .ly_border .section_title {
    margin-bottom: 18px;
  }

  .sec_contact a.en {
    font-size: 26px;
  }

  footer {
    margin-top: 80px;
  }

  .footer_info .access_info,
  .footer_info .map {
    width: 100%;
  }

  footer .footer_nav {
    display: none;
  }

  .footer_logo {
    width: 160px;
    margin-bottom: 40px;
    display: inline-block;
  }

  footer .sns_link {
    margin-top: 0;
  }

  #page-top {
    width: 72px;
    margin: 0 0 0 auto;
  }

  .footer_nav_wrapper {
    margin-top: 24px;
    align-items: center;
  }

  .footer_nav a {
    font-size: 16px;
  }

  .copyright {
    font-size: 11px;
    text-align: right;
    padding: 1.2em 0;
  }

}