@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Allura&family=Noto+Serif+JP:wght@200..900&display=swap');
@import '_default';
@import '_general';
@import '_animation';

/*------------------
*  共通
*------------------*/
/*-----------------------
		


			PC



--------------------------*/
.pc{
	/* display: block; */
}

.sp{
	display: none;
}

/*-----------------------
		


			SP



--------------------------*/



@media screen and (max-width:768px){	
	
	
	.pc{
		display: none;
	}	
	
	.spbr{
		display: block;
	}
	/*------------------
	*  共通
	*------------------*/
	
	.sp{
		display: block;
		float: none;
		
	}
	
}
	
	


/*ここでsp終わり*/


html{
	font-size: 20px;
	font-family: "Noto Serif JP", serif;
	color: #000000;
  	scroll-behavior: smooth;
	font-feature-settings: "palt";
    font-weight: normal;
    font-style: normal;
	
}

body{
    /* min-width: 1100px; */
    min-width: inherit;
    /* max-width: 1000px; */
}

#slider {
    width: 100%;
    height: 100vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

.maincopy{
    position: absolute;
    margin-right: auto;
    width: 40%;
    top: 55%;
    left: 5%;
}
@media screen and (max-width:768px){
    
    .maincopy{
    position: absolute;
    margin-right: auto;
    width: 80%;
    top: 60%;
    left: 2%;
}
    
    
}



h1{
	margin:15px 0;
	text-align:center;
	padding:5px 0;
	font-size: 20px;
	color: #303030;
	font-weight: normal;
}
h2{
	margin:20px auto 0;
	/* background:#595757; */
	padding:5px 10px 4px;
	color:#fff;
	font-size:15px;
	font-weight:normal;
}

h4{
}




.wrap{
	max-width: 1000px;
	margin: 0 auto;
	overflow: hidden;
	padding: 100px 0;
	font-family: "Noto Serif JP", serif;
}
.wrap2{
	margin: 0 auto;
	overflow: hidden;
	/* padding: 100px 0; */
	font-family: "Noto Serif JP", serif;
	color: #4c4c4c;
}

.wrap h3{
    font-size: 1.2rem;
    text-align: center;
    padding: 40px 0 30px;
    font-weight: normal;
}

.wrap2 h3{
    font-size: 1.2rem;
    text-align: center;
    padding: 40px 0 30px;
    font-weight: normal;
}

@media screen and (max-width: 768px) {
  
.wrap h3{
    font-size: 1rem;
    text-align: center;
    padding: 50px 0 20px;
}

.wrap{/* width: 300px; */margin: 0 auto;overflow: hidden;padding-top: 50px;font-family: "Noto Serif JP", serif;color: #4c4c4c;}
    
}
img{
	width: 100%;
	height: auto;
}

	br.sp{
	display: none;
}


.text_center{
	text-align: center;
}
.under{
	border-bottom: double 3px #b80000;
	font-weight: bold;
}





.button{
	display: flex;
	justify-content: center;
	margin-top: 60px;
	
}
	span,a{
        /* cursor: pointer; */
        /* display: inline-block; */
        padding: 0px;
        /* text-align: center; */
        transition: opacity .2s;
        }
a{
	color: #231815;
}
.text_link ::before{
	position: relative;
	display: inline-block;
	
		content: "";
		width: 0;
		height: 1px;
		background: #231815;
		position: absolute;
		top: 50%;
		left: -10px;
		transition: width .2s;
	}
	
.text_link :hover ::before{
			width: calc(100% + 20px);
		}
	
.text_link .active{
		pointer-events: none;
	
	
}
.text_link .active ::before{
	width: calc(100% + 20px);
		}



#content_wrap{
	
	overflow: hidden;
	position: relative;
	padding-top: 130px;
	
}

.content_width{
	width: vw_lt(880);
	
}

.content_width_wide{
	width: vw_lt(940);
	
}


#header pc{
    display: flex;
}
@media screen and (max-width:768px){
    #header pc{
    display: none;
}
}




/*========= PC    ナビゲーションドロップダウンのためのCSS ===============*/

