@charset "UTF-8";

/*共通*/
body * {
  box-sizing: border-box;
  color: #333;
  font-size: 16px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  line-height: 1.8;
}
a {
  display: block;
  text-decoration: none;
}
img {
  width: 100%;
  vertical-align: bottom;
}

/*レイアウト*/
.container {
  overflow: hidden;
}
.inner01,
.inner02,
.inner03 {
  position: relative;
  width: 1000px;
  margin: 0 auto;
}
.inner01 > .bg,
.inner01 > .inner_wrap {
  margin: 0 -200px;
}
.inner02 > .bg,
.inner02 > .inner_wrap {
  margin: 0 -100px;
}
[class^="inner_block"] {
  position: relative;
}
.btn_series_link,
.btn_product_link {
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
}
.btn_series_link {
  width: 424px;
}
.btn_product_link {
  width: 303px;
}
.btn_series_link a,
.btn_product_link a {
  border-radius: 53px;
  box-shadow: 3px 3px 6px -2px #333,
  3px 3px 8px rgba(255,255,255,0.8) inset;
}
.bg_blue {
  background: #195082;
}
.bg_light_blue {
  background: #E3EFF6;
}
.bg_blue_green {
  background: #C2E8E7;
}


/*ヘッダー*/
header {
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
header.inner02 {
  position: fixed;
}
#menu_btn_open {
  position: absolute;
  top: 28px;
  left: 50px;
  width: 30px;
  height: 26px;
  cursor: pointer;
}
#menu_btn_open > span {
  display: block;
  width: 100%;
  margin: 0 auto 7px;
  height: 4px;
  background: #006699;
}
#menu_btn_open > span:last-child {
  margin-bottom: 0;
}

/*ハンバーガーメニュー：ナビゲーション*/
#uq_spNavi {
  width: 330px;
  height: 100%;
  background-color:rgba(255, 255, 255, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  transform: translateX(-330px); /* right0から330px移動した位置 */
  transition: all .5s; /* 移動する速さ */
}
#uq_spNavi.open {
  transform: translateX(0); /* right0まで-330px移動 */
}
.menu-background {
  position: fixed;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 19;
  opacity: 0; /* 透明度を0にすることで隠す */
  transition: opacity 0.5s; /* 透明度の0→1になる速度 */
}
.menu-background.open {
  width: 100%;
  height: 100%;
  opacity: 1; /* メニューが表示されているときには背景が表示 */
}
.uq_spNavi_screen {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 0;
  margin-top: 0px;
  padding-top: 0px;
  overflow-y: scroll;
  -ms-overflow-style: none;    /* IE, Edge 対応 */
  scrollbar-width: none;       /* Firefox 対応 */
}
.uq_spNavi_screen::-webkit-scrollbar {  /* Chrome, Safari 対応 */
  display:none;
}
.uq_spNavi .logo {
  width: 80px;
  margin: 16px auto 22px;
}
.el_humburgerButton__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 22px;
  height: auto;
  box-sizing: border-box;
  cursor: pointer;
  text-align: right;
}
.el_humburgerButton__close > span {
  display: block;
  width: 29px;
  margin: 0 auto;
  height: 4px;
  background: #006699;
}
.el_humburgerButton__close > span.el_humburgerLineTop {
  transform: rotate(45deg);
  transform-origin: 0 0;
}
.el_humburgerButton__close > span.el_humburgerLineBottom {
  margin-top: 15px;
  transform: rotate(-45deg);
  transform-origin: 0 100%;
}
.navigation_item {
  border-bottom: 1px solid #D2D2D2;
}
.navigation_item:first-of-type {
  border-top: 1px solid #D2D2D2;
}
.navigation_item a,
.navigation_item > span {
  position: relative;
  display: block;
  font-weight: bold;
  line-height: 62px;
}
.navigation_item > a,
.navigation_item > span {
  padding-left: 26px;
}
.navigation_item a::after {
  position: absolute;
  top: calc(50% - 9px);
  right: 16px;
  content: '';
  display: block;
  width: 12px;
  height: 18px;
  background: url('/img/usr/freepage/lp_soladey_series/pc_arrow_menu_r.png');
  background-size: 100%;
}
.navigation_item > span::after {
  position: absolute;
  top: calc(50% - 6px);
  right: 16px;
  content: '';
  display: block;
  width: 18px;
  height: 12px;
  background: url('/img/usr/freepage/lp_soladey_series/pc_arrow_menu_b.png');
  background-size: 100%;
  transition: .2s;
}
.navigation_item.pulldown-menu-open > span::after {
  transform: rotate(180deg);
  transition: .2s;
}
.navigation_sub_list {
  display: none;
}
.navigation_sub_list li + li {
  border-top: 1px solid #D2D2D2;
}
.navigation_sub_list a {
  padding-left: calc(26px + 1em);
  background: #daeef8;
}
.btn_menu_seriesall {
  width: 276px;
  margin: 36px auto;
}

