@charset "utf-8";
/* ===================================================================
 File Name  : page.css
 Style Info : ページに関するスタイル指定
=================================================================== */

/*----------------------------------------------------
  トップページ index
--------------------------------------------------- */

/*メインスライドショー*/
#mainVisual {
  margin-bottom: 80px;
}
.main_post_slider {
  opacity: 0;
  transition: all 0.7s ease-in-out 0.25s;
}
.main_post_slider.slick-initialized {
  opacity: 1;
}
.main_post_box a {
  display: block;
  width: 100%;
}
.main_post_box figure img {
  width: 100%;
}
.main_post_box a:hover {
  opacity: 0.9;
}
.slick-arrow {
  position: absolute;
  bottom: 50%;
  z-index: 5;
  background: #fff;
  text-align: center;
  width: 34px;
  height: 40px;
  cursor: pointer;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
}
.slick-arrow img {
  position: relative;
  left: 0;
  transition: all 0.2s ease-in-out 0s;
}
.slick-arrow.prev {
  left: 0;
}
.slick-arrow.prev:hover img {
  left: -3px;
}
.slick-arrow.next {
  right: 0;
}
.slick-arrow.next:hover img {
  left: 3px;
}
.main_post_txt {
  background: #EFEFEF;
  line-height: 1.7;
  padding: 20px 30px;
}
  @media screen and (max-width: 767px) {
    #mainVisual {
      margin-bottom: 14.7vw;
    }
    .slick-arrow {
      width: 5vw;
      height: 6.66vw;
      bottom: auto;
      top: 26vw;
    }
    .slick-arrow img {
      width: 2vw;
      height: auto;
    }
    .slick-arrow.prev:hover img {
      left: 0;
    }
    .slick-arrow.next:hover img {
      left: 0;
    }
    .main_post_txt {
      line-height: 1.6;
      padding: 4vw 10.66vw;
    }
  }

.post_wrap .alm-reveal {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
.post_box {
  width: 300px;
  margin: 0 50px 35px 0;
}
.post_box:nth-child(2n) {
  margin-right: 0;
}
.post_box a {
  display: block;
}
.post_box a:hover img {
  opacity: 1!important;
}
.post_info {
  position: relative;
  font-size: 1.2rem;
  z-index: 10;
}
.cat_box {
  color: #EA5550;
  font-weight: 600;
}
#popular #post_archive .cat_box a {
  display: inline-block;
  color: #EA5550;
}
#popular #post_archive .post_info time {
  right: 0;
}
#popular #post_archive {
  counter-reset: rank_number;
}
#popular #post_archive a figure {
  position: relative;
}
#popular #post_archive a figure:after {
  counter-increment: rank_number;
  content: counter(rank_number);
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  line-height: 40px;
  font-size: 1.8rem;
  font-family: Arial, Helvetica, "sans-serif";
  text-align: center;
  color: #fff;
  background: #3E3A39;
  z-index: 5;
}
  @media screen and (max-width: 767px) {
    #popular #post_archive a figure:after{
      width: 9.33vw;
      line-height: 9.33vw;
      font-size: 5.4vw;
    }
  }

.post_box figure {
  overflow: hidden;
}
.post_box figure img {
  width: 100%;
  transition: all 0.4s ease-in-out 0s;
}
.post_box a:hover figure img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-filter: brightness(60%);
  -moz-filter: brightness(60%);
  -o-filter: brightness(60%);
  -ms-filter: brightness(60%);
  filter: brightness(60%);
}
.post_box p {
  margin: 10px 0 5px;
  transition: all 0.2s ease-in-out 0s;
}
.post_box a:hover p {
  opacity: 0.7;
}
.post_info time {
  position: absolute;
  right: 25px;
  top: 0;
  color: #727171;
}
.openModal {
  display: block;
}
.favorite_box {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.3rem;
  cursor: pointer;
  color: #aaa;
}
.favorite_box .active {
 color: #EA5550;
 opacity: 1!important;
}
#mypage .post_box:nth-child(2n) {
  margin-right: 50px;
}
#mypage .post_box:nth-child(3n) {
  margin-right: 0;
}
  @media screen and (max-width: 767px) {
    .post_wrap .alm-reveal {
      -webkit-display: block;
      -moz-display: block;
      -ms-display: block;
      -o-display: block;
      display: block;
    }
    .post_box {
      width: 85.33vw;
      margin: 0 auto 7vw auto!important;
    }
    .post_info {
      font-size: 3.73vw;
    }
    .post_box p {
      margin: 2.66vw 0 2vw;
      transition: all 0.2s ease-in-out 0s;
      letter-spacing: 0.1rem;
    }
    .post_info time {
      right: 6.66vw;
    }
    .favorite_box {
      right: 0;
      top: -1.66vw;
      font-size: 5.33vw;
    }
  }

