@font-face {
    font-family: 'MrsSaint';
    src: url('../font/MrsSaintDelafield-Regular.ttf') format('truetype');
}

body {
    margin: 0;
    padding: 0;
    font-family: "Noto Sans JP", sans-serif;
    background-color: #f0f0f0;
    position: relative;
    font-weight: 300;
    letter-spacing: 0.1em;
}
.container {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
header, main, footer {
    text-align: center;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
h1, h2, h3,.stylist-name{
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
}
h1 {
    color: #fff;
	    z-index: 5;
	text-shadow: 1px 1px 5px #000;
	
}
h2 {
    font-size: 2.6em;
    margin: 10px auto;
}
h3 {
    font-size: 1.7em;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
}
h4 {
    font-size: 1em;
    font-weight: 300;
}
img {
    max-width: 100%;
}
.en{
	 font-family: 'MrsSaint', sans-serif;
	 font-size: 40px;
	color: #BD412E;
}
a{
	text-decoration: none;
	color: #000;
}
/*==================================================
ヘッダー
===================================*/
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
/*==================================================
ボタン
===================================*/
a.btn {
    display: block;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    margin: auto;
    padding: 1rem 4rem;
    font-weight: bold;
    background: #cc3421;
    color: #fff;
    border-radius: 100vh;
    transition: 0.5s;
    max-width: 350px;
	position: relative;
	pointer-events: none
}
/*a.btn:hover {
    color: #fff;
    background: #e35846;
}*/

a.btn::before{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	display: block;
	top: 0;
	left: 0;
	background-color: #000;
	opacity: 0.5;
    border-radius: 100vh;
}

a.btn::after{
	content: "現在新規の登録停止中";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	font-size: 15px;
	color: #fff;
}

/*==================================================
動き
===================================*/
.fadeIn {
    animation-name: fadeInAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes fadeInAnime {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* 下から */
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*アンダーライン*/
.highlight {
    position: relative;
    display: inline-block;
}
.highlight::after {
    content: '';
    position: absolute;
    left: -5px;
    bottom: 0;
    width: 0;
    height: 0.25em;
    background-color: rgba(255, 0, 0, 0.3);
    transition: width 0.5s ease;
}
.highlight.active::after {
    width: 100%;
}
/*チェック*/
.dli-check {
    display: inline-block;
    vertical-align: middle;
    color: #BD412E;
    line-height: 1;
    width: 1.2em;
    height: 0.65em;
    border: 0.1em solid currentColor;
    border-top: 0;
    border-right: 0;
    box-sizing: border-box;
    transform: translateY(-60%) rotate(-45deg);
    margin-right: 0.5em;
}
/*　左の動き　*/

#formbtn.LeftMove{
	animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime{
  from {
    opacity: 0;
	transform: translateY(50px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　右の動き　*/

#formbtn.RightMove{
	animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(50px);
  }
}
/*==================================================
スライダーのためのcss
===================================*/
.slider-area {
    position: relative;
	margin-bottom: 30px;
}
.slider-area h1 {
    width: 100%;
    position: absolute;
    bottom: 170px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
}
.slider-area a.btn {
    position: absolute;
    bottom: 80px;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}
.slider {
    position: relative;
    z-index: 1;
    /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
    height: 100vh; /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
/*　背景画像設定　*/
.slider-item01 {
    background: url("../img/bana/0909-01.jpg");
}
.slider-item02 {
    background: url("../img/bana/0909-02.jpg");
}
.slider-item03 {
    background: url("../img/bana/0909-05.jpg");
}
.slider-item04 {
    background: url("../img/bana/0909-03.jpg");
}
.slider-item05 {
    background: url("../img/bana/0909-04.jpg");
}
.slider-item {
    width: 100%; /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height: 100vh; /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat; /*背景画像をリピートしない*/
    background-position: center; /*背景画像の位置を中央に*/
    background-size: cover; /*背景画像が.slider-item全体を覆い表示*/
}
/*矢印の設定*/
.slick-prev, .slick-next {
    position: absolute;
    z-index: 3;
    top: 42%;
    cursor: pointer; /*マウスカーソルを指マークに*/
    outline: none; /*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #fff; /*矢印の色*/
    border-right: 2px solid #fff; /*矢印の色*/
    height: 25px;
    width: 25px;
}
.slick-prev { /*戻る矢印の位置と形状*/
    left: 2.5%;
    transform: rotate(-135deg);
}
.slick-next { /*次へ矢印の位置と形状*/
    right: 2.5%;
    transform: rotate(45deg);
}
/*ドットナビゲーションの設定*/
.slick-dots {
    position: relative;
    z-index: 3;
    text-align: center;
    margin: -50px 0 0 0; /*ドットの位置*/
}
.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}
.slick-dots button {
    color: transparent;
    outline: none;
    width: 8px; /*ドットボタンのサイズ*/
    height: 8px; /*ドットボタンのサイズ*/
    display: block;
    border-radius: 50%;
    background: #fff; /*ドットボタンの色*/
}
.slick-dots .slick-active button {
    background: #333; /*ドットボタンの現在地表示の色*/
}
/*==================================================
top
===================================*/
.img1{
	width:100%;
	margin:30px 0 50px;
}
svg{
	max-width: 100px;
	margin:0 auto;
}
span.text-big {
    font-size: 1.7em;
}
span.mini-text {
    font-size: 0.7em;
}
.top-img{
	width:80%;
	margin:8px auto 1px;
	max-width: 380px;
}
.badge-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 25px auto 60px;
	background-image: url("../img/top/top-back.png");
	background-size: contain;
	background-position: top;
}
.badge {
    font-family: "Noto Serif JP", serif;
    background-image: linear-gradient(155deg, rgba(196, 146, 27, 1), rgba(249, 206, 105, 1));
    color: #ffffff;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#top{
	  background-image: linear-gradient(0deg, rgba(255, 255, 255, 1), rgba(230, 230, 230, 1));
	padding: 20px 0;
}
#top .flex_top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 15% 0;
    align-items: center;
    position: relative;
}
#top .flex_top:nth-child(2n) {
    flex-direction: row-reverse;
}
#top .flex_top img {
    width: 80%;
}
#top .flex_top h2 {
    width: 100%;
    font-size: 1.5em;
    position: absolute;
    text-align: left;
    background-color: inherit;
    bottom: 5%;
    left: 0;
}
#top .flex_top:nth-child(odd) h2 {
    text-align: right;
    left: inherit;
    right: 0;
}
#top .flex_top h2 span {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    padding: 0 0.3em;
}


