﻿@charset "utf-8";
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
    color: rgba(64,64,64,1); 
    letter-spacing: 1px;
    line-height:1.5em
  }


/******* Loading画面設定 ******/
#splash {
  /*fixedで全面に固定*/
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background:rgba(243,245,254,1);  
    text-align:center;
  }
    /* Loading画像中央配置　*/
  #splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
    /* Loading アイコンの大きさ設定　*/
  #splash_logo img {
    width:30%;
  }
    /* fadeUpをするアイコンの動き */
  .fadeUp{
  animation-name: fadeUpAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity: 0;
  }
  /*   Loading SP   */
  @keyframes fadeUpAnime{
    from {
      opacity: 0;
    transform: translateY(100px);
    }
  
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }

  /******* ヘッダー ******/
  header.nav {
    position: fixed;
    z-index: 998;
    width: 100%; 
    height: 80px; 
    background: rgba(243,245,254,0.8);  
    box-sizing: border-box;
    top: 0; 
    left: 0; 
    align-items: center; 
    display: flex; 
    justify-content:space-between;  
  }
  
  .nav_list {
    box-sizing: border-box;
    display: flex;
    margin: 0 auto;
    padding: 0;
  }
  
  .nav_list-item {
    list-style: none;
    text-decoration: none;
  }

  .social-list-instagram {
    list-style: none;
    text-decoration: none;
    width: 80px;
    text-align: right;
    vertical-align: middle;
  }
  
  .nav_list-link {
    color: rgba(64,64,64,1); 
    display: block;
    margin: 0 auto; 
    padding: 10px 20px; 
    text-decoration: none;
    font-size: 18px;
  }
  
  .nav_list-link:hover {
    color: rgba(125,125,125);  
  }

  /*   ヘッダー SP   */
  @media screen and (max-width: 980px) {
    header.nav {
      height: 50px; 
    }
  }
  @media screen and (max-width: 540px) {
    header.nav.c-hamburger-menu {
      height: 50px; 
    }
    img.header_logo {
      height: 40px;
    }
    .nav_list-link {
      margin: 0 auto; 
      padding: 0px 10px; 
      font-size: 12px;
    }
    .social-list-instagram {
      width: 50px;
      text-align: center;
    }
  } 

/******* メイン ・ セクション ********/  
main{
  text-align: center;
}
section:first-child{
  margin: 0 auto;
  padding: 0px 50px;
}
section:first-child h2{
  margin-top: 10px;
  padding-bottom: 10px;
  font-weight: normal;
}
section:first-child p{
  width: 90%;
  margin: 0 auto;
  font-size: 16px;
  line-height: 30px;
  padding-bottom: 20px;
}
section:nth-child(3){
  padding-bottom: 30px;
}
section h1{
  line-height: 40px;
  padding: 70px 0px  20px 0px;
  font-size: 22px;
  font-weight: normal;
}
section p{
  font-size: 20px;
  padding: 20px 0px;
}
h2{
  margin-top: 10px;
  padding-bottom:30px;
  font-weight: normal;
}
.sp{
  display: none;
}

/*   メイン ・ セクション SP   */
@media screen and (max-width: 980px){
  main{
    padding: 50px 0px;
    text-align: center;
  }
  main p img{
    padding-bottom: 40px;
  }
  section h1{
    padding: 20px 0px  40px 0px;
  }
  h2{
    font-size: 20px;
    padding-top: 20px;
  }
  section:first-child p{
    margin: 0 auto;
  }
  
}
@media screen and (max-width: 540px){
  main p img{
    width: 100%;
  }
  section:first-child{
    margin: 0 auto;
    padding: 0px 50px;
    width: 100%;
  }
  section h1{
    font-size: 14px;
    line-height: 28px;
    padding-bottom: 10px;
  }
  h2{
    font-size: 18px;
    padding-top: 10px;
  }
  section p{
    font-size: 14px;
    padding: 20px 0px;
  }
  section:first-child h2{
    margin-top: 10px;
    padding-bottom: 10px;
  }
  section:first-child p{
    width: 100%;
    font-size: 14px;
    text-align: left;
  }
  .sp{
    display: block;
  }
}