/* モーダルCSS */
.modalArea {
  display: none;
  position: absolute;
  z-index: -100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modalArea.modal_active {
  display: block;
  position: fixed;
  z-index: 300;
  opacity: 1;
}
.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30,30,30,0.7);
}
.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  width: 70%;
  max-width: 500px;
  text-align: center;
  background-color: #fff;
}
.modalContents h2 {
  font-weight: 500;
  font-size: 1.8rem;
  padding: 30px 20px;
}
.modalContents p {
  padding: 0 20px 20px 20px;
  line-height: 1.6;
}
.login_area {
  background: #EBEDEF;
  border-top: solid 1px #DCE0E3;
  padding: 20px;
  margin-top: 20px;
}
.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
  font-size: 2.2rem;
  transition: all 0.2s ease-in-out 0s;
}
.closeModal:hover {
  color: #EA5550;
}
  @media screen and (max-width: 767px) {
    .modalWrapper {
      width: 90vw;
      max-width: 90vw;
    }
    .modalContents {
      overflow: auto;
    }
    .modalContents h2 {
      font-size: 4.7vw;
      padding: 6.66vw 3.33vw;
    }
    .modalContents p {
      font-size: 3.76vw;
      padding: 0 3.33vw 5vw 3.33vw;
    }
    .modal_btn {
      padding: 0 3.33vw;
    }
    .login_area {
      padding: 3.33vw 0;
      margin-top: 3.33vw;
    }
    .closeModal {
      position: absolute;
      top: 2vw;
      right: 2.66vw;
      font-size: 5.8vw;
    }
  }

/*----------------------------------------------------
  マイページ
--------------------------------------------------- */
#mypage section {
  padding-bottom: 60px;
}
.mypage_nav {
  margin-bottom: 90px;
}
.mypage_nav li {
  width: 320px;
  border: solid 1px #333;
}
.mypage_nav li:first-child {
  border-right: none;
}
.mypage_nav li a {
  display: block;
  text-align: center;
  font-size: 1.8rem;
  padding: 12px;
}
.mypage_nav li a:hover {
  background: #f2f2f2;
}
  @media screen and (max-width: 767px) {
    #mypage section {
      padding-bottom: 13.33vw;
    }
    .mypage_nav {
      margin-bottom: 10.66vw;
    }
    .mypage_nav li {
      width: 50%;
    }
    .mypage_nav li a {
      font-size: 3.46vw;
      padding: 3.33vw;
    }
  }
  @media screen and (max-width: 767px) {
    .general_wrap {
      width: 85.33vw;
      margin: 0 auto;
    }
  }

.member_box {
  max-width: 400px;
  margin: 0 auto;
  padding-bottom: 80px;
}
  @media screen and (max-width: 767px) {
    .member_box {
      max-width: 100%;
      padding: 0 7.33vw;
      padding-bottom: 16vw;
    }
  }

.member_box form h2 {
  display: none;
}
.acf-field-5f6c19971f960 {
  display: none;
}
.tml-register .acf-label {
  display: none;
}
.tml-register .wpmem-checkbox {
  text-align: center;
}
.tml-register #doui {
  margin-right: 5px;
}
.doui_box {
  padding: 25px 0 0 0;
}
.doui_box p {
  margin-bottom: 20px;
}
.doui_box p a {
  text-decoration: underline;
}
.doui_box p a:hover {
  text-decoration: none;
}

.member_btn li a {
  width: 100%;
  font-size: 1.8rem;
}
#wpmem_reg fieldset, #wpmem_login fieldset {
  margin: 0 0 20px 0;
}
#wpmem_reg fieldset label, #wpmem_login fieldset label {
  margin-bottom: 5px;
  display: inline-block;
}
  @media screen and (max-width: 767px) {
    .member_btn li a {
      font-size: 4.8vw;
    }
    #wpmem_reg fieldset, #wpmem_login fieldset {
      margin: 0 0 3.33vw 0;
    }
  }

#wpmem_profile_form .div_checkbox,
#wpmem_profile_form .checkbox {
  display: none;
}

