@charset "UTF-8";
/*
**  ===================================================================
**  各種設定：var,reset,base-font,break-point
**  ===================================================================
*/
/**
 * Foundation
**/
/**
 * WIDTH
**/
/**
 * 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(//fonts.googleapis.com/css?family=Roboto:400,700,900);

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;
}

.pc {
    display: block;
}

@media only screen and (max-width: 480px) {
    .pc {
        display: none;
    }
}

.sp {
    display: none;
}

@media only screen and (max-width: 480px) {
    .sp {
        display: block;
    }
}

html {
    width: 100%;
    font-size: 14px;
    border-top: 4px solid #469628;
}

@media only screen and (max-width: 480px) {
    html {
        border-top: none;
    }
}

body {
    color: #231815;
    font-family: 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
    position: relative;
}

a {
    text-decoration: none;
    -webkit-transition: all .2s;
    transition: all .2s;
    color: #0066cc;
}

a:hover {
    opacity: 0.8;
    -webkit-transition: all .2s;
    transition: all .2s;
}

a:visited {
    color: #990099;
}

ul {
    list-style: none;
}

main {
    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;
    -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;
    width: 980px;
    margin: 0 auto;
}

main.fixed {
    margin-top: 108px;
}

@media only screen and (max-width: 480px) {
    main.fixed {
        margin-top: 70px;
    }
}

@media only screen and (max-width: 480px) {
    main {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 70px;
    }
}

main .content {
    width: 720px;
}

@media only screen and (max-width: 480px) {
    main .content {
        width: 100%;
    }
}

.print_close {
    display: none;
}

.print_btn {
    float: right;
}

@media only screen and (max-width: 480px) {
    .print_btn {
        display: none;
    }
}

html.print {
    border-top: none;
}

html.print body {
    padding-top: 20px;
}

html.print .print_close {
    display: block;
    margin-top: 8px;
}

html.print .print_close a {
    color: #469628;
}

html.print .sidebar {
    display: none;
}

html.print .print_btn {
    display: none;
}

html.print .enquete_form {
    display: none;
}

html.print .top_banner {
    display: none;
}

html.print .breadcrumbs {
    display: none;
}

html.print .info_sec {
    display: none;
}

html.print .header_sec {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

html.print .header_sec .pc {
    display: none;
}

html.print footer {
    display: none;
}

html.print nav {
    display: none;
}

html.print main .content {
    width: 100%;
}

html.print main.fixed {
    margin-top: 24px;
}

html.print main {
    margin-top: 24px;
}

html.print .content.single .breadcrumbs {
    margin-bottom: 24px;
}

header {
    width: 980px;
    margin: 0 auto;
}

@media only screen and (max-width: 480px) {
    header {
        width: 100%;
    }
}

header .header_sec {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (max-width: 480px) {
    header .header_sec {
        box-shadow: 0 0 0 4px #d8eac6, 0 0 0 5px #469628;
        padding: 8px 10px 4px 16px;
        position: fixed;
        width: 100%;
        top: 0;
        background: #fff;
        z-index: 9;
        box-sizing: border-box;
        display: flex;
        align-items: center;
    }

    header .header_sec:before {
        content: "";
        display: block;
        position: absolute;
        height: 4px;
        width: 100%;
        top: 0;
        z-index: 10;
        background-color: #469628;
        left: 0;
    }

    header .header_sec .sp {
        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;
    }

    header .header_sec .sp .sp_icon {
        width: 58px;
        margin-right: 6px;
    }

    header .header_sec .sp .sp_icon img {
        width: 100%;
    }

    header .header_sec .sp #menu_btn {
        width: 58px;
    }

    header .header_sec .sp #menu_btn img {
        width: 100%;
    }

}

header h1 {
    margin-bottom: -4px;
}

header h1 img {
    width: 234px;
    height: auto;
}

@media only screen and (max-width: 480px) {
    header h1 {
        margin-bottom: 0;
    }

    header h1 img {
        width: auto;
        height: 26px;
    }
}

header .right_block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}

header .right_block .right_block_left {
    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: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

header .right_block .search {
    border-bottom: 1px solid #469628;
    width: 126px;
    padding: 0px 20px 4px 4px;
    box-sizing: border-box;
}

header .right_block .search form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}

header .right_block .search input {
    border: none;
    font-size: 12px;
}

header .right_block .search input:focus {
    outline: none;
}

header .right_block .search button {
    border: none;
    padding: 0;
    margin-left: -26px;
    background: transparent;
}

header .right_block .search button img {
    height: 14px;
    width: 14px;
}

header .right_block .contact {
    font-size: 13px;
    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: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-weight: bold;
    color: #469628;
    margin: 0 28px 8px 28px;
}

header .right_block .contact a {
    color: #469628;
}

header .right_block .contact:before {
    content: "";
    width: 14px;
    height: 14px;
    display: block;
    background: url("../images/icon_contact_arrow.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 2px;
}

header .right_block .tel {
    background: #d8eac6;
    padding: 10px 11px;
    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: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transition: all .2s;
    transition: all .2s;
}

header .right_block .tel:hover {
    opacity: 0.8;
    -webkit-transition: all .2s;
    transition: all .2s;
}

header .right_block .tel:after {
    content: "";
    width: 10px;
    height: 15px;
    display: block;
    background: url("../images/callcenter_arrow.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 10px;
}

header .right_block .tel .left p {
    font-size: 12px;
    color: #4d4d4d;
    font-weight: bold;
}

header .right_block .tel .left .number {
    font-size: 19px;
    font-family: "Roboto";
    color: #2f6e39;
}

header .right_block .tel .right {
    margin-left: 10px;
}

header .right_block .tel .right p {
    color: #469628;
    font-size: 9px;
    line-height: 12px;
    background: #fff;
    padding: 4px 9px;
    border-radius: 4px;
}

header nav {
    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: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 14px;
    margin-bottom: 24px;
}

header nav.fixed {
    position: fixed;
    top: 0;
    margin-top: 0;
    width: 980px;
    box-sizing: border-box;
    z-index: 100;
}

@media only screen and (max-width: 480px) {
    header nav {
        display: none;
    }
}

header nav .nav_block {
    width: 245px;
    height: 70px;
    background: #469628;
    color: #fff;
    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: 17px;
    position: relative;
    border-right: 1px solid #fff;
}

header nav .nav_block:last-child {
    border-right: none;
}

header nav .nav_block:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 8px 0 8px;
    border-color: #ffffff transparent transparent transparent;
    position: absolute;
    right: 16px;
}

header nav .nav_block:hover ul {
    top: 70px;
    -webkit-transition: all .2s;
    transition: all .2s;
}

header nav .nav_block ul {
    position: absolute;
    left: 0;
    top: 70px;
    height: 0;
    overflow: hidden;
    -webkit-transition: all .2s;
    transition: all .2s;
    background: #fff;
    z-index: 13;
}

header nav .nav_block ul li {
    height: 40px;
    width: 245px;
    border: 1px solid #808080;
    border-top: none;
    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: 0 16px;
    box-sizing: border-box;
}

header nav .nav_block ul li:hover {
    background: #f0f0f0;
}

header nav .nav_block ul li a {
    color: #000;
    width: 100%;
    height: 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;
    font-size: 14px;
}

header nav .nav_block ul li:before {
    content: "●";
    color: #469628;
    font-size: 8px;
    margin-right: 8px;
}

.info_sec {
  border: 1px solid #ff9439;
  height: 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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
  width: 100%;
  margin-bottom: 24px; }
  @media only screen and (max-width: 480px) {
    .info_sec {
      height: 80px;
      margin: 49px 16px 16px 16px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      position: relative;
      width: calc(100% - 32px); } }
  .info_sec .text_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;
    width: 100%; }
    @media only screen and (max-width: 480px) {
      .info_sec .text_block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
        width: 100%; } }
    .info_sec .text_block .title {
      background: #ff9439;
      color: #fff;
      font-size: 16px;
      font-weight: bold;
      width: 134px;
      height: 50px;
      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: 0 20px 20px 0;
      margin-right: 16px;
      -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) {
        .info_sec .text_block .title {
          width: calc(100%);
          border-radius: 0 0 0 0;
          height: 40px;
          margin-right: 0;
          font-weight: normal;
          -webkit-box-pack: start;
          -webkit-justify-content: flex-start;
              -ms-flex-pack: start;
                  justify-content: flex-start;
          box-sizing: border-box;
          padding: 0 0 0 20px; } }
    .info_sec .text_block .content_wrap {
      height: 40px;
      width: 100%;
      overflow-y: scroll; }
      @media only screen and (max-width: 480px) {
        .info_sec .text_block .content_wrap {
          height: 70px; } }

@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes ticker {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }
    .info_sec .text_block .ticker-parent {
      position: relative;
      width: 100%;
      height: 40px;
      overflow: hidden; }
    .info_sec .text_block .ticker-wrap {
      position: absolute;
      bottom: 0px;
      width: 100%;
      overflow: hidden;
      padding-left: 100%;
      box-sizing: content-box;
      height: 40px; }
      .info_sec .text_block .ticker-wrap .ticker {
        display: inline-block;
        white-space: nowrap;
        padding-right: 100%;
        height: 40px;
        box-sizing: content-box;
        -webkit-animation-iteration-count: infinite;
                animation-iteration-count: infinite;
        -webkit-animation-timing-function: linear;
                animation-timing-function: linear;
        -webkit-animation-name: ticker;
                animation-name: ticker;
        -webkit-animation-duration: 30s;
                animation-duration: 30s; }
    .info_sec .text_block p {
      line-height: 40px; }
      @media only screen and (max-width: 480px) {
        .info_sec .text_block p {
          font-size: 15px;
          /* height: 72px; */
          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: 16px 0; */ } }
  .info_sec a {
    color: #fff;
    font-weight: bold;
    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: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    box-sizing: border-box;
    background: #ff9439;
    padding: 0 8px 0 32px;
    width: 92px;
    height: 24px;
    border-radius: 5px;
    margin-right: 8px;
    position: relative; }
    @media only screen and (max-width: 480px) {
      .info_sec a {
        position: absolute;
        right: 0;
        top: 8px;
        border-radius: 2px;
        font-weight: normal;
        background: #fff;
        color: #ff9439; } }
    .info_sec a:after {
      content: "";
      width: 8px;
      height: 10px;
      display: block;
      background: url("../images/icon_arrow_o.png");
      background-size: contain;
      background-repeat: no-repeat; }

@media only screen and (max-width: 480px) {
  .page .info_sec, .single .info_sec {
    display: none; } }

@media only screen and (max-width: 480px) {
  .home.page .info_sec, .home .single .info_sec {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
  .home main {
    margin-top: 24px; } }

footer {
    width: 100%;
    background: #f0f0f0;
}

@media only screen and (max-width: 480px) {
    footer {
        width: 100%;
    }
}

footer .footer_link {
    border-bottom: 1px solid #b3b3b3;
}

footer .footer_link .inner {
    width: 980px;
    margin: 60px auto 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;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 480px) {
    footer .footer_link .inner {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        box-sizing: border-box;
        padding: 0 16px;
    }
}

footer .footer_link .inner div {
    max-width: 80%;
}

@media only screen and (max-width: 480px) {
    footer .footer_link .inner div {
        max-width: 100%;
    }
}

footer .footer_link .inner 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;
    padding: 30px 0;
    box-sizing: border-box;
}

@media only screen and (max-width: 480px) {
    footer .footer_link .inner ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 26px 0;
    }
}

footer .footer_link .inner ul li {
    padding: 0 26px;
    box-sizing: border-box;
    display: block;
    border-right: 1px solid #b3b3b3;
}

footer .footer_link .inner ul li:first-child {
    padding: 0 24px 0 0;
}

@media only screen and (max-width: 480px) {
    footer .footer_link .inner ul li:first-child {
        padding: 0;
    }
}

@media only screen and (max-width: 480px) {
    footer .footer_link .inner ul li {
        border-right: none;
    }
}

footer .footer_link .inner ul li:last-child {
    border-right: none;
}

footer .footer_link .inner ul li a {
    color: #469628;
    font-size: 13px;
    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) {
    footer .footer_link .inner ul li a {
        line-height: 25px;
    }
}

footer .footer_link .inner ul li a:before {
    content: "・";
    font-weight: bold;
    font-size: 16px;
    line-height: 13px;
    margin-top: 2px;
}

@media only screen and (max-width: 480px) {
    footer .footer_link .inner ul li a:before {
        content: "●";
        font-size: 12px;
        margin-right: 8px;
    }
}

footer .footer_link .inner ul li a:after {
    content: "";
    width: 8px;
    height: 12px;
    display: block;
    background: url("../images/arrow_thin.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 8px;
}

@media only screen and (max-width: 480px) {
    footer .footer_link .inner ul li a:after {
        display: none;
    }
}

footer .footer_link .inner .service_status {
    background: #fff;
    width: 220px;
    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;
    border-radius: 16px;
}

@media only screen and (max-width: 480px) {
    footer .footer_link .inner .service_status {
        width: 100%;
        height: 40px;
        margin-bottom: 24px;
    }
}

footer .footer_link .inner .service_status a {
    font-size: 14px;
    color: #469628;
    font-weight: bold;
    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 .footer_link .inner .service_status a {
        width: 100%;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        box-sizing: border-box;
        padding: 0 16px;
    }
}

footer .footer_link .inner .service_status a:before {
    content: "";
    width: 30px;
    height: 15px;
    display: block;
    background: url("../images/icon_bus_side__green.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 14px;
}

footer .footer_link .inner .service_status a:after {
    content: "";
    width: 10px;
    height: 14px;
    display: block;
    background: url("../images/arrow_thin.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 24px;
}

footer .contact_info {
    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;
}

footer .contact_info p span {
    margin: 0 6px;
}

@media only screen and (max-width: 480px) {
    footer .contact_info p span {
        font-size: 11px;
        display: block;
        margin: 0 0 8px 0;
    }
}

footer .contact_info img {
    width: 214px;
    margin-bottom: 16px;
}

footer .copyright {
    background: #469628;
    font-size: 8px;
    text-align: center;
    color: #fff;
    line-height: 24px;
}

.page_top {
    position: fixed;
    right: 60px;
    bottom: 80px;
    opacity: 0;
    pointer-events: none;
}

@media only screen and (max-width: 480px) {
    .page_top {
        right: 12px;
        bottom: 32px;
    }

    .page_top img {
        width: 56px;
        height: 56px;
    }
}

.page_top.active {
    opacity: 1;
    pointer-events: all;
    -webkit-transition: .3s all;
    transition: .3s all;
}

.page_top.active.footer {
    position: absolute;
    bottom: 180px;
}

@media only screen and (max-width: 480px) {
    .page_top.active.footer {
        position: fixed;
        bottom: 32px;
    }
}

.sidebar {
    width: 220px;
}

@media only screen and (max-width: 480px) {
    .sidebar {
        width: 100%;
        box-sizing: border-box;
        padding: 0 16px;
    }
}

.sidebar .fee_serach_btn {
    background: #469628;
    border: 1px solid #b3b3b3;
    width: 220px;
    height: 160px;
    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: 14px;
    box-sizing: border-box;
}

@media only screen and (max-width: 480px) {
    .sidebar .fee_serach_btn {
        display: none;
    }
}

.sidebar .fee_serach_btn .inner {
    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;
    box-sizing: border-box;
    border: 4px solid #fff;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
}

.sidebar .fee_serach_btn .icon {
    width: 52px;
    height: 54px;
}

.sidebar .fee_serach_btn .icon img {
    width: 100%;
    height: auto;
}

.sidebar .fee_serach_btn p {
    color: #fff;
    font-size: 17px;
    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: 24px;
}

.sidebar .fee_serach_btn p:after {
    content: "";
    width: 13px;
    height: 16px;
    display: block;
    background: url("../images/icon_arrow_w.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 8px;
}

.sidebar .price_search_link {
    margin-bottom: 8px;
    color: #469628;
    font-size: 14px;
    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: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-weight: bold;
}

.sidebar .price_search_link:before {
    content: "▶";
    margin-right: 8px;
    font-size: 8px;
}

@media only screen and (max-width: 480px) {
    .sidebar .price_search_link {
        display: none;
    }
}

.sidebar .sidebar_content {
    border: 1px solid #b3b3b3;
    margin-bottom: 16px;
    border-bottom: none;
}

@media only screen and (max-width: 480px) {
    .sidebar .sidebar_content {
        width: 280px;
        height: 97%;
        padding-bottom: 10%;
        position: fixed;
        top: 4px;
        right: -290px;
        background: #fff;
        z-index: 11;
        -webkit-transition: all .4s;
        transition: all .4s;
        overflow: scroll;
        box-shadow: -2px 5px 10px rgba(0, 0, 0, 0.4);
    }

    .sidebar .sidebar_content.active {
        right: 0;
        -webkit-transition: all .4s;
        transition: all .4s;
    }
}

.sidebar .sidebar_content .close_btn {
    display: none;
}

@media only screen and (max-width: 480px) {
    .sidebar .sidebar_content .close_btn {
        display: block;
        width: 100%;
        height: 54px;
    }

    .sidebar .sidebar_content .close_btn img {
        position: absolute;
        right: 24px;
        top: 18px;
    }
}

.sidebar .sidebar_content .sidebar_search {
    padding: 8px 16px;
    display: none;
}

@media only screen and (max-width: 480px) {
    .sidebar .sidebar_content .sidebar_search {
        display: block;
        border-top: 3px solid #b3b3b3;
    }
}

.sidebar .sidebar_content .sidebar_search form {
    border: 1px solid #ccc;
    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;
}

.sidebar .sidebar_content .sidebar_search form button{
  background: none;
  border: none;
}

.sidebar .sidebar_content .sidebar_search form input {
    font-size: 14px;
    color: #ccc;
    line-height: 34px;
    padding: 0 0 0 16px;
    border: none;
}

.sidebar .sidebar_content .sidebar_search form button img {
    height: 22px;
    width: auto;
}

.sidebar .sidebar_content .sidebar_block {
    padding: 8px 16px 26px;
    box-sizing: border-box;
    border-bottom: 1px solid #b3b3b3;
}

@media only screen and (max-width: 480px) {
    .sidebar .sidebar_content .sidebar_block {
        border-top: 2px solid #b3b3b3;
        padding: 0;
        border-bottom: none;
    }
}

.sidebar .sidebar_content .sidebar_block .head {
    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;
    border-bottom: 3px solid #e4e4e4;
    height: 40px;
    margin-bottom: 16px;
}

@media only screen and (max-width: 480px) {
    .sidebar .sidebar_content .sidebar_block .head {
        border-bottom: 1px solid #e4e4e4;
        padding: 6px 20px;
        margin-bottom: 0;
    }
}

.sidebar .sidebar_content .sidebar_block .head .icon {
    width: 40px;
}

.sidebar .sidebar_content .sidebar_block .head .title {
    font-size: 14px;
    font-weight: bold;
    width: 146px;
}

.sidebar .sidebar_content .sidebar_block.sidebar_call_block {
    display: none;
}

@media only screen and (max-width: 480px) {
    .sidebar .sidebar_content .sidebar_block.sidebar_call_block {
        display: block;
    }
}

.sidebar .sidebar_content .sidebar_block .sp_call {
    padding: 20px;
    display: none;
    width: 100%;
    box-sizing: border-box;
}

@media only screen and (max-width: 480px) {
    .sidebar .sidebar_content .sidebar_block .sp_call {
        display: block;
    }
}

.sidebar .sidebar_content .sidebar_block .sp_call img {
    width: 100%;
}

.sidebar .sidebar_content .sidebar_block ul {
    list-style: none;
}

@media only screen and (max-width: 480px) {
    .sidebar .sidebar_content .sidebar_block ul li:last-child a {
        border-bottom: none;
    }
}

.sidebar .sidebar_content .sidebar_block ul li a {
    font-size: 14px;
    font-weight: bold;
    color: #469628;
    line-height: 1.2;
    margin-bottom: 0px;
    padding: 7px 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: 480px) {
    .sidebar .sidebar_content .sidebar_block ul li a {
        border-bottom: 1px solid #e4e4e4;
        padding: 13px 20px;
        line-height: 1;
    }
}

.sidebar .sidebar_content .sidebar_block ul li a:before {
    content: "●";
    font-size: 8px;
    margin-right: 4px;
}

.sidebar .sidebar_btn {
    border: 1px solid #b3b3b3;
    margin-bottom: 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;
}

.sidebar .sidebar_btn.sp {
    display: none;
}

@media only screen and (max-width: 480px) {
    .sidebar .sidebar_btn.sp {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

.sidebar .sidebar_btn a {
    font-size: 16px;
    color: #469628;
    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;
    height: 64px;
    font-weight: bold;
}

@media only screen and (max-width: 480px) {
    .sidebar .sidebar_btn a {
        position: relative;
        width: 100%;
    }
}

.sidebar .sidebar_btn a:after {
    content: "";
    width: 10px;
    height: 13px;
    display: block;
    background: url("../images/callcenter_arrow.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 14px;
}

@media only screen and (max-width: 480px) {
    .sidebar .sidebar_btn a:after {
        position: absolute;
        right: 16px;
    }
}

#index .mainvisual {
    margin-bottom: 64px;
    padding: 8px;
    border: 1px solid #B3B3B3;
    border-radius: 5px;
}

@media only screen and (max-width: 480px) {
    #index .mainvisual {
        padding: 0;
        border: none;
        margin-bottom: 48px;
    }
}

#index .mainvisual .thumb-item li {
    overflow: hidden;
    height: calc(700px /16 * 9);
    width: 100%;
    background-size: cover;
    background-position: center;
    -webkit-transition: all .2s;
    transition: all .2s;
    opacity: 1;
}

#index .mainvisual .thumb-item li:hover {
    opacity: 0.8;
    -webkit-transition: all .2s;
    transition: all .2s;
}

#index .mainvisual .thumb-item li a {
    display: block;
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 480px) {
    #index .mainvisual .thumb-item li {
        height: calc(100vw /16 * 9);
    }
}

#index .mainvisual .thumb-item-nav {
    width: 544px;
    margin: 16px auto 8px auto;
    text-align: center;
}

@media only screen and (max-width: 480px) {
    #index .mainvisual .thumb-item-nav {
        display: none;
    }
}