/******* トップ画のスタイル ********/
.top-image{
  position: relative;
  text-align: center;
  margin: 0 auto;
}
.top-image > p{
  padding: 0px;
}
.top-image img.image-text{
  position: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 5%;
}

@media screen and (max-width: 540px){
  .top-image img{
    padding-bottom: 0px;
  }
}


/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 1.2s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}


/*-------------------------------------------
Menu
-------------------------------------------*/
#menu {
  margin: 50px 0px;
}
#menu .menu-img {
  background-image: url(../image/oshinagaki.jpg);
  background-size: cover;
  margin: 0 auto;
  background-repeat: no-repeat;
  position: relative;
}
#menu .sec-title{
  font-size: 28px;
  padding: 100px 0px;
}
#menu h3 {
  padding: 30px 0px;
  font-size: 20px;
  font-weight: normal;
}
#menu .menu-content {
  display: flex;
  width: 90%;
  margin: 0 auto;
}
#menu .menu-item {
  width: 50%;
  padding: 0 45px;
}
#menu .menu-item p {
  font-size: 12px;
  padding: 0;
  text-align: left;
}
#menu .menu-item:first-child {
  border-right: solid 1px rgba(64,64,64,1); 
}
#menu .menu-item dl {
  display: flex;
  flex-wrap: wrap;
}
#menu .menu-item dt {
  width: 87%;
  text-align: left;
  border-bottom: dotted 1px rgba(64,64,64,1); 
  margin-bottom: 25px;
}
#menu .menu-item dd {
  width: 13%;
  text-align: right;
  padding-top: 8px;
}
#menu .menu-item dl.food {
  margin-bottom: 55px;
}

 /*-------------------------------------------
  Menu  SP
  -------------------------------------------*/
  @media screen and (max-width: 1080px){
    #menu .menu-item {
      padding: 0 30px;
    }
    .menu-item dl {
      font-size: 14px;
    }
    #menu .menu-item dt {
      width: 87%;
    }
    #menu .menu-item dd {
      width: 13%;
    }
  }


  @media screen and (max-width: 830px){
  #menu {
    margin: 10px 0px;
  }
  #menu .menu-content {
    flex-direction: column;
  }
  #menu .menu-item {
    width: 100%;
    padding: 0 30px;
  }
  #menu .sec-title{
    font-size: 24px;
    padding: 30px 0px;
  }
  #menu h3 {
    font-size: 18px;
  }
  #menu .menu-item:first-child {
    border-right: none;
  }
  #menu .menu-item dl {
    margin-bottom: 10px;
    font-size: 12px;
  }
  #menu .menu-item dl.food {
    margin-bottom: 10px;
  }
  #menu .menu-item dt {
    width: 80%;
  }
  #menu .menu-item dd {
    width: 20%;
  }
}


#menu2 {
  margin: 20px 0px;
  padding: 0px;
}
#menu2 h3 {
  padding: 30px 0px;
  font-size: 20px;
  font-weight: normal;
}
#menu2 .menu-content {
  display: flex;
  width: 90%;
  margin: 0 auto;
}
#menu2 .menu-item {
  width: 50%;
  padding: 0 45px;
}
#menu2 .menu-item p {
  font-size: 12px;
  padding: 0;
  text-align: left;
}
#menu2 .menu-item:first-child {
  border-right: solid 1px rgba(64,64,64,1); 
}
#menu2 .menu-item dl {
  display: flex;
  flex-wrap: wrap;
}
#menu2 .menu-item dt {
  width: 87%;
  text-align: left;
  border-bottom: dotted 1px rgba(64,64,64,1); 
  margin-bottom: 25px;
}
#menu2 .menu-item dd {
  width: 13%;
  text-align: right;
  padding-top: 8px;
}
#menu2 .menu-item dl.food {
  margin-bottom: 55px;
}

 /*-------------------------------------------
  Menu  SP
  -------------------------------------------*/
  @media screen and (max-width: 1080px){
    #menu2 .menu-item {
      padding: 0 30px;
    }
    .menu-item dl {
      font-size: 14px;
    }
    #menu2 .menu-item dt {
      width: 87%;
    }
    #menu2 .menu-item dd {
      width: 13%;
    }
  }


  @media screen and (max-width: 830px){
  #menu2 {
    margin-top: 10px;
  }
  #menu2 .menu-content {
    flex-direction: column;
  }
  #menu2 .menu-item {
    width: 100%;
    padding: 0 30px;
  }
  #menu2 h3 {
    font-size: 18px;
  }
  #menu2 .menu-item:first-child {
    border-right: none;
  }
  #menu2 .menu-item dl {
    margin-bottom: 10px;
    font-size: 12px;
  }
  #menu2 .menu-item dl.food {
    margin-bottom: 10px;
  }
  #menu2 .menu-item dt {
    width: 80%;
  }
  #menu2 .menu-item dd {
    width: 20%;
  }
}

