@charset "UTF-8";

@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
body {
	font-family: 'Noto Sans Japanese', sans-serif !important;
	line-height: 1.4;
	text-align: left;
}
/*＝＝＝＝＝＝共通指定＝＝＝＝＝＝＝＝*/

html {
	scroll-behavior: smooth;
	scroll-padding-top: 10%; 
}



.flex{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.select_btn a{
	 text-decoration: none; 
	color: #000000;
	transition: all .3s;
}
.select_btn a:hover{
	color: #bd9a54;
}
.make_base ul li a{
	transition: all .3s;
	
}
.make_base ul li a:hover{
	    filter: brightness(90%);
}
sup{
	font-size: 16px;
	vertical-align: top;
}
.sup_01{
		font-size: 10px;
	vertical-align: top;
	}
.sup_margin{
		letter-spacing: -9px;
	}
.sp{
	display: none;
}
.pc{
	display: block;
}
ul {
  list-style: none; /* 黒ポチを消す */
  padding-left: 0;  /* 左の余白を詰める */
}
.noevir5-online-shop{
	width: 215px;
	height: auto;
}
.noevir5_main img{
	width: 100%;
	height: auto;
}
.product_name{
	font-size: 20px;
	color: #bd9a54;
}

/*見出し設定*/
.noevir5_main h3{
	font-size: 24px;
	margin-bottom: 140px;
	position: relative;
}

.noevir5_main h3:before {
	position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    height: 1px;
    content: '';
    background: #003679;
}

.noevir5_main h3 span {
  position: relative;
  background: #fff;
		padding-right: 15px;
	font-weight: 100;
    top: -2px;
}
/*オンラインショップボタン*/
.noevir5-online-shop{
	width: 200px;
    height: auto;
    margin: 0 auto;
}

/*モーダルウィンドウ*/
/* +moreボタン */
.more-btn {
	width: 130px;
	display: block;
    margin: 0 auto;
    background-color: #fff;
    color: #003679;
    border: 1.5px solid #003679;
    padding: 3px 16px;
    font-size: 16px;
    border-radius: 9px;
    cursor: pointer;
    transition: 0.3s;
}
.more-btn:hover {
  background-color: #003679;
  color: #fff;
}

/* モーダル背景 */
.modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center; /* 横中央 */
  align-items: center;     /* 縦中央 */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 10px; /* 余白確保 */
  box-sizing: border-box;
}

/* モーダル表示時 */
.modal.show {
  opacity: 1;
  pointer-events: auto;
}

/* モーダル内容 */
.modal-content {
  background-color: #fff;
  width: 80%;
  max-width: 1000px;
  max-height: 90vh; /* 画面サイズに応じる */
  padding: 0 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: scale(0.8); /* 開始時小さく */
  transition: transform 0.4s ease, opacity 0.4s ease;
  border: 2px solid #003679;
  box-sizing: border-box;
  overflow: hidden; /* 親でのスクロール干渉防止 */
}

/* モーダル表示時 */
.modal.show .modal-content {
  transform: scale(1);
  opacity: 1;
}

/* モーダル本文 */
.modal-body {
  overflow-y: auto;       /* 内容のみスクロール */
  flex: 1 1 auto;
  max-height: calc(90vh - 80px); /* 上下余白とバツボタンを考慮 */
  padding-bottom: 10px;
	padding-bottom: 40px;
    padding-top: 40px;
	margin: 0 auto;
	width: 90%;
}
/*モーダル01*/
.modal .modal_01{
	width: 464px;
    margin: 0 auto;
}
.modal .modal_01 .h2_01{
	font-weight: 300;
	font-size: 24px;
	display: block;
    text-align: center;
}
.sub_title01{
	font-weight: bold;
	font-size: 18px;
	margin-bottom: -5px;
    display: block;
}
.sub_title02{
	font-weight: bold;
	font-size: 18px;
}


/*モーダル02*/
.modal .modal_02 h2{
	width: 360px;
    height: auto;
    margin: 0 auto;
	font-weight: 300;
	font-size: 24px;
	text-align: center;
}

.modal .modal_02 .flex{
	width: 530px;
    margin: 0 auto;
    align-items: center;
    margin-top: 15px;
	justify-content: space-evenly;
}
.modal .modal_02 .flex div:nth-child(2){
	width: 260px;
}

	.modal .modal_02 .flex .flex_p{
		width: 47%;
	}

