@charset "UTF-8";
/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

/* Anti FOUC */
.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}

/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(43, 46, 56, 0.9);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */
.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
  background: #fff;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */
.remodal-close {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "\00d7";
  text-align: center;
}

/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* Keyframes
   ========================================================================== */
@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Media queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 700px;
  }
}
/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

.is_sp {
  display: none;
}

.header {
  position: absolute;
  z-index: 9999;
  top: 0;
  width: 100%;
}

a {
  cursor: pointer;
}

#logo {
  box-sizing: border-box;
  padding: 24px 80px 0;
}
#logo img {
  height: 30px;
}
#content {
  width: 100%;
  top: 0;
  padding: 0;
  overflow: hidden;
}

.mv {
  width: 100%;
  height: 588px;
}
.mv.is_pc {
  background: url(/ytc/campaign/renkei/alexa/img/al_mv_bg.png) top center;
  background-size: cover;
  background-repeat: no-repeat;
}
.mv h2 {
  padding: 105px 20px 0;
  text-align: right;
}
.mv h2 img {
  width: 58%;
  max-width: 552px;
}

/*
.btn_detail {
  padding: 0 20px;
  margin-top: 30px;
  text-align: center;
  a {
    display: inline-block;
    width: 100%;
    max-width: 324px;
    padding: 15px;
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    background-color: #009481;
    background-position: 95% 50%;
    background-repeat: no-repeat;
    border-radius: 8px;
    box-shadow: inset 0px -3px 0px 0px rgba(121, 63, 0, 0.4);
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s;
    &:hover {
      opacity: 0.7;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
      box-shadow: none;
      -webkit-transform: translateY(3px);
      -ms-transform: translateY(3px);
      transform: translateY(3px);
    }
  }
}
*/
/*
.box_bnr01 {
  padding: 35px 0;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  a:hover {
    opacity: 0.7;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  }
}

.box_bnr02 {
  margin-top: 55px;
  .btn_detail a {
    max-width: 560px;
    background-image: none;
  }
}
*/
.nav-right {
  position: fixed;
  right: 0;
  top: 40%;
  z-index: 10;
}
.nav-right a {
  font-weight: bold;
  display: inline-block;
  width: 160px;
  padding: 11px 0;
  -webkit-transition: all .2s ease 0s;
  transition: all .2s ease 0s;
  text-align: center;
  vertical-align: middle;
  color: #333;
  border-radius: 8px 0 0 8px;
}
.nav-right a.nav_btn01 {
  background-color: #ffda00;
  box-shadow: 0 2px 0 0 #c29200;
}
.nav-right a.nav_btn01:hover {
  text-decoration: none;
  background-color: #ffc600;
  box-shadow: none;
  -webkit-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transform: translateY(3px);
}
.nav-right a.nav_btn02 {
  margin-top: 20px;
  padding-right: 40px;
  color: #fff;
  background-color: #22a292;
  background-position: 120px 50%;
  background-repeat: no-repeat;
  box-shadow: 0px 2px 0px 0px #1b7158;
}
.nav-right a.nav_btn02:hover {
  text-decoration: none;
  background-color: #248d80;
  box-shadow: none;
  -webkit-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transform: translateY(3px);
}

#btn {
  background-color: #fff;
}
#btn.is_fixed {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
#btn .btn_box {
  width: 100% !important;
  box-sizing: border-box;
}
#btn .btn_box .btn_1 {
  width: 33.3333%;
  height: 30.3%;
  float: left;
  text-align: center;
  font-size: 18px;
  line-height: 28px;
  color: #333;
  box-sizing: border-box;
}
#btn .btn_box .btn_1 a {
  width: 100%;
  display: block;
  text-decoration: none;
  padding: 10% 0;
  color: #333;
}
#btn .btn_box .btn_1 a:visited {
  color: #333;
}
#btn .btn_box .btn_1 a span {
  position: relative;
}
#btn .btn_box .btn_1 a span:after {
  content: "";
  width: 14px;
  height: 7px;
  position: absolute;
  background-image: url(/ytc/campaign/renkei/alexa/img/al_icon_down.png);
  background-size: cover;
  background-repeat: no-repeat;
  top: 40%;
  right: -30px;
}

.conver_box {
  background: #FED331;
  text-align: center;
}
.conver_box .container {
  padding-top: 95px;
  padding-bottom: 95px;
  max-width: 870px;
}
.conver_box .ttl {
  font-size: 28px;
  font-weight: bold;
}
.conver_box .ttl + * {
  margin: 20px auto 0;
}
.conver_box .btn {
  margin: 0 auto 20px;
  text-align: center;
  padding-top: 30px;
}
.conver_box .btn a.btn_2 {
  width: 100%;
}
.conver_box .kuroneko {
  padding: 30px 0 0px;
  font-size: 16px;
  line-height: 16px;
  color: #333;
}
.conver_box .kuroneko a {
  color: #333;
}
.conver_box .kuroneko a:visited {
  color: #333;
}
.conver_box .kuroneko .allow:after {
  right: 0;
  border-right: solid #333333 1px;
  border-top: solid #333333 1px;
}