.button_div {
  position: relative;
  text-align: center;
  width: 100%!important;
  margin: 0 auto;
}
.button_div::before {
  position: absolute;
  right: 12px;
  top: 50%;
  margin-top: -6px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 7px;
  border-color: transparent transparent transparent #fff;
  transition: all 0.2s ease-in-out 0s;
  z-index: 5;
}
.button_div:hover::before {
  right: 10px;
}
.button_div .buttons {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 13px 10px;
  text-align: center;
  text-decoration: none;
  font-size: 1.4rem;
  border-radius: 3px;
  color: #fff;
  background: #EA5550;
  border: solid 1px #EA5550;
  transition: all 0.2s ease-in-out 0s;
}
.button_div .buttons:hover {
  opacity: 0.7;
}
  @media screen and (max-width: 767px) {
    .button_div .buttons {
      padding: 3.66vw;
      font-size: 4.8vw;
      line-height: 1;
    }
    .button_div::before {
      right: 2.66vw;
      margin-top: -1.8vw;
      border-width: 1.8vw 0 1.8vw 2vw;
    }
  }

/*----------------------------------------------------
  新規登録・ログイン
--------------------------------------------------- */

.member_lead {
  margin-bottom: 30px;
}

/*ログイン*/
#login #wpg-login {
  margin: 50px 0 0;
}
#login #wpg-login li, #register #wpg-login li {
  margin-bottom: 60px;
}
.txt_link {
  padding: 20px 0;
}
.txt_link a {
  text-decoration: underline;
}
  @media screen and (max-width: 767px) {
    #login #wpg-login, #register #wpg-login {
      margin: 10.66vw 0 0;
    }
    #login #wpg-login li, #register #wpg-login li {
      margin-bottom: 12vw;
    }
    .txt_link {
      padding: 2.66vw 0;
    }
  }

.tml-submit-wrap {
  position: relative;
  text-align: center;
  width: 100%!important;
  margin: 40px auto 20px auto;
}
.tml-submit-wrap::before {
  position: absolute;
  right: 12px;
  top: 50%;
  margin-top: -6px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 7px;
  border-color: transparent transparent transparent #fff;
  transition: all 0.2s ease-in-out 0s;
  z-index: 5;
}
.tml-submit-wrap:hover::before {
  right: 10px;
}
.tml-submit-wrap input {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 11px 10px;
  text-align: center;
  text-decoration: none;
  font-size: 1.8rem;
  border-radius: 3px;
  color: #fff;
  background: #333;
  border: solid 1px #333;
  transition: all 0.2s ease-in-out 0s;
}
.tml-submit-wrap input:hover {
  opacity: 0.7;
}
  @media screen and (max-width: 767px) {
    .tml-submit-wrap {
      margin: 10.66vw auto 2.33vw auto;
    }
    .tml-submit-wrap input {
      padding: 3.33vw;
      font-size: 4.8vw;
      line-height: 1;
    }
    .tml-submit-wrap::before {
      right: 2.66vw;
      margin-top: -1.8vw;
      border-width: 1.8vw 0 1.8vw 2vw;
    }
  }

.tml-error a {
  text-decoration: underline;
}

/*新規会員登録*/
#register .tml-indicator-wrap {
  display: none;
}
#register p.wpmem-checkbox {
  padding-bottom: 0;
}
.privacy_link {
  padding: 25px 0 70px;
  text-align: center;
}
.privacy_link a {
  text-decoration: underline;
}
.privacy_link a:hover {
  text-decoration: none;
}
  @media screen and (max-width: 767px) {
    .privacy_link {
      padding: 2.66vw 0 10.66vw;
      text-align: center;
    }
  }

.register_note {
  border: solid 1px #ddd;
  padding: 20px;
}
.register_note h2 {
  font-size: 1.8rem;
  margin-bottom: 5px;
}
.register_note p {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.register_note p:last-child {
  margin-bottom: 0;
}
  @media screen and (max-width: 767px) {
    .register_note {
      padding: 4vw;
    }
    .register_note h2 {
      font-size: 4vw;
      margin-bottom: 2vw;
    }
    .register_note p {
      font-size: 3.33vw;
      margin-bottom: 2.66vw;
    }
  }

/*パスワードリセット*/
#resetpass .tml-indicator-wrap {
  display: none;
}