#index .mainvisual .thumb-item-nav .slick-list .slick-slide {
    opacity: 0.4;
    cursor: pointer;
}

#index .mainvisual .thumb-item-nav .slick-list .slick-slide.slick-current {
    opacity: 1;
}

#index .mainvisual .thumb-item-nav li {
    height: 56px;
    width: 126px !important;
    background-size: cover;
    background-position: center;
    display: block;
}

@media only screen and (max-width: 480px) {
    #index .mainvisual {
        width: 100%;
        overflow: hidden;
    }
}

#index section {
    margin-bottom: 82px;
}

@media only screen and (max-width: 480px) {
    #index section {
        box-sizing: border-box;
        padding: 0 16px;
        margin-bottom: 48px;
    }

    #index section.pickup {
        margin-bottom: 8px;
    }
}

#index section .head {
    height: 48px;
    border-bottom: 1px solid #469628;
    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: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (max-width: 480px) {
    #index section .head {
        height: 36px;
    }
}

#index section .head h2 {
    font-size: 24px;
    color: #469628;
    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) {
    #index section .head h2 {
        font-size: 20px;
    }
}

#index section .head h2:before {
    content: "";
    width: 64px;
    height: 48px;
    display: block;
    background: url("../images/icon_busandbusstop.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 16px;
}