div.btn a.btn_1 {
  font-weight: bold;
  position: relative;
  display: inline-block;
  font-size: 24px;
  line-height: 34px;
  -webkit-transition: all .2s ease 0s;
  transition: all .2s ease 0s;
  text-align: center;
  vertical-align: middle;
  color: #333;
  padding: 2.7% 8%;
  border-radius: 8px;
  background-color: #ffda00;
  box-shadow: 0 3px 0 0 #c29200;
}
@media screen and (max-width: 750px) {
  div.btn a.btn_1 {
    font-size: 15px;
    line-height: 1.4;
  }
}

div.btn a.btn_1:hover {
  text-decoration: none;
  background-color: #ffc600;
  box-shadow: none;
  -webkit-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transform: translateY(3px);
}

div.btn a.btn_2 {
  font-weight: bold;
  position: relative;
  display: inline-block;
  font-size: 24px;
  line-height: 34px;
  -webkit-transition: all .2s ease 0s;
  transition: all .2s ease 0s;
  text-align: center;
  vertical-align: middle;
  color: #333;
  padding: 2.7% 8%;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 3px 0 0 #E7E7E7;
}
@media screen and (max-width: 750px) {
  div.btn a.btn_2 {
    font-size: 15px;
    line-height: 1.4;
  }
}

div.btn a.btn_2:hover {
  text-decoration: none;
  background-color: #fff;
  box-shadow: none;
  -webkit-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transform: translateY(3px);
}

.allow {
  position: relative;
  padding-right: 18px;
}
.allow:after {
  content: "";
  border-right: solid #333333 2px;
  border-top: solid #333333 2px;
  width: 9px;
  height: 9px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .allow:after {
    width: 7px;
    height: 7px;
    right: 15px;
  }
}

.hdg_section {
  font-size: 42px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 0.08em;
}

#sec_01 {
  background: #fff;
  padding: 91px 0 0 0;
}
#sec_01:after {
  content: "";
  display: block;
  clear: both;
}
#sec_01 .sec_01_inner {
  position: relative;
  height: 1090px;
}
@media screen and (min-width: 751px) and (max-width: 1080px) {
  #sec_01 .sec_01_inner {
    height: 900px;
  }
}
@media screen and (max-width: 750px) {
  #sec_01 .sec_01_inner {
    height: auto;
  }
}
#sec_01 .sec_01_lead {
  position: relative;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
#sec_01 .sec_01_lead:before, #sec_01 .sec_01_lead:after {
  content: "";
  display: block;
  position: absolute;
}
#sec_01 .sec_01_lead:before {
  width: 33.6%;
  max-width: 336px;
  height: 185px;
  top: -55px;
  left: -6%;
  background: url(/ytc/campaign/renkei/alexa/img/al_sec01_bg_left_pc.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 750px) {
  #sec_01 .sec_01_lead:before {
    background: url(/ytc/campaign/renkei/alexa/img/al_sec01_bg_left_sp.png) no-repeat;
    background-size: contain;
    left: 0;
    top: -65px;
    width: 67.5px;
    max-width: 67.5px;
    height: 186.5px;
  }
}
#sec_01 .sec_01_lead:after {
  width: 32.1%;
  max-width: 321px;
  height: 184px;
  top: -40px;
  right: -3%;
  background: url(/ytc/campaign/renkei/alexa/img/al_sec01_bg_right_pc.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 750px) {
  #sec_01 .sec_01_lead:after {
    background: url(/ytc/campaign/renkei/alexa/img/al_sec01_bg_right_sp.png) no-repeat;
    background-size: contain;
    right: 0;
    top: -77px;
    width: 74.5px;
    height: 180px;
    max-width: 74.5px;
  }
}