/*会員情報の確認・変更*/
.profile_menu ul {
  padding-bottom: 40px;
}
.profile_menu li {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.profile_menu li a {
  position: relative;
  display: inline-block;
  padding-left: 15px;
  text-decoration: underline;
}
.profile_menu li a:hover {
  text-decoration: none;
}
.profile_menu li a::before {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -6px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 7px;
  border-color: transparent transparent transparent #333;
  transition: all 0.2s ease-in-out 0s;
  z-index: 5;
}
  @media screen and (max-width: 767px) {
    .profile_menu ul {
      padding: 3.33vw 0 9.33vw;
    }
    .profile_menu li {
      font-size: 4.53vw;
      margin-bottom: 2.33vw;
    }
    .profile_menu li a {
      padding-left: 3.66vw;
    }
    .profile_menu li a::before {
      right: 2.66vw;
      margin-top: -1.8vw;
      border-width: 1.8vw 0 1.8vw 2vw;
    }
  }

#profile fieldset legend {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 15px;
} 
#profile .req-text {
  display: none;
}
.my_row_wrapper {
  position: relative;
}
.my_row_wrapper .checkbox {
  padding: 0 0 0 20px!important;
  margin-bottom: 50px!important;
}
.my_row_wrapper .div_checkbox {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px!important;
}
  @media screen and (max-width: 767px) {
    #profile fieldset legend {
      font-size: 4.53vw;
      margin-bottom: 2.33vw;
    } 
    .my_row_wrapper .checkbox {
      margin-bottom: 9.33vw!important;
    }
    #wpmem_reg, #wpmem_login {
      font-size: 4.26vw;
    }
  }

/*WP-member共通*/
#wpmem_login .div_text, #wpmem_reg .div_text, #wpmem_reg .div_textarea, #wpmem_reg .div_select, #wpmem_reg .div_checkbox, #wpmem_reg .div_multiselect, #wpmem_reg .div_multicheckbox, #wpmem_reg .div_radio, #wpmem_reg .div_image, #wpmem_reg .div_file, #wpmem_reg .div_url, #wpmem_reg .div_number, #wpmem_reg .div_date {
  width: 100%;
}
#wpmem_reg input[type="text"], #wpmem_reg input[type="password"], #wpmem_reg input[type="email"], #wpmem_reg input[type="url"], #wpmem_reg input[type="number"], #wpmem_reg input[type="date"], #wpmem_reg textarea, #wpmem_login input[type="text"], #wpmem_login input[type="password"] {
  width: 100%;
  padding: 15px 20px;
  border: solid 1px #C2C2C2;
}
 .member_box input[type="text"], .member_box input[type="password"], .member_box input[type="email"] {
  width: 100%;
  padding: 10px 20px;
  border-radius: 2px;
  border: solid 1px #C2C2C2;
}
  @media screen and (max-width: 767px) {
    #wpmem_reg input[type="text"], #wpmem_reg input[type="password"], #wpmem_reg input[type="email"], #wpmem_reg input[type="url"], #wpmem_reg input[type="number"], #wpmem_reg input[type="date"], #wpmem_reg textarea, #wpmem_login input[type="text"], #wpmem_login input[type="password"] {
      padding: 13px 12px;
    }
     .member_box input[type="text"], .member_box input[type="password"], .member_box input[type="email"] {
      padding: 10px 12px;
    }
  }

#wpmem_msg, .wpmem_msg {
  width: 100%;
  padding: 15px;
  margin-bottom: 40px;
}
.wpmem_msg br:nth-child(2) {
  display: none;
}
#wpmem_reg .button_div, #wpmem_login .button_div {
  margin: 25px 0 0 0;
  text-align: center;
}
  @media screen and (max-width: 767px) {
    #wpmem_msg, .wpmem_msg {
      padding: 3.33vw;
      margin-bottom: 8vw;
    }
    #wpmem_reg .button_div, #wpmem_login .button_div {
      margin: 2.66vw 0 0 0;
    }
  }

#unsubscribe .member_box {
  text-align: center;
}
#plugin_delete_me_shortcode_form p:first-child {
  margin-bottom: 20px;
}
#plugin_delete_me_shortcode_password {
  width: 240px;
}
  @media screen and (max-width: 767px) {
    #plugin_delete_me_shortcode_form p label {
      font-size: 4.8vw;
      margin-bottom: 2vw;
      display: inline-block;
    }
    #plugin_delete_me_shortcode_password {
      width: 100%;
    }
  }

#plugin_delete_me_shortcode_form p:last-child {
  position: relative;
  text-align: center;
  width: 100%!important;
  margin: 40px auto 20px auto;
}
#plugin_delete_me_shortcode_form p:last-child::before {
  position: absolute;
  right: 12px;
  top: 50%;
  margin-top: -6px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 7px;
  border-color: transparent transparent transparent #fff;
  transition: all 0.2s ease-in-out 0s;
  z-index: 5;
}
#plugin_delete_me_shortcode_form p:last-child:hover::before {
  right: 10px;
}
#plugin_delete_me_shortcode_form p:last-child input {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 11px 10px;
  text-align: center;
  text-decoration: none;
  font-size: 1.8rem;
  border-radius: 3px;
  color: #fff;
  background: #EA5550;
  border: solid 1px #EA5550;
  transition: all 0.2s ease-in-out 0s;
}
#plugin_delete_me_shortcode_form p:last-child input:hover {
  opacity: 0.7;
}
  @media screen and (max-width: 767px) {
    #plugin_delete_me_shortcode_form p:last-child input {
      padding: 3.33vw;
      font-size: 4.8vw;
      line-height: 1;
    }
    #plugin_delete_me_shortcode_form p:last-child::before {
      right: 2.66vw;
      margin-top: -1.8vw;
      border-width: 1.8vw 0 1.8vw 2vw;
    }
  }