@media only screen and (max-width: 480px) {
    #index section .head h2:before {
        width: 48px;
        height: 36px;
        margin-right: 12px;
    }
}

#index section .head a {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    background: #469628;
    width: 96px;
    height: 28px;
    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: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 8px 0 16px;
    box-sizing: border-box;
    border-radius: 14px 0 0 14px;
}

@media only screen and (max-width: 480px) {
    #index section .head a {
        width: 88px;
        height: 26px;
        font-size: 12px;
    }
}

#index section .head a:after {
    content: "";
    width: 8px;
    height: 10px;
    display: block;
    background: url("../images/icon_arrow_w.png");
    background-size: contain;
    background-repeat: no-repeat;
}

#index .pickup .pickup_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-top: 26px;
}

@media only screen and (max-width: 480px) {
    #index .pickup .pickup_wrap {
        -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;
    }
}

#index .pickup .pickup_wrap .pickup_block {
    width: 162px;
    -webkit-transition: all .2s;
    transition: all .2s;
    margin-left: 24px;
}

#index .pickup .pickup_wrap .pickup_block:first-child {
    margin-left: 0px;
}

@media only screen and (max-width: 480px) {
    #index .pickup .pickup_wrap .pickup_block {
        margin-bottom: 40px;
        margin-left: 0px;
    }
}

