/* デザインA（スマートフォン） */
/* common */
html {
  margin: 0;
  background-color: #F4ECDC;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 400;
  font-style: normal;
}
a {
  text-decoration: none;
  color: inherit;
  transition: opacity .2s;
}

a:hover {
  opacity: .5;
}

body {
  margin: 0;
  text-align: center;
}



/* nav */

#nav-drawer {
  position: relative;
}
.nav-unshown{
  display: none;
}
.nav-button{
  position: absolute;
  top: 20px;
  right: -60px;
  width: 50px;
  height: 50px;
  background: #c486b9;/*ボックス背景色*/
  color:#fff;/*文字色*/
  text-align: center;
  border-radius: 42% 58% 30% 70% / 65% 64% 36% 35% ;
  box-shadow:1.4px 1.9px 0.7px 0.7px rgba(0, 0, 0, 0.1); 
  /* background-image: linear-gradient(to top, #9795f0 0%, #fbc8d4 100%); */
}
.nav-button:after{
  position: relative;
  bottom: 45px;/*テキスト下からの位置*/
  z-index: 1;
  font-size: 12px;
  content: "open";
}
#nav-open{
  position: relative;
  margin: 0 auto;
  width:50px;/*アイコンサイズ*/
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: relative;
  height: 3px;/*線の太さ*/
  width: 25px;/*長さ*/
  border-radius: 3px;
  background: #fff;/*アイコン色*/
  display: block;
  content: '';
  transition: all 0.5s ease-in-out;/*アニメーションの速さ*/
}
#nav-open span:before{
  top: -10px;
}
#nav-open span:after{
  top: 7px;
}
/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}
/*メニューフィールド*/
#nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;/*最前面に*/
  width: 80%;/*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 330px;/*最大幅（調整してください）*/
  height: 100%;
  background: #E0D5E6;/*背景色*/
  transition: .3s ease-in-out;/*滑らかに表示*/
  transform: translateX(-100%);/*左に隠しておく*/
}
/*中身*/
#nav-menu .content{
  overflow: auto;
  width: 95%;
  height: 95%;
  margin: 2.5%;
}

#nav-menu .content img{
  width:100px
}

