@charset 'utf-8';

/* 共通部分 ------------------------------ */

* {
    box-sizing: border-box;
}

html {
    font-size: 100%;
    overflow-x: hidden;
}

body {
    font-family: "Noto Sans JP", serif;
    font-weight: 400;
    color: #1B1F27;
    font-style: normal;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #1B1F27;
}

img {
    max-width: 100%;
    height:auto;
}

body {
    background-color: #F6F7F8;
    margin:0;
    padding:0;
}

.photo-circle2,.photo-circle3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 30;
}

.photo-block {
    width: 400px;
    height: 400px;
}

/* viewBoxからはみ出た部分を見えるようにする */
.circleText {
    overflow: visible;
}

/* 円の塗りつぶしを無くす */
.circleText-circle {
    fill: none;
}

/* 円の周りの文字の装飾 */
.circleText-text {
    font-weight: 300;
    font-size: 5px;
    fill: #595757;
    letter-spacing: 0.092rem;
}

/* 回転するアニメーション */
.circleText {
    overflow: visible;
    animation: rotation2 100s linear infinite;
}

.circleText3 {
    overflow: visible;
    animation: rotation2 100s linear infinite;
    border: solid 1px skyblue;
}

@keyframes rotation2 {
    0% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.circleText2 {
    overflow: visible;
    animation: rotation 100s linear infinite;
    border: solid 1px skyblue;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

header {
    position: relative;
}

h1 {
    font-family: "Noto Serif JP", serif;
    font-size: 40px;
    font-weight: normal;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

label {
    display: none;
}

nav {
    border-right: 0.5px #97B1D4 solid;
    width: 170px;
    height: 100vh;
    display: flex;
    align-items: center;
}

ul { 
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    list-style: none;
    letter-spacing: 1px;
    margin-left: 20px;
    display:flex;
    flex-flow: column;
    justify-content:space-around;
    position: absolute;
}

li {
    margin: 30px 0 30px 0;
    display:flex;
    flex-flow: column;
}

.top-nav {
    font-family: "Roboto", serif;
    font-weight: 500;
}

.eng-nav {
    font-family: "Roboto", serif;
    font-weight: 300;
    font-size: 14px;  
}

.header {
    display: none;
}

.top-nav,.eng-nav {
    color: #004881;
}
  
.main-nav,.top-nav {
    cursor: pointer;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.main-nav:hover,.top-nav:hover {
    letter-spacing: 5px;
}

#plofile {
    position: fixed;
    top: 0;
    left: 180px;
}

.table-container {
    width: 100%;
    display:flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    overflow: auto;
}

.plofile-wrapper {
    width: auto;
    height: auto;
}

.faid-in {
    opacity: 0;
    visibility: hidden;
    transition: all 2s;
}

.faid-in.is-show {
    opacity: 1;
    visibility: visible;
}

.main-nav2,.eng-nav2 {
    opacity: 0.6;
}

.eng-nav2 {
    font-family: "Roboto", serif;
    font-weight: 300;
    font-size: 14px;
    color: #004881;
}

h2 {
    font-family: "Roboto", serif;
    font-weight: 100;
    font-size: 38px;
    color: #97B1D4;
}

.table-container,.title-container,.contact-container {
    width: 100%;
    height: 100vh;
    position: relative;
}

table {
    font-size: 14px;
    table-layout: fixed;
    border-spacing: 0;  
}

th, td {
    vertical-align: top;
    padding: 15px;
}

th {
    border-left: #97B1D4 1px solid;
    font-weight: normal;
    opacity: 0.7;
    width: 110px;
    text-align: left;   
}

.copy2,.copy3 {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
}

#bussines{
    position: absolute;
    top: 0;
    left: 260px;
    z-index: 200;
}

.bussines-container,.plofile-container,.top-container,.contact-container {
    display: flex;
    height: 100vh;
}

.detai-container {
    width: 100%;
    overflow: auto;
}

.detai-container::-webkit-scrollbar {
    width: 4px;
    background-color: #F6F7F8; 
}

.detai-container::-webkit-scrollbar-thumb {
    background: #004881;
    width: 2px;
    border-radius: 5px;
}

.scroll {
    width: 650px;
    height: 100vh;
    display: table-cell;
    vertical-align: middle;  
    text-align: center;
}

h4 {
    font-size: 21px;
    font-weight: 400;
    width: 150px;
    margin: 0 auto 30px auto;
    border-bottom: #97B1D4 2px solid;
}



.scroll-inner p {
    display: inline-block;
    vertical-align: middle;
    line-height: 28px;
}

.scroll_down {
    position: relative;
    width: 100%;
    height: 190px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 30px;
  }
  
  .scroll_down:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(180deg,rgba(#97B1D4, 0) 0, rgba(#97B1D4, .8) 80%, rgba(#97B1D4, .8) 100%);
    }
  
  .scroll_down p {
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 30px;
    padding: 10px 10px 110px;
    color: #004881;
    font-size: 14px;
    line-height: 1;
    letter-spacing: .2em;
    text-transform: uppercase;
    text-decoration: none;
    writing-mode: vertical-lr;
    transition: .2s;
    overflow: hidden;
    margin: auto;
  }
  
  .scroll_down p:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 2px;
    height: 100px;
    background: #ddd;
  }
  
  .scroll_down p:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 2px;
    height: 100px;
    background: #97B1D4;
  }
  
  #type01 p:after {
    animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
  }
  
  @keyframes sdl01 {
    0% {
      transform: scale(1, 0);
      transform-origin: 0 0;
    }
    50% {
      transform: scale(1, 1);
      transform-origin: 0 0;
    }
    50.1% {
      transform: scale(1, 1);
      transform-origin: 0 100%;
    }
    100% {
      transform: scale(1, 0);
      transform-origin: 0 100%;
    }
  }