/*----------------------------------------------------
  投稿
--------------------------------------------------- */

/*一覧*/
.ttl_archive {
  font-size: 2.4rem;
  margin-bottom: 30px;
  color: #EA5550;
}
  @media screen and (max-width: 767px) {
    .ttl_archive {
      font-size: 5.33vw;
      margin: 0 4vw 4vw 4vw;
      text-align: center;
    }
  }

/*詳細*/
.sing_post_info {
  text-align: center;
  font-size: 1.6rem;
}
.sing_post_info .cat_box {
  margin: 0 7px;
}
.sing_post_info time {
  display: inline-block;
  margin: 0 7px;
  color: #727171;
}
.ttl_single {
  font-size: 2.4rem;
  margin: 28px 0;
}
.sns_share_box {
  position: relative;
  text-align: center;
  margin-bottom: 35px;
}
.sns_share_box .addtoany_list {
  display: inline-block!important;
  vertical-align: top;
}
.addtoany_content {
  display: inline-block;
}
.ico_favorite {
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
}
.ico_favorite .simplefavorite-button,
.ico_favorite .openModal {
  font-size: 1.8rem;
  cursor: pointer;
  color: #fff!important;
  width: 32px;
  line-height: 32px;
  background: #B5B5B6;
  border-radius: 5px;
  overflow: hidden;
}
.ico_favorite .active {
 background: #EA5550;
 opacity: 1!important;
}
.no_login {
  padding-bottom: 15px;
  margin-top: 30px;
}
  @media screen and (max-width: 767px) {
    #post_single {
      padding: 0 7.33vw;
    }
    .sing_post_info {
      font-size: 3.2vw;
      padding-top: 2vw;
    }
    .sing_post_info .cat_box {
      margin: 0 1.33vw;
    }
    .sing_post_info time {
      margin: 0 1.33vw;
    }
    .ttl_single {
      font-size: 4.8vw;
      margin: 4vw 0 4.4vw;
    }
    .sns_share_box {
      margin-bottom: 4.7vw;
    }
    .no_login {
      padding-bottom: 0;
    }
    .no_login li {
      margin-bottom: 3.33vw;
      margin-top: 6vw;
    }
  }

.single_sns_login #wpg-login {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -o-justify-content: flex-end;
  justify-content: flex-end;
  padding-bottom: 30px;
}
.single_sns_login .member_btn li {
  margin-left: 6px;
}
.single_sns_login .member_btn li a {
  font-size: 1.3rem;
  padding-right: 22px;
}
  @media screen and (max-width: 767px) {
.single_sns_login #wpg-login {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  padding: 0 2vw;
}
.single_sns_login .member_btn li {
  margin: 0 1.33vw;
}
.single_sns_login .member_btn li a {
  font-size: 3.33vw;
  padding-right: 6.66vw;
}
  }

#main_bnr {
  margin-top: 60px;
}
#main_bnr figure {
  margin-bottom: 20px;
}
  @media screen and (max-width: 767px) {
    #main_bnr {
      margin-top: 9.66vw;
    }
    #main_bnr figure {
      margin-bottom: 4vw;
    }
  }

/*----------------------------------------------------
  共通WP
--------------------------------------------------- */
/* img */
.aligncenter {
  display: block;
  margin: 0 auto;
  text-align: center;
}
.alignright { float: right; }
.alignleft { float: left; }
img[class*="wp-image-"],
img[class*="attachment-"] {
  height: auto;
  max-width: 100%;
}

/*ページ分割ナビ*/
.wp-pagenavi {
  padding: 50px 0 0 0;
  text-align: center;
  overflow: hidden;
}
.wp-pagenavi a, .wp-pagenavi span {
  display: inline-block;
  width: 48px;
  line-height: 46px;
  background: #fff;
  border: 1px solid #333;
  color: #333;
  margin: 0 5px 10px 5px;
  text-decoration: none;
  font-size: 1.8rem;
}
.wp-pagenavi span {
  background: #333;
  color: #fff;
}
.wp-pagenavi a:hover {
  background: #333;
  color: #fff;
  border: 1px solid #333;
}
.wp-pagenavi .first, .wp-pagenavi .last {
  line-height: 1;
  width: auto;
  border: none;
}
.wp-pagenavi .first:hover, .wp-pagenavi .last:hover {
  border: none;
  color: #333;
  background: none;
  text-decoration: underline;
}
.wp-pagenavi .extend {
  line-height: 1;
  width: auto;
  border: none;
  color: #333;
  background: none;
}
  @media screen and (max-width: 767px) {
    .wp-pagenavi {
      padding: 30px 0 0 0;
    }
    .wp-pagenavi a, .wp-pagenavi span {
      width: 32px;
      line-height: 30px;
      margin: 0 3px 6px 3px;
    }
  }

