@charset "utf-8";
/* Reset
----------------------------------------------------------------------------------------------------*/
*, *::before, *::after {
  box-sizing: border-box
}
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none
}
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0
}
ul[role='list'], ol[role='list'] {
  list-style: none
}
body {
  min-height: 100vh;
  line-height: 1.5
}
h1, h2, h3, h4, button, input, label {
  line-height: 1.1
}
h1, h2, h3, h4 {
  text-wrap: balance
}
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor
}
img, picture {
  max-width: 100%;
  display: block
}
input, button, textarea, select {
  font: inherit
}
textarea:not([rows]) {
  min-height: 10em
}
:target {
  scroll-margin-block: 5ex
}
/* Break Point
----------------------------------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
  /*16px * 62.5% = 10px*/
}
body {
  font-size: 1.6rem;
  /*10px * 1.6 = 16px*/
}
.vpc1367_in {
  display: inline !important;
}
.vsp1367 {
  display: none !important;
}
.vsp1367_in {
  display: none !important;
}
/* Responsive */
@media screen and (max-width: 1367px) {
  .vsp1367 {
    display: block !important;
  }
  .vsp1367_in {
    display: inline !important;
  }
  .vpc1367, .vpc1367_in {
    display: none !important;
  }
}
.vpc1023_in {
  display: inline !important;
}
.vsp1023 {
  display: none !important;
}
.vsp1023_in {
  display: none !important;
}
/* TABLET */
@media screen and (max-width: 1023px) {
  .vsp1023 {
    display: block !important;
  }
  .vsp1023_in {
    display: inline !important;
  }
  .vpc1023, .vpc1023_in {
    display: none !important;
  }
}
.vpc767_in {
  display: inline !important;
}
.vsp767 {
  display: none !important;
}
.vsp767_in {
  display: none !important;
}
/* MOBILE */
@media screen and (max-width: 767px) {
  .vsp767 {
    display: block !important;
  }
  .vsp767_in {
    display: inline !important;
  }
  .vpc767, .vpc767_in {
    display: none !important;
  }
}
/* Common
----------------------------------------------------------------------------------------------------*/
body {
  background-color: #FFF;
  color: #000;
  text-align: center;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-feature-settings: "palt"1;
  -webkit-text-size-adjust: 100%;
}
/* Responsive */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
    color: inherit; /* 必要に応じて色も調整 */
    text-decoration: none;
  }
}
/* MOBILE */
@media screen and (max-width: 767px) {
  html {
    min-height: 100%;
    position: relative;
  }
  body {
    margin: 0;
    padding: 0;
  }
  a[href^="tel:"] {
    pointer-events: auto;
    text-decoration: none;
  }
}
/* リンクカラー */
a {
  color: #000000; /* default #0a0a0a */
}
/* Anker Link */
.jump_point {
  display: block;
  padding-top: 10rem;
  margin-top: -10rem;
}
/* Text Marker */
.marker {
  text-decoration: underline;
  text-decoration-thickness: 1.5rem;
  text-decoration-color: rgba(255, 255, 0, 0.8);
  text-underline-offset: -0.8rem;
  text-decoration-skip-ink: none;
}
/* Header
----------------------------------------------------------------------------------------------------*/
.header {
  position: fixed;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 10rem;
  width: 100%;
  padding: 0 5rem 0 1rem;
  background-color: #FFF;
}
/* TABLET */
@media screen and (max-width: 1023px) {
  .header {
    flex-direction: row;
    height: 10rem;
    width: 100%;
    padding: 0 2rem;
  }
  .header.top {
    display: flex;
  }
}
/*　上に上がる動き　*/
.header.UpMove {
  animation: UpAnime 1s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    transform: translateY(-250px);
  }
}
/*　下に下がる動き　*/
.header.DownMove {
  animation: DownAnime 1s;
}
@keyframes DownAnime {
  from {
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Header Logo
----------------------------------------------------------------------------------------------------*/
.header__logo {
  z-index: 500;
  width: auto;
}
.header__logo img {
  width: auto;
  min-width: auto;
  display: block;
}
.header__logo .logo-mark {
  width: 7.3rem;
  max-width: none;
  height: auto;
}
.header__logo .logo-text {
  width: 15rem;
  max-width: none;
  height: auto;
}
.header__logo h1 {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
/* --- Responsive --- */
@media screen and (max-width: 1367px) {
  .header__logo {
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
}
/* TABLET */
@media screen and (max-width: 1023px) {
  .header__logo {
    margin: 0;
  }
}
/* Header Navigation
----------------------------------------------------------------------------------------------------*/
.header-inner__nav {
  display: block;
  width: 100%;
}
.header-inner__nav ul {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 22rem));
  justify-content: center;
  width: 100%;
  max-width: 138rem; /* 最大幅を138remに制限 */
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.header-inner__nav li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 10rem;
  width: 100%;
  color: #000;
  text-decoration: none;
}
/* アイコン本体（通常は非表示） */
.header-inner__nav li a::before {
  content: "";
  position: absolute;
  top: 1rem; /* 上の位置調整 */
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 1.6rem; /* アイコンサイズ */
  height: 2.4rem;
  background-image: url("../img/icon-hnav.svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all 0.3s ease;
}
/* hoverで表示 */
.header-inner__nav li a:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.header-inner__nav li a span {
  z-index: 10;
  font-size: clamp(1.4rem, 1.2vw, 2rem);
  font-weight: 600;
  white-space: nowrap;
}
/* TABLET */
@media screen and (max-width: 1023px) {
  .header-inner__nav {
    position: fixed;
    top: -200rem;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100dvh;
    padding-top: 15rem;
    background: #FFF url("../img/bg-header_inner.png") 0 10rem no-repeat;
    background-size: cover;
  }
  .header-inner__nav.panelactive {
    top: 0;
    opacity: 1;
  }
  .header-inner__nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
  }
  .header-inner__nav li {
    width: 100%;
  }
  .header-inner__nav li a {
    height: 12rem;
    width: max(23rem, 70%);
    padding: 0 0 2.8rem;
    margin: 0 auto;
    color: #FFFFFF;
  }
  /* 共通 */
  .header-inner__nav li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 1rem;
    width: 100%;
    height: 1.4rem;
    background-repeat: repeat-x;
    background-size: 4rem 1.2rem; /* 波の細かさ */
  }
  .header-inner__nav li a span {
    font-size: clamp(2rem, 3vw, 4rem);
  }
  /* 強い波 */
  .header-inner__nav li:nth-child(1) a::after {
    background-image: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 12'>\<path d='M0 6 Q10 0 20 6 T40 6' fill='none' stroke='%2394c5e2' stroke-width='2'/>\</svg>");
  }
  /* 少し弱い */
  .header-inner__nav li:nth-child(2) a::after {
    background-image: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 12'>\<path d='M0 6 Q10 2 20 6 T40 6' fill='none' stroke='%2394c5e2' stroke-width='2'/>\</svg>");
  }
  /* 中 */
  .header-inner__nav li:nth-child(3) a::after {
    background-image: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 12'>\<path d='M0 6 Q10 3 20 6 T40 6' fill='none' stroke='%2394c5e2' stroke-width='2'/>\</svg>");
  }
  /* 弱い */
  .header-inner__nav li:nth-child(4) a::after {
    background-image: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 12'>\<path d='M0 6 Q10 4 20 6 T40 6' fill='none' stroke='%2394c5e2' stroke-width='2'/>\</svg>");
  }
  /* ほぼ直線 */
  .header-inner__nav li:nth-child(5) a::after {
    background-image: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 12'>\<path d='M0 6 Q10 5 20 6 T40 6' fill='none' stroke='%2394c5e2' stroke-width='2'/>\</svg>");
  }
  /* 完全直線 */
  .header-inner__nav li:nth-child(6) a::after {
    background-image: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 12'>\<line x1='0' y1='6' x2='40' y2='6' stroke='%2394c5e2' stroke-width='2'/>\</svg>");
  }
}
/* MOBILE */
@media screen and (max-width: 767px) {
  .header-inner__nav li a {
    height: 8rem;
  }
  .header-inner__nav li a:hover::before {
    opacity: 0;
  }
}
/* Header Menu
----------------------------------------------------------------------------------------------------*/
.header-inner__openbtn {
  position: inherit;
  display: none;
}
/* TABLET */
@media screen and (max-width: 1023px) {
  .header-inner__openbtn {
    position: relative;
    top: 0.7rem;
    left: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 7rem;
    width: 7rem;
    color: #FF820C;
    font-size: 1.2rem;
    cursor: pointer;
  }
  .header-inner__openbtn span {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    height: 1.1rem;
    width: 7.2rem;
    background: url("../img/icon-openbtn.svg");
    transition: all .4s;
  }
  .header-inner__openbtn span:nth-of-type(1) {
    top: 0;
  }
  .header-inner__openbtn span:nth-of-type(2) {
    top: 2.4rem;
  }
  .header-inner__openbtn span:nth-of-type(3) {
    top: 4.8rem;
  }
  .header-inner__openbtn.active span:nth-of-type(1) {
    top: 2.2rem;
    left: 2.2rem;
    height: 0.75rem;
    width: 3rem;
    background-color: #007dca;
    transform: translateY(0.01rem) rotate(-45deg);
  }
  .header-inner__openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .header-inner__openbtn.active span:nth-of-type(3) {
    top: 2.2rem;
    left: 2.2rem;
    height: 0.75rem;
    width: 3rem;
    background-color: #007dca;
    transform: translateY(-0.01rem) rotate(45deg);
  }
}
/* Section - LinkButton
----------------------------------------------------------------------------------------------------*/
.btn-detail {
  position: relative;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 7rem;
  width: 20rem;
  padding: 0;
  background: #39b54a;
  border-radius: 999px;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid #c8c8c8;
  transition: padding .4s ease;
}
/* 文字 */
.btn-detail span {
  position: relative;
  z-index: 3;
  font-size: 2rem;
  font-weight: 600;
  color: #000;
  transition: transform .4s ease;
}
/* 白部分（通常100%） */
.btn-detail::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 999px;
  box-shadow: 5px 0 5px rgba(0, 0, 0, .15);
  transition: width .4s ease;
}
/* 矢印（通常：左グレー） */
.btn-detail::after {
  content: "";
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  border-right: 1.4rem solid #c8c8c8;
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
  transition: all .4s ease;
}
/* hover（PCのみ） */
@media (hover:hover) and (pointer:fine) {
  /* 白が縮む */
  .btn-detail:hover::before {
    width: 75%;
  }
  .btn-detail:hover span {
    transform: translateX(-25%);
  }
  /* 矢印を右へ＋白＋右向き */
  .btn-detail:hover::after {
    left: auto;
    right: 2rem;
    border-right: none;
    border-left: 1.4rem solid #fff;
    border-top: 1rem solid transparent;
    border-bottom: 1rem solid transparent;
  }
}
/* TABLET */
@media screen and (max-width: 1023px) {
  .btn-detail {
    height: 4.9rem;
    width: 14rem;
    padding: 0;
    box-sizing: border-box;
  }
  /* 白背景を最初から縮める */
  .btn-detail::before {
    width: 75%;
    transition: none;
  }
  /* 文字位置を最初から左へ */
  .btn-detail span {
    font-size: 1.4rem;
    transform: translateX(-1.75rem);
    transition: none;
  }
  /* 矢印を右向き白に */
  .btn-detail::after {
    position: absolute;
    top: 50%;
    left: auto;
    right: 1.5rem;
    transform: translateY(-50%);
    border-right: none;
    border-left: 0.7rem solid #fff;
    border-top: 0.5rem solid transparent;
    border-bottom: 0.5rem solid transparent;
    transition: none;
  }
  /* 矢印を右へ＋白＋右向き */
  .btn-detail:hover::after {
    left: auto;
    right: 1.5rem;
    transform: translateY(-50%);
    border-right: none;
    border-left: 0.7rem solid #fff;
    border-top: 0.5rem solid transparent;
    border-bottom: 0.5rem solid transparent;
  }
}
/* Footer
----------------------------------------------------------------------------------------------------*/
footer {
  position: relative;
}
.footer {
  position: absolute;
  top: -7rem;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  height: 63rem;
  width: 100%;
  padding-top: 0;
  background: url("../img/footer_wave01.png") no-repeat;
  background-size: cover;
  color: #FFF;
}
.sec-waves {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}
.sec-waves ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  height: 16.5rem; /* 波の高さに合わせる */
}
.wave {
  position: absolute;
  left: 0;
  top: 0;
  width: 200%; /* ループ時に隙間が出ないよう拡張 */
}
.wave img {
  width: 100%;
  display: block;
}
/* ===== 各波のアニメーション ===== */
.wave01 {
  animation: waveMove 18s linear infinite;
  z-index: 3;
}
.wave02 {
  animation: waveMoveReverse 25s linear infinite;
  opacity: 0.8;
  z-index: 2;
}
.wave03 {
  animation: waveMove 35s linear infinite;
  opacity: 0.6;
  z-index: 1;
}
/* ===== アニメーション ===== */
@keyframes waveMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes waveMoveReverse {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
/* TABLET */
@media screen and (max-width: 1023px) {
  .footer {
    top: -5rem;
  }
  .sec-waves ul {
    height: 8rem; /* 波の高さに合わせる */
  }
  .wave {
    width: 500%; /* ループ時に隙間が出ないよう拡張 */
  }
}
/* Footer Corporate Info
----------------------------------------------------------------------------------------------------*/
.footer-corpo {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: min(90%, 151.2rem);
  padding: 16rem 0 0;
  margin: 0 auto;
  text-align: left;
}
.footer-corpo__btn .btn-detail {
  margin-bottom: 3rem;
}
.footer-corpo__nav a {
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
}
.footer-corpo__nav a + a::before {
  content: "｜";
  margin: 0 0.8rem;
}
.footer-corpo__add {
  margin-top: 5rem;
  text-align: left;
}
.footer-corpo__add h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75;
}
.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  text-decoration: none;
}
.footer-corpo__add img {
  width: auto;
  max-width: none !important;
  display: block;
}
.f-logo-mark {
  width: 11rem !important;
  height: auto;
}
.f-logo-text {
  width: 23.6rem !important;
  height: auto;
}
.footer-corpo__add address {
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.75;
}
/* TABLET */
@media screen and (max-width: 1023px) {
  .footer-corpo__btn .btn-detail span {
    font-size: 1.4rem;
    transform: translateX(-2.1rem);
    transition: none;
  }
}
/* MOBILE */
@media screen and (max-width: 767px) {
  .footer-corpo {
    justify-content: space-around;
    flex-direction: column;
    width: max(33rem, 75%);
    padding: 0 0 3rem;
  }
  .footer-corpo__btn {
    margin: 0 auto;
    text-align: center;
  }
  .footer-corpo__nav a {
    font-size: 1.8rem;
  }
  .footer-corpo__add {
    margin-top: 0;
  }
  .footer-corpo__add h1 {
    font-size: 2.4rem;
  }
  .footer-corpo__add address {
    font-size: 1.6rem;
  }
  .f-logo-mark {
    width: 10rem !important;
  }
  .f-logo-text {
    width: 22rem !important;
  }
}
/* Footer Navigation
----------------------------------------------------------------------------------------------------*/
.footer-inner {
  width: 100%;
  margin-left: 5rem;
}
.footer-inner__nav ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0;
  width: min(80%, 115rem);
  padding: 0;
  margin: 0 auto;
  list-style: none;
}
.footer-inner__nav li {
  flex: 1;
  min-width: 12rem;
}
.footer-inner__nav li {
  border-left: 1px solid #FFF;
}
.footer-inner__nav li:first-child {
  border-left: none;
}
.footer-inner__nav a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 8rem;
  width: 100%;
  color: #FFF;
  text-decoration: none;
  flex-direction: column;
}
/* アイコン（通常非表示） */
.footer-inner__nav a::after {
  content: "";
  position: absolute;
  bottom: 0rem; /* ←下位置 */
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: 1.6rem;
  height: 2.4rem;
  background-image: url("../img/icon-fnav.svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all 0.3s ease;
}
/* hoverで表示 */
.footer-inner__nav a:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.footer-inner__nav a span {
  z-index: 10;
  font-size: 2rem;
  font-weight: 600;
  white-space: nowrap;
}
/* TABLET */
@media screen and (max-width: 1023px) {
  .footer-inner {
    width: 25.8rem;
    margin: 0 auto;
  }
  .footer-inner__nav ul {
    gap: 2rem;
  }
}
/* Footer Copy
----------------------------------------------------------------------------------------------------*/
.footer-copy {
  position: absolute;
  top: 56rem;
  z-index: 150;
  display: block;
  width: 100%;
  padding: 4rem;
  background-color: #ff6d00;
  color: #FFF;
  font-size: 1.2rem;
  text-align: center;
}
/* MOBILE */
@media screen and (max-width: 767px) {
  .footer-copy {
    padding: 3.5rem 1rem;
  }
}
/* Animation
----------------------------------------------------------------------------------------------------*/
/* Fade In */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Fade Up */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger, .fadeUpTrigger {
  opacity: 0;
}
/* Breadcrumbs
----------------------------------------------------------------------------------------------------*/
.breadcrumbs {
  width: min(90%, 151.2rem);
  padding: 0;
  margin: 0 auto;
}
.breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 1rem 0;
  margin: 0;
  font-size: 2rem;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
  color: #000000;
}
.breadcrumbs li img {
  width: auto;
  height: 3.2rem;
  margin-left: 2rem;
}
.breadcrumbs li + li::before {
  content: "＞";
  margin: 0 0.2rem;
}
.breadcrumbs li:last-child::before {
  content: none;
}
.breadcrumbs a {
  text-decoration: none;
}
/* MOBILE */
@media screen and (max-width: 767px) {
  .breadcrumbs {
    width: max(33rem, 75%);
  }
  .breadcrumbs ul {
    font-size: 1.2rem;
  }
  .breadcrumbs li img {
    height: 1.2rem;
    margin-left: 1rem;
  }
}
/* Page Top
----------------------------------------------------------------------------------------------------*/
.pagetop {
  display: none;
  position: fixed;
  bottom: 10rem;
  right: 1.5rem;
  z-index: 1000;
  height: 4rem;
  width: 4rem;
  padding: 0.9rem 1.25rem;
  border-radius: 0.5rem;
  background-color: #FFF;
}
/* MOBILE */
@media screen and (max-width: 767px) {
  .pagetop {
    bottom: 5rem;
  }
}