/*============================
ビフォアフ
=============================*/
.be-af {
    background-image: linear-gradient(0deg, rgba(227, 204, 135, 1), rgba(255, 246, 224, 1));
    padding: 35px 0;
    margin-bottom: 40px;
	position: relative;
}

.be-af .en{
	position: absolute;
	top:-20px;
	left:10px;
	transform: rotate(-14deg);
}
.be-af-img {
    position: relative;
    width: 300px;
    height: 600px;
    margin: 0 auto;
}
.be-af-img div {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    display: none;
}
.be-af-img .before {
    display: block;
}
.be-af-img img {
    width: 100%;
    height: auto;
}
.be-af-img div p {
    position: absolute;
    top: 20px;
	left:-10px;
    letter-spacing: 0.1em;
    background-color: #888;
	color: #fff;
    padding: 3px 10px;
	font-weight: 500;
}
.be-af-img div:nth-last-child(odd) p{
    background-color: #fff;
	color: #C69D44;
	font-size: 1.2em;
	letter-spacing: 0.15em;
}
.gradation{
  /*background-image: linear-gradient(155deg, rgba(119, 97, 0, 1), rgba(225, 190, 83, 1) 84%, rgba(244, 205, 101, 1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;*/
font-weight: 500;
	margin-bottom: 30px;
	font-size: 1.85em;
}
/*============================
ステップ
=============================*/
.step-container {
    display: flex;
    flex-wrap: wrap;
}
.step {
    width: 80%;
    margin: 30px auto;
    position: relative;
}
.step img {
    width: 80%;
	margin:30px 0 0;
}
.step p{
	text-align: left;
}
.step p:first-child {
    font-family: "Noto Serif JP", serif;
    letter-spacing: 0.15em;
    position: absolute;
    top: 10px;
    left: -10px;
    height: 30px;
    line-height: 25px;
    width: 80px;
    background-color: #cc3421;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding-top: 1px;
    font-size: 0.7em;
}

/*============================
返品
=============================*/
.fukidashi-02-01 {
  position: relative;
  width: fit-content;
  padding: 15px 22px;
  color: #282828;
  border-radius: 10px;
  background-color: #fff4d9;
margin: 0 auto;
	font-size: 0.9em;
}
.fukidashi-02-01::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  width: 20px;
  height: 12px;
  transform: translateX(-50%);
  box-sizing: border-box;
  background-color: #fff4d9;
  clip-path: polygon(0% 100%, 100% 100%, 50% 0);
}

.img2{
	width:90%;
	margin:30px auto 20px;
}
/*============================
価格
=============================*/
.price {
    background-color: #fff4d9;
    padding: 30px 0;
	position: relative;
}
.price img {
    width: 90%;
    margin: 10px auto;
}

