@charset "UTF-8";
/* ==========================================================================
Base
========================================================================== */
html {
  font-size: 62.5%;
}

body {
  margin: 0;
  background-color: #fff;
  color: #333;
  font-family: "Helvetica Neue", "Helvetica", Arial, Roboto, "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
}

img {
  max-width: 100%;
  height: auto;
}

label {
  line-height: 2;
}

input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=date],
textarea {
  width: 100%;
  padding: 10px;
  border: solid 1px #ccc;
  border-radius: 4px;
  color: #333;
  outline: 0;
  transition: 0.3s;
}
input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=date]:focus,
textarea:focus {
  border: 1px solid #1589ee;
  outline: none;
  box-shadow: 0 0 4px 2px rgba(0, 108, 179, 0.4);
}

@media (min-width: 960px) {
  input[type=text][name=subscription-start],
input[type=date][name=subscription-start] {
    width: 31%;
  }
}

select:focus,
input[type=checkbox]:focus + .el_formLabel_checkbox:before,
input[type=radio]:focus + .el_formLabel_radio:before {
  border-color: #1589ee;
  box-shadow: 0 0 5px #1589ee;
}

textarea {
  height: 200px;
  line-height: 1.5;
}

a {
  color: #0069ff;
}
a:hover {
  color: rgba(0, 105, 255, 0.8);
  text-decoration: underline;
}

/* ==========================================================================
Layout
========================================================================== */
/* Site
----------------------------------------------------------------- */
.ly_wrap {
  position: relative;
  min-height: 100vh;
  padding-bottom: 64px;
}

/* Header
----------------------------------------------------------------- */
.ly_header {
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.4);
}

.ly_header_inner {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-top: 10px;
  padding-right: 15px;
  padding-bottom: 10px;
  padding-left: 15px;
}
@media (min-width: 960px) {
  .ly_header_inner {
    max-width: 1170px;
  }
}

/* Footer
----------------------------------------------------------------- */
.ly_footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 64px;
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: #006cb3;
}