/*メインビジュアル*/
#mv {
  position: relative;
  height: 567px;
  background: #ADD9ED;
}
#mv .mv_inner {
  height: 100%;
  background: url('/img/usr/freepage/lp_soladey_series/pc_mv.jpg') no-repeat center top;
}
#mv .logo {
  position: absolute;
  top: 75px;
  left: 556px;
  width: 92px;
}
#mv .copy {
  position: absolute;
  top: 82px;
  left: 64px;
  width: 612px;
}

/*ナビ*/
#mv .nav_outer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 1000px;
  height: 57px;
  margin: 0 auto;
}
#mv .header_nav {
  margin: 0 -106px;
  background: url('/img/usr/freepage/lp_soladey_series/pc_bg_nav.png') no-repeat center top;
}
.header_nav .header_nav_list {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  padding: 0 6px;
}
.header_nav .header_nav_list li {
  width: 280px;
}
.header_nav .header_nav_list li:last-of-type {
  width: 360px;
}
.header_nav .header_nav_list li a {
  font-size: 18px;
  font-weight: bold;
  line-height: 57px;
  text-align: center;
}
.header_nav .header_nav_list li a::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 16px;
  margin-right: 9px;
  background: url('/img/usr/freepage/lp_soladey_series/pc_arrow_nav_r.png');
  background-size: 100%;
}

/*ソラデーって？*/
#section01_01 .sectionItem02 {
  background: url('/img/usr/freepage/lp_soladey_series/pc_bg_img_about_02.jpg') left top no-repeat #195082;
}
#section01_01 .sectionItem03 {
  background: url('/img/usr/freepage/lp_soladey_series/pc_bg_glisten.jpg') center top;
  background-size: cover;
}
#section01_01 .inner_block_01 .text {
  position: absolute;
  top: 183px;
  left: 50%;
  margin-left: -103px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
}
#section01_01 .inner_block_01 .btn_series_link {
  top: 267px;
}

/*しくみ*/
#section01_02 .sectionItem01 .text {
  position: absolute;
  top: 238px;
  left: 0;
  width: 453px;
  line-height: 1.6;
}
#section01_02 .sectionItem01 .text span {
  display: block;
  font-size: 12px;
}
#section01_02 .sectionItem02 .text {
  position: absolute;
  top: 145px;
  right: 0;
  left: 0;
  margin: 0 auto;
  color: #fff;
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
}

/*特徴*/
#section01_03 .inner_block .text {
  position: absolute;
  left: 25px;
  width: 446px;
  line-height: 1.6;
}
#section01_03 .sectionItem01 .text {
  top: 332px;
}
#section01_03 .sectionItem01 .thum {
  position: absolute;
  top: 461px;
  left: 97px;
  width: 308px;
}
#section01_03 .sectionItem02 .text {
  top: 297px;
}
#section01_03 .sectionItem03 .text {
  top: 303px;
}
#section01_03 .sectionItem01 .text li {
  margin-left: 1em;
  text-indent: -1em;
}
#section01_03 .sectionItem04 .text {
  position: absolute;
  top: 121px;
  left: 129px;
  color: #fff;
  line-height: 1.6;
}
#section01_03 .sectionItem05 {
  background: url('/img/usr/freepage/lp_soladey_series/pc_bg_glisten.jpg') center top;
  background-size: cover;
}
#section01_03 .sectionItem05 .inner_block_01 .text {
  position: absolute;
  top: 84px;
  left: 50%;
  margin-left: -28px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}
#section01_03 .sectionItem05 .inner_block_01 .btn_series_link {
  top: 270px;
}

/*ソラデーのすごさ*/
#section01_04 .description_01 {
  position: absolute;
  left: 39px;
  text-align: justify;
  line-height: 1.7;
}
#section01_04 .inner_block_01 .description_01 {
  top: 250px;
  width: 497px;
}
#section01_04 .inner_block_02 .description_01 {
  top: 152px;
  width: 336px;
}
#section01_04 .inner_block_03 .description_01 {
  top: 146px;
  width: 630px;
}
#section01_04 .inner_block_03 .thum_01 {
  position: absolute;
  right: 43px;
  top: 139px;
  width: 239px;
}
#section01_04 .inner_block_03 .description_01 a {
  position: relative;
  display: inline-block;
  border-bottom: 1px solid #333;
}
#section01_04 .inner_block_03 .description_01 a::after {
  position: absolute;
  top: calc(50% - 8px);
  left: 0;
  content: '';
  display: block;
  width: 10px;
  height: 16px;
  background: url('/img/usr/freepage/lp_soladey_series/pc_arrow_nav_r.png');
  background-size: 100%;
}
#section01_04 .inner_block_03 .description_01 a span {
  padding-left: 20px;
}

