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



/* 波部分 */
.wave {
  width: 100%;
  height: 52px; /* 画像の高さを入れる */
  animation: anm_wave 8s linear infinite;
  overflow: hidden;
  padding-bottom: 100px;
}

.wb {
  background: url(../img_v2/wave_wb.png) 0 0 repeat-x;
  background-size: 1500px; /* 画像の幅を入れる */
}

.bw {
  background: url(../img_v2/wave_bw.png) 0 0 repeat-x;
  background-size: 1500px; /* 画像の幅を入れる */
}

.wg {
  background: url(../img_v2/wave_wg.png) 0 0 repeat-x;
  background-size: 1500px; /* 画像の幅を入れる */
}

.gw {
  background: url(../img_v2/wave_gw.png) 0 0 repeat-x;
  background-size: 1500px; /* 画像の幅を入れる */
}

@keyframes anm_wave {
  0% {background-position: 0 0;}
  100% {background-position: -1500px 0;} /* 画像の幅を入れる */
}


/* スマホ参考用 */
@media screen and (max-width: 768px) {
  .wave {
    height: calc(52px * 0.3);
    background-size: calc(1500px * 0.3);
    padding-bottom: 50px;
  }

  @keyframes anm_wave {
    0% {background-position: 0 0;}
    100% {background-position: calc(-1500px * 0.3) 0;}
  }
}




/*-----------
kv
-----------*/

#kv{
  width: 100%;
  min-width: 1000px;
  height: 700px;
  border-top: 112px solid #fff;
}

#kv ul.slider_kv{
  width: 100%;
  height: 700px;
}


#kv ul.slider_kv li.slider_kv_li{
  width: 100%;
  height: 700px;
  position: relative;
  overflow: hidden;
}

#kv ul.slider_kv li.slider_kv_li img{
  width: 1680px;
  height: 700px;
  position: absolute;
  left: 50%;
  margin-left: -840px;
}


.slider_kv .slick-arrow{
  width: 58px;
  height: 58px;
  position: absolute;
  top: 50%;
  z-index: 10;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  margin-top: -28px;
}

.slider_kv .slick-arrow:hover{
  opacity: 0.6;
}

.slider_kv .slick-prev{
  background: url("../common/js/slick/slick_prev_kv.png") no-repeat left top;
  background-size: 58px auto;
  left: 0;
}

.slider_kv .slick-next{
  background: url("../common/js/slick/slick_next_kv.png") no-repeat left top;
  background-size: 58px auto;
  right: 0;
}


/* modal */

/* モーダル全体(背景＋本体) */
.modal{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 100;
}

/* モーダル背景 */
.modal-bg{
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
}

/* モーダル本体 */
.modal-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 960px;
  height: 540px;
  background: #000;
}

/* モーダルウィンドウ表示中に記事本体を固定 */

.btn_close{
  position: absolute;
  top: -40px;
  right: 0;
  display: block;
  width: 30px;
  height: 30px;
}

.btn_close img{
  width: 100%;
}



/*-----------
floatBnr
-----------*/
#floatBnr-start{
  height: 0;
}

.floatBnr {
  height: 169px;
  position: fixed;
  top: 112px;
  right: 0;
  z-index: 90;
  width: 225px;
  padding: 0;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease; /* ふわっと感 */
  pointer-events: none; /* 非表示時にクリックできないように */
}

.floatBnr a {
  position: absolute;
  top: 34px;
}

.floatBnr img {
  width: 225px;
  height: 140px;
}

.floatBnr.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.bnr-close{
  width: 34px;
  height: 34px;
  position: absolute;
  background: rgb(255,255,255,.7);
  transition: opacity 0.3s ease-in-out;
  top: 0;
  right: 0;
}

.bnr-close:hover {
  opacity: 0.5;
}

.bnr-close:before,
.bnr-close:after {
	content: "";
	position: absolute;
	top: 50%;
  left: 50%;
	width: 24px;
	height: 2px;
	background-color: #000;
  margin: -1px 0 0 -12px;
  border-radius: 2px;
}