section:nth-child(4) p{
  width: 90%;
  margin: 0 auto;
  font-size: 16px;
  line-height: 30px;
  padding: 20px 0px;
}

@media screen and (max-width: 980px){
  section:nth-child(4) p{
    width: 100%;
    padding: 0px 40px;
  }
}
@media screen and (max-width: 540px){
  section:nth-child(4) p{
    text-align: left;
    font-size: 14px;
    padding: 0px 30px;
  }
}


/*===================================
イメージ画像 スライダー2のためのcss
===================================*/

.slider2 img {
  width: 100%; /*=スライダー内の画像を横幅100%に=*/
  height: auto;
}
/*=slickのJSで書かれるタグ内、スライド左右の余白調整=*/
.slider2 .slick-slide {
  margin:0 10px;/*=スライド左右の余白調整=*/
}
section:nth-child(5){
background:rgba(243,245,254,1);  
text-align:center;
padding: 40px 0;
}
ul{
margin:0;
padding: 0;
list-style: none;
}
a:hover,
a:active{
text-decoration: none;
}



/******* フッター ********/
footer{
  padding-top: 100px;
  background-image: url(../image/gaikan_01.jpg);
  background-size:cover;
  background-position: center;
  background-repeat:no-repeat;
}
footer h2{
  font-size: 2em;
  padding: 40px 40px 10px 40px;
  text-align: center;
  font-weight: normal;
}
.section-information{
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-information .inner-access img{
  width: 80px;
  margin:40px 40px 0px 100px;
}
footer p{
  font-size: 14px;
  margin-left: 150px;
  margin-right: 30px;
}
footer p:nth-child(2){
  padding-top: 4px;
}
footer p:nth-child(3){
  font-size: 11px;
  letter-spacing: normal;
}
footer p:nth-child(4){
  font-size: 24px;
  padding: 10px 0px;
  letter-spacing: 3px;
  pointer-events: none;
  text-decoration: none; 
}
footer p:nth-child(6){
  font-size: 11px;
}
footer p:nth-child(8){
  margin-bottom: 50px;
}
.section-information .inner-map-sp{
  display: none;
}
footer > p:last-child{
  margin: 0 auto;
  text-align: center;
  padding-bottom: 30px;
  font-size: 12px;
}

/*  フッターSP  */
@media screen and (max-width: 980px){
  footer{
    padding-top: 0px;
    background-image: url(../image/gaikan_01.jpg);
    background-size:cover;
    background-position: center;
    background-repeat:no-repeat;
  }
  footer h2{
    padding: 40px;
  }
  footer p{
    font-size: 14px;
    margin:0 auto;
  }
  .section-information{
    display: block;
    justify-content: center;
    align-items: center;
  }
  .section-information .inner-access{
    display: block;
    text-align: center;
    margin: 0;
  }
  .section-information .inner-access img{
    width: 80px;
    margin:0 auto;
  }
  footer p:nth-child(8){
    margin-bottom: 20px;
  }
  .section-information .inner-map{
    display: block;
    text-align: center;
  }
  footer > p:last-child{
    padding: 20px ;
  }
  }
@media screen and (max-width: 540px){
  .section-information .inner-map{
    display: none;
    text-align: center;
  }
  .section-information .inner-map-sp{
    display: block;
    text-align: center;
  }
}