@charset "UTF-8";
/*メディアクエリ*/
/*WordPress対策・全ページ余白なし*/

/* 表示状態 */
.fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 1s ease-out, transform 1s ease-out;
    }

    .fade-in.show {
      opacity: 1;
      transform: translateY(0);
    }

    .content {
      /*margin: 100vh 0;*/
    }

* {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
}

img {
  vertical-align: bottom; /*画像の下に余白を作らない*/
  max-width: 100%;
}

a {
  text-decoration: none; /*aタグに下線がつかない*/
}

main {
  /*各ページの固有の内容を囲むクラス*/
  z-index: 1;
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

@media screen and (min-width: 769px) {
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
  main {
    padding: 160px 0 0 0; /*PCヘッダーの高さ*/
  }
  /*電話番号をクリックしても自動発信しない*/
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  main {
    padding: 60px 0 0 0; /*SPヘッダーの高さ*/
  }
}
.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInTrigger {
  opacity: 0;
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

p.indent {
  padding-left: 1em;
  text-indent: -1em;
}

/*ヘッダー*/
/*PC*/
@media screen and (min-width: 769px) {

.sub-movie-box {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
margin: 95px 20px 0px;
}

.anchor-target {
  position: relative;
}

.anchor-target::before {
  content: "";
  display: block;
  height: 160px; /* ヘッダーの高さ */
  margin-top: -160px; /* 高さと同じ分だけマイナスに */
  visibility: hidden;
}

.header_link {
    position: relative;
    width: 100%;
    height: auto;
  }
.link-kaiin-box{
        display: flex;
        -moz-column-gap: 20px;
        column-gap: 20px;
        justify-content: end;
        align-items: center;
        margin: 0 20px 1px auto;
}
.header_link .my-button {
background-color: #0e6eb8;
        color: white;
        padding: 5px 40px;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s;
        margin: 10px 0;
    }
.header_link .my-button:hover {
      background-color: #45a049; /* ホバー時の色 */
    }
.header__nav-link {
    border-right: 1px solid #ccc; /* 各リンクの右に縦線 */
    padding: 0 10px;
    text-decoration: none;       /* 下線を消す（必要なら） */
    color: inherit;              /* テキスト色を親から継承 */
        padding: 0 50px;
}
.header__nav-link:first-child {
    border-left: 1px solid #ccc; /* 左側に縦線を追加 */
}
.topNews__date{color: #27a7e1;}

.topNews {
background-image: url('./image/top/back-news.png'); /* 画像のパスを指定 */
  background-size: cover;                  /* 画面全体に画像をカバーさせる */
  background-repeat: no-repeat;            /* 画像の繰り返しを防ぐ */
  background-position: bottom center;      /* 画像を中央に配置 */
  margin: 0;                               /* デフォルトの余白を削除 */
}
.footer-menu{
    text-align: center;
    margin-bottom: 50px;
}

  header {
    z-index: 100;
    position: fixed;
    top: 0;
    width: 100%;
    height: 160px;
    background-color: #fff;
  }
  header::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 9px;
    top: 0;
    left: 0;
    background-color: #0e6eb8;
  }
  header .header__container {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 15px;
  }
  header .header__container .header__logo-link {
    display: block;
    position: absolute;
    width: 320px;
    height: auto;
    top: 14px;
    left: 30px;
    transition: 0.3s ease-in-out;
  }
  header .header__container .header__logo-link:hover {
    opacity: 0.5;
  }
  header .header__container .header__contact {
    display: flex;
    -moz-column-gap: 20px;
         column-gap: 20px;
    justify-content: end;
    align-items: center;
    margin: 0 20px 1px auto;
  }
  header .header__container .header__contact .header__tel .header__contact-link {
    display: flex;
    gap: 9px;
    justify-content: end;
    align-items: center;
  }
  header .header__container .header__contact .header__tel .header__contact-link img {
    width: 25px;
    height: auto;
  }
  header .header__container .header__contact .header__tel .header__contact-link .header__contact-number {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 3.75px;
    text-align: right;
    color: #000000;
  }
  header .header__container .header__contact .header__tel .header__contact-hours {
    margin-top: -5px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 11px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 1.3px;
    text-align: right;
    color: #333;
  }
  header .header__container .header__contact .header__services {
    display: grid;
    grid-template-columns: 110px 130px 35px;
    gap: 0 8.5px;
    justify-content: end;
    align-items: center;
    margin-top: 10px;
  }
  header .header__container .header__contact .header__services .header__service-link-1 {
    grid-column: 1/4;
    grid-row: 1/2;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 11px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 2.5px;
    text-align: left;
    color: #333;
  }
  header .header__container .header__contact .header__services .header__service-link-2 {
    grid-column: 1/2;
    grid-row: 2/3;
    width: 110px;
    height: auto;
    transition: 0.3s ease-in-out;
  }
  header .header__container .header__contact .header__services .header__service-link-2:hover {
    opacity: 0.5;
  }
  header .header__container .header__contact .header__services .header__service-link-3 {
    grid-column: 2/3;
    grid-row: 2/3;
    display: block;
    width: 130px;
    height: auto;
    transition: 0.3s ease-in-out;
  }
  header .header__container .header__contact .header__services .header__service-link-3:hover {
    opacity: 0.5;
  }
  header .header__container .header__statement {
    position: relative;
    width: 100%;
    height: auto;
  }
  header .header__container .header__statement .header__statement-text {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 54px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 3.7px;
    text-align: left;
    color: #4f474a;
  }
  header .header__container .header__statement .header__statement-text .header__statement-strong {
    display: block;
    margin-top: 10px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 35px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 9px;
    text-align: left;
    color: #000;
  }
  header .header__container .header__statement .header__nav {
    display: flex;
    justify-content: end;
    align-items: center;
    margin-right:20.5px;
  }
  header .header__container .header__statement .header__nav .header__nav-link {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 4.2px;
    text-align: right;
    color: #333;
  }
  header .header__container .header__statement .header__nav .header__nav-link.header__nav-link--recruit {
    position: relative;
    width: 140px;
    height: auto;
    aspect-ratio: 185/86;
    transition: 0.3s ease-in-out;
  }
  header .header__container .header__statement .header__nav .header__nav-link.header__nav-link--recruit:hover {
    opacity: 0.5;
  }
  header .header__container .header__statement .header__nav .header__nav-link.header__nav-link--recruit img {
    width: 100%;
    height: auto;
  }
  header .header__container .header__statement .header__nav .header__nav-link.header__nav-link--recruit .header__nav-text {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    padding: 0 25px 0 35px;
    background-color: #a2c92a;
    border-radius: 40px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 24px;
    letter-spacing: 2.4px;
    text-align: center;
    color: #fff;
    white-space: nowrap;
  }
}
/*SP*/
@media screen and (max-width: 768px) {

.sub-movie-box {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 20px 16px;
    }
.sub-movie-box video{
width:100%
    }

  header {
    z-index: 101;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #fff;
  }
  header .header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 5px);
    height: 100%;
    margin: 0 auto 0 0;
  }
  header .header__container .header__logo-link {
    display: block;
    position: relative;
    width: 197px;
    height: auto;
    margin-left: 18.5px;
  }
  header .header__container .header__logo-link img {
    width: auto;
    height: 50px;
  }
  header .header__container .header__menu-toggle {
    width: auto;
    height: auto;
  }
  header .header__container .header__menu-toggle .header__menu-bars {
    cursor: pointer;
    z-index: 999;
    display: block;
    position: relative;
    width: 55px;
    height: 55px;
    text-align: center;
  }
  header .header__container .header__menu-toggle .header__menu-bars .header__menu-bar {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 22.5px;
    height: 2px;
    border-radius: 2px;
    background-color: #bc9dc4;
    transition: 0.35s ease-in-out;
  }
  header .header__container .header__menu-toggle .header__menu-bars .header__menu-bar:nth-of-type(1) {
    top: 20px;
  }
  header .header__container .header__menu-toggle .header__menu-bars .header__menu-bar:nth-of-type(2) {
    top: 26.5px;
  }
  header .header__container .header__menu-toggle .header__menu-bars .header__menu-bar:nth-of-type(3) {
    top: 32.5px;
  }
  header .header__container .header__menu-toggle .header__menu-bars.active .header__menu-bar {
    top: 26.5px;
    left: 50%;
    background-color: #bc9dc4;
  }
  header .header__container .header__menu-toggle .header__menu-bars.active .header__menu-bar:nth-of-type(1) {
    background-color: #bc9dc4;
    transform: translateX(-50%) rotate(-45deg);
  }
  header .header__container .header__menu-toggle .header__menu-bars.active .header__menu-bar:nth-of-type(2) {
    background-color: #bc9dc4;
    transform: translateX(-50%) rotate(45deg);
  }
  header .header__container .header__menu-toggle .header__menu-bars.active .header__menu-bar:nth-of-type(3) {
    background-color: #bc9dc4;
    transform: translateX(-50%) rotate(45deg);
  }
  header .header__container .header__menu-toggle .header__menu-bars.active {
    background-color: transparent;
  }
  header .header__container .header__menu-toggle nav.header__nav-sp {
    position: fixed;
    z-index: 103;
    top: 0;
    left: 0;
    transform: translateX(100%);
    transition: all 0.6s;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    background-color: #fff;
  }
  header .header__container .header__menu-toggle nav.header__nav-sp.active {
    transform: translateX(0%);
  }
  header .header__container .header__menu-toggle nav.header__nav-sp .header__nav-list {
    position: relative;
    width: 300px;
    height: auto;
    margin: 0 auto;
    padding-top: 75px;
    padding-bottom: 25px;
    list-style: none;
  }
  header .header__container .header__menu-toggle nav.header__nav-sp .header__nav-list .header__nav-item {
    display: block;
    width: 100%;
    height: auto;
    padding-top: 12px;
    padding-bottom: 15px;
    border-bottom: dotted 1px #bc9dc4;
  }
  header .header__container .header__menu-toggle nav.header__nav-sp .header__nav-list .header__nav-item:nth-of-type(1) {
    border-top: dotted 1px #bc9dc4;
  }
  header .header__container .header__menu-toggle nav.header__nav-sp .header__nav-list .header__nav-item .header__nav-link {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.33;
    letter-spacing: 1.5px;
    text-align: left;
    color: #333333;
  }
  header .header__container .header__menu-toggle nav.header__nav-sp .header__link {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  header .header__container .header__menu-toggle nav.header__nav-sp .header__link p {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.33;
    letter-spacing: 1.5px;
    text-align: center;
    color: #333333;
  }
  header .header__container .header__menu-toggle nav.header__nav-sp .header__link .header__link-btn {
    display: grid;
    grid-template-columns: 144px 175px;
    gap: 5px;
    justify-content: center;
    align-items: center;
  }
  header .header__container .header__menu-toggle nav.header__nav-sp .header__contact {
    position: relative;
    width: 100%;
    height: auto;
  }
  header .header__container .header__menu-toggle nav.header__nav-sp .header__contact .header__contact-link {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
  }
  header .header__container .header__menu-toggle nav.header__nav-sp .header__contact .header__contact-link img {
    width: 22px;
    height: auto;
  }
  header .header__container .header__menu-toggle nav.header__nav-sp .header__contact .header__contact-link .header__contact-number {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 26px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 3px;
    text-align: center;
    color: #bc9dc4;
  }
  header .header__container .header__menu-toggle nav.header__nav-sp .header__contact .header__contact-hours {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 11px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 1px;
    text-align: center;
    color: #333;
  }
}
/*トップページ*/
/*PC*/
@media screen and (min-width: 769px) {
  .topKv {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 55px;
  }
  .topKv .topKv__content {
    position: relative;
    width: 100%;
    height: auto;
  }
  .topKv .topKv__content img {
    position: relative;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .topKv .topKv__content h2 {
    position: absolute;
    top: 100px;
    left: 50px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 20px;
    font-weight: bold;
    line-height: 2.1;
    letter-spacing: 8px;
    text-align: left;
    color: #fff;
  }
  .topNews {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 40px;
  }
  .topNews .topNews__container {
    position: relative;
    width: 1100px;
    height: auto;
    margin: 0 auto;
    padding: 30px 35px;
    box-sizing: border-box;
    border-bottom: solid 2px #0e6eb8;
  }
  .topNews .topNews__container h2 {
    margin-bottom: 10px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.75;
    letter-spacing: 6px;
    text-align: center;
    color: #333;
  }
  .topNews .topNews__container .topNews__list {
    position: relative;
    width: 100%;
    height: auto;
  }
  .topNews .topNews__container .topNews__list .topNews__item {
    display: grid;
    grid-template-columns: 155px 1fr;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .topNews .topNews__container .topNews__list .topNews__item:nth-last-of-type(1) {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  .topNews .topNews__container .topNews__list .topNews__item .topNews__date,
  .topNews .topNews__container .topNews__list .topNews__item .topNews__title {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.75;
    letter-spacing: 3px;
    text-align: left;

  }
  .topNews .topNews__container .topNews__list .topNews__item:hover .topNews__title {
    text-decoration: underline;
  }

  .pit-box {
      display: grid;
       grid-template-columns: 1fr 1fr;
      gap: 2px;
      max-width: 1100px;
        margin: 0 auto 50px;
text-align: center;
/*
    position: relative;
    width: 100%;
    height: auto;
    
*/

  }
  .pit-box img{
    width: 100%;
  }
.pit-box02 {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
max-width: 1100px;
margin: 0 auto 70px;
text-align: center;
  }
.movie-box{
background-image: url('./image/top/back-movie.png'); /* 画像のパスを指定 */
  background-size: cover;                  /* 画面全体に画像をカバーさせる */
  background-repeat: no-repeat;            /* 画像の繰り返しを防ぐ */
  background-position: center center;      /* 画像を中央に配置 */
  margin: 0;                               /* デフォルトの余白を削除 */
  font-family: sans-serif;
  color: white;                            /* テキストを見やすく白に */
  text-shadow: 1px 1px 2px #000;           /* テキストに影をつけて読みやすく */
}


.sub-text-box02{
 max-width: 1100px;
margin: 0 auto 50px;
text-align: center;
}
h3.font-blue {
    font-size: 60px;
    margin-top: 20px;
}
.font-blue {
    color: #0e6eb8;
font-size:26px;
line-height: 2.0em;
}
.mb50{margin-bottom:50px;}

.access-box{
 max-width: 1100px;
margin: 0 auto 50px;
text-align: center;
}

p.text-logo {
    text-align: center;
    font-size: 26px;
    letter-spacing: 5px;
    padding-bottom: 5px;
}

  .topPoint {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 70px;
  }
  .topPoint h2 {
    display: block;
    margin-bottom: 30px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.75;
    letter-spacing: 4px;
    text-align: center;
    color: #333;
  }
  .topPoint h2 span {
    display: block;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 7px;
    text-align: center;
    color: #c878b9;
  }
  .topPoint .topPoint__wrapper {
    position: relative;
    width: 880px;
    height: auto;
    margin: 0 auto;
  }
  .topPoint .topPoint__wrapper .topPoint__content-c-1 {
    cursor: pointer;
    position: absolute;
top: 100px;
        left: 640px;
        width: 200px;
        height: 200px;
    border-radius: 50%;
  }
  .topPoint .topPoint__wrapper .topPoint__content-c-2 {
    cursor: pointer;
    position: absolute;
    top: 350px;
    left: 640px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
  }
  .topPoint .topPoint__wrapper .topPoint__content-c-3 {
    cursor: pointer;
    position: absolute;
    top: 543px;
    left: 454px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
  }
  .topPoint .topPoint__wrapper .topPoint__content-c-4 {
    cursor: pointer;
    position: absolute;
    top: 540px;
    left: 220px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
  }
  .topPoint .topPoint__wrapper .topPoint__content-c-5 {
    cursor: pointer;
    position: absolute;
    top: 350px;
    left: 6px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
  }
  .topPoint .topPoint__wrapper .topPoint__content-c-6 {
    cursor: pointer;
    position: absolute;
    top: 100px;
    left: 50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
  }
  .topPoint .topPoint__wrapper .topPoint__content {
    position: absolute;
  }
  .topPoint .topPoint__wrapper .topPoint__content h3 {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 95px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0;
  }
  .topPoint .topPoint__wrapper .topPoint__content p {
    display: block;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.75;
    letter-spacing: 4px;
    text-align: left;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-1 {
    top: 190px;
    right: -360px;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-1 h3 {
    padding-left: 15px;
    text-align: left;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-1 p {
    width: 370px;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-2 {
    top: 410px;
    right: -185px;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-2 h3 {
    padding-right: 15px;
    text-align: right;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-2 p {
    width: 185px;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-3 {
bottom: 40px;
        right: -330px;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-3 h3 {
    text-align: left;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-3 p {
    width: 520px;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-4 {
bottom: 50px;
        left: 0px;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-4 h3 {
    text-align: left;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-4 p {
    width: 520px;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-5 {
    top: 410px;
    left: -170px;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-5 h3 {
    text-align: left;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-5 p {
    width: 185px;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-6 {
top: 200px;
        left: -150px;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-6 h3 {
    text-align: left;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-6 p {
    width: 185px;
  }
  .topFeature {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 60px;
  }
  .topFeature h2 {
    margin-bottom: 30px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 34px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 2.4px;
    text-align: center;
    color: #c878b9;
  }
  .topFeature .topFeature__icons {
    display: grid;
    grid-template-columns: 175px 215px;
    -moz-column-gap: 10px;
         column-gap: 10px;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
  }
  .topFeature .topFeature__icons img:nth-of-type(1) {
    position: relative;
    top: 2px;
  }
  .topFeature .topFeature__details {
    display: grid;
    grid-template-columns: repeat(3, 340px);
    -moz-column-gap: 40px;
         column-gap: 40px;
    justify-content: center;
  }
  .topFeature .topFeature__details img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .topFeature .topFeature__details .topFeature__detail.topFeature__detail-1 img {
    width: 210px;
    margin-top: 15px;
    margin-bottom: 33px;
  }
  .topFeature .topFeature__details .topFeature__detail.topFeature__detail-2 img {
    z-index: -1;
    position: relative;
    width: 195px;
    margin-top: 0;
    margin-bottom: -8px;
  }
  .topFeature .topFeature__details .topFeature__detail.topFeature__detail-3 img {
    width: 125px;
    margin-top: 0;
    margin-bottom: 33px;
  }
  .topFeature .topFeature__details h3 {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: bold;
    line-height: 35px;
    letter-spacing: 1.5px;
    text-align: center;
    color: #fff;
    background-color: #c878b9;
  }
  .topFeature .topFeature__details .topFeature__detail-content {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .topFeature .topFeature__details .topFeature__detail-content p {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 13px;
    font-weight: bold;
    line-height: 2;
    letter-spacing: 1px;
    text-align: left;
    color: #000;
  }
  .topFeature .topFeature__details .topFeature__detail-content p span {
    font-size: 10px;
  }
}
/*SP*/
@media screen and (max-width: 768px) {

.tap-area {
      position: absolute;
      /* background-color: rgba(255, 0, 0, 0.2); */ 
/* 開発中は見えるように */
      cursor: pointer;
    }

    /* エリア位置（6つ）*/
    .tap-area[data-id="1"] {top: 10%;left: 210px;width: 10%;height: 40px;}
    .tap-area[data-id="2"] { top: 25%; left: 210px;width: 10%;height: 40px;}
    .tap-area[data-id="3"] { top: 37%; left: 155px;width: 10%;height: 40px;}
    .tap-area[data-id="4"] { top: 37%; left: 75px;width: 10%;height: 40px;}
    .tap-area[data-id="5"] { top: 25%; left: 23px;width: 10%;height: 40px;}
    .tap-area[data-id="6"] { top: 10%; left: 23px;width: 10%;height: 40px;}

    .text {
      font-size: 9px;
      transition: font-size 0.3s ease;
    }

    .text.large {
      font-size: 14px;
    }

.mb50 {
        margin-bottom: 50px;
    }
    .access-box {
        max-width: 90%;
        margin: 0 auto 50px;
        text-align: center;
    }
.background-wrapper {
  background-color: #0e6eb8; /* 背景色 */
}
.movie-box{
        /*background-image: url(./image/top/back-movie.png);*/
background-color: #0e6eb8; /* 背景色 */
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        margin: 0;

    }


    .pit-box02 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 90%;
        margin: 0 auto 70px;
        text-align: center;
    }

.sp-only-grid{
display: grid;
grid-template-columns: 1fr 1fr 1fr;
}
.header_link .my-button {
background-color: #0e6eb8;
        color: white;
        padding: 5px 12px;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s;
        margin: 10px 0;
    }
.header_link .my-button:hover {
      background-color: #45a049; /* ホバー時の色 */
    }
.font-blue {
        color: #0e6eb8;
        font-size: 13px;
        line-height: 2.0em;
    }
.sub-text-box02 {
        margin: 0 auto 50px;
        text-align: center;
    }
    h3.font-blue {
        font-size: 30px;
        margin-top: 20px;
    }

  .topNews {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
background-image: url('./image/top/back-news.png'); /* 画像のパスを指定 */
  background-size: cover;                  /* 画面全体に画像をカバーさせる */
  background-repeat: no-repeat;            /* 画像の繰り返しを防ぐ */
  background-position: bottom center;      /* 画像を中央に配置 */
  margin: 0;                               /* デフォルトの余白を削除 */
margin-bottom: 40px;
  }
  .topNews .topNews__container {
    position: relative;
    width: 90%;
    height: auto;
    margin: 0 auto;
    padding: 15px 20px;
    box-sizing: border-box;
    border-bottom: solid 2px #0e6eb8;
  }
  .topNews .topNews__container h2 {
    margin-bottom: 10px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 4.5px;
    text-align: center;
    color: #333;
  }
  .topNews .topNews__container .topNews__list {
    position: relative;
    width: 100%;
    height: auto;
  }
  .topNews .topNews__container .topNews__list .topNews__item {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, auto);
    row-gap: 5px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: dotted 1px #000;
  }
  .topNews .topNews__container .topNews__list .topNews__item:nth-last-of-type(1) {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  .topNews .topNews__container .topNews__list .topNews__item .topNews__date,
  .topNews .topNews__container .topNews__list .topNews__item .topNews__title {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 2px;
    text-align: left;
    color: #333;
  }
  .topNews .topNews__container .topNews__list .topNews__item:hover .topNews__title {
    text-decoration: underline;
  }
  .topPoint {
    position: relative;
    width: 100%;
    height: 300px;
    margin-bottom: 3px;
  }
  .topPoint h2 {
    display: block;
    margin-bottom: 20px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 10px;
    font-weight: bold;
    line-height: 1.75;
    letter-spacing: 3px;
    text-align: center;
    color: #333;
  }
  .topPoint h2 span {
    display: block;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 5px;
    text-align: center;
    color: #c878b9;
  }
  .topPoint .topPoint__wrapper {
    position: relative;
    width: 96%;
    max-width: 260px;
    height: auto;
    margin: 0 auto 30px;
  }
/*
  .topPoint .topPoint__wrapper img {
    margin-bottom: 20px;
    width: 70%;
    height: auto;
  }
*/



 .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-1 {
top: -215px;
        right: -220px;
text-shadow:
    -1px -1px 0 white,
     1px -1px 0 white,
    -1px  1px 0 white,
     1px  1px 0 white;
  }
 .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-2 {
        top: -135px;
        right: -210px;
text-shadow:
    -1px -1px 0 white,
     1px -1px 0 white,
    -1px  1px 0 white,
     1px  1px 0 white;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-3 {
        bottom: 120px;
        right: -160px;
text-shadow:
    -1px -1px 0 white,
     1px -1px 0 white,
    -1px  1px 0 white,
     1px  1px 0 white;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-4 {
bottom: 175px;
        left: 0px;
text-shadow:
    -1px -1px 0 white,
     1px -1px 0 white,
    -1px  1px 0 white,
     1px  1px 0 white;
}
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-5 {
top: -275px;
        left: -40px;
text-shadow:
    -1px -1px 0 white,
     1px -1px 0 white,
    -1px  1px 0 white,
     1px  1px 0 white;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-6 {
top: -455px;
        left: -42px;
text-shadow:
    -1px -1px 0 white,
     1px -1px 0 white,
    -1px  1px 0 white,
     1px  1px 0 white;
  }

  .topPoint .topPoint__wrapper .topPoint__content {
    display: grid;
    position: relative;
    grid-template-columns:1fr;
    -moz-column-gap: 20px;
         column-gap: 20px;
    align-items: center;
    margin-bottom: 20px;
  }
  .topPoint .topPoint__wrapper .topPoint__content h3 {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 50px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0;
    text-align: left;
  }
  .topPoint .topPoint__wrapper .topPoint__content p {
    display: block;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 1px;
    text-align: left;
  }
  .topFeature {
    position: relative;
    width: 90%;
    height: auto;
    margin:0 auto 60px;
  }
  .topFeature h2 {
    margin-bottom: 10px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 2px;
    text-align: center;
    color: #c878b9;
  }
  .topFeature .topFeature__icons {
    display: grid;
    grid-template-columns: 130px 160px;
    -moz-column-gap: 5px;
         column-gap: 5px;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
  }
  .topFeature .topFeature__icons img:nth-of-type(1) {
    position: relative;
    top: 2px;
  }
  .topFeature .topFeature__details {
    display: grid;
    grid-template-columns: 300px;
    row-gap: 30px;
    justify-content: center;
  }
  .topFeature .topFeature__details img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .topFeature .topFeature__details .topFeature__detail.topFeature__detail-1 img {
    width: 160px;
    margin-top: 10px;
    margin-bottom: 25px;
  }
  .topFeature .topFeature__details .topFeature__detail.topFeature__detail-2 img {
    z-index: -1;
    position: relative;
    width: 145px;
    margin-top: 0;
    margin-bottom: -6px;
  }
  .topFeature .topFeature__details .topFeature__detail.topFeature__detail-3 img {
    width: 95px;
    margin-top: 0;
    margin-bottom: 25px;
  }
  .topFeature .topFeature__details h3 {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: bold;
    line-height: 25px;
    letter-spacing: 1.1px;
    text-align: center;
    color: #fff;
    background-color: #c878b9;
  }
  .topFeature .topFeature__details .topFeature__detail-content {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 5px;
         column-gap: 5px;
  }
  .topFeature .topFeature__details .topFeature__detail-content p {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 11px;
    font-weight: bold;
    line-height: 2;
    letter-spacing: 0.8px;
    text-align: left;
    color: #000;
  }
  .topFeature .topFeature__details .topFeature__detail-content p span {
    font-size: 8px;
  }
}
/*フッター*/
/*PC*/
@media screen and (min-width: 769px) {
  footer {
    position: relative;
    width: 100%;
    height: auto;
  }
  footer .footer__consultation {
    position: relative;
    width: 100%;
    height: auto;
    padding: 50px 0;
    background-color: #c878b9;
  }
  footer .footer__consultation h2 {
    margin-bottom: 20px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 8px;
    text-align: center;
    color: #fff;
  }
  footer .footer__consultation .footer__contact-options {
    display: grid;
    grid-template-columns: repeat(3, 355px);
    grid-template-rows: 130px;
    -moz-column-gap: 20px;
         column-gap: 20px;
    justify-content: center;
    justify-items: center;
  }
  footer .footer__consultation .footer__contact-options .footer__contact-option {
    width: 100%;
    height: auto;
    background-color: #fff;
    border-radius: 8.5px;
    box-sizing: border-box;
  }
  footer .footer__consultation .footer__contact-options .footer__contact-option .footer__contact-text {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.9;
    letter-spacing: 3.3px;
    text-align: center;
    color: #c878b9;
  }
  footer .footer__consultation .footer__contact-options .footer__contact-option img {
    display: block;
    margin: 0 auto;
  }
  footer .footer__consultation .footer__contact-options .footer__contact-option.footer__contact-option--chat {
    padding-top: 15px;
    padding-bottom: 20px;
  }
  footer .footer__consultation .footer__contact-options .footer__contact-option.footer__contact-option--chat img {
    width: 215px;
    height: auto;
    margin-bottom: 8.5px;
  }
  footer .footer__consultation .footer__contact-options .footer__contact-option.footer__contact-option--mail {
    padding-top: 25px;
    padding-bottom: 20px;
  }
  footer .footer__consultation .footer__contact-options .footer__contact-option.footer__contact-option--mail img {
    width: 70px;
    height: auto;
    margin-bottom: 19px;
  }
  footer .footer__consultation .footer__contact-options .footer__contact-option.footer__contact-option--phone {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  footer .footer__consultation .footer__contact-options .footer__contact-option.footer__contact-option--phone img {
    width: 60px;
    height: auto;
    margin-bottom: 13px;
  }
  footer .footer__branding {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 20px;
    padding-bottom: 35px;
    background-color: #0e6eb8;
color: #ffffff;
  }
  footer .footer__branding .footer__logo-link {
    display: block;
    width: 360px;
    height: auto;
    margin: 0 auto 15px;
  }
  footer .footer__branding .footer__logo-link img {
    width: 100%;
    height: auto;
  }
  footer .footer__branding .footer__address {
    margin-bottom: 12px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 13px;
    font-weight: bold;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 1.5px;
    text-align: center;
    color: #ffffff;
  }
  footer .footer__branding .footer__copyright {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.8px;
    text-align: center;
    color: #ffffff;
  }
}
/*SP*/
@media screen and (max-width: 768px) {

    p.text-logo {
        text-align: center;
        font-size: 24px;
        letter-spacing: 5px;
        padding-bottom: 5px;
    }
  footer {
    position: relative;
    width: 100%;
    height: auto;
  }
  footer .footer__consultation {
    position: relative;
    width: 100%;
    height: auto;
    padding: 25px 0;
    background-color: #c878b9;
  }
  footer .footer__consultation h2 {
    margin-bottom: 15px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 6px;
    text-align: center;
    color: #fff;
  }
  footer .footer__consultation .footer__contact-options {
    display: grid;
    grid-template-columns: 300px;
    grid-template-rows: repeat(3, 110px);
    row-gap: 15px;
    justify-content: center;
    justify-items: center;
  }
  footer .footer__consultation .footer__contact-options .footer__contact-option {
    width: 100%;
    height: auto;
    background-color: #fff;
    border-radius: 5px;
    box-sizing: border-box;
  }
  footer .footer__consultation .footer__contact-options .footer__contact-option .footer__contact-text {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 2.5px;
    text-align: center;
    color: #c878b9;
  }
  footer .footer__consultation .footer__contact-options .footer__contact-option img {
    display: block;
    margin: 0 auto;
  }
  footer .footer__consultation .footer__contact-options .footer__contact-option.footer__contact-option--chat {
    padding-top: 13px;
    padding-bottom: 17px;
  }
  footer .footer__consultation .footer__contact-options .footer__contact-option.footer__contact-option--chat img {
    width: 180px;
    height: auto;
    margin-bottom: 7px;
  }
  footer .footer__consultation .footer__contact-options .footer__contact-option.footer__contact-option--mail {
    padding-top: 21px;
    padding-bottom: 17px;
  }
  footer .footer__consultation .footer__contact-options .footer__contact-option.footer__contact-option--mail img {
    width: 60px;
    height: auto;
    margin-bottom: 16px;
  }
  footer .footer__consultation .footer__contact-options .footer__contact-option.footer__contact-option--phone {
    padding-top: 17px;
    padding-bottom: 17px;
  }
  footer .footer__consultation .footer__contact-options .footer__contact-option.footer__contact-option--phone img {
    width: 50px;
    height: auto;
    margin-bottom: 11px;
  }
  footer .footer__branding {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 15px;
    padding-bottom: 25px;
    background-color: #0e6eb8;
color: #ffffff;
  }
  footer .footer__branding .footer__logo-link {
    display: block;
    width: 270px;
    height: auto;
    margin: 0 auto 10px;
  }
  footer .footer__branding .footer__logo-link img {
    width: 100%;
    height: auto;
  }
  footer .footer__branding .footer__address {
    margin-bottom: 10px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 11px;
    font-weight: bold;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 1px;
    text-align: center;
    color: #ffffff;
  }
  footer .footer__branding .footer__copyright {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 11px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-align: center;
    color: #ffffff;
  }
.footer__branding img{width:95%;}
.footer-menu {
    margin: 0 auto;
    text-align: center;
}
.header__nav-link {
font-size: 10px;
        border-right: 1px solid #ccc;
        text-decoration: none;
        color: inherit;
        padding: 0 12px;
}
.header__nav-link:first-child {
    border-left: 1px solid #ccc; /* 左側に縦線を追加 */
}
.anchor-target {
  position: relative;
}

.anchor-target::before {
  content: "";
  display: block;
  height: 60px; /* ヘッダーの高さ */
  margin-top: -60px; /* 高さと同じ分だけマイナスに */
  visibility: hidden;
}

}

@media screen and (min-width: 819px) and (max-width: 836px) {
  /* この中に限定スタイルを書く */
header .header__container .header__statement {
        display: none;
    }
    .topPoint .topPoint__wrapper {
        position: relative;
        width: 96%;
        max-width: 400px;
        height: auto;
        margin: 0 auto 30px;
    }
 .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-1 {
    top: 50px;
    right: -360px;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-1 h3 {
    padding-left: 15px;
    text-align: left;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-1 p {
    width: 370px;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-2 {
    top: 200px;
    right: -185px;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-2 h3 {
    padding-right: 15px;
    text-align: right;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-2 p {
    width: 185px;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-3 {
bottom: -25px;
        right: -375px;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-3 h3 {
    text-align: left;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-3 p {
    width: 520px;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-4 {
bottom: -25px;
        left: 0px;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-4 h3 {
    text-align: left;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-4 p {
    width: 520px;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-5 {
    top: 200px;
    left: -170px;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-5 h3 {
    text-align: left;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-5 p {
    width: 185px;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-6 {
top: 50px;
        left: -150px;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-6 h3 {
    text-align: left;
  }
  .topPoint .topPoint__wrapper .topPoint__content.topPoint__content-6 p {
    width: 185px;
  }
#com {
        width: 100%!important;
        margin: 0 auto;
    }
}

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