.kerning{
	margin-left: -15px;
}
/*モーダル03*/
.modal .modal_03 h2{
	width: 484px;
    margin: 0 auto;
	font-weight: 300;
	font-size: 24px;
	text-align: center;
}
.modal .modal_03 .flex{
	width: 488px;
    margin: 0 auto;
    align-items: center;
}

	.modal .modal_03 .flex .flex_p{
		    width: 230px;
    margin-top: 59px;
	}
.modal .modal_03 .flex .modal_03_p img{
	width: 20px;
    margin-bottom: -3px;
	margin-left: 5px;
}
.modal .modal-content .modal_03 small{
	width: 600px;
}


/* スクロールバー非表示 */
.modal-body::-webkit-scrollbar {
  width: 0;
  background: transparent;
}
.modal-body {
  scrollbar-width: none; /* Firefox */
}

/* 丸い青バツボタン */
.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border: 1.5px solid #003679;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

/* ×の線を作る */
.close-btn::before,
.close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  background-color: #003679;
  transform-origin: center;
}

/* 斜め線① */
.close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

/* 斜め線② */
.close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ホバー時 */
.close-btn:hover {
  background-color: #003679;
}

.close-btn:hover::before,
.close-btn:hover::after {
  background-color: #fff;
}

/* 下部 close ボタン */
.modal-close-btn {
	display: block;
    margin: 40px auto 0;
    background-color: #bd9a54;
    color: #fff;
    border: none;
    padding: 10px 70px;
    font-size: 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}
.modal-close-btn:hover {
  background-color: #8d7a55;
}

/* 商品名リスト */
.product_name {
	margin: 8px 0;
	line-height: 1.4;
	font-size: 20px;
	margin-bottom: 15px;
}
.adjustment{
	margin-bottom: 39px;
}

/*＝＝＝＝＝＝共通指定＝＝＝＝＝＝＝＝*/


/*---------▼PC設定▼----------*/
.noevir5_main{
	width: 100%;
	height: auto;
	margin: 0 auto;
}

/*KV*/
.noevir5_top{
	width: 100%;
	height: 60vh;
	height: calc(764 / 1366 * 67vw);
	background-image: url("../img/pc_background.png");
	background-size: cover;
}
.noevir5_top p{
	width: 55%;
	margin: 0 auto;
    height: auto;
	padding-top: 100px;
}
.noevir5_top p img{
	width: 100%;
	height: auto;
}

/*selectボタン*/
.select_btn{
	width: 1000px;
	height: auto;
	margin: 0 auto;
    justify-content: space-evenly;
	margin-bottom: 200px;
	margin-top: 100px;
}
.select_btn p{
	width: 260px;
	height: auto;
	text-align: center;
	font-weight: 500;
	font-size: 20px;
}

/*メイクアップベース*/
.make_base{
	width: 1000px;
	height: auto;
	margin: 0 auto;
}
.make_base ul{
	justify-content: space-between;
}

.make_base ul li{
	width: 295px;
}

.make_base ul li .make_base_img{
	width: 100%;
	height: auto;
}
.make_base ul::after{
	content:"";
	display: block;
	width: 295px;
}


/*モーダルウィンドウ*/



/*ファンデーション*/

.foundation {
	margin-top: 100px;
}

.foundation ul li{
	margin-bottom: 120px;
}
.modal-body small{
	display: block;
	margin: 0 auto;
	font-size: 12px;
}

.modal_04 h2{
	max-width: 696px;
    margin: 0 auto;
}

.modal_04 small{
	margin-top: 20px;
}

.modal_05 small{
margin-top: 20px;
}

.modal_05 h2{
	width: 576px;
    margin: 0 auto;
	
}
.modal_06  .flex {
	align-items: center;
	justify-content: center;
	width: 760px;
    margin: 0 auto;
}
.modal_06  div small{
	    width: 336px;
    font-size: 12px;
}

.modal_07 h2{
	max-width: 551px;
    margin: 0 auto;
}
.modal_07 small{
	width: 620px;
	margin-top: 20px;
}


/*---------▲PC設定▲----------*/

/*---------▼タブレット設定▼----------*/