#index .pickup .pickup_wrap .pickup_block:hover {
    opacity: 0.8;
    -webkit-transition: all .2s;
    transition: all .2s;
}

#index .pickup .pickup_wrap .pickup_block .title {
    font-size: 16px;
    color: #000;
    line-height: 28px;
    font-weight: bold;
    margin-bottom: 4px;
}

@media only screen and (max-width: 480px) {
    #index .pickup .pickup_wrap .pickup_block .title {
        font-size: 14px;
        line-height: 24px;
    }
}

#index .pickup .pickup_wrap .pickup_block .date {
    font-size: 12px;
    line-height: 21px;
    color: #666666;
}

@media only screen and (max-width: 480px) {
    #index .pickup .pickup_wrap .pickup_block .date {
        font-size: 12px;
        line-height: 24px;
    }
}

#index .pickup .pickup_wrap .pickup_block .tumb {
    width: 162px;
    height: 162px;
    display: block;
    background-size: cover;
    background-position: center;
    margin-bottom: 14px;
    border: 1px solid #ccc;
}

@media only screen and (max-width: 480px) {
    #index .pickup .pickup_wrap .pickup_block .tumb {
        width: 160px;
        height: 160px;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }
}

#index .news .news_wrap {
    margin-top: 8px;
}

@media only screen and (max-width: 480px) {
    #index .news .news_wrap {
        margin-top: 0px;
    }
}

#index .news .news_wrap .news_block {
    padding: 14px 0;
    border-bottom: 1px solid #e4e4e4;
}

#index .news .news_wrap .news_block a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

@media only screen and (max-width: 480px) {
    #index .news .news_wrap .news_block a {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

#index .news .news_wrap .news_block .date {
    color: #666;
    font-size: 12px;
    line-height: 30px;
    width: 92px;
}

#index .news .news_wrap .news_block .title {
    font-size: 16px;
    line-height: 30px;
    width: 626px;
}

@media only screen and (max-width: 480px) {
    #index .news .news_wrap .news_block .title {
        font-size: 14px;
        line-height: 24px;
        width: 100%;
    }
}

#index .link_btn {
    background: #d8eac6;
    padding: 32px 20px;
}

@media only screen and (max-width: 480px) {
    #index .link_btn {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 32px 16px;
        box-sizing: border-box;
    }
}

