@charset "UTF-8";
/* CSS Document */
html{ font-size: 62.5%; /* 10px */ }
body{
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;

	text-align: center;
	font-size: 1.4rem;
	line-height: 1.6;
	min-width: 320px;
	color: #000;
    margin: 0;

    background-color: rgb(237, 237, 237);

    /* background: #f77ceb;
    background: linear-gradient(11deg,rgba(247, 124, 235, 1) 0%, rgba(83, 219, 237, 1) 100%); */
    
    
}

/* body:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background: url(../img/bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
} */

#wrapper {
  overflow: hidden;
}


.sp{ display: block; }
.pc{ display: none; }


h1,h2,h3,h4,h5,h6{
	font-size: 100%;
	font-weight: normal;
	padding: 0; margin: 0;
}
ul,li,ol{
	list-style: none outside none;
	margin: 0;
	padding: 0;
}
em{ font-style: normal; }
dl{ margin: 0; padding: 0; }
p{ margin: 0; padding: 0; }
img{ max-width: 100%; vertical-align: top; }

a{ color: #fff; text-decoration: none; }
/*a:visited{ color: #4900c1; text-decoration: none; }*/
a:hover, a:active, a:focus{ color: #ff0096; text-decoration: none; }
a:hover img, a:active img, a:focus img{ opacity: 0.8; filter: alpha(opacity=80); }


div#wrap{}
div#ctv_tab{}

div#container{
	width: 100%;
/*	max-width: 960px;*/
	margin: 0 auto;
	padding: 0;
}
.contents{
    padding-top: 20px;
/*    background: #A4ECFE;*/
}

header{
    position: fixed;
	width: 100%;
	margin: 0 auto;
	text-align: left;
        z-index: 9997;
}

/*フッター*/
footer{

  background:#000;;
  padding:1em 0 2em 0;

  }
footer div{
  }



.contact_btn{
    
}


#pageTopBar {
display: block;
background: #56acea;
}

#pageTopBar a {
display: block;
width: 100%;
padding: 2rem 0;
color: #fff;
font-family: 'Poppins', sans-serif;
font-size: 2.0rem;
font-weight: 600;
line-height: 1;
letter-spacing: 0.5rem;
}



#main{
  background-image: url(../img/bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  border-bottom: solid 1px #000;
}











h4{
    font-size: 2vw;
    font-weight: bold;
    color: #ff61b4;
    border-bottom:1px solid #ff61b4;
    margin-bottom: 10px;
    text-align: center;
}



.labels{
  color: #fff;
  margin-top: 5%;
  
}

.labels a{
  border-bottom: #fff solid 1px;
}



        /* -------------------------------------------------------------------------------------------------------------------
↓headerメニュー                                                                                                          
------------------------------------------------------------------------------------------------------------------- */
/*========= ナビゲーションのためのCSS ===============*/



#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 996;
    /*ナビのスタート位置と形状*/
	top:-120%;
    left:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#000000cf;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 996; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 996;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    width: 100%;
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
    border: solid 1px #FFFFFF;
    border-left: none;
    border-right: none;
}


#g-nav li a{
	color: #FFFFFF;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
    font-size: 3em;
}
#g-nav li a:hover{
    background-color: #FFFFFF;
    color: #000000;
}



