@charset "utf-8";

/* CSS Document */
body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  line-height: 28px;
  margin: 0;
  -webkit-text-size-adjust: 100%;
}

body * {
  box-sizing: border-box;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width:767px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}

/* PCとSPの改行切り替え */
@media screen and (min-width: 767px) {
  .br-pc {
    display: block;
  }

  .br-sp {
    display: none;
  }
}

@media only screen and (max-width:768px) {
  .br-pc {
    display: none;
  }

  .br-sp {
    display: block;
  }
}

.clear{
	clear : both;
}
.center{
	text-align : center;
}
.font-120{
	font-size : 120%;
}
.space_m{
	height : 20px;
}
rt {
  font-size: 20px;
  text-align: center;
}

.header {
    background-color: #555151;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* アニメーション前のスタイル */
.js-marker {
	font-size : 20px;
  display: inline;
  position: relative;
  background-image: linear-gradient(90deg, #f1ccd5, #f1ccd5);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 80%;
  transition: all 2s ease-in-out;
  font-weight: bold;
}

/* アニメーション発火時 */
.js-marker.inview {
  background-size: 100% 80%; /* '30%'の部分は上で設定した太さに合わせる */
}

/*POINT*/
.point1-box{
	background-color: #fff;	/* 背景色 */
	border: 2px solid #ad2772;	/* 線の太さ・種類・色 */
	border-radius: 5px;
	margin: 20px 0px 5px 0px;	/* 外側の余白 上・右・左・下 */
	padding: 30px 20px 10px 20px;	/* 内側の余白 上・右・左・下 */
	position: relative;
}
.point1-box:before{
	background-color: #ad2772;	/* 吹き出し背景色 */
	border-radius: 5px;
	color: #fff;	/* 吹き出し文字色 */
	content: 'POINT-1';
	padding: 5px 20px;
	position: absolute;
	left: -10px;
	top: -20px;
}
.point1-box:after{
	border-top: 15px solid #ad2772;		/* 吹き出し三角部分の色 */
	border-right: 15px solid transparent;
	border-left: 15px solid transparent;
	content: '';
	position: absolute;
	top: 15px;
	left: 16px;
}
.point2-box{
	background-color: #fff;	/* 背景色 */
	border: 2px solid #ad2772;	/* 線の太さ・種類・色 */
	border-radius: 5px;
	margin: 20px 0px 5px 0px;	/* 外側の余白 上・右・左・下 */
	padding: 30px 20px 10px 20px;	/* 内側の余白 上・右・左・下 */
	position: relative;
}
.point2-box:before{
	background-color: #ad2772;	/* 吹き出し背景色 */
	border-radius: 5px;
	color: #fff;	/* 吹き出し文字色 */
	content: 'POINT-2';
	padding: 5px 20px;
	position: absolute;
	left: -10px;
	top: -20px;
}
.point2-box:after{
	border-top: 15px solid #ad2772;		/* 吹き出し三角部分の色 */
	border-right: 15px solid transparent;
	border-left: 15px solid transparent;
	content: '';
	position: absolute;
	top: 15px;
	left: 16px;
}
.point-ttl{
	font-size : 1.7em;
	font-family: 'Shippori Mincho B1', serif;
	color : #ad2772;
	text-align : center;
	margin-top : 15px;
	margin-bottom : 15px;
}
.point-ttl span{
	font-size : 0.8em;
}
.point-img{
	text-align : center;
	margin-bottom : 15px;
}





/*フロー*/
.flow {
	width : 100%;
  display: flex;
  justify-content: center;
  align-items: center;
	margin : 40px 0px;
}

.flow-in {
  padding-left: 0;
	width : 100%;
}

.flow-in > li {
  list-style-type: none;
  border: 2px solid #555151;
  padding: 20px;
  border-radius: 10px;
}

.flow-in > li:not(:last-child) {
  margin-bottom: 40px;
  position: relative;
}

.flow-in > li:not(:last-child)::after {
  content: '';
  position: absolute;
  border: 20px solid transparent;
  width: 0;
  height: 0;
  bottom: -53px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  border-top-color: #691faf;
}

.flow-in > li dl dt {
  font-size: 1.3em;
  font-weight: bold;
  border-bottom: 2pt dashed #9788a5;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}

.flow-in > li .flow-icon {
  color: #691faf;
  margin-right: 0.5em;
}

.flow-in > li dl dd {
  margin: 0;
}
 
/*お写真見本の注意書き*/
.mihon ul {
    list-style-type: none;
	margin-top : 25px;
}

.mihon li {
    display: flex;
    align-items: flex-start;
}

.mihon li:before {
    content: "◆";
    margin-right: 5px;
    vertical-align: top;
}

.mihon li span {
    flex: 1;
}

/*申し込み時の注意書き*/
.order-tyui ul {
    list-style-type: none;
	margin-top : 0px;
	font-weight : 600;
}

.order-tyui li {
    display: flex;
    align-items: flex-start;
}

.order-tyui li:before {
    content: "※";
    margin-right: 5px;
    vertical-align: top;
}

.order-tyui li span {
    flex: 1;
}

.doui ul {
  padding-left: 0px;
  margin-left: -40px;
  list-style: none;
  font-size: 20px;
  font-weight: 600;
}

.price {
  text-align: center;
  padding: 15px;
}

/* リストアイテムスタイル */
.doui li {
  padding-left: 38px;
  display: flex;
  align-items: flex-start; /* アイコンとテキストの上端揃え */
  margin-bottom: 15px;
}

.doui li i {
  vertical-align: middle; /* アイコンの垂直位置を中央に調整 */
  margin-right: 10px; /* アイコンとテキストの間にスペースを追加 */
}
.hoshi ul {
    list-style-type: none; /* リストのマーカーを非表示にする */
}

.hoshi li {
    display: flex; /* リストアイテム内の要素を横に配置 */
    align-items: flex-start; /* テキストを上端に配置 */
}

.hoshi li:before {
    content: "※"; /* リストアイテムの前に※を挿入する */
    margin-right: 5px; /* ※とテキストの間に少しのスペースを追加 */
    vertical-align: top; /* ※をテキストの上端に配置 */
}

.hoshi li span {
    flex: 1; /* テキストを残りのスペースいっぱいに広げる */
}

/* FontAwesomeアイコンのスタイル */
.doui li i {
  font-size: 26px;
  color: #cc0000;
  margin-right: 10px;
}
.doui_icon{
	font-size : 28px;
	color : #cc0000;
}
    
.btn{
	text-align : center;
	margin : 5px 0px;
}

img.bounce {
	-webkit-animation: bounce 1.8s linear infinite;
	animation: bounce 1.8s linear infinite;
}

@-webkit-keyframes bounce {
	0% {
		-webkit-transform: scale( 1 );
		transform: scale( 1 );
	}
	25% {
		-webkit-transform: scale( 1.05 );
		transform: scale( 1.05 );
	}
	40% {
		-webkit-transform: scale( 0.85 );
		transform: scale( 0.85 );
	}
	50% {
		-webkit-transform: scale( 1.05 );
		transform: scale( 1.05 );
	}
	60% {
		-webkit-transform: scale( 0.93 );
		transform: scale( 0.93 );
	}
	70% {
		-webkit-transform: scale( 1.03 );
		transform: scale( 1.03 );
	}
	80% {
		-webkit-transform: scale( 0.95 );
		transform: scale( 0.95 );
	}
	90% {
		-webkit-transform: scale( 1.01 );
		transform: scale( 1.01 );
	}
	100% {
		-webkit-transform: scale( 1 );
		transform: scale( 1 );
	}
}

@keyframes bounce {
	0% {
		-webkit-transform: scale( 1 );
		transform: scale( 1 );
	}
	25% {
		-webkit-transform: scale( 1.05 );
		transform: scale( 1.05 );
	}
	40% {
		-webkit-transform: scale( 0.85 );
		transform: scale( 0.85 );
	}
	50% {
		-webkit-transform: scale( 1.05 );
		transform: scale( 1.05 );
	}
	60% {
		-webkit-transform: scale( 0.93 );
		transform: scale( 0.93 );
	}
	70% {
		-webkit-transform: scale( 1.03 );
		transform: scale( 1.03 );
	}
	80% {
		-webkit-transform: scale( 0.95 );
		transform: scale( 0.95 );
	}
	90% {
		-webkit-transform: scale( 1.01 );
		transform: scale( 1.01 );
	}
	100% {
		-webkit-transform: scale( 1 );
		transform: scale( 1 );
	}
}

/* -- responsive ----------------------------------------------------------------------------------------------------------------- */

/* 640pixel start */
@media screen and ( max-width: 640px ){

img.bounce {
	max-width: 100%;
}

}

/*よくある質問*/
.faq{
	margin-top : 40px;
}
.faq dt {
    margin-bottom: 1em;
    color: #000;
    font-weight: 600;
}

.faq dt::before,
.faq dd::before {
    margin-right: .4em;
}

.faq dt::before {
    content: "Q.";
}

.faq dd {
    margin: 0 0 2.5em;
    padding: 1em 1.5em;
    background-color: #e1eff3;
    color: #000;
}

.faq dd::before {
    content: "A.";
}

/*特商法*/
.tokutei {
  border-collapse: collapse;
  width: 100%;
}
 
.tokutei th,
.tokutei td {
  border: 1px solid #dbe1e8;  
  padding: 8px;
}
 
.tokutei th {
  background: #f9fafc;
  text-align: left;
  width: 25%;
}
 
@media only screen and (max-width: 800px) {
  .tokutei tr,
  .tokutei th,
  .tokutei td {
    display: block;
    width: auto;
  }
  
  .tokutei tr:first-child {
    border-top: 1px solid #dbe1e8;  
  }
  
  .tokutei th,
  .tokutei td {
    border-top: none;
  }
}


#footer{
	width : 100%;
	padding : 30px 0px;
	text-align : center;
	font-size : 13px;
	background : #000;
	color : #fff;
}
#footer a{
	text-decoration : none;
	color : #fff;
	font-size : 16px;
}
	