#index .link_btn .link_btn_wrap {
    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) {
    #index .link_btn .link_btn_wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

#index .link_btn .link_btn_block {
    width: 222px;
    height: 104px;
    background: #469628;
    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) {
    #index .link_btn .link_btn_block {
        width: 100%;
        height: 64px;
        box-sizing: border-box;
    }

    #index .link_btn .link_btn_block:nth-child(2) {
        margin: 12px 0;
    }
}

#index .link_btn .link_btn_block a {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    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) {
    #index .link_btn .link_btn_block a {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
        position: relative;
    }
}

#index .link_btn .link_btn_block .icon {
    width: 40px;
    margin-bottom: 12px;
    height: 42px;
}

@media only screen and (max-width: 480px) {
    #index .link_btn .link_btn_block .icon {
        margin-bottom: 0;
        position: absolute;
        left: 16px;
    }
}

#index .link_btn .link_btn_block .icon img {
    width: 100%;
}

#index .link_btn .link_btn_block p {
    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;
}

#index .link_btn .link_btn_block p:after {
    content: "";
    width: 10px;
    height: 14px;
    display: block;
    background: url("../images/icon_arrow_w.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 8px;
}

@media only screen and (max-width: 480px) {
    #index .link_btn .link_btn_block p:after {
        position: absolute;
        right: 16px;
    }
}

.sns_area {
    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;
    width: 100%;
}

@media only screen and (max-width: 480px) {
    .sns_area {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        box-sizing: border-box;
        padding: 0 16px;
    }
}

.sns_area .facebook {
    border: 4px solid #425a97;
    width: 470px;
}

.sns_area .facebook .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;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 0 22px;
    height: 60px;
    border-bottom: 1px solid #425a97;
}

.sns_area .facebook .title img {
    height: 24px;
    width: auto;
    margin-right: 12px;
}

.sns_area .facebook .title p {
    font-size: 16px;
    font-weight: bold;
    color: #425a97;
}

@media only screen and (max-width: 480px) {
    .sns_area .facebook {
        width: 100%;
        margin-bottom: 16px;
        box-sizing: border-box;
    }
}

.sns_area .facebook iframe {
    width: 100%;
}

.sns_area .instagram {
    border: 4px solid #8c2083;
    width: 470px;
    height: 360px;
    overflow: hidden;
}

@media only screen and (max-width: 480px) {
    .sns_area .instagram {
        height: 320px;
    }
}

.sns_area .instagram .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;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: 60px;
    padding: 0 22px;
    border-bottom: 1px solid #8c2083;
}

.sns_area .instagram .title img {
    height: 24px;
    width: auto;
    margin-right: 12px;
}

.sns_area .instagram .title p {
    font-size: 16px;
    font-weight: bold;
    color: #8c2083;
}

.sns_area .instagram .follow_btn {
    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;
    padding: 0 16px;
    height: 96px;
}
@media only screen and (max-width: 480px) {
  .sns_area .instagram .follow_btn{
    padding: 0 8px;
  }
}

.sns_area .instagram .follow_btn .follow_link {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    background: #8c2083;
    width: 130px;
    height: 40px;
    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;
}

.sns_area .instagram .user_info {
    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;
}

.sns_area .instagram .user_info .icon {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    overflow: hidden;
}

.sns_area .instagram .user_info .icon img {
    width: 100%;
    height: auto;
}

.sns_area .instagram .user_info a {
    color: #000;
    font-size: 13px;
    margin-left: 12px;
    font-weight: bold;
}

@media only screen and (max-width: 480px) {
    .sns_area .instagram .user_info a {
        margin-right: 12px;
        margin-left: 0px;
    }
}

@media only screen and (max-width: 480px) {
    .sns_area .instagram {
        width: 100%;
        box-sizing: border-box;
    }
}

.sns_area .instagram .feed_wrap {
    background: url("../images/bg_img_insta.png");
    background-size: cover;
    height: 100%;
    padding: 22px 14px 0 14px;
}

.top_banner {
    margin-top: 90px;
    width: 100%;
}

.top_banner:before {
    content: "広告及びリンク先の内容等に関する一切の責任は広告主に帰属します。また、交通局が推奨等をするものではありません。";
    font-size: 12px;
    margin-bottom: 12px;
    display: block;
    text-align: center;
    line-height: 1.5;
}

@media only screen and (max-width: 480px) {
    .top_banner:before {
        border-top: 1px solid #b3b3b3;
        margin-top: 40px;
        padding-top: 40px;
    }
}

@media only screen and (max-width: 480px) {
    .top_banner {
        box-sizing: border-box;
        padding: 0 16px;
        margin-top: 26px;
    }
}

.top_banner .banner_wrap {
    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;
}

.top_banner .banner_wrap::before {
    content: "";
    display: block;
    width: 23%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
}

.top_banner .banner_wrap::after {
    content: "";
    display: block;
    width: 23%;
}

.top_banner .banner_wrap .banner_block {
    width: 234px;
    height: 68px;
    border: 1px solid #b3b3b3;
    margin-bottom: 14px;
    box-sizing: border-box;
    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;
}

@media only screen and (max-width: 480px) {
    .top_banner .banner_wrap .banner_block {
        width: 100%;
        height: 64px;
    }
}

@media only screen and (max-width: 480px) {
    .top_banner .banner_wrap .banner_block a {
        width: auto;
        max-height: 98%;
    }

    .top_banner .banner_wrap .banner_block a img {
        height: 48px !important;
    }
}

.top_banner .banner_wrap .banner_block img {
    width: 100%;
}

@media only screen and (max-width: 480px) {
    .top_banner .banner_wrap .banner_block img {
        width: auto;
        max-height: 98%;
    }
}

.instashow-popup-wrapper {
    padding: 40px !important;
}

.post {
    margin-bottom: 80px;
}

.post strong {
    line-height: 1.5;
}

.post p {
    font-size: 14px;
    line-height: 30px;
    margin-bottom: 22px;
}

@media only screen and (max-width: 480px) {
    .post p {
        line-height: 24px;
    }
}

.post p img {
    max-width: 100%;
    height: auto;
}

.post p img.aligncenter {
    display: block;
    margin: 0 auto;
}

.post .wp-caption {
    margin-bottom: 22px;
}

.post .wp-caption img {
    max-width: 100%;
    height: auto;
}

.post .wp-caption .wp-caption-text {
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 0;
}

.post .alignright {
    width: 344px;
    float: right;
    margin-left: 32px;
    margin-top: 6px;
}

@media only screen and (max-width: 480px) {
    .post .alignright {
        width: 160px;
        margin-left: 24px;
        margin-bottom: 24px;
    }
}

.post .alignright.wp-caption {
    margin-bottom: 0px;
    margin-top: 6px;
}

.post .alignleft {
    width: 344px;
    float: left;
    margin-right: 32px;
    margin-top: 6px;
}

@media only screen and (max-width: 480px) {
    .post .alignleft {
        width: 160px;
        margin-right: 24px;
        margin-bottom: 24px;
    }
}

.post .alignleft.wp-caption {
    margin-bottom: 0px;
    margin-top: 6px;
}