/*==ナビゲーション全体の設定*/
nav{
	color: #000;
	text-align: center;
	margin: inherit;
}
/*ナビゲーションを横並びに*/
nav ul{
	list-style: none;
	display: flex;
	justify-content: center;
}
/*2階層目以降は横並びにしない*/
nav ul ul{
	display: block;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li{
	position: relative;
    text-align: left;
}

/*ナビゲーションのリンク設定*/
nav ul li a{
	font-size: 16px;
	letter-spacing: 1px;
	display: block;
	text-decoration: none;
	color: #303030;
	padding: 20px 20px;
	transition:all .3s;
}

nav ul li li a{
	padding: 15px 15px;
	width: 130px;
}

nav ul li a:hover{
	color:#edf3fa;
    text-decoration: none;
}

/*==矢印の設定*/

/*2階層目を持つliの矢印の設定*/
nav ul li.has-child::before{
	content:'';
	position: absolute;
	left:15px;
	top:25px;
	width: 6px;
	height:6px;
	/* border-top: 2px solid #999; */
	/* border-right:2px solid #999; */
	transform: rotate(135deg);
}

/*3階層目を持つliの矢印の設定*/
nav ul ul li.has-child::before{
	content:'';
	position: absolute;
	left:6px;
	top:17px;
	width:6px;
	height:6px;
    border-top: 2px solid #fff;
    border-right:2px solid #fff;
    transform: rotate(45deg);
}

/*== 2・3階層目の共通設定 */

/*下の階層を持っているulの指定*/
nav li.has-child ul{
    /*絶対配置で位置を指定*/
    position: absolute;
    left: 9px;
    top:69px;
    z-index: 4;
    /*形状を指定*/
    background-color: rgba(255, 255, 255, 0.562);
    width: 160px;
    /*はじめは非表示*/
    visibility: hidden;
    opacity: 0;
    /*アニメーション設定*/
    transition: all .3s;
}

/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a{
	color: #000;
	border-bottom:solid 1px rgba(255,255,255,0.6);
}

nav li.has-child ul li:last-child > a{
 border-bottom:none;
 }

/*
nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
	background:#e2e2e2;
}
*/


/*==3階層目*/

/*3階層目の位置*/
nav li.has-child ul ul{
	top:0;
	left:182px;
	background:#66ADF5;
}

nav li.has-child ul ul li a:hover,
nav li.has-child ul ul li a:active{
	background:#448ED3;
}


/*==768px以下の形状*/

@media screen and (max-width:768px){
	nav{
		padding: 0;
	}
	
	nav ul{
		display: block;
	}
	
	nav li.has-child ul,
	nav li.has-child ul ul{
  	position: relative;
	left:0;
	top:0;
	width:100%;
	visibility:visible;/*JSで制御するため一旦表示*/
	opacity:1;/*JSで制御するため一旦表示*/
	display: none;/*JSのslidetoggleで表示させるため非表示に*/
	transition:none;/*JSで制御するためCSSのアニメーションを切る*/
}
	
nav ul li a{
    font-size: 13px;
	border-bottom:1px solid #ccc;
}

/*矢印の位置と向き*/

nav ul li.has-child::before{
	left:20px;	
}

nav ul ul li.has-child::before{
    transform: rotate(135deg);
	left:20px;
}
    
nav ul li.has-child.active::before{
    transform: rotate(-45deg);
}

}


/*==================================================
　5-3-3 左から右に線が伸びる（下部）
===================================*/
.gnavi li a{
    /*線の基点とするためrelativeを指定*/
	position: relative;
}

.gnavi li.current a,
.gnavi li a:hover{
	color:#303030;
}

.gnavi li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 10%;
    left: 10%;
    /*線の形状*/
    width: 80%;
    height: 1px;
    background: #b0b0b0;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: left top;/*左上基点*/
}

/*現在地とhoverの設定*/
.gnavi li.current a::after,
.gnavi li a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}



/*========= SP  ナビゲーションのためのCSS ===============*/

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

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


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

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

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

#g-nav li{
	list-style: none;
	text-align: center;
}

#g-nav li a{
	width: 63%;
	color: #303030;
	text-decoration: none;
	padding: 15px;
	display: block;
	letter-spacing: 0.1em;
	font-weight: normal;
	text-align: left;
}
.sns {
    /* display: flex; */
    margin: 540px 0 0 -3px;
    /* transform: translate(-9%, 693%); */
    width: 25%;
    padding: 10px 20px;
}