#nav-menu .content ul li {
  list-style: none;
  margin-bottom: 38px;
}
/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}
#nav-input:checked ~ #nav-menu {
  transform: translateX(0%);/*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}
#nav-input:checked ~ #nav-menu .nav-button #nav-open span:before{
  top: 0;
  transform: rotateZ(45deg) scale(4);
}
#nav-input:checked ~ #nav-menu .nav-button #nav-open span{
  transform: scale(0.25) rotateY(360deg);
}
#nav-input:checked ~ #nav-menu .nav-button #nav-open span:after{
  top: -3px;
  transform: rotateZ(-45deg) scale(4);
}
#nav-input:checked ~ #nav-menu .nav-button:after{
  content: "close";
}


  /* header */
  header {
    padding-top: 15%;
  }

  .logo {
    display: flex;
    flex-direction: column;
  }

  .rogo1 {
    width: 30%;
    margin: 0 auto;
  }

  .rogo2 {
    width: 40%;
    margin: 0 auto;
  }

  /* main */
  main {
    margin: 0;
    max-width: 100%;
  }

  /* hero */

  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    margin: 0 auto;
  }

  .hero ul {
    list-style: none;
    display: flex;
    justify-self: center;
    margin: 0;
    padding:120px 0;
    text-align: center;
    gap: 50px;
  }

  .hero ul i {
    font-size: 25px;
  }

  .hero p {
    margin: 0 auto;
    line-height: 30px;
  }
  .hero p + p{
    padding-top: 30px;
  }

  .hero img{
      width:10px;
      width:80%;
      padding: 0;

  }

  /* intro */
  .intro {
    margin: 0 auto;
    padding-top: 70px;
    width:90%;
  }

  .intro_title_mb {
    width: 60%;
  }

  .intro_title_pc {
    display: none;
  }

  .intro p {
    font-size: 13px;
    margin: 0;
  }

  .touten { /* pcだけで表示する読点なのでoff */
    display: none;
  }
  

  #tubame1 {
    display: block;
    width: 35%;
    margin: 0 auto;
    padding: 100px 0 0;
  }

  #tubame2 {
    display: block;
    width: 20%;
    margin: 0 30% 0 50%;
    padding-bottom: 150px;
  }

  #honn {
    width: 35%;
    margin: 0 auto;
    padding: 100px 0;
  }

  #cup {
    width: 25%;
    margin: 0 auto;
    padding: 100px 0;
  }

  #light {
    display: none;
  }

  #tyou2 {
    width:20%;
    margin: 0 auto;
    padding: 100px 0 150px;
  }

  #tyou {
    display: none;
  }

  #himawari {
    width:30%;
    margin: 0 auto;
    padding: 100px 0 100px;
  }

  /* ありのイラスト スマホでは表示なし*/
  .ari {
    display: none;
  }

  /* sns */
  .sns {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    margin: 0 ;
  }

  .youtube_insta {
    list-style: none;
    display: flex;
    justify-self: center;
    margin: 0 ;
    padding:120px 0 0;
    text-align: center;
    gap: 50px;
  }
  
  .line {
    list-style: none;
    display: flex;
    justify-self: center;
    margin: 0 ;
    padding:20px;
    text-align: center;
    gap: 50px;
  }

  .sns ul i {
    font-size: 30px;
    margin: 0;
  }

  .sns p {
    margin: 0;
    font-size: 10px;
  }

  #line_button {
    text-align: center;
    padding-left: 65px;
  }

  #line_qr,#line_contents {
    display: none;
  }

  /* online_shop */
  .online_shop p {
    font-size: 13px;
    line-height: 16px;
  }

  .underline {
    text-decoration: underline;
  }

  /* kutu */
  .kutu {
    margin: 0 auto;
    width: 70%;
    padding-top: 50px;
  }

  /* access */

  .access p {
    margin: 0 auto 80px;
    text-align: center;
    padding-top: 100px;
    font-size: 12px;
  }

  .access .map {
    margin: 0;
    text-align: center;
    margin-bottom: 20px;
  }

  /* 石とか */
  #hane {
    width:20%;
    margin: 0 auto;
    padding: 100px 0 100px;
  }

  #ishi {
    width:20%;
    margin: 0 auto;
    padding: 100px 0 100px;
  }

  #omamori {
    width:20%;
    margin: 0 auto;
    padding: 100px 0 100px;
  }

  /* footer */

  footer {
    background: #dc6b9a;
    width: 100%;
    padding: 16px 0;
    color: #eee;
    text-align: center;
  }



/* デザインB（タブレット） */
@media screen and (min-width: 600px) {
  /* common */
html {
  margin: 0;
  background-color: #F4ECDC;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 400;
  font-style: normal;
}
a {
  text-decoration: none;
  color: inherit;
  transition: opacity .2s;
}

a:hover {
  opacity: .5;
}

body {
  margin: 0;
  text-align: center;
}



/* nav */

#nav-drawer {
  position: relative;
}
.nav-unshown{
  display: none;
}
.nav-button{
  position: absolute;
  top: 20px;
  right: -60px;
  width: 50px;
  height: 50px;
  background: #c486b9;/*ボックス背景色*/
  color:#fff;/*文字色*/
  text-align: center;
  border-radius: 42% 58% 30% 70% / 65% 64% 36% 35% ;
  box-shadow:1.4px 1.9px 0.7px 0.7px rgba(0, 0, 0, 0.1); 
  /* background-image: linear-gradient(to top, #9795f0 0%, #fbc8d4 100%); */
}
.nav-button:after{
  position: relative;
  bottom: 45px;/*テキスト下からの位置*/
  z-index: 1;
  font-size: 12px;
  content: "open";
}
#nav-open{
  position: relative;
  margin: 0 auto;
  width:50px;/*アイコンサイズ*/
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: relative;
  height: 3px;/*線の太さ*/
  width: 25px;/*長さ*/
  border-radius: 3px;
  background: #fff;/*アイコン色*/
  display: block;
  content: '';
  transition: all 0.5s ease-in-out;/*アニメーションの速さ*/
}
#nav-open span:before{
  top: -10px;
}
#nav-open span:after{
  top: 7px;
}
/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}
/*メニューフィールド*/
#nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;/*最前面に*/
  width: 80%;/*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 330px;/*最大幅（調整してください）*/
  height: 100%;
  background: #E0D5E6;/*背景色*/
  transition: .3s ease-in-out;/*滑らかに表示*/
  transform: translateX(-100%);/*左に隠しておく*/
}
/*中身*/
#nav-menu .content{
  overflow: auto;
  width: 95%;
  height: 95%;
  margin: 2.5%;
}