.post h1 {
    font-size: 22px;
    line-height: 32px;
    border-bottom: 1px solid #469628;
    margin-bottom: 20px;
    font-weight: normal;
}

@media only screen and (max-width: 480px) {
    .post h1 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 16px;
    }
}

.post h2 {
    font-size: 22px;
    line-height: 32px;
    border-bottom: 1px solid #d8eac6;
    margin-bottom: 20px;
    margin-top: 30px;
    font-weight: bold;
    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;
    color: #000;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

@media only screen and (max-width: 480px) {
    .post h2 {
        margin-top: 24px;
        margin-bottom: 16px;
        font-size: 18px;
        line-height: 24px;
    }
}

.post h3 {
    font-size: 18px;
    line-height: 32px;
    border-bottom: 1px solid #469628;
    margin-bottom: 20px;
    margin-top: 30px;
    font-weight: bold;
    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;
    color: #469628;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

@media only screen and (max-width: 480px) {
    .post h3 {
        margin-top: 24px;
        margin-bottom: 16px;
        font-size: 14px;
        line-height: 24px;
    }
}

.post h4 {
    font-size: 15px;
    line-height: 30px;
    border-bottom: 1px solid #d8eac6;
    margin-bottom: 20px;
    margin-top: 30px;
    font-weight: bold;
    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: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

@media only screen and (max-width: 480px) {
    .post h4 {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 16px;
        margin-top: 32px;
    }
}

.post h4:before {
    content: "";
    display: block;
    width: 4px;
    height: 24px;
    background-color: #d8eac6;
    margin-right: 16px;
}

.post h5 {
    font-size: 15px;
    color: #469628;
    font-weight: bold;
    margin-bottom: 20px;
}

.post .sitemap_wrap {
    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: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.post .sitemap_wrap .sitemap {
    width: 344px;
}

@media only screen and (max-width: 480px) {
    .post .sitemap_wrap .sitemap {
        width: 100%;
    }
}

.post .img_2col {
    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) {
    .post .img_2col {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.post .img_2col div {
    width: 344px;
}

@media only screen and (max-width: 480px) {
    .post .img_2col div {
        width: 100%;
    }
}

.post .img_2col div img {
    width: 100%;
}

.post .img_2col div .wp-caption {
    width: 100%;
}

.post .img_3col {
    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) {
    .post .img_3col {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.post .img_3col div {
    width: 224px;
}

@media only screen and (max-width: 480px) {
    .post .img_3col div {
        width: 100%;
    }
}

.post .img_3col div img {
    width: 100%;
}

.post .img_3col div .wp-caption {
    width: 100%;
}

.post ul,
.post ol {
    margin-bottom: 24px;
    list-style: disc;
    font-size: 14px;
}

.post ul.circle li {
    line-height: 1.5;
    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: 12px 0;
}

.post ul.circle li p,
.post ul.circle li span,
.post ul.circle li b {
    line-height: 1.5;
}

.post ul.circle li:before {
    content: "●";
    color: #469628;
    margin-right: 4px;
    font-size: 8px;
}

.post ul.pdf_list {
    margin-bottom: 24px;
}

.post ul.pdf_list li {
    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;
    border-bottom: 1px solid #E4E4E4;
}

.post ul.pdf_list li:before {
    content: "";
    width: 24px;
    height: 32px;
    background: url(../images/ico_pdf.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    margin-right: 16px;
}

.post ul.word_list {
    margin-bottom: 24px;
}

.post ul.word_list li {
    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;
    border-bottom: 1px solid #E4E4E4;
}

.post ul.word_list li:before {
    content: "";
    width: 24px;
    height: 32px;
    background: url(../images/ico_word.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    margin-right: 16px;
}

.post .title_pdf {
    border: 1px solid #e4e4e4;
}

.post .title_pdf .title {
    background: #f0f0f0;
    margin-bottom: 0;
    padding: 0 14px;
    font-weight: bold;
    border-bottom: 1px solid #e4e4e4;
}

.post .title_pdf ul {
    margin-bottom: 0px;
    padding: 14px;
}

.post .title_pdf ul li {
    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: 14px;
}

.post .title_pdf ul li:last-child {
    margin-bottom: 0px;
}

.post .title_pdf ul li:before {
    content: "";
    width: 24px;
    height: 32px;
    background: url(../images/ico_pdf.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    margin-right: 16px;
}

@media only screen and (max-width: 480px) {
    .post .x-scroll {
        max-width: 100%;
        overflow: scroll;
    }
}

.post table {
    margin-bottom: 22px;
}

.post table th {
    background: #d8eac6;
}

.post table th,
.post table td {
    padding: 12px;
    line-height: 30px;
    border: 1px solid #ccc !important;
}

@media only screen and (max-width: 480px) {

    .post table th,
    .post table td {
        padding: 12px 8px !important;
        line-height: 1.5;
    }
}

.post .su-list.pdf ul li {
    border-bottom: 1px solid #E4E4E4;
    padding: 16px 0 !important;
    line-height: 1.2;
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.post .su-list.pdf ul li img {
    width: 26px;
    height: auto;
    position: static;
    margin-right: 14px;
}

.post .su-list.circle ul li {
    border-bottom: 1px solid #E4E4E4;
    padding: 16px 0 !important;
    line-height: 1.2;
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.post .su-list.circle ul li i {
    position: static;
    width: 15px;
    height: 15px;
    margin-right: 8px;
    line-height: 1;
}

.post .su-table tr td {
    padding: 8px !important;
    font-size: 14px;
    line-height: 30px;
}

@media only screen and (max-width: 480px) {
    .post .su-table tr td {
        padding: 12px 8px !important;
        line-height: 1.5;
    }
}

.post .su-table tr td:first-child {
    background: #d8eac6 !important;
    min-width: 170px;
}

@media only screen and (max-width: 480px) {
    .post .su-table tr td:first-child {
        min-width: 120px;
    }
}

.post .su-table .su-even td {
    background: #fff !important;
}

.post ol {
    list-style: none;
    counter-reset: number 0;
}

.post ol li {
    padding: 14px 0;
    font-size: 14px;
    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;
    border-bottom: 1px solid #E4E4E4;
    line-height: 2;
}

@media only screen and (max-width: 480px) {
    .post ol li {
        line-height: 24px;
    }
}

.post ol li:before {
    counter-increment: number 1;
    content: counter(number) " ";
    background: #d8eac6;
    color: #469628;
    font-size: 11px;
    width: 20px;
    height: 20px;
    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: 2px;
    margin-right: 16px;
    margin-top: 4px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 20px;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
}

@media only screen and (max-width: 480px) {
    .post ol li:before {
        font-size: 10px;
        width: 16px;
        height: 16px;
        margin-right: 12px;
        margin-top: 2px;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 16px;
        -ms-flex: 0 0 16px;
        flex: 0 0 16px;
    }
}

@media only screen and (max-width: 480px) {
    .content.single {
        width: 100%;
        padding: 0 16px;
        box-sizing: border-box;
    }
}

.content.single .breadcrumbs {
    font-size: 13px;
    line-height: 24px;
    margin-bottom: 62px;
    width: calc(100% - 140px);
    float: left;
}

@media only screen and (max-width: 480px) {
    .content.single .breadcrumbs {
        margin-bottom: 40px;
        margin-top: 12px;
        line-height: 1.3;
        font-size: 10px;
        width: 100%;
    }
}

.content.single .post_header {
    border-bottom: 2px solid #469628;
    margin-bottom: 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    clear: both;
}

@media only screen and (max-width: 480px) {
    .content.single .post_header {
        -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;
    }
}

.content.single .post_header h1 {
    color: #469628;
    font-size: 22px;
    line-height: 38px;
}

@media only screen and (max-width: 480px) {
    .content.single .post_header h1 {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 10px;
    }
}

.content.single .post_header .date {
    font-size: 12px;
    color: #666;
    margin-bottom: 6px;
}

@media only screen and (max-width: 480px) {
    .content.single .post_header .date {
        font-size: 10px;
    }
}

.content.single .share_btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 32px;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.content.single .share_btn .btn_block {
    margin-left: 8px;
}

.content.single .post .post_author {
    margin-bottom: 48px;
}

.content.single .post .post_author h3 {
    font-size: 15px;
    line-height: 30px;
    border-bottom: 1px solid #d8eac6;
    margin-bottom: 20px;
    margin-top: 60px;
    font-weight: normal;
    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: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-weight: bold;
}

.content.single .post .post_author h3:before {
    content: "";
    display: block;
    width: 4px;
    height: 24px;
    background-color: #d8eac6;
    margin-right: 16px;
}

.content.single .post .post_author .name {
    color: #0066CC;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 14px;
}

.content.single .post .post_author .address,
.content.single .post .post_author .tel {
    margin-bottom: 14px;
}

.content.single .post .post_author .address div,
.content.single .post .post_author .tel div {
    display: inline-block;
    margin-right: 14px;
}

.content.single .post .post_author 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;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #231815;
    width: 148px;
    box-sizing: border-box;
    border: 1px solid #CCCCCC;
    border-radius: 3px;
    padding: 12px 20px;
    line-height: 1;
}

.content.single .post .mw_wp_form_input .back_btn {
    display: none;
}

.content.single .post .enquete_form {
    border: 1px solid #d8eac6;
}

.content.single .post .enquete_form h3 {
    background: #d8eac6;
    padding: 12px 22px;
    margin-top: 0px;
}

.content.single .post .enquete_form .form_content {
    padding: 24px 22px;
}

.content.single .post .enquete_form .form_content textarea {
    width: 100%;
    height: 102px;
    border-radius: 3px;
    box-sizing: border-box;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #B3B3B3;
}

.content.single .post .enquete_form .form_content input[type="submit"] {
    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;
    color: #231815;
    width: 148px;
    box-sizing: border-box;
    border: 1px solid #CCCCCC;
    border-radius: 3px;
    padding: 12px 20px;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
}

@media only screen and (max-width: 480px) {
    .content.page {
        width: 100%;
        padding: 0 16px;
        box-sizing: border-box;
    }
}

.content.page .breadcrumbs {
    font-size: 13px;
    line-height: 24px;
    margin-bottom: 62px;
    width: calc(100% - 140px);
    float: left;
}

@media only screen and (max-width: 480px) {
    .content.page .breadcrumbs {
        margin-bottom: 40px;
        margin-top: 12px;
        line-height: 1.3;
        font-size: 10px;
        width: 100%;
    }
}

.content.page .post_header {
    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;
    margin-bottom: 62px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    clear: both;
}

@media only screen and (max-width: 480px) {
    .content.page .post_header {
        margin-bottom: 32px;
    }
}

.content.page .post_header h1 {
    font-size: 32px;
    line-height: 46px;
    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: 16px;
    width: 100%;
}

@media only screen and (max-width: 480px) {
    .content.page .post_header h1 {
        font-size: 18px;
        line-height: 1.6;
    }
}

.content.page .post_header h1:before {
    content: "";
    width: 8px;
    height: 46px;
    display: block;
    background-color: #14823C;
    margin-right: 22px;
}

@media only screen and (max-width: 480px) {
    .content.page .post_header h1:before {
        height: 32px;
        width: 5px;
        margin-right: 8px;
    }
}

.content.page .post_header .share_btn {
    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;
    width: 100%;
}

.content.page .post_header .share_btn .btn_block {
    margin-left: 8px;
}

.content.page .post .ancher_style {
    border-top: 1px solid #E4E4E4;
    border-bottom: 1px solid #E4E4E4;
    padding: 24px 0;
}

.content.page .post .mwform-checkbox-field input,
.content.page .post .mwform-radio-field input {
    margin-top: 0px;
}

.content.page .post .mw_wp_form_confirm .caution {
    display: none;
}

.content.page .post .post_author {
    margin-bottom: 48px;
}

.content.page .post .post_author h3 {
    font-size: 15px;
    line-height: 30px;
    border-bottom: 1px solid #d8eac6;
    margin-bottom: 20px;
    margin-top: 60px;
    font-weight: normal;
    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: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-weight: bold;
}

.content.page .post .post_author h3:before {
    content: "";
    display: block;
    width: 4px;
    height: 24px;
    background-color: #d8eac6;
    margin-right: 16px;
}

.content.page .post .post_author .name {
    color: #0066CC;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 14px;
}

.content.page .post .post_author .address,
.content.page .post .post_author .tel {
    margin-bottom: 14px;
}

.content.page .post .post_author .address div,
.content.page .post .post_author .tel div {
    display: inline-block;
    margin-right: 14px;
}

.content.page .post .post_author 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;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #231815;
    width: 148px;
    box-sizing: border-box;
    border: 1px solid #CCCCCC;
    border-radius: 3px;
    padding: 12px 20px;
    line-height: 1;
}

.content.page .post .enquete_form {
    border: 1px solid #d8eac6;
}

.content.page .post .enquete_form h3 {
    background: #d8eac6;
    padding: 12px 22px;
    margin-top: 0px;
    font-size: 14px;
    line-height: 1;
    border-bottom: none;
    color: #000;
}

.content.page .post .enquete_form .form_content {
    padding: 0px 22px 24px 22px;
}

.content.page .post .enquete_form .form_content textarea {
    width: 100%;
    height: 102px;
    border-radius: 3px;
    box-sizing: border-box;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #B3B3B3;
    margin-top: 20px;
}

.content.page .post .enquete_form .form_content h3 {
    margin-bottom: 0px;
}

.content.page .post .enquete_form .form_content p {
    margin-bottom: 0px;
    line-height: 1.5;
}

.content.page .post .enquete_form .form_content p strong {
    margin-top: 20px;
    margin-bottom: 12px;
    display: block;
}

.content.page .post .enquete_form .form_content input[type="submit"] {
    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;
    color: #231815;
    width: 148px;
    box-sizing: border-box;
    border: 1px solid #CCCCCC;
    border-radius: 3px;
    padding: 12px 20px;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
}

.content.page .post .enquete_form .form_content .back_btn {
    display: none;
}

.content.page .post .mw_wp_form_input .back_btn {
    display: none;
}

.content.page .post .mw_wp_form_preview .btn {
    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;
    margin-top: 24px;
}

.content.page .post .mw_wp_form_preview form p {
    margin-bottom: 0;
}

.content.page .post .mw_wp_form_preview form p:first-child {
    margin-bottom: 22px;
}

.content.page .post .mw_wp_form_preview form p strong {
    display: block;
}

.content.page .post .mw_wp_form_preview form .back_btn {
    margin: 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;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #231815;
    width: 148px;
    box-sizing: border-box;
    border: 1px solid #CCCCCC;
    border-radius: 3px;
    padding: 12px 20px;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
}

.content.page .post .mw_wp_form_preview form input[type="submit"] {
    margin: 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;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #231815;
    width: 148px;
    box-sizing: border-box;
    border: 1px solid #CCCCCC;
    border-radius: 3px;
    padding: 12px 20px;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
}

.content.page .post .mw_wp_form_preview form input[type="submit"].input_back_btn {
    display: none !important;
}

#category .cat_list {
    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-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
}

#category .cat_list li {
    width: 344px;
    height: 104px;
    border: 1px solid #469628;
    margin-bottom: 32px;
}

@media only screen and (max-width: 480px) {
    #category .cat_list li {
        height: 88px;
        margin-bottom: 16px;
        width: 100%;
    }
}

#category .cat_list li a {
    color: #469628;
    font-size: 17px;
    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: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 0 50px 0 30px;
    width: 100%;
    height: 100%;
    -webkit-transition: all .2s;
    transition: all .2s;
    position: relative;
    line-height: 1.4;
}

#category .cat_list li a:after {
    content: "";
    width: 32px;
    height: 32px;
    background: url(../images/cat_link_arrow@2x.png);
    background-size: cover;
    display: block;
    position: absolute;
    right: 0;
}

#category .cat_list li a:hover {
    background: #F0F0F0;
    -webkit-transition: all .2s;
    transition: all .2s;
}

#pickup .pickup .pickup_wrap {
    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-top: 26px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

#pickup .pickup .pickup_wrap:after {
    content: "";
    display: block;
    width: 30%;
}

@media only screen and (max-width: 480px) {
    #pickup .pickup .pickup_wrap {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

#pickup .pickup .pickup_wrap .pickup_block {
    width: 220px;
    -webkit-transition: all .2s;
    transition: all .2s;
    margin-bottom: 32px;
}

@media only screen and (max-width: 480px) {
    #pickup .pickup .pickup_wrap .pickup_block {
        width: 160px;
        margin-bottom: 23px;
    }
}

#pickup .pickup .pickup_wrap .pickup_block:hover {
    opacity: 0.8;
    -webkit-transition: all .2s;
    transition: all .2s;
}

#pickup .pickup .pickup_wrap .pickup_block .title {
    font-size: 16px;
    color: #000;
    line-height: 28px;
    font-weight: bold;
}

@media only screen and (max-width: 480px) {
    #pickup .pickup .pickup_wrap .pickup_block .title {
        font-size: 14px;
        line-height: 24px;
    }
}