.ly_footer_inner {
  max-width: 1170px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

/* Main
----------------------------------------------------------------- */
.ly_main {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 64px;
}

.ly_main_inner {
  max-width: 950px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

/* Navigation
----------------------------------------------------------------- */
/* = Drower Navi = */
.bl_drowerNavi {
  position: fixed;
  z-index: 999;
  top: -120%;
  left: 0;
  width: 100%;
  height: 50vh;
  background-color: rgba(242, 242, 242, 0.96);
  transition: 0.6s;
}

.el_drowerNavi_list {
  position: absolute;
  z-index: 999;
  top: 30%;
  left: 50%;
  min-width: 100%;
  transform: translate(-50%, -50%);
}

.el_drowerNavi_item {
  list-style: none;
  font-size: 18px;
  text-align: center;
}
.el_drowerNavi_item a {
  display: block;
  padding: 14px;
  color: #333;
  background-color: #bbdefb;
  text-decoration: none;
}
.el_drowerNavi_item:nth-of-type(n+2) {
  margin-top: 2px;
}

.el_drowerNavi_info {
  position: absolute;
  z-index: 999;
  top: 70%;
  left: 50%;
  min-width: 86%;
  transform: translate(-50%, -50%);
}

.el_drowerNavi_tel {
  margin-bottom: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 34px;
  font-weight: 700;
  text-align: center;
}
.el_drowerNavi_tel:before {
  display: inline-block;
  content: "";
  width: 26px;
  height: 26px;
  background: transparent url(../img/icon_tel.png) no-repeat;
  background-size: contain;
}

.el_drowerNavi_hours {
  font-size: 13px;
  text-align: center;
}

.bl_drowerButton {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.bl_drowerButton span {
  display: inline-block;
  position: absolute;
  left: 14px;
  width: 45%;
  height: 3px;
  border-radius: 2px;
  background-color: #666;
  transform: all 0.4s;
}
.bl_drowerButton span:nth-of-type(1) {
  top: 15px;
}
.bl_drowerButton span:nth-of-type(2) {
  top: 23px;
}
.bl_drowerButton span:nth-of-type(3) {
  top: 31px;
}
@media (min-width: 960px) {
  .bl_drowerButton {
    display: none;
  }
}

/* ==========================================================================
Module
========================================================================== */
/* Block
----------------------------------------------------------------- */
.bl_flex_wrap {
  display: flex;
}

.bl_buttonWrap {
  display: flex;
  flex-direction: column-reverse;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin-top: 30px;
}
.bl_buttonWrap .el_button:nth-of-type(1) {
  margin-top: 20px;
}
@media (min-width: 520px) {
  .bl_buttonWrap {
    flex-direction: row;
  }
  .bl_buttonWrap .el_button:nth-of-type(1) {
    margin-top: 0;
  }
}

.bl_lead {
  line-height: 1.5;
}
.bl_lead .el_note {
  margin-top: 4px;
}

.bl_tiral_paper_wrap {
  display: block;
  margin-top: 35px;
}
@media (min-width: 960px) {
  .bl_tiral_paper_wrap {
    display: flex;
    align-items: center;
  }
}

.bl_trial_paper_box_button {
  margin-top: 25px;
  margin-left: 0;
  text-align: center;
}
@media (min-width: 960px) {
  .bl_trial_paper_box_button {
    margin-top: 0;
    margin-left: 35px;
  }
}

/* Element
----------------------------------------------------------------- */
/* = Button = */
.el_button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  max-width: 100%;
  padding: 20px 12px;
  background-color: #176cb3;
  border: 2px solid transparent;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: #fff;
  text-align: left;
  text-decoration: none;
  transition: 0.25s;
  cursor: pointer;
}
.el_button:focus, .el_button:hover {
  background-color: #fff;
  border-color: currentColor;
  color: #176cb3;
}
.el_button.el_button__arrowRight {
  position: relative;
  padding-right: 2em;
  padding-left: 1.38em;
}
.el_button.el_button__arrowRight::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.83em;
  font-family: FontAwesome;
  transform: translateY(-50%);
}
.el_button.el_button__arrowLeft {
  position: relative;
  padding-right: 1.38em;
  padding-left: 2em;
}
.el_button.el_button__arrowLeft::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.83em;
  font-family: FontAwesome;
  transform: translateY(-50%);
}
.el_button.el_button___large {
  padding-top: 26px;
  padding-bottom: 26px;
}
.el_button.el_button__orange {
  background-color: #f39800;
  color: #fff;
}
.el_button.el_button__orange:focus, .el_button.el_button__orange:hover {
  background-color: #fff;
  border-color: #f39800;
  color: #f39800;
}
.el_button.el_button__gray {
  background-color: #f5f5f5;
  color: #333;
}
.el_button.el_button__gray:focus, .el_button.el_button__gray:hover {
  background-color: #fff;
  border-color: #999;
  color: #999;
}

/* = Logo = */
.el_header_logo img {
  width: 36%;
}
@media (min-width: 960px) {
  .el_header_logo {
    padding-top: 8px;
  }
}

/* = Info = */
.el_header_info {
  display: none;
}
@media (min-width: 960px) {
  .el_header_info {
    display: block;
  }
}

.el_header_tel {
  margin-bottom: 3px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 34px;
  font-weight: 700;
}
.el_header_tel:before {
  display: inline-block;
  content: "";
  width: 26px;
  height: 26px;
  margin-right: 10px;
  background: transparent url(../img/icon_tel.png) no-repeat;
  background-size: contain;
}

.el_header_hours {
  font-size: 13px;
}

/* = Heading = */
.el_heading_base {
  margin-top: 60px;
  margin-bottom: 30px;
  font-weight: 500;
}
.el_heading_base.el_heading_lv1 {
  font-size: 28px;
}
.el_heading_base.el_heading_lv2 {
  font-size: 24px;
}
.el_heading_base.el_heading_lv3 {
  font-size: 18px;
}

