body{
    margin: 0;
    padding: 0;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #234;
    background-color: #fff;
  }
  
  ul{
    display: flex;
    list-style: none;
  }
  
  h3{
      color: #0B6F9F;
      font-size: 1.7rem;
  }
  
  @media screen and (max-width: 690px){
     h3{
      font-size: 1.3rem;
     } 
  }
  
  a{
      color: inherit;
      text-decoration: none;
  }
  
  /* ヘッダー */
  
  header{
      top: 20px;
      box-shadow: 0 2px 10px rgba(11, 111, 159, 0.18);
      position: fixed;
      z-index: 999;
      width: 98%;
      background: linear-gradient(90deg, #DDF4FF 0%, #C8ECFB 100%);
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: fit-content;
      padding: 10px 1%;
      border-bottom: 2px solid #8ED2F0;
  }
  
  header h1{
    box-shadow: 0 4px 10px rgba(11, 111, 159, 0.12);
    background-color: #fff;
    color: #18A8E8;
    /* width: 400px; */
    height: fit-content;
    text-align: center;
    margin: 10px 20px;
    display: flex;
    border-radius: 12px;
padding: 10px;

    width: 250px;
    margin: 10px 20px;
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 12px;
  }
  
  header h1 img{
    width: 100%;
    height: auto;
    display: block;
    margin: auto;
  }
  
  header h1 div{
      font-size: 0.2rem;
      margin: 0 0 5px;
  }
  
  header nav{
      box-shadow: 0 3px 10px rgba(11, 111, 159, 0.16);
      position: absolute;
      background: linear-gradient(90deg, #1199D6 0%, #0B6F9F 100%);
      border-radius: 12px;
      color: #fff;
      top: 100px;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      width: 730px;
      font-family: serif;
  }
  
  header nav ul li{
      border-left: 1px solid rgba(255,255,255,0.35);
      padding: 0 50px;
      font-size: 1rem;
  }
  
  li:first-child{
      border: none;
  }
  
  .call_button{
      box-shadow: 0 4px 12px rgba(11, 111, 159, 0.18);
      border-radius: 30px;
      margin: 20px;
      background-color: #fff;
      padding: 10px 10px;
      text-align: center;
      width: 230px;
      border: 2px solid #B8E6F8;
  }
  
  .call_button a{
      line-height: 25px;
      justify-content: space-around;
      align-items: center;
      display: flex;
      color: #0B6F9F;
      text-decoration: none;
  }
  
  .call_button span{
      font-size: 1.3rem;
  }
  
  .call_button .number{
      background: linear-gradient(90deg, #18A8E8 0%, #0B6F9F 100%);
      color: #fff;
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 1rem;
      letter-spacing: 3px;
  }
  
  /* ヘッダー終わり */
  
  @media screen and (max-width: 1300px) {
  
   header{
      height: 100px;
      padding: 0 1%;
   }
  
   header h1{
      font-size: 2.2rem;
      width: fit-content;
      height: fit-content;
   }
  
   header h1 img{
    width: 220px;
    /* padding: 10px; */
   }
  
   header nav{
      border-radius: 0px;
      color: #fff;
      top: 100px;
      width: 100%;
   }
  
   header nav ul{
      width: 690px;
      margin: 10px auto;
   }
  }
  
  @media screen and (max-width: 690px){
      header{
          padding: 0 0.5%;
          width: 99%;
      }
  
      header h1{
          margin: 15px 20px;
      }
  
      header h1 div{
          font-size: 0.6rem;
      }
  
      .call_button{
          position: fixed;
          bottom: 0;
          width: 80%;
          left: 46%;
          transform: translateX(-50%);
          -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
      }
  
      .openbtn{
          position: absolute;
          top: 0;
          right: 0;
          margin: 25px;
          background: #0B6F9F;
          cursor: pointer;
          width: 50px;
          height: 50px;
          border-radius: 50px;
          z-index: 999;
          box-shadow: 0 3px 8px rgba(11, 111, 159, 0.22);
      }
  
      header nav{
          display: none;
      }
  
      .openbtn span{
          display: inline-block;
          transition: all .4s;
          position: absolute;
          left: 14px;
          height: 3px;
          border-radius: 2px;
          background: #fff;
          width: 45%;
      }
  
      .openbtn span:nth-of-type(1) {
          top: 15px;   
      }
  
      .openbtn span:nth-of-type(2) {
          top: 23px;
      }
  
      .openbtn span:nth-of-type(3) {
          top: 31px;
      }
  
      .openbtn.active{
          background-color: #fff;
      }
  
      .openbtn.active span:nth-of-type(1) {
          background-color: #0B6F9F;
          top: 18px;
          left: 18px;
          transform: translateY(6px) rotate(-45deg);
          width: 30%;
      }
  
      .openbtn.active span:nth-of-type(2) {
          opacity: 0;
      }
  
      .openbtn.active span:nth-of-type(3){
          background-color: #0B6F9F;
          top: 30px;
          left: 18px;
          transform: translateY(-6px) rotate(45deg);
          width: 30%;
      }
  }
  
  @media screen and (min-width: 690px){
      .openbtn{
          display: none;
      }
  }
  
  /* menu */
  
  #g-nav{
      display: none;
      background: linear-gradient(180deg, rgba(24,168,232,0.95) 0%, rgba(11,111,159,0.97) 100%);
  }
  
  #g-nav ul li{
     border: none;
  }
  
  #g-nav.panelactive{
      margin: auto;
      display: block;
      position: fixed;
      z-index: 700;
      top: 0;
      width: 100%;
      height: 100vh;
  }
  
  #g-nav-list{
      display: none;
      position: fixed;
      z-index: 999;
      width: 100%;
      height: 100vh;
      text-align: center;
      overflow: auto;
      -webkit-overflow-scrolling: touch;
      padding: auto;
  }
  
  #g-nav.panelactive #g-nav-list{
      display: block; 
  }
  
  #g-nav ul {
      opacity: 0;
      width: 100%;
      position: absolute;
      z-index: 999;
      top: 50%;
      left: 46.5%;
      transform: translate(-50%,-50%);
      margin: auto;
  }
  
  #g-nav.panelactive ul {
      opacity: 1;
  }
  
  #g-nav.panelactive ul li{
      animation-name: gnaviAnime;
      animation-duration: 1s;
      animation-delay: .2s;
      animation-fill-mode: forwards;
      opacity: 0;
  }
  
  @keyframes gnaviAnime{
      0% {
          opacity: 0;
      }
      100% {
          opacity: 1;
      }
  }
  
  #g-nav li{
      list-style: none;
  }
  
  #g-nav li a{
      color: #FFF;
      text-decoration: none;
      padding: 10px;
      display: block;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: bold;
  }
  
  #g-nav-list ul {
      display: block;
      flex-wrap: wrap;
      width: 90%;
      text-align: center;
  }
  
  #g-nav-list.panelactive {
      display: block;
  }
  
  #g-nav-list.panelactive ul li{
      position: relative;
      width: 30%;
      text-align: left;
      white-space: nowrap;
  }
  
  @media screen and (max-width:960px) {
      #g-nav-list.panelactive ul li{
        width: 48%;
      }
  }
  
  @media screen and (max-width:580px) {
      #g-nav-list.panelactive ul li{
        width: 100%;
      }
  }
  
  #g-nav-list li a{
      padding: 15px 20px;
  }
  
  #g-nav-list .panelactive ul li::before{
      content:'';
      width: 5px;
      height: 5px;
      position: absolute;
      left: -10px;
      top: 43%;
  }
  
  .menu_call{
      width: 200px;
      padding: 5px 10px; 
      background-color: #18A8E8;
      margin: 20px auto;
      border-radius: 999px;
  }
  
  /* menu終わり */
  
  .top{
      background-image: url(../img/FV.webp);
      width: 100%;
      min-height: 500px;
      background-size: cover;
      background-position: top;
      position: relative;
  }

  .top_sub{
    background-image: url(../img/FV.webp);
    width: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: top;
    position: relative;
  
}
  
  .top::after{
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(11,111,159,0.08), rgba(11,111,159,0.18));
  }
  
  .top h2{
      position: absolute;
      bottom: 80px;
      right: 40px;
      font-size: 2.3rem;
      text-align: center;
      color: #fff;
      text-shadow: 0 3px 8px rgba(11, 111, 159, 0.45);
      z-index: 2;
  }
  
  @media screen and (max-width: 1300px) {
      .top h2{
          bottom: 60px;
          font-size: 1.7rem;
      }
  }
  
  @media screen and (max-width: 690px){
      .top{
          min-height: 300px;
      }
  
      .top h2{
          width: 350px;
          font-size: 0.9rem;
          left: 50%;
          transform: translateX(-50%);
          -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
      }
  }
  
  /* ニュース */
  
  #news {
      background-color: #F4FBFF;
      height: fit-content;
      padding: 50px 0;
  }
  
  #news h3{
      text-align: center;
  }
  
  #news ul{
      display: block;
      width: fit-content;
      margin: auto;
      list-style: none;
  }
  
  #news ul li{
      padding: 10px 0;
      display: flex;
      align-items: center;
      border-bottom: 1px solid #D9EEF8;
  }
  
  #news ul li .news_set{
      display: flex;
      align-items: center;
  }
  
  #news ul li .news_day{
      color: #333;
      width: 100px;
      font-size: 1.2rem;
  }
  
  #news ul li .news_category{
      color: #fff;
      background: linear-gradient(90deg, #18A8E8 0%, #0B6F9F 100%);
      padding: 3px 8px;
      margin: 0 10px;
      border-radius: 999px;
  }
  
  @media screen and (max-width: 690px){
      #news {
          padding: 20px 0;
      }
  
      #news ul{
        padding: 0;
          width: 95%;
      }
  
      #news ul li{
          padding: 8px 0;
          display: block;
      }
  
      #news ul li .news_day{
          font-size: 1rem;
          width: 80px;
      }
  
      #news ul li .news_category{
          font-size: 0.8rem;
          margin: 0 5px;
      }
  
      #news ul li .news_title{
          font-size: 0.8rem;
          margin: 5px 0;
      }
  }
  
  /* about */
  
  #about{
      width: 85%;
      margin: auto;
      padding: 20px 0;
  }
  
  #about h3{
      margin: 50px auto;
  }
  
  #about ul{
      padding: 0;
      width: 100%;
      justify-content: center;
  }
  
  #about ul li{
      text-align: center;
      background: linear-gradient(180deg, #67C8F2 0%, #18A8E8 100%);
      color: #fff;
      width: 300px;
      margin: 0 20px;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 8px 18px rgba(11, 111, 159, 0.14);
  }
  
  #about ul li img{
      object-fit: cover;
      width: 300px;
      height: 200px;
  }
  
  #about ul li h4{
      font-size: 1.2rem;
  }
  
  #about ul li p{
      width: 280px;
      margin: 20px auto;
  }
  
  #about ul li .about_btn{
      color: #0B6F9F;
      font-weight: bold;
      background-color: #fff;
      width: 130px;
      font-size: 1.7rem;
      padding: 5px 10px;
      box-shadow: 0 3px 8px rgba(11, 111, 159, 0.18);
      margin: 20px auto;
      border-radius: 999px;
  }
  
  @media screen and (max-width: 1000px){
      #about ul{
          display: block;
      }
  
      #about ul li{
          padding: 0 0 6px;
          margin: 20px auto;
          width: 100%;
      }
  
      #about ul li img{
          width: 100%;
          height: 350px;
      }
  
      #about ul li p{
          font-size: 0.8rem;
          width: 100%;
          margin: 0 auto;
      }
  
      #about ul li .about_btn{
          width: 100px;
          font-size: 1.3rem;
      }
  }
  
  @media screen and (max-width: 690px){
      #about ul li img{
          height: 200px;
      }
  
      #about ul li h4{
          font-size: 1.2rem;
          margin: 10px auto;
      }
  
      #about ul li p{
          width: 300px;
      }
  }
  
  /* スライダー */
  
  .img_slider{
      width: 100%;
  }
  
  .slider{
      margin: 50px auto;
      padding: 0;
      width: 100%;
  }
  
  .slider img {
      width: 100%;
      height: 200px;
      object-fit: cover;
  }
  
  .slider .slick-slide {
      margin: 0 10px;
  }
  
  /* 基本理念 */
  
  #philosophy{
      text-align: center;
      margin: 30px auto;
      padding: 20px 0;
      width: 100%;
      box-shadow: 0 6px 15px rgba(11, 111, 159, 0.15);
      background: linear-gradient(90deg, #18A8E8 0%, #0B6F9F 100%);
      color: #fff;
  }
  
  #philosophy h3{
      color: #fff;
  }
  
  #philosophy p{
      width: 80%;
      margin: 30px auto;
  }
  
  @media screen and (max-width: 690px){
      #philosophy p{
          font-size: 0.9rem;
      }
  }
  
  /* 管理者から */
  
  #greeting{
      background-image: url(../img/masud-rahman-HklLTnokhT8-unsplash.jpg);
      background-size: cover;
      padding: 40px 0;
      background-position: center;
  }
  
  .wh_cover{
      background-color: rgba(255,255,255,0.86);
      margin: auto;
      width: 70%;
      height: auto;
      padding: 30px 50px;
      border-radius: 20px;
      box-shadow: 0 6px 18px rgba(11, 111, 159, 0.14);
      border: 1px solid #D6EEF9;
  }
  
  #greeting h3{
      text-align: center;
      margin: 10px 0;
  }
  
  #greeting p{
      text-align: center;
      line-height: 30px;
  }
  
  #greeting .greeting_set{
      align-items: center;
      display: flex;
      text-align: center;
      width: 320px;
      margin: auto;
  }
  
  #greeting .greeting_set img{
      margin: 0 10px;
      width: 110px;
      height: 130px;
      object-fit: cover;
      border-radius: 10px;
  }
  
  @media screen and (max-width: 1300px){
      #greeting p{
          font-size: 0.8rem;
      }
  }
  
  @media screen and (max-width: 690px){
      #greeting{
          padding: 30px 0;
      }
  
      #greeting h3{
          margin: 5px 0;
      }
  
      #greeting .greeting_set{
          width: 300px;
          font-size: 0.8rem;
      }
  
      #greeting .greeting_set img{
          width: 100px;
      }
  }
  
  /* フッター */
  
  footer{
      position: relative;
      padding: 30px 30px;
      background: linear-gradient(90deg, #1199D6 0%, #0B6F9F 100%);
      color: #fff;
      height: 250px;
  }
  
  footer text{
      line-height: 25px;
  }
  
  footer small{
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
  }
  
  @media screen and (max-width: 690px){
      footer{
          padding: 30px 10px 100px;
      }
  
      footer h1{
          font-size: 1.3rem;
      }
  
      footer text{
          font-size: 0.8rem;
          line-height: 25px;
      }
  
      footer small{
          width: 80%;
          text-align: center;
      }
  }
  
  .kaigo_number{
      text-align: center;
      z-index: 999;
      font-size: 10px;
      font-weight: bold;
      padding: 3px 0;
      position: fixed;
      width: 100%;
      background-color: #ffffff;
      color: #0B6F9F;
      top: 0;
      border-bottom: 1px solid #D9EEF8;
  }
  
  @media screen and (max-width: 690px){
      .kaigo_number span{
          display: none;
      }
  }
  
  /* 料金表 */
  
  .price-graph {
      max-width: 600px;
      margin: 50px auto 50px;
      padding: 0 20px;
      color: #2B4A59;
      font-size: 18px;
      overflow-x: scroll;
  }
  
  .price-graph .scroll {
      overflow-x: scroll;
  }
  
  .price-graph-level {
      max-width: 800px;
  }
  
  .price-graph h1 {
      font-size: 25px;
      color: #0B6F9F;
      text-align: center;
      margin-top: 50px;
      margin-bottom: 10px;
  }
  
  .price-graph p {
      text-align: center;
      font-size: 0.95em;
      color: #5D7683;
      margin-bottom: 30px;
  }
  
  .price-graph table {
      width: 100%;
      margin: 0 auto;
      font-size: 18px;
      border-collapse: collapse;
      white-space: nowrap;
      background-color: #fff;
  }
  
  .price-graph thead th {
      border: 3px solid #fff;
      background: linear-gradient(90deg, #18A8E8 0%, #0B6F9F 100%);
      color: #fff;
      padding: 0px 10px;
      text-align: left;
      font-weight: normal;
  }
  
  .price-graph tbody td {
      padding: 10px 5px;
      text-align: center;
      border-top: 3px solid #fff;
      font-size: 20px;
      background-color: #fff;
  }
  
  .price-graph tbody td:first-child {
      background-color: #DFF4FD;
      border-right: 3px solid #fff;
      color: #0B6F9F;
      font-weight: bold;
  }
  
  .price-graph tbody td:nth-child(2)::after,
  .price-graph tbody td:nth-child(3)::after,
  .price-graph tbody td:nth-child(4)::after,
  .price-graph tbody td:nth-child(5)::after {
      content: "";
      display: block;
  }
  
  .price-graph .bg {
      text-align: right;
      position: relative;
      z-index: 10;
      border-right: 3px solid #fff;
      background-color: #EFF9FE;
  }
  
  .price-graph .text {
      width: fit-content;
      margin: 0 0 0 auto;
  }
  
  @media screen and (max-width: 690px) {
      .price-graph {
          max-width: 95%;
          margin: 0px auto 50px;
          padding: 0 5px;
          font-size: 15px;
      }
  
      .price-graph-level {
          max-width: 100%;
      }
  
      .price-graph h1 {
          font-size: 25px;
          text-align: center;
          margin-top: 80px;
          margin-bottom: 10px;
      }
  
      .price-graph table {
          font-size: 15px;
      }
  
      .price-graph thead th {
          border: 2px solid #fff;
          padding: 5px;
      }
  
      .price-graph tbody td {
          padding: 5px 3px;
          border-top: 2px solid #fff;
          font-size: 15px;
      }
  
      .price-graph tbody td:first-child {
          border: 2px solid #fff;
      }
  }
  
  .price-header,
  .price-level-header {
      width: 80%;
      height: auto;
      background-size: cover;
      color: #FFF;
      margin: 200px auto 0px;
  }
  
  .price-header h2,
  .price-level-header h2 {
      font-size: 30px;
      text-align: center;
      padding: 40px 0;
      text-shadow: 0 3px 8px rgba(11,111,159,0.35);
  }
  
  .price-header h2 span,
  .price-level-header h2 span {
      font-size: 15px;
  }
  
  .price-header {
      background-image: url("../img/price-header.png");
  }
  
  .price-level-header {
      background-image: url("../img/price-level-header.png");
  }
  
  @media screen and (max-width: 690px) {
      .price-header,
      .price-level-header {
          width: 95%;
          margin: 50px auto 0px;
      }
  
      .price-header h2,
      .price-level-header h2 {
          font-size: 25px;
          text-align: center;
          padding: 20px 0;
      }
  
      .price-header h2 span,
      .price-level-header h2 span {
          font-size: 13px;
      }
  }