.wrapper {
    width: 650px;
    margin: 0 auto; 
}

.inner,.inner2 {
    background-color: #F6F7F8;
    box-shadow: 0px 5px 10px rgba(143, 143, 143, 0.3);
    border-radius: 10px;
    width: 100%;
    height: 260px;
    margin-top: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner2 {
    flex-direction: row-reverse; 
}

.scr-target {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
}
.scr-target.is-active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: 1s;
}

img {
    width: 250px;
    height: 150px;
    object-fit: cover;
}

h3 {
    margin-bottom: 10px;
}

.detail,.detail2 {
    margin-left: 40px;
    line-height: 25px;
    text-align: center;
}

.detail2 {
    margin-right: 40px;
}

.detail p,.detail2 p {
    font-size: 14px;  
    display: block;    
}

.reservation {
    font-size: 14px;
    font-weight: 600;
	display: block;
    border: 1px solid #004881;
	color: #004881;
	border-radius: 100vh;
	transition: 0.5s;
    width: 200px;
	margin: 10px auto 0 auto;
	text-align: center;
}

.reservation:hover {
	color: #fff;
	background: #004881;
}

small {
    display: block;
    font-size: 12px;
    font-weight: 300;
    width: 145px;
    margin: 200px auto 0 auto;
}

.back-ground {
    background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)),
                      linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
    background-size: 16px 16px;
    background-repeat: repeat;
    background-position: center center;
}

.details-fade span {
    transition: 1s;
    opacity: 0;
    transform: translateY(20px);
    display: block;
}