.check_list {
  margin-bottom: 50px;
  font-size: 24px;
  font-weight: bold;
  display: table;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 750px) {
  .check_list {
    font-size: 17px;
    margin-bottom: 20px;
  }
}
.check_list_item {
  padding-left: 50px;
  margin-bottom: 15px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .check_list_item {
    padding-left: 38px;
  }
}
.check_list_item:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url(/ytc/campaign/renkei/alexa/img/al_icon_check.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 8px;
  left: 0;
}
@media screen and (max-width: 750px) {
  .check_list_item:before {
    width: 22px;
    height: 22px;
  }
}
.check_list_item span {
  position: relative;
  background: linear-gradient(transparent 70%, #CDE7E3 70%);
}

.box_sec {
  height: 420px;
  background-repeat: no-repeat;
  width: 50%;
  position: absolute;
}
@media screen and (min-width: 751px) and (max-width: 1080px) {
  .box_sec {
    height: 330px;
  }
}
@media screen and (max-width: 750px) {
  .box_sec {
    height: auto;
    width: 100%;
    position: static;
  }
}
.box_sec .container {
  height: 420px;
  position: absolute;
  top: 0;
}
@media screen and (min-width: 751px) and (max-width: 1080px) {
  .box_sec .container {
    height: 330px;
  }
}
@media screen and (max-width: 750px) {
  .box_sec .container {
    height: auto;
    width: 100%;
    position: static;
  }
}

.box1_sec_01 {
  top: 0;
  left: 0;
}
.box1_sec_01 .container {
  background-image: url(/ytc/campaign/renkei/alexa/img/al_sec01_bg_01.png);
  background-position: right top;
  background-size: cover;
  right: -145px;
  width: 920px;
  padding-right: 170px;
  padding-top: 50px;
}
@media screen and (min-width: 751px) and (max-width: 1080px) {
  .box1_sec_01 .container {
    background-size: contain;
    padding-right: 120px;
    right: -122px;
  }
}
@media screen and (max-width: 750px) {
  .box1_sec_01 .container {
    width: 100%;
    background-image: none;
    padding: 0;
  }
}
.box1_sec_01 .container .balloon {
  text-align: right;
}
@media screen and (min-width: 751px) and (max-width: 1080px) {
  .box1_sec_01 .container .balloon img {
    width: 220px;
  }
}
@media screen and (max-width: 750px) {
  .box1_sec_01 .container .balloon img {
    width: 100%;
  }
}

.box2_sec_01 {
  top: 140px;
  right: 0;
}
@media screen and (max-width: 750px) {
  .box2_sec_01 {
    margin-top: 10px;
  }
}
.box2_sec_01 .container {
  background-image: url(/ytc/campaign/renkei/alexa/img/al_sec01_bg_02.png);
  background-position: left top;
  background-size: cover;
  padding-left: 174px;
  padding-top: 103px;
  left: -145px;
  width: 960px;
}
@media screen and (min-width: 751px) and (max-width: 1080px) {
  .box2_sec_01 .container {
    background-size: contain;
    padding-left: 120px;
    left: -122px;
  }
}
@media screen and (max-width: 750px) {
  .box2_sec_01 .container {
    width: 100%;
    background-image: none;
    padding: 0;
  }
}
.box2_sec_01 .container .balloon {
  text-align: left;
}
@media screen and (min-width: 751px) and (max-width: 1080px) {
  .box2_sec_01 .container .balloon img {
    width: 300px;
  }
}
@media screen and (max-width: 750px) {
  .box2_sec_01 .container .balloon img {
    width: 100%;
  }
}

.box3_sec_01 {
  width: 100%;
  top: 580px;
  right: 0;
}
@media screen and (min-width: 751px) and (max-width: 1080px) {
  .box3_sec_01 {
    top: 485px;
  }
}
@media screen and (max-width: 750px) {
  .box3_sec_01 {
    margin-top: 10px;
  }
}
.box3_sec_01 .container {
  background-image: url(/ytc/campaign/renkei/alexa/img/al_sec01_bg_03.png);
  background-position: right top;
  background-size: cover;
  padding-right: 115px;
  padding-top: 30px;
  width: 860px;
  right: 39.5%;
}
@media screen and (min-width: 751px) and (max-width: 1080px) {
  .box3_sec_01 .container {
    background-size: contain;
  }
}
@media screen and (max-width: 750px) {
  .box3_sec_01 .container {
    width: 100%;
    background-image: none;
    padding: 0;
  }
}
.box3_sec_01 .container .balloon {
  text-align: right;
}
@media screen and (min-width: 751px) and (max-width: 1080px) {
  .box3_sec_01 .container .balloon img {
    width: 220px;
  }
}
@media screen and (max-width: 750px) {
  .box3_sec_01 .container .balloon img {
    width: 100%;
  }
}
.box3_sec_01 .check_list {
  width: 46%;
  position: absolute;
  bottom: 0;
  right: 0;
  margin-bottom: 0;
  font-size: 18px;
}
@media screen and (min-width: 751px) and (max-width: 1080px) {
  .box3_sec_01 .check_list {
    font-size: 16px;
  }
}
@media screen and (max-width: 750px) {
  .box3_sec_01 .check_list {
    font-size: 15px;
    position: static;
    width: 100%;
    padding: 25px 20px;
  }
}
.box3_sec_01 .check_list_item {
  padding-left: 43px;
  margin-bottom: 12px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .box3_sec_01 .check_list_item {
    padding-left: 35px;
  }
}
.box3_sec_01 .check_list_item:before {
  width: 24px;
  height: 24px;
  background: url(/ytc/campaign/renkei/alexa/img/al_icon_check2.png) no-repeat;
  background-size: contain;
  top: 3px;
}
@media screen and (max-width: 750px) {
  .box3_sec_01 .check_list_item:before {
    width: 20px;
    height: 20px;
    top: 5px;
  }
}
.box3_sec_01 .check_list_item span {
  position: relative;
  background: linear-gradient(transparent 70%, #FFF5CF 70%);
}

.content_box .ttl_content_box {
  font-size: 38px;
  line-height: 52px;
}
.content_box p {
  font-size: 16px;
  line-height: 2.25;
  margin-top: 20px;
}

.box1_sec_01 .left_box {
  margin-left: -36px;
  padding: 11px 28px 0 0;
}

.box_sec.box2_sec_01 .text_box {
  float: left;
}

#sec_02 {
  padding: 105px 0;
}

.lyt-use {
  border-top: 1px solid #e0e0e0;
}

.lyt-use .use-btn {
  border-bottom: 1px solid #e0e0e0;
}
.lyt-use .use-btn .button_ttl {
  position: relative;
  box-sizing: border-box;
  height: 68px;
  padding: 0 0 0 78px;
  cursor: pointer;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  color: #333;
  font-size: 18px;
}
.lyt-use .use-btn .button_ttl .num {
  display: block;
  width: 30px;
  height: 30px;
  background: #138775;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto;
  line-height: 30px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.lyt-use .use-btn .text {
  font-size: 18px;
  line-height: 68px;
}
.lyt-use .use-btn .icon {
  font-size: 22px;
  line-height: 6px;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 20px;
  bottom: 0;
  display: inline-block;
  box-sizing: border-box;
  width: 21px;
  height: 3px;
  margin: auto;
  -webkit-transition: background .3s ease;
  transition: background .3s ease;
  text-align: center;
  color: #009a8b;
}

.use-block {
  padding: 20px;
  font-size: 16px;
  display: none;
}
.use-block p {
  line-height: 2.25;
}

.lyt-use .use-btn .icon-on {
  display: none;
}
.lyt-use .button_ttl.active .icon-on {
  display: block;
}
.lyt-use .button_ttl.active .icon-off {
  display: none;
}

.use-block strong {
  font-weight: bold;
  color: #333;
}

.lyt_note li {
  font-size: 12px;
  line-height: 36px;
}

.box_use {
  padding: 20px 35px;
  background: #f7f7f7;
  font-size: 16px;
  line-height: 36px;
}

.lyt_disc li:before {
  content: '・';
}

.box_step {
  padding: 30px 22px 30px 30px;
  border: 1px solid #e0e0e0;
  display: table;
  position: relative;
  width: 100%;
}
.box_step .left_step {
  width: 79px;
  display: table-cell;
  vertical-align: top;
}
.box_step .right_step {
  padding-left: 20px;
  padding-top: 5px;
  display: table-cell;
  vertical-align: top;
}
.box_step .right_step p {
  font-size: 16px;
  line-height: 2;
}
.box_step .right_step .lyt_note {
  margin-top: 25px;
}
.box_step .right_step li {
  line-height: 25px;
}
.box_step:after {
  position: absolute;
  content: "";
  width: 20px;
  height: 10px;
  background-repeat: no-repeat;
  background-size: cover;
  left: 50%;
  bottom: -30px;
}
.box_step:last-child:after {
  display: none;
}
.box_step + .box_step {
  margin-top: 50px;
}

.use-btn3 .use-block {
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}

.box_step .tbl-container {
  width: 100%;
  font-size: 14px;
}
.box_step .tbl-container tbody th, .box_step .tbl-container tbody td {
  padding: 11px 10px 12px;
}

#sec_03 {
  padding: 115px 0 70px;
  background: #f7f7f7;
  background: url(/ytc/campaign/renkei/alexa/img/al_sec03_bg.jpg);
}
#sec_03 .hdg_section {
  margin-bottom: 50px;
}