.bnr-close:before {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

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

/*-----------
pickup
-----------*/

#pickup{
  width: 100%;
  margin: 0;
  padding: 90px 0 120px;
  text-align: center;
}

#pickup h2{
  margin: 0 auto 40px;
  width: 158px;
}

h2 img{
  width: 100%;
}

#pickup .slider_pickup li{
  width: 520px;
  height: 280px;
  margin: 0 20px;
  position: relative;
  background: #ccc;
  overflow: hidden;
}


.slider_pickup .slick-arrow{
  width: 64px;
  height: 64px;
  position: absolute;
  top: 50%;
  z-index: 10;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.slider_pickup .slick-arrow:hover{
  opacity: 0.6;
}

.slider_pickup .slick-prev{
  background: url("../common/js/slick/slick_prev.png") no-repeat left top;
  background-size: 64px auto;
  left: 0;
  margin-top: -32px;
}

.slider_pickup .slick-next{
  background: url("../common/js/slick/slick_next.png") no-repeat left top;
  background-size: 64px auto;
  right: 0;
  margin-top: -32px;
}


/*-----------
statement
-----------*/

#statement{
  width: 100%;
  margin: 0;
  padding: 0 0 50px;
  text-align: center;
  background: #e6f5fe;
}

#statement h2{
  margin: 0 auto 60px;
  width: 551px;
  height: 42px;
}

#statement .movie{
  width: 800px;
  margin: 0 auto 20px;
}

#statement .movie img{
  width: 800px;
}

#statement .txt{
  font-size: 22px;
  line-height: 2;
  margin-bottom: 15px;
}

#statement .list_note{
  width: 800px;
  margin: 0 auto;
  font-size: 12px;
  padding-top: 10px;
  text-align: left;
}

#statement .list_note li{
  padding-left: 1em;
  text-indent: -1em;
}


/*-----------
voice
-----------*/

#voice{
  width: 100%;
  margin: 0 auto;
  padding: 0 0 90px;
  text-align: center;
}

#voice h2{
  margin: 0 auto 35px;
  width: 934px;
  height: 120px;
}

#voice .inner{
  width: 1000px;
  margin: 0 auto;
}

#voice .txt_read{
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 15px;
}

#voice .txt_read span{
  display: block;
  font-size: 12px;
  padding-top: 5px;
}

#voice .voice_roomclip_logo{
  width: 103px;
  margin-bottom: 35px;
}

#voice #voice_roomclip_list{
  display:flex;
  flex-wrap:wrap;
}

#voice #voice_roomclip_list li{
  width: 320px;
  text-align: left;
  margin: 0 20px 50px 0;
}

#voice #voice_roomclip_list li a{
  color: #000;
  display: block;
}

@media print, screen and ( min-width : 769px ) {

  #voice #voice_roomclip_list li:nth-child(3n) {
    margin-right: 0;
  }

}

#voice #voice_roomclip_list li .img{
  width: 100%;
  height: auto;
  margin-bottom: 12px;
  border: 1px solid #ebebeb;
  box-sizing: border-box;
}

#voice #voice_roomclip_list li .name{
  height: 40px;
  font-size: 15px;
  margin-bottom: 8px;
  background: url("../img_v2/voice_roomclip_icon.png") no-repeat left top;
  background-size: 40px auto;
  line-height: 24px;
  padding: 0 0 0 50px;
}

#voice #voice_roomclip_list li .name span{
  font-size: 11px;
  display: block;
  line-height: 14px;
}

#voice #voice_roomclip_list li .comment{
  font-size: 14px;
}


/*-----------
features
-----------*/

#features{
  width: 100%;
  padding: 0 0 120px;
  text-align: center;
}

#features h2{
  margin: 0 auto 55px;
  width: 306px;
  height: 42px;
}