#nav-menu .content img{
  width:100px
}

#nav-menu .content ul li {
  list-style: none;
  margin-bottom: 38px;
}
/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}
#nav-input:checked ~ #nav-menu {
  transform: translateX(0%);/*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}
#nav-input:checked ~ #nav-menu .nav-button #nav-open span:before{
  top: 0;
  transform: rotateZ(45deg) scale(4);
}
#nav-input:checked ~ #nav-menu .nav-button #nav-open span{
  transform: scale(0.25) rotateY(360deg);
}
#nav-input:checked ~ #nav-menu .nav-button #nav-open span:after{
  top: -3px;
  transform: rotateZ(-45deg) scale(4);
}
#nav-input:checked ~ #nav-menu .nav-button:after{
  content: "close";
}


  /* header */
  header {
    padding-top: 50px;
  }

  .logo {
    display: flex;
    flex-direction: column;
  }

  .rogo1 {
    width: 30%;
    margin: 0 auto;
  }

  .rogo2 {
    width: 40%;
    margin: 0 auto;
  }

  /* main */
  main {
    margin: 0;
    max-width: 100%;
  }

  /* hero */

  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    margin: 0 auto;
  }

  .hero ul {
    list-style: none;
    display: flex;
    justify-self: center;
    margin: 0;
    padding:120px 0;
    text-align: center;
    gap: 50px;
  }

  .hero ul i {
    font-size: 25px;
  }

  .hero p {
    margin: 0 auto;
    line-height: 30px;
  }
  .hero p + p{
    padding-top: 30px;
  }

  .hero img{
      width:10px;
      width:60%;
      padding: 0;

  }

  /* intro */
  .intro {
    margin: 0 auto;
    width:90%;
  }
  
  /* 全intro共通 */
  .intro_title {
    width: 60%;
  }

  .intro p {
    width: 338px;
    font-size: 13px;
    margin: 0;
  }
 
  .intro .tb_none {
    display: none;
  }

  .intro_title_mb {
    display: none;
  }

  .intro_title_pc {
    display: block;
    margin: 0 auto;
    width: 60%;
    padding-top: 120px;
  }

  /* intro1 */
  .intro1 {
    display: flex;
    height: 370px;
    justify-content: center;
    padding-top: 20px;
  }
  
  .intro p {
    width: 338px;
    font-size: 13px;
    margin: 0;
  }
  .intro1_img {
    display: flex;
    width: 276px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #tubame1 {
    display: block;
    width: 180px;
    margin: 0 ;
    padding: 0 80px 0 0;
  }

  #tubame2 {
    display: block;
    width: 100px;
    margin: 0;
    padding: 0 0 0 80px;
  }

   /* intro2 */
  .intro2 {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    padding-top: 30px;
  }

  .intro2 p {
    width: 338px;
    text-align: left;
    font-size: 13px;
    margin: 0;
  }

  .intro2_img {
    display: flex;
    width: 270px;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
  }
  
  #light {
    align-self: flex-end;
    display: block;
    width: 140px;
    transform: rotate(10deg);
  }

  #honn {
    align-self: flex-start;
    width: 160px;
    margin: 0 ;
    padding: 0 0 0 30px;
    transform: rotate(-10deg);
  }

  #cup {
    align-self: flex-end;
    width: 120px;
    margin: 0 ;
    padding: 0;
    transform: rotate(10deg);
  }

  /* intro3 */
  .intro3 {
    display: flex;
    height: 400px;
    justify-content: center;
    padding-top: 30px;
  }

  .intro3_img {
    display: flex;
    width: 276px;
    justify-content: center;
    align-items: center;
  }

  #tyou2 {
    align-self: flex-start;
    width:60px;
    margin: 0;
    padding-top: 90px;
  }

  #tyou {
    display: block;
    align-self: center;
    width:65px;
    margin: 0;
    padding-top: 20px;
  }

  #himawari {
    width:150px;
    margin: 0;
    padding: 150px 0 150px;
  }


  /* ありのイラスト pc限定*/
  .ari {
    display: grid;
    grid-template-columns: 40px 40px 40px 40px;
    gap: 80px;
    justify-content: center;
    margin: 0;
    padding: 200px 0 100px;
  }

  #ari1 {
    width: 35px;
    transform: rotate(-70deg);
  }

  #ari2 {
    width: 29px;
    transform: rotate(-140deg);
  }

  #ari3 {
    width: 32px;
    transform: rotate(-90deg);
  }
  
  #ari4 {
    width: 30px;
    transform: rotate(-120deg);
  }

  /* sns */
  .sns {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 0 0 0 ;
    margin: 0 ;
  }

  .sns ul {
    list-style: none;
    display: flex;
    justify-self: center;
    margin: 0 ;
    padding:0 0 0;
    text-align: center;
    gap: 100px;
  }

  .sns ul i {
    font-size: 40px;
    margin: 0;
  }

  .sns p {
    margin: 0;
    font-size: 15px;
  }

  ul.line{
    list-style: none;
    display: flex;
    justify-self: center;
    margin: 0 ;
    padding:30px 0 0 50px;
    text-align: center;
    gap: 70px;
  }

  #line_button {
    height: 30px;
    text-align: center;
    padding: 50px 0 30px;
  }

  #line_qr {
    display: block;
    width: 80px;
    padding-left: 30px;
  }

  #line_contents {
    display: block;
    font-size: 10px;
    padding: 10px 0 80px;
    line-height: 1.2;
  }

  /* online_shop */
  .online_shop p {
    font-size: 18px;
    line-height: 24px;
  }

  .underline {
    text-decoration: underline;
  }

  /* kutu */
  .kutu {
    margin: 0 auto;
    width: 400px;
    padding-top: 50px;
  }

  /* access */

  .access p {
    font-size: 17px;
    margin: 0 auto 80px;
    text-align: center;
    padding-top: 100px;
  }

  .access .map {
    margin: 0;
    text-align: center;
    margin-bottom: 20px;
  }

  /* 石とか */
  #hane {
    width:100px;
    margin: 0 auto;
    padding: 100px 0 100px;
  }

  #ishi {
    width:100px;
    margin: 0 auto;
    padding: 100px 30px 100px;
  }

  #omamori {
    width:100px;
    margin: 0 auto;
    padding: 100px 0 100px;
  }

  /* footer */

  footer {
    background: #dc6b9a;
    width: 100%;
    padding: 16px 0;
    color: #eee;
    text-align: center;
  }
  }





  /* デザインC(PC) */