.details-fade .fade1 {
    animation: catch_anime 1.4s forwards 0.5s;
  }
  .details-fade .fade2 {
    animation: catch_anime 1.4s forwards 1.5s;
    font-size: 14px;
    line-height: 25px;
  }
  .details-fade .fade3 {
    animation: catch_anime 1.4s forwards 1.7s;
  }
  
  @keyframes catch_anime {
    0% {
      transform: translateY(20px);
    }
     100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  #contact{
    position: absolute;
    top: 0;
    left: 10px;
}

  .mail-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
  }
  
  .mail-box img {
    display: block;
    width: 50px;
    height: 30px;
    margin-right: 20px;
  }

  .mail-box a {
    font-size: 21px;
    color: #004881;
  }

  .mail-box a:hover {
    color: #97B1D4;
  }

  .contact-inner {
    background-color: #F6F7F8;
    box-shadow: 0px 5px 10px rgba(143, 143, 143, 0.3);
    border-radius: 10px;
    width: 550px;
    height: 260px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .sp-br {
    display: none;
  }
  @media screen and (max-width: 1500px) {
  #bussines,#plofile {
    left: 180px;
}
  }
  
@media screen and (max-width: 1024px) {
    h1 {
        font-size: 32px;
    }

    .wrapper {
        width: 450px;
    }

    .inner,.inner2 {
        background-color: #F6F7F8;
        height: 550px;
        margin-top: 200px;
        display:flex;
        flex-flow: column;
    }
    
    .inner2 {
        flex-flow: column; 
    }
    
    .scr-target {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    .scr-target.is-active {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        transition: 1s;
    }
    
    img {
        width: 300px;
        height: 200px;
    }
    
    h3 {
        margin-bottom: 20px;
    }
    
    .detail,.detail2 {
        margin-left: 0;
        line-height: 30px;
        margin-top: 30px;
    }
    
    .detail2 {
        margin-right: 0px;
    }
    
    .detail p,.detail2 p {
        font-size: 16px;     
    }

    .contact-inner {
        width: 500px;
    }

    .photo-block {
        width: 350px;
        height: 350px;
    }
}

@media screen and (max-width: 768px){

    .bussines-container {
        overflow: hidden;
        width: 100%;
    }

    h1 {
        font-size: 28px;
    }

    nav {
        display: none;
    }

    #bussines {
        left: 10px;
    }

    .header {
        display: block;
    }
       
        .header {
          width: 300px;
        }
        
      
    h1 {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 80%;
        text-align: center;
    }

    .main-nav,.top-nav {
        cursor: pointer;
    }

    .main-nav:hover,.top-nav:hover {
        letter-spacing: 1px;
    }

    label {
        display: block;
        width: 100%;
        text-align: center;
        z-index: 500;
    }

    label .menu {
        position: absolute;
        right: -100px;
        top: -100px;
        z-index: 100;
        width: 200px;
        height: 200px;
        background: #FFF;
        border-radius: 50% 50% 50% 50%;
        -webkit-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        box-shadow: 0 0 0 0 #FFF, 0 0 0 0 #FFF;
        cursor: pointer;
        z-index: 500;
      }
      
      label .hamburger {
        position: absolute;
        top: 135px;
        left: 50px;
        width: 30px;
        height: 2px;
        background: #004881;
        display: block;
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
      }
      
      label .hamburger:after, label .hamburger:before {
        -webkit-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        content: "";
        position: absolute;
        display: block;
        width: 100%;
        height: 100%;
        background: #004881;
      }
      
      label .hamburger:before { top: -10px; }
      
      label .hamburger:after { bottom: -10px; }
      
      label input { display: none; }
      
      label input:checked + .menu {
        box-shadow: 0 0 0 100vw #FFF, 0 0 0 100vh #FFF;
        border-radius: 0;
        
      }
      
      label input:checked + .menu .hamburger {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        
      }
      
      label input:checked + .menu .hamburger:after {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        bottom: 0;
        
      }
      
      label input:checked + .menu .hamburger:before {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        top: 0;
        
      }
      
      label input:checked + .menu + ul { opacity: 1; }
      
      label ul {
        position: absolute;
        top: 50%;
        left: 45%;
        -webkit-transform: translate(-50%, -45%);
        transform: translate(-50%, -45%);
        opacity: 0;
        -webkit-transition: .25s 0s ease-in-out;
        transition: .25s 0s ease-in-out;
        z-index: 600;
      }
      
      label a {
        display: block;
        color: #1B1F27;;
        text-decoration: none;
      }

      label .eng-nav2 {
        margin-top: 5px;
      }
      
      body {
        overflow-x: hidden;
        position: relative;
    }

    .contact-inner {
        width: 500px;
    }

    #plofile {
        left: 10px;
      }

    .plofile-wrapper {
        width: 500px;
    }

    .photo-block {
        width: 300px;
        height: 300px;
    }

}