/*記事詳細ナビ*/
.wp-detailnavi {
  position: relative;
  padding: 50px 0 0 0;
  text-align: center;
}
.wp-detailnavi a {
  display: block;
  text-decoration: none;
  color: #333;
  border: solid 1px #333;
  line-height: 40px;
  padding: 5px;
}
.wp-detailnavi a:hover {
  color: #fff;
  background: #333;
}
.prev_link {
  width: 33%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.next_link {
  width: 33%;
  position: absolute;
  right: 0;
  bottom: 0;
}
.list_link {
  width: 34%;
  margin: 0 auto;
}
.list_link a {
  color: #fff;
  background: #333;
}
  @media screen and (max-width: 767px) {
    .wp-detailnavi {
      padding-top: 30px;
    }
    .wp-detailnavi a {
      line-height: 36px;
    }
    .prev_link {
      width: 32%;
    }
    .next_link {
      width: 32%;
    }
    .list_link {
      width: 36%;
    }
  }

/*投稿詳細用*/
.entry-content {
  line-height: 2;
}
.entry-content:after {
  content: ""; 
  display: block; 
  clear: both;
}
  @media screen and (max-width: 767px) {
    .entry-content {
      line-height: 1.8;
    }
  }

.entry-content a:link {
  color: #0470B6;
  text-decoration: underline;
}
.entry-content a:visited {
  color: #0470B6;
  text-decoration: underline;
}
.entry-content a:hover {
  text-decoration: none;
  color: #0470B6;
}
.entry-content a:active {
  color: #0470B6;
  text-decoration: underline;
}

.entry-content h1 {
  font-size: 24px;
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: solid 4px #333;
}
  @media screen and (max-width: 767px) {
    .entry-content h1 {
      font-size: 4.8vw;
      padding-bottom: 3.33vw;
      margin-bottom: 4vw;
      border-bottom: solid 3px #333;
    }
  }

.entry-content h2 {
  font-size: 24px;
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: solid 4px #333;
}
  @media screen and (max-width: 767px) {
    .entry-content h2 {
      font-size: 4.8vw;
      padding-bottom: 3.33vw;
      margin-bottom: 4vw;
      border-bottom: solid 3px #333;
    }
  }

.entry-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
  @media screen and (max-width: 767px) {
    .entry-content h3 {
      font-size: 4.8vw;
      margin-bottom: 3.33vw;
    }
  }

.entry-content h4 {
  font-size: 20px;
  margin-bottom: 12px;
}
  @media screen and (max-width: 767px) {
    .entry-content h4 {
      font-size: 4.8vw;
      margin-bottom: 3.33vw;
    }
  }

.entry-content h5 {
  font-size: 18px;
  margin-bottom: 12px;
}
  @media screen and (max-width: 767px) {
    .entry-content h5 {
      font-size: 4.8vw;
      margin-bottom: 3.33vw;
    }
  }

.entry-content h6 {
  font-size: 16px;
  margin-bottom: 12px;
}
  @media screen and (max-width: 767px) {
    .entry-content h6 {
      font-size: 4.8vw;
      margin-bottom: 3.33vw;
    }
  }

.entry-content p {
  margin-bottom:30px;
  letter-spacing: 0.12rem;
}

  @media screen and (max-width: 767px) {
    .entry-content p {
      margin-bottom: 6vw;
      letter-spacing: 0.12rem;
    }
  }

.entry-content img {
  margin-bottom:30px;
}
  @media screen and (max-width: 767px) {
    .entry-content img {
      margin-bottom: 6vw;
    }
  }

.entry-content ul {
  margin-bottom: 30px;
  padding-left: 20px;
}
.entry-content ul li {
  list-style-type: disc;
}
.entry-content ul li ul {
  margin-bottom: 10px;
  font-size: 93%;
}
.entry-content ul li ul li {
  list-style-type:circle;
}
  @media screen and (max-width: 767px) {
    .entry-content ul {
      margin-bottom: 5vw;
      padding-left: 5.4vw;
    }
    .entry-content ul li ul {
      margin-bottom: 2vw;
    }
  }

.entry-content ol {
  counter-reset: section;
  margin-bottom: 30px;
}
.entry-content ol li {
  list-style: none;
}
.entry-content ol > li:before {
  content : counters(section, '-') '. ';
  counter-increment : section;
}
.entry-content ol li ol {
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 93%;
}
  @media screen and (max-width: 767px) {
    .entry-content ol {
      margin-bottom: 5vw;
    }
    .entry-content ol li ol {
      padding-left: 5.4vw;
      margin-bottom: 2vw;
    }
  }

.entry-content table {
  width:100%;
  margin:0 0 35px 0;
}
.entry-content th {
  text-align: left;
  padding:7px 10px;
  border:solid 1px #eee;
}
.entry-content td {
  padding:7px 10px;
  border:solid 1px #eee;
}
  @media screen and (max-width: 767px) {
    .entry-content table {
      margin:0 0 6vw 0;
      font-size: 93%;
    }
    .entry-content th {
      padding:2vw;
    }
    .entry-content td {
      padding:2vw;
    }
  }

.entry-content blockquote {
  position: relative;
  border: solid 4px #d7d7d7;
  padding: 20px 20px 20px 55px;
  margin-bottom: 35px;
}
.entry-content blockquote::before {
  position: absolute;
  left: 18px;
  top: 20px;
  content: "“";
  line-height: 1;
  font-size: 6rem;
  color: #d7d7d7;
}
  @media screen and (max-width: 767px) {
    .entry-content table {
      margin:0 0 6vw 0;
      font-size: 93%;
    }
    .entry-content blockquote {
      border: solid 3px #d7d7d7;
      padding: 4vw 3.33vw 4vw 9.33vw;
      margin-bottom: 6vw;
    }
    .entry-content blockquote::before {
      left: 2vw;
      top: 4vw;
      font-size: 12.33vw;
    }
  }

/*----------------------------------------------------
  404 Not Found
--------------------------------------------------- */
#notfound {
  padding-bottom: 70px;
}
#notfound p {
  padding-bottom: 20px;
}
#notfound .btn01 {
  margin-top: 20px;
}
  @media screen and (max-width: 767px) {
    #notfound {
      padding-bottom: 10.66vw!important;
    }
    #notfound p {
      padding-bottom: 4vw;
    }
    #notfound .btn01 {
      margin-top: 10px;
    }
  }