.line{margin: 0 0 0 0px;}
.insta{margin: 0 0px 0 10px;}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	left: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 1px;
    /* border-radius: 2px; */
    background-color: #b0b0b0;
    width: 50%;
  }

.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: 50%;
}

.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: 50%;
}


/*========= 上部固定させるためのCSS ===============*/
.mizuirobox{
    background-color: #a1c5ed;
    margin: 0 auto;
    height: 60px;
    
}
.header{
    /* background-color: #fff; */
    margin: 0 auto;
    height: 80px;
    text-align: center;
    display: flex;
    align-items: center;
    /*    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05); これを付け足し*/
    max-width: 1000px;
}
.header img{
    /* text-align: center; */
    /*    margin: 0 0px 0 20px;*/
    margin: 0 auto;
    width: 95%;
    max-width: 200px;
}
#header{
	/*高さ指定*/
	width:100%;/*横幅指定*/
	/*以下はレイアウトのためのCSS*/
	/* display: flex; */
	justify-content: space-between;
	align-items: center;
	color:#000;
	text-align: left;
	padding: 0;
	position: fixed;
	z-index: 999;
	border-bottom: 1px solid #e1e1e1;
	background-color: rgba(255, 255, 255, 0.562);
}

/*JSを使いfixedクラスが付与された際の設定*/
#header.fixed{
  position: fixed;/*fixedを設定して固定*/
  z-index: 800;/*最前面へ*/
  top:0;/*位置指定*/
  left:0;/*位置指定*/
}




@media screen and (max-width:768px){
    .mizuirobox{
    background-color: #a1c5ed;
    margin: 0 auto;
    height: 60px;
    
}
.header{
    margin: 0 auto;
    text-align: center;
    display: block;
}
.header img{
    text-align: center;
    margin: 10px auto;
    width: 40%;
}
    #header{
	height: 60px;/*高さ指定*/
	width:100%;/*横幅指定*/
	/*以下はレイアウトのためのCSS*/
	/*	display: flex;*/
	color:#fff;
	text-align: center;
	padding: 0;
	border-bottom: 1px solid #e1e1e1;
	background-color: rgba(255, 255, 255, 0.562);
}
    
    
  
}
/*========= 上部固定させるためのCSS 終わり===============*/


/*==================================================
ふわっ
===================================*/

/* その場で */
.fadeIn{
animation-name:fadeInAnime;
animation-duration:2s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


/* 下から */
/* fadeUp */

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration:2s;
    animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
 
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger{
    opacity: 0;
}

/*==================================================
じわっ
===================================*/

/* ぼかしから出現 */
.blur{
  animation-name:blurAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
  filter: blur(10px);
  transform: scale(1.02);
  opacity: 0;
  }

  to {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.blurTrigger{
    opacity: 0;
}


/*========= 流れるテキスト ===============*/

/*全共通*/

.slide-in {
	overflow: hidden;
	display: inline-block;
}

.slide-in_inner {
	display: inline-block;

}

/*左右のアニメーション*/
.leftAnime{
    opacity: 0;/*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
	animation-name:slideTextX100;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes slideTextX100 {
  from {
	transform: translateX(-100%); /*要素を左の枠外に移動*/
        opacity: 0;
  }

  to {
	transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}

.slideAnimeRightLeft {
	animation-name:slideTextX-100;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
    opacity: 0;
}


@keyframes slideTextX-100 {
  from {
	transform: translateX(100%);/*要素を右の枠外に移動*/
    opacity: 0;
  }

  to {
	transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}

/*========= テキストが1文字ずつ出てきます ===============*/

.eachTextAnime span{opacity: 0;}
.eachTextAnime.appeartext span{ animation:text_anime_on 1s ease-out forwards; }
@keyframes text_anime_on {
	0% {opacity:0;}
	100% {opacity:1;}
}
/*========= 背景　テキストが1文字ずつ出てきます ===============*/





/*-----------------------


         main


------------------------*/

/*--調整--*/
html {
	background-color: transparent !important;
}


.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.clearfix:before {
  content: "";
  display: block;
  clear: both;
}

.clearfix {
  display: block;
}

#specialty {
  text-align: center;
}

#specialty a {
  text-decoration: none;
}

#specialty figure {
  margin: 0;
}