.el_headingLv1 {
  padding: 30px 10px;
  background-color: #bbdefb;
  color: #333;
  font-size: 2.8rem;
  text-align: center;
}
.el_headingLv1 > span {
  position: relative;
  display: inline-block;
  transform: translateY(-20%);
}
.el_headingLv1 > span::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 80px;
  height: 1px;
  background-color: currentColor;
  transform: translateX(-50%);
}

.el_headingLv2 {
  margin-top: 60px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 4px solid #176cb3;
  font-size: 2.4rem;
  font-weight: bold;
}

.el_headingLv3 {
  margin-top: 50px;
  padding-bottom: 8px;
  font-size: 2rem;
  font-weight: bold;
}

.el_headingLv4 {
  padding-left: 6px;
  border-left: 2px solid #176cb3;
  font-size: 1.6rem;
}

.el_headingLv5 {
  color: #176cb3;
  font-size: 1.4rem;
  font-weight: bold;
}

.el_headingLv6 {
  font-size: 1.4rem;
}

/* = Text = */
.el_caution {
  color: #d40152;
}

.el_note {
  position: relative;
  margin-top: 14px;
  padding-left: 10px;
}
.el_note::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  color: #ee1568;
  font-family: FontAwesome;
  font-size: 11px;
  transform: translate(-20%, -50%);
}

.el_sub_tit {
  font-size: 21px;
}
.bl_lead .el_sub_tit {
  margin-top: 36px;
}
.bl_lead .el_sub_tit + .el_lead_description {
  margin-top: 6px;
}

.el_lead_description {
  margin-top: 24px;
}
.el_lead_description + .el_trial_paper {
  margin-top: 30px;
}

.el_trial_paper {
  margin-top: 6px;
  font-size: 20px;
  text-align: center;
}
.el_trial_paper span:nth-of-type(1) {
  padding-right: 10px;
}
.el_trial_paper span:nth-of-type(2) {
  font-size: 14px;
}
.el_trial_paper span:nth-of-type(3) {
  color: #e70614;
}
.el_trial_paper span:nth-of-type(4) {
  margin-left: -6px;
  font-size: 14px;
}
@media (min-width: 960px) {
  .el_trial_paper {
    font-size: 24px;
    text-align: left;
  }
}

/* = Form = */
.el_formParts {
  margin-top: 22px;
}
.el_formParts:nth-of-type(1) {
  margin-top: 0;
}

.el_formParts_datePicker {
  width: 30%;
}

.el_form_textarea {
  height: 100px;
}

.el_formLabel_checkbox,
.el_formLabel_radio {
  position: relative;
  padding-left: 32px;
}

.el_formLabel_checkbox:after, .el_formLabel_checkbox:before,
.el_formLabel_radio:after,
.el_formLabel_radio:before {
  position: absolute;
  display: inline-block;
  content: "";
}

.el_formLabel_checkbox:before {
  top: 50%;
  left: 5px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #bbb;
  border-radius: 3px;
  transform: translateY(-50%);
}

.el_formLabel_checkbox:after {
  top: 32%;
  left: 15px;
  width: 16px;
  height: 10px;
  border-bottom: 3px solid #ee1668;
  border-left: 3px solid #ee1668;
  transform: translate(-50%, -50%) rotate(-45deg);
  opacity: 0;
}

input:checked + .el_formLabel_checkbox:after {
  opacity: 1;
}

input:checked + .el_formLabel_checkbox {
  color: #ee1668;
}
input:checked + .el_formLabel_checkbox.un_newspaper_recommend {
  color: inherit;
}

.el_formLabel_radio:before {
  top: 50%;
  left: 5px;
  width: 20px;
  height: 20px;
  margin-top: -8px;
  background-color: #fff;
  border: 1px solid #bbb;
  border-radius: 50%;
}

.el_formLabel_radio:after {
  top: 9px;
  left: 8px;
  width: 14px;
  height: 14px;
  margin-top: -4px;
  background-color: #ee1668;
  border-radius: 50%;
  opacity: 0;
}
@media (min-width: 520px) {
  .el_formLabel_radio:after {
    top: 8px;
  }
}

input:checked + .el_formLabel_radio:after {
  opacity: 1;
}

