@charset "UTF-8";
/*
**  ===================================================================
**  各種設定：var,reset,base-font,break-point
**  ===================================================================
*/
/**
 * Foundation
**/
/**
 * WIDTH
**/
/**
 * BREAK POINT
**/
/**
 * COLOR
**/
/*
**  ===================================================================
**  foundation CSS ※サイト全体に共通のスタイル
**  ===================================================================
*/
/*!
     * html5doctor.com Reset Stylesheet v1.6.1 (http://html5doctor.com/html-5-reset-stylesheet/)
     * Richard Clark (http://richclarkdesign.com)
     * http://cssreset.com
     */
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  line-height: 1; }

body {
  line-height: 1; }

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

nav ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  border: 0px; }

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none; }

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold; }

del {
  text-decoration: line-through; }

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0; }

input, select {
  vertical-align: middle; }

img {
  border-style: none; }

/*
**  ===================================================================
**  Mixin CSS
**  ===================================================================
*/
/**
 * clearfix
**/
.clearfix:after {
  content: "";
  clear: both;
  display: block; }

@font-face {
  font-family: 'gill';
  src: url("../font/GillSans-Bold.ttf") format("truetype");
  font-weight: 500;
  font-style: bold; }

/*light*/
@font-face {
  font-family: 'gill';
  src: url("../font/GillSans.ttf") format("truetype");
  font-weight: 300;
  font-style: normal; }

body {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  min-width: 1200px;
  background-color: #FCFCFC; }
  @media screen and (max-width: 1180px) {
    body {
      min-width: auto; } }
  body p, body a, body h2 {
    line-height: 1.7; }
  body p {
    font-size: 16px;
    color: #666; }
  body a {
    font-size: 16px;
    color: #ff8731; }

a {
  text-decoration: none; }
  a:hover {
    opacity: 0.8;
    -webkit-transition: all .2s;
            transition: all .2s; }

ul li {
  list-style: none; }

.site-content .col-full {
  margin-left: 258px;
  box-sizing: border-box; }
  @media only screen and (max-width: 1064px) {
    .site-content .col-full {
      margin-left: 0;
      margin-right: 0; } }
  .site-content .col-full #primary {
    max-width: 1088px;
    margin: 0 auto;
    float: none;
    width: 84%; }
    @media only screen and (max-width: 480px) {
      .site-content .col-full #primary {
        width: calc(100% - 40px); } }
    .site-content .col-full #primary main {
      margin-bottom: 100px; }
      @media only screen and (max-width: 1064px) {
        .site-content .col-full #primary main {
          margin-top: 70px;
          margin-bottom: 0; } }

@media only screen and (max-width: 1064px) {
  .site-content.active:before {
    content: "";
    width: 100vw;
    height: 100vh;
    position: fixed;
    background: rgba(0, 0, 0, 0.2);
    top: 0;
    left: 0;
    display: block;
    z-index: 1; } }

.detail_link_style {
  min-width: 250px;
  height: 48px;
  background-color: #ff9731;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
  color: #fff;
  margin: 0 auto;
  padding: 0 16px; }
  .detail_link_style:before {
    content: url(../images/link_arrow.png);
    height: 20px;
    width: 20px;
    margin-top: -1px;
    margin-right: 8px; }