/*--sticky用--*/
html, body, div.wrapper_ {
  overflow: visible !important;
}

/*--SPのみ表示用--*/
@media only screen and (max-width: 767px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }
}

/*--PCのみ表示用--*/
@media only screen and (min-width: 768px) {
  .sp {
    display: none;
  }

  .pc {
    display: block;
  }
}


/*----------
FONT
----------*/
:root {
  --leading-trim: calc((1em - 1lh) / 2);
}

@supports not (top: 1lh) {
  :root {
    --leading-trim: 0px;
  }
}

.fontJp400NotoSans {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.fontJp700NotoSans {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.fontEn700Alkaline {
  font-family: "alkaline", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.fontEn800Alkaline {
  font-family: "alkaline", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.fontEn700NeueHaasGrotesk {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 700;
  font-style: normal;
}


/*----------
BG
----------*/
#specialty {
  background: #c6d5e6;
}


/*----------
STICKY LAYOUT
----------*/
.side {
  display: none;
}

.main {
  width: 100%;
  background: #ffffff;
}


@media only screen and (min-width: 768px) {
  .content {
    width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .side {
    display: block;
    width: 364px;
    position: sticky;
    top: 200px;
  }

  .main {
    width: 500px;
    background: #ffffff;
  }
}


/*----------
LEAD
----------*/
.lead__inner {
  width: calc(100% - 20px * 2);
  margin: 0px auto;
}


.original-button {
  margin: 20px 0;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  border-radius: 25px;
  width: 430px;
  height: 50px;
  transition: 0.3s;
  box-shadow: 1px 4px 4px 0px rgba(0, 0, 0, 0.25);
  background-color: [object object];
  background-image: linear-gradient(180deg, rgba(255, 220, 223, 1), rgba(255, 144, 175, 1) 45%, rgba(255, 66, 85, 1) 88%);
}

.original-button:hover {
  box-shadow: 0 0 rgba(0, 0, 0, 0);
  background-color: #fff;
}


@media only screen and (min-width: 768px) {
  .lead__inner {
    width: calc(100% - 20px * 2);
    margin: 0 auto;
  }
}


/*----------
PRODUCT
----------*/
.product {
  background: radial-gradient(rgba(255, 255, 255, 1) 30% ,rgba(198, 213, 230, 1) 100%, rgba(115, 155, 200, 1));
  height: auto;
  color: #3b3b3b;
  display: flex;
  align-items: center;
  justify-content: center;

  /* 上部を斜めにカット */
  clip-path: polygon(0 0px, 100% 60px, 100% 100%, 0% 100%);
}

.product__inner {
  /* width: calc(100% - 15px * 2); */
  margin: 100px 20px 50px;
}
.product2{
	background-image: url("../images/img8.png");
	background-size: cover;
	margin: -2px 0 0;
}
.product__inner2 {
  /* width: calc(100% - 15px * 2); */
  margin: 0px 20px 0;
}

.product3{
	margin: 80px 0 50px;
}
.product__inner3 {
  /* width: calc(100% - 15px * 2); */
  margin: 0px 20px 0;
}
.product4 {
  background: radial-gradient(rgba(255, 255, 255, 1) 30% ,rgba(198, 213, 230, 1) 100%, rgba(115, 155, 200, 1));
  height: auto;
  color: #3b3b3b;
  display: flex;
  align-items: center;
  justify-content: center;

  /* 上部を斜めにカット */
  clip-path: polygon(0 0px, 100% 0px, 100% 100%, 0% 100%);
}

.product__inner4 {
  /* width: calc(100% - 15px * 2); */
  margin: 100px 0px 0;
}

.product5 {
  background: radial-gradient(rgba(255, 255, 255, 1) 30% ,rgba(198, 213, 230, 1) 100%, rgba(115, 155, 200, 1));
  height: auto;
  color: #3b3b3b;
  display: flex;
  align-items: center;
  justify-content: center;

  /* 上部を斜めにカット */
}

.product__inner5 {
  margin: 80px 20px;
  text-align: left;
}
.fukidashi-01-06 {
  position: relative;
  margin: 0px auto;
  width: 80%;
  color: #141414;
  padding: 19px 0px 0;
  background-color: #fff;
  border: 1px solid #739bc8;
}
.fukidashi-01-06::before {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  background-color: #ffffff; /* 背景色と同じ色を指定 */
  rotate: 135deg;
  translate: -50%;
}
.fukidashi-01-06::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  border: 1px solid;
  border-color: #739bc8 #739bc8 transparent transparent;
  rotate: 135deg;
  translate: -50%;
}
.nenkan{
	margin: 30px auto;
	width: 90%;
}
.beaf{
	display: flex;
	gap: 20px;
	justify-content: space-between;
}
.beaf img{
	width: 100%;
}

/*----------
レビュー
----------*/
.review{
	margin: 50px 0 0;
}
.review img{
	width: 5%;
}
.user{
	border-bottom: solid 1px #000;
	letter-spacing: 1px;
}
.okyaku{
	letter-spacing: 1px;
	font-size: 30px;
}
.user p{
	font-size: 16px;
	line-height: 1;
}
.okyaku p{
	font-size: 25px;
}

.irast_flex{
	margin: 30px auto;
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.irast_flex_2{
	margin: 30px auto;
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.irast_flex_2 .irast{
	order: 1;
}
.irast{
    width: 30%;
}
.comment{
	width: 55%;
	background-color: #fff;
	padding: 15px 20px;
	border-radius: 15px;
}
.comment p{
	text-align: justify;
	font-size: 12px;
	letter-spacing: 1px;
	line-height: 17px;
}

/*----------
痩身技術
----------*/
.container {
      position: relative;
      margin: 0 auto;
      color: white;
      padding: 10px 0px;
    }

    .main-title {
      font-size: 55px;
      text-align: center;
      margin-bottom: 19px;
      line-height: 49px;
    }
.main-title span{
	font-size: 23px;
}

    .block {
      display: flex;
      align-items: baseline;
      margin-bottom: 30px;
      text-align: left;
    }

    .number {
      flex: 0 0 auto;
      font-size: 32px;
      background: #fff;
      color: #c39200;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      text-align: center;
      line-height: 60px;
      letter-spacing: 2px;
      font-weight: bold;
      margin-right: 20px;
    }

    .text {
      font-size: 18px;
      line-height: 1.7;
    }

    .text .title {
      font-size: 22px;
      margin-bottom: 8px;
    }

    .text .comment2 {
      font-size: 14px;
      margin-top: 5px;
      border-bottom: solid 1px #fff;
    }


/*----------
コースの流れ
----------*/
.course img{
	width: 90%;
	padding-bottom: 20px;
}
 .step-box {
      max-width: 600px;
      margin: 0 auto;
      background: white;
      border: 1px solid #739bc8;
      padding: 20px;
      text-align: center;
      margin-bottom: 20px;
    }

    .step-box img {
      width: 100%;
      height: auto;
      border-radius: 4px;
    }
.step{
	display: flex;
	align-items: baseline;
	gap: 10px;
	padding: 0px 0 10px;
}
    .step-label {
      display: inline-block;
      background-color: #739bc8;
      color: white;
      padding: 5px 15px;
      border-radius: 20px;
      margin-top: 15px;
      font-size: 17px;
      letter-spacing: 2px;
    }

    .step-title {
      font-size: 20px;
      margin: 10px 0 5px;
      text-align: left;
      line-height: 25px;
    }

    .step-desc {
      font-size: 16px;
      color: #333;
      line-height: 25px;
      text-align: left;
    }

    .arrow {
      text-align: center;
      font-size: 36px;
      color: #7da2c1;
      margin-bottom: 20px;
      animation: moveArrow 1.5s infinite;
    }

    @keyframes moveArrow {
      0% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(10px);
      }
      100% {
        transform: translateY(0);
      }
    }
.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 50px solid transparent;
  border-left: 50px solid transparent;
  border-top: 60px solid #555555;
  border-bottom: 0;
}
    .arrow::before {
      content: "▼";
      font-size: 48px;
      color: #739bc8;
    }
@media only screen and (min-width: 768px) {
  .product__inner {
    /* width: calc(100% - 50px * 2); */
  }
}

/*----------
最後まで見てくれたあなたへ
----------*/
.end_title p{
	border-bottom: solid 1px #3b3b3b;
	color: #3b3b3b;
	padding: 5px;
	font-size: 25px;
	width: 75%;
	margin: 0 auto;
}
.end_title img{
	width: 80%;
	padding: 20px;
}

/*ダブメニュー*/
.tab-menu {
      display: flex;
      justify-content: center;
    }

    .tab-button {
      flex: 1;
      border-radius: 10px 10px 0 0;
      text-align: center;
      padding: 12px;
      background: #fff;
      cursor: pointer;
      color: #3b3b3b;
      transition: all 0.3s;
    }

    .tab-button.active {
      background: #fff; /* 青背景 */
      color: #3b3b3b;
    }

    .tab-content {
      display: none;
      background: #fff;
      padding: 50px 0 50px;
      margin: 0 auto;
      text-align: center;
    }

    .tab-content.active {
      display: block;
    }

    .tab-content img {
      width: 80%;
      margin-bottom: 16px;
    }

    .subtitle {
      font-size: 21px;
      margin-bottom: 20px;
    }

    .text {
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .section-btn {
      display: inline-block;
      padding: 8px 30px;
      border-radius: 20px;
      background: #c6d5e6;
      font-size: 14px;
      margin-bottom: 20px;
    }

    .price-box {
    }


    .note {
      font-size: 14px;
      color: #555;
      font-weight: bold;
    }

.message-box {
 padding: 0.5em 1em;
 margin: 2em 0;
 background-color: #6f93b8; /* ブルー背景（画像に近い色） */
 color: #fff; /* 白文字 */
   /* 画像に近い明朝体 */
 font-family: serif;
}
.message-box p{
  font-size: 14px;
  text-align: center;
  margin: 0; 
  padding: 0;
}


/*----------
footer
----------*/

h3 {
      font-weight: 600;
      font-size: 24px;
      text-align: left;
      margin-bottom: 16px;
      line-height: 1.6;
    }

    h3 span {
      border-bottom: 1px solid #333;
      display: inline-block;
      padding-bottom: 4px;
    }

    p {
      font-size: 14px;
      margin: 10px 0;
    }

    .highlight {
      font-size: 19px;
      display: block;
      margin: 15px 0;
    }

    .map {
      margin: 30px 0;
      width: 100%;
      display: flex;
    }

    .info {
      font-size: 14px;
      margin-top: 20px;
    }

    .info p {
      margin: 20px 0;
    }

    @media (min-width: 768px) {
      h2 {
        font-size: 24px;
      }
      p, .info {
        font-size: 15px;
        line-height: 30px;
        letter-spacing: 1px;
        font-weight: normal;
      }
    }

/*----------
PAGETOP
----------*/
#pagetop a {
  background: #53341E !important;
}

#pagetop a::after {
  border-left: 1px solid #FDD300 !important;
  border-top: 1px solid #FDD300 !important;
}



	
.button-fixed {
  position: fixed;
  bottom: 20px;   /* 画面下からの距離 */
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;  /* 上に重なるように */
  width: 100%;
  text-align: center;
}




/*-------------------SP----------------------*/

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

	
.button-fixed {
  margin: 0 0 -25px;
  position: fixed;
  bottom: 20px;   /* 画面下からの距離 */
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;  /* 上に重なるように */
  width: 100%;
  text-align: center;
}

   
/*----------
LEAD
----------*/
.lead__inner {
  width: calc(100% - 20px * 2);
  margin: 0px auto;
}


.original-button {
  margin: 20px 0;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  border-radius: 25px;
  width: 350px;
  height: 50px;
  transition: 0.3s;
  box-shadow: 1px 4px 4px 0px rgba(0, 0, 0, 0.25);
  background-color: [object object];
  background-image: linear-gradient(180deg, rgba(255, 220, 223, 1), rgba(255, 144, 175, 1) 45%, rgba(255, 66, 85, 1) 88%);
}

.original-button:hover {
  box-shadow: 0 0 rgba(0, 0, 0, 0);
  background-color: #fff;
}


/*----------
PRODUCT
----------*/
.product {
  background: radial-gradient(rgba(255, 255, 255, 1) 30% ,rgba(198, 213, 230, 1) 100%, rgba(115, 155, 200, 1));
  height: auto;
  color: #3b3b3b;
  display: flex;
  align-items: center;
  justify-content: center;

  /* 上部を斜めにカット */
  clip-path: polygon(0 0px, 100% 60px, 100% 100%, 0% 100%);
}

.product__inner {
  /* width: calc(100% - 15px * 2); */
  margin: 100px 10px 0;
}
.product2{
	background-image: url("../images/img8.png");
	background-size: cover;
	margin: -2px 0 0;
}
.product__inner2 {
  /* width: calc(100% - 15px * 2); */
  margin: 0px 20px 0;
}

.product3{
	margin: 70px 0 50px;
}
.product__inner3 {
  /* width: calc(100% - 15px * 2); */
  margin: 0px 20px 0;
}
.product4 {
  background: radial-gradient(rgba(255, 255, 255, 1) 30% ,rgba(198, 213, 230, 1) 100%, rgba(115, 155, 200, 1));
  height: auto;
  color: #3b3b3b;
  display: flex;
  align-items: center;
  justify-content: center;

  /* 上部を斜めにカット */
  clip-path: polygon(0 0px, 100% 0px, 100% 100%, 0% 100%);
}

.product__inner4 {
  /* width: calc(100% - 15px * 2); */
  margin: 70px 0px 0;
}

.product5 {
  background: radial-gradient(rgba(255, 255, 255, 1) 30% ,rgba(198, 213, 230, 1) 100%, rgba(115, 155, 200, 1));
  height: auto;
  color: #3b3b3b;
  display: flex;
  align-items: center;
  justify-content: center;

  /* 上部を斜めにカット */
}

.product__inner5 {
  margin: 70px 20px;
  text-align: left;
}
.fukidashi-01-06 {
  position: relative;
  margin: 0px auto;
  color: #141414;
  background-color: #fff;
  border: 1px solid #739bc8;
  font-size: 16px;
}
.fukidashi-01-06::before {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  background-color: #ffffff; /* 背景色と同じ色を指定 */
  rotate: 135deg;
  translate: -50%;
}
.fukidashi-01-06::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  border: 1px solid;
  border-color: #739bc8 #739bc8 transparent transparent;
  rotate: 135deg;
  translate: -50%;
}
.nenkan{
	margin: 30px auto;
	width: 90%;
}
.beaf{
	display: flex;
	gap: 20px;
	justify-content: space-between;
}
.beaf img{
	width: 100%;
}

/*----------
レビュー
----------*/
.review{
	margin: 50px 0 0;
}
.review img{
	width: 5%;
}
.user{
	border-bottom: solid 1px #000;
	letter-spacing: 1px;
}
.okyaku{
	letter-spacing: 1px;
	font-size: 30px;
}
.user p{
	font-size: 16px;
	line-height: 1;
}
.okyaku p{
	font-size: 25px;
}

.irast_flex{
	margin: 30px auto;
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.irast_flex_2{
	margin: 30px auto;
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.irast_flex_2 .irast{
	order: 1;
}
.irast{
    width: 30%;
}
.comment{
	width: 55%;
	background-color: #fff;
	padding: 10px 10px;
	border-radius: 15px;
}
.comment p{
	text-align: justify;
	font-size: 11px;
	letter-spacing: 1px;
	line-height: 17px;
}


/*----------
痩身技術
----------*/
.container {
      position: relative;
      margin: 0 auto;
      color: white;
      padding: 10px 0px;
    }

    .main-title {
      font-size: 48px;
      text-align: center;
      margin-bottom: 19px;
      line-height: 49px;
    }
.main-title span{
	font-size: 20px;
}

    .block {
      display: flex;
      align-items: baseline;
      margin-bottom: 0px;
      text-align: left;
    }

    .number {
      font-family: serif;
      flex: 0 0 auto;
      font-size: 28px;
      background: #fff;
      color: #c39200;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      text-align: center;
      line-height: 50px;
      letter-spacing: 0px;
      font-weight: 600;
      margin-right: 20px;
    }

    .text {
      font-size: 18px;
      line-height: 1.7;
    }

    .text .title {
      font-size: 18px;
      margin-bottom: 8px;
    }

    .text .comment2 {
      font-size: 13px;
      margin-top: 5px;
      border-bottom: solid 1px #fff;
    }


/*----------
コースの流れ
----------*/
.course img{
	width: 90%;
	padding-bottom: 20px;
}
 .step-box {
      max-width: 600px;
      margin: 0 auto;
      background: white;
      border: 1px solid #739bc8;
      padding: 20px;
      text-align: center;
      margin-bottom: 20px;
    }

    .step-box img {
      width: 100%;
      height: auto;
      border-radius: 4px;
    }
.step{
	display: flex;
	align-items: baseline;
	gap: 10px;
	padding: 0px 0 10px;
}
    .step-label {
      display: inline-block;
      background-color: #739bc8;
      color: white;
      padding: 5px 8px;
      border-radius: 20px;
      margin-top: 15px;
      font-size: 16px;
      letter-spacing: 2px;
    }

    .step-title {
      font-size: 20px;
      margin: 10px 0 5px;
      text-align: left;
      line-height: 25px;
    }

    .step-desc {
      font-size: 14px;
      color: #333;
      line-height: 25px;
      text-align: left;
    }

    .arrow {
      text-align: center;
      font-size: 36px;
      color: #7da2c1;
      margin-bottom: 20px;
      animation: moveArrow 1.5s infinite;
    }

    @keyframes moveArrow {
      0% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(10px);
      }
      100% {
        transform: translateY(0);
      }
    }
.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 50px solid transparent;
  border-left: 50px solid transparent;
  border-top: 60px solid #555555;
  border-bottom: 0;
}
    .arrow::before {
      content: "▼";
      font-size: 48px;
      color: #739bc8;
    }

/*----------
最後まで見てくれたあなたへ
----------*/
.end_title p{
	border-bottom: solid 1px #3b3b3b;
	color: #3b3b3b;
	padding: 8px;
	font-size: 22px;
	width: 75%;
	margin: 0 auto;
}
.end_title img{
	width: 80%;
	padding: 20px 20px 30px;
}

/*ダブメニュー*/
.tab-menu {
      display: flex;
      justify-content: center;
    }

    .tab-button {
      flex: 1;
      border-radius: 10px 10px 0 0;
      text-align: center;
      padding: 12px;
      background: #739bc8;
      cursor: pointer;
      color: #fff;
      transition: all 0.3s;
      font-size: 16px;
    }

    .tab-button.active {
      background: #fff; /* 青背景 */
      color: #3b3b3b;
    }

    .tab-content {
      display: none;
      background: #fff;
      padding: 50px 20px 50px;
      margin: 0 auto;
      text-align: center;
    }

    .tab-content.active {
      display: block;
    }

    .tab-content img {
      width: 100%;
      margin-bottom: 16px;
    }

    .subtitle {
      font-size: 16px;
      margin-bottom: 20px;
    }

    .text {
      font-size: 13px;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .section-btn {
      display: inline-block;
      padding: 8px 30px;
      border-radius: 20px;
      background: #c6d5e6;
      font-size: 14px;
      margin-bottom: 20px;
    }

    .price-box {
    }


    .note {
      font-size: 13px;
      color: #555;
      font-weight: bold;
    }

.message-box {
 padding: 0.5em 1em;
 margin: 2em 0;
 background-color: #6f93b8; /* ブルー背景（画像に近い色） */
 color: #fff; /* 白文字 */
   /* 画像に近い明朝体 */
 font-family: serif;
}
.message-box p{
  font-size: 14px;
  text-align: center;
  margin: 0; 
  padding: 0;
}

/*----------
footer
----------*/

h3 {
      font-weight: 600;
      font-size: 19px;
      text-align: left;
      margin-bottom: 16px;
      line-height: 1.6;
    }

    h3 span {
      border-bottom: 1px solid #333;
      display: inline-block;
      padding-bottom: 2px;
    }

   .product__inner5 p {
      font-size: 12px;
      margin: 10px 0;
      line-height: 28px;
      letter-spacing: 0px;
      font-weight: normal;
    }

    .product__inner5 .highlight {
      font-size: 15px;
      display: block;
      margin: 15px 0;
    }

    .map {
      margin: 30px 0;
      width: 100%;
      display: flex;
    }

    .info {
      font-size: 14px;
      margin-top: 20px;
    }

    .info p {
      margin: 20px 0;
    }

	
}