@charset "UTF-8";

@font-face {
  font-family: 'LINE Seed JP_OTF';
  src: url('/css/font/WOFF2/LINESeedJP_OTF_Th.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LINE Seed JP_OTF';
  src: url('/css/font/WOFF2/LINESeedJP_OTF_Th.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LINE Seed JP_OTF';
  src: url('/css/font/WOFF2/LINESeedJP_OTF_Th.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LINE Seed JP';
  src: url('/css/font/WOFF2/LINESeedJP_OTF_Th.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}


/* CSS Document */

.media_pc {
  display: block;
}

.media_sp {
  display: none;
}

.media_sp_414 {
  display: none;
}

body {
  position: relative;
  font-family: "LINE Seed JP_OTF";
}

.wrapper {
  overflow: hidden;
}

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

.section {
  position: relative;
  z-index: 1;
}

.section_inner {
  text-align: center;
}

.h2_title {
  font-size: min(4.5vw, 50px);
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: inline-block;
  position: relative;
  margin-bottom: 72px;
}

.h2_title span {
  font-size: 18px;
  color: #1fc2de;
  display: block;
  font-weight: normal;
  margin-top: -6px;
  padding-bottom: 4px;
}

.h2_title::after {
  content: "";
  width: 80px;
  height: 5px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  background: linear-gradient(90deg, #1fc2de 0%, #1fc2de 50%, #fff 50%, #fff 100%);
  border: solid 1px #1fc2de;
}



@media screen and (max-width:768px) {
  .media_pc {
    display: none;
  }

  .media_sp {
    display: block;
  }

  .media_sp_414 {
    display: block;
  }

  .h2_title {
    margin-bottom: 53px;
  }
}

@media screen and (max-width:414px) {
  .h2_title {
    font-size: 32px;
    margin-bottom: 37px;
    line-height: 1.2;
  }

  .h2_title span {
    font-size: 15px;
    margin-top: 5px;
  }
}


/*------------------------------------------------------
パン屑
------------------------------------------------------*/
.bread_list {
  display: flex;
  max-width: 1040px;
  margin: 0 auto;
  padding: 10px;
  z-index: 2;
  position: relative;
}

.bread_list_li::after {
  content: "";
  width: 5px;
  height: 5px;
  border: solid 1px #aaa;
  border-left: none;
  display: block;
  position: absolute;
  top: 2px;
  bottom: 0;
  right: 0px;
  margin: auto;
  border-bottom: none;
  transform: rotate(45deg);
}

.bread_list_li {
  position: relative;
  padding-right: 10px;
  margin-right: 10px;
  color: #018dc5;
  font-size: 13px;
  white-space: nowrap;
}

.bread_list_li:last-child:after {
  display: none;
}

.bread_list_li:last-of-type {
  overflow-x: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.bread_list_li a {
  color: #000;
}

@media screen and (max-width:768px) {
  .bread_list {
    display: none;
  }
}

/*-------------------------------------------------------
nav
-------------------------------------------------------*/
header {
  display: flex;
  padding: 24px 32px 24px 32px;
  align-items: baseline;
  width: 100%;
  box-sizing: border-box;
  z-index: 4;
  position: fixed;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.9);
  /* 白＋50%透過 */
  max-width: 100vw;
}

@media screen and (max-width: 768px) {
  header {
    max-height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: top 0.3s ease;
    padding: 12px 24px 12px 12px;
  }

  header.hidden {
    top: -80px;
    /* ヘッダーの高さに応じて調整 */
  }
}


.header-inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo img {
  height: 40px;
}

@media screen and (max-width: 768px) {
  .logo img {
    height: 24px;
  }
}

.nav-menu-wrap {
  display: flex;
  /* これ絶対必要 */
  align-items: center;
  /* これも必要（上下中央揃え） */
  gap: 24px;
  /* ナビとメニューの間を空ける */
}

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

@media screen and (max-width:768px) {
  .nav {
    display: none;
  }
}

.nav-list {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-list li a,
.nav-list li p {
  text-decoration: none;
  transition: opacity 0.3s;
  color: #3B5266;
  font-feature-settings: 'palt' on, 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  /* line-height: 22.4px; */
}

.nav-list li a.mark-to {
  border-radius: 4px;
  background: var(--text-Lightblue, #018DC5);
  color: white;
  padding: 8px 16px;
}

.nav-list li a.mark-from {
  border-radius: 4px;
  background: var(--text-Lightblue, #0000A0);
  color: white;
  padding: 8px 16px;
}

.nav-list li a:hover {
  /* opacity: 0.7; */
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
}

.menu-icon {
  line-height: 1;
}

.menu-text {
  color: #3B5266;
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 14px;
}

@media screen and (max-width:768px) {
  .menu-text {
    display: none;
  }
}

.hamburger {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  z-index: 5;
}

.hamburger.show span:nth-child(1) {
  width: 60px;
  top: 18px;
  transition: 0.5s;
  transform: rotate(45deg);
}

.hamburger.show span:nth-child(2) {
  display: none;
  transition: 0.5s;
}

.hamburger.show span:nth-child(3) {
  width: 60px;
  top: 18px;
  bottom: inherit;
  transition: 0.5s;
  transform: rotate(-45deg);
}

#header.fixed .hamburger.show span {
  background: #fff;
}

.nav_btn {
  width: 70px;
  height: 36px;
  position: fixed;
  top: 20px;
  right: 10px;
  z-index: 5;
  display: block;
}

.nav_btn:hover {
  opacity: 0.7;
  transition: 0.5s;
}

.hamburger span {
  height: 2px;
  background: #1fc2de;
  display: block;
  position: absolute;
}

.hamburger span:nth-child(1) {
  width: 80%;
  top: 0;
}

.hamburger span:nth-child(2) {
  width: 90%;
  top: 18px;
}

.hamburger span:nth-child(3) {
  width: 100%;
  bottom: 0;
}


/*ハンバーガーの中*/
.h_nav {
  opacity: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  color: #1fc2de;
  position: fixed;
  right: -120%;
  top: 0;
  bottom: 0;
  transition: 0.6s;
  z-index: 4;
}

.to .h_nav {
  opacity: 0;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  /* background: #1fc2de; */
  color: #fff;
  position: fixed;
  right: -120%;
  top: 0;
  bottom: 0;
  transition: 0.6s;
  z-index: 4;
}

.to .h_nav .nav_li a {
  font-size: 18px;
  color: #fff;
}

.h_nav.show {
  opacity: 1;
  z-index: 4;
  right: 0;
}

.h_nav .nav_wrap {
  display: flex;
  flex-direction: column;
  /* 縦並びにする */
  height: calc(var(--vh, 1vh) * 100);
  width: 30%;
  padding: 24px;
  box-sizing: border-box;
  margin: 0 auto;
}


@media screen and (max-width:768px) {
  .h_nav .nav_wrap {
    width: 100%;
  }
}

.h_nav .nav_ul_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-\ transform: translateY(-50%) translateX(-50%);
}

.h_nav .nav_li {
  margin-bottom: 12px;
  margin-right: 0;
  text-align: center;
}

.h_nav .nav_li a {
  font-size: 18px;
  color: #1fc2de;
}

.to .nav_ul.type02 {
  display: none;
}

.from .nav_ul.type01 {
  display: none;
}

.h_nav.show .nav_ul {
  display: block;
}

.to .h_nav.show .nav_ul.type02 {
  display: none !important;
}

.from .h_nav.show .nav_ul.type02 {
  display: block !important;
}

.from .h_nav.show .nav_ul.type01 {
  display: none !important;
}

.to .hamburger.show span {
  background: #fff;
}


.h_nav {
  opacity: 0;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  background: #fff;
  color: #1fc2de;
  position: fixed;
  right: -120%;
  top: 0;
  bottom: 0;
  transition: 0.6s;
  z-index: 4;
}



.h_nav.show {
  display: block;
}

.nav_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav_buttons {
  margin: 20px 0;
  display: flex;
  gap: 16px;
}

@media screen and (max-width:768px) {
  .nav_buttons {
    margin: 5px 0;
  }
}

.nav_buttons a {
  width: 160px;
  text-align: center;
  text-decoration: none;
}

.btn-primary {
  background: #183783;
  padding: 8px 24px;
  border-radius: 9999px;

  color: #FFF;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 15px;
  /* 15px */
}

.btn-secondary {
  border: 2px solid #183783;
  padding: 8px 24px;
  border-radius: 9999px;

  color: #183783;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 15px;
  /* 15px */


}

.nav_section {
  margin-top: 15px;
  padding-left: 16px;
}

.nav_section h2 {
  font-size: 16px;
  color: #3B5266;
  font-family: "LINE Seed JP_OTF";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 150% */
  margin-bottom: 10px;
}

.nav_section a{
  text-decoration: none;
  font-size: 16px;
  color: #3B5266;
  font-family: "LINE Seed JP_OTF";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 150% */
  margin-bottom: 10px;

}

.nav_list,
.sub_list {
  list-style: none;
  padding-left: 0;
}

.nav_list>li {
  margin-bottom: 10px;
  padding-left: 16px;
}

.sub_list {
  margin-top: 8px;
  padding-left: 16px;
}

.sub_list li {
  margin-bottom: 6px;
}

.nav_list a,
.sub_list a {
  text-decoration: none;

  color: #3B5266;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 183.333%;
  /* 183.333% */


}

.nav_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}


/* 
@media screen and (max-width:768px) {
  .nav {
    display: none;
  }

  .h_nav .nav_ul_wrap {
    top: 60px;
    left: 0;
    transform: none;
    -webkit-\ transform: none;
    right: 0;
    margin: auto;
  }

  .h_nav {
    padding: 20px;
    box-sizing: border-box;
  }

  .h_nav .nav_li {
    margin-bottom: 12px;
    margin-right: 0;
    border-bottom: solid 1px #24b5ce;
    padding-bottom: 12px;
    text-align: left;
  }

  .h_nav .nav_li a {
    display: block;
  }

  .nav_li.mypage {
    border: none;
  }

  .from .nav_li.mypage.media_sp {
    display: none;
  }
} */


/*-------------------------------------------------------
フローティングバナー
-------------------------------------------------------*/
.floating_banner {
  bottom: 20px;
  position: fixed;
  right: 0;
  z-index: 3;
}

@media screen and (max-width:414px) {
  .floating_banner {
    bottom: 20px;
    position: fixed;
    right: 0;
    left: 0;
    z-index: 3;
  }

  .floating_banner img {
    width: 100%;
  }
}

/*-------------------------------------------------------
footer
-------------------------------------------------------*/
#footer {
  position: relative;
  z-index: 0;
  padding: 64px 200px;
  background: #008DC5;
  /* デフォルト */
}

@media screen and (max-width:768px) {
  #footer {
    position: relative;
    z-index: 0;
    padding: 32px 44px;
    background: #008DC5;
    /* デフォルト */
  }
}

body.url-from #footer {
  background: #183783 !important;
}

.footer-container {
  width: 1040px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .footer-container {
    width: 70vw;
  }
}

.footer_inner {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .footer_inner {
    flex-direction: column;
    gap: 24px;
    /* 余白が欲しい場合 */
  }
}



.anker {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .anker {
    flex-direction: column;
    justify-content: center;
  }
}

.terms {
  display: flex;
  justify-content: space-between;
  gap: 44px;
}

@media screen and (max-width: 768px) {
  .terms {
    display: flex;
    justify-content: center;
    gap: 44px;
  }
}

.terms a {
  color: var(--Volve-White, #FFF);
  font-feature-settings: 'palt' on, 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: clamp(14px, 2vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 25.6px;
  letter-spacing: 0.48px;
  text-decoration: none;
}

.copyright {
  color: var(--Volve-White, #FFF);
  text-align: right;
  font-family: Rubik;
  font-size: clamp(10px, 2vw, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: 17.5px;
}

@media screen and (max-width: 768px) {
  .copyright {
    margin-top: 10px;
    text-align: center;
    font-weight: 400;
  }
}

/* ページトップボタン */
#page-top {
  bottom: 20px;
  position: fixed;
  right: 10px;
  padding-bottom: 10px;
  z-index: 3;
}

#page-top:hover {
  opacity: 0.7;
  transition: 0.5s;
}

.footer_av {
  background: #1fc2de;
  text-align: center;
  padding: 120px 0;
}

.footer_lead {
  color: var(--Volve-White, #FFF);
  font-feature-settings: 'palt' on, 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: clamp(20px, 4vw, 28px);
  font-style: normal;
  font-weight: 700;
  line-height: 33.6px;
  letter-spacing: 0.84px;
  margin-bottom: 36px;
}

.footer_ul {
  display: flex;
}

@media screen and (max-width: 768px) {
  .footer_ul {
    flex-direction: column;
  }
}

.footer_li a {
  color: var(--Volve-White, #FFF);
  font-feature-settings: 'palt' on, 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  text-decoration: none;
}

.footer_in_ul {
  margin-top: 36px;
}

/* スマホのときは非表示 */
@media screen and (max-width: 768px) {
  .footer_ul .footer_li:nth-of-type(2) .footer_in_ul,
  .footer_ul .footer_li:nth-of-type(3) .footer_in_ul {
    display: none !important;
  }
}


.footer_li {
  margin-bottom: 36px;
  width: auto;
  padding: 0 60px 0 0;
}

.footer_in_li a {
  color: var(--Volve-White, #FFF);
  font-feature-settings: 'palt' on, 'liga' off, 'clig' off;

  /* Japanese/Body/normal Regular */
  font-family: "LINE Seed JP_OTF";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.6px;
  /* 25.6px */
  letter-spacing: 0.48px;
  /* margin-bottom: 36px; */
  text-decoration: none;
}

.link-wrapper a {
  color: var(--Volve-White, #FFF);
  font-feature-settings: 'palt' on, 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 25.6px;
  letter-spacing: 0.48px;
  text-decoration: none;
}

.footer_in_li {
  line-height: 3;
}

.footer_list {
  padding-bottom: 10px;
}

address {
  max-width: 1200px;
  font-size: 12px;
  text-align: right;
  color: #1fc2de;
  margin: 0 auto;
}

.sns_wrap {
  margin-top: -10px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .sns_wrap {
    width: 100%;
    margin-top: 0px;
  }
}

.sns_wrap img {
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .sns_wrap img {
    margin-bottom: 40px;
  }
}

.sns_title {
  font-size: 18px;
  font-weight: 500;
  color: #1fc2de;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.sns_ul {
  display: flex;
  height: 10%;
  gap: 10px;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .sns_ul {
    padding: 30px 30%;
  }
}


/*-------------------------------------------------------
footer
-------------------------------------------------------*/
/* 追従バナー */
#scroll_follow {
  /* position: fixed;
  right: -4px;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  -webkit- transform: translateY(-50%); */
  position: fixed;
  top: 100px; /* 上から80pxの位置に配置 */
  right: 0px; /* 右端から20pxの位置（必要なら） */
  z-index: 1000;
}

#scroll_follow-sp {
  position: fixed;
  top: 90vw; /* 上から80pxの位置に配置 */
  left: 5%; /* 右端から20pxの位置（必要なら） */
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease, top 0.5s ease; /* durationは長め、delayは無し */
}

/* 表示状態 */
#scroll_follow-sp.visible {
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0.2s; /* 表示のときだけdelayを付ける */
}

/* 再表示時だけ位置変更 */
#scroll_follow-sp.reappear {
  top: 50px;
}

@media screen and (min-width: 769px) {
  #scroll_follow-sp {
    display: none !important;
  }
}

/* スマホ（768px以下）では表示 */
@media screen and (max-width: 768px) {
  #scroll_follow-sp {
    display: block;
  }
}

#scroll_follow.fixed {
  opacity: 1;
}

.sp_scroll_c {
  display: none;
}

.wrapper.to .link_from {
  display: none;
}

.wrapper.from .link_to {
  display: none;
}

@media screen and (max-width:768px) {
  .to #page-top {
    bottom: 20px;
    position: fixed;
    right: 10px;
    z-index: 3;
  }

  #scroll_follow {
    display: none !important;
  }

  /*.sp_scroll_c {
  display: block !important;
}*/
  .sp_scroll_c {
    position: fixed;
    bottom: 0;
    z-index: 2;
  }

  .page_top_sp {
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    max-width: 100px;
    width: 13%;
    height: 71%;
    max-height: 100px;
  }

  .page_top_sp img {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width:414px) {
  .page_top_sp {
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    max-width: 100px;
    width: 13%;
    height: 71%;
    max-height: 100px;
  }
}



/*-------------------------------------------------------
404
-------------------------------------------------------*/
.notfound h1 {
  font-size: 140px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #75dff1;
}

.notfound h1 span {
  display: block;
  font-size: 24px;
  margin-top: -20px;
  letter-spacing: normal;
  color: #ccc;
}

.img_404 {
  margin: 40px auto;
}

.notfound p {
  font-size: 18px;
}


@media screen and (max-width:768px) {
  .notfound h1 {
    font-size: 100px;
    letter-spacing: 0.02em;
  }

  .notfound h1 span {
    font-size: 21px;
  }

  .notfound p {
    font-size: 16px;
  }

  .img_404 {
    margin: 20px auto;
  }
}


/*------------------------------------------------------
sitemap
------------------------------------------------------*/
.sitemap_li a {
  font-size: 18px;
  text-decoration: none;
  color: #1fc2de;
}

.sitemap_ul {
  text-align: left;
}

.sitemap_li_in_ul {
  margin-top: 10px;
  border-top: solid 1px #1fc2de;
  padding-top: 10px;
}

.sitemap_li {
  margin-bottom: 40px;
}

.sitemap_li_in_li {
  margin-bottom: 5px;
}

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






/* 初期状態は非表示 */
.nav-list li {
  position: relative;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px); /* ← 上に隠れてる状態から */
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  padding: 10px 0;
}

.dropdown-wrap{
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-top: 5px;
}

.nav-list li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0); /* ← 通常位置にスライドイン */
  pointer-events: auto;
}

.dropdown li a {
  display: block;
  padding: 8px 16px;
  color: #3B5266;
  white-space: nowrap;
  font-size: 14px;
}

.dropdown li:hover {
  background-color: rgba(0, 0, 0, 0.05); 
  color: #070791;
  transition: background-color 0.3s ease, color 0.3s ease;
}

a.agent {
  padding: 6px 14px;
  font-size: 12px !important;
  text-decoration: none;
  border: solid 1px #637588;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

a.footer_agent {
  padding: 6px 14px;
  font-size: 12px !important;
  text-decoration: none;
  border: solid 1px #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
}