@charset "UTF-8";
/* Scss Document */
/* Scss Document */
/* A Modern CSS Reset */
*, *::before, *::after {
  box-sizing: border-box; }

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0; }

ul[role="list"], ol[role="list"] {
  list-style: none; }

html:focus-within {
  scroll-behavior: smooth; }

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5; }

a:not([class]) {
  text-decoration-skip-ink: auto; }

img, picture {
  max-width: 100%;
  display: block; }

input, button, textarea, select {
  font: inherit; }

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important; } }
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  backface-visibility: hidden; }

ul, li {
  list-style: none;
  padding: 0;
  margin: 0; }

a {
  outline: none;
  text-decoration: none !important; }

/*--------------------------
メディアクエリ設定
---------------------------*/
/*マップ型変数で定義*/
/*@mixinでメディアクエリを呼び出す。変数mq、初期値sm*/
/*	@include mq(sm){
	}
	@include mq(pc){
	}*/
/*--------------------------------------------------
変数設定
---------------------------------------------------*/
/*--------------------------------------------------
テスト用記述
---------------------------------------------------*/
.hp_underline {
  text-decoration: underline dotted; }

/*--------------------------------------------------
全体設定
---------------------------------------------------*/
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #42312e;
  overflow-x: hidden; }

.ly_body {
  background: #efefef; }
  .ly_body.ly_body__entry {
    background: #fff; }

.ly_container {
  width: 100%;
  /*	max-width: 960px;*/
  margin-left: auto;
  margin-right: auto;
  background: #fff; }

.ly_section {
  display: block; }
  @media screen and (min-width: 768px) {
    .ly_section {
      width: 100%;
      max-width: 900px;
      margin: 2em auto 4em; } }
  @media screen and (max-width: 767px) {
    .ly_section {
      width: 92%;
      margin: 2em auto 3em; } }
  .ly_section.ly_section__pickup {
    background: #aaa;
    height: 300px;
    padding: 3em;
    text-align: center; }

.ly_section_bg {
  padding: 2em 0; }
  .ly_section_bg.ly_section_bg__w {
    background: #fff; }
  .ly_section_bg.ly_section_bg__y {
    background: #FFFBEC; }
  .ly_section_bg.ly_section_bg__sy {
    background: #FFEAB4; }
  .ly_section_bg.ly_section_bg__gr {
    background: #F9F9F9; }
  .ly_section_bg.ly_section_bg__pt {
    position: relative; }
    .ly_section_bg.ly_section_bg__pt::before {
      display: block;
      content: "";
      width: 100%;
      height: 420px;
      background-image: url("../img/bg-party.png");
      background-repeat: repeat-x;
      background-position: top center;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      margin: auto;
      z-index: 1; }
      @media screen and (min-width: 768px) {
        .ly_section_bg.ly_section_bg__pt::before {
          background-size: 100%; } }
      @media screen and (max-width: 767px) {
        .ly_section_bg.ly_section_bg__pt::before {
          background-size: 160%; } }
  .ly_section_bg.ly_section_bg__ptStripe {
    background-size: auto auto;
    background-image: repeating-linear-gradient(135deg, transparent, transparent 24px, rgba(255, 255, 255, 0.5) 24px, rgba(255, 255, 255, 0.5) 38px); }

/*--------------------------------------------------
ヘルパークラス
---------------------------------------------------*/
@media screen and (max-width: 767px) {
  .hp_sp_br {
    display: block; } }
@media screen and (min-width: 768px) {
  .hp_sp_br {
    display: none; } }

@media screen and (max-width: 767px) {
  .hp_pc_br {
    display: none; } }
@media screen and (min-width: 768px) {
  .hp_pc_br {
    display: block; } }

.hp_ta-c {
  text-align: center !important; }

.hp_ta-r {
  text-align: right !important; }

.hp_txt_small {
  font-size: 0.8em; }

.hp_txt_xsmall {
  font-size: 0.7em; }

.hp_txt_large {
  font-size: 1.5em; }

.hp_img_tac {
  display: block;
  margin: 0 auto; }

.hp_mt20 {
  margin-top: 20px; }

.hp_txt_orange {
  color: #F1785A; }

.hp_txt_green {
  color: #88C512; }

.hp_txt_red {
  color: #EB0000; }

.hp_txt_exBold {
  font-weight: 900; }

.hp_txt_bold {
  font-weight: bold; }

.hp_txt_bg {
  background: #FED468; }

.hp_txt_underLine {
  background: linear-gradient(transparent 75%, #FED468 75%); }

.hp_txt_slant {
  position: relative;
  /*複数行*/ }
  .hp_txt_slant::before {
    display: block;
    content: "";
    width: 1em;
    height: 2px;
    border-radius: 12px;
    background: #000000;
    position: absolute;
    top: 50%;
    left: -1.2em;
    -webkit-transform: translateY(-50%) rotate(70deg);
    transform: translateY(-50%) rotate(70deg); }
  .hp_txt_slant::after {
    display: block;
    content: "";
    width: 1em;
    height: 2px;
    border-radius: 12px;
    background: #000000;
    position: absolute;
    top: 50%;
    right: -1.2em;
    -webkit-transform: translateY(-50%) rotate(-70deg);
    transform: translateY(-50%) rotate(-70deg); }
  .hp_txt_slant.hp_txt_slant__w::before {
    background: #fff; }
  .hp_txt_slant.hp_txt_slant__w::after {
    background: #fff; }
  .hp_txt_slant.hp_txt_slant__multi {
    position: relative;
    font-weight: bold; }
    .hp_txt_slant.hp_txt_slant__multi::before {
      display: block;
      content: "";
      width: 2em;
      height: 2px;
      border-radius: 12px;
      background: #000000;
      position: absolute;
      top: 50%;
      left: -4.2em;
      -webkit-transform: translateY(-50%) rotate(70deg);
      transform: translateY(-50%) rotate(70deg); }
    .hp_txt_slant.hp_txt_slant__multi::after {
      display: block;
      content: "";
      width: 2em;
      height: 2px;
      border-radius: 12px;
      background: #000000;
      position: absolute;
      top: 50%;
      right: -3.2em;
      -webkit-transform: translateY(-50%) rotate(-70deg);
      transform: translateY(-50%) rotate(-70deg); }

.hp_arrow_under {
  position: relative; }
  .hp_arrow_under::after {
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 64px 100px 0 100px;
    border-color: #FFFBEC transparent transparent transparent;
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1; }

.hp_pos_rel {
  position: relative; }

/*文字上に出すドット*/
.hp_txt_dot {
  position: relative; }
  .hp_txt_dot::before {
    display: block;
    content: "";
    width: 0.3em;
    height: 0.3em;
    background: #F1785A;
    border-radius: 50%;
    position: absolute;
    top: -0.1em;
    left: 0;
    right: 0;
    margin: auto; }

/*文字の下アンダーライン*/
.hp_underline_y {
  border-bottom: solid 2px #F6CE25; }

/*ランキングtableのところだけ*/
a.el_rank_service {
  text-decoration: underline !important; }

/*--------------------------------------------------
本体
---------------------------------------------------*/
#wrap {
  background: #fafafa;
  /*	padding: 10em 0;*/ }

main {
  display: block; }

#top_main {
  margin: 0 auto;
  background: #fff;
  border-radius: 8px; }
  @media screen and (max-width: 767px) {
    #top_main {
      width: 94%;
      padding: 2em 0 4em; } }
  @media screen and (min-width: 768px) {
    #top_main {
      padding: 4em 0;
      width: calc(100% - 420px); } }

.ly_top_mainInner {
  display: block;
  margin: 0 auto; }
  @media screen and (max-width: 767px) {
    .ly_top_mainInner {
      width: 100%; } }
  @media screen and (min-width: 768px) {
    .ly_top_mainInner {
      width: 100%; } }

/*--------------------------------------------------
見出し
---------------------------------------------------*/
.el_heading {
  display: block; }
  .el_heading.el_heading__lv1 {
    display: block;
    margin: 0.5em 0; }
    @media screen and (min-width: 768px) {
      .el_heading.el_heading__lv1 {
        font-size: 2em; } }
    @media screen and (max-width: 767px) {
      .el_heading.el_heading__lv1 {
        font-size: 1.6em; } }
  .el_heading.el_heading__lv2 {
    display: block;
    margin: 1em auto 1.5em;
    font-weight: 900; }
    @media screen and (min-width: 768px) {
      .el_heading.el_heading__lv2 {
        font-size: 2.5em; } }
    @media screen and (max-width: 767px) {
      .el_heading.el_heading__lv2 {
        font-size: 1.8em;
        text-align: center;
        margin-bottom: 1em; } }
  .el_heading.el_heading__lv3 {
    display: inline-block;
    margin: 3em auto .5em;
    font-size: 1.5em;
    position: relative; }
  .el_heading.el_heading__circle::before {
    display: inline-block;
    content: "";
    width: 0.8em;
    height: 0.8em;
    background: currentColor;
    border-radius: 50%;
    margin-right: 0.5em; }
  .el_heading.el_heading__mikiwame {
    display: inline-block;
    font-weight: 900;
    text-align: center;
    position: relative;
    /*博士アイコン*/ }
    @media screen and (min-width: 768px) {
      .el_heading.el_heading__mikiwame {
        font-size: 3.2em;
        line-height: 1.2; } }
    @media screen and (max-width: 767px) {
      .el_heading.el_heading__mikiwame {
        font-size: 1.6em;
        line-height: 1.2; } }
    .el_heading.el_heading__mikiwame .el_heading_hakase {
      position: absolute;
      z-index: 2; }
      @media screen and (min-width: 768px) {
        .el_heading.el_heading__mikiwame .el_heading_hakase {
          width: 18%;
          bottom: 0px;
          right: -130px; } }
      @media screen and (max-width: 767px) {
        .el_heading.el_heading__mikiwame .el_heading_hakase {
          width: 24%;
          bottom: -70px;
          right: -10px; } }
    .el_heading.el_heading__mikiwame .el_heading_hakase_txt {
      font-size: 0.875rem;
      text-align: center;
      display: block;
      margin-top: 0.2rem;
      font-weight: normal; }
  .el_heading.el_heading__recommes {
    color: #fff;
    font-weight: 900;
    text-align: center;
    text-stroke: 2px #000;
    -webkit-text-stroke: 2px #000;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.8);
    position: relative;
    /*柄背景対策*/
    z-index: 2;
    /*柄背景対策*/ }
    @media screen and (min-width: 768px) {
      .el_heading.el_heading__recommes {
        font-size: 2.8em;
        line-height: 1.2; } }
    @media screen and (max-width: 767px) {
      .el_heading.el_heading__recommes {
        font-size: 2em; } }
  .el_heading.el_heading__service {
    font-weight: 900; }
    @media screen and (min-width: 768px) {
      .el_heading.el_heading__service {
        font-size: 2em; } }
    @media screen and (max-width: 767px) {
      .el_heading.el_heading__service {
        font-size: 1.8em; } }
  .el_heading.el_heading__matome {
    font-weight: 900;
    margin-top: 0.5em;
    position: relative;
    z-index: 2; }
    @media screen and (min-width: 768px) {
      .el_heading.el_heading__matome {
        font-size: 2.5em; } }
    @media screen and (max-width: 767px) {
      .el_heading.el_heading__matome {
        font-size: 1.8em; } }
  .el_heading.el_heading__forRental {
    font-size: 1.5em;
    font-weight: 700;
    text-align: center; }

.el_heading_subLead {
  margin-top: 0.5em; }
  @media screen and (min-width: 768px) {
    .el_heading_subLead {
      font-size: 1em; } }
  @media screen and (max-width: 767px) {
    .el_heading_subLead {
      font-size: 0.8em; } }

/*--------------------------------------------------
ボタン
---------------------------------------------------*/
.ly_btn {
  margin: 3em auto; }
  @media screen and (min-width: 768px) {
    .ly_btn {
      width: 100%;
      max-width: 500px; } }
  @media screen and (max-width: 767px) {
    .ly_btn {
      width: 86%; } }
  .ly_btn.ly_btn__rental {
    margin: 1.5em auto 1em; }
    @media screen and (min-width: 768px) {
      .ly_btn.ly_btn__rental {
        width: 100%;
        max-width: 500px; } }
    @media screen and (max-width: 767px) {
      .ly_btn.ly_btn__rental {
        width: 96%; } }

.el_btn {
  display: block;
  border-radius: 32px;
  background: #29ff71;
  background: linear-gradient(180deg, #29ff71 0%, #3acf6c 100%);
  padding: 2em;
  box-shadow: 0px 6px 0px 0px #378f55;
  position: relative;
  z-index: 3;
  transition: .3s all;
  /*レンタル*/
  /*もう一度見る*/ }
  @media screen and (min-width: 768px) {
    .el_btn {
      text-align: center; } }
  @media screen and (max-width: 767px) {
    .el_btn {
      text-align: left; } }
  .el_btn::before {
    display: block;
    content: "";
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 50%;
    right: 20px;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }
  .el_btn::after {
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 14px;
    border-color: transparent transparent transparent #04ce66;
    position: absolute;
    top: 50%;
    right: 26px;
    z-index: 2;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }
  .el_btn:hover {
    transform: translateY(6px);
    box-shadow: none;
    transition: .3s all; }
  .el_btn.el_btn__rental {
    padding: 1.5em; }
  .el_btn.el_btn__replay {
    border: solid 2px #3acf6c;
    background: #fff;
    color: #378f55;
    font-weight: bold;
    padding: 1em;
    font-size: 1.313e; }

.el_btn_txt {
  color: #fff;
  text-shadow: 0px 0px 7px rgba(0, 0, 0, 0.4);
  font-weight: 900; }
  @media screen and (min-width: 768px) {
    .el_btn_txt {
      font-size: 1.8em; } }
  @media screen and (max-width: 767px) {
    .el_btn_txt {
      font-size: 1.313em; } }

/*--------------------------------------------------
FV下
---------------------------------------------------*/
.bl_fvLeadWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; }
  @media screen and (min-width: 768px) {
    .bl_fvLeadWrapper {
      flex-wrap: nowrap; } }
  @media screen and (max-width: 767px) {
    .bl_fvLeadWrapper {
      flex-wrap: wrap; } }

.bl_fvLead_left {
  width: 100%; }

.bl_fvLead_right {
  width: 70%; }
  @media screen and (max-width: 767px) {
    .bl_fvLead_right {
      margin-top: 2em; } }

@media screen and (max-width: 767px) {
  .bl_fvLead_txtWrapper {
    text-align: center; } }

@media screen and (min-width: 768px) {
  .el_fvLead_txt {
    font-size: 1.313em;
    line-height: 1.8; } }
@media screen and (max-width: 767px) {
  .el_fvLead_txt {
    font-size: 1.125em;
    line-height: 1.7; } }

/*--------------------------------------------------
見極めるポイント
---------------------------------------------------*/
@media screen and (min-width: 768px) {
  .ly_points {
    max-width: 800px;
    width: 100%;
    margin: 4em auto; } }
@media screen and (max-width: 767px) {
  .ly_points {
    width: 100%;
    margin: 2em auto 1em; } }

.ly_belt_section {
  background: #FFF3C9;
  position: relative;
  text-align: center; }
  @media screen and (min-width: 768px) {
    .ly_belt_section {
      padding: 2em; } }
  @media screen and (max-width: 767px) {
    .ly_belt_section {
      padding: 2em 1em; } }
  .ly_belt_section::after {
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 64px 100px 0 100px;
    border-color: #fff3c9 transparent transparent transparent;
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1; }

.bl_pointsList {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start; }
  @media screen and (min-width: 768px) {
    .bl_pointsList.bl_pointsList__nowrap {
      flex-wrap: nowrap; } }
  @media screen and (max-width: 767px) {
    .bl_pointsList.bl_pointsList__nowrap {
      flex-wrap: wrap; } }

.bl_pointsList_item {
  border-radius: 44px;
  border: solid 1px #42312E;
  box-shadow: 1px 2px 0px 5px #42312e;
  background: #42312E;
  /*4位以下*/ }
  @media screen and (min-width: 768px) {
    .bl_pointsList_item {
      width: 45%; } }
  @media screen and (max-width: 767px) {
    .bl_pointsList_item {
      width: 90%; } }
  @media screen and (min-width: 768px) {
    .bl_pointsList_item:nth-child(2n) {
      margin-left: 2em; } }
  @media screen and (min-width: 768px) {
    .bl_pointsList_item:nth-child(n+3) {
      margin-top: 2em; } }
  @media screen and (max-width: 767px) {
    .bl_pointsList_item:nth-child(n+2) {
      margin-top: 1em; } }
  @media screen and (min-width: 768px) {
    .bl_pointsList_item.bl_pointsList_item__service {
      min-height: 210px; } }
  @media screen and (max-width: 767px) {
    .bl_pointsList_item.bl_pointsList_item__service:nth-child(n+2) {
      margin-top: 1em; } }
  @media screen and (min-width: 768px) {
    .bl_pointsList_item.bl_pointsList_item__service .el_points_ttl {
      font-size: 1.6em; } }
  @media screen and (max-width: 767px) {
    .bl_pointsList_item.bl_pointsList_item__service .el_points_ttl {
      font-size: 1.2em; } }
  @media screen and (max-width: 767px) {
    .bl_pointsList_item.bl_pointsList_item__nowrap {
      /*width: 45%;*/
      width: 100%;
      display: flex;
      align-items: center;
      min-height: 0;
      border-radius: 24px; } }
  @media screen and (min-width: 768px) {
    .bl_pointsList_item.bl_pointsList_item__nowrap:nth-child(n+2) {
      margin-left: 1em; } }
  @media screen and (max-width: 767px) {
    .bl_pointsList_item.bl_pointsList_item__nowrap:nth-child(n+2) {
      margin-top: 1em; } }
  .bl_pointsList_item.bl_pointsList_item__nowrap:nth-child(2n) {
    /*			@include mq(sm){
    				margin-left: 1em;
    			}*/ }
  @media screen and (min-width: 768px) {
    .bl_pointsList_item.bl_pointsList_item__nowrap:nth-child(n+3) {
      margin-top: 0em; } }
  @media screen and (max-width: 767px) {
    .bl_pointsList_item.bl_pointsList_item__nowrap:nth-child(n+3) {
      margin-top: 1em; } }
  @media screen and (max-width: 767px) {
    .bl_pointsList_item.bl_pointsList_item__nowrap .el_points_ttl {
      margin-top: 0em !important;
      font-size: 1.125em; } }

.bl_pointsList_head {
  background: #FED468;
  border-radius: 44px 44px 0 0;
  text-align: center;
  position: relative; }
  @media screen and (min-width: 768px) {
    .bl_pointsList_head {
      padding: 1em 2em; } }
  @media screen and (max-width: 767px) {
    .bl_pointsList_head {
      padding: 1em 1.5em; } }
  .bl_pointsList_head::after {
    display: block;
    content: "";
    width: 90%;
    height: 4px;
    background: #42312E;
    border-radius: 24px;
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    margin: auto; }
  @media screen and (min-width: 768px) {
    .bl_pointsList_head.bl_pointsList_head__nowrap {
      padding: 1em 1.5em; } }
  @media screen and (max-width: 767px) {
    .bl_pointsList_head.bl_pointsList_head__nowrap {
      width: 40%;
      padding: 1em 0.8em;
      border-radius: 24px 0 0 24px;
      align-self: stretch; } }
  @media screen and (max-width: 767px) {
    .bl_pointsList_head.bl_pointsList_head__nowrap::after {
      display: none; } }

.el_points_subTtl {
  display: inline-block;
  text-align: center;
  background: #42312E;
  border-radius: 48px;
  padding: 0.2em 2.5em;
  color: #FED468;
  font-weight: 700;
  margin: 0 auto; }
  @media screen and (min-width: 768px) {
    .el_points_subTtl {
      margin-bottom: 0.2em; } }
  @media screen and (max-width: 767px) {
    .el_points_subTtl {
      margin-bottom: 0.4em; } }

.el_points_num {
  color: #42312E;
  position: relative;
  margin-left: 0.5em;
  z-index: 2; }
  .el_points_num::after {
    display: block;
    content: "";
    width: 1.2em;
    height: 1.2em;
    border-radius: 50%;
    background: #FED468;
    position: absolute;
    top: 2px;
    left: -4px;
    right: 0;
    margin: auto;
    z-index: -1; }

.el_points_ttl {
  font-weight: 900;
  line-height: 1.3; }
  @media screen and (min-width: 768px) {
    .el_points_ttl {
      font-size: 1.6em; } }
  @media screen and (max-width: 767px) {
    .el_points_ttl {
      font-size: 1.313em; } }
  @media screen and (min-width: 768px) {
    .el_points_ttl.el_points_ttl__nowrap {
      font-size: 1.2em !important; } }
  @media screen and (max-width: 767px) {
    .el_points_ttl.el_points_ttl__nowrap {
      font-size: 1.125em; } }

.bl_pointsList_lead {
  background: #fff;
  border-radius: 0 0 44px 44px; }
  @media screen and (min-width: 768px) {
    .bl_pointsList_lead {
      padding: 1.5em 1.5em 3em; } }
  @media screen and (max-width: 767px) {
    .bl_pointsList_lead {
      padding: 1.5em 1.5em 2em; } }
  .bl_pointsList_lead > p {
    line-height: 1.7; }
    @media screen and (min-width: 768px) {
      .bl_pointsList_lead > p {
        font-size: 1.125em; } }
    @media screen and (max-width: 767px) {
      .bl_pointsList_lead > p {
        font-size: 1em; } }
  .bl_pointsList_lead.bl_pointsList_lead__service {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    /*子要素*/ }
    @media screen and (min-width: 768px) {
      .bl_pointsList_lead.bl_pointsList_lead__service {
        min-height: 144px;
        padding: 1em; } }
    @media screen and (max-width: 767px) {
      .bl_pointsList_lead.bl_pointsList_lead__service {
        padding: 1em 0.5em; } }
    .bl_pointsList_lead.bl_pointsList_lead__service .el_pointsList_txt {
      width: 100%;
      font-weight: 900; }
      @media screen and (min-width: 768px) {
        .bl_pointsList_lead.bl_pointsList_lead__service .el_pointsList_txt {
          font-size: 1.5em; } }
      @media screen and (max-width: 767px) {
        .bl_pointsList_lead.bl_pointsList_lead__service .el_pointsList_txt {
          font-size: 1.2em; } }
      .bl_pointsList_lead.bl_pointsList_lead__service .el_pointsList_txt.el_pointsList_txt__nowrap {
        font-size: 1.125em; }
    .bl_pointsList_lead.bl_pointsList_lead__service .el_pointsList_txt_sub {
      font-size: 0.8em;
      margin-top: -0.4em; }
      @media screen and (min-width: 768px) {
        .bl_pointsList_lead.bl_pointsList_lead__service .el_pointsList_txt_sub {
          display: block; } }
  @media screen and (max-width: 767px) {
    .bl_pointsList_lead.bl_pointsList_lead__nowrap {
      width: 100%;
      border-radius: 0 24px 24px 0;
      min-height: 0;
      align-self: stretch; } }

@media screen and (min-width: 768px) {
  .ly_points_strongTxt {
    margin: 3em auto; } }
@media screen and (max-width: 767px) {
  .ly_points_strongTxt {
    margin: 3em auto 0; } }

.bl_points_strongTxt {
  text-align: center;
  font-weight: 900;
  color: #42312E; }
  @media screen and (min-width: 768px) {
    .bl_points_strongTxt {
      font-size: 2.5em; } }
  @media screen and (max-width: 767px) {
    .bl_points_strongTxt {
      font-size: 1.7em;
      line-height: 1.7; } }

/*--------------------------------------------------
ランキングテーブル
---------------------------------------------------*/
@media screen and (min-width: 768px) {
  .ly_ranking {
    margin: 6em auto 4em; } }
@media screen and (max-width: 767px) {
  .ly_ranking {
    margin: 3em auto 4em; } }

.ly_rankingTable {
  position: relative;
  /*柄背景対策*/
  z-index: 2;
  /*柄背景対策*/ }
  @media screen and (min-width: 768px) {
    .ly_rankingTable {
      max-width: 940px;
      width: 100%;
      margin: 2em auto; } }
  @media screen and (max-width: 767px) {
    .ly_rankingTable {
      overflow-x: scroll;
      margin: 2em auto; } }

.bl_rankingTable {
  border-collapse: collapse;
  border: solid 1px #42312E;
  background: #FFFFFF; }
  @media screen and (min-width: 768px) {
    .bl_rankingTable {
      width: 100%; } }
  @media screen and (max-width: 767px) {
    .bl_rankingTable {
      width: 100%;
      min-width: 600px;
      /*横スクロール用*/
      margin-left: 1em; } }
  .bl_rankingTable thead th {
    background: #FED468;
    border-left: solid 1px #42312E; }
    @media screen and (min-width: 768px) {
      .bl_rankingTable thead th {
        padding: 0.8em 0.5em; } }
    @media screen and (max-width: 767px) {
      .bl_rankingTable thead th {
        padding: 0.5em;
        font-size: 0.875em; } }
  .bl_rankingTable tbody tr:nth-child(2n) {
    background: #FFFAEC; }
  @media screen and (min-width: 768px) {
    .bl_rankingTable tbody th {
      padding: 1em; } }
  @media screen and (max-width: 767px) {
    .bl_rankingTable tbody th {
      padding: 1em 0.5em; } }
  @media screen and (min-width: 768px) {
    .bl_rankingTable tbody td {
      padding: 1em; } }
  @media screen and (max-width: 767px) {
    .bl_rankingTable tbody td {
      padding: 1em 0.5em;
      font-size: 0.875em; } }

.el_rank_num {
  font-weight: 900;
  color: #333; }
  @media screen and (min-width: 768px) {
    .el_rank_num {
      font-size: 1.313em; } }
  @media screen and (max-width: 767px) {
    .el_rank_num {
      font-size: 1em; } }
  .el_rank_num.el_rank_num__first {
    color: #E28F00; }
  .el_rank_num.el_rank_num__second {
    color: #858E95; }
  .el_rank_num.el_rank_num__third {
    color: #A46C53; }

.el_rank_service {
  color: #42312E; }
  @media screen and (min-width: 768px) {
    .el_rank_service {
      font-size: 1.3em; } }
  @media screen and (max-width: 767px) {
    .el_rank_service {
      font-size: 1em; } }

@media screen and (min-width: 768px) {
  .el_rank_price {
    font-size: 1.3em; } }
@media screen and (max-width: 767px) {
  .el_rank_price {
    font-size: 0.875em; } }

.ly_tableCaution {
  margin-top: 0.5em; }
  @media screen and (min-width: 768px) {
    .ly_tableCaution {
      width: 63%;
      margin-left: auto;
      text-align: right; } }
  @media screen and (max-width: 767px) {
    .ly_tableCaution {
      width: 100%;
      margin-left: 1em;
      text-align: left; } }

.el_tableCaution_txt {
  font-size: 0.8em; }

/*4位から*/
.el_rank_icon_num {
  display: block;
  background: #333333;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  text-align: center; }
  @media screen and (min-width: 768px) {
    .el_rank_icon_num {
      width: 87%;
      height: 68px;
      max-width: 68px;
      font-size: 2.5em; } }
  @media screen and (max-width: 767px) {
    .el_rank_icon_num {
      width: 100%;
      height: 48px;
      max-width: 48px;
      font-size: 2em; } }

/*博士*/
@media screen and (min-width: 768px) {
  .ly_rankinghakase {
    width: 100%;
    max-width: 580px;
    margin: 2em auto; } }
@media screen and (max-width: 767px) {
  .ly_rankinghakase {
    width: 84%;
    margin: 1.5em auto 0em; } }

.bl_rankinghakase {
  display: flex;
  justify-content: center;
  align-items: center; }

.bl_rankinghakase_txt {
  width: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 1em;
  text-align: center;
  position: relative;
  z-index: 2; }
  .bl_rankinghakase_txt::after {
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 0 20px 32px;
    border-color: transparent transparent transparent #ffffff;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1; }
    @media screen and (min-width: 768px) {
      .bl_rankinghakase_txt::after {
        right: -17px; } }
    @media screen and (max-width: 767px) {
      .bl_rankinghakase_txt::after {
        right: -14px; } }

.bl_rankinghakase_icon {
  text-align: center;
  margin-left: 2em; }
  @media screen and (min-width: 768px) {
    .bl_rankinghakase_icon {
      width: 20%; } }
  @media screen and (max-width: 767px) {
    .bl_rankinghakase_icon {
      width: 20%; } }

.el_rankinghakase_txt {
  font-size: 0.8em; }

/*--------------------------------------------------
レンタルwifi
---------------------------------------------------*/
/*レンタル押し*/
.ly_rental {
  position: relative; }
  @media screen and (min-width: 768px) {
    .ly_rental {
      width: 100%;
      max-width: 860px;
      margin: 1em auto; } }
  @media screen and (max-width: 767px) {
    .ly_rental {
      width: 92%;
      margin: 1em auto; } }

.bl_rental {
  background: #F9FFE3;
  border-radius: 40px; }
  @media screen and (min-width: 768px) {
    .bl_rental {
      padding: 2em; } }
  @media screen and (max-width: 767px) {
    .bl_rental {
      padding: 3em 1.5em 2em 1.5em; } }

.el_rental_subTtl {
  text-align: center; }

.el_rental_subTtl_txt {
  display: inline-block;
  font-weight: 900;
  position: relative; }
  @media screen and (min-width: 768px) {
    .el_rental_subTtl_txt {
      font-size: 1.6em; } }
  @media screen and (max-width: 767px) {
    .el_rental_subTtl_txt {
      font-size: 1.2em; } }
  .el_rental_subTtl_txt::before {
    display: block;
    content: "";
    width: 1.5em;
    height: 4px;
    background: #42312E;
    position: absolute;
    top: 50%;
    left: -50px;
    -webkit-transform: translateY(-50%) rotate(60deg);
    transform: translateY(-50%) rotate(60deg); }
  .el_rental_subTtl_txt::after {
    display: block;
    content: "";
    width: 1.5em;
    height: 4px;
    background: #42312E;
    position: absolute;
    top: 50%;
    right: -50px;
    -webkit-transform: translateY(-50%) rotate(-60deg);
    transform: translateY(-50%) rotate(-60deg); }

.el_rental_ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 900; }
  @media screen and (min-width: 768px) {
    .el_rental_ttl {
      width: 80%;
      font-size: 2em;
      margin: 0.5em auto; } }
  @media screen and (max-width: 767px) {
    .el_rental_ttl {
      width: 100%;
      font-size: 1.125em;
      flex-wrap: wrap;
      margin: 0.2em auto 0.5em; } }

.el_rental_ttl_txt {
  text-align: center; }
  @media screen and (min-width: 768px) {
    .el_rental_ttl_txt {
      width: 80%; } }
  @media screen and (max-width: 767px) {
    .el_rental_ttl_txt:first-child {
      width: 100%; } }
  @media screen and (max-width: 767px) {
    .el_rental_ttl_txt:last-child {
      width: 40%; } }

.el_rental_ttl_img {
  text-align: center; }
  @media screen and (min-width: 768px) {
    .el_rental_ttl_img {
      width: 100%; } }
  @media screen and (max-width: 767px) {
    .el_rental_ttl_img {
      width: 60%; } }

.bl_rentalCont_txt {
  margin-top: 1.25em;
  font-size: 1em;
  line-height: 1.7; }

/*料金とか*/
.ly_rentalCont_list {
  margin-top: 1.5em; }
  @media screen and (min-width: 768px) {
    .ly_rentalCont_list .bl_pointsList_lead.bl_pointsList_lead__service {
      min-height: 86px;
      /*打消し*/ } }
  @media screen and (min-width: 768px) {
    .ly_rentalCont_list .bl_pointsList_item.bl_pointsList_item__service {
      min-height: 150px;
      /*打消し*/ } }

/*pickup*/
.ly_pickup {
  position: absolute;
  top: -30px;
  left: 20px;
  z-index: 1; }

.bl_pickup {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #D21616;
  border-radius: 50%; }
  @media screen and (min-width: 768px) {
    .bl_pickup {
      width: 100%;
      max-width: 200px;
      height: 110px;
      padding: 1em; } }
  @media screen and (max-width: 767px) {
    .bl_pickup {
      width: 70%;
      padding: 1.2em; } }

.el_pickup_txt {
  color: #fff;
  font-weight: bold; }
  @media screen and (min-width: 768px) {
    .el_pickup_txt {
      font-size: 1.313em; } }
  @media screen and (max-width: 767px) {
    .el_pickup_txt {
      font-size: 1.125em; } }

/*コンテンツ部分*/
.ly_rentalCont {
  width: 100%;
  margin: 2em auto; }

.bl_rentalCont {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start; }
  @media screen and (min-width: 768px) {
    .bl_rentalCont {
      flex-wrap: nowrap; } }
  @media screen and (max-width: 767px) {
    .bl_rentalCont {
      flex-wrap: wrap; } }

.bl_rentalCont_upper {
  width: 100%;
  flex: 0 1 auto; }

.bl_rentalCont_lower {
  width: 100%;
  flex: 0 1 auto; }
  @media screen and (min-width: 768px) {
    .bl_rentalCont_lower {
      margin-left: 1em; } }
  @media screen and (max-width: 767px) {
    .bl_rentalCont_lower {
      margin-top: 1em; } }

.ly_rentalCont_lead {
  margin-top: 1em; }

.bl_rentalCont_small {
  margin-top: 0.5em;
  font-size: 0.75em;
  text-align: right; }

/*--------------------------------------------------
サービス詳細
---------------------------------------------------*/
.bl_service_ttlWrapper {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center; }

@media screen and (min-width: 768px) {
  .bl_rank_icon {
    width: 10%; } }
@media screen and (max-width: 767px) {
  .bl_rank_icon {
    width: 20%; } }

.bl_service_ttl {
  width: 100%; }
  @media screen and (min-width: 768px) {
    .bl_service_ttl {
      margin-left: 2em; } }
  @media screen and (max-width: 767px) {
    .bl_service_ttl {
      margin-left: 1em; } }

.ly_sectionLogo {
  display: block; }
  @media screen and (min-width: 768px) {
    .ly_sectionLogo {
      width: 100%;
      margin: 3em auto; } }
  @media screen and (max-width: 767px) {
    .ly_sectionLogo {
      width: 100%;
      margin: 2em auto; } }

@media screen and (min-width: 768px) {
  .ly_service_lead > p {
    font-size: 1.125em;
    line-height: 1.7; } }
@media screen and (max-width: 767px) {
  .ly_service_lead > p {
    font-size: 1em;
    line-height: 1.7; } }

/*4位からの横並び*/
.bl_service_contWrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 3em auto; }
  @media screen and (min-width: 768px) {
    .bl_service_contWrapper {
      flex-wrap: nowrap; } }
  @media screen and (max-width: 767px) {
    .bl_service_contWrapper {
      flex-wrap: wrap; } }
  .bl_service_contWrapper .ly_sectionLogo {
    margin: 0 auto; }
    @media screen and (min-width: 768px) {
      .bl_service_contWrapper .ly_sectionLogo {
        width: 50%; } }
    @media screen and (max-width: 767px) {
      .bl_service_contWrapper .ly_sectionLogo {
        fwidth: 100%; } }
  .bl_service_contWrapper .ly_service_lead {
    width: 100%; }
    @media screen and (min-width: 768px) {
      .bl_service_contWrapper .ly_service_lead {
        margin-left: 2em; } }
    @media screen and (max-width: 767px) {
      .bl_service_contWrapper .ly_service_lead {
        margin-top: 2em; } }

/*wifi博士*/
@media screen and (max-width: 767px) {
  .ly_service_head {
    margin-bottom: 2em; } }

.bl_service_head {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center; }
  @media screen and (max-width: 767px) {
    .bl_service_head {
      flex-wrap: wrap; } }

@media screen and (min-width: 768px) {
  .bl_service_head_left {
    width: 70%; } }
@media screen and (max-width: 767px) {
  .bl_service_head_left {
    width: 80%; } }

.bl_service_head_right {
  width: 100%; }
  @media screen and (min-width: 768px) {
    .bl_service_head_right {
      margin-left: 1em; } }

.bl_service_head_rightInner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center; }

.bl_balloon_icon {
  width: 30%; }

.el_balloon_icon_txt {
  display: block;
  margin-top: 0.4em;
  font-size: 0.875em;
  text-align: center; }

.bl_balloon {
  /*dl*/
  width: 90%;
  margin-right: 2em;
  position: relative;
  z-index: 2; }
  .bl_balloon::after {
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 28px 0 28px 40px;
    border-color: transparent transparent transparent #F1C148;
    position: absolute;
    top: 50%;
    right: -20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: -1; }

/*こんな方におすすめ*/
.bl_balloon_ttl {
  background: #FED468;
  border-radius: 16px 16px 0 0;
  text-align: center;
  font-weight: 900; }
  @media screen and (min-width: 768px) {
    .bl_balloon_ttl {
      font-size: 1.313em;
      padding: 0.8em 1em; } }
  @media screen and (max-width: 767px) {
    .bl_balloon_ttl {
      font-size: 1.25em;
      padding: 0.5em 0.8em; } }

.bl_balloon_cont {
  background: #fff;
  border: solid 4px #FED468;
  padding: 1em;
  border-radius: 0 0 16px 16px;
  font-weight: 900; }
  @media screen and (min-width: 768px) {
    .bl_balloon_cont {
      font-size: 1.25em; } }
  @media screen and (max-width: 767px) {
    .bl_balloon_cont {
      font-size: 1em; } }

/*--------------------------------------------------
まとめ
---------------------------------------------------*/
.bl_matome {
  border-radius: 44px;
  border: solid 1px #42312E;
  box-shadow: 1px 2px 0px 8px #42312e;
  background: #fff; }
  @media screen and (min-width: 768px) {
    .bl_matome {
      padding: 2em 0; } }
  @media screen and (max-width: 767px) {
    .bl_matome {
      papadding: 2em 0 0; } }

.ly_matome_ttl {
  position: relative; }
  @media screen and (min-width: 768px) {
    .ly_matome_ttl {
      padding: 0 3em; } }
  @media screen and (max-width: 767px) {
    .ly_matome_ttl {
      padding: 2em 1.5em 0; } }

.el_matomeTxt_sub {
  display: inline-block;
  padding: 0.2em 2em;
  background: #42312E;
  color: #FED468;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 48px; }
  @media screen and (min-width: 768px) {
    .el_matomeTxt_sub {
      font-size: 1.313em; } }
  @media screen and (max-width: 767px) {
    .el_matomeTxt_sub {
      pfont-size: 1.125em; } }

.ly_matome_cont {
  padding: 0 2em;
  background: #FFFBEC; }
  @media screen and (min-width: 768px) {
    .ly_matome_cont {
      margin: 2em auto; } }
  @media screen and (max-width: 767px) {
    .ly_matome_cont {
      margin: 3em auto; } }

.bl_matome_cont {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 1.5em 0; }
  @media screen and (min-width: 768px) {
    .bl_matome_cont {
      width: 90%; } }
  @media screen and (max-width: 767px) {
    .bl_matome_cont {
      width: 100%;
      flex-wrap: wrap; } }

.el_matome_lead {
  width: 100%;
  line-height: 1.8; }
  @media screen and (min-width: 768px) {
    .el_matome_lead {
      font-size: 1.313em; } }
  @media screen and (max-width: 767px) {
    .el_matome_lead {
      font-size: 1.125em; } }

.el_matome_icon {
  width: 30%;
  position: relative; }
  @media screen and (min-width: 768px) {
    .el_matome_icon {
      margin-left: 2em; } }
  @media screen and (max-width: 767px) {
    .el_matome_icon {
      margin-top: 2em; } }

.el_matome_icon_hands {
  width: 50%;
  position: absolute;
  z-index: 1; }
  @media screen and (min-width: 768px) {
    .el_matome_icon_hands {
      top: -40px;
      left: -80px; } }
  @media screen and (max-width: 767px) {
    .el_matome_icon_hands {
      top: 10px;
      left: -50px; } }

/*男性*/
.el_matome_img {
  position: absolute;
  right: 20px;
  z-index: 1; }
  @media screen and (min-width: 768px) {
    .el_matome_img {
      width: 30%;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%); } }
  @media screen and (max-width: 767px) {
    .el_matome_img {
      width: 40%;
      bottom: -50px; } }

/*--------------------------------------------------
footer
---------------------------------------------------*/
.footer {
  padding-top: 2em;
  background-color: #333; }

.footer .copyright {
  background: #333;
  color: #aaa;
  padding: 1.5em 0;
  font-size: 0.8em;
  text-align: center; }

.ly_companyDetails {
  width: 90%;
  margin: 0 auto; }

.el_txt_annotation {
  color: #D9CFCD; }

.bl_companyDetails {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  margin: 0.5em 0; }

.bl_companyDetails_ttl {
  color: #D9CFCD; }

.bl_companyDetails_txt {
  color: #D9CFCD;
  margin-left: 0.5em; }

/*--------------------------------------------------
タブ切り替え
---------------------------------------------------*/
.ly_tab {
  margin: 2em auto; }
  @media screen and (min-width: 768px) {
    .ly_tab {
      width: 98%;
      max-width: 1200px; } }
  @media screen and (max-width: 767px) {
    .ly_tab {
      width: 96%; } }

/*タブヘッドwrapper*/
@media screen and (max-width: 767px) {
  .ly_tabhead {
    overflow-x: scroll; } }

/*タブヘッド*/
.bl_tabhead {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center; }
  @media screen and (max-width: 767px) {
    .bl_tabhead {
      min-width: 600px; } }
  .bl_tabhead > li {
    width: 100%;
    background: #ddd;
    text-align: center;
    font-size: 1.313em;
    border-radius: 12px 12px 0 0;
    cursor: pointer;
    color: #707070;
    transition: .3s all;
    align-self: stretch; }
    @media screen and (min-width: 768px) {
      .bl_tabhead > li {
        padding: 1em; } }
    @media screen and (max-width: 767px) {
      .bl_tabhead > li {
        padding: 0.3em; } }
    .bl_tabhead > li.js-active {
      background: #FED468;
      color: #725409;
      font-weight: bold;
      /*text-shadow: 0px 0px 4px rgba(0,0,0,0.3);*/
      transition: .3s all; }
      @media screen and (min-width: 768px) {
        .bl_tabhead > li.js-active .el_tabTxt {
          font-size: 1.2em; } }
    .bl_tabhead > li:nth-child(n+2) {
      margin-left: 0.2em; }

/*タブコンテンツ*/
.bl_tabcont > li {
  display: none;
  width: 100%; }
  .bl_tabcont > li.js-active {
    display: block; }

/*タブコンテンツの中のリスト*/
.bl_tabcont_list:nth-child(n+2) {
  border-top: solid 1px #ddd;
  padding-top: 2em;
  margin-top: 2em; }

.el_tabIcon {
  max-width: 44px;
  margin-right: 0.5em;
  display: inline-block;
  vertical-align: middle; }
  @media screen and (max-width: 767px) {
    .el_tabIcon {
      margin-bottom: 0.5em; } }

.el_tabTxt {
  display: inline-block;
  vertical-align: middle; }
  @media screen and (max-width: 767px) {
    .el_tabTxt {
      line-height: 1.3;
      font-size: 0.875em; } }

/*ランキングを見るボタン*/
.ly_rankingBtn {
  margin: 2em auto; }
  @media screen and (min-width: 768px) {
    .ly_rankingBtn {
      width: 100%;
      max-width: 610px; } }
  @media screen and (max-width: 767px) {
    .ly_rankingBtn {
      width: 92%; } }

/**/

/*# sourceMappingURL=style.css.map */