/*お客様の声*/
#section02 .inner_block_01 .user_voice_list {
  position: absolute;
  top: 131px;
  left: -100px;
  display: flex;
  justify-content: space-between;
  width: 1200px;
}
#section02 .inner_block_01 .user_voice_liset_item {
  display: flex;
  flex-wrap: wrap;
  width: 373px;
  min-height: 233px;
  padding: 25px 23px 44px;
}
#section02 .inner_block_01 .user_voice_liset_item > span {
  display: block;
  width: 100%;
}
#section02 .inner_block_01 .user_voice_liset_item .em {
  color: #036;
  font-weight: bold;
}
#section02 .inner_block_01 .user_voice_liset_item .user {
  margin-top: auto;
  color: #666;
  text-align: right;
}
#section02 .inner_block_01 .btn_series_link {
  top: 388px;
}
#section02 .sectionItem02 {
  background: url('/img/usr/freepage/lp_soladey_series/pc_bg_glisten.jpg') center top;
  background-size: cover;
}
#section02 .inner_block_02 .btn_series_link {
  top: 299px;
}
#section02 .sectionItem02 .inner_block_02 .text {
  position: absolute;
  top: 102px;
  left: 50%;
  margin-left: -28px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}

/*人気ランキング*/
#section03 .section_wrap {
  border: 20px solid #dcb05b;
  background: url('/img/usr/freepage/lp_soladey_series/pc_bg_img_ranking_01.gif') repeat-x;
}
@media screen and (max-width: 999px) {
  #section03 .section_wrap {
    border-left: 0 none;
    border-right: 0 none;
  }
}
#section03 .btn_detail_list {
  position: absolute;
  right: 0;
  left: 0;
  top: 403px;
  display: flex;
  justify-content: space-between;
  width: 715px;
  margin: 0 auto 0 205px;
}
#section03 .btn_detail {
  width: 149px;
  background: #144575;
  border-radius: 0 23px 23px 0;
}
#section03 .btn_detail a {
  position: relative;
  padding-left: 31px;
  color: #fff;
  font-size: 14px;
  line-height: 45px;
}
#section03 .btn_detail a::before {
  position: absolute;
  top: calc(50% - 5px);
  left: 19px;
  content: '';
  display: block;
  width: 6px;
  height: 10px;
  background: url(/img/usr/freepage/lp_soladey_series/pc_arrow_detail_r.png);
  background-size: 100%;
}

/*ソラデーシリーズ*/
#section04 {
  padding-bottom: 50px;
}
#section04 .title {
  width: 372px;
  margin: 0 auto;
  padding: 42px 0 49px;
}
#section04 .inner_wrap {
  display: flex;
  justify-content: space-between;
}
#section04 [class^="inner_block_0"] {
  width: 372px;
}
#section04 .text {
  position: absolute;
  top: 366px;
  left: 0;
  width: 372px;
  padding: 20px 18px;
}
#section04 .btn_product_link {
  top: 496px;
}
#section05 {
  padding-bottom: 57px;
}
#section05 .title {
  padding: 56px 0 22px;
}
#section05 [class^="inner_block_0"] + [class^="inner_block_0"] {
  margin-top: 30px;
}
#section05 .text {
  position: absolute;
  top: 99px;
  right: 0;
  width: 647px;
  text-align: center;
}
#section05 .btn_product_link {
  top: 357px;
  right: 43px;
  left: auto;
  margin: 0;
}

/*よくあるご質問*/
#section06 .sectionItem01 {
  padding: 57px 0 87px;
}
#section06 .title {
  margin-bottom: 45px;
  color: #003366;
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
.qa_item {
  background: #fff;
}
.qa_item + .qa_item {
  margin-top: 20px;
}
.qa_item .q_content {
  position: relative;
  display: block;
  padding: 29px 85px 29px 51px;
  font-weight: bold;
  line-height: 1;
}
.qa_item .q_content::after {
  position: absolute;
  top: calc(50% - 7px);
  right: 36px;
  content: '';
  display: block;
  width: 21px;
  height: 13px;
  background: url('/img/usr/freepage/lp_soladey_series/pc_arrow_menu_b.png');
  background-size: 100%;
  transition: .2s;
}
.qa_item.pulldown-menu-open .q_content::after {
  transform: rotate(180deg);
  transition: .2s;
}
.qa_item .a_content {
  display: none;
  padding: 0 85px 29px 51px;
}
#section06 .sectionItem02 {
  margin: 41px auto 0;
}
#section06 .btn_series_link {
  position: static;
}

/*フッター*/
.footer {
  padding: 26px 0;
  text-align: center;
}
.footer small {
  font-size: 13px;
}

/*ページトップ*/
#page_top {
  position: fixed;
  bottom: 47px;
  right: 23px;
  display: none;
  width: 61px;
}