.box-setting + .box-setting {
  margin-top: 70px;
}

.ttl_box_setting {
  font-size: 24px;
  line-height: 27px;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 1.2px;
  text-align: center;
}

.ctn-box-setting {
  padding: 36px 35px;
  border: 1px solid #ccc;
  background: #fff;
  text-align: center;
}
.ctn-box-setting h3 {
  font-size: 20px;
  line-height: 27px;
  font-weight: bold;
}

.bs02 .ctn-box-setting {
  padding: 5px 35px;
}

.bs04 .ctn-box-setting {
  text-align: left;
  padding: 20px 35px;
}

.ctn-box-setting a {
  text-decoration: underline;
}

.ctn-box-setting .btn_1 {
  text-decoration: none;
}

.ctn-box-setting .box_lead {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 24px;
}
.ctn-box-setting .box_lead span {
  color: #138775;
}

.ctn-box-setting .box_bottomtxt {
  font-size: 18px;
  margin-top: 20px;
}
.ctn-box-setting .box_bottomtxt a {
  display: inline-block;
  line-height: 1.5;
  position: relative;
  text-decoration: none;
}

.ctn-box-setting .box_dotlist li {
  text-indent: -1em;
  padding-left: 1em;
}

.down_app {
  width: 100%;
}

.ios_app {
  float: left;
  text-align: right;
  width: 50%;
  display: inline-block;
}
.ios_app .ios_dow {
  padding-right: 40px;
  width: 290px;
  float: right;
}

.down_app p {
  text-align: left;
  padding-bottom: 15px;
  font-size: 16px;
  text-align: center;
}

.android_app {
  float: left;
  text-align: left;
  width: 50%;
  display: inline-block;
}
.android_app .android_down {
  width: 290px;
}

