@charset "UTF-8";
html {
  margin: 0;
  padding: 0;
  font-size: 62.5%;
  overflow-x: hidden;
  overflow-y: scroll;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.8rem;
  line-height: 2.1;
  background: #fff !important;
  color: #333;
  margin: 0;
  padding: 0;
  text-align: left;
  overflow-x: hidden;
  overflow-y: scroll;
}
a {
  text-decoration: none;
  color: #333;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin: 0;
  padding: 0;
}
ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}
.inner {
  width: 1024px;
  margin: 0 auto;
}
img {
  width: 100%;
  height: auto;
}
section {
  background: #fff;
  margin: 0;
  padding: 80px 0;
  position: relative;
}
#contact {
  padding: 200px 0;
}
/* スマホのみ改行 */
@media screen and (min-width: 415px) {
  .sp {
    display: none;
  }
}
/* スマホタブレットのみ改行 */
@media screen and (min-width: 769px) {
  .tl {
    display: none;
  }
}
/* pcのみ改行 */
@media screen and (max-width: 769px) {
  .pc {
    display: none;
  }
}
/* ---------------------title*/
.square .pin-blue {
  display: inline-block;
  background: #fff;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: relative;
  top: 20px;
}
.square .pin-green {
  display: inline-block;
  background: #328e29;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: relative;
  top: 20px;
}
.square .english {
  display: inline-block;
  margin-left: 10px;
  font-size: 1.8rem;
}
.square h1 {
  font-size: 3.5rem;
}
.circle .pin-blue {
  display: inline-block;
  background: #7FCDD7;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: relative;
  top: 35px;
}
.circle .pin-green {
  display: inline-block;
  background: #328e29;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: relative;
  top: 35px;
}
.circle .english {
  display: inline-block;
  margin-left: 10px;
  font-size: 1.8rem;
}
.circle h1 {
  font-size: 3.5rem;
}
.word-container {
  position: relative;
  width: 400px;
  height: auto;
}
.word-container img {
  width: 400px;
  height: auto;
}
.text-overlay {
  position: absolute;
  top: 45%;
  left: 45%;
  transform: translate(-50%, -50%);
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.5;
}
.text-overlay span {
  font-size: 1.8rem;
}
/* ---------------------header*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 10;
  background: #fff;
  box-shadow: 0 6px 3px -3px rgba(0, 0, 0, 0.1);
}
header .inner {
  height: 100px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header ul {
  display: flex;
}
header a {
  font-size: 1.5rem;
  margin: 0 0 0 30px;
  letter-spacing: 0.2em;
}
header a:hover {
  font-weight: 600;
}
header .logo {
  width: 300px;
  height: auto;
  position: absolute;
  left: 0;
}
header .menu-btn {
  display: none;
}
/* ---------------------footer*/
footer {
  padding: 100px 0;
  position: relative;
  background: url("images/footer.png") no-repeat center center / cover;
}
footer .inner {
  width: 100%;
}
footer .copyright {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 100px;
}
/* ---------------pagetop*/
#pagetop {
  position: fixed;
  width: 90px;
  height: auto;
  bottom: 0;
  right: 20px;
  z-index: 1000;
}
/* ---------------slide-container*/
.slide-container img {
  width: 300px;
  height: auto;
  margin: auto 50px;
}
.slide-container {
  display: flex;
  width: calc(200%); /* 画像のセットが2回繰り返されるので200%に設定 */
  animation: slide-container 15s linear infinite;
}
@keyframes slide-container {
  0% {
    transform: translateX(-30%);
  }
  100% {
    transform: translateX(0%);
  }
}
/* ---------------------kv*/
#kv {
  width: 100%;
  height: 712px;
  position: fixed;
  top: 100px;
  background: url("images/kv.png") no-repeat center top / cover;
}
.image-container {
  display: flex;
  flex-direction: column; /* 画像を縦に並べる */
  top: 350px;
  left: -300px;
  position: relative;
}
.image-container img {
  width: 400px;
  height: auto;
  margin: 10px auto;
}
.fade-in {
  opacity: 0; /* 初期状態は非表示 */
  animation: fadeIn 2s forwards; /* アニメーション適用 */
}
/* 2枚目の画像に2秒のディレイを追加 */
.delay {
  animation-delay: 1.5s;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ---------------------main*/
#about {
  margin-top: 812px;
  font-size: 2.3rem;
  padding: 0 0 200px;
}
#about .inner {
  width: 80%;
  background: #7FCDD7;
  padding: 30px;
  border-top-left-radius: 45px;
  border-top-right-radius: 45px;
  border-bottom-right-radius: 45px;
  border-bottom-left-radius: 45px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#service .inner {
  width: 70%;
  text-align: center;
}
#service .gray-blk {
  background: #E6E6E6;
  padding: 30px;
  margin: 50px auto;
  text-align: center;
}
#service .white-blk {
  background: #fff;
  padding: 30px;
  border-top-left-radius: 45px;
  border-top-right-radius: 45px;
  border-bottom-right-radius: 45px;
  border-bottom-left-radius: 45px
}
#service .white-blk img {
  width: 300px;
  height: auto;
}
#service .white-blk p {
  text-align: left;
}
#recruit {
  width: auto;
  height: 100%;
}
#home #notice .inner {
  width: 80%;
  background: #7FCDD7;
  padding: 50px 50px 130px;
  border-top-left-radius: 45px;
  border-top-right-radius: 45px;
  border-bottom-right-radius: 45px;
  border-bottom-left-radius: 45px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#home #notice .title {
  font-size: 2rem;
  line-height: 1;
  display: inline;
  position: relative;
  top: -10px;
}
#home #notice p {
  text-align: left;
}
#home #notice .date {
  font-size: 1.5rem;
}
#home #notice .pin {
  display: inline-block;
  background: #328e29;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: relative;
  top: -10px;
}
#home #notice hr {
  border: 0.1px solid #222;
  margin: 30px auto;
}
#home #notice a {
  color: #333;
}
#home #notice .btn {
  float: right;
  background: #fff;
  border-radius: 50px;
  padding: 0 20px;
  margin: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#contact {
  color: #fff !important;
  padding: 150px 0;
  position: relative;
  background: url("images/contact.jpg") no-repeat center center / cover;
  text-align: center;
}
#contact::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  content: "";
}
#contact h1 {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
  top: 0;
}
#contact p {
  position: relative;
  z-index: 1;
}
#contact .tel a {
  font-size: 3rem;
  color: #fff;
  display: inline-block;
  background: #59BFCC;
  border-radius: 3px;
  padding: 5px 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#contact .small {
  font-size: 1.5rem;
  margin-top: -10px;
}
#info table {
  margin: 50px auto 200px;
  border: 0.1px solid #333;
  font-size: 2rem;
  letter-spacing: 0.2em;
  border-radius: 20px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  width: 80%;
}
#info table td {
  border: 0.1px solid #808080;
  padding: 20px 30px;
}
#info td.blue {
  background: #59BFCC;
}
#access .item-blk {
  display: flex;
  justify-content: center; /* 要素全体を中央揃え */
  align-items: center;
}
#access .item {
  width: 30%; /* テキストブロック全体の幅を指定 */
  font-size: 2.3rem;
  font-weight: 500;
  margin: auto 50px;
}
#access .btn {
  float: right;
  display: inline-block;
  background: #59BFCC;
  border-radius: 50px;
  padding: 0 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#access .btn p {
  font-size: 1.8rem;
}
/*-----------------------------------
タブレット
-----------------------------------*/
@media screen and (max-width: 768px) {
  header .inner {
    height: 80px;
  }
  #nav-toggle {
    position: fixed;
    top: 25px;
    right: 25px;
    height: 32px;
    cursor: pointer;
    z-index: 1000;
  }
  #nav-toggle > div {
    position: relative;
    width: 36px;
  }
  #nav-toggle > div span {
    width: 100%;
    height: 2px;
    left: 0;
    display: block;
    background: #333;
    position: absolute;
    transition: transform .3s ease, top .5s ease;
  }
  #nav-toggle > div span:nth-child(1) {
    top: 0;
  }
  #nav-toggle > div span:nth-child(2) {
    top: 14px;
  }
  #nav-toggle > div span:nth-child(3) {
    top: 28px;
  }
  .open #nav-toggle > div span:nth-child(1) {
    top: 15px;
    transform: rotate(45deg);
  }
  .open #nav-toggle > div span:nth-child(2) {
    width: 0;
  }
  .open #nav-toggle > div span:nth-child(3) {
    top: 15px;
    transform: rotate(-45deg);
  }
  .header-nav {
    width: 100%;
    position: fixed;
    display: block;
    top: 80px;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .8);
    transition: all 0.2s;
    transform: translate(100%);
    left: 0;
    margin: 0;
    flex-direction: column;
    justify-content: center;
  }
  .open .header-nav {
    transform: translateX(0) !important;
  }
  header .header-nav ul {
    display: block;
  }
  header .header-nav li a {
    font-size: 3vw;
    display: block;
    width: 100%;
    padding: 10px 50px;
  }
  /* ---------------------footer*/
  footer {
    padding: 50px 0;
  }
  footer .copyright {
    font-size: 2vw;
  }
  /* --------------------kv*/
  .image-container {
    top: 350px;
    left: -100px;
  }
  /*-----------------------------------
スマホ
-----------------------------------*/
  @media screen and (max-width: 414px) {
    body {
      font-size: 3.5vw;
    }
    h1, h2, h3, h4, h5, h6 {
      font-weight: 570;
      margin: 0;
      padding: 0;
    }
    section {
      padding: 50px 0;
    }
    #contact {
      padding: 100px 0;
    }
    /* ---------------------title*/
    .square .pin-blue {
      width: 10px;
      height: 10px;
      top: 15px;
    }
    .square .pin-green {
      width: 10px;
      height: 10px;
      top: 15px;
    }
    .square .english {
      margin-left: 5px;
      font-size: 3.5vw;
    }
    .square h1 {
      font-size: 4.5vw;
    }
    .circle {
      position: relative;
      left: -10px;
    }
    .circle .pin-blue {
      width: 8px;
      height: 8px;
      top: 20px;
    }
    .circle .pin-green {
      width: 8px;
      height: 8px;
      top: 20px;
    }
    .circle .english {
      font-size: 2vw;
      position: relative;
      left: -10px;
    }
    .circle h1 {
      font-size: 4vw;
    }
    .word-container {
      width: 170px;
    }
    .word-container img {
      width: 170px;
    }
    .text-overlay {
      top: 40%;
      font-size: 5vw;
      line-height: 0.8;
    }
    /* ---------------------header*/
    header .inner {
      height: 60px;
    }
    header .header-nav {
      top: 60px;
    }
    #nav-toggle {
      top: 20px;
    }
    #nav-toggle > div {
      width: 30px;
    }
    #nav-toggle > div span:nth-child(1) {
      top: 0;
    }
    #nav-toggle > div span:nth-child(2) {
      top: 10px;
    }
    #nav-toggle > div span:nth-child(3) {
      top: 20px;
    }
    .header-nav {
      top: 60px;
    }
    header .header-nav li a {
      font-size: 4vw;
      padding: 5px 30px;
    }
    header .logo {
      width: 200px;
      top: 10px;
    }
    /* ---------------------footer*/
    footer {
      padding: 10px 0;
    }
    /* ---------------pagetop*/
    #pagetop {
      width: 70px;
      height: 70px;
      bottom: 30px;
      right: 10px;
    }
    /* ---------------slide-container*/
    .slide-container img {
      width: 200px;
      margin: auto 30px;
    }
    /* --------------------kv*/
    #kv {
      height: 100vh;
      top: 60px;
    }
    .image-container {
      top: 300px;
      left: -50px;
    }
    .image-container img {
      width: 200px;
      margin: 5px auto;
    }
    /* ---------------------main*/
    #about {
      margin-top: 600px;
      font-size: 3.5vw;
      padding: 0 0 100px;
    }
    #about .inner {
      width: 70%;
      padding: 30px;
      border-top-left-radius: 30px;
      border-top-right-radius: 30px;
      border-bottom-right-radius: 30px;
      border-bottom-left-radius: 30px;
    }
    #service .inner {
      width: 85%;
    }
    #service .gray-blk {
      padding: 20px;
      margin: 30px auto;
    }
    #service .white-blk {
      padding: 20px;
      border-top-left-radius: 20px;
      border-top-right-radius: 20px;
      border-bottom-right-radius: 20px;
      border-bottom-left-radius: 20px
    }
    #service .white-blk img {
      width: 150px;
    }
    #home #notice .inner {
      width: 70%;
      padding: 30px 30px 100px;
      border-top-left-radius: 30px;
      border-top-right-radius: 30px;
      border-bottom-right-radius: 30px;
      border-bottom-left-radius: 30px;
    }
    #home #notice .title {
      font-size: 3.5vw;
    }
    #home #notice .item-blk {
      width: 60%;
      padding: 20px;
      margin: 30px auto;
    }
    #home #notice .date {
      font-size: 3vw;
    }
    #home #notice .pin {
      width: 10px;
      height: 10px;
      top: -10px;
    }
    #home #notice hr {
      margin: 10px auto;
    }
    #home #notice .btn {
      border-radius: 30px;
      padding: 0 20px;
      margin: 10px;
    }
    #contact {
      padding: 100px 0;
    }
    #contact .tel a {
      font-size: 5vw;
      padding: 5px 10px;
    }
    #contact .small {
      font-size: 2.5vw;
      margin-top: -10px;
    }
    #info table {
      margin: 20px auto 0;
      font-size: 3.5vw;
      letter-spacing: 0.1em;
      border-radius: 10px;
    }
    #info table td {
      padding: 10px 20px;
    }
    #access .item-blk {
      display: block;
    }
    #access .item {
      width: 70%;
      font-size: 4vw;
    }
    #access .btn {
      border-radius: 30px;
      padding: 0 10px;
    }
    #access .btn p {
      font-size: 3vw;
    }
  }