.donate_btn, .add_to_cart_btn {
  color: #fff;
  background-color: #ff8731;
  border-radius: 5px;
  height: 60px;
  width: 237px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  clear: both;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
  border: 2px solid #fff;
  border-radius: 5px;
  position: relative; }
  @media only screen and (max-width: 480px) {
    .donate_btn, .add_to_cart_btn {
      width: 100%; } }
  .donate_btn::after, .add_to_cart_btn::after {
    content: "寄付カートに入れる"; }
  .donate_btn span, .add_to_cart_btn span {
    position: absolute;
    right: 16px; }
    .donate_btn span::after, .add_to_cart_btn span::after {
      content: url("../images/arrow_donate_link.png");
      height: 11px;
      width: 11px; }
  .donate_btn:before, .add_to_cart_btn:before {
    content: url("../images/cart_icon.png");
    height: 21px;
    width: 21px;
    margin-right: 8px;
    margin-left: -18px; }
  .donate_btn:hover, .add_to_cart_btn:hover {
    opacity: 0.8; }
  .donate_btn.disable, .add_to_cart_btn.disable {
    background-color: #666;
    pointer-events: none; }
    .donate_btn.disable.added, .add_to_cart_btn.disable.added {
      background-color: #ff8731 !important; }
    .donate_btn.disable::after, .add_to_cart_btn.disable::after {
      content: "金額を選択して下さい"; }
  .donate_btn.added, .add_to_cart_btn.added {
    pointer-events: none; }
    .donate_btn.added span::after, .add_to_cart_btn.added span::after {
      content: ""; }
    .donate_btn.added::before, .add_to_cart_btn.added::before {
      content: ""; }
    .donate_btn.added::after, .add_to_cart_btn.added::after {
      content: "追加されました"; }

.donate_btn_hide, .donate_btn_archive {
  width: 100%;
  margin: 16px auto;
  background: #fff7ea;
  padding: 24px; }
  .donate_btn_hide select, .donate_btn_archive select {
    font-size: 14px;
    float: left;
    margin-right: 12px;
    height: 40px;
    margin-bottom: 12px;
    background: #fff; }
  .donate_btn_hide .donate_btn_title, .donate_btn_archive .donate_btn_title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 24px; }
  .donate_btn_hide .donate_select_area, .donate_btn_archive .donate_select_area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 12px;
    width: 628px;
    margin: 0 auto; }
    @media only screen and (max-width: 480px) {
      .donate_btn_hide .donate_select_area, .donate_btn_archive .donate_select_area {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column; } }
    .donate_btn_hide .donate_select_area .select_wrap, .donate_btn_archive .donate_select_area .select_wrap {
      width: 360px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: end;
      -webkit-justify-content: flex-end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
      @media only screen and (max-width: 480px) {
        .donate_btn_hide .donate_select_area .select_wrap, .donate_btn_archive .donate_select_area .select_wrap {
          width: 100%;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-direction: column;
              -ms-flex-direction: column;
                  flex-direction: column; } }
      .donate_btn_hide .donate_select_area .select_wrap select, .donate_btn_archive .donate_select_area .select_wrap select {
        font-size: 16px;
        width: 160px;
        margin-right: 28px;
        margin-bottom: 0;
        height: 60px; }
        @media only screen and (max-width: 480px) {
          .donate_btn_hide .donate_select_area .select_wrap select, .donate_btn_archive .donate_select_area .select_wrap select {
            width: 100%;
            margin-right: 0;
            margin-bottom: 16px; } }

.donate_btn_archive .add_to_cart_button {
  margin: 0;
  color: #fff;
  background-color: #ff8731;
  border-radius: 5px;
  height: 60px;
  width: 350px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  cursor: pointer;
  clear: both; }
  .donate_btn_archive .add_to_cart_button:hover {
    opacity: 0.8; }
  .donate_btn_archive .add_to_cart_button.disable {
    background-color: #666;
    pointer-events: none; }

.link_btn_style01 {
  margin: 0 auto;
  color: #fff;
  background-color: #ff8731;
  border-radius: 5px;
  height: 60px;
  width: 237px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  clear: both;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
  border: 2px solid #fff;
  border-radius: 5px;
  position: relative; }
  @media only screen and (max-width: 480px) {
    .link_btn_style01 {
      width: 100%; } }
  .link_btn_style01 span {
    position: absolute;
    right: 16px; }
    .link_btn_style01 span::after {
      content: url("../images/arrow_donate_link.png");
      height: 11px;
      width: 11px; }
  .link_btn_style01:hover {
    opacity: 0.8; }

.single_id, .single_id_archive {
  display: none; }

.site-content .col-full {
  max-width: 100%; }

.title_style01 {
  font-family: "fot-tsukubrdgothic-std";
  font-size: 29px;
  font-weight: bold;
  color: #333;
  height: 80px;
  position: relative;
  margin-bottom: 34px;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  @media only screen and (max-width: 480px) {
    .title_style01 {
      font-size: 24px; } }
  .title_style01 span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
    .title_style01 span:after {
      content: "";
      height: 2px;
      margin-top: 16px;
      background-color: #90b023;
      width: 120px;
      display: block; }
  .title_style01:before {
    content: url("../images/icon_donate.png");
    display: block;
    float: left;
    margin-right: 24px; }

.title-online-donation .title_style01:before {
  content: url("../images/icon_donate.png"); }

.title-support .title_style01:before {
  content: url("../images/icon_support.png"); }

.title-contributionsystem .title_style01:before {
  content: url("../images/icon_shikumi.png"); }

.title-organization .title_style01:before {
  content: url("../images/icon_group.png"); }

.title-group_report .title_style01:before {
  content: url("../images/icon_group.png"); }

.title-usage_report .title_style01:before {
  content: url("../images/icon_group.png"); }

.title-various_donation .title_style01:before {
  content: url("../images/icon_samazama.png"); }

.title-iikoto .title_style01:before, .title-donate_report .title_style01:before {
  content: url("../images/icon_samazama.png"); }

.title-environment .title_style01:before {
  content: url("../images/icon_news.png"); }

.title-protective_research .title_style01:before, .title-news_list .title_style01:before {
  content: url("../images/icon_news.png"); }

.title-happy_pets .title_style01:before {
  content: url("../images/icon_news.png"); }

.title-facilities_report .title_style01:before {
  content: url("../images/icon_news.png"); }

.title-media_article .title_style01:before {
  content: url("../images/icon_news.png"); }

.title-about .title_style01:before, .title-profile .title_style01:before {
  content: url("../images/icon_about.png"); }

.title-activity_report .title_style01:before {
  content: url("../images/icon_about.png"); }

.title-activities .title_style01:before {
  content: url("../images/icon_about.png"); }

.title-profile .title_style01:before {
  content: url("../images/icon_about.png"); }

.title-profile .title_style01:before {
  content: url("../images/icon_about.png"); }

.title_green {
  border-left: 4px solid #91b11f;
  border-bottom: 1px solid #91b11f;
  padding: 6px 0px 6px 24px;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
  color: #91b11f; }

#update_all_subscriptions_addresses_field {
  display: none; }

.form-row.notes {
  display: none; }

.site-footer .site-info {
  display: none; }

.page-numbers {
  font-size: 16px;
  margin: 0 4px; }
  .page-numbers .current {
    font-size: 16px;
    margin: 0 4px; }

header.site-header {
  width: 258px;
  position: fixed;
  height: 100vh;
  padding: 0;
  z-index: 5;
  border-right: 1px solid #eee; }
  @media only screen and (max-width: 1064px) {
    header.site-header {
      width: 100%;
      height: 60px;
      border-bottom: 1px solid #eee;
      border-right: none;
      position: absolute; } }
  header.site-header .logo_wrap {
    background: #fff7ea;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 0;
    position: absolute;
    z-index: 6;
    width: 100%; }
    @media only screen and (max-width: 1064px) {
      header.site-header .logo_wrap {
        position: fixed;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
        padding: 0 52px 0 20px; } }
    header.site-header .logo_wrap .pc {
      display: block; }
    header.site-header .logo_wrap .sp {
      display: none; }
    header.site-header .logo_wrap .menu_btn {
      display: none; }
    @media only screen and (max-width: 1064px) {
      header.site-header .logo_wrap {
        height: 70px;
        overflow: hidden; }
        header.site-header .logo_wrap .pc {
          display: none; }
        header.site-header .logo_wrap .sp {
          display: block; }
        header.site-header .logo_wrap .menu_btn {
          display: block;
          position: absolute;
          right: 8px; } }
    @media only screen and (max-width: 1064px) {
      header.site-header .logo_wrap .home_logo {
        height: 58px; }
        header.site-header .logo_wrap .home_logo img {
          height: 100%;
          width: auto; } }
    header.site-header .logo_wrap .sp_link_wrap {
      display: none; }
      @media only screen and (max-width: 1064px) {
        header.site-header .logo_wrap .sp_link_wrap {
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          float: right;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center; }
          header.site-header .logo_wrap .sp_link_wrap a {
            margin: 0 6px; } }
  header.site-header .head_nav {
    background: #fff; }
    @media only screen and (max-width: 1064px) {
      header.site-header .head_nav {
        position: fixed;
        left: 100vw;
        height: 100vh;
        -webkit-transition: all .2s;
                transition: all .2s;
        top: 0px; }
        header.site-header .head_nav.active {
          display: block;
          left: 40px;
          position: fixed;
          overflow-y: scroll; } }
  header.site-header .storefront-primary-navigation {
    margin-top: 165px; }
    @media only screen and (max-width: 1064px) {
      header.site-header .storefront-primary-navigation {
        margin-top: 70px;
        width: 100vw; } }
    header.site-header .storefront-primary-navigation .col-full {
      max-width: 100%;
      padding: 0; }
      @media only screen and (max-width: 1064px) {
        header.site-header .storefront-primary-navigation .col-full {
          margin: 0; } }
    header.site-header .storefront-primary-navigation .main-navigation {
      width: 100% !important;
      position: static;
      z-index: 5; }
      @media only screen and (max-width: 1064px) {
        header.site-header .storefront-primary-navigation .main-navigation {
          background: #fff; } }
      header.site-header .storefront-primary-navigation .main-navigation .primary-navigation {
        height: 100vh;
        background: #fff;
        top: 300px;
        z-index: 5; }
        @media only screen and (max-width: 1064px) {
          header.site-header .storefront-primary-navigation .main-navigation .primary-navigation {
            height: auto; } }
        header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu li {
          height: 60px;
          line-height: 30px;
          padding: 0px;
          border-bottom: 1px dashed #eeeeee;
          cursor: pointer; }
          @media only screen and (max-width: 1064px) {
            header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu li {
              width: 100%;
              height: auto; } }
          header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu li a {
            width: 100%;
            height: 100%;
            padding: 0 12px;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -webkit-align-items: center;
                -ms-flex-align: center;
                    align-items: center;
            font-family: 'Noto Sans Japanese',   sans-serif;
            font-weight: 400;
            color: #95816c;
            font-size: 16px; }
            @media only screen and (max-width: 1064px) {
              header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu li a {
                height: 60px; } }
        header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item.mypage:hover {
          opacity: 0.8;
          background: #fff;
          -webkit-transition: all .2s;
                  transition: all .2s; }
          header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item.mypage:hover a {
            color: #95816c;
            background: #ff9731;
            color: #fff;
            -webkit-transition: all .2s;
                    transition: all .2s; }
        header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item.login_btn:hover {
          opacity: 0.8;
          background: #fff;
          -webkit-transition: all .2s;
                  transition: all .2s; }
          header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item.login_btn:hover a {
            color: #95816c;
            background: #ff9731;
            color: #fff;
            -webkit-transition: all .2s;
                    transition: all .2s; }
        header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item:hover {
          background: #ff9731;
          -webkit-transition: all .2s;
                  transition: all .2s; }
          @media only screen and (max-width: 1064px) {
            header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item:hover {
              background: #fff; } }
          header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item:hover a {
            color: #fff;
            -webkit-transition: all .2s;
                    transition: all .2s;
            opacity: 1; }
            @media only screen and (max-width: 1064px) {
              header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item:hover a {
                color: #95816c; } }
            header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item:hover a:after {
              color: #fff;
              -webkit-transition: all .2s;
                      transition: all .2s;
              opacity: 1; }
        header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item.none a {
          pointer-events: none; }
        header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item.none .sub-menu a {
          pointer-events: all; }
        header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item.none .sub-menu .none a {
          pointer-events: none;
          cursor: default; }
        header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item.small {
          font-size: 12px;
          border: none;
          height: auto;
          margin-bottom: 20px; }
          @media only screen and (max-width: 1064px) {
            header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item.small {
              margin-bottom: 0; } }
          header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item.small:hover {
            background: none; }
            header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item.small:hover a {
              color: #95816c; }
            header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item.small:hover .sub-menu a {
              color: #fff; }
          @media only screen and (max-width: 1064px) {
            header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item.small a {
              height: 32px; } }
          header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item.small a::after {
            content: "";
            display: none; }
          header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item.small .sub-menu {
            left: -25px; }
            @media only screen and (max-width: 1064px) {
              header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item.small .sub-menu a {
                height: 60px; } }
            header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item.small .sub-menu a::before {
              content: ""; }
          header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item.small.small-first {
            margin-top: 28px; }
            @media only screen and (max-width: 1064px) {
              header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item.small.small-first {
                margin-top: 0px; } }
          header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item.small a {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -webkit-align-items: center;
                -ms-flex-align: center;
                    align-items: center;
            line-height: 1;
            font-size: 12px; }
            header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item.small a::before {
              content: url("../images/menu_arrow.png");
              height: 15px;
              width: 15px;
              margin-right: 8px; }
        header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item-has-children{
          display: block !important;
        }
        header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item-has-children.small:hover .sub-menu {
          left: 246px; }
        header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item-has-children:hover .sub-menu {
          left: 246px; }
        header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item-has-children a:after {
          -webkit-transform: rotate(270deg);
                  transform: rotate(270deg);
          color: #ff9731;
          position: absolute;
          right: 12px; }
        header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item-has-children .sub-menu {
          position: absolute;
          left: -24px;
          z-index: -1;
          background: #ff9731;
          height: 100vh;
          width: 270px;
          top: 0;
          -webkit-transition: all .3s;
                  transition: all .3s;
          padding-top: 165px; }
          @media only screen and (max-width: 1064px) {
            header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item-has-children .sub-menu {
              position: static;
              width: 100%;
              padding-top: 0;
              margin: 0;
              display: none; }
              header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item-has-children .sub-menu.active {
                display: block;
                height: auto; } }
          header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item-has-children .sub-menu li:hover {
            background: none; }
          header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item-has-children .sub-menu li a {
            color: #fff;
            font-size: 14px; }
          header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item-has-children .sub-menu .title {
            border-bottom: 2px solid #fff;
            border-bottom: 2px solid #fff; }
          header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item-has-children .sub-menu .multi-menu {
            margin-top: -162px; }
            header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item-has-children .sub-menu .multi-menu.none a {
              pointer-events: none !important;
              cursor: default !important; }
            @media only screen and (max-width: 1064px) {
              header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item-has-children .sub-menu .multi-menu {
                margin-top: 0px; } }
          header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item-has-children .sub-menu .menu_title.none a {
            pointer-events: none;
            cursor: none; }
          header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item-has-children .sub-menu .small-sub {
            border: none;
            height: 30px;
            padding-left: 16px; }
            header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item-has-children .sub-menu .small-sub-first {
              margin-top: 16px; }
              @media only screen and (max-width: 1064px) {
                header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item-has-children .sub-menu .small-sub-first {
                  margin-top: 0; } }
            header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item-has-children .sub-menu .small-sub-last {
              margin-bottom: 24px; }
              @media only screen and (max-width: 1064px) {
                header.site-header .storefront-primary-navigation .main-navigation .primary-navigation .menu .menu-item-has-children .sub-menu .small-sub-last {
                  margin-bottom: 12px; } }
  header.site-header .donate_btn_wrap {
    position: fixed;
    top: 10px;
    right: -20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; }
    @media screen and (max-height: 700px) {
      header.site-header .donate_btn_wrap {
        right: -26px;
      }
      header.site-header .donate_btn_wrap a img{
        width: 60px;
      }
      header.site-header .donate_btn_wrap .cart_icon{
        right: -10px;
      }
    }

    @media only screen and (max-width: 480px) {
      header.site-header .donate_btn_wrap {
        z-index: 200;
        top: 15px;
        right: 27px; }
        header.site-header .donate_btn_wrap .link_head_btn {
          display: none; }
        header.site-header .donate_btn_wrap .view_cart_btn {
          width: 40px;
          height: 20px; }
          header.site-header .donate_btn_wrap .view_cart_btn .cart_widget {
            top: 0;
            left: 0; }
            header.site-header .donate_btn_wrap .view_cart_btn .cart_widget .widget_shopping_cart_content {
              display: none; }
            header.site-header .donate_btn_wrap .view_cart_btn .cart_widget .cart .count {
              left: 0;
              top: 0; }
        header.site-header .donate_btn_wrap .cart_icon {
          display: none; } }

.storefront-breadcrumb {
  margin-left: 330px;
  padding: 30px 0;
  box-sizing: border-box;
  max-width: 870px;
  margin-bottom: 0px; }

.login_btn, .mypage {
  border: none !important;
  margin-top: 24px; }
  @media only screen and (max-width: 1064px) {
    .login_btn, .mypage {
      margin-bottom: 80px; } }
  .login_btn:hover, .mypage:hover {
    background: none; }
    .login_btn:hover a, .mypage:hover a {
      color: #95816c; }
  .login_btn a, .mypage a {
    border: 1px solid #95816c;
    border-radius: 5px;
    height: 44px !important;
    width: 220px !important;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; }

.login .login_btn {
  display: none; }

.not_login .mypage {
  display: none; }

.breadcrumb {
  max-width: 1088px;
  margin: 40px auto 70px auto;
  width: 84%; }
  @media only screen and (max-width: 480px) {
    .breadcrumb {
      margin: 90px auto -40px auto; } }

.breadcrumb_group {
  margin: 40px auto 70px auto; }
  @media only screen and (max-width: 480px) {
    .breadcrumb_group {
      display: none; } }

.breadcrumb ul, .breadcrumb_group ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
  .breadcrumb ul li, .breadcrumb_group ul li {
    font-size: 10px;
    margin-right: 4px;
    line-height: 1.7; }
    .breadcrumb ul li:after, .breadcrumb_group ul li:after {
      content: ">";
      margin-left: 4px;
      color: #ff8731; }
    .breadcrumb ul li:last-child::after, .breadcrumb_group ul li:last-child::after {
      content: ""; }
    .breadcrumb ul li a, .breadcrumb_group ul li a {
      font-size: 10px;
      color: #ff8731; }

footer.site-footer {
  background: #90b023;
  margin-left: 258px;
  padding: 48px; }
  @media only screen and (max-width: 1064px) {
    footer.site-footer {
      margin-left: 0; } }
  footer.site-footer .banner {
    text-align: center;
    margin-bottom: 48px; }
    @media only screen and (max-width: 480px) {
      footer.site-footer .banner {
        margin-bottom: 16px; } }
    footer.site-footer .banner a {
      display: inline-block;
      margin: 0 auto; }
  footer.site-footer .footer_logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; }
    footer.site-footer .footer_logo a {
      display: inline-block; }
  @media only screen and (max-width: 1064px) {
    footer.site-footer .global-navi {
      display: none; } }
  @media only screen and (max-width: 480px) {
    footer.site-footer .global-navi {
      display: none; } }
  footer.site-footer .global-navi a {
    color: #fff;
    font-size: 14px; }
  footer.site-footer .global-navi .menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-align-content: flex-start;
        -ms-flex-line-pack: start;
            align-content: flex-start;
    height: 534px;
    width: 94%;
    margin: 0 auto;
    -webkit-align-content: space-between;
        -ms-flex-line-pack: justify;
            align-content: space-between; }
    footer.site-footer .global-navi .menu .menu-item {
      -webkit-box-flex: 1;
      -webkit-flex: 1 1 20%;
          -ms-flex: 1 1 20%;
              flex: 1 1 20%; }
    footer.site-footer .global-navi .menu .menu-item.menu-item-has-children {
      display: block !important;
    }
    footer.site-footer .global-navi .menu .menu-item-type-custom.none a {
      font-weight: bold;
      pointer-events: none;
      margin-top: 8px;
      display: block; }
    footer.site-footer .global-navi .menu .menu-item-type-custom.active a {
      pointer-events: all; }
    footer.site-footer .global-navi .menu .menu-item-type-post_type a {
      pointer-events: all !important;
      font-weight: normal !important;
      margin-top: 0px !important; }
    footer.site-footer .global-navi .menu .sub-menu {
      margin-bottom: 16px; }
      footer.site-footer .global-navi .menu .sub-menu .menu-item {
        width: 100%; }
      footer.site-footer .global-navi .menu .sub-menu .small-sub {
        margin-left: 16px; }
  footer.site-footer .sns_foot {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    @media only screen and (max-width: 480px) {
      footer.site-footer .sns_foot {
        margin-bottom: 16px; } }
    footer.site-footer .sns_foot a {
      margin: 0 12px; }
      @media only screen and (max-width: 480px) {
        footer.site-footer .sns_foot a img {
          width: 28px;
          height: auto; } }
  footer.site-footer .foot_nav {
    margin: 60px auto 40px auto; }
    @media only screen and (max-width: 480px) {
      footer.site-footer .foot_nav {
        margin: 24px auto; } }
    footer.site-footer .foot_nav ul {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      width: 480px;
      margin: 0 auto; }
      @media only screen and (max-width: 480px) {
        footer.site-footer .foot_nav ul {
          width: 100%;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-direction: column;
              -ms-flex-direction: column;
                  flex-direction: column;
          -webkit-box-pack: justify;
          -webkit-justify-content: space-between;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center; } }
      footer.site-footer .foot_nav ul li a {
        color: #fff; }
      footer.site-footer .foot_nav ul li:last-child {
        display: none; }
        @media only screen and (max-width: 480px) {
          footer.site-footer .foot_nav ul li:last-child {
            display: block; } }

.storefront-handheld-footer-bar {
  display: none; }

.donate_btn_sp {
  display: none;
  position: fixed;
  bottom: 10px;
  right: -200px;
  -webkit-transition: all .5s;
          transition: all .5s; }
  @media only screen and (max-width: 480px) {
    .donate_btn_sp {
      display: block; } }
  .donate_btn_sp.active {
    box-shadow: 0px 0px 7px #4e4e4e;
        border-radius: 10px;
    right: 10px;
    -webkit-transition: all .5s;
            transition: all .5s; }
  .donate_btn_sp a img {
    width: 110px;
    height: auto; }

.home .breadcrumb {
  display: none; }

#primary.content-top {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0px !important; }
  #primary.content-top.active {
    margin-left: 258px; }
  #primary.content-top .mainvisual {
    display: block; }
    @media only screen and (max-width: 480px) {
      #primary.content-top .mainvisual {
        display: none; } }
  #primary.content-top .mainvisual_sp {
    display: none; }
    @media only screen and (max-width: 480px) {
      #primary.content-top .mainvisual_sp {
        display: block; } }

.content-top .donated_value {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 14px auto 24px auto;
  width: 594px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  @media only screen and (max-width: 1064px) {
    .content-top .donated_value {
      width: 100%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; } }
  .content-top .donated_value::before {
    content: url("../images/donatebox.png");
    margin-right: 22px; }
    @media only screen and (max-width: 480px) {
      .content-top .donated_value::before {
        display: none; } }
  .content-top .donated_value .text {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .content-top .donated_value .text p {
      color: #90b023;
      text-align: center; }
      .content-top .donated_value .text p.big {
        font-size: 30px; }
        @media only screen and (max-width: 480px) {
          .content-top .donated_value .text p.big {
            font-size: 20px;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
                -ms-flex-direction: column;
                    flex-direction: column; } }
        @media only screen and (max-width: 480px) {
          .content-top .donated_value .text p.big span {
            font-size: 29px;
            line-height: 46px; } }
      @media only screen and (max-width: 480px) {
        .content-top .donated_value .text p.small {
          font-size: 11px; } }

.content-top .read {
  background: #90b023;
  padding: 65px 160px; }
  @media only screen and (max-width: 1064px) {
    .content-top .read {
      padding: 65px; } }
  .content-top .read p {
    color: #fff;
    font-size: 20px;
    line-height: 2;
    font-weight: bold;
    max-width: 790px;
    position: relative;
    margin: 0 auto; }
    @media only screen and (max-width: 1064px) {
      .content-top .read p {
        width: 100%; } }
    @media only screen and (max-width: 480px) {
      .content-top .read p {
        font-size: 14px; } }
    .content-top .read p::before {
      content: url("../images/figure_icon.png");
      top: -12px;
      left: -36px;
      position: absolute; }
    .content-top .read p::after {
      position: absolute;
      content: url("../images/figure_icon.png");
      bottom: -12px;
      right: -36px;
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg); }
  .content-top .read a {
    width: 250px;
    height: 48px;
    background: #fff;
    color: #90b023;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 32px auto 0 auto; }
    .content-top .read a::before {
      content: url("../images/arrow_green.png");
      margin-right: 8px; }

.content-top .news_wrap {
  padding: 80px 80px 0 80px; }
  @media only screen and (max-width: 480px) {
    .content-top .news_wrap {
      padding: 60px 20px 0 20px; } }
  .content-top .news_wrap h2 {
    font-family: "fot-tsukubrdgothic-std";
    font-size: 29px;
    font-weight: bold;
    color: #333;
    height: 80px;
    position: relative;
    margin-bottom: 34px;
    line-height: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    @media only screen and (max-width: 480px) {
      .content-top .news_wrap h2 {
        font-size: 24px; } }
    .content-top .news_wrap h2 span {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; }
      .content-top .news_wrap h2 span:after {
        content: "";
        height: 2px;
        margin-top: 16px;
        background-color: #90b023;
        width: 120px;
        display: block; }
    .content-top .news_wrap h2:before {
      content: url("../images/news_icon.png");
      display: block;
      float: left;
      margin-right: 24px; }
    @media only screen and (max-width: 480px) {
      .content-top .news_wrap h2 {
        margin-bottom: 24px; } }
.topic_wrap{
  margin-bottom: 80px;
}
.content-top .topic_wrap {
  padding: 80px 80px 0 80px; }
  @media only screen and (max-width: 480px) {
    .content-top .topic_wrap {
      padding: 40px 20px 0 20px;
      margin-bottom: 40px;} }
  .content-top .topic_wrap h2 {
    font-family: "fot-tsukubrdgothic-std";
    font-size: 29px;
    font-weight: bold;
    color: #333;
    height: 80px;
    position: relative;
    margin-bottom: 34px;
    line-height: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    @media only screen and (max-width: 480px) {
      .content-top .topic_wrap h2 {
        font-size: 24px; } }
    .content-top .topic_wrap h2 span {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; }
      .content-top .topic_wrap h2 span:after {
        content: "";
        height: 2px;
        margin-top: 16px;
        background-color: #90b023;
        width: 120px;
        display: block; }
    .content-top .topic_wrap h2:before {
      content: url("../images/news_icon.png");
      display: block;
      float: left;
      margin-right: 24px; }
    @media only screen and (max-width: 480px) {
      .content-top .topic_wrap h2 {
        margin-bottom: 24px; } }

.content-top .news_wrap .news_head, .content-top .topic_wrap .news_head {
  max-width: 980px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media only screen and (max-width: 480px) {
    .content-top .news_wrap .news_head, .content-top .topic_wrap .news_head {
      width: 100%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; } }
  .content-top .news_wrap .news_head a, .content-top .topic_wrap .news_head a {
    width: 160px;
    height: 76px;
    border: 1px solid #b6b6b6;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    color: #666; }
    @media only screen and (max-width: 480px) {
      .content-top .news_wrap .news_head a, .content-top .topic_wrap .news_head a {
        height: 50px;
        display: none; } }
    .content-top .news_wrap .news_head a:before, .content-top .topic_wrap .news_head a:before {
      content: url("../images/arrow.png");
      display: block;
      margin-right: 10px; }

.content-top .news_wrap .news_list, .content-top .topic_wrap .news_list {
  max-width: 980px;
  margin: 0 auto;
  border-bottom: 1px solid #b6b6b6; }
  @media only screen and (max-width: 480px) {
    .content-top .news_wrap .news_list, .content-top .topic_wrap .news_list {
      width: 100%;
      border-bottom: 1px solid #b6b6b6; } }
  .content-top .news_wrap .news_list .news_block, .content-top .topic_wrap .news_list .news_block {
    border-top: 1px solid #b6b6b6;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: 64px;
    position: relative; }
    @media only screen and (max-width: 480px) {
      .content-top .news_wrap .news_list .news_block, .content-top .topic_wrap .news_list .news_block {
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
        padding: 12px 0;
        height: auto; }
        .content-top .news_wrap .news_list .news_block:after, .content-top .topic_wrap .news_list .news_block:after {
          content: url("../images/arrow.png");
          position: absolute;
          right: 16px;
          top: 50%;
          margin-top: -4px; } }
    .content-top .news_wrap .news_list .news_block .date, .content-top .topic_wrap .news_list .news_block .date {
      font-size: 14px;
      color: #b6b6b6;
      width: 92px; }
    .content-top .news_wrap .news_list .news_block .category, .content-top .topic_wrap .news_list .news_block .category {
      color: #b6b6b6;
      border: 1px solid #b6b6b6;
      width: 114px;
      height: 32px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin: 0 16px; }
      .content-top .news_wrap .news_list .news_block .category a, .content-top .topic_wrap .news_list .news_block .category a {
        color: #b6b6b6; }
        @media only screen and (max-width: 480px) {
          .content-top .news_wrap .news_list .news_block .category a, .content-top .topic_wrap .news_list .news_block .category a {
            font-size: 12px;
            width: auto;
            height: auto;
            padding: 6px 8px;
            line-height: 1; } }
    .content-top .news_wrap .news_list .news_block .permalink, .content-top .topic_wrap .news_list .news_block .permalink {
      color: #666;
      position: relative;
      -webkit-box-flex: 0;
      -webkit-flex: 0 1 100%;
          -ms-flex: 0 1 100%;
              flex: 0 1 100%;
      padding-right: 34px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
      @media only screen and (max-width: 480px) {
        .content-top .news_wrap .news_list .news_block .permalink, .content-top .topic_wrap .news_list .news_block .permalink {
          width: 100%;
          padding: 6px 0;
          -webkit-box-flex: 0;
          -webkit-flex: 0 1 88%;
              -ms-flex: 0 1 88%;
                  flex: 0 1 88%; } }
      .content-top .news_wrap .news_list .news_block .permalink:after, .content-top .topic_wrap .news_list .news_block .permalink:after {
        content: url("../images/arrow.png");
        position: absolute;
        right: 16px;
        top: 0; }
        @media only screen and (max-width: 480px) {
          .content-top .news_wrap .news_list .news_block .permalink:after, .content-top .topic_wrap .news_list .news_block .permalink:after {
            display: none; } }

.content-top .news_wrap .sp, .content-top .topic_wrap .sp {
  display: none; }
  @media only screen and (max-width: 480px) {
    .content-top .news_wrap .sp, .content-top .topic_wrap .sp {
      width: 160px;
      height: 58px;
      border: 1px solid #b6b6b6;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      position: relative;
      color: #666;
      margin: 20px auto 0 auto; }
      .content-top .news_wrap .sp:before, .content-top .topic_wrap .sp:before {
        content: url("../images/arrow.png");
        display: block;
        margin-right: 10px; } }

.content-top .campaing_banner {
  max-width: 980px;
  margin: 0 auto 90px auto; }
  @media only screen and (max-width: 1380px) {
    .content-top .campaing_banner {
      width: calc(100% - 160px); } }
  @media only screen and (max-width: 480px) {
    .content-top .campaing_banner {
      width: 100%;
      padding: 0 20px; } }
  .content-top .campaing_banner a {
    -webkit-transition: .2s;
            transition: .2s;
    display: block; }
    .content-top .campaing_banner a:hover {
      opacity: 0.8;
      -webkit-transition: .2s;
              transition: .2s; }
    .content-top .campaing_banner a .pc {
      display: block; }
      @media only screen and (max-width: 480px) {
        .content-top .campaing_banner a .pc {
          display: none; } }
    .content-top .campaing_banner a .sp {
      display: none; }
      @media only screen and (max-width: 480px) {
        .content-top .campaing_banner a .sp {
          display: block; } }
  .content-top .usage_report_wrap a.sp, .content-top .group_report_wrap a.sp {
    width: 160px;
    border: 1px solid #b6b6b6;
    display: none;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    color: #666; }
    @media only screen and (max-width: 480px) {
      .content-top .usage_report_wrap a.sp, .content-top .group_report_wrap a.sp {
        -webkit-align-self: flex-end;
            -ms-flex-item-align: end;
                align-self: flex-end;
        width: 160px;
        height: 58px;
        padding: 8px 18px;
        margin: 0px auto;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex; } }
    .content-top .usage_report_wrap a.sp:before, .content-top .group_report_wrap a.sp:before {
      content: url("../images/arrow.png");
      display: block;
      margin-right: 10px; }
  .content-top .usage_report_wrap .usage_report_head, .content-top .group_report_wrap .usage_report_head {
    max-width: 980px;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media only screen and (max-width: 480px) {
      .content-top .usage_report_wrap .usage_report_head, .content-top .group_report_wrap .usage_report_head {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column; } }
    .content-top .usage_report_wrap .usage_report_head h2, .content-top .group_report_wrap .usage_report_head h2 {
      font-family: "fot-tsukubrdgothic-std";
      font-size: 29px;
      font-weight: bold;
      color: #333;
      height: 80px;
      position: relative;
      margin-bottom: 34px;
      line-height: 1;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
      @media only screen and (max-width: 480px) {
        .content-top .usage_report_wrap .usage_report_head h2, .content-top .group_report_wrap .usage_report_head h2 {
          font-size: 24px; } }
      .content-top .usage_report_wrap .usage_report_head h2 span, .content-top .group_report_wrap .usage_report_head h2 span {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column; }
        .content-top .usage_report_wrap .usage_report_head h2 span:after, .content-top .group_report_wrap .usage_report_head h2 span:after {
          content: "";
          height: 2px;
          margin-top: 16px;
          background-color: #90b023;
          width: 120px;
          display: block; }
      .content-top .usage_report_wrap .usage_report_head h2:before, .content-top .group_report_wrap .usage_report_head h2:before {
        content: "";
        background-image: url("../images/icon_group.png");
        display: block;
        width: 70px;
        height: 70px;
        background-size: cover;
        float: left;
        margin-right: 8px; }
      @media only screen and (max-width: 480px) {
        .content-top .usage_report_wrap .usage_report_head h2, .content-top .group_report_wrap .usage_report_head h2 {
          margin-bottom: 12px; }
          .content-top .usage_report_wrap .usage_report_head h2 span, .content-top .group_report_wrap .usage_report_head h2 span {
            font-size: 18px; } }
    .content-top .usage_report_wrap .usage_report_head a, .content-top .group_report_wrap .usage_report_head a {
      width: 140px;
      height: 60px;
      border: 1px solid #b6b6b6;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      position: relative;
      color: #666; }
      @media only screen and (max-width: 480px) {
        .content-top .usage_report_wrap .usage_report_head a, .content-top .group_report_wrap .usage_report_head a {
          -webkit-align-self: flex-end;
              -ms-flex-item-align: end;
                  align-self: flex-end;
          height: auto;
          width: auto;
          padding: 8px 18px;
          margin-bottom: 24px;
          display: none; } }
      .content-top .usage_report_wrap .usage_report_head a:before, .content-top .group_report_wrap .usage_report_head a:before {
        content: url("../images/arrow.png");
        display: block;
        margin-right: 10px; }
  .content-top .usage_report_wrap .group_report_head, .content-top .group_report_wrap .group_report_head {
    max-width: 980px;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media only screen and (max-width: 480px) {
      .content-top .usage_report_wrap .group_report_head, .content-top .group_report_wrap .group_report_head {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column; } }
    .content-top .usage_report_wrap .group_report_head h2, .content-top .group_report_wrap .group_report_head h2 {
      font-family: "fot-tsukubrdgothic-std";
      font-size: 29px;
      font-weight: bold;
      color: #333;
      height: 80px;
      position: relative;
      margin-bottom: 34px;
      line-height: 1;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
      @media only screen and (max-width: 480px) {
        .content-top .usage_report_wrap .group_report_head h2, .content-top .group_report_wrap .group_report_head h2 {
          font-size: 24px; } }
      .content-top .usage_report_wrap .group_report_head h2 span, .content-top .group_report_wrap .group_report_head h2 span {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column; }
        .content-top .usage_report_wrap .group_report_head h2 span:after, .content-top .group_report_wrap .group_report_head h2 span:after {
          content: "";
          height: 2px;
          margin-top: 16px;
          background-color: #90b023;
          width: 120px;
          display: block; }
      .content-top .usage_report_wrap .group_report_head h2:before, .content-top .group_report_wrap .group_report_head h2:before {
        content: "";
        background-image: url("../images/icon_group.png");
        display: block;
        width: 70px;
        height: 70px;
        background-size: cover;
        float: left;
        margin-right: 8px; }
      @media only screen and (max-width: 480px) {
        .content-top .usage_report_wrap .group_report_head h2, .content-top .group_report_wrap .group_report_head h2 {
          margin-bottom: 12px; }
          .content-top .usage_report_wrap .group_report_head h2 span, .content-top .group_report_wrap .group_report_head h2 span {
            font-size: 18px; } }
    .content-top .usage_report_wrap .group_report_head a, .content-top .group_report_wrap .group_report_head a {
      width: 140px;
      height: 60px;
      border: 1px solid #b6b6b6;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      position: relative;
      color: #666; }
      @media only screen and (max-width: 480px) {
        .content-top .usage_report_wrap .group_report_head a, .content-top .group_report_wrap .group_report_head a {
          -webkit-align-self: flex-end;
              -ms-flex-item-align: end;
                  align-self: flex-end;
          height: auto;
          width: auto;
          padding: 8px 18px;
          margin-bottom: 24px;
          display: none; } }
      .content-top .usage_report_wrap .group_report_head a:before, .content-top .group_report_wrap .group_report_head a:before {
        content: url("../images/arrow.png");
        display: block;
        margin-right: 10px; }
  .content-top .usage_report_wrap .media_head, .content-top .group_report_wrap .media_head {
    max-width: 980px;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media only screen and (max-width: 480px) {
      .content-top .usage_report_wrap .media_head, .content-top .group_report_wrap .media_head {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column; } }
    .content-top .usage_report_wrap .media_head h2, .content-top .group_report_wrap .media_head h2 {
      font-family: "fot-tsukubrdgothic-std";
      font-size: 29px;
      font-weight: bold;
      color: #333;
      height: 80px;
      position: relative;
      margin-bottom: 34px;
      line-height: 1;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
      @media only screen and (max-width: 480px) {
        .content-top .usage_report_wrap .media_head h2, .content-top .group_report_wrap .media_head h2 {
          font-size: 24px; } }
      .content-top .usage_report_wrap .media_head h2 span, .content-top .group_report_wrap .media_head h2 span {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column; }
        .content-top .usage_report_wrap .media_head h2 span:after, .content-top .group_report_wrap .media_head h2 span:after {
          content: "";
          height: 2px;
          margin-top: 16px;
          background-color: #90b023;
          width: 120px;
          display: block; }
      .content-top .usage_report_wrap .media_head h2:before, .content-top .group_report_wrap .media_head h2:before {
        content: "";
        background-image: url("../images/icon_group.png");
        display: block;
        width: 70px;
        height: 70px;
        background-size: cover;
        float: left;
        margin-right: 8px; }
      @media only screen and (max-width: 480px) {
        .content-top .usage_report_wrap .media_head h2, .content-top .group_report_wrap .media_head h2 {
          margin-bottom: 12px; }
          .content-top .usage_report_wrap .media_head h2 span, .content-top .group_report_wrap .media_head h2 span {
            font-size: 18px; } }
    .content-top .usage_report_wrap .media_head a, .content-top .group_report_wrap .media_head a {
      width: 160px;
      height: 76px;
      border: 1px solid #b6b6b6;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      position: relative;
      color: #666; }
      @media only screen and (max-width: 480px) {
        .content-top .usage_report_wrap .media_head a, .content-top .group_report_wrap .media_head a {
          -webkit-align-self: flex-end;
              -ms-flex-item-align: end;
                  align-self: flex-end;
          height: auto;
          width: auto;
          padding: 8px 18px;
          margin-bottom: 24px;
          display: none; } }
      .content-top .usage_report_wrap .media_head a:before, .content-top .group_report_wrap .media_head a:before {
        content: url("../images/arrow.png");
        display: block;
        margin-right: 10px; }
  .content-top .usage_report_wrap .interview_head, .content-top .group_report_wrap .interview_head {
    max-width: 980px;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media only screen and (max-width: 480px) {
      .content-top .usage_report_wrap .interview_head, .content-top .group_report_wrap .interview_head {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column; } }
    .content-top .usage_report_wrap .interview_head h2, .content-top .group_report_wrap .interview_head h2 {
      font-family: "fot-tsukubrdgothic-std";
      font-size: 29px;
      font-weight: bold;
      color: #333;
      height: 80px;
      position: relative;
      margin-bottom: 34px;
      line-height: 1;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
      @media only screen and (max-width: 480px) {
        .content-top .usage_report_wrap .interview_head h2, .content-top .group_report_wrap .interview_head h2 {
          font-size: 24px; } }
      .content-top .usage_report_wrap .interview_head h2 span, .content-top .group_report_wrap .interview_head h2 span {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column; }
        .content-top .usage_report_wrap .interview_head h2 span:after, .content-top .group_report_wrap .interview_head h2 span:after {
          content: "";
          height: 2px;
          margin-top: 16px;
          background-color: #90b023;
          width: 120px;
          display: block; }
      .content-top .usage_report_wrap .interview_head h2:before, .content-top .group_report_wrap .interview_head h2:before {
        content: "";
        background-image: url("../images/icon_group.png");
        display: block;
        width: 70px;
        height: 70px;
        background-size: cover;
        float: left;
        margin-right: 8px; }
      @media only screen and (max-width: 480px) {
        .content-top .usage_report_wrap .interview_head h2, .content-top .group_report_wrap .interview_head h2 {
          margin-bottom: 12px; }
          .content-top .usage_report_wrap .interview_head h2 span, .content-top .group_report_wrap .interview_head h2 span {
            font-size: 18px; } }
    .content-top .usage_report_wrap .interview_head a, .content-top .group_report_wrap .interview_head a {
      width: 160px;
      height: 76px;
      border: 1px solid #b6b6b6;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      position: relative;
      color: #666; }
      @media only screen and (max-width: 480px) {
        .content-top .usage_report_wrap .interview_head a, .content-top .group_report_wrap .interview_head a {
          -webkit-align-self: flex-end;
              -ms-flex-item-align: end;
                  align-self: flex-end;
          height: auto;
          width: auto;
          padding: 8px 18px;
          margin-bottom: 24px;
          display: none; } }
      .content-top .usage_report_wrap .interview_head a:before, .content-top .group_report_wrap .interview_head a:before {
        content: url("../images/arrow.png");
        display: block;
        margin-right: 10px; }

.content-top .col2_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 980px;
  box-sizing: border-box;
  margin: 0 auto 90px auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media only screen and (max-width: 1380px) {
    .content-top .col2_wrap {
      width: calc(100% - 160px);
      margin-bottom: 60px;} }
  @media only screen and (max-width: 480px) {
    .content-top .col2_wrap {
      width: 100%;
      padding: 0 20px;
      margin-bottom: 0px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; } }
  @media only screen and (max-width: 480px) {
    .content-top .col2_wrap .interview_wrap {
      margin-bottom: 40px; } }
  .content-top .col2_wrap .interview_wrap .interview_head h2 {
    font-family: "fot-tsukubrdgothic-std";
    font-size: 29px;
    font-weight: bold;
    color: #333;
    height: 80px;
    position: relative;
    margin-bottom: 34px;
    line-height: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important; }
    @media only screen and (max-width: 480px) {
      .content-top .col2_wrap .interview_wrap .interview_head h2 {
        font-size: 24px; } }
    .content-top .col2_wrap .interview_wrap .interview_head h2 span {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; }
      .content-top .col2_wrap .interview_wrap .interview_head h2 span:after {
        content: "";
        height: 2px;
        margin-top: 16px;
        background-color: #90b023;
        width: 120px;
        display: block; }
    .content-top .col2_wrap .interview_wrap .interview_head h2:before {
      content: url(../images/news_icon.png);
      display: block;
      float: left;
      margin-right: 24px; }
      @media only screen and (max-width: 480px) {
        .content-top .col2_wrap .interview_wrap .interview_head h2:before {
          content: "";
          width: 52px;
          height: 52px;
          background: url(../images/news_icon.png);
          display: block;
          background-repeat: no-repeat;
          background-position: center;
          background-size: contain;
          float: left;
          margin-right: 8px; } }
    @media only screen and (max-width: 480px) {
      .content-top .col2_wrap .interview_wrap .interview_head h2 {
        margin-bottom: 12px; }
        .content-top .col2_wrap .interview_wrap .interview_head h2 span {
          font-size: 18px; } }
  .content-top .col2_wrap .media_wrap .media_head h2 {
    font-family: "fot-tsukubrdgothic-std";
    font-size: 29px;
    font-weight: bold;
    color: #333;
    height: 80px;
    position: relative;
    margin-bottom: 34px;
    line-height: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important; }
    @media only screen and (max-width: 480px) {
      .content-top .col2_wrap .media_wrap .media_head h2 {
        font-size: 24px; } }
    .content-top .col2_wrap .media_wrap .media_head h2 span {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; }
      .content-top .col2_wrap .media_wrap .media_head h2 span:after {
        content: "";
        height: 2px;
        margin-top: 16px;
        background-color: #90b023;
        width: 120px;
        display: block; }
    .content-top .col2_wrap .media_wrap .media_head h2:before {
      content: "";
      background-image: url("../images/icon_about_top.png?=v2");
      display: block;
      width: 64px;
      height: 64px;
      background-size: cover;
      float: left;
      margin-right: 24px; }
      @media only screen and (max-width: 480px) {
        .content-top .col2_wrap .media_wrap .media_head h2:before {
          width: 52px;
          height: 52px;
          margin-right: 8px; } }
    @media only screen and (max-width: 480px) {
      .content-top .col2_wrap .media_wrap .media_head h2 {
        margin-bottom: 12px; }
        .content-top .col2_wrap .media_wrap .media_head h2 span {
          font-size: 18px; } }
  .content-top .col2_wrap .media_wrap, .content-top .col2_wrap .interview_wrap {
    width: 460px;
    overflow: hidden; }
    @media only screen and (max-width: 1380px) {
      .content-top .col2_wrap .media_wrap, .content-top .col2_wrap .interview_wrap {
        width: 48%; } }
    @media only screen and (max-width: 480px) {
      .content-top .col2_wrap .media_wrap, .content-top .col2_wrap .interview_wrap {
        width: 100%; } }
    .content-top .col2_wrap .media_wrap .group_report_list, .content-top .col2_wrap .interview_wrap .group_report_list {
      border-top: 1px solid #b6b6b6; }
    .content-top .col2_wrap .media_wrap .archive_block, .content-top .col2_wrap .interview_wrap .archive_block {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      padding: 6px 0;
      border-bottom: 1px solid #b6b6b6;
      -webkit-transition: all .2s;
              transition: all .2s; }
      .content-top .col2_wrap .media_wrap .archive_block:hover, .content-top .col2_wrap .interview_wrap .archive_block:hover {
        opacity: 0.8;
        -webkit-transition: all .2s;
                transition: all .2s; }
      .content-top .col2_wrap .media_wrap .archive_block .text_block, .content-top .col2_wrap .interview_wrap .archive_block .text_block {
        margin-left: 20px;
        -webkit-box-flex: 1;
        -webkit-flex: 1;
            -ms-flex: 1;
                flex: 1;
        margin-right: 20px; }
        .content-top .col2_wrap .media_wrap .archive_block .text_block .category, .content-top .col2_wrap .interview_wrap .archive_block .text_block .category {
          color: #808080;
          border: 1px solid #808080;
          border-radius: 5px;
          padding: 2px 4px;
          box-sizing: border-box;
          font-size: 12px;
          display: inline-block; }
        .content-top .col2_wrap .media_wrap .archive_block .text_block .title, .content-top .col2_wrap .interview_wrap .archive_block .text_block .title {
          color: #666666;
          font-size: 14px;
          font-weight: bold;
          margin: 6px 0;
          line-height: 1.2; }
        .content-top .col2_wrap .media_wrap .archive_block .text_block .date, .content-top .col2_wrap .interview_wrap .archive_block .text_block .date {
          font-size: 10px;
          color: #acacac; }
    .content-top .col2_wrap .media_wrap .thumbnail, .content-top .col2_wrap .interview_wrap .thumbnail {
      width: 64px;
      height: 68px;
      overflow: hidden;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center; }
      .content-top .col2_wrap .media_wrap .thumbnail.tatenaga img, .content-top .col2_wrap .interview_wrap .thumbnail.tatenaga img {
        width: 100%;
        height: auto; }
      .content-top .col2_wrap .media_wrap .thumbnail img, .content-top .col2_wrap .interview_wrap .thumbnail img {
        height: 100%;
        width: auto;
        max-width: none; }

.content-top .collabo_wrap {
  width: 100%;
  background-image: url("../images/colabo_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 740px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 60px;
  /* ------------------------------
       CLEARFIX ELEMENTS
    ------------------------------ */ }
  @media only screen and (max-width: 480px) {
    .content-top .collabo_wrap {
      height: 480px; } }
  .content-top .collabo_wrap h2 {
    padding: 0 20px; }
  .content-top .collabo_wrap .loopSliderWrap {
    top: 0;
    left: 0;
    height: 300px;
    overflow: hidden;
    position: absolute; }
  .content-top .collabo_wrap .loopSlider {
    margin: 0 auto;
    width: 980px;
    height: 240px;
    text-align: left;
    position: relative;
    overflow: hidden; }
  .content-top .collabo_wrap .loopSlider ul {
    height: 300px;
    float: left;
    overflow: hidden; }
  .content-top .collabo_wrap .loopSlider ul li {
    width: 232px;
    height: 200px;
    float: left;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .content-top .collabo_wrap .loopSlider ul li img {
      width: 200px;
      height: auto;
      max-height: 200px; }
  .content-top .collabo_wrap .loopSliderWrap:after {
    content: "";
    display: none;
    clear: none; }

.content-top .company_name {
  max-width: 980px;
  text-align: center;
  margin-bottom: 24px; }

.kaigai_wrap {
  background: #f0f4ec;
  margin-top: 80px; }
  .kaigai_wrap .kaigai_inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 78px 0; }
    @media only screen and (max-width: 480px) {
      .kaigai_wrap .kaigai_inner {
        width: 100%; } }
    .kaigai_wrap .kaigai_inner h3 {
      font-size: 24px;
      text-align: center;
      color: #666;
      margin-bottom: 28px;
      font-weight: bold; }
      .kaigai_wrap .kaigai_inner h3 span {
        display: block;
        font-size: 12px;
        margin-top: 16px; }
    .kaigai_wrap .kaigai_inner .content {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      margin-bottom: 28px; }
      @media only screen and (max-width: 480px) {
        .kaigai_wrap .kaigai_inner .content {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-direction: column;
              -ms-flex-direction: column;
                  flex-direction: column;
          padding: 0 20px;
          -webkit-box-pack: center;
          -webkit-justify-content: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center; } }
      .kaigai_wrap .kaigai_inner .content .img {
        width: 145px;
        -webkit-box-flex: 1;
        -webkit-flex: 1 0 auto;
            -ms-flex: 1 0 auto;
                flex: 1 0 auto; }
        @media only screen and (max-width: 480px) {
          .kaigai_wrap .kaigai_inner .content .img {
            width: 100%;
            margin-bottom: 8px; } }
        .kaigai_wrap .kaigai_inner .content .img img {
          width: 100%; }
      .kaigai_wrap .kaigai_inner .content p {
        font-size: 16px;
        margin-left: 28px; }
        @media only screen and (max-width: 480px) {
          .kaigai_wrap .kaigai_inner .content p {
            margin-left: 0; } }
  .kaigai_wrap .detail_link_style {
    width: 250px; }

.service_wrap {
  margin-top: 80px; }
  .service_wrap h3 {
    color: #666;
    font-size: 29px;
    font-weight: bold;
    position: relative;
    height: 54px;
    text-align: center; }
    .service_wrap h3::after {
      content: "";
      width: 136px;
      height: 4px;
      background-color: #90b023;
      display: block;
      position: absolute;
      bottom: 0;
      left: 50%;
      margin-left: -68px; }
  .service_wrap .service_inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 78px 0; }
    @media only screen and (max-width: 480px) {
      .service_wrap .service_inner {
        width: 100%;
        padding: 24px 0; } }
    .service_wrap .service_inner .banner_wrap {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
      @media only screen and (max-width: 480px) {
        .service_wrap .service_inner .banner_wrap {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-direction: column;
              -ms-flex-direction: column;
                  flex-direction: column; } }
      .service_wrap .service_inner .banner_wrap a {
        margin: 0 20px; }
        @media only screen and (max-width: 480px) {
          .service_wrap .service_inner .banner_wrap a {
            margin: 12px 0; } }

.movie_wrap {
  background: #f0f4ec;
  margin-top: 80px; }
  .movie_wrap .moive_inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 78px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    @media only screen and (max-width: 1380px) {
      .movie_wrap .moive_inner {
        width: calc(100% - 160px);
        box-sizing: border-box; } }
    @media only screen and (max-width: 480px) {
      .movie_wrap .moive_inner {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
        padding: 20px; } }
    .movie_wrap .moive_inner .youtube {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      margin-bottom: 28px;
      margin-right: 48px;
      -webkit-box-flex: 1;
      -webkit-flex: 1 0 auto;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto; }
      @media only screen and (max-width: 1380px) {
        .movie_wrap .moive_inner .youtube {
          width: 50%; } }
      @media only screen and (max-width: 480px) {
        .movie_wrap .moive_inner .youtube {
          width: 100%;
          margin: 0; } }
      @media only screen and (max-width: 1380px) {
        .movie_wrap .moive_inner .text {
          width: 50%;
          padding-right: 60px; } }
      @media only screen and (max-width: 480px) {
        .movie_wrap .moive_inner .text {
          width: 100%;
          padding: 0; } }
      .movie_wrap .moive_inner .text h3 {
        font-size: 24px;
        color: #333333;
        margin-bottom: 36px; }
        @media only screen and (max-width: 480px) {
          .movie_wrap .moive_inner .text h3 {
            margin: 16px 0; } }
      .movie_wrap .moive_inner .text p span {
        color: #666666;
        display: block;
        line-height: 1.7; }

.group_mv_wrap {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 33.33% 0 0; }
  @media only screen and (max-width: 1064px) {
    .group_mv_wrap {
      margin-top: 70px;
      padding: 56.25% 0 0; } }

.group_mv {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat; }

.content-group h4 {
  color: #90b023;
  font-size: 24px;
  border-left: 6px solid #90b023;
  border-bottom: 2px solid #90b023;
  line-height: 1;
  margin-top: 40px;
  margin-bottom: 24px;
  padding: 12px 0px 12px 40px; }

.content-group .read_text {
  font-size: 20px;
  font-weight: bold; }

.content-group .category_header {
  margin-bottom: 28px; }
  .content-group .category_header .category_header_name {
    font-family: "fot-tsukubrdgothic-std";
    font-size: 29px;
    font-weight: bold;
    color: #333;
    height: 80px;
    position: relative;
    margin-bottom: 34px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .content-group .category_header .category_header_name.hanryo::before {
      background-image: url("/anidone/wp-content/themes/storefront/common/images/group_hanryo.png"); }
    .content-group .category_header .category_header_name.hogo::before {
      background-image: url("/anidone/wp-content/themes/storefront/common/images/group_hogo.png"); }
    .content-group .category_header .category_header_name.keihatsu::before {
      background-image: url("/anidone/wp-content/themes/storefront/common/images/group_keihatsu.png"); }
    .content-group .category_header .category_header_name.kaizai::before {
      background-image: url("/anidone/wp-content/themes/storefront/common/images/group_kaizai.png"); }
    .content-group .category_header .category_header_name:before {
      content: "";
      display: block;
      width: 88px;
      height: 88px;
      background-size: contain;
      position: absolute; }
    .content-group .category_header .category_header_name:after {
      content: "";
      height: 2px;
      background-color: #90b023;
      width: 120px;
      display: block;
      position: absolute;
      bottom: 14px;
      left: 98px; }
    .content-group .category_header .category_header_name .category {
      margin-left: 100px; }
      .content-group .category_header .category_header_name .category p {
        font-size: 12px;
        color: #ff8831; }
    .content-group .category_header .category_header_name .group_name {
      margin-left: 100px; }
      .content-group .category_header .category_header_name .group_name h2 {
        font-size: 29px;
        font-weight: bold;
        color: #333;
        border-left: none;
        border-bottom: none;
        padding-left: 0px;
        margin-top: 0;
        margin-bottom: 0; }
        @media only screen and (max-width: 480px) {
          .content-group .category_header .category_header_name .group_name h2 {
            padding-left: 0px; } }

.content-group .wysiwyg_post .strong {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.7; }

.content-group p {
  font-size: 16px; }

.content-group .read_text {
  margin-bottom: 40px; }

.content-group .group_archive_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 60px; }
  .content-group .group_archive_wrap::after {
    content: "";
    display: block;
    width: 30%; }
  .content-group .group_archive_wrap .group_block {
    width: calc(33.3% - 19px);
    margin-right: 28px;
    border: 1px solid #ccc;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 28px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .content-group .group_archive_wrap .group_block.new {
      position: relative; }
      .content-group .group_archive_wrap .group_block.new:after {
        content: "NEW";
        color: #fff;
        background: #ff9731;
        padding: 4px 8px;
        border-radius: 5px;
        text-align: center;
        position: absolute;
        left: 8px;
        top: 8px; }
    @media only screen and (max-width: 480px) {
      .content-group .group_archive_wrap .group_block {
        width: 100%;
        margin-right: 0px; } }
    .content-group .group_archive_wrap .group_block:nth-child(n+3) {
      margin-right: 0px; }
    .content-group .group_archive_wrap .group_block .group_list {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; }
      .content-group .group_archive_wrap .group_block .group_list .thumbnail_wrap {
        position: relative;
        width: 100%;
        height: 100%;
        padding: 56.25% 0 0;
        margin-right: 24px; }
      .content-group .group_archive_wrap .group_block .group_list .thumbnail {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-repeat: no-repeat; }
        .content-group .group_archive_wrap .group_block .group_list .thumbnail a {
          display: block;
          background-size: cover;
          background-position: center center;
          height: 100%; }
      .content-group .group_archive_wrap .group_block .group_list .content {
        padding: 16px; }
      .content-group .group_archive_wrap .group_block .group_list .group_name {
        font-size: 16px; }
      .content-group .group_archive_wrap .group_block .group_list .catchcopy {
        font-size: 14px;
        color: #acacac;
        background: none;
        padding: 0;
        margin: 0;
        position: static; }
    .content-group .group_archive_wrap .group_block .btn_area {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; }
      .content-group .group_archive_wrap .group_block .btn_area .donate_area {
        padding: 0 0 16px 0;
        margin: 0 16px;
        border-bottom: 1px solid #acacac; }
        .content-group .group_archive_wrap .group_block .btn_area .donate_area .donate_btn_archive {
          background: none;
          margin: 0;
          padding: 0;
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-flex-wrap: wrap;
              -ms-flex-wrap: wrap;
                  flex-wrap: wrap;
          -webkit-box-pack: justify;
          -webkit-justify-content: space-between;
              -ms-flex-pack: justify;
                  justify-content: space-between; }
          .content-group .group_archive_wrap .group_block .btn_area .donate_area .donate_btn_archive select {
            width: 48%;
            float: none;
            margin-right: 0; }
          .content-group .group_archive_wrap .group_block .btn_area .donate_area .donate_btn_archive .add_to_cart_btn {
            width: 100%; }
      .content-group .group_archive_wrap .group_block .btn_area .detail_link {
        color: #ff9731;
        font-size: 14px;
        text-align: center;
        height: 60px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center; }
        .content-group .group_archive_wrap .group_block .btn_area .detail_link:hover {
          background: #fff7ea; }

.content-group .title_group {
  color: #90b023;
  font-size: 24px;
  border-left: 6px solid #90b023;
  border-bottom: 2px solid #90b023;
  line-height: 1;
  margin-top: 70px;
  margin-bottom: 24px;
  padding: 12px 0px 12px 40px; }

.content-group .name {
  font-family: "fot-tsukubrdgothic-std";
  font-size: 29px;
  font-weight: bold;
  color: #333;
  min-height: 80px;
  position: relative;
  margin-bottom: 34px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center; }
  @media only screen and (max-width: 480px) {
    .content-group .name {
      min-height: 42px; } }
  .content-group .name.hanryo::before {
    background-image: url("/anidone/wp-content/themes/storefront/common/images/group_hanryo.png"); }
  .content-group .name.hogo::before {
    background-image: url("/anidone/wp-content/themes/storefront/common/images/group_hogo.png"); }
  .content-group .name.keihatsu::before {
    background-image: url("/anidone/wp-content/themes/storefront/common/images/group_keihatsu.png"); }
  .content-group .name.kaizai::before {
    background-image: url("/anidone/wp-content/themes/storefront/common/images/group_kaizai.png"); }
  .content-group .name:before {
    content: "";
    display: block;
    width: 88px;
    height: 88px;
    background-size: contain;
    position: absolute;
    -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
            align-self: flex-start; }
    @media only screen and (max-width: 480px) {
      .content-group .name:before {
        width: 40px;
        height: 40px; } }
  .content-group .name:after {
    content: "";
    height: 2px;
    background-color: #90b023;
    width: 120px;
    display: block;
    position: absolute;
    bottom: 0px;
    left: 104px; }
    @media only screen and (max-width: 480px) {
      .content-group .name:after {
        left: 50px; } }
  .content-group .name .category {
    margin-left: 104px;
    margin-top: 16px;
    margin-bottom: 26px; }
    @media only screen and (max-width: 480px) {
      .content-group .name .category {
        margin-left: 54px;
        margin-top: 4px;
        margin-bottom: 12px; } }
    .content-group .name .category p {
      font-size: 12px;
      color: #ff8831;
      line-height: 1; }
  .content-group .name .group_name {
    margin-left: 100px; }
    @media only screen and (max-width: 480px) {
      .content-group .name .group_name {
        margin-left: 48px; } }
    .content-group .name .group_name h2 {
      font-size: 29px;
      line-height: 32px;
      font-weight: bold;
      display: inline-block; }
      @media only screen and (max-width: 480px) {
        .content-group .name .group_name h2 {
          font-size: 20px; } }

.content-group .meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  @media only screen and (max-width: 480px) {
    .content-group .meta {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; } }
  .content-group .meta div {
    margin-right: 24px; }
  .content-group .meta p {
    font-size: 12px; }
  .content-group .meta .donate_count, .content-group .meta .donate_value {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .content-group .meta .donate_count p, .content-group .meta .donate_value p {
      font-size: 21px;
      margin-left: 8px; }
    .content-group .meta .donate_count img, .content-group .meta .donate_value img {
      margin-right: 12px; }
  .content-group .meta .donate_count::before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    background: url("/anidone/wp-content/themes/storefront/common/images/people_icon.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    margin-top: -4px; }
  .content-group .meta .donate_value::before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    background: url("/anidone/wp-content/themes/storefront/common/images/heart_icon.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center; }

.content-group .catchcopy {
  background: #98c449;
  padding: 32px;
  margin: 20px auto 40px auto;
  position: relative; }
  .content-group .catchcopy::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: #FCFCFC;
    border-radius: 100%;
    position: absolute;
    left: -12px;
    top: 50%;
    margin-top: -12px; }
  .content-group .catchcopy::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: #FCFCFC;
    border-radius: 100%;
    position: absolute;
    right: -12px;
    top: 50%;
    margin-top: -12px; }
  .content-group .catchcopy h3 {
    font-size: 18px;
    line-height: 2;
    color: #fff;
    text-align: center;
    font-weight: bold; }

.content-group .read_content {
  margin-bottom: 90px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  .content-group .read_content .img {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    width: 240px;
    margin-right: 16px; }
    .content-group .read_content .img img {
      width: 100%; }
  .content-group .read_content p {
    font-size: 20px;
    font-weight: bold; }

.content-group .gallery_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 48px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 16px; }
  .content-group .gallery_wrap::before {
    content: "";
    display: block;
    width: 23%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1; }
  .content-group .gallery_wrap::after {
    content: "";
    display: block;
    width: 23%; }
  .content-group .gallery_wrap .gallery_block {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 1;
        -ms-flex: 1 0 1;
            flex: 1 0 1;
    width: 23%;
    margin-bottom: 24px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; }
    @media only screen and (max-width: 480px) {
      .content-group .gallery_wrap .gallery_block {
        width: 48%; } }
    .content-group .gallery_wrap .gallery_block .gallery_block_img_wrap {
      position: relative;
      width: 100%;
      height: 100%;
      padding: 75% 0 0; }
      .content-group .gallery_wrap .gallery_block .gallery_block_img_wrap .gallery_block_img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center; }

.content-group .message {
  margin-bottom: 48px; }
  .content-group .message .message_content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 24px; }
    @media only screen and (max-width: 480px) {
      .content-group .message .message_content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column; } }
    .content-group .message .message_content .img {
      -webkit-box-flex: 1;
      -webkit-flex: 1 0 auto;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto;
      margin-right: 24px;
      width: 220px; }
      @media only screen and (max-width: 480px) {
        .content-group .message .message_content .img {
          width: 100%; } }
      .content-group .message .message_content .img img {
        width: 100%; }
    .content-group .message .message_content .text p {
      word-break: break-all; }
    .content-group .message .message_content .text .group_name {
      font-weight: bold; }
    .content-group .message .message_content .text .staff_name {
      font-size: 24px;
      margin: 8px 0; }

.content-group .report_link .archive_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
  @media only screen and (max-width: 480px) {
    .content-group .report_link .archive_wrap {
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center; } }
  .content-group .report_link .archive_wrap::after {
    content: "";
    display: block;
    width: 30%; }
  .content-group .report_link .archive_wrap a {
    width: calc(33.3% - 19px);
    margin-bottom: 28px; }
    @media only screen and (max-width: 1279px) {
      .content-group .report_link .archive_wrap a {
        width: 48%; } }
    @media only screen and (max-width: 480px) {
      .content-group .report_link .archive_wrap a {
        width: 100%; } }
  .content-group .report_link .archive_wrap .archive_block {
    width: 100%;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    height: 100%;
    min-height: 330px;
    margin-right: 28px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 28px; }
    .content-group .report_link .archive_wrap .archive_block.new:before {
      content: url("../images/new_icon.png");
      width: 80px;
      height: 80px;
      position: absolute;
      top: -1px;
      left: 0; }
    .content-group .report_link .archive_wrap .archive_block.end:before {
      content: url("../images/end_icon.png");
      width: 80px;
      height: 80px;
      position: absolute;
      top: -1px;
      left: 0;
      z-index: 2; }
    .content-group .report_link .archive_wrap .archive_block:nth-child(n+3) {
      margin-right: 0px; }
    .content-group .report_link .archive_wrap .archive_block .thumbnail {
      width: 100%;
      height: 200px;
      overflow: hidden;
      position: relative; }
      .content-group .report_link .archive_wrap .archive_block .thumbnail.tatenaga img {
        width: auto;
        height: 100%; }
      .content-group .report_link .archive_wrap .archive_block .thumbnail img {
        width: 100%;
        height: auto;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        object-fit: cover; }
    .content-group .report_link .archive_wrap .archive_block .title {
      margin-top: 6px;
      padding: 12px;
      color: #666;
      line-height: 1.5; }
      .content-group .report_link .archive_wrap .archive_block .title .katagaki_title {
        font-weight: bold;
        display: block;
        line-height: 1.5; }
      .content-group .report_link .archive_wrap .archive_block .title .katagaki {
        font-size: 14px;
        margin-top: 14px;
        display: block;
        line-height: 1.5; }
    .content-group .report_link .archive_wrap .archive_block .date {
      position: absolute;
      bottom: 12px;
      right: 12px;
      color: #acacac; }

.content-group .info_wrap .info_block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc; }
  .content-group .info_wrap .info_block:last-child {
    border-bottom: 1px solid #ccc;
    margin-bottom: 40px; }
  .content-group .info_wrap .info_block dl {
    opacity: 1;
    -webkit-transition: all .2s;
            transition: all .2s; }
  .content-group .info_wrap .info_block dt, .content-group .info_wrap .info_block dd {
    font-size: 16px;
    padding: 8px;
    border-top: 1px solid #ccc;
    line-height: 1.7;
    color: #4d4d4d;
    word-break: break-all; }
  .content-group .info_wrap .info_block dt {
    background: #f4f4f4;
    width: 160px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start; }
  .content-group .info_wrap .info_block dd {
    border-left: 1px solid #ccc;
    width: 100%; }

.content-group .info_wrap.info_detail dl:nth-child(5) {
  border-bottom: 1px solid #ccc; }

.content-group .info_wrap.info_detail dl:nth-child(n+6) {
  height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all .2s;
          transition: all .2s; }

.content-group .info_wrap.info_detail.on dl:nth-child(5) {
  border-bottom: none; }

.content-group .info_wrap.info_detail.on dl:nth-child(n+6) {
  height: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  -webkit-transition: all .2s;
          transition: all .2s; }

.content-group .more_btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #cacaca;
  border-radius: 5px;
  margin-top: 16px;
  margin-bottom: 40px;
  cursor: pointer; }
  .content-group .more_btn p {
    color: #fff;
    font-size: 15px; }
  .content-group .more_btn:hover {
    opacity: 0.8;
    -webkit-transition: all .2s;
            transition: all .2s; }

.content-group .added_to_cart {
  display: none; }

.content-group .activity_cat {
  margin-top: 70px; }
  .content-group .activity_cat .img_wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
    .content-group .activity_cat .img_wrap .img_block {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      margin-top: 28px; }
      @media only screen and (max-width: 480px) {
        .content-group .activity_cat .img_wrap .img_block {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-direction: column;
              -ms-flex-direction: column;
                  flex-direction: column; } }
      .content-group .activity_cat .img_wrap .img_block .img {
        width: 220px;
        margin-right: 38px;
        -webkit-box-flex: 1;
        -webkit-flex: 1 0 auto;
            -ms-flex: 1 0 auto;
                flex: 1 0 auto; }
        @media only screen and (max-width: 480px) {
          .content-group .activity_cat .img_wrap .img_block .img {
            width: 100%;
            margin-bottom: 16px; } }
        .content-group .activity_cat .img_wrap .img_block .img img {
          width: 100%; }
      .content-group .activity_cat .img_wrap .img_block .text .type {
        font-size: 24px;
        font-weight: bold; }
      .content-group .activity_cat .img_wrap .img_block .text p:last-child {
        font-size: 12px;
        color: #808080; }
  .content-group .activity_cat .add_to_cart_btn {
    width: 330px;
    margin: 32px auto 0 auto; }
    @media only screen and (max-width: 480px) {
      .content-group .activity_cat .add_to_cart_btn {
        width: auto; } }
    .content-group .activity_cat .add_to_cart_btn:before {
      display: none; }
    .content-group .activity_cat .add_to_cart_btn:after {
      display: none; }

.content-group .donate_links .title-style01 {
  color: #90b023;
  font-size: 26px;
  border-top: 2px solid #90b023;
  border-bottom: 2px solid #90b023;
  line-height: 1.5;
  background: url("/anidone/wp-content/themes/storefront/common/images/title01_bg.png");
  background-position: left center;
  margin-bottom: 40px;
  margin-top: 40px;
  padding: 24px 4px;
  box-sizing: border-box; }

.content-group .donate_links .read_text {
  font-size: 16px; }

.content-group .donate_links .donate_link_wrap a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 130px;
  border: 2px solid #fff;
  border-radius: 5px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
  padding: 0 34px;
  position: relative;
  margin-bottom: 24px; }
  @media only screen and (max-width: 480px) {
    .content-group .donate_links .donate_link_wrap a {
      padding: 0 8px;
      height: 80px; } }
  .content-group .donate_links .donate_link_wrap a span {
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    display: block; }
    .content-group .donate_links .donate_link_wrap a span.big {
      font-size: 29px; }
      @media only screen and (max-width: 480px) {
        .content-group .donate_links .donate_link_wrap a span.big {
          font-size: 20px;
          margin-top: 4px; } }
  .content-group .donate_links .donate_link_wrap a.matomete {
    background-color: #ff9731; }
    .content-group .donate_links .donate_link_wrap a.matomete::before {
      content: url("/anidone/wp-content/themes/storefront/common/images/icon_box.png");
      display: block;
      margin-right: 24px; }
      @media only screen and (max-width: 480px) {
        .content-group .donate_links .donate_link_wrap a.matomete::before {
          content: "";
          width: 48px;
          height: 48px;
          background-image: url("/anidone/wp-content/themes/storefront/common/images/icon_box.png");
          background-size: contain;
          background-repeat: no-repeat;
          margin-right: 8px; } }
  .content-group .donate_links .donate_link_wrap a.katsudou {
    background-color: #bb8559; }
    .content-group .donate_links .donate_link_wrap a.katsudou::before {
      content: url("/anidone/wp-content/themes/storefront/common/images/icon_dakko.png");
      display: block;
      margin-right: 24px; }
      @media only screen and (max-width: 480px) {
        .content-group .donate_links .donate_link_wrap a.katsudou::before {
          content: "";
          width: 48px;
          height: 48px;
          background-image: url("/anidone/wp-content/themes/storefront/common/images/icon_dakko.png");
          background-size: contain;
          background-repeat: no-repeat;
          margin-right: 8px; } }
  .content-group .donate_links .donate_link_wrap a.nintei {
    background-color: #67a8ac; }
    .content-group .donate_links .donate_link_wrap a.nintei::before {
      content: url("/anidone/wp-content/themes/storefront/common/images/icon_select.png");
      display: block;
      margin-right: 24px; }
      @media only screen and (max-width: 480px) {
        .content-group .donate_links .donate_link_wrap a.nintei::before {
          content: "";
          width: 48px;
          height: 48px;
          background-image: url("/anidone/wp-content/themes/storefront/common/images/icon_select.png");
          background-size: contain;
          background-repeat: no-repeat;
          margin-right: 8px; } }
  .content-group .donate_links .donate_link_wrap a.anidone {
    background-color: #90b023; }
    .content-group .donate_links .donate_link_wrap a.anidone::before {
      content: url("/anidone/wp-content/themes/storefront/common/images/icon_anidone.png");
      display: block;
      margin-right: 24px; }
      @media only screen and (max-width: 480px) {
        .content-group .donate_links .donate_link_wrap a.anidone::before {
          content: "";
          width: 48px;
          height: 48px;
          background-image: url("/anidone/wp-content/themes/storefront/common/images/icon_anidone.png");
          background-size: contain;
          background-repeat: no-repeat;
          margin-right: 8px; } }

.content-group .donate_links .detail_link_style {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 24px auto; }

.woocommerce .woocommerce-message {
  display: none; }

.woocommerce .woocommerce-form-coupon-toggle {
  display: none; }

.woocommerce .woocommerce-error, .woocommerce .woocommerce-info {
  font-size: 16px;
  line-height: 1.5; }

.page-template-template-cart-php .woocommerce-error a.button {
  display: none; }

.page-template-template-cart-php .cart_slide {
  display: none; }

.content-cart .check_price {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px; }

.content-cart .flow_head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px; }
  @media only screen and (max-width: 480px) {
    .content-cart .flow_head {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; } }

.content-cart .flow_block {
  background: #c4c4c4;
  height: 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 225px;
  padding-left: 46px;
  position: relative;
  border: 1px solid #fff; }
  @media only screen and (max-width: 480px) {
    .content-cart .flow_block {
      height: 32px;
      width: 100%;
      padding-left: 16px; } }
  .content-cart .flow_block:first-child {
    padding-left: 16px; }
  .content-cart .flow_block:after {
    content: "";
    border-top: 35px solid transparent;
    border-bottom: 35px solid transparent;
    border-left: 30px solid #c4c4c4;
    position: absolute;
    right: -30px;
    z-index: 1; }
    @media only screen and (max-width: 480px) {
      .content-cart .flow_block:after {
        display: none; } }
  .content-cart .flow_block:before {
    content: "";
    border-top: 35px solid transparent;
    border-bottom: 35px solid transparent;
    border-left: 30px solid #fff;
    position: absolute;
    right: -31px;
    z-index: 1; }
    @media only screen and (max-width: 480px) {
      .content-cart .flow_block:before {
        display: none; } }
  .content-cart .flow_block p {
    color: #fff; }
  .content-cart .flow_block span {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin-right: 16px;
    border-right: 1px solid #fff;
    padding-right: 16px; }
  .content-cart .flow_block.active {
    background: #858585; }
    .content-cart .flow_block.active:after {
      content: "";
      border-top: 35px solid transparent;
      border-bottom: 35px solid transparent;
      border-left: 30px solid #858585;
      position: absolute;
      right: -30px;
      z-index: 1; }

.content-cart .cart-collaterals .cart_totals {
  width: 100%; }
  @media only screen and (max-width: 480px) {
    .content-cart .cart-collaterals .cart_totals h2 {
      font-size: 18px;
      font-weight: bold; } }

.content-cart .cart-collaterals .shop_table {
  width: 100%;
  float: right;
  font-size: 16px; }
  @media only screen and (max-width: 480px) {
    .content-cart .cart-collaterals .shop_table tr {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; }
      .content-cart .cart-collaterals .shop_table tr.shipping {
        display: none; }
      .content-cart .cart-collaterals .shop_table tr.recurring-totals th {
        width: 100%; } }

.content-cart .cart-collaterals .wc-proceed-to-checkout {
  clear: both;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  @media only screen and (max-width: 480px) {
    .content-cart .cart-collaterals .wc-proceed-to-checkout {
      text-align: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -webkit-flex-direction: column-reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse; } }
  .content-cart .cart-collaterals .wc-proceed-to-checkout .back-to {
    width: auto;
    height: 76px;
    padding: 0 60px;
    background-color: #fff;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
    color: #ff9731;
    margin: 0 auto;
    border-radius: 5px;
    border: 1px solid #ff9731;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
    margin: 24px 0; }
    @media only screen and (max-width: 480px) {
      .content-cart .cart-collaterals .wc-proceed-to-checkout .back-to {
        margin: 0 0 16px 0;
        width: 100%; } }
  .content-cart .cart-collaterals .wc-proceed-to-checkout .checkout-button {
    width: auto;
    height: 76px;
    padding: 0 60px;
    background-color: #ff9731;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
    color: #fff;
    margin: 0 auto;
    border-radius: 5px;
    border: 1px solid #fff;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
    margin: 24px 0; }
    .content-cart .cart-collaterals .wc-proceed-to-checkout .checkout-button:before {
      content: url(../images/link_arrow.png);
      height: 20px;
      width: 20px;
      margin-top: -1px;
      margin-right: 8px; }
    @media only screen and (max-width: 480px) {
      .content-cart .cart-collaterals .wc-proceed-to-checkout .checkout-button {
        margin: 0 0 16px 0;
        width: 100%; } }
  .content-cart .cart-collaterals .wc-proceed-to-checkout #pay_with_amazon {
    float: none;
    width: 200px !important;
    border-radius: 5px;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
    border: 1px solid #9d9d9d;
    padding: 40px;
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    @media only screen and (max-width: 480px) {
      .content-cart .cart-collaterals .wc-proceed-to-checkout #pay_with_amazon {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column; } }
    .content-cart .cart-collaterals .wc-proceed-to-checkout #pay_with_amazon .message {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-flex: 1;
      -webkit-flex: 1;
          -ms-flex: 1;
              flex: 1;
      margin-right: 42px; }
      @media only screen and (max-width: 480px) {
        .content-cart .cart-collaterals .wc-proceed-to-checkout #pay_with_amazon .message {
          margin: 0 0 24px 0;
          text-align: left; } }
      .content-cart .cart-collaterals .wc-proceed-to-checkout #pay_with_amazon .message strong {
        font-size: 24px;
        margin-bottom: 12px; }
        .content-cart .cart-collaterals .wc-proceed-to-checkout #pay_with_amazon .message strong br {
          display: none; }
          @media only screen and (max-width: 480px) {
            .content-cart .cart-collaterals .wc-proceed-to-checkout #pay_with_amazon .message strong br {
              display: block; } }
        @media only screen and (max-width: 480px) {
          .content-cart .cart-collaterals .wc-proceed-to-checkout #pay_with_amazon .message strong {
            text-align: center;
            line-height: 35px; } }

.content-cart .wc-amazon-checkout-message .woocommerce-info {
  background: none;
  padding: 0;
  border-left: none;
  color: inherit; }
  .content-cart .wc-amazon-checkout-message .woocommerce-info #pay_with_amazon {
    float: none;
    width: 200px !important;
    border-radius: 5px;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
    border: 1px solid #9d9d9d;
    padding: 40px;
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    @media only screen and (max-width: 480px) {
      .content-cart .wc-amazon-checkout-message .woocommerce-info #pay_with_amazon {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column; } }
    .content-cart .wc-amazon-checkout-message .woocommerce-info #pay_with_amazon .message {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-flex: 1;
      -webkit-flex: 1;
          -ms-flex: 1;
              flex: 1;
      margin-right: 42px; }
      @media only screen and (max-width: 480px) {
        .content-cart .wc-amazon-checkout-message .woocommerce-info #pay_with_amazon .message {
          margin: 0 0 24px 0;
          text-align: left; } }
      .content-cart .wc-amazon-checkout-message .woocommerce-info #pay_with_amazon .message strong {
        font-size: 24px;
        margin-bottom: 12px; }
        .content-cart .wc-amazon-checkout-message .woocommerce-info #pay_with_amazon .message strong br {
          display: none; }
          @media only screen and (max-width: 480px) {
            .content-cart .wc-amazon-checkout-message .woocommerce-info #pay_with_amazon .message strong br {
              display: block; } }
        @media only screen and (max-width: 480px) {
          .content-cart .wc-amazon-checkout-message .woocommerce-info #pay_with_amazon .message strong {
            text-align: center; } }

.content-cart #customer_details {
  width: 100%;
  float: none;
  margin-right: 0; }
  .content-cart #customer_details .woocommerce-billing-fields {
    width: auto;
    margin: 0 auto; }
    @media only screen and (max-width: 480px) {
      .content-cart #customer_details .woocommerce-billing-fields {
        width: 100%; } }
    .content-cart #customer_details .woocommerce-billing-fields h3 {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 24px; }
    .content-cart #customer_details .woocommerce-billing-fields .form-row {
      margin-bottom: 8px; }
    .content-cart #customer_details .woocommerce-billing-fields .form-row-first {
      margin: 0 0 8px 0;
      width: 48%;
      float: left; }
    .content-cart #customer_details .woocommerce-billing-fields .form-row-last {
      margin: 0 0 8px 0;
      width: 48%;
      float: right; }
    .content-cart #customer_details .woocommerce-billing-fields .form-row label {
      line-height: 2;
      margin-top: 4px; }
    .content-cart #customer_details .woocommerce-billing-fields .woocommerce-input-wrapper {
      line-height: 1.5; }
      .content-cart #customer_details .woocommerce-billing-fields .woocommerce-input-wrapper .checkbox {
        width: 100%; }
    .content-cart #customer_details .woocommerce-billing-fields .select2-container .select2-selection--single {
      height: 40px; }
    .content-cart #customer_details .woocommerce-billing-fields .select2-container .select2-selection--single .select2-selection__rendered {
      line-height: 40px; }
    .content-cart #customer_details .woocommerce-billing-fields label {
      font-weight: bold;
      width: 128px;
      font-size: 16px; }
    .content-cart #customer_details .woocommerce-billing-fields span {
      font-size: 16px;
      line-height: 1.7; }
    .content-cart #customer_details .woocommerce-billing-fields #newsletter_field::before {
      content: "メールマガジンの受信";
      margin-top: 16px;
      display: block;
      font-weight: bold; }
    .content-cart #customer_details .woocommerce-billing-fields #newsletter_field label {
      margin-top: 0;
      font-weight: normal; }
  .content-cart #customer_details .required {
    text-decoration: none;
    border-bottom: none !important;
    color: #ff8731; }
  .content-cart #customer_details .woocommerce-additional-fields {
    display: none; }

.content-cart #order_review {
  background: none; }

.content-cart #order_review_heading {
  width: 100%;
  float: none;
  margin: 60px auto 0 auto; }
  @media only screen and (max-width: 480px) {
    .content-cart #order_review_heading {
      width: 100%; } }

.content-cart #order_review {
  width: auto;
  float: none;
  margin: 0px auto 0 auto; }
  @media only screen and (max-width: 480px) {
    .content-cart #order_review {
      width: 100%; } }
  .content-cart #order_review table tr th, .content-cart #order_review table tr td {
    padding: 1em 1.41575em;
    vertical-align: middle;
    font-size: 16px; }
    .content-cart #order_review table tr th.product-quantity, .content-cart #order_review table tr td.product-quantity {
      text-indent: -9999px; }
  .content-cart #order_review table tr th.product-quantity {
    background: #ccc; }
  .content-cart #order_review .payment_methods li {
    font-size: 16px; }
    .content-cart #order_review .payment_methods li input {
      display: block;
      margin: 16px;
      float: left; }
    .content-cart #order_review .payment_methods li label {
      display: block;
      line-height: 50px; }
      @media only screen and (max-width: 320px) {
        .content-cart #order_review .payment_methods li label img {
          width: 80px;
          margin: -7px; } }
    .content-cart #order_review .payment_methods li img {
      margin: 12px; }

.content-cart .woocommerce-checkout-review-order table {
  font-size: 16px; }

.content-cart .wc_payment_method label {
  font-size: 16px; }

.content-cart .wc_payment_method input {
  margin-top: 4px; }

.content-cart .button {
  width: auto;
  height: 76px;
  padding: 0 60px;
  background-color: #ff9731;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
  color: #fff;
  margin: 0 auto;
  border-radius: 5px;
  border: 1px solid #fff;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
  margin-top: 24px; }
  .content-cart .button:before {
    content: url(../images/link_arrow.png);
    height: 20px;
    width: 20px;
    margin-top: -1px;
    margin-right: 8px; }
  .content-cart .button:hover {
    background: #ff9731;
    border: 1px solid #fff;
    opacity: 0.8;
    -webkit-transition: all .2s;
            transition: all .2s; }

.content-cart .woocommerce-cart-form__cart-item {
  border: 1px solid #8c8c8c;
  margin-bottom: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  @media only screen and (max-width: 480px) {
    .content-cart .woocommerce-cart-form__cart-item {
      padding: 8px;
      /* For IE 6/7 (trigger hasLayout) */ }
      .content-cart .woocommerce-cart-form__cart-item:before, .content-cart .woocommerce-cart-form__cart-item:after {
        content: "";
        display: table; }
      .content-cart .woocommerce-cart-form__cart-item:after {
        clear: both; }
      .content-cart .woocommerce-cart-form__cart-item {
        zoom: 1; } }
  .content-cart .woocommerce-cart-form__cart-item td, .content-cart .woocommerce-cart-form__cart-item th {
    padding: 0; }
  .content-cart .woocommerce-cart-form__cart-item .product-remove {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0;
        -ms-flex: 1 1 0;
            flex: 1 1 0; }
    @media only screen and (max-width: 480px) {
      .content-cart .woocommerce-cart-form__cart-item .product-remove {
        margin-top: -4px; } }
    .content-cart .woocommerce-cart-form__cart-item .product-remove a.remove:before {
      color: #ff9734; }
  .content-cart .woocommerce-cart-form__cart-item .product-name {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 500px;
        -ms-flex: 1 1 500px;
            flex: 1 1 500px; }
    .content-cart .woocommerce-cart-form__cart-item .product-name a {
      font-size: 21px;
      color: #000;
      font-weight: bold;
      pointer-events: none; }
      @media only screen and (max-width: 480px) {
        .content-cart .woocommerce-cart-form__cart-item .product-name a {
          font-size: 16px; } }
    @media only screen and (max-width: 480px) {
      .content-cart .woocommerce-cart-form__cart-item .product-name {
        -webkit-box-flex: 1;
        -webkit-flex: 1 0 auto;
            -ms-flex: 1 0 auto;
                flex: 1 0 auto; }
        .content-cart .woocommerce-cart-form__cart-item .product-name:before {
          content: ""; } }
  .content-cart .woocommerce-cart-form__cart-item .product-type {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 80px;
        -ms-flex: 1 1 80px;
            flex: 1 1 80px;
    font-size: 16px;
    font-weight: bold;
    text-align: right; }
    @media only screen and (max-width: 480px) {
      .content-cart .woocommerce-cart-form__cart-item .product-type {
        font-size: 14px; }
        .content-cart .woocommerce-cart-form__cart-item .product-type:before {
          content: ""; } }
    .content-cart .woocommerce-cart-form__cart-item .product-type:after {
      content: "/";
      margin-right: 8px; }
  .content-cart .woocommerce-cart-form__cart-item .product-subtotal {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 80px;
        -ms-flex: 1 1 80px;
            flex: 1 1 80px;
    padding-bottom: 0px !important;
    font-size: 16px;
    font-weight: bold; }
    @media only screen and (max-width: 480px) {
      .content-cart .woocommerce-cart-form__cart-item .product-subtotal {
        font-size: 14px;
        -webkit-box-flex: 1;
        -webkit-flex: 1 0 auto;
            -ms-flex: 1 0 auto;
                flex: 1 0 auto;
        text-align: left; }
        .content-cart .woocommerce-cart-form__cart-item .product-subtotal:before {
          display: none; } }

.content-cart .shop_table .shipping {
  display: none; }

@media only screen and (max-width: 480px) {
  .content-cart .shop_table_responsive tr {
    display: block; } }

@media only screen and (max-width: 480px) {
  .content-cart .shop_table_responsive tr th {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 40%;
    line-height: 1.2;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; } }

@media only screen and (max-width: 480px) {
  .content-cart .shop_table_responsive tr td {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
    .content-cart .shop_table_responsive tr td:before {
      content: ""; }
    .content-cart .shop_table_responsive tr td.product-remove {
      margin: 0;
      float: left;
      border-top: 0; }
      .content-cart .shop_table_responsive tr td.product-remove a {
        top: 2px;
        left: 0; }
    .content-cart .shop_table_responsive tr td.product-name {
      text-align: left !important;
      padding-left: 24px;
      margin-bottom: 4px;
      display: block; }
    .content-cart .shop_table_responsive tr td.product-type {
      text-align: left;
      float: left;
      height: 24px;
      clear: none;
      margin-left: 24px; }
    .content-cart .shop_table_responsive tr td.product-subtotal {
      text-align: left;
      float: left;
      height: 24px;
      clear: none; } }

.content-cart .shop_table_responsive .cart-subtotal td, .content-cart .shop_table_responsive .order-total td {
  width: 80%; }

@media only screen and (max-width: 480px) {
  .content-cart .shop_table_responsive .recurring-total td {
    width: 80%; } }

@media only screen and (max-width: 480px) {
  .content-cart .shop_table_responsive .recurring-total.order-total td {
    display: inline-block; } }

.content-cart .shop_table_responsive .recurring-total small {
  margin-top: 6px;
  display: inline-block; }
  @media only screen and (max-width: 480px) {
    .content-cart .shop_table_responsive .recurring-total small {
      font-size: 12px; } }

.content-cart .woocommerce-order-details {
  margin-top: 48px; }
  .content-cart .woocommerce-order-details h2 {
    border-left: 4px solid #91b11f;
    border-bottom: 1px solid #91b11f;
    padding: 6px 0px 6px 24px;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 24px;
    color: #91b11f; }

.content-cart .woocommerce-customer-details h2 {
  border-left: 4px solid #91b11f;
  border-bottom: 1px solid #91b11f;
  padding: 6px 0px 6px 24px;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
  color: #91b11f; }

.user_registration {
  height: 74px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #ff9731;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  border: 2px solid #fff;
  padding: 0 60px; }
  @media only screen and (max-width: 480px) {
    .user_registration {
      width: 100%;
      margin: 16px auto; } }

#ship-to-different-address {
  display: none; }

#order_review_heading {
  font-size: 24px; }

ul.order_details {
  margin: 24px 0; }
  ul.order_details li {
    font-size: 12px;
    line-height: 1.5; }

.woocommerce-order {
  font-size: 16px; }
  .woocommerce-order .product-name a {
    pointer-events: none;
    color: #666; }

table.woocommerce-checkout-review-order-table .product-name {
  width: auto; }

#payment .place-order {
  margin-top: -18px; }

#gmopg-new-info p {
  font-size: 12px; }

#wc-gmopg_cc-cc-form p {
  font-size: 16px; }

.woocommerce-privacy-policy-text p {
  font-size: 12px; }

.woocommerce-privacy-policy-text a {
  font-size: 12px; }

#payment .place-order .button {
  width: 320px; }
  @media only screen and (max-width: 480px) {
    #payment .place-order .button {
      width: auto; } }

@media only screen and (max-width: 480px) {
  #payment .payment_methods li .payment_box fieldset {
    margin-left: -30px; }
    #payment .payment_methods li .payment_box fieldset label {
      font-size: 14px; }
    #payment .payment_methods li .payment_box fieldset #gmopg-stored-info select {
      width: 100%; } }

#amazon_customer_details .col2-set {
  width: 100% !important;
  float: none !important; }

#payment .payment_methods > .woocommerce-PaymentMethod > label::before, #payment .payment_methods > .wc_payment_method > label::before {
  display: none; }

.title-checkout .button#place_order {
  width: auto;
  height: 76px;
  padding: 0 60px;
  background-color: #ff9731;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
  color: #fff;
  margin: 0 auto;
  border-radius: 5px;
  border: 1px solid #fff;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
  margin: 24px 0; }
  @media only screen and (max-width: 480px) {
    .title-checkout .button#place_order {
      margin: 0 0 16px 0;
      width: 100%; } }