@media (max-width: 1110px) {
	/*KV*/
.noevir5_top p {
    width: 55%;
    margin: 0 auto;
    height: auto;
    padding-top: 8%;
}
	
	.select_btn p{
	width: 230px;
}
	
.make_base{
	width: 100%;
	height: auto;
	margin: 0 auto;
	margin-bottom: 100px;
}
	/*見出し設定*/
.noevir5_main h3{
	font-size: 24px;
	position: relative;
	width: 90%;
	margin: 0 auto;
	margin-bottom: 100px;
}
	/*selectボタン*/
.select_btn{
	width: 100%;
	height: auto;
	margin: 0 auto;
    justify-content: space-evenly;
	margin-bottom: 200px;
	margin-top: 10%;
}
	.make_base ul{
		margin-left: 60px;
		margin-right: 60px;
	}
	.make_base ul li{
	width: 30%;
}

.make_base ul::after{
	content:"";
	display: block;
	width: 30%;
}
	
	.product_name {
    margin: 8px 0;
    line-height: 1.4;
    font-size: 1.7vw;
}
	.flex .product_information{
		font-size: 1.4vw;
	}
	.adjustment{
	margin-bottom: 3.4vw;
}
	.modal .modal_01 {
    width: 49.4vw;
    margin: 0 auto;
}
	.sub_title01 {
    font-weight: bold;
    font-size: 1.7vw;
    margin-bottom: -5px;
    display: block;
}
	
	.modal_01_p{
		font-size: 1.7vw;
	}
	
	.modal .modal_01 .h2_01 {
    font-weight: 300;
    font-size: 2.2vw;
}
	.modal_01 h2, .modal_02 h2, .modal_03 h2, .modal_04 h2, .modal_05 h2, .modal_06 h2, .modal_07 h2 {
        font-size: 2.2vw;
    }

		.flex .sub_title02 {
        font-size: 1.7vw;
    }
	.flex .modal_sub_p{
		font-size: 1.7vw;
	}
	
	.modal .modal_02 h2 {
    width: 33vw;
    margin: 0 auto;
		font-size: 2.2vw;
		
}
	.modal .modal_02 .flex {
    width: 100%;
    margin: 0 auto;
    align-items: center;
		justify-content: center;
		margin-top: 10px;
}
	.modal_02 .flex div{
		width: 25vw;
	}
	.modal .modal_02 .flex .flex_p{
		width: 35%;
	}
	
	.modal .modal_03 .flex {
    width: 100%;
		margin: 0 auto;
		justify-content: center;
		margin-top: 10px;
}
	.modal .modal_03 .flex div{
		width: 23vw;
	}
	.modal .modal_03 .flex .flex_p{
		width: 30%;
		margin-top: 10%;
	}
		.modal .modal_03 h2 {
    width: 46vw;
			        font-size: 2.2vw;
}
	
	.modal .modal-content .modal_03 small{
		width: 50vw;
}

	
	
	
	.modal_04 h2{
	max-width: 64vw;
    margin: 0 auto;
}
	.modal-body small{
	display: block;
	margin: 0 auto;
	font-size: 1vw;
		
}
	
	.modal_04 small{
		margin-top: 3%;
	}

.modal_05 h2{
	width: 576px;
    margin: 0 auto;
	
}
	.modal_05 small{
		margin-top: 3%;
	}
	
.modal_06  .flex {
	align-items: center;
	justify-content: center;
	width: 100%;
}
	.modal_06  .flex p{
		width: 42%;
    margin: 0 auto;
	}
.modal_06  div small{
	    width: 44%;
	height: auto;
    font-size: 1vw;
}

.modal_07 h2{
	max-width: 51vw;
    margin: 0 auto;
}
.modal_07 small{
	width: 620px;
	margin-top: 3%;
}
	
	.modal-close-btn {
   font-size: 3.2vw;
}

	sup {
    font-size: 1.5vw;
}
.sup_margin{
		letter-spacing: -1vw;
	}

	

/*メイクアップベース*/

}

/*---------▲タブレット設定▲----------*/

@media (max-width: 950px){
	    .noevir5_top p {
        width: 55%;
        margin: 0 auto;
        height: auto;
        padding-top: 4%;
    }
} 


/*---------▼スマホ設定▼----------*/