.price .fukidashi-02-01 {
  background-color: #fff;
  box-shadow: 5px 5px 15px -10px #888;
}
.price .fukidashi-02-01::after {
  background-color: #fff;
}

.price .en{
	position: absolute;
	top:-20px;
	left:20px;
	transform: rotate(-13deg);
}
.fukidashi-01-12 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
}
.fukidashi-01-12::before {
  content: "";
  width: 30px;
  height: 2px;
  transform: rotate(60deg);
  box-sizing: border-box;
  background-color: #333333;
}
.fukidashi-01-12::after {
  content: "";
  width: 30px;
  height: 2px;
  transform: rotate(-60deg);
  box-sizing: border-box;
  background-color: #333333;
}
/*============================
理由
=============================*/
.select h4{
	font-size: 1.1em;
	font-weight: 400;
}
.select .fukidashi-02-01{
	margin-bottom: 20px;
	font-weight: 500;
}
.img3{
	width:60%;
	margin:0px auto 10px;
}
/*============================
スタイリスト
=============================*/
#message {
    position: relative;
    padding: 0 70px;
}
#message .en{
    position: absolute;
    top:40px;
	left:52%;
	transform: rotate(-13deg);
}
#message h2 {
    position: absolute;
    right: 45%;
    z-index: 2;
}
.message-area {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}
.message-img {
    background: url("../img/stylist/img-01.jpg") no-repeat center;
    background-size: cover;
    height: 50vh;
    width: 48%;
}
.message-content {
    display: flex;
    justify-content: center;
    padding: 150px 0 0 0;
    width: 45%;
}
.message-box {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
}
.message-area h3 {
    font-size: 1.5rem;
}
_:-ms-lang(x)::-ms-backdrop, .message-content h3 { /*IE11用ハック*/
    width: 30%;
}
#message {
    padding: 0 30px;
}
#message h2 {
    position: relative;
    right: inherit;
}
.message-img, .message-content {
    width: 100%;
}
.message-img {
    height: 20vh;
}
.message-content {
    padding: 0px 0 0 0;
}
.message-content .message-btn {
    text-transform: none;
    height: inherit;
    margin: 0 0 20px 0;
}
_:-ms-lang(x)::-ms-backdrop, .message-content h3, _:-ms-lang(x)::-ms-backdrop, .message-content p, _:-ms-lang(x)::-ms-backdrop, .message-content .message-btn { /*IE11用ハック*/
    width: 100%;
}
.message-box {
    display: block;
}
.message-box .btn {
    padding: 10px;
    display: block;
}
.message-box img{
	width:90%;
	max-width: 400px;
	margin:15px auto;
}
.stylist-comment h3{
	
	font-size: 1.3em;
	margin:20px 0;
}
.stylist-comment p{
	
	font-size: 0.9em;
	margin:20px auto;
	text-align: left;
	width:95%;
}
.stylist-comment .img1{
	
	margin:50px auto 0;
	max-width: 450px;
}
@media screen and (max-width:370px) {
    .message-content p br {
        display: none;
    }
}
/*======スタイリストスライダー======*/
.slider2 { /*横幅94%で左右に余白を持たせて中央寄せ*/
    width: 94%;
    margin: 0 auto;
}
.slider2 img {
    width: 65%; /*スライダー内の画像を60vwにしてレスポンシブ化*/
    height: auto;
}
.slider2 .slick-slide {
    transform: scale(0.6); /*左右の画像のサイズを80%に*/
    transition: all .5s; /*拡大や透過のアニメーションを0.5秒で行う*/
    opacity: 0.5; /*透過50%*/
}
.slider2 .slick-slide.slick-center {
    transform: scale(1); /*中央の画像のサイズだけ等倍に*/
    opacity: 1; /*透過なし*/
}
/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev2, .slick-next2 {
    position: absolute; /*絶対配置にする*/
    top: 42%;
    cursor: pointer; /*マウスカーソルを指マークに*/
    outline: none; /*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666; /*矢印の色*/
    border-right: 2px solid #666; /*矢印の色*/
    height: 15px;
    width: 15px;
}
.slick-prev2 { /*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}
.slick-next2 { /*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}
/*========= モーダル表示のためのCSS ===============*/
/*全て共通：hideエリアをはじめは非表示*/
.hide-area {
    display: none;
}
.stylistbox {
    max-width: 310px;
}
.stylistbox .stylist-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0.5em auto 0.2em;
}
.stylistbox .stylist-more {
    font-size: 0.85rem;
    font-weight: 200;
    width: 100%;
}
.stylistbox button {
    font-size: 0.9rem;
    background-color: #E0C98B;
    color: #fff;
    border-radius: 50px;
    width: 100%;
    padding: 0.5em 0;
    margin: 0.5em auto;
}
.stylist-text img {
    width: 100%;
    margin: 10px auto 20px;
}