#pickup .pickup .pickup_wrap .pickup_block .date {
    font-size: 12px;
    line-height: 21px;
    color: #666666;
}

@media only screen and (max-width: 480px) {
    #pickup .pickup .pickup_wrap .pickup_block .date {
        font-size: 12px;
        line-height: 24px;
    }
}

#pickup .pickup .pickup_wrap .pickup_block .tumb {
    width: 220px;
    height: 220px;
    display: block;
    background-size: cover;
    margin-bottom: 8px;
    background-position: center;
}

@media only screen and (max-width: 480px) {
    #pickup .pickup .pickup_wrap .pickup_block .tumb {
        width: 160px;
        height: 160px;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }
}

@media only screen and (max-width: 480px) {
    .pager {
        margin-bottom: 48px;
    }
}

.pager .screen-reader-text {
    display: none;
}

.pager .nav-links .page-numbers {
    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;
}

.pager .nav-links .page-numbers li a,
.pager .nav-links .page-numbers li span {
    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;
    width: 40px;
    height: 40px;
    border-radius: 3px;
    border: 1px solid #469628;
    color: #469628;
    margin: 0 8px;
    -webkit-transition: all .2s;
    transition: all .2s;
}

@media only screen and (max-width: 480px) {

    .pager .nav-links .page-numbers li a,
    .pager .nav-links .page-numbers li span {
        width: 32px;
        height: 32px;
        margin: 0 7px;
    }
}