#features .inner{
  width: 1000px;
  margin: 0 auto;
}

#features ul{
  display:flex;
  flex-wrap:wrap;
}

#features ul li{
  width: 480px;
  margin: 0 40px 30px 0;
}

#features ul li:nth-child(2n) {
  margin-right: 0;
}

#features ul li img{
  width: 480px;
}


/*-----------
products
-----------*/

#products{
  width: 100%;
  margin: 0;
  padding: 0;
  background: #eeeeee;
}

#products h2{
  margin: 0 auto 80px;
  width: 222px;
  height: 43px;
}

#products h3{
  font-size: 34px;
  text-align: center;
  margin-bottom: 20px;
}

#products h3 span{
  font-size: 30px;
}

#products_list{
  width: 1000px;
  margin: 0 auto;
  padding-bottom: 10px;
}

#products_list dl{
  background: #fff;
  border: 1px solid #000;
  width: 1000px;
  box-sizing: border-box;
  margin-bottom: 20px;
  padding: 10px;
  display:flex;
  flex-wrap:wrap;
  align-items: center;
  position: relative;
}

#products_list dl dt{
  width: 310px;
  font-size: 26px;
  padding-right:10px;
  text-align: center;
}

#products_list dl dt img {
  display: none;
}

#products_list dl dd{
  border-left: 1px solid #000;
  padding-left:70px;
}

#products_list dl dd img {
  position: absolute;
  right: 30px;
  top: 50%;
  width: 100px;
  display: block;
  margin: -19px 0 0 0;
}

#products_list ul{
  display:flex;
  flex-wrap:wrap;
  padding-bottom: 15px;
}

#products_list ul li{
  width: 300px;
  padding: 10px 10px 20px;
  background: #fff;
  margin: 0 20px 20px 0;
}

#products_list ul li a{
  display: block;
  position: relative;
}

#products_list ul li.icon_new a::after {
  content: "";
  position: absolute;
  top: -18px;
  right: -24px;
  width: 52px;
  height: 52px;
  background: url(../product/img/top/icon_new.png) 0 0 no-repeat;
  background-size: 100%;
}

#products_list ul li.icon_new_agg a::after {
  content: "";
  position: absolute;
  top: -18px;
  right: -24px;
  width: 52px;
  height: 52px;
  background: url(../product/img/top/icon_new_agg.png) 0 0 no-repeat;
  background-size: 100%;
}

@media print, screen and ( min-width : 769px ) {

  #products_list ul li:nth-child(3n) {
    margin: 0 0 20px 0;
  }

}

#products_list ul li img{
  width: 100%;
}

#products_list ul li .grade{
  height: 30px;
  line-height: 30px;
  color: #fff;
  text-align: center;
}

#products_list ul li .grade.premium{
  background: rgb(190,176,128);
  background: linear-gradient(90deg, rgba(190,176,128,1) 0%, rgba(212,199,152,1) 50%, rgba(190,176,128,1) 100%);
}

#products_list ul li .grade.highgrade{
  background: #0076a5;
}

#products_list ul li .grade.light{
  background: #61bbc4;
}

#products_list ul li .grade.universal{
  background: #c9e2f0;
  color: #434343;
}

#products_list ul li .grade.other{
  background: #dcdddd;
  color: #000;
}

#products_list ul li .grade.highgrade_plus{
  background: #929292;
}

#products_list ul li .series{
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-weight: bold;
  color: #000;
  margin-top: 10px;
}

#products_list ul li .txt{
  color: #000;
  padding-left: 5px;
}

#products_list ul li .txt sup {
  font-size: 10px;
}

#products_list ul li .txt span{
  font-size: 12px;
}

#products_search {
  padding-bottom: 70px;
}



.annotation_list {
  font-size: 12px;
  width: 1000px;
  margin: 0 auto;
  padding-bottom: 30px;
}

.annotation_list li {
  margin-bottom: 6px;
}

#products_condition{
  width: 1000px;
  margin: 0 auto;
}