/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 997;/*ボタンを最前面に*/
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
    background: -moz-linear-gradient(left, #ff61b4 0%,#4effea 100%);
  background: -webkit-linear-gradient(left, #ff61b4 0%,#4effea 100%);
  background: linear-gradient(to right, #ff61b4 0%,#4effea 100%);
    
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #FFFFFF;
  	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 span:nth-of-type(1) {
    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){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}






        /* -------------------------------------------------------------------------------------------------------------------
↓注意リスト                                                                                                           
------------------------------------------------------------------------------------------------------------------- */
.defaultlist
,.defaultlist li{
	padding:0px 20px;
	margin:0px;
}
.defaultlist li{
	list-style-type:none !important;
	list-style-image:none !important;
	margin: 5px 0px 30px 0px !important;
}
.list li{
	position:relative;
	padding-left:20px;
        line-height: 30px;
    text-align: left;
    line-height: 3rem;
}
.list li:after, .list li:before{
	content:''; 
	display:block; 
	position:absolute; 
	top:10px; 
	left:8px; 
	height:11px; 
	width:4px; 
	background:#ff62b5; 
	border-radius:10px;
	transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
	-o-transform:rotate(45deg);
}
.list li:before{
	top:13px; 
	left:3px;
	height:8px; 
	transform:rotate(-45deg);
	-webkit-transform:rotate(-45deg);
	-o-transform:rotate(-45deg);
}


        /* -------------------------------------------------------------------------------------------------------------------
↓注文の流れ                                                                                                           
------------------------------------------------------------------------------------------------------------------- */
ul {
  padding: 0;
}
li {
  list-style-type: none;
}
dd {
  margin-left: 0;
    text-align: left;
}

.flow > li {
  position: relative;
    color: #000;
}
.flow > li:not(:last-child) {
  margin-bottom: 40px;
}
.flow > li:not(:first-child)::before {
  content: "";
  height: 60px;
  display: block;
  border-left: 4px dotted #9d9d9d;
  position: absolute;
  top: -40px;
  left: -webkit-calc(10% + 30px - 2px);
  left: calc(7% + 30px - 2px);
  z-index: 10;
}
.flow > li dl {
/*  width: 100%;*/
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid #ff61b4;
  border-radius: 10px;
  position: relative;
    background-color: #fff;
}
.flow > li:not(:last-child) dl::before,
.flow > li:not(:last-child) dl::after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.flow > li:not(:last-child) dl::before {
  border-width: 22px;
  border-top-color: #ff61b4;
}
.flow > li:not(:last-child) dl::after {
  border-width: 20px;
  border-top-color: #fff;
}
.flow > li dl dt {
  font-size: 20px;
  font-weight: 600;
  color: #ff61b4;
  -ms-flex-preferred-size: 20%;
  /* flex-basis: 20%; */
  margin-right: 2vw;
  text-align: center;
}
.flow > li dl dt .icon {
  font-size: 12px;
  color: #fff;
  background: #ff61b4;
  background: -moz-linear-gradient(left, #ff61b4 0%,#4effea 100%);
  background: -webkit-linear-gradient(left, #ff61b4 0%,#4effea 100%);
  background: linear-gradient(to right, #ff61b4 0%,#4effea 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b90db', endColorstr='#66d5e9',GradientType=1 );
  padding: 5px 10px;
  margin-bottom: 10px;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 100;
}

.flow > li dl dd{
  font-size: 20px;
}





        /* -------------------------------------------------------------------------------------------------------------------
↓price 料金表                                                                                                           
------------------------------------------------------------------------------------------------------------------- */
.price-table{
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

.price-table tr {
  background-color: #fff3f2;
  padding: .35em;
  border-bottom: 2px solid #fff;
}
.price-table th,
.price-table td {
  padding: 1em 10px 1em 1em;
  border-right: 2px solid #fff;
}
.price-table th {
/*  font-size: .85em;*/
}
.price-table thead tr{
  background-color: #fb9b48;
  color:#fff;
}
.price-table tbody th {
    background: #ff61b4;
    color: #fff;
}
.txt{
   text-align: left;
/*   font-size: .85em;*/
}
.price{
  text-align: right;
  color: #fb9b48;
  font-weight: bold;
}
.non{
  background:#fff
}
@media screen and (max-width: 600px) {
  .price-table {
    border: 0;
    width:100%
  }
  .price-table th{
    background-color: #fb9b48;
    display: block;
    border-right: none;
  }
  .price-table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
/*    overflow: hidden;*/
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .price-table tr {
    display: block;
    margin-bottom: .625em;
  }
  .price-table td {
    border-bottom: 1px solid #bbb;
    display: block;
/*    font-size: .8em;*/
/*    text-align: right;*/
    position: relative;
    padding: .625em .625em .625em 4em;
    border-right: none;
  }
  
  .price-table td::before {
    content: attr(data-label);
    font-weight: bold;
    position: absolute;
    left: 10px;
    color: #fb9b48;
  }
  .price-table td:last-child {
    border-bottom: 0;
  }
 .price-table tbody th {
    color: #fff;
}
}

        /* -------------------------------------------------------------------------------------------------------------------
↓viewmoreボタン                                                                                                          
------------------------------------------------------------------------------------------------------------------- */
.viewmore {
  color: #fff;
  display: block;
  border-radius: 50px;
  text-align: center;
  position: relative;
  z-index: 2;
  will-change: transform, filter;
  transform-style: preserve-3d;
  transition: all .3s ease-out;
        margin: 0 auto;
}
.viewmore:hover {
  transform: scale(1.03);
}
.viewmore::before {
  content: "";
  height: 40px;
  display: inline-block;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 5px;
  z-index: -1;
  border-radius: 50px;
  opacity: 0;
  transform-style: preserve-3d;
  transition: all .3s ease-out;
}
.viewmore:hover::before {
  bottom: -10px;
  opacity: .8;
  filter: blur(15px);
}

.gradient,
.gradient::before {
  background: -moz-linear-gradient(left, #ff61b4 0%, #4effea 100%);
  background: -webkit-linear-gradient(left, #ff61b4 0%, #4effea 100%);
  background: linear-gradient(to right, #ff61b4 0%, #4effea 100%);
}



.titl{
    color: #000000;
    font-family: 'Anton', sans-serif;
    text-align: center;
}



.bn3637 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  backface-visibility: hidden;
  border: 0.3rem solid transparent;
  border-radius: 3rem;
}

.bn36 {
  border-color: #fff;
  transition: transform 0.2s cubic-bezier(0.235, 0, 0.05, 0.95);
}

.bn36:hover {
  transform: perspective(1px) scale3d(1.044, 1.044, 1) translateZ(0) !important;
}




/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after, 
.modaal-close:before{
	background:#ccc;	
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
	background:#666;
}





      /* フェードイン =================================== */
 .fadein {
  opacity: 0;
  transform : translate(0, 30px);
  transition : all 1500ms;
}

.fadein.scrollin{
  opacity: 1;
  transform: translate(0, 0);
}


footer .titl{
    color: #fff;
    text-align: center;
}

.copy{
    color: #fff;
}



      /* 動画 =================================== */


      .movie {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.movie img{
  width: 100%;
}



video{
  width: 100%;
  display: block;
}

/* .movie::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0,0,0,0.5);
	background-image: radial-gradient(#111 30%, transparent 31%), radial-gradient(#111 30%, transparent 31%);
	background-size: 4px 4px;
	background-position: 0 0, 2px 2px;
} */

h1 img{
  width: 100%;
  /* position: absolute;
  margin-top: -105%;
  right: 0%; */
}


#tokushoho{
  width: 95%;
  margin: 0 auto;
      padding: 50px 0;
}

table{
  border-collapse: collapse;
  width: 100%;
}
.tb01 th,
.tb01 td{
  padding: 10px;
  border: solid 1px #ccc;
  text-align:left;
  box-sizing:border-box;
  background-color: #fff;
}
.tb01 th {
  background: #e4e4e4;
    color: #000;
  
}

  .tb01 {
    width: 100%;
  }
  table.tb01 th,
  table.tb01 td {
    display: block;
    width: 100%;
    border-bottom:none;
  }
  .tb01 tr:last-child{
    border-bottom: solid 1px #ccc;
  }


.blog{
  margin: 0 auto;
  color: #fff;
  background-color: #000;
  font-weight: bold;
  padding: 0 0 5px 0;
  margin-top: 10px;
  width: 80%;
  border-radius: 50px;
  text-align: center;
}

.sticker img{
  width: 5vw!important;
  margin-top: 3%;
  margin-right: 2%;
}


      /* 最新記事 =================================== */

.news_list {
  margin: 0 5%;
  color: #000;
}

.news_list_item {
  padding: 25px 0;
  border-bottom: 1px solid #E6E6E6;
}

.news_list_item:first-child {
  border-top: 1px solid #E6E6E6;
}
.news_list_item a {
 position: relative;
 display: flex;
 padding-right: 30px;
 color: #000;
}

.news_list_date {
  display: flex;
  margin-right: 15px;
  align-items: center;
}

.news_item {
  background: #ff88d7;
  border-radius: 14px;
  width: 6em;
  /* 親要素の文字サイズを基準 */
  text-align: center;
  margin-left: 20px;
  color: #fff;
}

.news_note {
  background: #00d5f4;
  border-radius: 14px;
  width: 6em;
  /* 親要素の文字サイズを基準 */
  text-align: center;
  margin-left: 20px;
  color: #fff;
}

.arrow {
  width: 25px;
  height: 1px;
  background: #000000;
  position: absolute;
  top: 50%;
  right: 0;
}

.arrow::after {
  content: "";
  display: block;
  width: 6px;
  height: 1px;
  background: #000000;
  transform: rotate(45deg);
  position: absolute;
  right: 0px;
  bottom: 2px;
}

.news_note, .news_item{
  text-align: center!important;
}

.news_list_item p{
  text-align: left;
}



@media screen and (max-width: 1024px) {
    .news_list_item a {
        display: block;
    }
}

@media screen and (max-width: 769px) {
    .news_list_item a  {
        font-size: 14px;
    }


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

    .news_list_item a {
        padding-right: 0;
    }
}


      /* スクロールテキスト =================================== */
#scroll_text{
  border-top: solid 1px #000;
  border-bottom: solid 1px #000;
  width: 100%;
  background-color: #4fffea;
}

/* ulタグ */
.scroll-list {
  display: flex;
  list-style: none;
  padding-inline: 0;
  margin-inline: 0;
  gap: 0;
  /* overflow: hidden; */

  /* 幅を全画面に広げる */
  position: relative;
  left: calc(50% - 50vw);
  width: 100vw;
}

/* liタグ */
.scroll-list li {
  color: #262626;
  font-size: 3em;
  font-weight: bold;
  white-space: nowrap;
  padding: 0 1em 0 0;
  margin: 0;
  animation: marquee-left 16s linear infinite;
}

/* PCの時のフォントサイズ */
@media (min-width: 600px) {
  .scroll-list li {
    font-size: 8vw;
  }

  .icon{
    width: 8vw;
    margin-top: 4%;
  }
}

/* アニメーション */
@keyframes marquee-left {
  100% {
    transform: translateX(-100%);
  }

  
}







/* -------------------------------------------------------------------------------------------------------------------
Tablet&SP                                                                                                        
------------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width: 959px) {
	.pc { 
		display: none;
	}
  .sp {
	  display: block; 
	}
    
  h4{
    font-size: 6vw;
    font-weight: bold;
    color: #ff61b4;
    border-bottom:1px solid #ff61b4;
    margin-bottom: 10px;
    text-align: center;
}

		#wrap {
	max-width: 100%; 
	margin-left: auto; 
	margin-right: auto; 
}
    
        .fas img{
            width: 80px;
    margin-top: -45px;
            
    }
    
            .titl{
                
        font-size: 300%;
        
    padding: 5% 5% 0 5%;
    }
    
        header{
  width:100%;
  color:#fff;
  padding: 12px;
    margin: 0 auto;
        
}
    
h1{
  width: 80%;
  margin: 0 auto;
  padding: 0 0 10% 0%;
  margin-top: -10%;
  position: relative;
}
    
        .footer_info{
        margin-bottom: 50px;
    }
    
    #content{
      /* background-color: #ffffff; */
    }
    
        
                /* -------------------------------------------------------------------------------------------------------------------
↓概要                                                                                                           
------------------------------------------------------------------------------------------------------------------- */
    #about{
        width: 100%;
        margin: 0 auto;
        border-bottom: solid 1px #000;
        padding-bottom: 5%;
    }

    .icon{
      width: 8vw;
      margin-top: 4%;
    }
    
    .about__info{
        width: 95%;
               margin: 0 auto;
        text-align: center;
    }
    
    .profile__img{
       width: 80%;
    margin: 0 auto;
    }
    
    .about__p{
         width: 90%;
        text-align: left;
        margin: 0 auto;
    }
    
    .about__p span{
        font-weight: bold;
        font-size: 1.5em;
    }
    
    
        .profile__info{
               margin: 0 auto;
        padding: 10px 0;
        /* display: flex;
        align-items: center;
            justify-content: space-around; */
    }
    
    .profile__img{
       width: 40%;
       border: 3px solid #000;
       /* box-shadow: 5px 5px #000; */
       border-radius: 50%;
       overflow: hidden;
    }
    
    .profile__p{
        text-align: left;
            width: 90%;
            /* font-size: 4vw; */
            margin: 0 auto;
    }
    
        .profile__p span{
        font-weight: bold;
        font-size: 1.5em;
    }

    

    

            /* -------------------------------------------------------------------------------------------------------------------
↓ギャラリー                                                                                                           
------------------------------------------------------------------------------------------------------------------- */


#gallery{
  width: 100%;
  margin: 0 auto;
  border-bottom: solid 1px #000;


}

    .gallery__info{
        /* width: 95%; */
        margin: 0 auto;
    }
    
    .gallery__list{
      border-top: solid 1px #000;
     
    }


    .gallery__list ul{
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      border-bottom: solid 1px #000;
  
  }
  
  
  .gallery_box{
    width: calc(99% / 3);
    border-right: solid 1px #000;
    border-bottom: solid 1px #000;
    padding: 10px 0;
  }
  
  .gallery_box:nth-of-type(3n){
    border-right: none;
  }
  
  
  
  .gallery_box img{
    width: 80%;
  }
  
  .gallery_box p{
    font-size: 1.5vw;
          margin: 0 auto;
          margin-top: 10px;
          padding: 5px 0;
          width: 80%;
          background-color: #ff61b4;
          color: #fff;
  }
  
  


.viewmore{
    color: #fff;
    padding: 10px;
    margin: 0 auto;
    width: 200px;
    text-align:center;
    margin-top: 10px;
        margin-bottom: 10px;
}
.viewmore:hover{
    cursor: pointer;
}
    
    
    
    .card-1 {
  margin: 0 auto;
}

.content-img {
  /* padding: 0.2em 0; */
  text-align: center;
  border: solid 1px #000;
}

.content-1 {
  position: relative;
  padding: 0 0.3em;
  margin: 0;
  font-size: 1em;
    text-align: left;
}

    
    
            /* -------------------------------------------------------------------------------------------------------------------
↓price 料金表                                                                                                           
------------------------------------------------------------------------------------------------------------------- */
        #price{
        width: 100%;
            padding-top: 30px;
    }
    

    .price__list{
       width: 100%;
            text-align: left;
    }
    
    .price__list dd{
        width: 90%;
        margin: 0 auto;
    }
    
        .price__list ul{
            margin-bottom: 5%;
    }
    
    .price__list li{
            padding: 10px 0;
    border-bottom: 1px dashed #d3d3d3;
    }
    
    .price__list li:last-child{
        border-bottom: none;
    }
    
                .price__list dd li .pricetitl{
        font-size: 1.2em;
                 font-weight: bold;
    }
    
    .price__list dd li .priceTxt{
        float: right;
                font-size: 1.2em;
                 font-weight: bold;
    }
    
    .price_info{
        width: 95%;
        margin: 0 auto;
    }



    
            /* -------------------------------------------------------------------------------------------------------------------
↓order                                                                                                           
------------------------------------------------------------------------------------------------------------------- */
    #order{
        width: 100%;
        margin: 0 auto;
        /* padding-bottom: 30px; */
    }
    
    
      .order__info{
        width: 95%;
        margin: 0 auto;
    }


    .flow > li dl dt .icon {
      font-size: 12px;
      color: #fff;
      background: #ff61b4;
      background: -moz-linear-gradient(left, #ff61b4 0%,#4effea 100%);
      background: -webkit-linear-gradient(left, #ff61b4 0%,#4effea 100%);
      background: linear-gradient(to right, #ff61b4 0%,#4effea 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b90db', endColorstr='#66d5e9',GradientType=1 );
      padding: 5px 20px;
      margin-bottom: 10px;
      display: block;
      border-radius: 20px;
      position: relative;
      z-index: 100;
    }
    
    .flow > li:not(:first-child)::before {
      content: "";
      height: 60px;
      display: block;
      border-left: 4px dotted #9d9d9d;
      position: absolute;
      top: -40px;
      left: -webkit-calc(10% + 30px - 2px);
      left: calc(5% + 30px - 2px);
      z-index: 10;
    }

        .flow{
        margin-bottom: 50px;
    }

    .flow > li dl dt {
  font-size: 3vw;
  font-weight: 600;
  color: #ff61b4;
  -ms-flex-preferred-size: 20%;
  /* flex-basis: 20%; */
  margin-right: 2vw;
  text-align: center;
}

.flow > li dl dd{
  font-size: 3vw;
}
    
        .flow > li dl {
width: 94%;
  padding: 20px 10px;

}
    
    
                        /* -------------------------------------------------------------------------------------------------------------------
↓sns                                                                                                           
------------------------------------------------------------------------------------------------------------------- */
    
        .sns__titl{
        width: 50%;
        transform: rotate(-12deg);
    }
    

        #tiktok{
             /* padding: 20px 0; */
    }
    
    #tiktok_container{
        width: 95%;
        margin: 0 auto;
    }

    .sns__icon{
      display: flex;
      width: 70%;
      margin: 0 auto;
      justify-content: space-evenly;
      margin-bottom: 5%;
        margin-top: 1%;
    }

    .sns__icon a{
      width: 30%;
    }


    
                /* -------------------------------------------------------------------------------------------------------------------
↓お知らせ                                                                                                        
------------------------------------------------------------------------------------------------------------------- */
#news{
  border-bottom: solid 1px #000;
  background-color: #fff;
  padding-bottom: 2%;
}

.news_info{
  width: 100%;
  margin: 0 auto;
}

.news_list_item{
  font-size: 1vw;
}


                        /* -------------------------------------------------------------------------------------------------------------------
↓アーカイブ                                                                                                        
------------------------------------------------------------------------------------------------------------------- */
#header__logo{
  width: 100%;
  text-align: left;
}
#header__logo img{
  width: 20%;
  margin: 10px;
  
}

.archives__info{
  width: 90%;
margin: 0 auto;

}

.archives__titl{
  text-align: left;
}

.archives__titl span{
font-weight: bold;
font-size: 4.5vw!important;
background: linear-gradient(transparent 70%, #ffaed9 70%);
}

.archives__img{
  /* display: flex;
  justify-content: space-around;
        align-items: center; */
        margin: 5% 0;
}

.archives__img img{
  width: 100%;
  margin: 10px 0;
}

.archives__h1{
  background-color: #000;
  width: 40%;
  padding: 5px 0;
  color: #fff;
  text-align: center;
  border-radius: 30px;
  font-weight: bold;
  font-size: 2.8vw;
  margin-top: 20px;
}


.archives__info p{
text-align: left;
margin:10px 0 0 0;
font-size: 2.8vw;
}

.archives__info span{
  font-size: 2vw;
}

.archives__info a{
  color: #000;
  border-bottom: solid 1px #000;
}

    

}





/* -------------------------------------------------------------------------------------------------------------------
961px-                                                                                                           
------------------------------------------------------------------------------------------------------------------- */
@media screen and (min-width: 960px) {
	.pc {
		display: block;
	}
  .sp {
	  display: none;
	}
	
  .f-small {
	  font-size: 1.4rem;
	}
	
  .f-middle {
	  font-size: 1.6rem;
	}
    
    body{
         
            /* background-color: #ffdff0; */
    }
    
		#wrap {
	max-width: 100%; 
	margin-left: auto; 
	margin-right: auto; 
}
    
    #content{
               max-width:100%;
        margin: 0 auto;
        /* background-color: #fffffff2; */
        position: relative;
        /* border-left: solid 5px #000;
    border-right: solid 5px #000; */
    }
    
        .titl{
        font-size: 8vw; 
            padding: 0 20px;
    }
    
    
    header{
  width:100%;
  color:#fff;
  text-align: left;
  padding: 12px;
    margin: 0 auto;

}
    
    #header_index{
        position: absolute;
        z-index: 99;
    }
    
    .openbtn{
        top: 30px;
    }
    
    h1{
      width: 50%;
      margin: 0 auto;
      padding: 0 0 5% 0%;
      margin-top: -8%;
      position: relative;
    }
        
    
    .footer_info{
        margin-bottom: 50px;
    }
    
                /* -------------------------------------------------------------------------------------------------------------------
↓概要                                                                                                           
------------------------------------------------------------------------------------------------------------------- */
    #about{
        width: 100%;
        margin: 0 auto;
        border-bottom: solid 1px #000;
        padding-bottom: 2%;
    }
    
        .about__info{
        width: 70%;
        margin: 0 auto;
        text-align: left;
    }
    

    .about__p{
        margin: 0 auto;
            height: auto;
            font-size: 2vw;
          
    }
    

    
    
        .profile__info{
          width: 90%;
               margin: 0 auto;
        padding: 50px 0;
        display: flex;
        align-items: center;
            justify-content: space-around;
    }
    
    .profile__img{
       width: 30%;
       border: 3px solid #000;
       /* box-shadow: 5px 5px #000; */
       border-radius: 50%;
       overflow: hidden;
    }
    
    .profile__p{
        text-align: left;
            width: 50%;
            font-size: 1.5vw;

    }
    
        .profile__p span{
        font-weight: bold;
        font-size: 2.5vw;
    }

    .sticker img{
      width: 2.5vw!important;
      margin-top: 15px;
      margin-right: 2%;
    }
    
    
            /* -------------------------------------------------------------------------------------------------------------------
↓ギャラリー                                                                                                           
------------------------------------------------------------------------------------------------------------------- */
    #gallery{
        width: 100%;
        margin: 0 auto;
        border-bottom: solid 1px #000;
        /* padding-bottom: 2%; */
        /* background-color: #ffdff0; */

    }

    .gallery__info{
      width: 100%;
      margin: 0 auto;

    }
    

    .gallery__list{
      border-top: solid 1px #000;
     
    }

    

    