.pager .nav-links .page-numbers li a.current,
.pager .nav-links .page-numbers li span.current {
    background: #469628;
    color: #fff;
}

.pager .nav-links .page-numbers li a.next {
    color: #fff;
    background: #BFBFBF;
    border: 1px solid #BFBFBF;
    margin-right: 0px;
    margin-left: 16px;
}

.pager .nav-links .page-numbers li a.next:hover {
    background: #BFBFBF;
    color: #fff;
    opacity: 0.8;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.pager .nav-links .page-numbers li a.prev {
    color: #fff;
    background: #BFBFBF;
    opacity: 0.8;
    border: 1px solid #BFBFBF;
    margin-left: 0px;
    margin-right: 16px;
}

.pager .nav-links .page-numbers li a.prev:hover {
    background: #BFBFBF;
    color: #fff;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.pager .nav-links .page-numbers li a:hover {
    background: #469628;
    color: #fff;
    -webkit-transition: all .2s;
    transition: all .2s;
}

#news .news .news_wrap,
#search .news .news_wrap {
    margin-bottom: 72px;
}

@media only screen and (max-width: 480px) {

    #news .news .news_wrap,
    #search .news .news_wrap {
        margin-top: 0px;
    }
}

#news .news .news_wrap .news_block,
#search .news .news_wrap .news_block {
    padding: 12px 0;
    border-bottom: 1px solid #e4e4e4;
}

#news .news .news_wrap .news_block a,
#search .news .news_wrap .news_block a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

@media only screen and (max-width: 480px) {

    #news .news .news_wrap .news_block a,
    #search .news .news_wrap .news_block a {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

#news .news .news_wrap .news_block .date,
#search .news .news_wrap .news_block .date {
    color: #666;
    font-size: 12px;
    line-height: 30px;
    width: 92px;
}

#news .news .news_wrap .news_block .title,
#search .news .news_wrap .news_block .title {
    font-size: 16px;
    line-height: 30px;
    width: 626px;
}

@media only screen and (max-width: 480px) {

    #news .news .news_wrap .news_block .title,
    #search .news .news_wrap .news_block .title {
        font-size: 14px;
        line-height: 24px;
        width: 100%;
    }
}