@media (max-width: 730px) {
	.pc{
		display: none;
	}
	
	.sp{
	display: block;
}
	.noevir5_top_sp{
		margin-top: 52px;
	}
.make_base{
	width: 100%;
	height: auto;
	margin: 0 auto;
}
	
	/*フォントサイズ*/
	.product_name {
		margin: 8px 0;
		line-height: 1.4;
		font-size: 14px;
		text-align: center;
}
	.flex .product_information  {
		font-size: 12px;
		text-align: center;
	}
	/*selectボタン*/
.select_btn{
	width: 100%;
	height: auto;
	margin: 0 auto;
    justify-content: space-evenly;
	margin-bottom: 70px;
	display: block;
	margin-top: 60px;
}
	.select_btn div{
		width: 40%;
    margin: 0 auto;
		margin-bottom: 5%;
	}
.select_btn p{
	width: 100%;
	height: auto;
	text-align: center;
	font-size: 16px;
}
	.make_base ul{
		margin-left: 10px;
		margin-right: 10px;
	}
	.make_base ul li{
	width: 45%;
		margin-bottom: 60px;
}

.make_base ul::after{
	content:"";
	display: block;
	width: 45%;
}
	.noevir5-online-shop {
		width: 100%;
		height: auto;
		margin: 0 auto;
}
	

/*大見出し*/
	
	.noevir5_main h3 {
  position: relative;
  text-align: center;
		margin-bottom: 10%;
}

.noevir5_main h3:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 1px;
  content: '';
  background: #003679;
}

.noevir5_main h3 span{
  position: relative;
  padding: 0 1em;
  background: #fff;
	font-weight: 100;
	font-size: 4.5vw;
	top: -2px;
}
	
/*見出し設定*/

/*オンラインショップボタン*/
	.more-btn {
		width: 50%;
        height: 7%;
		font-size: 3vw;

}
	.more-btn {
		background-color: #003679;
		color: #fff;
		border: 1.5px solid #003679;
}
	.make_base ul li{
  display: flex;
  flex-direction: column;
}

.noevir5-online-shop{
  margin-top: auto;
}
	.modal-content{
		width: 100%;
		padding: 0 5px;
	}
	.modal_04 h2 {
    width: 100%;
    margin: 0 auto;
    font-size: 12px;
    text-align: center;
}
	.modal_01 h2 , .modal_02 h2 , .modal_03 h2 , .modal_04 h2 , .modal_05 h2 , .modal_06 h2 , .modal_07 h2{
    width: 100%;
    margin: 0 auto;
    font-size: 3.8vw;
    text-align: center;
}
	.sub_title02 {
    font-weight: bold;
   font-size: 3.8vw;
}
	.modal .modal_01 {
    width: 100%;
    margin: 0 auto;
}
	.modal .modal_01 p{
		text-align: center;
		font-size: 3.8vw;
	}
	
		.modal_01_p{
		font-size: 3vw;
        display: block;
        line-height: 1.5;
	}
	
	.modal .modal_01 .h2_01 {
    font-weight: 300;
    font-size: 2.2vw;
}
	
	/*モーダル02*/
	.flex .sub_title02 {
        font-size: 3.8vw;
        width: 27vw;
		margin: 0 auto;
    }
	.flex .modal_sub_p{
		width: 45vw;
        margin: 0 auto;
        font-size: 3vw;
        text-align: center;
        margin-top: 3%;
	}
	
	.modal .modal_02 h2 {
    width: 57vw;
    margin: 0 auto;
		font-size: 3.8vw;
}
	.modal .modal_02 .flex {
    width: 100%;
    margin: 0 auto;
    align-items: center;
		justify-content: center;
		display: block;
}
	.modal_02 .flex div{
		width: 100%;
		margin: 0 auto;
		margin-top: 5%;
		margin-bottom: 5%;
	}
	.modal .modal_02 .flex .flex_p{
		width: 50%;
        margin: 0 auto;
		
	}
	
	
	/*モーダル03*/
	 .modal .modal_03 .flex div {
        width: 100%;
		 margin-bottom: 5%;
		 margin-top: 5%;
    }
	.modal .modal_03 {
    width: 100%;
    margin: 0 auto;
}
	.modal .modal_03 h2 {
    width: 100%;
    margin: 0 auto;
		font-size: 3.8vw;
}
	.modal .modal_03 .flex {
    width: 100%;
    align-items: center;
    display: block;
    text-align: center;
}
	.modal .modal_03 .modal_03_p{
		font-size: 3.0vw;
		width: 50vw;
	}
	.modal .modal_03 .flex .flex_p {
        width: 40%;
        margin-top: 10%;
        margin: 0 auto;
    }
	.modal .modal_03 .flex .modal_03_p img {
    width: 4.5vw;
    margin-bottom: -1px;
    margin-left: 5px;
}
	.modal .modal-content .modal_03 small {
        width: 31vw;
    }
	
		/*モーダル04*/
	.modal .modal_04 {
    width: 100%;
    margin: 0 auto;
}
	.modal_04 small {
		width: 72vw;
	}
	
		/*モーダル05*/	
	.modal .modal_05 {
    width: 100%;
    margin: 0 auto;
}
	.modal .modal_06 .flex p{
		width: 65%;
		margin: 0 auto;
		margin-top: 10px;
	}
	.modal .modal_07 {
    width: 100%;
    margin: 0 auto;
}
	.modal_07 small {
    width: 100%;
}
	.modal-body small {
		width: 100%;
		font-size: 1.7vw;
	}
	
	.close-btn {
		top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
}
	.modal-close-btn {
    margin: 40px auto 0;
        padding: 2% 30%;
        font-size: 5vw;
}
	.modal_06 div small  {
      width: 68%;
        font-size: 1.7vw;
}
	.modal_07 h2 {
        max-width: 69vw;
    }
	
	.modal .modal_01 .h2_01 {
    font-weight: 300;
    font-size: 3.8vw;
}
	.sub_title01 {
    font-weight: bold;
    font-size: 3.8vw;;
    margin-bottom: -3%;
    display: block;
    text-align: center;
}
	sup{
	font-size: 2vw;
}
	.sup_01{
		font-size: 10px;
	}
		.modal_03 small{
		width: 42vw;
		margin: 0 auto;
			margin-top: 3vw;
	}
	.sup_margin{
		letter-spacing: -1vw;
	}

}
@media (max-width: 950px) {
	.noevir5_top{
		padding-top: 8%;
	}
}