#products_condition ul{
  list-style:none;
}

#products_condition a{
  text-decoration:none;
}

.tab-group{
  display:flex;
  flex-wrap:wrap;
  width: 970px;
  height: 52px;
  margin: 0 auto;
}

.tab-group li{
  width: 320px;
  height: 52px;
  margin-right: 5px;
}

.tab-group li:nth-child(3){
  margin-right: 0;
}

.tab{
  color: #fff;
  text-align: center;
  line-height: 52px;
  font-size: 18px;
  background: #005091 url("../common/img/arrow_d_w.png") no-repeat right 18px center;
  background-size: 17px auto;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.tab:hover{
  background: #0065b8 url("../common/img/arrow_d_w.png") no-repeat right 18px center;
  background-size: 17px auto;
}

.tab.is-active{
  background: #e3f6ff url("../common/img/arrow_d_w.png") no-repeat right 18px center;
  color: #000;
  cursor: default;
}

.panel{
  display: none;
  background: #e2f6ff;
  padding: 60px 47px 70px 60px;
}

.panel ul{
  display:flex;
  flex-wrap:wrap;
  margin-bottom: 40px;
}

.panel ul li{
  margin: 0 13px 20px 0;
}

.panel ul li a{
  display: inline-block;
  background: #fff;
  font-size: 18px;
  color: #000;
  height: 40px;
  border-radius: 20px;
  padding: 0 26px;
  line-height: 40px;
}

.panel.is-show{
  display: block;
}

.panel .btn{
  font-size: 20px;
  margin: 0 auto;
  display: block;
  width: 330px;
  height: 58px;
  line-height: 58px;
  background: #005091 url("../common/img/arrow_d_w.png") no-repeat right 18px center;
  background-size: 17px auto;
  color: #fff;
  text-align: center;
}


/*-----------
information
-----------*/

#information{
  width: 100%;
  padding: 0 0 110px;
}

#information h2{
  margin: 0 auto 40px;
  width: 283px;
}

#information .inner{
  width: 1000px;
  margin: 0 auto;
}

#information .news_wrap {
  display: flex;
  justify-content: space-between;
}

#information .news_wrap > div {
  position: relative;
  width: 480px;
}

#information .news_wrap > div h3 {
  font-size: 20px;
  color: #1b365d;
  line-height: 1;
  letter-spacing: .08em;
  margin: 8px 0 16px 14px;
}

#information ul.news_list{
  border-top: 1px solid #ebebeb;
  margin-bottom: 30px;
}

#information ul.news_list li{
  border-bottom: 1px solid #ebebeb;
}

#information ul.news_list li a{
  display:flex;
  flex-wrap:wrap;
  align-items: flex-start;
  padding: 14px 30px 12px 14px;
  color: #000;
  background: url("../common/img/arrow_r_b.png") no-repeat right 10px center;
  background-size: 9px auto;
  letter-spacing: .1em;
}

#information ul.news_list li a .date{
  font-size: 12px;
  line-height: 21px;
  letter-spacing: normal;
  width: 8em;
  /* margin-top: 2px; */
}

#information ul.news_list li a .icon{
  font-size: 12px;
  height: 21px;
  background: #1a375d;
  text-align: center;
  line-height: 21px;
  color: #fff;
  letter-spacing: normal;
  margin-bottom: .4em;
  padding: 0 .6em;
}

#information ul.news_list li a .txt{
  width: 556px;
  padding-right: 20px;
}

#information ul.news_list li a .newsrelease{
  background: #1a375d;
}

#information ul.news_list li a .important {
  background: #aa9f71;
}

#information .btn {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 110px;
  height: 34px;
  line-height: 34px;
  margin: 0;
  font-size: 14px;
  text-align: center;
  background: #e2f6ff url("../common/img/arrow_r_b_s.png") no-repeat right 8px center;
  background-size: 6px auto;
  border-radius: 3px;
}