.ctn-box-setting .lyt_number {
  text-align: left;
}
.ctn-box-setting .lyt_number li {
  font-size: 14px;
  line-height: 1.4;
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 60px;
}
.ctn-box-setting .lyt_number li + li {
  border-top: solid #D7D7D7 1px;
}
.ctn-box-setting .lyt_number li:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  font-size: 24px;
  font-weight: bold;
  color: #138775;
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.ctn-box-setting .lyt_number li:nth-child(1):before {
  content: "1";
}
.ctn-box-setting .lyt_number li:nth-child(2):before {
  content: "2";
}
.ctn-box-setting .lyt_number li:nth-child(3):before {
  content: "3";
}
.ctn-box-setting .lyt_number li:nth-child(4):before {
  content: "4";
}
.ctn-box-setting .lyt_number li:last-child {
  margin-bottom: 0;
}

.box-setting .note_setting {
  font-size: 12px;
  line-height: 58.06px;
  text-align: right;
}

#sec_04 {
  padding: 117px 0 0 0;
}
#sec_04 .hdg_section {
  margin-bottom: 50px;
}
#sec_04 p {
  font-size: 16px;
}
#sec_04 * + p {
  margin-top: 32px;
}

.note {
  display: block;
  padding-left: 1em;
  font-size: 14px;
  position: relative;
}
.note:before {
  content: "\203B";
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1em;
}

#sec_05 {
  padding-top: 95px;
  padding-bottom: 95px;
  background: #138775;
  color: #fff;
}

.box_sec_05 .container {
  display: table;
  width: 100%;
}
.box_sec_05 .img, .box_sec_05 .txt {
  display: table-cell;
  vertical-align: middle;
}
.box_sec_05 .img {
  text-align: center;
  width: 44%;
}
.box_sec_05 .img img {
  max-width: 100%;
}
.box_sec_05 .txt {
  padding-right: 20px;
  font-size: 18px;
  vertical-align: middle;
  line-height: 1.5;
}
.box_sec_05 .txt .ttl {
  font-size: 28px;
  font-weight: bold;
}
.box_sec_05 .txt .ttl + * {
  margin-top: 12px;
}
.box_sec_05 .txt .btn {
  margin-top: 24px;
}
.box_sec_05 .txt .btn .btn_1 {
  font-size: 18px;
  width: 300px;
}
.box_sec_05 .txt .btn .allow:after {
  width: 8px;
  height: 8px;
  right: 18px;
}

footer .subftr {
  padding-top: 88px;
}

.f_box {
  width: 500px;
  margin: 0 auto;
  text-align: center;
}

footer .subftr figure {
  padding-right: 4.8%;
  display: inline-block;
}
footer .subftr figure:last-child {
  padding-right: 0;
}
footer .mainftr {
  height: 10%;
  background-color: #009481;
  color: #fff;
  padding: 33px 0;
  margin-top: 80px;
  line-height: 1.8;
}
footer .mainftr .txt_1 {
  float: left;
  margin-top: -4px;
}
footer .mainftr .txt_2 {
  float: right;
}
footer .mainftr .txt_2 p {
  float: left;
}
footer .mainftr .txt_1 {
  float: left;
}

.txt_1 p {
  font-size: 12px;
  line-height: 26px;
}

.txt_2 a {
  color: #fff;
  font-size: 14px;
  line-height: 26px;
}