/* スマホだけ */
@media (max-width: 730px) {
  .make_base ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .make_base ul li {
    display: flex;
    flex-direction: column;
    width: calc(50% - 10px);
  }
  .make_base ul li .product_information {
    margin-top: auto;
  }
  .make_base ul li .noevir5-online-shop {
    margin-top: 10px;
  }
	.product_name {
    min-height: 3.5em; /* 2〜3行分に調整 */
  }
}


/* EC shop Link Area */

/* EC shop Link Area */

.link_StyleShop {
  /*font-family: "Noto Sans JP","Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";*/
  font-family: 'Noto Serif', 'Noto Serif JP', serif;    
  font-weight: 400;
  width: 940px;
  max-width: 100%;
  margin: 0 auto 60px;
  padding: 8px 0px 15px;
  border-radius: 3px;
  font-size: 13px;
  font-size: 0.8125rem;
  background-color: #ffffff;
  color: #666;
	margin-top: 100px;
}

.link_StyleShop .lss_title {
    margin-bottom: 40px;
    text-align: center;
}

.link_StyleShop .ttl {
	 font-family: 'Noto Serif', serif;  
	font-size: 18px;
	font-weight: bold;
	text-align: center;
    position: relative;
    display: inline-block;
    padding: 0 380px;
	color: #ae8600;
}

.link_StyleShop .ttl:before, 

.link_StyleShop .ttl:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 365px;
  height: 1px;
  background-color: #dbc783;
}

.link_StyleShop .ttl:before {
  left:0;
}

.link_StyleShop .ttl:after {
  right: 0;
}

.link_StyleShop .link_cont {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	width: 900px;
	margin: 0 auto;
}

.link_StyleShop .shop_area,

.link_StyleShop .style_area {
	position: relative;
	width: 415px;
	box-shadow: 0 0 3px 0 rgb(4 0 0 / 35%);
}

.link_StyleShop .shop_area img,

.link_StyleShop .style_area img {
	width: 100%;
}

.link_StyleShop .shop_area p {

	position: absolute;
	left: 220px;
	letter-spacing: 0.3em;
	line-height: 1.4;
    font-size: 19px;
}

