@charset "utf-8";

/*----------------------------------------------------------------------------
   mainvisual
------------------------------------------------------------------------------*/
#mainvisual {
  position: relative;
  width: 100%;
  max-height: 100vh;
  overflow: hidden;
  .image-wrap {
    display: flex;
    justify-content: space-between;    
    .photo {
      width: 50%;
      overflow: hidden;
      aspect-ratio: 8 / 9;
    }
  }
  .catch {
    position: absolute;
    top: calc(50% - .5em);
    left: calc(50% - 6em);
    margin: 0;
    color: #fff;
    font-style: italic;
    text-align: center;
    line-height: 1.3;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #232323;
  }

  @media (max-width:960px) {
    .image-wrap {
      flex-wrap: wrap;
      aspect-ratio: 8 / 9;
      overflow: hidden;
      
      .photo { width: 100%; }
    }
    .catch {
      display: inline-block;
      width: 7em;
      top: auto;
      bottom: 84px;
      left: 0px;
      
      .text-ib {
        padding-left: .5em;
      }
    }
  }

  @media (max-width:510px) {
    .catch {
      bottom: 48px;
    }
  }
}



/*----------------------------------------------------------------------------
   TOP - Information -
------------------------------------------------------------------------------*/

#information {
  padding-top: calc(var(--BaseSpaceSize) * 6);
  padding-bottom: calc(var(--BaseSpaceSize) * 6);
  
  .list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: calc(var(--BaseSpaceSize) * 2);
    
    .box {
      position: relative;
      padding-top: calc(var(--BaseSpaceSize) * 1.5);
      box-sizing: border-box;
      
      a,
      .nolink {
        color: inherit;
        transition: .2s;
      
        .img {
          overflow: hidden;
          border-radius: var(--BaseSpaceSize);
        
          img {
            width: 100%;
            height: auto;
            aspect-ratio: 4 / 3;
            object-fit: cover;
            transition: .2s;
          }
        }

        .date {
          position: absolute;
          top: 0;
          left: 20px;
          display: inline-block;
          padding: .5em;
          background-color: var(--Color5);
          text-align: center;
          font-weight: bold;
          line-height: 1;
        }

        .title {
          display: inline-block;
          margin-top: .5em;
        }
      }
        
      a:hover {
        .img {
          img {
            transform: scale(1.1);
          }
        }
      }
    }
  }  
  @media (max-width:768px) {
    .list {
      grid-template-columns: 1fr 1fr;
    } 
  }
  
      
  .btn01 {
    margin-top: calc(var(--BaseSpaceSize) * 3);
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width:768px) {
    .btn01 {
      margin-top: calc(var(--BaseSpaceSize) * 1);
    }
  }
}


/*----------------------------------------------------------------------------
   TOP - About -
------------------------------------------------------------------------------*/

#about {
  background-color: var(--Color6);
  background-image: url("../image/top/about-bg.png");
  background-position: right bottom;
  background-repeat: no-repeat;
  padding-top: calc(var(--BaseSpaceSize) * 6);
  padding-bottom: calc(var(--BaseSpaceSize) * 6);
  
  .article-head { display: none; }
  
  .ship-photo {
    position: relative;
    aspect-ratio: 4 / 3;
  
    .profile {
      position: absolute;
      top: 0;
      left: 0;
      z-index: 3;
      width: 34%;
      aspect-ratio: 392 / 325;
      background-image: url("../image/top/about-profile.png");
      background-repeat: no-repeat;
      background-size: contain;
      overflow: hidden;
      text-indent: 200%;
      white-space: nowrap;
    }
    
    .ship01 {
      position: relative;
      top: 100px;
      width: 73.33%;
      max-width: 880px;
      margin: 0 auto;
    }
    
    .ship02 {
      width: 23.33%;
      min-width: 210px;
      position: absolute;
      top: 0;
      right: 0;
    }
    
    .ship03 {
      width: 23.33%;
      min-width: 210px;
      position: absolute;
      bottom: 0;
      left: 0;
    }
  }
    
  @media (max-width:768px) {  
    .ship-photo {
      aspect-ratio: 4 / 5.4;

      .profile { width: 294px; }

      .ship01 {
        top: 15%;
        width: 100%;
      }

      .ship02 {
        width: 50%;
        min-width: auto;
        top: auto;
        bottom: 0;
        right: 0;
      }

      .ship03 {
        width: 50%;
        min-width: auto;
      }
    }
  }
    
  @media (max-width:510px) {  
    .ship-photo {
      aspect-ratio: 4 / 6;

      .ship01 {
        top: 25%;
      }
    }
  }
  
  .facilities-list {
    display: flex;
    flex-wrap: wrap;
    
    .box {
      width: calc(25% - (var(--BaseSpaceSize) * 1.5));
      margin-right: calc(var(--BaseSpaceSize) * 2);
      box-sizing: border-box;
      
      &:nth-child(4n) { margin-right: 0; }

      img {
        width: 100%;
        height: auto;
        overflow: hidden;
        border-radius: var(--BaseSpaceSize);
        aspect-ratio: 4 / 3;
        object-fit: cover;
        transition: .2s;
      }      

      figcaption {
        display: inline-block;
        margin-top: .5em;
      }      
    }
    
    @media (max-width:768px) {
      .box {
        width: calc(50% - var(--BaseSpaceSize));
        margin-bottom: calc(var(--BaseSpaceSize) * 2);
        
        &:nth-child(even) { margin-right: 0; }
      } 
    }
  }
}