/*----------------------------------------------------
  下層固定ページ
--------------------------------------------------- */

.lower_page {
  padding-bottom: 40px;
}
  @media screen and (max-width: 767px) {
    .lower_page {
      padding: 0 5.4vw 5.4vw;
    }
  }

/*----------------------------------------------------
  プライバシーポリシー privacy
--------------------------------------------------- */
#privacy {
    text-align: justify;
}
#privacy .privacy_lead {
  line-height: 2;
  margin-bottom: 30px;
}
#privacy dl {
  line-height: 2;
  margin-bottom: 110px;
}
#privacy dt {
  margin-bottom: 7px;
  font-weight: 600;
}
#privacy dd {
  margin-bottom: 30px;
}
#privacy ul {
    text-indent: -1em;
    padding-left: 1em;
}
  @media screen and (max-width: 767px) {
    #privacy .privacy_lead {
      line-height: 1.8;
      margin-bottom: 5.4vw;
    }
    #privacy dl {
      line-height: 1.8;
      margin-bottom: 6.66vw;
    }
    #privacy dt {
      margin-bottom: 1vw;
    }
    #privacy dd {
      margin-bottom: 5.4vw;
    }
  }

/*----------------------------------------------------
  運営会社 company
--------------------------------------------------- */
#company table {
  border-top: solid 1px #B5B5B6;
  line-height: 1.8;
  margin-bottom: 40px;
}
#company tr {
  border-bottom: solid 1px #B5B5B6;
}
#company th {
  text-align: left;
  width: 335px;
  padding: 25px 50px;
}
#company th h3 {
  margin-top: 25px;
}
#company td {
  padding: 25px 0;
}

#company .bdn {
  border-bottom: none;
}
#company .bdn th {
  padding-top: 0;
  padding-bottom: 0;
}
#company .bdn td {
  padding: 0;
}
  @media screen and (max-width: 767px) {
    #company table {
      display: block;
      width: 100%;
      margin-bottom: 10.66vw;
    }
    #company tbody {
      display: block;
      width: 100%;
    }
    #company th {
      display: block;
      width: 100%;
      padding:  3.66vw 0 0 0;
    }
    #company th h3 {
      margin-top: 3.66vw;
    }
    #company td {
      display: block;
      width: 100%;
      padding: 0 0 3.66vw 0;
    }
    #company .bdn th {
      padding-top: 0;
      padding-bottom: 0;
    }
    #company .bdn td {
      padding: 0;
    }
  }