@media screen and (min-width: 1024px) {
   /* common */
html {
  margin: 0;
  background-color: #F4ECDC;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 400;
  font-style: normal;
}
a {
  text-decoration: none;
  color: inherit;
  transition: opacity .2s;
}

a:hover {
  opacity: .5;
}

body {
  margin: 0;
  text-align: center;
}



/* nav */

#nav-drawer {
  position: relative;
}
.nav-unshown{
  display: none;
}
.nav-button{
  position: absolute;
  top: 20px;
  right: -60px;
  width: 50px;
  height: 50px;
  background: #c486b9;/*ボックス背景色*/
  color:#fff;/*文字色*/
  text-align: center;
  border-radius: 42% 58% 30% 70% / 65% 64% 36% 35% ;
  box-shadow:1.4px 1.9px 0.7px 0.7px rgba(0, 0, 0, 0.1); 
  /* background-image: linear-gradient(to top, #9795f0 0%, #fbc8d4 100%); */
}
.nav-button:after{
  position: relative;
  bottom: 45px;/*テキスト下からの位置*/
  z-index: 1;
  font-size: 12px;
  content: "open";
}
#nav-open{
  position: relative;
  margin: 0 auto;
  width:50px;/*アイコンサイズ*/
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: relative;
  height: 3px;/*線の太さ*/
  width: 25px;/*長さ*/
  border-radius: 3px;
  background: #fff;/*アイコン色*/
  display: block;
  content: '';
  transition: all 0.5s ease-in-out;/*アニメーションの速さ*/
}
#nav-open span:before{
  top: -10px;
}
#nav-open span:after{
  top: 7px;
}
/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}
/*メニューフィールド*/
#nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;/*最前面に*/
  width: 80%;/*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 330px;/*最大幅（調整してください）*/
  height: 100%;
  background: #E0D5E6;/*背景色*/
  transition: .3s ease-in-out;/*滑らかに表示*/
  transform: translateX(-100%);/*左に隠しておく*/
}
/*中身*/
#nav-menu .content{
  overflow: auto;
  width: 95%;
  height: 95%;
  margin: 2.5%;
}