.content-archive .archive_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
  @media only screen and (max-width: 480px) {
    .content-archive .archive_wrap {
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center; } }
  .content-archive .archive_wrap::after {
    content: "";
    display: block;
    width: 30%; }
  .content-archive .archive_wrap a {
    width: calc(33.3% - 19px);
    margin-bottom: 28px; }
    @media only screen and (max-width: 1279px) {
      .content-archive .archive_wrap a {
        width: 48%; } }
    @media only screen and (max-width: 480px) {
      .content-archive .archive_wrap a {
        width: 100%; } }
  .content-archive .archive_wrap .archive_block {
    width: 100%;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    height: 100%;
    min-height: 330px;
    margin-right: 28px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 28px; }
    .content-archive .archive_wrap .archive_block.new:before {
      content: url("../images/new_icon.png");
      width: 80px;
      height: 80px;
      position: absolute;
      top: -1px;
      left: 0; }
    .content-archive .archive_wrap .archive_block.end:before {
      content: url("../images/end_icon.png");
      width: 80px;
      height: 80px;
      position: absolute;
      top: -1px;
      left: 0;
      z-index: 2; }
    .content-archive .archive_wrap .archive_block:nth-child(n+3) {
      margin-right: 0px; }
    .content-archive .archive_wrap .archive_block .thumbnail {
      width: 100%;
      height: 200px;
      overflow: hidden;
      position: relative; }
      .content-archive .archive_wrap .archive_block .thumbnail.tatenaga img {
        width: auto;
        height: 100%; }
      .content-archive .archive_wrap .archive_block .thumbnail img {
        width: 100%;
        height: auto;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        object-fit: cover; }
    .content-archive .archive_wrap .archive_block .title {
      margin-top: 6px;
      padding: 12px;
      color: #666;
      line-height: 1.5; }
      .content-archive .archive_wrap .archive_block .title .katagaki_title {
        font-weight: bold;
        display: block;
        line-height: 1.5; }
      .content-archive .archive_wrap .archive_block .title .katagaki {
        font-size: 14px;
        margin-top: 14px;
        display: block;
        line-height: 1.5; }
    .content-archive .archive_wrap .archive_block .date {
      position: absolute;
      bottom: 12px;
      right: 12px;
      color: #acacac; }

.content-archive .page-description {
  margin-bottom: 40px; }

.title-news_list .news_list {
  width: 100%;
  margin: 0 auto; }
  @media only screen and (max-width: 1064px) {
    .title-news_list .news_list {
      width: 100%; } }
  @media only screen and (max-width: 480px) {
    .title-news_list .news_list {
      width: 100%;
      border-bottom: 1px solid #b6b6b6; } }
  .title-news_list .news_list .news_block {
    border-top: 1px solid #b6b6b6;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: 64px;
    position: relative; }
    @media only screen and (max-width: 480px) {
      .title-news_list .news_list .news_block {
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
        padding: 12px 0;
        height: auto; }
        .title-news_list .news_list .news_block:after {
          content: url("../images/arrow.png");
          position: absolute;
          right: 16px;
          top: 50%;
          margin-top: -4px; } }
    .title-news_list .news_list .news_block .date {
      font-size: 14px;
      color: #b6b6b6;
      width: 92px; }
    .title-news_list .news_list .news_block .category {
      color: #b6b6b6;
      border: 1px solid #b6b6b6;
      width: 114px;
      height: 32px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin: 0 16px; }
      .title-news_list .news_list .news_block .category a {
        color: #b6b6b6; }
        @media only screen and (max-width: 480px) {
          .title-news_list .news_list .news_block .category a {
            font-size: 12px;
            width: auto;
            height: auto;
            padding: 6px 8px;
            line-height: 1; } }
    .title-news_list .news_list .news_block .permalink {
      color: #666;
      position: relative;
      -webkit-box-flex: 0;
      -webkit-flex: 0 1 100%;
          -ms-flex: 0 1 100%;
              flex: 0 1 100%;
      padding-right: 34px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
      @media only screen and (max-width: 480px) {
        .title-news_list .news_list .news_block .permalink {
          width: 100%; } }
      .title-news_list .news_list .news_block .permalink:after {
        content: url("../images/arrow.png");
        position: absolute;
        right: 16px;
        top: 0; }
        @media only screen and (max-width: 480px) {
          .title-news_list .news_list .news_block .permalink:after {
            display: none; } }

.single-blog .post h2 {
  color: #90b023;
  font-size: 24px;
  border-left: 4px solid #90b023;
  border-bottom: 2px solid #90b023;
  line-height: 1.5;
  padding-left: 40px;
  margin-top: 40px;
  margin-bottom: 40px; }
  @media only screen and (max-width: 480px) {
    .single-blog .post h2 {
      font-size: 20px;
      padding-left: 20px; } }

.single-blog .post h3 {
  color: #90b023;
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 20px; }

.single-blog .post h4, .single-blog .post h5, .single-blog .post h6 {
  color: #90b023;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 12px;
  font-weight: bold; }

.single-blog .single_banner {
  margin: 60px auto 0px auto;
  float: none;
  width: 100%; }
  .single-blog .single_banner a img {
    max-width: 100%; }
  .single-blog .single_banner .banner_btn {
    width: 100%; }
    .single-blog .single_banner .banner_btn a {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      color: #fff;
      background: #ff8731;
      border-radius: 10px;
      width: 100%;
      font-size: 28px;
      font-weight: bold;
      line-height: 1;
      padding: 12px; }
      .single-blog .single_banner .banner_btn a span {
        font-size: 18px;
        display: block;
        margin-bottom: 8px; }

.post p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 12px; }
  .post p img {
    margin: 14px 0; }
    .post p img.aligncenter {
      margin: 14px auto; }
      @media only screen and (max-width: 480px) {
        .post p img.aligncenter {
          max-width: 100%; } }
    .post p img.alignleft {
      margin: 0 14px; }
      @media only screen and (max-width: 480px) {
        .post p img.alignleft {
          width: 100%;
          margin: 14px 0px; } }
    .post p img.alignrtight {
      margin: 0 14px; }
      @media only screen and (max-width: 480px) {
        .post p img.alignrtight {
          width: 100%;
          margin: 14px 0px; } }

.post ul li {
  font-size: 16px;
  line-height: 1.5; }

.post ul dl dt, .post ul dl dd {
  font-size: 16px; }

.post table {
  font-size: 16px; }
  .post table tr th, .post table tr td {
    padding: 0;
    line-height: 1.5; }

.post .archive_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
  @media only screen and (max-width: 480px) {
    .post .archive_wrap {
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center; } }
  .post .archive_wrap::after {
    content: "";
    display: block;
    width: 30%; }
  .post .archive_wrap a {
    width: calc(33.3% - 19px);
    margin-bottom: 28px; }
    @media only screen and (max-width: 1279px) {
      .post .archive_wrap a {
        width: 48%; } }
    @media only screen and (max-width: 480px) {
      .post .archive_wrap a {
        width: 100%; } }
  .post .archive_wrap .archive_block {
    width: 100%;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    height: 100%;
    min-height: 330px;
    margin-right: 28px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 28px; }
    .post .archive_wrap .archive_block.new:before {
      content: url("../images/new_icon.png");
      width: 80px;
      height: 80px;
      position: absolute;
      top: -1px;
      left: 0; }
    .post .archive_wrap .archive_block.end:before {
      content: url("../images/end_icon.png");
      width: 80px;
      height: 80px;
      position: absolute;
      top: -1px;
      left: 0;
      z-index: 2; }
    .post .archive_wrap .archive_block:nth-child(n+3) {
      margin-right: 0px; }
    .post .archive_wrap .archive_block .thumbnail {
      width: 100%;
      height: 200px;
      overflow: hidden;
      position: relative; }
      .post .archive_wrap .archive_block .thumbnail.tatenaga img {
        width: auto;
        height: 100%; }
      .post .archive_wrap .archive_block .thumbnail img {
        width: 100%;
        height: auto;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        object-fit: cover; }
    .post .archive_wrap .archive_block .title {
      margin-top: 6px;
      padding: 12px;
      color: #666;
      line-height: 1.5; }
      .post .archive_wrap .archive_block .title .katagaki_title {
        font-weight: bold;
        display: block;
        line-height: 1.5; }
      .post .archive_wrap .archive_block .title .katagaki {
        font-size: 14px;
        margin-top: 14px;
        display: block;
        line-height: 1.5; }
    .post .archive_wrap .archive_block .date {
      position: absolute;
      bottom: 12px;
      right: 12px;
      color: #acacac; }

.post h2 {
  color: #90b023;
  font-size: 24px;
  border-left: 4px solid #90b023;
  border-bottom: 2px solid #90b023;
  line-height: 1.5;
  padding-left: 40px;
  margin-top: 40px;
  margin-bottom: 40px; }
  @media only screen and (max-width: 480px) {
    .post h2 {
      font-size: 20px;
      padding-left: 20px; } }

.post h3 {
  color: #90b023;
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 20px; }

.post h4, .post h5, .post h6 {
  color: #90b023;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 12px;
  font-weight: bold; }

.post h3.title_style01 {
  font-family: "fot-tsukubrdgothic-std";
  font-size: 29px;
  font-weight: bold;
  color: #333;
  height: 80px;
  position: relative;
  margin-bottom: 34px;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  @media only screen and (max-width: 480px) {
    .post h3.title_style01 {
      font-size: 24px; } }
  .post h3.title_style01 span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
    .post h3.title_style01 span:after {
      content: "";
      height: 2px;
      margin-top: 16px;
      background-color: #90b023;
      width: 120px;
      display: block; }

.post h2.title-style01 {
  color: #90b023;
  font-size: 26px;
  border-top: 2px solid #90b023;
  border-bottom: 2px solid #90b023;
  border-left: none;
  line-height: 1.5;
  background: url("/anidone/wp-content/themes/storefront/common/images/title01_bg.png");
  background-position: left center;
  margin-bottom: 40px;
  margin-top: 40px;
  padding: 24px 4px;
  box-sizing: border-box; }

.post h2.title-style02 {
  color: #90b023;
  font-size: 24px;
  border-left: 4px solid #90b023;
  border-bottom: 2px solid #90b023;
  line-height: 1.5;
  padding-left: 40px;
  margin-top: 40px;
  margin-bottom: 40px; }

.post h3.title-style01 {
  color: #90b023;
  font-size: 26px;
  border-top: 2px solid #90b023;
  border-bottom: 2px solid #90b023;
  border-left: none;
  line-height: 1.5;
  background: url("/anidone/wp-content/themes/storefront/common/images/title01_bg.png");
  background-position: left center;
  margin-bottom: 40px;
  margin-top: 40px;
  padding: 24px 4px;
  box-sizing: border-box; }

.post h3.title-style02 {
  color: #90b023;
  font-size: 24px;
  border-left: 4px solid #90b023;
  border-bottom: 2px solid #90b023;
  line-height: 1.5;
  padding-left: 40px;
  margin-top: 40px;
  margin-bottom: 40px; }

.post .title-style01 {
  color: #90b023;
  font-size: 26px;
  border-top: 2px solid #90b023;
  border-bottom: 2px solid #90b023;
  line-height: 1.5;
  background: url("/anidone/wp-content/themes/storefront/common/images/title01_bg.png");
  background-position: left center;
  margin-bottom: 40px;
  margin-top: 40px;
  padding: 24px 4px;
  box-sizing: border-box; }

.post .title-style02 {
  color: #90b023;
  font-size: 24px;
  border-left: 4px solid #90b023;
  border-bottom: 2px solid #90b023;
  line-height: 1.5;
  padding-left: 40px;
  margin-top: 40px;
  margin-bottom: 40px; }

.post .strong {
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5; }

.post .chushaku {
  color: #666666;
  font-size: 16px;
  padding: 0 36px;
  position: relative;
  border-left: 3px solid #c0c0c0;
  border-right: 3px solid #c0c0c0;
  margin: 32px 0px 64px 0px;
  line-height: 1.5; }
  .post .chushaku strong {
    font-size: 18px; }
  .post .chushaku ul li {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 8px; }

.post .chushaku_head::before {
  width: 24px;
  height: 3px;
  position: absolute;
  right: -2px;
  top: 0px;
  background: #c0c0c0;
  display: block;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  content: ""; }

.post .chushaku_head::after {
  width: 24px;
  height: 3px;
  position: absolute;
  left: -2px;
  top: 0%;
  background: #c0c0c0;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
  display: block;
  content: ""; }

.post .chushaku_bottom::before {
  width: 24px;
  height: 3px;
  position: absolute;
  right: -2px;
  bottom: 0px;
  background: #c0c0c0;
  display: block;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  content: ""; }

.post .chushaku_bottom::after {
  width: 24px;
  height: 3px;
  position: absolute;
  left: -2px;
  bottom: 0%;
  background: #c0c0c0;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  display: block;
  content: ""; }

.post .category_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 60px; }
  .post .category_wrap p {
    font-size: 12px; }
    .post .category_wrap p a {
      border: 2px solid #ff8731;
      padding: 4px 16px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      border-radius: 10px; }
      .post .category_wrap p a::before {
        content: "";
        width: 20px;
        height: 20px;
        display: block;
        background: url("/anidone/wp-content/themes/storefront/common/images/tag.png");
        background-repeat: no-repeat;
        background-size: 16px; }

.post .post-categories {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  .post .post-categories li {
    color: #b6b6b6;
    border: 1px solid #b6b6b6;
    width: auto;
    padding: 0 4px;
    height: 32px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 16px; }
    .post .post-categories li a {
      color: #b6b6b6; }

.post .qa_block {
  position: relative;
  padding-left: 32px;
  font-size: 16px;
  line-height: 1.7;
  margin-top: 16px; }
  .post .qa_block:before {
    content: "A.";
    position: absolute;
    height: 100%;
    width: 32px;
    left: 0;
    top: 3px; }

.post .float_img_clear tr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  .post .float_img_clear tr:nth-child(n+2) {
    margin-top: 14px; }
  @media only screen and (max-width: 480px) {
    .post .float_img_clear tr {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      margin-bottom: 16px; } }
  .post .float_img_clear tr td {
    font-size: 16px;
    line-height: 1.5;
    padding: 0;
    background: none; }
    @media only screen and (max-width: 480px) {
      .post .float_img_clear tr td strong {
        display: block;
        margin: 8px 0; } }
    .post .float_img_clear tr td:first-child {
      padding-right: 36px;
      min-width: 220px; }
      @media only screen and (max-width: 480px) {
        .post .float_img_clear tr td:first-child {
          padding-right: 0px; } }
      .post .float_img_clear tr td:first-child img {
        max-width: 100%;
        height: auto;
        margin: 0 auto 14px auto; }

.post .page_link_wrap ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 5px;
  border: 1px solid #9d9d9d;
  margin-top: 60px; }
  @media only screen and (max-width: 480px) {
    .post .page_link_wrap ul {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      border: none; } }
  .post .page_link_wrap ul li {
    width: 50%; }
    @media only screen and (max-width: 480px) {
      .post .page_link_wrap ul li {
        width: 100%;
        border-radius: 5px;
        border: 1px solid #9d9d9d;
        margin-bottom: 8px; } }
    .post .page_link_wrap ul li a {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; }
      .post .page_link_wrap ul li a div {
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        padding: 6px; }
        .post .page_link_wrap ul li a div .title {
          font-size: 14px;
          line-height: 1.2;
          margin-bottom: 0; }
        .post .page_link_wrap ul li a div .img {
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center;
          margin-bottom: 0; }
          .post .page_link_wrap ul li a div .img img {
            margin: 0; }
      .post .page_link_wrap ul li a .prev_mark, .post .page_link_wrap ul li a .next_mark {
        background: #90b023;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        margin-bottom: 0; }
        .post .page_link_wrap ul li a .prev_mark::before, .post .page_link_wrap ul li a .next_mark::before {
          content: "";
          display: block;
          width: 20px;
          height: 20px;
          background-image: url("/anidone/wp-content/themes/storefront/common/images/arrow_green.png"); }
    .post .page_link_wrap ul li.prev {
      border-right: 1px solid #9d9d9d; }
      .post .page_link_wrap ul li.prev .prev_mark::before {
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg); }
    .post .page_link_wrap ul li.next a {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
      -webkit-flex-direction: row-reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse; }
    .post .page_link_wrap ul li.next div {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
      -webkit-flex-direction: row-reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse; }
    .post .page_link_wrap ul li .img {
      width: 100px;
      height: 60px;
      overflow: hidden;
      padding: 4px;
      box-sizing: border-box; }
      .post .page_link_wrap ul li .img img {
        width: 120%; }

.post .supporter_link {
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  border: 1px solid #666;
  padding: 24px;
  box-sizing: border-box;
  margin-bottom: 16px; }
  .post .supporter_link span {
    border: 1px solid #666;
    padding: 4px 6px;
    margin-right: 8px;
    display: inline-block; }
    @media only screen and (max-width: 480px) {
      .post .supporter_link span {
        display: table;
        margin-bottom: 4px; } }
  .post .supporter_link img {
    max-height: 200px;
    width: auto; }

.post .donate_link_wrap a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 130px;
  border: 2px solid #fff;
  border-radius: 5px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
  padding: 0 34px;
  position: relative;
  margin-bottom: 24px; }
  @media only screen and (max-width: 480px) {
    .post .donate_link_wrap a {
      padding: 0 8px;
      height: 80px; } }
  .post .donate_link_wrap a span {
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    display: block; }
    .post .donate_link_wrap a span.big {
      font-size: 29px; }
      @media only screen and (max-width: 480px) {
        .post .donate_link_wrap a span.big {
          font-size: 20px;
          margin-top: 4px; } }
  .post .donate_link_wrap a.matomete {
    background-color: #ff9731; }
    .post .donate_link_wrap a.matomete::before {
      content: url("/anidone/wp-content/themes/storefront/common/images/icon_box.png");
      display: block;
      margin-right: 24px; }
      @media only screen and (max-width: 480px) {
        .post .donate_link_wrap a.matomete::before {
          content: "";
          width: 48px;
          height: 48px;
          background-image: url("/anidone/wp-content/themes/storefront/common/images/icon_box.png");
          background-size: contain;
          background-repeat: no-repeat;
          margin-right: 8px; } }
  .post .donate_link_wrap a.katsudou {
    background-color: #bb8559; }
    .post .donate_link_wrap a.katsudou::before {
      content: url("/anidone/wp-content/themes/storefront/common/images/icon_dakko.png");
      display: block;
      margin-right: 24px; }
      @media only screen and (max-width: 480px) {
        .post .donate_link_wrap a.katsudou::before {
          content: "";
          width: 48px;
          height: 48px;
          background-image: url("/anidone/wp-content/themes/storefront/common/images/icon_dakko.png");
          background-size: contain;
          background-repeat: no-repeat;
          margin-right: 8px; } }
  .post .donate_link_wrap a.nintei {
    background-color: #67a8ac; }
    .post .donate_link_wrap a.nintei::before {
      content: url("/anidone/wp-content/themes/storefront/common/images/icon_select.png");
      display: block;
      margin-right: 24px; }
      @media only screen and (max-width: 480px) {
        .post .donate_link_wrap a.nintei::before {
          content: "";
          width: 48px;
          height: 48px;
          background-image: url("/anidone/wp-content/themes/storefront/common/images/icon_select.png");
          background-size: contain;
          background-repeat: no-repeat;
          margin-right: 8px; } }
  .post .donate_link_wrap a.anidone {
    background-color: #90b023; }
    .post .donate_link_wrap a.anidone::before {
      content: url("/anidone/wp-content/themes/storefront/common/images/icon_anidone.png");
      display: block;
      margin-right: 24px; }
      @media only screen and (max-width: 480px) {
        .post .donate_link_wrap a.anidone::before {
          content: "";
          width: 48px;
          height: 48px;
          background-image: url("/anidone/wp-content/themes/storefront/common/images/icon_anidone.png");
          background-size: contain;
          background-repeat: no-repeat;
          margin-right: 8px; } }

.post .free_donate_table tr td:first-child {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center; }

.post .free_donate_table tr {
  border-bottom: 1px solid #ccc;
  padding: 8px 0 18px 0; }
  .post .free_donate_table tr p {
    margin-bottom: 0; }
  @media only screen and (max-width: 480px) {
    .post .free_donate_table tr {
      margin-top: 14px !important; } }

.post .free_donate_table td img {
  width: auto !important; }

.post .free_donate_table td p span {
  margin: 8px 0 20px 0;
  display: inline-block; }

.post .table-style-green th, .post .table-style-green td {
  border-collapse: collapse;
  border: 1px solid #90b023;
  font-size: 14px;
  padding: 8px;
  vertical-align: middle; }

.post .table-style-green th {
  background: none;
  color: #90b023;
  text-align: center; }

.post .table-style-green .table-style01_tit {
  color: #90b023;
  min-width: 84px;
  text-align: center; }

.post.page-collabo .title {
  font-weight: bold; }

.post.page-collabo .read {
  padding: 0 8px; }

.post .wp-caption .wp-caption-text {
  text-align: left;
  font-style: normal !important;
  border-bottom: none !important;
  padding: 1em 0; }

.post .gallery .gallery-item {
  padding: 4px; }

.post .gallery .gallery-item .gallery-caption {
  text-align: center;
  font-style: normal !important;
  border-bottom: none !important;
  padding: 1em 0; }

.content-donate .read_text {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 40px; }

.content-donate .donate_link_wrap a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 130px;
  border: 2px solid #fff;
  border-radius: 5px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
  padding: 0 34px;
  position: relative;
  margin-bottom: 24px; }
  @media only screen and (max-width: 480px) {
    .content-donate .donate_link_wrap a {
      padding: 0 8px;
      height: 80px; } }
  .content-donate .donate_link_wrap a span {
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    display: block; }
    .content-donate .donate_link_wrap a span.big {
      font-size: 29px; }
      @media only screen and (max-width: 480px) {
        .content-donate .donate_link_wrap a span.big {
          font-size: 20px;
          margin-top: 4px; } }
  .content-donate .donate_link_wrap a.matomete {
    background-color: #ff9731; }
    .content-donate .donate_link_wrap a.matomete::before {
      content: url("../images/icon_box.png");
      display: block;
      margin-right: 24px; }
      @media only screen and (max-width: 480px) {
        .content-donate .donate_link_wrap a.matomete::before {
          content: "";
          width: 48px;
          height: 48px;
          background-image: url("../images/icon_box.png");
          background-size: contain;
          background-repeat: no-repeat;
          margin-right: 8px; } }
  .content-donate .donate_link_wrap a.katsudou {
    background-color: #bb8559; }
    .content-donate .donate_link_wrap a.katsudou::before {
      content: url("../images/icon_dakko.png");
      display: block;
      margin-right: 24px; }
      @media only screen and (max-width: 480px) {
        .content-donate .donate_link_wrap a.katsudou::before {
          content: "";
          width: 48px;
          height: 48px;
          background-image: url("../images/icon_dakko.png");
          background-size: contain;
          background-repeat: no-repeat;
          margin-right: 8px; } }
  .content-donate .donate_link_wrap a.nintei {
    background-color: #67a8ac; }
    .content-donate .donate_link_wrap a.nintei::before {
      content: url("../images/icon_select.png");
      display: block;
      margin-right: 24px; }
      @media only screen and (max-width: 480px) {
        .content-donate .donate_link_wrap a.nintei::before {
          content: "";
          width: 48px;
          height: 48px;
          background-image: url("../images/icon_select.png");
          background-size: contain;
          background-repeat: no-repeat;
          margin-right: 8px; } }
  .content-donate .donate_link_wrap a.anidone {
    background-color: #90b023; }
    .content-donate .donate_link_wrap a.anidone::before {
      content: url("../images/icon_anidone.png");
      display: block;
      margin-right: 24px; }
      @media only screen and (max-width: 480px) {
        .content-donate .donate_link_wrap a.anidone::before {
          content: "";
          width: 48px;
          height: 48px;
          background-image: url("../images/icon_anidone.png");
          background-size: contain;
          background-repeat: no-repeat;
          margin-right: 8px; } }

.content-donate .link_btn_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 40px 0; }
  @media only screen and (max-width: 480px) {
    .content-donate .link_btn_wrap {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; } }
  .content-donate .link_btn_wrap a {
    margin: 0 24px 0 0; }
    @media only screen and (max-width: 480px) {
      .content-donate .link_btn_wrap a {
        margin: 0 0 16px 0; } }

.content-donate .koujo_wrap {
  width: 100%; }

.partner_block {
  padding: 16px;
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .partner_block a {
    margin: 8px;
    max-width: 19%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; }
    @media only screen and (max-width: 480px) {
      .partner_block a {
        max-width: 47%;
        margin: 8px 0; } }
    .partner_block a img {
      max-width: 100%;
      width: 100%; }
  .partner_block::after {
    content: "";
    display: block;
    width: auto;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto; }

.content-kojin .link_block {
  border-radius: 5px;
  border: 2px solid #9d9d9d;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
  width: 100%;
  position: relative;
  padding: 48px 28px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 28px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  @media only screen and (max-width: 480px) {
    .content-kojin .link_block {
      padding: 20px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; } }
  .content-kojin .link_block .img {
    width: 150px;
    margin-right: 32px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 150px;
        -ms-flex: 0 0 150px;
            flex: 0 0 150px; }
    @media only screen and (max-width: 480px) {
      .content-kojin .link_block .img {
        width: 100%;
        margin-bottom: 16px;
        margin-right: 0; }
        .content-kojin .link_block .img img {
          width: 100%; } }
  .content-kojin .link_block .text .title {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 24px; }

.content-kojin .btn_warp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 48px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .content-kojin .btn_warp .detail_link_style {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex; }

.content-login .woocommerce-privacy-policy-text a, .title-my-account .woocommerce-privacy-policy-text a {
  font-size: 16px; }

.content-login h2, .title-my-account h2 {
  border-left: 4px solid #91b11f;
  border-bottom: 1px solid #91b11f;
  padding: 6px 0px 6px 24px;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
  color: #91b11f; }

.content-login label, .title-my-account label {
  font-weight: bold;
  line-height: 2; }

.content-login .form-row, .title-my-account .form-row {
  margin-bottom: 12px; }

.content-login button, .title-my-account button {
  margin-top: 12px; }

.content-login .lost_password.old_user, .title-my-account .lost_password.old_user {
  margin-top: 48px;
  margin-bottom: 48px;
  border-radius: 5px;
  border: 2px solid #231815;
  color: #333333;
  padding: 8px;
  box-sizing: border-box;
  font-size: 16px;
  width: 224%;
  max-width: 820px;
  padding: 30px;
  box-sizing: border-box; }
  @media (max-width: 768px) {
    .content-login .lost_password.old_user, .title-my-account .lost_password.old_user {
      margin-top: 0;
      width: 100%; } }
  .content-login .lost_password.old_user a, .title-my-account .lost_password.old_user a {
    font-size: 16px; }
  .content-login .lost_password.old_user strong, .title-my-account .lost_password.old_user strong {
    font-size: 22px;
    color: #e60012;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .content-login .lost_password.old_user strong:before, .title-my-account .lost_password.old_user strong:before {
      content: "";
      height: 38px;
      width: 36px;
      background: url("../images/caution_icon.png");
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center center;
      display: block;
      margin-right: 12px; }
  .content-login .lost_password.old_user span, .title-my-account .lost_password.old_user span {
    display: block;
    margin-top: 12px; }

.status-publish h1 {
  display: none; }

.status-publish h2 {
  border-left: 4px solid #91b11f;
  border-bottom: 1px solid #91b11f;
  padding: 6px 0px 6px 24px;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
  color: #91b11f; }

.status-publish label {
  font-weight: bold;
  line-height: 2; }

.status-publish .form-row {
  margin-bottom: 12px; }

.woocommerce-MyAccount-content .order-again {
  display: none; }

.woocommerce-MyAccount-content label {
  font-weight: bold;
  line-height: 2; }

.woocommerce-MyAccount-content fieldset {
  margin-top: 28px; }
  .woocommerce-MyAccount-content fieldset legend {
    font-weight: bold;
    line-height: 2;
    font-size: 14px; }

.woocommerce-MyAccount-content #newsletter_field label {
  font-weight: normal;
  line-height: 1.5; }

.woocommerce-MyAccount-content .woocommerce-Button {
  margin-top: 42px; }

.woocommerce-MyAccount-content .col2-set.addresses {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column; }

.woocommerce-MyAccount-content .woocommerce-Addresses {
  margin-top: 28px; }
  .woocommerce-MyAccount-content .woocommerce-Addresses .col-1, .woocommerce-MyAccount-content .woocommerce-Addresses .col-2 {
    width: 100%; }
  .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address-title a {
      margin-top: 0; }
    .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address-title h3 {
      font-size: 14px;
      font-weight: bold; }
  .woocommerce-MyAccount-content .woocommerce-Addresses address {
    font-size: 14px; }

.woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .form-row {
  margin-bottom: 12px; }

.view_cart_btn {
  width: 82px;
  height: 94px;
  overflow: hidden;
  position: relative; }

.cart_icon {
  position: relative;
  right: 0px;
  -webkit-transition: all .3s;
          transition: all .3s;
  cursor: pointer; }
  .cart_icon:hover {
    right: 0; }

.cart_widget {
  position: absolute;
  left: 62px;
  top: 16px;
  width: 188px;
  background: #fff;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1); }
  .cart_widget .widget-area {
    width: 100%; }
    .cart_widget .widget-area .widget-title {
      display: none; }
    .cart_widget .widget-area .woocommerce-mini-cart-item {
      padding: 0;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 14px; }
      .cart_widget .widget-area .woocommerce-mini-cart-item a {
        font-size: 12px;
        pointer-events: none;
        text-decoration: none;
        color: #666666;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        position: static; }
        .cart_widget .widget-area .woocommerce-mini-cart-item a.remove {
          pointer-events: all;
          color: #fff;
          margin-right: 8px; }
          .cart_widget .widget-area .woocommerce-mini-cart-item a.remove::before {
            content: "✕";
            color: #fff;
            font-weight: bold;
            background-color: #ff9731;
            width: 18px;
            height: 18px;
            position: static; }
    .cart_widget .widget-area .woocommerce-mini-cart__total {
      display: none; }
    .cart_widget .widget-area .button.checkout.wc-forward {
      display: none; }
    .cart_widget .widget-area .woocommerce-mini-cart__buttons .wc-forward {
      height: 40px;
      width: 100%;
      background: #ff9731;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      padding: 0;
      color: #fff;
      font-size: 16px; }
      .cart_widget .widget-area .woocommerce-mini-cart__buttons .wc-forward::after {
        content: ""; }
    .cart_widget .widget-area .product_list_widget img {
      display: none; }
    .cart_widget .widget-area .product_list_widget .quantity {
      display: none; }
  .cart_widget .cart .count {
    position: absolute;
    left: -42px;
    top: 28px;
    color: #fff;
    background: #ff0000;
    border-radius: 16px;
    height: 16px;
    width: 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; }
            

.content-history p img {
  width: 100%;
  margin: 50px 0 !important; }

.content-history h4 {
  color: #90b023;
  font-size: 24px;
  line-height: 30px;
  font-weight: bold;
  position: relative;
  padding-left: 84px;
  height: 60px;
  display: inline-block;
  border-bottom: 2px solid #90b023;
  padding-bottom: 24px;
  box-sizing: content-box;
  counter-increment: cap; }
  @media only screen and (max-width: 1064px) {
    .content-history h4 {
      height: auto; } }
  .content-history h4:before {
    content: counter(cap, decimal-leading-zero);
    font-size: 50px;
    left: 0;
    top: 14px;
    position: absolute;
    display: block;
    line-height: 1; }
  .content-history h4:after {
    content: "Chapter";
    font-size: 14px;
    position: absolute;
    left: 0;
    top: -4px;
    line-height: 1; }

.content-history h4 + h5::before {
  display: none; }

.content-history h5 {
  color: #90b023;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  position: relative;
  padding: 34px 0;
  margin: 0; }
  .content-history h5::before {
    content: "";
    height: 2px;
    background: #90b023;
    width: 90px;
    position: absolute;
    top: 0; }
  @media only screen and (max-width: 480px) {
    .content-history h5 {
      line-height: 1.5; } }

@media only screen and (max-width: 480px) {
  .content-history .cap_head {
    padding-right: 24px; } }

.content-history .cap_head::after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: -.125em;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  line-height: inherit;
  vertical-align: baseline;
  content: "\f107";
  margin-left: 1em;
  color: #ff8731;
  position: absolute;
  right: 12px;
  top: 20px; }
  @media only screen and (max-width: 480px) {
    .content-history .cap_head::after {
      top: 50%;
      margin-top: -10px; } }

.member_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
  .member_wrap::after {
    content: "";
    display: block;
    width: 30%; }
  .member_wrap .member_block {
    width: calc(33.3% - 19px);
    border: 1px solid #ccc;
    box-sizing: border-box;
    margin-right: 28px;
    margin-bottom: 28px;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1); }
    @media only screen and (max-width: 480px) {
      .member_wrap .member_block {
        width: 100%;
        margin-right: 0; } }
    .member_wrap .member_block:nth-child(n+3) {
      margin-right: 0px; }
    .member_wrap .member_block .img {
      width: 100%; }
      .member_wrap .member_block .img img {
        width: 100%; }
    .member_wrap .member_block .text {
      padding: 8px;
      overflow-y: scroll;
      height: 240px; }
      .member_wrap .member_block .text .name {
        font-weight: bold; }
      .member_wrap .member_block .text p {
        margin-bottom: 16px; }
      .member_wrap .member_block .text span {
        border: 1px solid #666;
        padding: 4px 6px; }

.page-iikoto .archive_block {
  width: calc(33.3% - 19px) !important;
  height: auto !important; }
  @media only screen and (max-width: 1279px) {
    .page-iikoto .archive_block {
      width: calc(50% - 20px) !important;
      margin-right: 0 !important; } }
  @media only screen and (max-width: 480px) {
    .page-iikoto .archive_block {
      width: 100% !important;
      margin-right: 0px !important; } }
  .page-iikoto .archive_block .company {
    margin: 0 20px;
    box-sizing: border-box; }
    .page-iikoto .archive_block .company a, .page-iikoto .archive_block .company div {
      height: 110px;
      width: 100%;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -ms-flex-align: start;
              align-items: flex-start;
      margin: 0; }
    .page-iikoto .archive_block .company span {
      color: #90b023;
      display: block; }
    .page-iikoto .archive_block .company .catch {
      font-size: 12px;
      margin-bottom: 16px; }
    .page-iikoto .archive_block .company .company_name {
      font-size: 18px; }
  .page-iikoto .archive_block .title {
    margin: 0px;
    padding: 8px !important;
    display: flex;
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
  }
    .page-iikoto .archive_block .title a:after {
      content: ">";
      transform: scaleX(.6);
      margin: 0;
    }
    .page-iikoto .archive_block .title a {
      height: 70px;
      width: 100%;
      font-size: 14px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      margin: 0;
      border: 1px solid #666;
      border-radius: 10px;
      padding: 8px; }
    .page-iikoto .archive_block .title a {
      color: #666; }
  .page-iikoto .archive_block .link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    min-height: 74px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 12px 0; }
    .page-iikoto .archive_block .link a, .page-iikoto .archive_block .link p {
      width: 100%;
      height: 100%;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 0 20px;
      margin: 0; }

.title-my-account .woocommerce {
  max-width: 1088px;
  margin: 0 auto; }
  .title-my-account .woocommerce .shop_table tr th, .title-my-account .woocommerce .shop_table tr td {
    padding: 8px;
    vertical-align: middle; }

.title-my-account .woocommerce-MyAccount-content address {
  font-size: 16px;
  line-height: 1.5; }

.title-my-account .woocommerce-MyAccount-content h3 {
  border-left: 4px solid #91b11f;
  border-bottom: 1px solid #91b11f;
  padding: 6px 0px 6px 24px;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
  color: #91b11f; }

.title-my-account .woocommerce-MyAccount-content .my_account_orders tr th, .title-my-account .woocommerce-MyAccount-content .my_account_orders tr td {
  padding: 8px;
  vertical-align: middle; }

.title-my-account .woocommerce-MyAccount-content .my_account_orders .button, .title-my-account .woocommerce-MyAccount-content .woocommerce-MyAccount-downloads .button {
  min-width: 80px; }

.title-my-account .woocommerce-MyAccount-content .woocommerce-MyAccount-orders tr th, .title-my-account .woocommerce-MyAccount-content .woocommerce-MyAccount-orders tr td {
  padding: 8px; }

.title-my-account .woocommerce-MyAccount-content .woocommerce-orders-table__row--status-processing tr th, .title-my-account .woocommerce-MyAccount-content .woocommerce-orders-table__row--status-processing tr td {
  vertical-align: middle;
  padding: 8px; }

.title-my-account .woocommerce-MyAccount-content .subscription_details tr td a.button {
  margin-bottom: 4px; }

.title-my-account .woocommerce-MyAccount-content .woocommerce-table--order-details tr th, .title-my-account .woocommerce-MyAccount-content .woocommerce-table--order-details tr td, .title-my-account .woocommerce-MyAccount-content .order_details tr th, .title-my-account .woocommerce-MyAccount-content .order_details tr td {
  vertical-align: middle;
  padding: 8px; }

.title-my-account .woocommerce-MyAccount-content .woocommerce-table--order-details .product-name a, .title-my-account .woocommerce-MyAccount-content .order_details .product-name a {
  pointer-events: none;
  color: #6d6d6d; }

.title-my-account .woocommerce-MyAccount-content .woocommerce-table--order-details tfoot tr:nth-child(2), .title-my-account .woocommerce-MyAccount-content .order_details tfoot tr:nth-child(2) {
  display: none; }

@media only screen and (max-width: 480px) {
  .title-contact .wpcf7-form p, .title-supporting_member .wpcf7-form p {
    margin-bottom: 16px; } }

.title-contact .wpcf7-form label, .title-supporting_member .wpcf7-form label {
  line-height: 2;
  margin-top: 4px;
  font-weight: bold;
  font-size: 16px; }
  @media only screen and (max-width: 480px) {
    .title-contact .wpcf7-form label, .title-supporting_member .wpcf7-form label {
      line-height: 1.5; } }
  .title-contact .wpcf7-form label abbr, .title-supporting_member .wpcf7-form label abbr {
    color: #ff8731;
    font-weight: bold;
    box-sizing: border-box;
    text-decoration: none;
    border-bottom: none !important; }

.title-contact .wpcf7-form input, .title-supporting_member .wpcf7-form input {
  background: #fff;
  border-radius: 5px;
  border: 1px solid #dcdcdc;
  margin-top: -7px; }
  @media only screen and (max-width: 480px) {
    .title-contact .wpcf7-form input, .title-supporting_member .wpcf7-form input {
      width: 100%;
      margin-top: -3px; } }

@media only screen and (max-width: 480px) {
  .title-contact .wpcf7-form input[type="radio"], .title-supporting_member .wpcf7-form input[type="radio"] {
    width: auto; } }

.title-contact .wpcf7-form textarea, .title-supporting_member .wpcf7-form textarea {
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 5px; }

.title-contact .wpcf7-form select, .title-supporting_member .wpcf7-form select {
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  margin: 0;
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  box-sizing: border-box;
  border: 1px solid #dcdcdc;
  width: 100%;
  padding: 0.6180469716em;
  background: url("../images/form_select.png");
  background-repeat: no-repeat;
  background-position: calc(100% - 8px) center; }

.title-contact .wpcf7-form input[type="submit"], .title-supporting_member .wpcf7-form input[type="submit"] {
  min-width: 240px;
  width: auto;
  height: 76px;
  padding: 0 60px;
  background-color: #ff9731;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
  color: #fff;
  margin: 0 auto;
  border-radius: 5px;
  border: 1px solid #fff;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  margin: 48px auto 0 auto !important; }
  .title-contact .wpcf7-form input[type="submit"]:before, .title-supporting_member .wpcf7-form input[type="submit"]:before {
    content: url(../images/link_arrow.png);
    height: 20px;
    width: 20px;
    margin-top: -1px;
    margin-right: 8px; }

.title-contact .wpcf7-form div, .title-supporting_member .wpcf7-form div {
  font-size: 16px;
  line-height: 1.5; }
  .title-contact .wpcf7-form div .wpcf7-response-output, .title-supporting_member .wpcf7-form div .wpcf7-response-output {
    padding: 1em; }

.title-contact .wpcf7-form span.wpcf7-not-valid-tip, .title-supporting_member .wpcf7-form span.wpcf7-not-valid-tip {
  margin-top: 6px; }

.title-contact .wpcf7-form span.wpcf7-list-item, .title-supporting_member .wpcf7-form span.wpcf7-list-item {
  line-height: 2; }

.title-contact .wpcf7-form .radio-558 .wpcf7-list-item, .title-supporting_member .wpcf7-form .radio-558 .wpcf7-list-item {
  display: block; }

.title-contact .wpcf7-recaptcha, .title-supporting_member .wpcf7-recaptcha {
  margin: 64px auto 32px; }

.post .colabo_ver2 p img {
  margin: 0px; }

.post .colabo_ver2 p img.aligncenter {
  margin: 0px auto; }

.colabo_ver2 {
  padding: 0 80px; }
  @media only screen and (max-width: 480px) {
    .colabo_ver2 {
      padding: 0; } }
  .colabo_ver2 .title_block {
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    margin-bottom: 50px; }
    .colabo_ver2 .title_block .title_block_inner {
      border-top: 1px solid #000;
      border-bottom: 1px solid #000;
      margin: 8px 0;
      padding: 36px 0;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; }
      @media only screen and (max-width: 480px) {
        .colabo_ver2 .title_block .title_block_inner {
          padding: 16px 0; } }
      .colabo_ver2 .title_block .title_block_inner h2 {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        font-size: 36px;
        margin: 8px auto 24px auto;
        border: none;
        color: #000;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column; }
        @media only screen and (max-width: 480px) {
          .colabo_ver2 .title_block .title_block_inner h2 {
            font-size: 24px; } }
        .colabo_ver2 .title_block .title_block_inner h2 span {
          font-size: 20px;
          font-weight: bold; }
        .colabo_ver2 .title_block .title_block_inner h2 .img {
          max-width: 480px;
          margin: 16px auto; }
          .colabo_ver2 .title_block .title_block_inner h2 .img img {
            max-width: 100%; }
          @media only screen and (max-width: 480px) {
            .colabo_ver2 .title_block .title_block_inner h2 .img {
              margin-right: 0px;
              margin-bottom: 16px; } }
      .colabo_ver2 .title_block .title_block_inner p {
        color: #FF8731;
        font-size: 18px;
        margin-bottom: 0px; }
        @media only screen and (max-width: 480px) {
          .colabo_ver2 .title_block .title_block_inner p {
            font-size: 16px;
            text-align: center; } }
  .colabo_ver2 .read_content {
    margin-bottom: 46px; }
    .colabo_ver2 .read_content h4 {
      font-size: 22px;
      margin-bottom: 16px; }
  .colabo_ver2 .point_content_wrap {
    border: 4px solid #90B023;
    box-sizing: border-box;
    padding: 70px 70px 42px 70px;
    position: relative;
    border-radius: 5px;
    margin-bottom: 54px; }
    @media only screen and (max-width: 480px) {
      .colabo_ver2 .point_content_wrap {
        padding: 60px 24px 24px 24px; } }
    .colabo_ver2 .point_content_wrap h4 {
      width: 194px;
      height: 42px;
      background: url(../images/point_title_bg.png);
      background-size: cover;
      line-height: 42px;
      font-size: 16px;
      position: absolute;
      left: 0;
      top: 0;
      padding-left: 56px;
      color: #fff; }
    .colabo_ver2 .point_content_wrap .point_block .title {
      font-size: 18px;
      color: #90B023; }
  .colabo_ver2 .point_content span, .colabo_ver2 .free_content span {
    font-size: 16px;
    line-height: 1.2; }
  .colabo_ver2 .point_content .col-sm-4, .colabo_ver2 .free_content .col-sm-4 {
    font-size: 16px;
    line-height: 1.2; }
  .colabo_ver2 .free_content_wrap .free_content_block {
    margin-bottom: 60px; }
    .colabo_ver2 .free_content_wrap .free_content_block h4 {
      line-height: 2;
      font-size: 20px;
      padding: 9px 34px;
      position: relative;
      width: 100%;
      box-sizing: border-box;
      border-top: 1px solid #000;
      border-bottom: 1px solid #000;
      margin-bottom: 24px;
      color: #000; }
      @media only screen and (max-width: 480px) {
        .colabo_ver2 .free_content_wrap .free_content_block h4 {
          padding: 9px 16px; } }
      .colabo_ver2 .free_content_wrap .free_content_block h4:before {
        content: "";
        width: 1px;
        height: calc(100% + 10px);
        display: block;
        position: absolute;
        left: 4px;
        bottom: -5px;
        background: #000; }
      .colabo_ver2 .free_content_wrap .free_content_block h4:after {
        content: "";
        width: 1px;
        height: calc(100% + 10px);
        display: block;
        position: absolute;
        background: #000;
        right: 4px;
        bottom: -5px; }
