@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap&subset=japanese');

/*************************************
	①iframe 基本のパターン
**************************************/

/* ====================================
	グローバル：ベーススタイル
 ==================================== */
html {
	font-size: 62.5%;
}
body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 18px;
	line-height: 1.5;
	font-weight: 400;
	color: #000;
    margin: 0;
}
body p{
    font-size: 16px;
}
a {
	color: #000;
	text-decoration: none;
}
a:hover {
	color: #000;
	text-decoration: underline;
}

img {
	width: 100%;
	height: auto;
	vertical-align: middle;
}
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.pc { display:inline;}
.sp { display:none;}
 hr.separation{margin: 30px 0;}

/*************ヘッダー*************/
/* ====================================
汎用 margin/padding 主にtopかleftで取る
===================================== */
/*margin*/
.mt50{margin-top: 50px;}
.mt40{margin-top: 40px;}
.mt30{margin-top: 30px;}
.mt25{margin-top: 25px;}
.mt20{margin-top: 20px;}
.mt10{margin-top: 10px;}
.mt5{margin-top: 5px;}
.mt0{margin-top: 0;}
.ml20{margin-left: 20px;}
.ml10{margin-left: 10px;}
/*padding*/
.pt50{padding-top: 50px;}
.pt40{padding-top: 40px;}
.pt30{padding-top: 30px;}
.pt25{padding-top: 25px;}
.pt20{padding-top: 20px;}
.pt10{padding-top: 10px;}
.pt5{padding-top: 5px;}
.pt0{padding-top: 0;}
.pl20{padding-left: 20px;}
.pl10{padding-left: 10px;}


/*************ヘッダー*************/
/*iframeで非表示設定*/
header{
    display: none!important;
}


/*************注釈*************/
/*ブルーの上付き文字 ※マークに使用*/
sup{
	top:-0.5em;
	color:#00a0e9;
	position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}
/*注釈の説明エリア*/
p.note{
font-size: 60%;
}
/*注釈説明エリアで※をブルーにするとき spanで囲む*/
.note span{
	color: #00a0e9;
}

/* ====================================
量販EC組み込みページ専用スタイル
===================================== */
.frame{
    width: 100%;
    max-width: 1100px;
    margin: auto;
    margin-top: 20px;
    padding-bottom: 50px;
}
.base-width {
    padding-left: 1%;
    padding-right: 1%;
}
.mainvisual img{
	display: block;
	width: 100%;
	height: auto;
}
/*特長・付属品など左側にポイントカラーがついている大見出し*/
.menuline {
    text-align: left;
    color: #000;
    margin-top: 70px;
    padding-left: 10px;
    border-left: solid 8px #3B798E;/*左側ポイントカラーを指定*/
}
.menuline p{
    font-size: 18px;
}

/*グラデーションのアンダーラインが入る中項目*/
.sub-title {
  border-bottom: 3px solid #D54141;/*グラデ色指定*/
  border-image: linear-gradient(to right, #D54141 0%, #fff 100%);/*グラデ色指定*/
  border-image-slice: 1;
  color: #D54141;/*グラデ色指定*/
  text-align: left;
  margin-top: 30px;
}

/*YouTube埋め込みのレスポンシブ基本セット*/
.youtube {
  position: relative;
  width: 100%;
  max-width: 768px;
}
.youtube::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.movie-frame{
    padding-left: 1.5%;
}
/*特長 サブ画像エリア*/
.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.item-feature{
    margin-top: 10px 0;
    width: 30%;
}
.item-feature:nth-child(n+4) {
    margin-top: 35px;    
    }
.flex-container p{
    margin: 5px 0;
}
.item-feature.border img{
    border: 1px solid #c0c0c0;
    box-sizing: border-box;
}
.item-feature.border video{
    border: 1px solid #c0c0c0;
}
.flex-container::after{
  content:"";
  display: block;
  width: 30%;
}
/*↑段内に画像が2枚のときは30%、1枚のときは63%で、左寄せに。
3枚揃っている際は特に関係なし*/


/*付属品*/
#option{
    width: 50%;
}


/*注釈など小さい文字がある場合のモーダル表示*/

.modal-wrapper {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 10px;
  text-align: center
}

.modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}

.modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}

.modal-wrapper .modal-window {
  box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
  width: 70%;
  max-width: 700px;
  padding: 30px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, .6);
  vertical-align: middle
}

.modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
}

.modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}

.modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  color: #95979c;
  text-decoration: none;
  text-indent: 0
}

.modal-wrapper .modal-close:hover {
  color: #2b2e38;
}
/*注釈など小さい文字がある場合のモーダル表示 ここまで*/


@media screen and (max-width: 768px) {
.pc {display: none;}
.sp{display: block;}

.base-width-sp,.base-width {
    padding-left: 3%;
    padding-right: 3%;
}
.frame {
    margin-top: 0;
}

.flex-container {
    flex-direction: column;
}
.item-feature{
    width: 100%;
}
#option{
    width: 100%;
}
/*付属品 スマホで画像文字横並び*/
.optionflex{
    padding-left: 0;
}
.optionflex li{
    display: flex;
    width:100%;
    flex-wrap: nowrap;
}
.optionflex li:not(:first-child){
    padding-top: 15px;
}
.optionflex li img{
    width:50%;
}
.optionflex li p{
    margin: auto;
}
.youtube iframe {
  left: 0;    
}
.movie-frame{
  padding-left: 0;
}
.item-feature:not(:first-child){
    margin-top: 35px;    
    }
.modal a{
    pointer-events: none;
    }
}