/*----------------------------------------------------
  お問い合わせ contact
--------------------------------------------------- */

.mw_wp_form .error-message {
  display: none;
}
.mw_wp_form_error .error-message,
.contactConfirm {
  display: block;
  color: #EA5550;
  line-height: 1.8;
  margin-bottom: 25px;
}
.contactForm .error-pink input[type="text"],
.contactForm .error-pink textarea {
  border: solid 1px #EA5550!important;
}

.contactComplete p {
  margin-bottom: 30px;
}
.contactForm table {
  display: block;
  width:100%;
}
.contactForm tbody,
.contactForm tr {
  display: block;
  width:100%;
}
.contactForm th {
  display: block;
  width:100%;
  padding: 0 0 10px 0;
  text-align:left;
  vertical-align:middle;
}
.contactForm th span {
  display:inline-block;
  position:relative;
  padding-right: 50px;
}
.contactForm th .require {
  position:absolute;
  right:0;
  top:3px;
  font-size:1rem;
  color:#fff;
  font-style:normal;
  display:inline-block;
  background: #333;
  line-height: 1.3;
  padding: 2px 7px;
}
.contactForm td {
  padding: 0 0 40px 0;
}
.contactForm td input[type="text"],.contactForm td textarea {
  font-size:1.6rem;
  padding: 12px 15px;
}
.contactForm td .error {
  display:block;
  color:#EA5550;
  margin-top:7px;
}
.mw_wp_form_confirm .confirm_none , .contactConfirm .confirm_none {
  display:none;
}
  @media screen and (max-width: 767px) {
    .mw_wp_form_error .error-message,
    .contactConfirm {
      margin-bottom: 6.66vw;
    }
    .contactComplete p {
      margin-bottom: 5.4vw;
    }
    .contactForm th {
      padding: 0 0 2.66vw 0;
    }
    .contactForm th span {
      padding-right: 12vw;
    }
    .contactForm th .require {
      top: 0.9vw;
      font-size:2.66vw;
      padding: 0.6vw 2vw;
    }
    .contactForm td {
      padding: 0 0 9.33vw 0;
    }
    .contactForm td input[type="text"],.contactForm td textarea {
      padding: 2.33vw 3vw;
    }
    .contactForm td .error {
      margin-top:2vw;
    }
  }

/*inputサイズ*/
.inp_short {
  width:45%;
}
.inp_middle {
  width:65%;
}
.inp_long {
  width:100%;
}
.area_long {
  width:100%;
  height:280px;
}
  @media screen and (max-width: 767px) {
    .inp_short {
      width:60%;
    }
    .inp_middle {
      width:80%;
    }
    .inp_long {
      width:100%;
    }
    .area_long {
      width:100%;
      height:70vw;
    }
  }

/*フォーカス*/
#contact input[type="text"]:focus,
#contact textarea:focus {
  box-shadow: 0 0 7px #52a8ec;
  border: 1px solid #52a8ec;
}

/*プレースホルダー*/
input::-webkit-input-placeholder { color:#aaa; }
input:-moz-placeholder { color:#666; }
input::-moz-placeholder { color:#666; }

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }

/*ボタン*/
.btnArea {
  text-align:center;
}
.btnArea span:empty {
  display:none;
}
.btnArea span {
  display: block;
  position: relative;
  text-align: center;
  width: 100%!important;
}
.btnArea span::before {
  position: absolute;
  right: 12px;
  top: 50%;
  margin-top: -6px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 7px;
  border-color: transparent transparent transparent #fff;
  transition: all 0.2s ease-in-out 0s;
  z-index: 5;
}
.btnArea span:hover::before {
  right: 10px;
}
.btnArea span input {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 11px 10px;
  text-align: center;
  text-decoration: none;
  font-size: 1.8rem;
  border-radius: 3px;
  color: #fff;
  background: #333;
  border: solid 1px #333;
  transition: all 0.2s ease-in-out 0s;
}
.btnArea span input:hover {
  opacity: 0.7;
}
  @media screen and (max-width: 767px) {
    .btnArea span input {
      padding: 3.66vw;
      font-size: 4.8vw;
      line-height: 1;
    }
    .btnArea span::before {
      right: 2.66vw;
      margin-top: -1.8vw;
      border-width: 1.8vw 0 1.8vw 2vw;
    }
  }

.contactForm .doui_box {
  padding-bottom: 50px;
}

/*----------------------------------------------------
  2020/04/20 追記
--------------------------------------------------- */
.tml-register label[for="meil_magazine"] {
  display: none;
}