.link_StyleShop .style_area p {

	position: absolute;
	right: 20px;
	line-height: 1.4;
    font-size: 19px;

}

.link_StyleShop .shop_area p .line2,

.link_StyleShop .style_area p .line2 {

  font-size: 16px;
  letter-spacing: normal;
  display: inline-block;	

}

.link_StyleShop .style_area p .line2 {
	margin-left : 3em;
}

.link_StyleShop .lss_arrow img {
	width: 22px;
}



.link_StyleShop a:hover .lss_arrow {
	margin-left: 0.4em; 
	transition-duration: .3s;
}



.link_StyleShop a {
  font-family: 'Noto Serif JP', serif;
  display: inline-block;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 0.5;
  vertical-align: middle;
  color: #82723d;
  text-decoration: none; }



.link_StyleShop a:link {
  color: #82723d; }



.link_StyleShop a:visited {
  color: #82723d; }



.link_StyleShop a:hover {
  color: #9d8f5f;

}

.link_StyleShop a:hover img {
  opacity: 0.7;
  transition-duration: .3s;	

}



.link_StyleShop a:visited:hover {
  color: #9d8f5f;

}



.link_StyleShop a:active {
  color: #82723d;	
}



@media screen and (min-width: 768px) and (max-width: 930px) {

  .link_StyleShop {
    width: 100%;
    margin: 0 auto 34px;  
    } 

  .link_StyleShop .lss_title {
    margin-bottom: 33px;
}

  .link_StyleShop .ttl {
	font-size: 17px;
  	font-size: 1.0625rem;  
    padding: 0 298px;

}

  .link_StyleShop .ttl:before, 

  .link_StyleShop .ttl:after {
    width: 280px;

}	

  .link_StyleShop .link_cont {
	width: 718px;

}		

.link_StyleShop .shop_area,

.link_StyleShop .style_area {
	width: 330px;

}

.link_StyleShop .shop_area p {
	right: 12px;
	line-height: 1.4;
	font-size: 15.5px;
	width: 155px;
	left: 169px;
}

.link_StyleShop .style_area p {
	right: 12px;
	line-height: 1.4;
	font-size: 15.5px;

}    

.link_StyleShop .shop_area p .line2,

.link_StyleShop .style_area p .line2 {
  font-size: 14px;
  font-size: 0.875rem;

}

.link_StyleShop a {
  display: inline-block;
  font-size: 17px;
  font-size: 1.0625rem;

}

	

}

@media only screen and (max-width: 767px) {

  .link_StyleShop {
    width: 100%;
    background-color: #fff;
    margin: 0 auto;
    padding: 20px 0 38px;

    } 



  .link_StyleShop .lss_title {
    margin-bottom: 27px;
    }

  .link_StyleShop .ttl {
	font-size: 3.8vw;  
    padding: 0 110px;

    }

  .link_StyleShop .ttl:before, 

  .link_StyleShop .ttl:after {
    width: 94px;
    }

  .link_StyleShop .link_cont {
	flex-direction: column-reverse;
	width: 90%;
	margin: 0 auto;
    }

  .link_StyleShop .shop_area,

  .link_StyleShop .style_area {
	width: 90%;
	margin: 0 auto;
    }

  .link_StyleShop .style_area {
	margin-bottom: 25px;	
	}	

/*  .link_StyleShop .shop_area {

	margin-bottom: 25px;

    }*/

  .link_StyleShop .shop_area p,

  .link_StyleShop .style_area p {
	position: absolute;
        left: 47%;
        right: 0;
        line-height: 1.4;
        font-size: 3.8vw;
        width: 52%;
    }
	
	.link_StyleShop .shop_area02 p{
		left: 56%;
	}

.link_StyleShop .shop_area p .line2,

.link_StyleShop .style_area p .line2 {
	font-size: 3.2vw;
    }	

  .link_StyleShop .style_area p .line2 {
	margin-left : 5em;
    } 

  .link_StyleShop .lss_arrow img {
	width: 17px;
    }	

  .link_StyleShop a {
	font-size: 3.8vw;
    }



}    

@media only screen and (max-width: 329px) {    

  .link_StyleShop .ttl {
    padding: 0 80px;
    }

	.link_StyleShop .ttl {
	font-size: 4.2vw;  
    }

  .link_StyleShop .ttl:before, 

  .link_StyleShop .ttl:after {
    width: 64px;
    }

  .link_StyleShop .shop_area p,

  .link_StyleShop .style_area p {
	top: 23%; 
    left: 49%;
    }

  .link_StyleShop .shop_area p .line2,

  .link_StyleShop .style_area p .line2 {
	font-size: 3.4vw;
    }	

  .link_StyleShop a {
	font-size: 4.2vw;
    }	

}



.link_StyleShop .mt0 {
	margin-top: 0px !important;
}



.link_StyleShop .mt5 {
	margin-top: 5px !important;
}



.link_StyleShop .mt10 {
	margin-top: 10px !important;
}



.link_StyleShop .mt20 {
	margin-top: 20px !important;
}



.link_StyleShop .mt30 {
	margin-top: 30px !important;
}



.link_StyleShop .mt40 {
	margin-top: 40px !important;
}



.link_StyleShop .mt50 {
	margin-top: 50px !important;
}



.link_StyleShop .mb0 {
	margin-bottom: 0px !important;
}



.link_StyleShop .mb5 {
	margin-bottom: 5px !important;
}



.link_StyleShop .mb10 {
	margin-bottom: 10px !important;
}



.link_StyleShop .mb20 {
	margin-bottom: 20px !important;
}



.link_StyleShop .mb30 {
	margin-bottom: 30px !important;
}



.link_StyleShop .mb40 {
	margin-bottom: 40px !important;
}



.link_StyleShop .mb50 {
	margin-bottom: 50px !important;
}

.pc_banner{
	display: block !important;
}
.sp_banner{
	display: none!important;
}

@media only screen and (max-width: 768px) {
	.sp_banner{
	display: block !important;
}
	.pc_banner{
	display: none !important;
}
}

.product_information{
	margin-bottom: 20px;
}
.modal_04 h2{
	font-weight: bold;
	font-size: 24px;
	    margin-bottom: 30px;	
}
.modal_04 h2 span{
	display: block;
	text-align: center;
	
}
.modal_05 h2{
	font-weight: bold;
	font-size: 24px;
	    margin-bottom: 30px;
}
.modal_05 h2 span{
	display: block;
	text-align: center;
	
}

.modal_06 h2{
	font-weight: bold;
	font-size: 24px;
	    margin-bottom: 30px;
}
.modal_06 h2 span{
	display: block;
	text-align: center;
	
}

.modal_07 h2{
	font-weight: bold;
	font-size: 24px;
	    margin-bottom: 30px;
}

.modal_07 h2 span{
	display: block;
	text-align: center;
	
}



@media (max-width: 1110px) {
	.product_information{
	margin-bottom: 1.5vw;
}
	.modal_04 h2{
	font-weight: bold;
        font-size: 2.2vw;
        margin-bottom: 3vw;
}

.modal_05 h2{
	font-weight: bold;
        font-size: 2.2vw;
        margin-bottom: 3vw;
	        width: 53vw;
}

.modal_06 h2{
	font-weight: bold;
        font-size: 2.2vw;
        margin-bottom: 3vw;
}


.modal_07 h2{
	font-weight: bold;
        font-size: 2.2vw;
        margin-bottom: 3vw;
}

}

@media (max-width: 730px) {
	.product_information{
	margin-bottom: 1.5vw;
}
	.modal_04 h2{
	font-weight: bold;
        font-size: 3.8vw;
}

.modal_05 h2{
	font-weight: bold;
        font-size: 3.8vw;
        margin-bottom: 3vw;
	width: 100%;
	       
}

.modal_06 h2{
	font-weight: bold;
       font-size: 3.8vw;
        margin-bottom: 3vw;
}


.modal_07 h2{
	font-weight: bold;
        font-size: 3.8vw;
        margin-bottom: 3vw;
}
	
}


@media only screen and (max-width: 767px) {
    .shopmenu-mobile {
        display: block;
        position: fixed;
        left: 0;
        top: 55px;
        width: 100%;
        display: none;
        background-color: #666;
        border-top: 2px solid #4c4c4c;
        border-bottom: 2px solid #4c4c4c;
        z-index: 100;
    }
}






/*---------▲スマホ設定▲----------*/