.gallery__list ul{
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    border-bottom: solid 1px #000;

}


.gallery_box{
  width: calc(99.8% / 3);
  border-right: solid 1px #000;
  border-bottom: solid 1px #000;
  padding: 30px 0;
}

.gallery_box:nth-of-type(3n){
  border-right: none;
}



.gallery_box img{
  width: 60%;
}

.gallery_box p{
  font-size: 1.2vw;
        margin: 0 auto;
        margin-top: 10px;
        padding: 5px 0;
        width: 80%;
        background-color: #ff61b4;
        color: #fff;
}


.viewmore{
    color: #fff;
    padding: 10px;
    margin: 0 auto;
    width: 200px;
    text-align:center;
    margin-top: 10px;
        margin-bottom: 10px;
}
.viewmore:hover{
    cursor: pointer;
}
    
    
    
    .card-1 {
  margin: 0 auto;
}

.content-img {
  /* padding: 0.2em 0; */
  text-align: center;
  border: solid 1px #000;
}

.content-1 {
  position: relative;
  padding: 0.6em 0.3em;
  margin: 0;
  font-size: 1.2em;
    text-align: left;
}
    
.modaal-gallery-item img
{
  height: 50vw;
}

    

                /* -------------------------------------------------------------------------------------------------------------------
↓price 料金表                                                                                                           
------------------------------------------------------------------------------------------------------------------- */
        #price{
          border-bottom: solid 1px #000;
        padding-top: 30px;
        width: 100%;
        padding-bottom: 5%;
    }

    .price__info{
      width: 70%;
      margin: 0 auto;
     
    }
    

    .price__list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
            margin-bottom: 50px;
    }
    
    .price__list dd{
        width: 43%;
            text-align: left;
    }
    
    .price__list li{
            padding: 10px 0;
    border-bottom: 1px dashed #d3d3d3;
    font-size: 1.5vw;
    }
    
    .price__list li:last-child{
        border-bottom: none;
    }
    
            .price__list dd li .pricetitl{

                 font-weight: bold;
    }
    
        .price__list dd li .priceTxt{
        float: right;
            font-weight: bold;
    }

    .defaultlist{
      font-size: 1.3vw;
    }
    


                    /* -------------------------------------------------------------------------------------------------------------------
↓オーダー                                                                                                           
------------------------------------------------------------------------------------------------------------------- */
    .flow{
        margin-bottom: 50px;
    }
    
    
    .flow > li dl {

  padding: 20px 30px;

}
    
    #order{
      width: 100%;
      /* border-bottom: solid 1px #000; */
        /* padding-bottom: 2%; */
    }
    
    .order__info{
        width: 70%;
        margin: 0 auto;
    }

    .order_box{
      border-top: solid 1px #000;
    }
    
                    /* -------------------------------------------------------------------------------------------------------------------
↓sns                                                                                                           
------------------------------------------------------------------------------------------------------------------- */
    