.allow_1 a {
  position: relative;
  padding-right: 18px;
  margin-right: 18px;
}
.allow_1 a:after {
  content: "|";
  background-repeat: no-repeat;
  width: 2px;
  height: 30px;
  margin-left: 9px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

footer .allow_1 a:last-child {
  margin-right: 0;
  padding-right: 0;
}
footer .allow_1 a:last-child:after {
  content: none;
}

ul.list li {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 16px;
  margin-left: 2em;
}

.icon-window-01 {
  padding-left: 1.2em;
  position: relative;
}
.icon-window-01:before {
  font-size: 0.9em;
  position: absolute;
  top: 0.4em;
  left: 0.2em;
}

.txt_bold {
  font-weight: bold;
}

.txt_left {
  text-align: left;
}

/* sp
--------------------------------------------------------- */
/* display
--------------------------------------------------------- */
.inb {
  display: inline-block;
}

/* width(%)
--------------------------------------------------------- */
.w10p {
  width: 10%;
}

.w20p {
  width: 20%;
}

.w30p {
  width: 30%;
}

.w40p {
  width: 40%;
}

.w50p {
  width: 50%;
}

.w60p {
  width: 60%;
}

.w70p {
  width: 70%;
}

.w80p {
  width: 80%;
}

.w90p {
  width: 90%;
}

.w100p {
  width: 100%;
}

/* margin
--------------------------------------------------------- */
.mt0 {
  margin-top: 0px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

/* txt
--------------------------------------------------------- */
.txtBold {
  font-weight: bold;
}

.alignL {
  text-align: left;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.alignR {
  text-align: right;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.alignC {
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.alignT {
  vertical-align: top;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.alignM {
  vertical-align: middle;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.alignB {
  vertical-align: bottom;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media screen and (max-width: 750px) {
  .is_sp {
    display: inline-block;
  }

  .is_pc {
    display: none;
  }

  .mv {
    height: auto;
    background: none;
  }
  .mv h2 {
    padding: 0;
  }
  .mv h2 img {
    width: 100%;
    max-width: 100%;
  }

  .btn_detail {
    margin-top: 20px;
  }
  .btn_detail a {
    padding: 10px;
    font-size: 16px;
  }
  .btn_detail a:hover {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }

  .box_bnr01 a:hover {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }

  .box_bnr02 {
    margin-top: 35px;
  }

  .nav-right {
    top: 30%;
    z-index: 100;
    -webkit-transition: right .2s ease;
    transition: right .2s ease;
  }
  .nav-right a {
    width: 100px;
    line-height: 1.8;
  }
  .nav-right a.nav_btn02 {
    padding-right: 0;
  }

  .conver_box .container {
    padding: 30px 20px 48px;
  }
  .conver_box .ttl {
    font-size: 18px;
    line-height: 1.7;
    padding: 0 0;
  }
  .conver_box .btn {
    padding-top: 30px;
  }
  .conver_box .kuroneko {
    padding: 20px 0 30px;
  }

  #sec_00 {
    padding-top: 60px;
  }

  .list_campaign_info {
    margin-top: 30px;
    padding: 0 20px;
  }
  .list_campaign_info .hdg, .list_campaign_info .txt {
    padding: 20px 10px 20px 5px;
    font-size: 14px;
  }
  .list_campaign_info .hdg {
    width: 30%;
  }
  .list_campaign_info .txt a {
    word-break: break-all;
  }

  .box1_sec_01 .left_box {
    margin-left: 0;
  }

  .box_sec.box1_sec_01 .right_box {
    padding-right: 0;
  }
  .box_sec.box1_sec_01 .text_box li {
    padding-left: 30px;
    font-size: 21px;
  }
  .box_sec.box1_sec_01 .text_box li:before {
    width: 20px;
  }
  .box_sec.box2_sec_01 .right_box {
    width: 100%;
    text-align: center;
    background: #f9fafc;
  }
  .box_sec.box2_sec_01 .left_box {
    width: 100%;
    margin-left: 0;
  }
  .box_sec.box2_sec_01 .text_box {
    margin-top: 14px;
  }
  .box_sec.box2_sec_01 .text_box li {
    padding-left: 24px;
    line-height: 1.5;
    white-space: normal;
  }
  .box_sec.box2_sec_01 .text_box li:before {
    width: 15px;
    height: 1.5em;
  }
  .box_sec.box2_sec_01 .text_box li + li {
    margin-top: 10px;
  }

  #sec_04 p {
    font-size: 14px;
  }

  #sec_05 {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .box_sec_05 .container {
    padding: 10px 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .box_sec_05 .img, .box_sec_05 .txt {
    display: block;
    width: 100%;
  }
  .box_sec_05 .img {
    margin-bottom: 20px;
  }
  .box_sec_05 .img img {
    width: 230px;
  }
  .box_sec_05 .txt {
    font-size: 12px;
    padding-right: 0;
  }
  .box_sec_05 .txt .ttl {
    font-size: 21px;
    text-align: center;
  }
  .box_sec_05 .txt .ttl + * {
    margin-top: 6px;
    font-size: 15px;
  }
  .box_sec_05 .txt .btn {
    margin-top: 20px;
  }
  .box_sec_05 .txt .btn a {
    background-position: 96% 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 192px !important;
    font-size: 14px !important;
    padding: 2.7% 0;
  }
  .box_sec_05 .txt .btn .allow:after {
    width: 7px;
    height: 7px;
    right: 10px;
  }

  .box_sec_05_02 .txt {
    padding-left: 0;
  }

  ul.list li {
    font-size: 14px;
    margin-left: 0;
  }

  .container {
    padding: 0;
  }

  .header.fixed {
    position: inherit;
  }

  #logo {
    width: 41.29%;
    padding-right: 20px;
    float: right;
  }
  #logo img {
    float: right;
    min-width: 89px;
    height: auto;
  }

  #btn .btn_box .btn_1 {
    font-size: 16px;
    line-height: 39px;
  }
  #btn .btn_box .btn_1 a {
    padding-bottom: 28px;
  }
  #btn .btn_box .btn_1 a span {
    padding: 15px 0;
  }
  #btn .btn_box .btn_1 a span:after {
    top: auto;
    right: 0;
    bottom: 0;
    left: 45%;
  }

  div.btn a.btn_1 {
    font-size: 21px;
    line-height: 28px;
    width: 85%;
  }

  .conver_box .kuroneko {
    line-height: 26px;
    padding-top: 10px;
    padding-bottom: 0;
  }
  .conver_box .btn {
    width: 100%;
    padding-top: 6%;
  }

  .hdg_section {
    font-size: 26px;
    margin-bottom: 25px;
  }

  #sec_01 {
    padding-top: 60px;
  }

  .content_box {
    display: block;
    padding-top: 0;
  }

  .box_sec {
    height: auto;
    background-position: top;
  }
  .box_sec .left_box {
    width: 100%;
    display: block;
    float: none;
  }
  .box_sec .right_box {
    width: 100%;
    display: block;
    float: none;
  }
  .box_sec .right_box .text_box {
    float: none;
  }
  .box_sec .text_box {
    padding: 20px 20px 40px;
  }

  .content_box .ttl_content_box {
    font-size: 24px;
    line-height: 39px;
  }

  .box_sec_01 .left_box {
    text-align: center;
  }

  .box2_sec_01 .content_box {
    padding-top: 0;
  }
  .box2_sec_01 .content_box .right_box img {
    float: none;
  }

  .box_sec_01 .container {
    max-width: 100%;
  }

  .box1_sec_01, .box2_sec_01 {
    background: none;
  }

  .box1_sec_01 .left_box {
    padding: 80px 20px 65px;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .box2_sec_01 .right_box {
    padding: 90px 20px 33px;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .box3_sec_01 .right_box {
    padding-left: 0;
  }

  .box1_sec_01 .right_box, .box2_sec_01 .left_box, .box3_sec_01 .right_box {
    float: none;
  }

  .box_sec_01 {
    width: 100%;
    height: auto;
    display: block;
    float: left;
  }

  .content_box img {
    margin: 0;
    max-width: 100%;
  }
  .content_box p {
    font-size: 14px;
    line-height: 1.8;
  }

  .lyt-use .use-btn + .use-btn {
    margin-top: -1px;
  }
  .lyt-use .use-btn .text {
    font-size: 16px;
    padding-right: 45px;
    display: block;
    line-height: 47px;
    line-height: 26px;
  }
  .lyt-use .use-btn .button_ttl {
    padding-top: 13px;
    padding-bottom: 18px;
    height: auto;
    line-height: normal;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 44px;
    font-size: 15px;
  }
  .lyt-use .use-btn .button_ttl .num {
    left: 0;
  }

  .ttl_box_setting {
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 15px;
  }

  .ctn-box-setting {
    padding: 20px 15px;
  }
  .ctn-box-setting div.btn a.btn_1 {
    padding: 3.5% 0;
    width: 100%;
    font-size: 15px;
    text-decoration: none;
  }

  #sec_02 {
    padding: 40px 20px 45px;
  }
  #sec_02 .container {
    max-width: 100%;
  }

  .box_use {
    font-size: 14px;
    line-height: 18px;
    padding: 10px;
  }

  .use-block {
    padding: 20px;
    font-size: 14px;
  }
  .use-block p {
    line-height: 1.8;
  }

  .box_step {
    display: block;
    padding: 10px;
    border: 1px solid #e0e0e0;
    position: relative;
    width: 100%;
  }
  .box_step .left_step {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }
  .box_step:after {
    letter-spacing: 46%;
  }
  .box_step .right_step {
    display: block;
    width: 100%;
    padding-left: 0;
    padding-top: 0;
  }
  .box_step .right_step li {
    line-height: 1.4;
  }
  .box_step .right_step .lyt_note {
    margin-top: 10px;
  }
  .box_step .right_step p {
    font-size: 14px;
    line-height: 20px;
  }

  #sec_03 {
    padding: 55px 0 40px 0;
    background: url(/ytc/campaign/renkei/alexa/img/al_sec03_bg.jpg);
  }
  #sec_03 .hdg_section {
    margin-bottom: 25px;
  }

  .box-setting {
    padding: 0 20px;
  }
  .box-setting + .box-setting {
    margin-top: 40px;
  }

  .ios_app {
    float: left;
    display: block;
    width: 43%;
  }

  .android_app {
    display: block;
    float: left;
    width: 57%;
  }
  .android_app .android_down {
    width: auto;
  }

  .ios_app .ios_dow {
    width: 100%;
    float: left;
    padding: 0;
    text-align: center;
  }

  .down_app p, .android_app {
    text-align: center;
    font-size: 12px;
    line-height: 20px;
    padding-left: 0;
    padding-bottom: 6px;
  }

  .android_app {
    padding-left: 5%;
  }

  .bs01 .ctn-box-setting .is_sp {
    display: block;
  }

  .bs02 .ctn-box-setting {
    padding: 5px 0;
  }

  .bs04 .ctn-box-setting {
    padding: 20px 15px;
  }

  .ctn-box-setting h3 {
    font-size: 16px;
    line-height: 20px;
  }

  .down_app img {
    margin: 0 auto;
  }

  .ctn-box-setting .box_lead {
    line-height: 1.4;
    font-size: 15px;
    margin-top: 5px;
    margin-bottom: 12px;
  }

  .ctn-box-setting .box_bottomtxt {
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 5px;
  }

  .ctn-box-setting .box_dotlist {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .ctn-box-setting .lyt_number li {
    font-size: 16px;
    line-height: 30px;
    padding: 15px 20px 15px 44px;
    font-size: 14px;
    line-height: 1.5;
  }
  .ctn-box-setting .lyt_number li:before {
    top: 15px;
    bottom: auto;
  }

  #sec_04 {
    padding: 70px 20px 0;
  }
  #sec_04 .hdg_section {
    font-size: 31px;
    line-height: 43px;
    margin-bottom: 8px;
  }

  footer .subftr {
    padding-top: 40px;
  }
  footer .mainftr {
    margin-top: 50px;
  }
  footer .mainftr .txt_2 {
    display: block;
    text-align: center;
    width: 100%;
  }
  footer .mainftr p {
    display: inline-block;
  }
  footer .mainftr p:first-of-type {
    width: 100%;
  }
  footer .mainftr .txt_2 p:nth-of-type(2) {
    margin-right: 8px;
    padding-right: 10px;
  }
  footer .mainftr p:first-of-type {
    width: 100%;
  }
  footer .mainftr .txt_1 {
    float: none;
    margin-top: 4px;
    text-align: center;
  }
  footer .txt_2 a {
    display: inline-block;
    font-size: 13px;
    line-height: 24px;
  }
  footer .allow_1 a:first-child {
    width: 100%;
    margin: 0 0 4px 0;
    padding-right: 0;
  }
  footer .allow_1 a:first-child:after {
    content: none;
  }
  footer .mainftr {
    padding: 20px 0;
  }

  .f_box {
    width: 100%;
  }

  .ctn-box-setting strong.is_sp {
    color: #333;
    font-weight: bold;
  }

  .mt0 {
    margin-top: 0px;
  }

  .mt10 {
    margin-top: 5px;
  }

  .mt20 {
    margin-top: 10px;
  }

  .mt30 {
    margin-top: 15px;
  }

  .mt40 {
    margin-top: 20px;
  }

  .mt50 {
    margin-top: 25px;
  }

  .mt60 {
    margin-top: 30px;
  }

  .mt70 {
    margin-top: 35px;
  }

  .mt80 {
    margin-top: 40px;
  }
}
.remodal {
  box-sizing: border-box;
}