/*----------------------------------------------------------------------------
   TOP - Fee -
------------------------------------------------------------------------------*/

#fee {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-top: calc(var(--BaseSpaceSize) * 6);
  padding-bottom: calc(var(--BaseSpaceSize) * 6);
  
  .description {
    width: calc(100% - 408px);
    margin-right: calc(var(--BaseSpaceSize) * 4);
    
    .box {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
      padding-bottom: .5em;
      margin-top: 1em;
      border-bottom: 1px solid var(--Color2);
      
      &:first-child { margin-top: 0; }
      
      .fishing-name {
        line-height: 1.4;
        
        .fs-l { margin: 0; }
        
        .fs-n { font-weight: normal; }
      }
      
      .price {
        color: var(--Color1);
        font-weight: bold;
        text-align: right;
      }     
      
       @media (max-width:1040px) {
        .price {
          width: 100%;
          margin-top: .5em;
        }     
      }
    }
  }  
  
  @media (max-width:1160px) {
    .description { width: calc(100% - 288px); }
    .photo { width: 240px; }
  }
  
  @media (max-width:768px) {    
    .description { 
      width: 100%;
      margin-right: 0;
    }
    .photo {
      width: 100%;
      max-width: 360px;
      margin: 36px auto 0;
    }
  }
}


/*----------------------------------------------------------------------------
   TOP - Reserved -
------------------------------------------------------------------------------*/
#reserved {
  background-color: var(--Color6);
  background-image: url("../image/top/reserved-bg.jpg");
  background-position: top center;
  background-repeat: repeat-y;
  padding-top: calc(var(--BaseSpaceSize) * 6);
  padding-bottom: calc(var(--BaseSpaceSize) * 6);
  
  .intro { margin-top: 0; }
    
  .section-title { margin-top: 0; }
  
  #status {
    background-color: #fff;
    padding: calc(var(--BaseSpaceSize) * 3);
    box-sizing: border-box;
    
    .calender iframe {
      border: none;
      width: 100%;
      height: 600px;
    }
    
    @media (max-width:510px) {    
      .calender iframe { height: 400px; }
    }
    
    .cartion {
      ul {
        list-style: none;
        padding: 0;
        
        li {
          text-indent: -1em;
          padding-left: 1em;
          
          &::before {
            content: "・";
          }
        }
      }
      
      .btn01 { margin: .5em 0; }
    }
  }
  
  #form {
    background-color: #fff;
    padding-bottom: calc(var(--BaseSpaceSize) * 3);
    padding-left: calc(var(--BaseSpaceSize) * 3);
    padding-right: calc(var(--BaseSpaceSize) * 3);
    box-sizing: border-box;
  }
}


/*----------------------------------------------------------------------------
   TOP - first-time -
------------------------------------------------------------------------------*/
#first-time {
  padding-top: calc(var(--BaseSpaceSize) * 6);
  
  .article-head {
    margin-bottom: 0;
  }
  
  ul {
    list-style: none;
    padding: 0;

    li {
      text-indent: -1em;
      padding-left: 1em;

      &::before {
        content: "・";
      }
    }
  }
  
  .map {
    margin-top: calc(var(--BaseSpaceSize) * 3);
    line-height: 1;
    
    iframe {
      width: 100%;
      height: 480px;
      border: none;
    }    
  }
}


/*----------------------------------------------------------------------------
   TOP - reserved-link -
------------------------------------------------------------------------------*/  
.reserved-link {
  position: fixed;
  right: 72px;
  bottom: 72px;
  z-index: 3;
  display: block;
  width: 200px;
  border-radius: 50%;
  overflow: hidden;
  animation:blink 1.5s ease-in-out infinite alternate;

  &:hover { animation: none; }
}

@media (max-width:1280px) {  
  .reserved-link {
    right: 24px;
    bottom: 100px;
    width: 150px;
  }
}

@media (max-width:768px) {  
  .reserved-link {
    right: 4px;
    bottom: 100px;
    width: 100px;
  }
}

@media (max-width:510px) {      
  .reserved-link {
    bottom: 72px;
  }
}


/*----------------------------------------------------------------------------
   error
------------------------------------------------------------------------------*/  
.not-found {
  margin-top:  calc(var(--BaseSpaceSize) * 6);
  margin-bottom:  calc(var(--BaseSpaceSize) * 6);
}





