/*要素のフォントサイズやマージン・パディングをリセットしています*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/*行の高さをフォントサイズと同じにしています*/
body {
    line-height:1;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています*/
/*nav ul {
    list-style:none;
}*/
ol, ul {
    list-style: none;
}

/*引用符の表示が出ないようにしています*/
blockquote, q {
    quotes:none;
}

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています
また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

/*テキストに打ち消し線が付くようにしています*/
del {
    text-decoration: line-through;
}

/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています
また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

/*隣接するセルのボーダーを重ねて表示し、間隔を0に指定しています*/
table {
    border-collapse:collapse;
    border-spacing:0;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
    display:block;
    height:1px;
    border:0;  
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input, select {
    vertical-align:middle;
}

/*画像を縦に並べた時に余白が出ないように*/
img {
    vertical-align: top;
    font-size: 0;
    line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

/* ▼boby */
body{
    font-family: 'Noto Serif JP', serif;
    background-color: #FAF3F1;
    color: #2d221b;
    font-size: 14px;
}

@media (max-media:767px){
  body{
    font-size: 13px;
  }
}

/* ▼header */
.header{
  animation: header-anim 2.5s;
}

@keyframes header-anim{
  from{opacity: 0;}
  to{opacity: 1;}
}
    
@media (max-width: 991px){
  .navi{
    display: none;
  }
}

.navi-box{
 display: flex;
 position: fixed;
 top: 0;
 right: 0;
 z-index: 4;
}

.navi-box li{
background-color: rgba(242,171,145,0.75);
}

.navi-box li:first-of-type{
    border-radius: 0 0 0 50px;
    padding-left: 50px;
}

.navi-box li:last-of-type{
  padding-right: 50px;
}

.navi-box a{
  color: white;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  padding: 25px 25px;
  display: inline-block;
  position: relative;
  align-items: center;
}

.navi-box a span{
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  font-weight: initial;
  margin-top: 5px;
  display: block;
  transition: all 0.5s ease;
}

.navi-box a::after{
  position: absolute;
  content: '';
  bottom: 25px;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: rgba(255,255,255,0.5);
  transform: translateX(-50%);
  transition: all 0.5s;
}

.navi-box a:hover::after{
  width: 80%;
}

.navi-box a:hover span{
  opacity: 0;
}

/* hamburger-wrap
    ============================== */
.hamburger-wrap{
  display: none;
}

@media (max-width: 991px){
  .hamburger-wrap{
    display: block;
  }
}

.hamburger-btn{
  top: 2%;
  right: 2%;
  position: fixed;
  z-index: 5;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  background-color: rgba(242,171,145,0.75);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hamburger-btn span{
  width: 50%;
  height: 1px;
  background-color: white;
  display: inline;
  transition: all 0.8s ease;
}

.btn-line2{
  margin: 0.5em;
}

.btn-line1.active{
  top: 50%;
  transform: rotate(45deg);
}

.btn-line2.active{
  opacity: 0;
  margin: 0;
}

.btn-line3.active{
 top: 50%;
 transform: rotate(-45deg);
}

.hamburger-menu{
  position: fixed;
  z-index: 4;
  top: 0;
  right: 0;
  width: 70%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(242,171,145,0.8);
  transform: translateX(100vw);
  opacity: 0;
  transition: all 0.8s ease-in-out;
}

.hamburger-menu.active{
  transform: translateX(0);
  opacity: 1;
}

.hamburger-menu li{
  width: 100%;
  height: auto;
  padding: 1em;
  text-align: center;
}

.hamburger-menu a{
  text-decoration: none;
  color: white;
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  position: relative;
}

.hamburger-menu a span{
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  font-weight: initial;
  margin-top: 5px;
  display: block;
  transition: all 0.5s ease;
}

.hamburger-menu a::after{
  position: absolute;
  content: '';
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: rgba(255,255,255,0.5);
  transform: translateX(-50%);
  transition: all 0.5s;
}

.hamburger-menu a:hover::after{
  width: 120%;
}

.hamburger-menu a:hover span{
  opacity: 0;
}

@media (max-width:535px){
  .hamburger-menu{
    width: 80%;
  }
}

.hamburger-back{
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3;
  transform: translateX(100vw);
  opacity: 0;
  transition: all 0.8s ease-in-out;
  cursor: pointer;
}

.hamburger-back.active{
  transform: translateX(0);
  opacity: 1;
}

/* ▼index */
.container{
  position: relative;
  width: 100%;
}

/* .fixed-container
    ============================== */
.fixed-container{
  width: 25%;
  height: 100vh;
  position: fixed;
  z-index: 2;
  animation: fixedcontainer-anim 2.5s ease-in-out;
}

@keyframes fixedcontainer-anim{
  from{opacity: 0;}
  to{opacity: 1;}
}

@media (max-width:1135px){
  .fixed-container{
    position: absolute;
  }
}

@media (max-width:1025px){
  .fixed-container{
    width: 40%;
  }
}

@media (max-width:767px){
  .fixed-container{
    width: 100%;
  }
}

.fixed-wrap{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 50px;
  width: 100%;
  height: 100%;
}

@media (max-width:1135px){
  .fixed-wrap{
    display: block;
    padding-top: 20px;
  }
}

@media (max-width:767px){
  .fixed-wrap{
    padding-top: 2%;
  }
}

@media (max-width:1135px){
  .logo-box{
    position: relative;
  }
}

.logo-title{
  font-size: 12px;
  font-weight: bold;
}

@media (max-width:1135px){
  .logo-title{
    font-size: 9px;
    position: absolute;
    top: 0;
    left: 2%;
  }
}

@media (max-width:767px){
  .logo-title{
    font-size: 8px;
    font-weight: initial;
  }
}

.lnk-top{
  display: inline-block;
  max-width: 250px;
  width: 100%;
  height: 200px;
  margin-top: 30px;
  transition: all 0.9s ease;
}

@media (max-width:1135px){
  .lnk-top{
    max-width: 150px;
    height: 130px;
    position: fixed;
    top: 2%;
    left: 2%;
  }
}

@media (max-width:1025px){
  .lnk-top{
    max-width: 150px;
    height: 100px;
    left: 0;
  }
}

@media (max-width:767px){
  .lnk-top{
    max-width: 80px;
    height: 60px;
    left: 2%;
    top: 0;
  }
}

.lnk-top.active{
  transform: translateY(-25%);
}

.logo-image1{
  width: 100%;
  height: 100%;
  background: url(../img/logo_chai-salon1.svg) no-repeat;
  background-size: 100% 100%;
  padding: auto;
}

/* .hidden-box
    ============================== */
.hidden-box{
  text-align: center;
  line-height: 180%;
  margin: 100px auto;
  display: none;
}

.hidden-text{
  position: relative;
  display: inline-block;
  padding: 0 40px;
}

.hidden-text::before{
  content: '';
  position: absolute;
  width: 1px;
  height: 200%;
  left: 0;
  top: -50%;
  background-color: #2d221b;
  border-radius: 3px;
  transform: rotate(-25deg);
}

.hidden-text::after{
  content: '';
  position: absolute;
  width: 1px;
  height: 200%;
  right: 0;
  top: -50%;
  background-color: #2d221b;
  border-radius: 3px;
  transform: rotate(25deg);
}

/* .sprite
    ============================== */
.sprite{
  max-width: 200px;
  width: 100%;
  height: 400px;
  display: inline-block;
  background: url(../img/sprite.png) no-repeat;
  animation: spriteimg-anim1 2.5s steps(4) infinite;
}

@keyframes spriteimg-anim1{
  to{
    background-position: -800px 0;
  }
}

@media (max-width:1135px){
  .sprite{
    max-width: 150px;
    width: 100%;
    height: 300px;
    background-size: 400% 100%;
    animation: spriteimg-anim2 2.5s steps(4) infinite;
    position: absolute;
    left: 20px;
    bottom: 0;
    }
}

@keyframes spriteimg-anim2{
  to{
    background-position: -600px 0;
  }
}

@media (max-width:1025px){
  .sprite{
    display: none;
  }
}

/* .main-container
    ============================== */
.main-container{
  display: flex;
  flex-direction: column;
  padding-left: 25%;
  width: 100%;
}

@media (max-width:1135px){
  .main-container{
    padding-left: initial;
  }
}

/* .fv-container
    ============================== */
.fv-container{
	position: relative;
  width: 100%;
  height: 100vh;
}

@media (max-width:1135px){
  .fv-container{
    padding-left: 15%;
  }
}

@media (max-width:767px){
  .fv-container{
    padding-left: 5%;
    padding-top: 25vh;
    position: relative;
    margin: 0 auto;
  }
}

.fv-logo{
  max-width: 160px;
  width: 100%;
  height: 50px;
  background: url(../img/logo_chai-salon2.svg) no-repeat;
  background-size: 100% 100%;
  display: none;
}

@media (max-width:767px){
  .fv-logo{
    display: block;
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width:407px){
  .fv-logo{
    max-width: 120px;
  }
}

.fv-image{
  border-radius: 300px 0 0 0;
	position: absolute;
  width: 100%;
  height: 100%;
	animation: fade-anim 18s ease-in-out infinite;
  opacity: 0;
  object-fit: cover;
}

.fv-image:nth-of-type(1){
  animation: fade-anim-first 18s ease-in-out infinite;
	animation-delay: 0s;
}
.fv-image:nth-of-type(2){
	animation-delay: 6s;
}
.fv-image:nth-of-type(3){
	animation-delay: 12s;
}

@keyframes fade-anim-first{
  0%{opacity: １;}
  30%{opacity: 1;}
  36%{opacity: 1;}
  45%{opacity: 0;}
  100%{opacity: 0;}
}

@keyframes fade-anim{
	0%{opacity: 0;}
	30%{opacity: 1;}
	36%{opacity: 1;}
  45%{opacity: 0;}
	100%{opacity: 0;}
}

@media (max-width:1135px){
  .fv-image{
    width: 85%;
  }
}

@media (max-width:767px){
  .fv-image{
    width: 95%;
    height: 85vh;
    border-radius: 180px 0 0 0;
  }
}

.fv-text{
  font-size: 34px;
  line-height: 200%;
  color: white;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
  font-weight: bold;
  letter-spacing: 0.3em;
  position: absolute;
  display: inline-block;
  width: 85%;
  z-index: 1;
  top: 70%;
  left: 3%;
	animation: fvtext-anim 21s ease-in-out;
  opacity: 0;
}

@keyframes fvtext-anim{
  0%{
    opacity: １;
  }
  30%{
    opacity: 1;
    transform: translate(10%, 0);
  }
  90%{
    opacity: 1;
    transform: translate(10%, 0);
  }
  100%{
    opacity: 0;
    transform: translate(5%, 0);
  }
}

@media (max-width:1135px){
  .fv-text{
    font-size: 30px;
    padding-left: 15%;
  }
}

@media (max-width:1025px){
  .fv-text{
    font-size: 25px;
  }
}

@media (max-width:767px){
  .fv-text{
    font-size: 21px;
    left: initial;
    padding-left: initial;
  }
}

@media (max-width:407px){
  .fv-text{
    font-size: 18px;
  }
}

/* aboutsalon-container
    ============================== */
.aboutsalon-container{
  margin-top: 150px;
  padding-left: 50px;
  position: relative;
}

@media (max-width:1135px){
  .aboutsalon-container{
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media (max-width:1025px){
  .aboutsalon-container{
    padding-left: 3%;
    padding-right: 3%;
  }
}

.intro-text{
  font-size: 22px;
  line-height: 200%;
  display: inline-block;
  padding: 60px 100px;
  position: relative;
}

@media (max-width:767px){
  .intro-text{
    font-size: 20px;
    padding: 50px 50px;
  }
}

@media (max-width:535px){
  .intro-text{
    font-size: 18px;
  }
}

.intro-text::before{
  position: absolute;
  content: '';
  background-color: white;
  border-radius: 100px;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  animation: floating-anim 3s ease-in-out infinite;
}

.intro-text::after{
  position: absolute;
  content: '';
  background-color: white;
  z-index: -1;
  width: 250px;
  height: 80px;
  border-radius: 80px;
  top: 100%;
  right: 5%;
  animation: floating-anim 3s ease-in-out infinite;
}

@media (max-width:407px){
  .intro-text::after{
    width: 180px;
    border-radius: 100px;
  }
}

.intro-textarea{
  line-height: 250%;
  padding: 80px 0 50px 100px;
  width: 85%;
  position: relative;
}

.intro-textarea::before{
  position: absolute;
  content: '';
  background-color: white;
  z-index: -1;
  width: 150px;
  height: 150px;
  border-radius: 150px;
  top: 70%;
  left: 0%;
  animation: floating-anim 3s ease-in-out infinite;
}

.intro-textarea::after{
  position: absolute;
  content: '';
  background-color: white;
  z-index: -1;
  width: 100px;
  height: 100px;
  border-radius: 100px;
  top: 30%;
  left: 70%;
  animation: floating-anim 3s ease-in-out infinite;
}

@keyframes floating-anim{
  0%,100%{
    transform: translate(0, 0);
  }
  50%{
    transform: translate(0, 15px);
  }
}

@media (min-width:1576px){
  .intro-textarea{
    width: 70%;
  }
}

@media (max-width:767px){
  .intro-textarea{
    padding: 50px 50px;
    width: 100%;
  }
}

@media (max-width:535px){
  .intro-textarea{
    padding: 50px 3%;
  }
}

.intro-ownername{
  position: absolute;
  bottom: 0;
  right: 15%;
}

@media (min-width:1576px){
  .intro-ownername{
    right: 30%;
  }
}

/* .blog-container
    ============================== */
.blog-container{
  width: 100%;
  padding-left: 150px;
  padding-right: 30px;
  margin-top: 100px;
}

@media (max-width:1135px){
  .blog-container{
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media (max-width:1025px){
  .blog-container{
    padding-left: 3%;
    padding-right: 3%;
  }
}

.salon-image1{
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-bottom: 40px;
}

.blog-text{
  width: 100%;
  margin-bottom: 40px;
  text-align: center;
  line-height: 200%;
}

.blog-btn{
  width: 100%;
  text-align: center;
}

/* .link-btn1
    ============================== */
.link-btn1{
  color: white;
  font-size: 13px;
  background-color: #453626;
  display: block;
  max-width: 250px;
  padding: 25px;
  text-align: center;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  transition: all 0.5s ease;
  margin: 0 auto;
}

.link-btn1::after{
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid white;
  border-right: 1.5px solid white;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 10%;
  transform: rotate(45deg);
}

.link-btn1:hover{
  opacity: 0.6;
}

/* .menu-container
    ============================== */
.menu-container{
  background-color: white;
  padding-left: 150px;
  margin-top: 100px;
  position: relative;
}

@media (max-width:1025px){
  .menu-container{
    padding-left: initial;
  }
}

.menu-title{
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 80px auto;
}

@media (max-width:1135px){
  .menu-title{
    margin-right: 150px;
  }
}

@media (max-width:1025px){
  .menu-title{
    margin: 80px auto;
  }
}

.menu-title span{
  font-size: 10px;
  margin-top: 1.5em;
  display: block;
}

.menu-box{
  height: 100%;
}

.menu{
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin: 40px auto 30px;
}

@media (max-width:407px){
  .menu{
    font-size: 16px;
    margin: 30px auto 20px;
  }
}

.icon{
  max-width: 200px;
  margin: 0 auto;
}

.menu-text{
  font-size: 18px;
  text-align: center;
  margin: 30px auto;
}

@media (max-width:407px){
  .menu-text{
    font-size: 16px;
    margin: 20px auto;
  }
}

.menu-text span{
  font-size: 15px;
}

.menu-textarea{
  font-size: 13px;
  line-height: 200%;
  max-width: 80%;
  margin: 0 auto;
}

/* swiper
    ============================== */
.swiper{
  width: 100%;
}

@media (max-width:1025px){
  .swiper{
    width: 80%;
    margin: 0 auto;
  }
}

.swiper-wrapper{
  max-width: 500px;
  width: 100%;
}

.swiper-slide{
  background-color: #FAF3F1;
  height: auto;
  padding-bottom: 40px;
}

@media (max-width:407px){
  .swiper-slide{
    padding-bottom: 30px;
  }
}

.swiper-button-prev,
.swiper-button-next{
  background-color: #FEC2B3;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  position: absolute;
  top: 50%;
}

.swiper-button-prev{
  left: 100px;
}

.swiper-button-next{
  left: 38.5vw;
}

@media (max-width:1135px){
  .swiper-button-prev{
    left: 95px;
  }
  .swiper-button-next{
    left: 68vw;
  }
}

@media (max-width:1025px){
  .swiper-button-prev{
    left: 6%;
  }
  .swiper-button-next{
    left: 88%;
  }
}

@media (max-width:767px){
  .swiper-button-prev{
    left: 4%;
  }
  .swiper-button-next{
    left: 87%;
  }
}

@media (max-width:535px){
  .swiper-button-prev{
    left: 3%;
  }
  .swiper-button-next{
    left: 82vw;
  }
}

@media (max-width:407px){
  .swiper-button-prev{
    left: 3%;
  }
  .swiper-button-next{
    left: 80vw;
  }
}

.swiper-button-prev:hover{
  animation: slide-prev 1.5s ease-out infinite;
}

@keyframes slide-prev{
  0%,100%{
    transform: translate(0, 0);
  }
  60%{
    transform: translate(-10%, 0);
  }
}

.swiper-button-next:hover{
  animation: slide-next 1.5s ease-out infinite;
}

@keyframes slide-next{
  0%,100%{
    transform: translate(0, 0);
  }
  60%{
    transform: translate(10%, 0);
  }
}

.swiper-button-prev:after{
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #2d221b;
  border-left: 2px solid #2d221b;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
}

.swiper-button-next:after{
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 2px solid #2d221b;
  border-right: 2px solid #2d221b;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
}

.swiper-pagination{
  bottom: 200px !important;
  padding-left: 150px;
}

@media (max-width:1135px){
  .swiper-pagination{
    padding-left: initial;
  }
}

@media (max-width:1025px){
  .swiper-pagination{
    width: 80%;
    padding-left: 20%;
  }
}

.swiper-pagination-fraction {
	color: #2d221b;
	font-size: 16px;
}

.swiper-pagination-total {
  font-size: 14px;
}

.swiper-pagination-current {
	font-weight: bold;
}

.menu-btn{
  margin: 80px auto;
}

@media (max-width:1135px){
  .menu-btn{
    margin-right: 150px;
  }
}

@media (max-width:1025px){
  .menu-btn{
    margin: 80px auto;
  }
}

/* .shopinfo-container
    ============================== */
.shopinfo-container{
  margin-top: 150px;
  padding-bottom: 100px;
  width: 100%;
  text-align: center;
}

.shopinfo-titlebox{
  padding-left: 150px;
}

@media (max-width:1135px){
  .shopinfo-titlebox{
    padding-left: initial;
  }
}

.shopinfo-title{
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin: 50px auto;
  position: relative;
  display: inline-block;
  opacity: 0;
}

.scroll-fade3{
  animation: rolling-anim 2.5s ease-in-out forwards;
}

@keyframes rolling-anim{
  0%{
    opacity: 0;
    transform: translate(150%, 0) rotate(-180deg);
  }
  100%{
    opacity: 1;
    transform: translate(0, 0) rotate(-360deg);
  }
}

.shopinfo-title span{
  font-size: 10px;
  margin-top: 1.5em;
  display: block;
}

.shopinfo-title::before{
  position: absolute;
  content: '';
  background-color: white;
  z-index: -1;
  width: 100%;
  height: 60px;
  border-radius: 50% 50% 0 0/100% 100% 0 0;
  bottom: 120%;
}

.shopinfo-title::after{
  position: absolute;
  content: '';
  background-color: white;
  z-index: -1;
  width: 100%;
  height: 60px;
  border-radius: 0 0 50% 50%/0 0 100% 100%;
  top: 70%;
  right: 0;
}

.shopinfo-wrap1{
  display: flex;
  align-items: flex-end;
  text-align: initial;
  padding-left: 150px;
  margin-top: 80px;
}

@media (max-width:991px){
  .shopinfo-wrap1{
    display: block;
  }
}

@media (max-width:767px){
  .shopinfo-wrap1{
    padding-left: 100px;
    padding-right: 50px;
  }
}

@media (max-width:535px){
  .shopinfo-wrap1{
    padding-left: 3%;
    padding-right: 3%;
  }
}

.shopinfo-box1{
  width: 70%;
}

@media (max-width:991px){
  .shopinfo-box1{
    width: 100%;
  }
}

.shopinfo-reservation{
  font-size: 18px;
  font-weight: bold;
  display: inline;
  border-top: 1px solid #2d221b;
  border-bottom: 1px solid #2d221b;
  padding: 0.2em;
}

.shopinfo-reservation-textarea{
  line-height: 250%;
  margin-top: 50px;
}

@media (max-width:767px){
  .shopinfo-reservation-textarea{
    line-height: 200%;
  }
}

.shopinfo-reservation-btn{
  width: 50%;
  margin-top: 50px;
}

@media (max-width:991px){
  .shopinfo-reservation-btn{
    width: 100%;
  }
}

/* .link-btn2
    ============================== */
.link-btn2{
  color: white;
  font-size: 13px;
  background-color: #453626;
  display: block;
  max-width: 250px;
  padding: 25px;
  text-align: center;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  transition: all 0.5s ease;
}

.link-btn2::after{
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid white;
  border-right: 1.5px solid white;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 10%;
  transform: rotate(45deg);
}

.link-btn2:hover{
  opacity: 0.6;
}

@media (max-width:535px){
  .link-btn2{
    margin: 0 auto;
  }
}

.shopinfo-wrap2{
  text-align: initial;
  position: relative;
  margin-top: 80px;
}

@media (max-width:767px){
  .shopinfo-wrap2{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width:535px){
  .shopinfo-wrap2{
    padding-left: 3%;
    padding-right: 3%;
  }
}

.shopinfo-box2{
  padding: 50px 200px 50px 150px;
  background-color: white;
  width: 75%;
}

@media (max-width:1135px){
  .shopinfo-box2{
    border-radius: 0 300px 0 0;
  }
}

@media (max-width:991px){
  .shopinfo-box2{
    width: 90%;
  }
}

@media (max-width:767px){
  .shopinfo-box2{
    padding-left: 50px;
    padding-right: 50px;
    width: 100%;
    border-radius: 0 180px 0 0;
  }
}

@media (max-width:407px){
  .shopinfo-box2{
    padding-left: 20px;
    padding-right: 20px;
  }
}

.shopinfo-access{
  font-size: 18px;
  font-weight: bold;
}

.shopinfo-access-textarea{
  display: flex;
  line-height: 180%;
  border-bottom: 1px solid rgb(45, 34, 27, 0.2);
  padding-bottom: 20px;
  margin-top: 50px;
}

.shopinfo-access-textarea dt{
  margin-right: 3em;
}

.shopinfo-access-textarea:last-of-type dt{
  margin-right: 4em;
}

@media (max-width:407px){
  .shopinfo-access-textarea dt{
    margin-right: 2em;
  }
}

@media (max-width:407px){
  .shopinfo-access-textarea:last-of-type dt{
    margin-right: 3em;
  }
}

.shopinfo-access-btn{
  margin-top: 50px;
}

.salon-image2{
  position: absolute;
  z-index: 1;
  right: 10%;
  bottom: 0;
  max-width: 250px;
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: 0 100%
}

@media (max-width:991px){
  .salon-image2{
    right: 1%;
  }
}

@media (max-width:767px){
  .salon-image2{
    position: initial;
    margin-top: 50px;
    max-width: 60%;
  }
}

@media (max-width:407px){
  .salon-image2{
    max-width: 80%;
    height: 200px;
  }
}

/* .bottom-container
    ============================== */    
@media (max-width: 1025px){
  .bottom-container{
    position: relative;
    width: 100%;
  }
}

.bottom-wrap{
  width: 100%;
}

@media (max-width: 1135px){
  .bottom-wrap{
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
}

@media (max-width: 1025px){
  .bottom-wrap{
    justify-content: flex-start;
  }
}

.bottom-sprite{
  display: none;
  max-width: 150px;
  width: 100%;
  height: 300px;
  background: url(../img/sprite.png) no-repeat;
  background-size: 400% 100%;
  animation: spriteimg-anim2 2.5s steps(4) infinite;
}

@media (max-width: 1025px){
  .bottom-sprite{
    display: inline-block;
  }
}

@media (max-width: 407px){
  .bottom-sprite{
    margin-bottom: 40px;
  }
}

.bottom-text{
  display: none;
  line-height: 180%;
  position: relative;
  padding: 0 30px;
  margin-bottom: 20px;
}

.bottom-text::before{
  content: '';
  position: absolute;
  width: 1px;
  height: 150%;
  left: 0;
  top: 0;
  background-color: #2d221b;
  border-radius: 3px;
  transform: rotate(-25deg);
}

.bottom-text::after{
  content: '';
  position: absolute;
  width: 1px;
  height: 150%;
  right: 0;
  top: 0;
  background-color: #2d221b;
  border-radius: 3px;
  transform: rotate(25deg);
}

@media (max-width: 1135px){
  .bottom-text{
    display: inline-block;
  }
}

@media (max-width: 535px){
  .bottom-text{
    max-width: 50%;
  }
}

@media (max-width: 407px){
  .bottom-text{
    max-width: 40%;
    padding: 0 20px;
  }
}

@media (max-width: 407px){
  .bottom-text::before{
    height: 100%;
    transform: rotate(-15deg);
  }
}

@media (max-width: 407px){
  .bottom-text::after{
    height: 100%;
    transform: rotate(15deg);
  }
}

.footer-wrap{
  width: 100%;
  bottom: 0;
}

@media (max-width: 1025px){
  .footer-wrap{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ▼footer */
.footer{
  width: 100%;
}

@keyframes footer-anim{
  from{opacity: 0;}
  to{opacity: 1;}
}

.footer-box{
  background-color: #FEC2B3;
  max-width: 600px;
  width: 100%;
  height: 300px;
  border-radius: 50% 50% 0 0/100% 100% 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

@media (max-width:1025px){
  .footer-box{
    max-width: 400px;
    height: 200px;
  }
}

@media (max-width:407px){
  .footer-box{
    max-width: 300px;
    height: 150px;
    padding-top: 5px;
  }
}

.footer-text,
.footer-copyright{
  font-size: 12px;
  margin-top: 20px;
}

@media (max-width:1025px){
  .footer-text,
  .footer-copyright{
    font-size: 10px;
  }
}

@media (max-width:407px){
  .footer-text,
  .footer-copyright{
    margin-top: 5px;
  }
}

.link-insta{
  display: block;
}

.link-insta :hover{
  color: white;
  background-color: #453626;
}

.icon-insta{
  font-size: 21px;
  color: #2d221b;
  background-color: white;
  padding: 0.6em;
  border-radius: 50%;
  transition: all 0.5s ease;
}

.footer-image img{
  margin-top: 20px;
  max-width: 160px;
  height: 100px;
}

@media (max-width:1025px){
  .footer-image img{
    margin-top: 10px;
    max-width: 120px;
    height: 60px;
  }
}

@media (max-width:535px){
  .footer-image img{
    max-width: 100px;
    height: 50px;
  }
}

@media (max-width:407px){
  .footer-image img{
    margin-top: 5px;
  }
}

/* ▼reservation */
.reservation-body{
  font-size: 14px;
  padding-left: 10%;
  animation: reservation-anim 2s ease-in-out;
}

@keyframes reservation-anim{
  from{opacity: 0;}
  to{opacity: 1;}
}

@media (max-width: 767px){
  .reservation-body{
    font-size: 13px;
  }
}

@media (max-width: 535px){
  .reservation-body{
    padding-right: 10%;
  }
}

.lnk-home{
  display: inline-block;
  max-width: 230px;
  width: 100%;
  margin-top: 2%;
}

@media (max-width: 767px){
  .lnk-home{
    max-width: 180px;
  }
}

.logo-image2{
  max-width: 230px;
  height: 50px;
  background: url("../img/logo_chai-salon2.svg") no-repeat;
  padding: auto;
}

.reservation-text1{
  font-size: 18px;
  margin-top: 100px;
  line-height: 200%;
}

@media (max-width: 767px){
  .reservation-text1{
    font-size: 16px;
    margin-top: 60px;
  }
}

.reservation-wrap{
  display: flex;
  align-items: flex-end;
}

@media (max-width: 767px){
  .reservation-wrap{
    display: block;
  }
}

.reservation-box1{
  margin-top: 60px;
  width: 100%;
}

.reservation-title1,
.reservation-title2{
  font-size: 18px;
  font-weight: bold;
  padding: 0.2em;
  border-top: 1px solid #2d221b;
  border-bottom: 1px solid #2d221b;
  display: inline;
}

@media (max-width: 767px){
  .reservation-title1,
  .reservation-title2{
    font-size: 16px;
  }
}

.reservation-textarea1{
  counter-reset: count 0;
  line-height: 250%;
}

.reservation-textarea1  li{
  margin-top: 40px;
}

.reservation-textarea1 li:before{
  content: counter(count) ". ";
  counter-increment: count 1;
}

.reservation-box2{
  padding-right: 10%;
  text-align: center;
  flex-basis: 100%;
  animation: reservationbox-anim 3s ease;
}

@keyframes reservationbox-anim{
  from{opacity: 0;}
  to{opacity: 1;}
}

@media (max-width: 767px){
  .reservation-box2{
    margin-top: 50px;
  }
}

.lineqr-image{
  display: inline-block;
  background-color: white;
  padding: 0.5em;
  border-radius: 20px;
  margin-bottom: 50px;
}

.lineqr-image img{
  max-width: 200px;
}

@media (max-width: 535px){
  .lineqr-image img{
    max-width: 150px;
  }
}

.reservation-box3{
  margin: 80px auto 100px;
}

.reservation-text2{
  font-size: 16px;
  margin-top: 50px;
}

@media (max-width: 767px){
  .reservation-text2{
    font-size: 14px;
  }
}

.reservation-textarea2{
  line-height: 300%;
  margin-top: 30px;
}