#sns{
  width: 100%;
  margin: 0 auto;
}
    .sns__titl{
        width: 200px;
        transform: rotate(-12deg);
    }
    

    #twitter{
        padding: 20px 0;
    }
    
    #tw_container{
        width: 95%;
        margin: 0 auto;
    }
    
        #tiktok{
          width: 100%;
          margin: 0 auto;
             padding: 20px 0;
    }
    
    #tiktok_container{
        width: 100%;
        margin: 0 auto;
       
    }
    .sns__icon{
      display: flex;
      width: 400px;
      margin: 0 auto;
      justify-content: space-evenly;
      margin-bottom: 2%;
        margin-top: 1%;
    }

    .sns__icon a{
      width: 40%;
    }



                /* -------------------------------------------------------------------------------------------------------------------
↓お知らせ                                                                                                        
------------------------------------------------------------------------------------------------------------------- */
    #news{
      border-bottom: solid 1px #000;
      background-color: #fff;
      padding-bottom: 2%;
    }

    .news_info{
      width: 70%;
      margin: 0 auto;
    }

    .news_list_item{
      font-size: 1.5vw;
    }


                        /* -------------------------------------------------------------------------------------------------------------------
↓アーカイブ                                                                                                        
------------------------------------------------------------------------------------------------------------------- */
#header__logo{
  width: 100%;
  text-align: left;
}
#header__logo img{
  width: 100px;
  margin: 10px;
  
}

.archives__info{
  width: 70%;
margin: 0 auto;

}

.archives__titl{
  text-align: left;
}

.archives__titl span{
font-weight: bold;
font-size: 2.5vw!important;
background: linear-gradient(transparent 70%, #ffaed9 70%);
}

.archives__img{
  display: flex;
  justify-content: space-around;
        align-items: center;
        margin: 5% 0;
}

.archives__img img{
  width: 40%;
}

.archives__h1{
  background-color: #000;
  width: 300px;
  padding: 5px 0;
  color: #fff;
  text-align: center;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.4vw;
  margin-top: 20px;
}


.archives__info p{
text-align: left;
margin:10px 0 30px 0;
font-size: 1.5vw;
}

.archives__info span{
  font-size: 1.2vw;
}

.archives__info a{
  color: #000;
  border-bottom: solid 1px #000;
}

  

}