.slick-slide img {
   position: relative;
	left: 50%;
	transform: translateX(-50%);
}
.review {
	    background-color: #fff4d9;
	  width: 100%;
}

.review h2{
	   font-size: 1.8em;
	   padding:20px 0;
}

.review .whatis-img{
    padding: 0 0 5%;
}
.review .whatis-img div img {
    width: 40%;
}
@media screen and (max-width:550px) {
    .whatis-img{
        padding: 8% 0;
    }
    .whatis-img div img {
        width: 95%;
        margin: 0 auto;
    }
    
.review .whatis-img div img {
        width: 95%;
        margin: 0 auto;
}
}

#form{
	position: relative;
	margin:30px auto;
}
/* faq */
#faq {
    margin: 0 auto 200px auto;
	position: relative;
	margin:30px auto;
}
#form .en{
	position: absolute;
    top:38px;
	left:60%;
	transform: rotate(-13deg);
	font-size: 1.8em;
}
#faq .en{
    position: absolute;
    top:50px;
	left:60%;
	transform: rotate(-13deg);
	font-size: 1.8em;
}
#faq h2 {
    text-align: center;
    margin: 0 0 100px 0;
}
#faq h2 span.bgLRextend::before {
    background: #333;
}
.faq-bg {
    position: relative;
    height: 55vh;
    background: url("../img/pict_05.jpg") no-repeat center;
    background-size: cover;
    margin: 0 0 200px 25%;
}
.faq-bg::after {
    content: '';
    position: absolute;
    top: 20%;
    left: -32%;
    width: 100%;
    height: 55vh;
    background: #f3f3f3;
    z-index: -1;
}
@media screen and (max-width:768px) {
    .faq-bg, .faq-bg::after {
        height: 35vh;
    }
}
@media screen and (max-width:550px) {
    #faq {
        margin: 0 auto 100px auto;
    }
    #faq h2 {
        margin: 0 0 50px 0;
    }
    .faq-bg {
        margin: 0 0 100px 25%;
    }
    .faq-bg, .faq-bg::after {
        height: 20vh;
    }
}
/*===========================================================*/
/*機能編  9-2-2 任意の場所をクリックすると隠れていた内容が開き、先に開いていた内容が閉じる*/
/*===========================================================*/

/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 96%;
    max-width: 900px;
    margin:0 auto;
}

.accordion-area li{
    margin: 10px 0;
}

.accordion-area section {
	border: 1px solid #ccc;
}

/*アコーディオンタイトル*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1rem;
    font-weight: normal;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
}

@media screen and (max-width:768px) {
.title {
    font-size:0.9rem;
}
}

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;
    
}
.title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
    
}
.title::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}

/*　closeというクラスがついたら形状変化　*/

.title.close::before{
	transform: rotate(45deg);
}

.title.close::after{
	transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    background: #f3f3f3;
	margin:0 3% 3% 3%;
    padding: 3%;
}


/* footer */
#footer {
    padding: 100px 0;
    border-top: 1px solid #333;
    text-align: center;
    background: #888;
    position: relative;
    color: #fff;
}
#footer .footer-logo {
    width:20%;
    margin: 0 auto 30px;
}

#footer .footer-list{
    display: flex;
    flex-wrap: wrap;
      justify-content:center;
    
}

#footer .footer-list p{
    width:100%;
}

#footer .footer-list ion-icon{
    font-size: 1.5em;
    color: #fff;
}

#footer small {
    color: #BBBBBB;
}

@media screen and (max-width:768px) {
#footer {
    padding: 40px 0 100px;
}
    #footer .footer-logo {
    width:50%;
}

}

    .instagram-media{
        margin:0 auto 12px!important;
    }


/*===========================================================*/
/*機能編  8-1-3 ページの指定の高さを超えたら右から出現*/
/*===========================================================*/

/*リンクの形状*/
#formbtn a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#333;
	width: 100%;
	height: 50px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:1rem;
	transition:all 0.3s;
}

#formbtn a:hover{
	background: #777;
}

/*リンクを右下に固定*/
#formbtn {
	position: fixed;
	right: 0;
    width: 300px;
	bottom:0;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(50px);
}
@media screen and (max-width:768px) {
#formbtn a{
	height: 8vh;
}
#formbtn {
    width: 100%;
	height: 8vh;
}
}
/*　左の動き　*/

#formbtn.LeftMove{
	animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime{
  from {
    opacity: 0;
	transform: translateY(50px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　右の動き　*/

#formbtn.RightMove{
	animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(50px);
  }
}