@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 930px;
    padding: 50px;
  }
}
@media screen and (max-width: 750px) {
  .remodal {
    padding: 40px 25px;
  }
}
@media screen and (max-width: 750px) {
  .remodal-wrapper {
    padding: 60px 20px;
  }
}

.remodal-close {
  top: -45px;
  left: auto;
  right: 0;
  width: 25px;
  height: 25px;
}

.remodal-close:before {
  content: "";
  width: 25px;
  height: 25px;
  background: url(/ytc/campaign/renkei/alexa/img/al_modal_close.png);
  background-size: contain;
}

.modal-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 750px) {
  .modal-title {
    font-size: 26px;
  }
}

.modal-lead {
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 35px;
}
@media screen and (max-width: 750px) {
  .modal-lead {
    font-size: 15px;
    text-align: left;
    padding-bottom: 0px;
  }
}
.modal-lead span {
  color: #138775;
}

.modal-item {
  background: #F0F0F0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .modal-item {
    overflow: visible;
    margin-top: 90px;
  }
}
.modal-item + .modal-item {
  margin-top: 30px;
}
@media screen and (max-width: 750px) {
  .modal-item + .modal-item {
    margin-top: 90px;
  }
}
@media screen and (min-width: 751px) {
  .modal-item:after {
    content: "";
    display: block;
    background: #fff;
    width: 500px;
    height: 500px;
    position: absolute;
    right: -280px;
    top: -280px;
    z-index: 3;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

@media screen and (min-width: 751px) {
  .modal-inner {
    display: table;
    width: 100%;
    table-layout: fixed;
    position: relative;
    z-index: 5;
  }
}
@media screen and (max-width: 750px) {
  .modal-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

@media screen and (min-width: 751px) {
  .modal-txt, .modal-img {
    display: table-cell;
    vertical-align: middle;
  }
}

.modal-txt {
  text-align: left;
  padding: 20px 35px;
  font-size: 18px;
}
@media screen and (max-width: 750px) {
  .modal-txt {
    font-size: 14px;
    padding: 0 17px 18px;
  }
}
.modal-txt span {
  color: #138775;
}

@media screen and (min-width: 751px) {
  .modal-img {
    width: 258px;
  }
}
@media screen and (max-width: 750px) {
  .modal-img img {
    width: 178px;
    margin-top: -60px;
  }
}

/* footer bnr ---------------- */
.bnrftr {
  padding: 0 15px;
  margin-top: 55px;
}
@media screen and (max-width: 760px) {
  .bnrftr {
    padding: 0 15px;
    margin-top: 30px;
  }
}

.detail {
  font-size: 0;
  text-align: center;
  max-width: 830px;
  margin: 0 auto;
}

@media screen and (min-width: 761px) {
  .detail-item {
    display: inline-block;
    width: 48%;
  }
}
.detail-item a {
  display: block;
  border: 1px solid #cfd2da;
  border-bottom-width: 3px;
  border-radius: 10px;
  padding: 30px 20px 30px;
  font-size: 16px;
  font-weight: bold;
  transition: .3s;
}

@media screen and (max-width: 760px) {
  .detail-item a {
    font-size: 14px;
    padding: 18px 20px;
    border-bottom-width: 2px;
  }

  .detail-item a:hover {
    text-decoration: none;
    color: #11af9e;
  }
}
@media screen and (min-width: 761px) {
  .detail-item a:hover {
    background: #11af9e;
    color: #fff;
    text-decoration: none;
    border-color: #11af9e;
    border-bottom-width: 1px;
    margin-bottom: 2px;
  }
}
.detail-item a img {
  display: block;
  margin: 0 auto 10px;
}

.detail-item a img.google {
  max-width: 200px;
}

.detail-item a img.alexa {
  max-width: 225px;
}

/* ---------------- footer bnr */