@media screen and (max-width: 550px){
    .sp-br {
        display: inline;
      }

    .plofile-wrapper {
        width: 400px;
    }

    .photo-block {
        width: 280px;
        height: 280px;
    }
}

@media screen and (max-width: 480px){
    .plofile-wrapper {
        width: 300px;
    }

    .wrapper {
        width: 300px;
    }

    .inner,.inner2 {
        height: 500px;   
    }

    img {
        width: 220px;
        height: 150px;
    }

    .fade2 p {
        font-size: 14px;
    }

    .contact-inner {
        width: 300px;
    }

    .mail-box {
        display: flex;
        flex-direction: column;
    }

    .mail-box img {
        margin-right: 0;
        width: 32px;
        height: 20px;
    }
    
    .mail-box a {
        font-size: 16px;
    }

    .plofile-wrapper {
        width: 300px;
        height: auto;
        margin-top: 200px;
    }

    .copy2 {
        position: absolute;
        bottom: -250px;
        left: 50%;
        transform: translate(-50%);
    }

    .photo-block {
        width: 200px;
        height: 200px;
    }

    .photo-block {
        width: 250px;
        height: 250px;
    }
}

@media screen and (min-width:1500px) {
    h1 {
        font-size: 48px;
    }

    small {
        font-size: 16px;
        width: 193px;
    }

    nav {
        border-right: 1px #97B1D4 solid;
        width: 250px;
    }
    
    ul { 
        font-size: 18px;
    }

    .top-nav {
        font-size: 21px;
    }

    .eng-nav,.eng-nav2 {
        font-size: 16px;
    }

    table {
        font-size: 16px; 
    }
    
    th {
        width: 150px;
    }

    .wrapper {
        width: 800px;
    }

    .inner,.inner2 {
        background-color: #F6F7F8;
        height: 350px;
        margin-top: 200px;
    }
    
    .inner2 {
        flex-direction: row-reverse; 
    }
    
    .scr-target {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    .scr-target.is-active {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        transition: 1s;
    }
    
    img {
        width: 300px;
        height: 200px;
    }
    
    h3 {
        margin-bottom: 20px;
    }
    
    .detail,.detail2 {
        margin-left: 60px;
        line-height: 30px;
    }
    
    .detail2 {
        margin-right: 60px;
    }
    
    .detail p,.detail2 p {
        font-size: 16px;     
    }
    
    .reservation {
        width: 220px;
        margin: 20px auto 0 auto;
    }

    .scroll {
        width: 800px;
    }
    
    h4 {
        font-size: 24px;
        width: 170px;
        margin: 0 auto 30px auto;
    }
    
    .scroll-inner p {
        font-size: 18px;
        line-height: 32px;
    }

    small {
        font-size: 14px;
        width: 169px;
        margin: 280px auto 0 auto;
    }

    .copy2,.copy3 {
        font-size: 14px;
    }

    #contact{
        position: absolute;
        top: 0;
        left: 10px;
    }
    
      .mail-box {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
      }
      
      .mail-box img {
        display: block;
        width: 50px;
        height: 30px;
        margin-right: 20px;
      }
    
      .mail-box a {
        font-size: 28px;
      }

      .contact-inner  p {
        font-size: 18px;
      }
    
      .contact-inner {
        background-color: #F6F7F8;
        box-shadow: 0px 5px 10px rgba(143, 143, 143, 0.3);
        border-radius: 10px;
        width: 650px;
        height: 360px;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
      }

      #plofile {
        left: 260px;
      }

      .photo-block {
        width: 500px;
        height: 500px;
    }
}