input:checked + .el_formLabel_radio {
  color: #ee1668;
}

.el_label_required {
  padding: 6px;
  background-color: #ee1568;
  border-radius: 3px;
  color: #fff;
  font-weight: normal;
  line-height: 1.2;
}

.el_label_any {
  padding: 6px;
  background-color: #dad9d9;
  border-radius: 3px;
  color: #444;
  font-weight: normal;
  line-height: 1.2;
}

.el_confirm_text {
  margin-top: 30px;
  line-height: 1.5;
}

/* = Privacy = */
.el_privacy_heading {
  padding: 15px;
  background-color: #bbdefb;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
@media (min-width: 960px) {
  .el_privacy_heading {
    padding: 30px;
    font-size: 21px;
  }
}

.el_privacy_description {
  margin-top: 10px;
  line-height: 1.8;
}

/* = Copyright = */
.el_copyright {
  display: block;
  color: #fff;
  font-size: 14px;
  text-align: center;
}

/* ==========================================================================
 * Page
========================================================================== */
/* Subscription
----------------------------------------------------------------- */
.bl_form_wrap {
  width: 100vw;
  margin-top: 30px;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
.bl_form_wrap:nth-of-type(2) {
  margin-top: 15px;
}
.bl_form_wrap dt {
  padding: 15px;
}
.bl_form_wrap dt:nth-of-type(3) {
  margin-top: 40px;
  font-size: 24px;
  font-weight: 500;
}
.bl_form_wrap dd {
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}
@media (min-width: 960px) {
  .bl_form_wrap {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  .bl_form_wrap dt:nth-of-type(3) {
    padding-right: 0;
    padding-left: 0;
  }
  .bl_form_wrap dd:nth-of-type(3) {
    padding-right: 0;
    padding-left: 0;
  }
  .bl_form_wrap dd:last-of-type {
    padding-bottom: 0;
  }
}

.bl_form_wrap2 {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
.bl_form_wrap2:nth-of-type(1) {
  margin-top: 0;
}
.bl_form_wrap2 th,
.bl_form_wrap2 td {
  display: block;
  width: 100%;
}
.bl_form_wrap2 th {
  padding: 10px 15px;
  background-color: #bbdefb;
}
.bl_form_wrap2 td {
  padding: 15px;
}
@media (min-width: 960px) {
  .bl_form_wrap2 {
    width: 100%;
    margin-top: 30px;
    margin-right: auto;
    margin-left: auto;
  }
  .bl_form_wrap2 tr {
    display: flex;
    border: 1px solid #ccc;
  }
  .bl_form_wrap2 tr:nth-of-type(n+2) {
    border-top: none;
  }
  .bl_form_wrap2 th,
.bl_form_wrap2 td {
    display: table-cell;
    vertical-align: middle;
  }
  .bl_form_wrap2 th {
    max-width: 38%;
  }
  .bl_form_wrap2 td {
    max-width: 62%;
  }
}
.bl_form_wrap2 .el_note {
  line-height: 1.5;
}

.bl_formSection_heading {
  background-color: #bbdefb;
}

.bl_formParts_select {
  position: relative;
  width: 100%;
  margin-top: 10px;
}
@media (min-width: 960px) {
  .bl_formParts_select {
    width: 50%;
  }
}
.bl_formParts_select select {
  width: 100%;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.bl_formParts_select:after {
  position: absolute;
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  top: 35%;
  right: 5%;
  border-bottom: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg) translateY(-30%);
}

.bl_privacy_wrap {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
@media (min-width: 960px) {
  .bl_privacy_wrap {
    width: 100%;
    margin-top: 50px;
    margin-right: auto;
    margin-left: auto;
    border: 1px solid #ccc;
  }
}

.bl_privacy_content {
  padding: 30px;
}

.un_newspaper_recommend {
  font-size: 24px;
}
.un_newspaper_recommend span:nth-of-type(1),
.un_newspaper_recommend span:nth-of-type(5) {
  padding-right: 5px;
  padding-left: 10px;
}
.un_newspaper_recommend span:nth-of-type(1),
.un_newspaper_recommend span:nth-of-type(3),
.un_newspaper_recommend span:nth-of-type(5),
.un_newspaper_recommend span:nth-of-type(7) {
  font-size: 14px;
}
.un_newspaper_recommend span:nth-of-type(2),
.un_newspaper_recommend span:nth-of-type(6) {
  color: #e70614;
}

/* Confirm
----------------------------------------------------------------- */
.bl_tableConfirm {
  width: 100vw;
  margin-top: 30px;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
.bl_tableConfirm th {
  padding: 15px;
  background-color: #bbdefb;
}
.bl_tableConfirm td {
  padding: 20px 15px;
}
.bl_tableConfirm th,
.bl_tableConfirm td {
  display: block;
}
@media (min-width: 960px) {
  .bl_tableConfirm {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.el_inputedConfirm {
  line-height: 1.6;
}

/* Complete
----------------------------------------------------------------- */
.bl_message {
  width: 100vw;
  margin-top: 40px;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: 20px;
  background-color: #bbdefb;
}
@media (min-width: 520px) {
  .bl_message {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.el_message_text {
  font-weight: 500;
}

.bl_tPoint {
  margin-top: 30px;
}

.el_tPoint_catch {
  font-size: 2.2rem;
  font-weight: 500;
}

.el_tPoint_text {
  margin-top: 20px;
  font-size: 1.8rem;
  line-height: 1.6;
}

/* ==========================================================================
Utility
========================================================================== */
/* Helper
----------------------------------------------------------------- */
.hp_tal {
  text-align: left !important;
}

.hp_tac {
  text-align: center !important;
}

.hp_tar {
  text-align: right !important;
}

.hp_flex {
  display: flex !important;
}

.hp_justifyContent_around {
  justify-content: space-around !important;
}

.hp_justifyContent_between {
  justify-content: space-between !important;
}

/* アクセシビリティの低下の恐れがある display: none あるいは visibility: hidden を使わないためのコード。
 * 完全に非表示ではなく、コンテンツを視覚的に隠してスクリーンリーダーでは読ませることができる。
 */
.hp_visually_hidden {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

/* Unique
----------------------------------------------------------------- */
/* = Other = */
/*
 * jQuery UI Datepicker の日にちをフォーカス（hover）したときの色を変更
*/
a.ui-state-default.ui-state-hover {
  background-color: #ee1668;
  color: #fff;
}

/* Program
----------------------------------------------------------------- */
/* === Drower Navi === */
.bl_drowerNavi.is_active_panel {
  top: 46px;
}

.bl_drowerButton.is_active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  width: 30%;
  transform: translateY(6px) rotate(-45deg);
}
.bl_drowerButton.is_active span:nth-of-type(2) {
  opacity: 0;
}
.bl_drowerButton.is_active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  width: 30%;
  transform: translateY(-6px) rotate(45deg);
}

/* === Return Top === */
.js_returnTop {
  position: fixed;
  bottom: 0;
  right: 15px;
  opacity: 0;
  transform: translateY(100px);
}
.js_returnTop a {
  display: block;
  padding: 20px 10px 10px;
  background-color: #006cb3;
  border: 1px solid #006cb3;
  border-radius: 30px;
  color: #fff;
  font-size: 12px;
  text-align: center;
  transition: 0.4s;
}
.js_returnTop a:hover {
  background-color: #fff;
  color: #006cb3;
  text-decoration: none;
}
.js_returnTop a::before {
  position: absolute;
  display: inline-block;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 21px;
  font-family: FontAwesome;
  font-weight: 400;
}

.js_returnTop.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.js_returnTop.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/* FORM MAILER v0.8 */
#f_mailer_errmsg_overall {
  display: none;
  border: 6px red double;
  background-color: #ffd;
  margin: 20px 0;
  color: red;
  padding: 20px;
}

.f_mailer_errmsg_label_bg {
  background-color: lightpink !important;
}

.f_mailer_errmsg_bg {
  background-color: #ffd !important;
}

.f_mailer_errmsg {
  font-weight: bold;
  color: red;
  margin-bottom: 8px;
}

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