#nav-menu .content img{
  width:100px
}

#nav-menu .content ul li {
  list-style: none;
  margin-bottom: 38px;
}
/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}
#nav-input:checked ~ #nav-menu {
  transform: translateX(0%);/*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}
#nav-input:checked ~ #nav-menu .nav-button #nav-open span:before{
  top: 0;
  transform: rotateZ(45deg) scale(4);
}
#nav-input:checked ~ #nav-menu .nav-button #nav-open span{
  transform: scale(0.25) rotateY(360deg);
}
#nav-input:checked ~ #nav-menu .nav-button #nav-open span:after{
  top: -3px;
  transform: rotateZ(-45deg) scale(4);
}
#nav-input:checked ~ #nav-menu .nav-button:after{
  content: "close";
}


  /* header */
  header {
    padding-top: 50px;
  }

  .logo {
    display: flex;
    flex-direction: column;
  }

  .rogo1 {
    width: 180px;
    margin: 0 auto;
  }

  .rogo2 {
    width: 250px;
    margin: 0 auto;
  }

  /* main */
  main {
    margin: 0;
    max-width: 100%;
  }

  /* hero */

  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    margin: 0 auto;
  }

  .hero ul {
    list-style: none;
    display: flex;
    justify-self: center;
    margin: 0;
    padding:120px 0;
    text-align: center;
    gap: 50px;
  }

  .hero ul i {
    font-size: 25px;
  }

  .hero p {
    margin: 0 auto;
    line-height: 30px;
  }
  .hero p + p{
    padding-top: 30px;
  }

  .hero img{
      width:10px;
      width:510px;
      padding: 0;

  }

  /* intro 部分全体 */
  .intro {
    margin: 0 auto;
    width:90%;
  }
  
  /* 全intro1～3共通 */
  .intro_title {
    width: 60%;
  }

  .intro p {
    width: 555px;
    font-size: 13px;
    margin: 0;
  }
 
  .intro .tb_none {
    display: block;
  }

  .intro .pc_none {
    display: none;
  }

  .intro_title_mb {
    display: none;
  }

  .touten {
    display: inline;
  }

  .intro_title_pc {
    display: block;
    margin: 0 auto;
    width: 45%;
    padding-top: 120px;
  }

  /* intro1 */
  .intro1 {
    display: flex;
    height: 370px;
    justify-content: center;
    max-width: 921px;
    margin-left: auto;
    margin-right: auto;
  }

  .intro1_img {
    display: flex;
    width: 368px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #tubame1 {
    display: block;
    width: 180px;
    margin: 0 ;
    padding: 0 80px 0 0;
  }

  #tubame2 {
    display: block;
    width: 100px;
    margin: 0;
    padding: 0 0 0 80px;
  }

   /* intro2 */
  .intro2 {
    display: flex;
    height: 450px;
    justify-content: center;
    width: 80%;
    max-width: 970px;
    margin-left: auto;
    margin-right: auto;
  }

  .intro2_img {
    display: flex;
    width: 368px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .intro2 p {
    width: 560px;
    font-size: 13px;
  }

  
  #light {
    align-self: flex-end;
    display: block;
    width: 140px;
    transform: rotate(10deg);
  }

  #honn {
    align-self: flex-start;
    width: 180px;
    margin: 0 ;
    padding: 0 0 0 30px;
    transform: rotate(-10deg);
  }

  #cup {
    align-self: flex-end;
    width: 120px;
    margin: 0 ;
    padding: 0;
    transform: rotate(10deg);
  }

  /* intro3 */
  .intro3 {
    display: flex;
    height: 300px;
    justify-content: center;
    padding-top: 30px;
  }

  .intro3_img {
    display: flex;
    width: 368px;
    justify-content: center;
    align-items: center;
  }

  #tyou2 {
    align-self: flex-start;
    width:70px;
    margin: 0;
    padding-top: 65px;
  }

  #tyou {
    display: block;
    align-self: center;
    width:70px;
    margin: 0;
    /* padding-top: 65px; */
  }

  #himawari {
    width:150px;
    margin: 0;
    padding-top: 150px;
  }


  /* ありのイラスト pc限定*/
  .ari {
    display: grid;
    grid-template-columns: 40px 40px 40px 40px;
    gap: 80px;
    justify-content: center;
    margin: 0;
    padding: 200px 0 100px;
  }

  #ari1 {
    width: 35px;
    transform: rotate(-70deg);
  }

  #ari2 {
    width: 29px;
    transform: rotate(-140deg);
  }

  #ari3 {
    width: 32px;
    transform: rotate(-90deg);
  }
  
  #ari4 {
    width: 30px;
    transform: rotate(-120deg);
  }

  /* sns */
  .sns {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 0 0 0 ;
    margin: 0 ;
  }

  .sns ul {
    list-style: none;
    display: flex;
    justify-self: center;
    margin: 0 ;
    padding:0 0 0;
    text-align: center;
    gap: 100px;
  }

  .sns ul i {
    font-size: 40px;
    margin: 0;
  }

  .sns p {
    margin: 0;
    font-size: 15px;
  }

  ul.line{
    list-style: none;
    display: flex;
    justify-self: center;
    margin: 0 ;
    padding:30px 0 0 50px;
    text-align: center;
    gap: 70px;
  }

  #line_button {
    height: 30px;
    text-align: center;
    padding: 50px 0 30px;
  }

  #line_qr {
    display: block;
    width: 80px;
    padding-left: 30px;
  }

  #line_contents {
    display: block;
    font-size: 10px;
    padding: 10px 0 80px;
    line-height: 1.2;
  }

  /* online_shop */
  .online_shop p {
    font-size: 16px;
  }

  .underline {
    text-decoration: underline;
  }

  /* kutu */
  .kutu {
    margin: 0 auto;
    width: 400px;
    padding-top: 50px;
  }

  /* access */

  .access p {
    font-size: 16px;
    margin: 0 auto 80px;
    text-align: center;
    padding-top: 100px;
  }

  .access .map {
    margin: 0;
    text-align: center;
    margin-bottom: 20px;
  }

  /* 石とか */
  #hane {
    width:100px;
    margin: 0 auto;
    padding: 100px 0 100px;
  }

  #ishi {
    width:100px;
    margin: 0 auto;
    padding: 100px 30px 100px;
  }

  #omamori {
    width:100px;
    margin: 0 auto;
    padding: 100px 0 100px;
  }

  /* footer */

  footer {
    background: #dc6b9a;
    width: 100%;
    padding: 16px 0;
    color: #eee;
    text-align: center;
  } 
  }
