@charset "UTF-8";

/* COMPASS
 * ----------------------------------------------- */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
}

html {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

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

caption,
th,
td {
    text-align: left;
    font-weight: normal;
    vertical-align: middle;
}

q,
blockquote {
    quotes: none;
}

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

a img {
    border: none;
}

strong {
    font-weight: bold;
}

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


/*PCで無効*/

.pc_hid {
    display: none;
}


/*スマートフォンで有効*/

@media screen and (max-width:768px) {
    .pc_hid {
        display: block;
    }
}


/*PCで無効*/

.telLink {
    color: #000!important;
    text-decoration: none!important;
    pointer-events: none;
}


/*スマートフォンで有効*/

@media screen and (max-width:768px) {
    .telLink {
        color: #000!important;
        text-decoration: none!important;
        pointer-events: auto;
    }
}


/* BASE
 * ----------------------------------------------- */


/* ADDITIONAL RESET
 * ----------------------------------------------- */

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body * {
    max-height: 99999em;
}

body img {
    max-height: none;
}

input,
label,
select,
button,
textarea {
    margin: 0;
    border: 0;
    padding: 0;
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
    background: none;
    font: inherit;
    line-height: 1;
}

input:focus,
button:focus,
select:focus {
    outline: 0;
}


/* Make webkit render the search input like a normal text field */

input[type=search] {
    -webkit-appearance: textfield;
}


/* Turn off the recent search for webkit. It adds about 15px padding on the left */

::-webkit-search-decoration {
    display: none;
}


/* Turn off scroll bars in IE unless needed */

textarea {
    overflow: auto;
    white-space: pre-line;
}


/* PRINTING
 * ----------------------------------------------- */

@media print {
    body {
        -webkit-print-color-adjust: exact;
    }
    html,
    body {
        margin: 0;
    }
    @page {
        margin: 0;
    }
    @page :left {
        margin: 0;
    }
    @page :right {
        margin: 0;
    }
    @page :first {
        margin-top: 0;
    }
}


/* GENERAL
 * ----------------------------------------------- */

body {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
}

.ft-serif {
    font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Times New Roman", "游明朝", YuMincho, "メイリオ", Meiryo, Georgia, serif;
}


/* HELPERS
 * ----------------------------------------------- */

a {
    color: #000;
    text-decoration: none;
}

.trans {
    filter: progid: DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    -moz-transition: opacity 0.26s ease;
    -o-transition: opacity 0.26s ease;
    -webkit-transition: opacity 0.26s ease;
    transition: opacity 0.26s ease;
}

.trans:hover {
    filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.8;
}

.hidden {
    display: none;
}

.invisible {
    visibility: hidden;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

.text-nowrap {
    white-space: nowrap;
}

.text-lowercase {
    text-transform: lowercase;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-capitalize {
    text-transform: capitalize;
}

.container {
    min-width: 1200px;
    overflow: hidden;
}

.wrapper {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.flex-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.img {
    display: block;
    max-width: 100%;
}

@media print,
(min-width: 751px) {
    body {
        position: static !important;
        top: auto !important;
    }
    .navigation {
        display: block !important;
    }
    .trans {
        filter: progid: DXImageTransform.Microsoft.Alpha(enabled=false);
        opacity: 1;
        -moz-transition: opacity 0.26s ease;
        -o-transition: opacity 0.26s ease;
        -webkit-transition: opacity 0.26s ease;
        transition: opacity 0.26s ease;
    }
    .trans:hover {
        filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=80);
        opacity: 0.8;
    }
    .flex-lg {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .flex-lg-center {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .flex-lg-between {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .align-items-center-lg {
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
    }
    .order1 {
        -ms-flex-order: 1;
        -webkit-order: 1;
        order: 1;
    }
    .order2 {
        -ms-flex-order: 2;
        -webkit-order: 2;
        order: 2;
    }
}

.img {
    display: block;
    max-width: 100%;
}


/* RESPONSIVE
 * ----------------------------------------------- */

.sm {
    display: none !important;
}

@media only screen and (max-width: 750px) {
    .img {
        width: 100%;
    }
    .md {
        display: none !important;
    }
    .sm {
        display: block !important;
    }
    .trans,
    .trans:hover {
        filter: progid: DXImageTransform.Microsoft.Alpha(enabled=false);
        opacity: 1;
    }
    body {
        font-size: 13px;
    }
    .container {
        width: auto;
        min-width: 320px;
        padding-top: 60px;
    }
    #top_page .container {
        padding-top: 0;
    }
    .wrapper {
        width: auto;
        margin: 0;
        padding-left: 5px;
        padding-right: 5px;
    }
}

@media only screen and (max-width: 374px) {
    .xs-s {
        display: none !important;
    }
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    content: "";
    display: table;
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
}

[dir="rtl"] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide:active,
.slick-slide:focus {
    outline: none;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.slick-arrow,
.slick-dots button {
    background-position: 0 0;
    background-repeat: no-repeat;
    text-indent: -1000px;
    overflow: hidden;
    padding: 0;
    border: none;
    background-color: transparent;
    outline: none;
    display: block;
    cursor: pointer;
}


/* PARTS
 * ----------------------------------------------- */


/* COMMON HEADER
 * ----------------------------------------------- */

.header-site {
    height: 194px;
    position: relative;
}

#top_page .header-site {
    position: fixed;
    top: -138px;
    left: 0;
    width: 100%;
    height: 128px;
    background: #fff;
    border-bottom: 1px solid #aaaaaa;
    z-index: 1;
}

#top_page .UpMove{
  top: 0 !important;
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 1;
	transform: translateY(0);
  }
  to {
    opacity: 0;
	transform: translateY(-100px);
  }
}

#top_page .DownMove{
  top: 0 !important;
	animation: DownAnime 0.5s forwards;
}

#top_page .header-site.animation_auto{
  animation: auto;
}

@keyframes DownAnime{
  from {
  	opacity: 0;
	transform: translateY(-100px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}

#top_page .section-matsuya-movie .header-site {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: none transparent;
    border-bottom: none;
    z-index: 1;
    margin: auto;
}

.header-site>.wrapper {
    padding-top: 31px;
}

#top_page .header-site>.wrapper {
    padding-top: 24px;
}

.header-site .header-logo {
    width: 347px;
    margin: 0 auto 33px;
}

#top_page .header-site .header-logo {
    width: 287px;
    margin: 0 auto 13px;
}

#top_page .section-matsuya-movie .header-site .header-logo {
    margin: 0 auto 23px;
}

.header-site .list-menu-bl {
    position: absolute;
    right: 14px;
    top: 20px;
}

#top_page .header-site .list-menu-bl {
    top: 12px;
}

.list-menu-bl {
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.1em;
}

.list-menu-bl>li {
    border-right: 1px solid #555;
    padding: 0 10px;
}

.section-matsuya-movie .list-menu-bl>li {
    border-right: 1px solid #fff;
}

.list-menu-bl>li:last-child {
    padding-right: 0;
    border-right: none;
}

.list-menu-bl>li:first-child {
    padding-left: 0;
}

.list-menu-bl a {
    color: #555;
}

#top_page .section-matsuya-movie .header-site .list-menu-bl a{
    color: #fff;
    font-weight: bold;
}

.navigation .navigation-inner .ul-nav {
    line-height: 1;
    letter-spacing: 0.1em;
    font-weight: 500;
    padding-left: 56px;
}

#top_page .navigation .navigation-inner .ul-nav {
    font-size: 14px;
}

.navigation .navigation-inner .ul-nav>li {
    border-left: 1px solid #aaaaaa;
    padding: 0 42px;
}

.section-matsuya-movie .navigation .navigation-inner .ul-nav>li {
    border-left: 1px solid #fff;
}

.navigation .navigation-inner .ul-nav>li:first-child,
.navigation .navigation-inner .ul-nav>li.pc-first {
    padding-left: 0;
    border-left: none;
}

@media only screen and (max-width: 750px) {
    .header-site {
        height: auto;
        border-bottom: none;
        position: fixed;
        z-index: 99999;
        left: 0;
        top: 0;
        right: 0;
        min-width: 320px;
    }
    #top_page .header-site {
        height: auto;
    }
    .header-site>.wrapper {
        padding-top: 11px;
        height: 60px;
        z-index: 99;
        background: #fff;
        position: relative;
    }
    #top_page .header-site>.wrapper {
        padding-top: 11px;
    }
    #top_page .section-matsuya-movie .header-site > .wrapper{
        padding-top: 11px;
        background: none;
    }
    .header-site .header-logo {
        width: 180px;
        margin: 0 auto;
    }
    #top_page .header-site .header-logo {
        width: 180px;
    }
    .header-site.js-header>.wrapper {
        border-bottom-color: #002a61;
    }
    .header-btn {
        *zoom: 1;
        font-size: 10px;
        line-height: 1;
        padding: 9px 11px 0 0;
    }
    .header-btn:after {
        content: "";
        display: table;
        clear: both;
    }
    .header-btn>li {
        float: right;
    }
    .header-btn>li:nth-child(1) {
        width: 77px;
    }
    .header-btn>li:nth-child(1) a {
        background-image: url(../img/common/sm/icn_icon03.png);
    }
    .header-btn>li:nth-child(2) {
        width: 60px;
    }
    .header-btn>li:nth-child(2) a {
        background-image: url(../img/common/sm/icn_icon02.png);
    }
    .header-btn>li:nth-child(3) {
        width: 55px;
    }
    .header-btn>li:nth-child(3) a {
        background-image: url(../img/common/sm/icn_icon01.png);
    }
    .header-btn a {
        padding-top: 28px;
        text-align: center;
        display: block;
        background-position: center 0;
        background-repeat: no-repeat;
        background-size: 35px auto;
        color: #003983;
    }
    .navigation {
        position: fixed;
        left: 0;
        right: 0;
        min-width: 320px;
        height: 100%;
        z-index: 90;
        padding-top: 58px;
        top: 0;
        display: none;
    }
    .section-matsuya-movie .navigation {
        padding-top: 60px;
    }
    .navigation .navigation-inner {
        height: 100% !important;
        overflow-y: auto;
        width: 100%;
        padding: 0;
        position: relative;
        z-index: 5;
    }
    .navigation .navigation-inner .ul-nav {
        font-weight: normal;
        font-size: 18px;
        letter-spacing: 0.1em;
        padding-left: 0;
        background: #002a61;
        position: relative;
        z-index: 100;
    }
    #top_page .navigation .navigation-inner .ul-nav {
        font-size: 18px;
    }
    .navigation .navigation-inner .ul-nav>li,
    .section-matsuya-movie .navigation .navigation-inner .ul-nav>li
    {
        border-left: none;
        padding: 0;
    }
    .navigation .navigation-inner .ul-nav>li.menu-sp.even {
        background: #003983;
    }
    .navigation .navigation-inner .ul-nav a {
        display: block;
        padding: 21px 15px;
        position: relative;
        color: #fff;
    }
    .navigation .navigation-inner .ul-nav a:after {
        content: "";
        width: 10px;
        height: 14px;
        background: url(../img/common/icn_bullet03.png) no-repeat 0 0;
        background-size: 100% 100%;
        top: 50%;
        right: 14px;
        margin-top: -7px;
        position: absolute;
    }
    .overlay-menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }
}

.btn-menu {
    width: 60px;
    height: 60px;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    background: #003983;
}

.section-matsuya-movie .btn-menu {
  background: none;
}

.btn-menu>span {
    width: 20px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 50%;
    margin-left: -10px;
    display: block;
}

.btn-menu>span:nth-child(1) {
    top: 22px;
}

.btn-menu>span:nth-child(2) {
    top: 29px;
}

.btn-menu>span:nth-child(3) {
    top: 36px;
}

.btn-menu span:nth-of-type(1) {
    -webkit-animation: menu-bar01 0.75s forwards;
    animation: menu-bar01 0.75s forwards;
}

@-webkit-keyframes menu-bar01 {
    0% {
        -webkit-transform: translateY(7px) rotate(45deg);
    }
    50% {
        -webkit-transform: translateY(7px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(0) rotate(0);
    }
}

@keyframes menu-bar01 {
    0% {
        transform: translateY(7px) rotate(45deg);
    }
    50% {
        transform: translateY(7px) rotate(0);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}

.btn-menu span:nth-of-type(2) {
    transition: all 0.25s 0.25s;
    opacity: 1;
}

.btn-menu span:nth-of-type(3) {
    -webkit-animation: menu-bar02 0.75s forwards;
    animation: menu-bar02 0.75s forwards;
}

@-webkit-keyframes menu-bar02 {
    0% {
        -webkit-transform: translateY(-7px) rotate(-45deg);
    }
    50% {
        -webkit-transform: translateY(-7px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(0) rotate(0);
    }
}

@keyframes menu-bar02 {
    0% {
        transform: translateY(-7px) rotate(-45deg);
    }
    50% {
        transform: translateY(-7px) rotate(0);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}

.btn-menu.js-active span:nth-of-type(1) {
    -webkit-animation: active-menu-bar01 0.75s forwards;
    animation: active-menu-bar01 0.75s forwards;
}

@-webkit-keyframes active-menu-bar01 {
    0% {
        -webkit-transform: translateY(0) rotate(0);
    }
    50% {
        -webkit-transform: translateY(7px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(7px) rotate(45deg);
    }
}

@keyframes active-menu-bar01 {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(7px) rotate(0);
    }
    100% {
        transform: translateY(7px) rotate(45deg);
    }
}

.btn-menu.js-active span:nth-of-type(2) {
    opacity: 0;
}

.btn-menu.js-active span:nth-of-type(3) {
    -webkit-animation: active-menu-bar03 0.75s forwards;
    animation: active-menu-bar03 0.75s forwards;
}

@-webkit-keyframes active-menu-bar03 {
    0% {
        -webkit-transform: translateY(0) rotate(0);
    }
    50% {
        -webkit-transform: translateY(-7px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(-7px) rotate(-45deg);
    }
}

@keyframes active-menu-bar03 {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-7px) rotate(0);
    }
    100% {
        transform: translateY(-7px) rotate(-45deg);
    }
}

@media only screen and (max-width: 374px) {
    .header-btn {
        padding-right: 6px;
        font-size: 8px;
        padding-top: 12px;
    }
    .header-btn>li:nth-child(1) {
        width: 36.49289%;
    }
    .header-site .header-btn>li:nth-child(2) {
        width: 28.43602%;
    }
    .header-btn>li:nth-child(3) {
        width: 35.07109%;
    }
    .header-btn>li a {
        background-size: 30px;
        padding-top: 27px;
        white-space: nowrap;
    }
}


/* COMMON FOOTER
 * ----------------------------------------------- */

.footer-site {
    padding: 97px 0 0;
}

.footer-site .footer-logo {
    display: block;
    width: 218px;
    margin: 0 auto 99px;
}

.footer-site .copyright {
    color: #fff;
    background: #003983;
    font-size: 12px;
    line-height: 1;
    text-align: center;
    letter-spacing: 0.05em;
    margin-top: 40px;
    padding: 28px 0;
}

@media only screen and (max-width: 750px) {
    .footer-site {
        padding: 46px 0 0;
    }
    .footer-site .wrapper {
        padding: 0;
    }
    .footer-site .footer-logo {
        width: 156px;
        margin: 0 auto 47px;
    }
    .footer-site .list-menu-bl {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        letter-spacing: 0;
        margin-bottom: 8px;
    }
    .footer-site .list-menu-bl>li {
        padding: 0 8px;
        margin-bottom: 9px;
    }
    .footer-site .list-menu-bl>li:last-child {
        padding-right: 0;
    }
    .footer-site .list-menu-bl>li:first-child {
        padding-left: 0;
    }
    .footer-site .copyright {
        padding: 25px 0;
        background: #003983;
        color: #fff;
        font-size: 9px;
        letter-spacing: 0;
        text-align: center;
        margin-top: 23px;
    }
}


/* COMMON TITLES
 * ----------------------------------------------- */

.sec-title {
    text-align: center;
    font-size: 40px;
    line-height: 1.4;
    letter-spacing: 0.1em;
    color: #003983;
    font-weight: bold;
}

.sec-pttl {
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: 0.1em;
    color: #003983;
    font-weight: bold;
}

.section-title-page {
    background: #003983;
    position: relative;
}

.section-title-page:after {
    content: "";
    position: absolute;
    width: 50%;
    right: 0;
    top: 0;
    height: 100%;
    background: #ea571e;
}

.section-title-page .col {
    width: 50%;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    height: 140px;
    color: #fff;
    position: relative;
}

.section-title-page .col:first-child {
    z-index: 5;
    padding-bottom: 5px;
}

.section-title-page .col:first-child:after {
    content: "";
    position: absolute;
    right: -14px;
    height: 100%;
    width: 33px;
    top: 0;
    background: url(../img/common/icn_shape01.png) no-repeat 0 0;
}

.section-title-page .col:last-child {
    padding-left: 20px;
    font-size: 28px;
    letter-spacing: 0.1em;
    text-align: right;
    z-index: 4;
}

.section-title-page .col:last-child>p {
    width: 100%;
}

.section-title-page .title {
    font-size: 42px;
    letter-spacing: 0.1em;
    font-weight: bold;
}

@media only screen and (max-width: 750px) {
    .sec-title {
        font-size: 30px;
    }
    .section-title-page {
        margin-top: 5px;
    }
    .section-title-page .col {
        height: 70px;
    }
    .section-title-page .col:first-child {
        padding-bottom: 2px;
    }
    .section-title-page .col:first-child:after {
        right: -8px;
        width: 20px;
        background-image: url(../img/common/sm/icn_shape01.png);
        background-size: 100% 100%;
    }
    .section-title-page .col:last-child {
        padding-left: 10px;
        font-size: 14px;
        letter-spacing: 0;
    }
    .section-title-page .title {
        font-size: 21px;
    }
}

@media only screen and (max-width: 374px) {
    .section-title-page .col:last-child {
        font-size: 12px;
    }
    .section-title-page .title {
        font-size: 19px;
    }
}


/* COMMON BUTTONS
 * ----------------------------------------------- */

.btn-primary {
    padding: 0 20px 2px;
    height: 80px;
    color: #fff;
    letter-spacing: 0.1em;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    font-size: 20px;
    line-height: 1.66667;
    background: #003983;
    text-align: center;
    position: relative;
    margin: 0 auto;
}

.btn-primary:before {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -9px;
    width: 12px;
    height: 18px;
    background: url(../img/common/icn_bullet03.png) no-repeat right center;
    background-size: 12px auto;
    right: 28px;
}

.btn-more {
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    color: #fff;
    letter-spacing: 0.1em;
    padding: 10px 25px 0 5px;
    display: block;
    height: 40px;
    width: 230px;
    font-size: 16px;
    line-height: 1;
    background: #003983;
    text-align: center;
    position: relative;
    margin: 0 auto;
}

.btn-more:before {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -9px;
    width: 12px;
    height: 17px;
    background: url(../img/common/icn_bullet03.png) no-repeat right 1px;
    background-size: 12px auto;
    right: 8px;
}

.ie .btn-more {
    padding-top: 11px;
}

.icn-sns {
    display: block;
    width: 40px;
    height: 40px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid #003983;
    background: #fff url(../img/common/icn_icon01.png) no-repeat center center;
    background-size: 20px auto;
}

.list-news-btns {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.section-top-news .btn_shop_new_close {
    /*	float: left; */
    margin: 60px 0 0 0;
}

.section-top-news .btn_shop_new_close a {
    width: 580px;
    margin: 0 auto;
    height: auto;
    min-height: 60px;
    padding: 20px 15px;
    font-size: 20px;
}

.section-top-news .btn_shop_new_close a:before {
    right: 18px;
}

.list-thumbs {
    margin-bottom: 87px;
    padding: 20px 0;
    background-color: #f2f2f2;
}

@media print,
(min-width: 751px) {
    .btn-primary {
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
    }
}

@media only screen and (max-width: 750px) {
    .btn-primary {
        padding: 0 20px 1px;
        height: 60px;
        font-size: 12px;
        background: #003983;
        text-align: left;
    }
    .btn-primary:before {
        width: 10px;
        background-size: 10px auto;
        right: 18px;
    }
    .btn-more {
        display: flex;
        justify-content: center;
        align-items: center;
        height: auto;
        padding: 0 16px 0 5px;
        width: 230px;
        height: 32px;
        font-size: 15px;
    }
    .btn-more:before {
        width: 10px;
        height: 17px;
        right: 7px;
        background-size: 10px auto;
    }
    .list-thumbs {
        margin-bottom: 40px;
        padding: 15px 0;
    }
    .section-top-news .btn_shop_new_close {
        margin: 30px 0 0 0;
    }
    .section-top-news .btn_shop_new_close a {
        width: 100%;
        min-height: 50px;
        padding: 15px;
        font-size: 15px;
    }
    .list-news-btns {
        /*		flex-direction: column; */
        width: 100%;
    }
    .list-news-btns .ul-btn:not(.shop_info) {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-start;
    }
    .list-news-btns .ul-btn~.ul-btn {}
    .list-news-btns .ul-btn~.ul-btn li {
        position: relative;
        top: auto;
        left: auto;
        float: none;
    }
    .list-news-btns .ul-btn~.ul-btn li .btn-more {
        width: 180px;
        margin: 0;
        padding: 9px 16px 10px 5px;
    }
    .icn-sns {
        width: 32px;
        height: 32px;
        background-size: 18px auto;
    }
}


/* COMMON BREADCRUMBS
 * ----------------------------------------------- */

.breadcrumb {
    background: #f2f2f2;
    padding: 10px 0 12px;
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 1.5;
    color: #999999;
}

.breadcrumb li {
    display: inline-block;
    vertical-align: middle;
    font-weight: 500;
    position: relative;
}

.breadcrumb li+li {
    padding-left: 1.5em;
    margin-left: 0.5em;
}

.breadcrumb li+li:before {
    content: ">";
    position: absolute;
    left: 0;
    top: 0;
}

.breadcrumb li a {
    color: #999;
}


/* COMMON PAGINATIONS
 * ----------------------------------------------- */

.pagination .ul-pager {
    line-height: 46px;
    text-align: center;
    font-size: 18px;
    padding: 0 63px;
}

.pagination .ul-pager>li {
    margin: 0 3px 6px;
}

.pagination .ul-pager>li a,
.pagination .ul-pager>li .page-numbers {
    display: block;
    min-width: 50px;
    height: 48px;
    color: #003983;
    background: #fff;
    border: 1px solid #003983;
}

.pagination .ul-pager>li span.page-numbers {
    background: #003983;
    color: #fff;
}

.pagination .ul-pager>li .dots {
    background: none !important;
    color: #000 !important;
    min-width: 0 !important;
}

.pagination .ul-pager>li.arrows a {
    position: relative;
    background-color: #f2f2f2;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 12px auto;
    text-indent: -1000px;
    overflow: hidden;
    border: none;
}

.pagination .ul-pager>li.arrows.prev {
    margin-right: 17px;
    margin-left: -63px;
}

.pagination .ul-pager>li.arrows.prev a {
    background-image: url(../img/common/icn_bullet04.png);
}

.pagination .ul-pager>li.arrows.next {
    margin-left: 17px;
    margin-right: -63px;
}

.pagination .ul-pager>li.arrows.next a {
    background-image: url(../img/common/icn_bullet01.png);
}

.pager {
    *zoom: 1;
}

.pager:after {
    content: "";
    display: table;
    clear: both;
}

.pager .btn {
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    color: #fff;
    letter-spacing: 0.1em;
    padding: 10px 30px 0 15px;
    display: block;
    height: 40px;
    min-width: 140px;
    font-size: 16px;
    line-height: 1;
    background: #003983;
    text-align: center;
    position: relative;
    margin: 0 auto;
}

.pager .btn:before {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -9px;
    width: 12px;
    height: 17px;
    background: url(../img/common/icn_bullet03.png) no-repeat center 1px;
    background-size: 12px auto;
    right: 10px;
}

.pager .next {
    float: right;
}

.pager .prev {
    float: left;
    border: 1px solid #003983;
    background: #fff;
    color: #003983;
    padding-left: 20px;
    padding-right: 20px;
}

.pager .prev:before {
    background-image: url(../img/common/icn_bullet04.png);
    right: auto;
    left: 10px;
}

@media only screen and (max-width: 750px) {
    .pagination .ul-pager {
        line-height: 38px;
        font-size: 16px;
        padding: 0 43px;
        position: relative;
    }
    .pagination .ul-pager>li {}
    .pagination .ul-pager>li a,
    .pagination .ul-pager>li .page-numbers {
        min-width: 40px;
        height: 40px;
    }
    .pagination .ul-pager>li.arrows {
        position: absolute;
        top: 0;
    }
    .pagination .ul-pager>li.arrows a {
        background-size: 10px auto;
    }
    .pagination .ul-pager>li.arrows.prev {
        margin: 0;
        left: 0;
    }
    .pagination .ul-pager>li.arrows.next {
        margin: 0;
        right: 0;
    }
    .pager .btn {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 18px 0 5px;
        height: 50px;
        width: 100%;
        font-size: 15px;
    }
    .pager .btn:before {
        width: 10px;
        height: 17px;
        right: 7px;
        background-size: 10px auto;
    }
    .pager .next {
        float: right;
    }
    .pager .prev {
        padding-left: 18px;
        padding-right: 18px;
    }
    .pager .prev:before {
        left: 7px;
    }
}

img.landscape {
    width: auto;
    height: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

img.portrait {
    width: 100%;
    height: auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.select-hidden {
    visibility: hidden;
    display: none;
}

.select-options li[rel="hide"] {
    display: none;
}


/* PAGES
 * ----------------------------------------------- */


/* movie */
.section-matsuya-movie {
  position: relative;
  margin-bottom: 80px; /* script.jsにてmargin-bottomの数値を取得中、削除する際はjsのコード修正も行うこと */
  border-bottom: 5px solid #000000;
  line-height: 0;
}

.section-matsuya-movie .movie-txt {
}

.section-matsuya-movie .movie-txt img {
    z-index: 1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: auto;
    height: 55%;
}

.section-matsuya-movie video,
.section-matsuya-movie img
{
  width: 100%;
}

.section-matsuya-movie video {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

#top_page .section-matsuya-movie .header-site {
  position: absolute;
  top: 0;
  background: none transparent;
  border-bottom: none;
}

#top_page .section-matsuya-movie .header-site .navigation .navigation-inner .ul-nav > li a {
  color: #fff;
}


/* SECTION KEYVISUAL
 * ----------------------------------------------- */

.section-keyvisual {
    position: relative;
    z-index: 2;
}

.section-keyvisual .keyvisual-slide {
    position: relative;
}

.section-keyvisual .keyvisual-slide:before,
.section-keyvisual .keyvisual-slide:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1221;
}

.section-keyvisual .keyvisual-slide:before {
    left: 50%;
    margin-left: 580px;
}

.section-keyvisual .keyvisual-slide:after {
    right: 50%;
    margin-right: 580px;
}

.section-keyvisual .item-slide {
    width: 1160px;
    position: relative;
    visibility: hidden;
}

.section-keyvisual .item-slide img {
    display: block;
    width: 100%;
}

.section-keyvisual .slick-initialized .item-slide {
    visibility: visible;
}

.section-keyvisual .keyvisual-logo {
    position: absolute;
    top: 0;
    width: 340px;
    height: 320px;
    left: 0;
    background: #fff;
    z-index: 1;
}

.section-keyvisual .slick-arrow {
    margin-top: -40px;
}

.section-keyvisual .slick-arrow.slick-prev {
    margin-left: -600px;
    left: 50%;
}

.section-keyvisual .slick-arrow.slick-next {
    right: auto;
    margin-left: 560px;
    left: 50%;
}

.section-matsuya-keyvisual {
    position: relative;
    z-index: 2;
}

.section-matsuya-keyvisual .matsuya-keyvisual-slide {
    position: relative;
}

.section-matsuya-keyvisual .matsuya-keyvisual-slide:before,
.section-matsuya-keyvisual .matsuya-keyvisual-slide:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1221;
}

.section-matsuya-keyvisual .matsuya-keyvisual-slide:before {
    left: 50%;
    margin-left: 580px;
}

.section-matsuya-keyvisual .matsuya-keyvisual-slide:after {
    right: 50%;
    margin-right: 580px;
}

.section-matsuya-keyvisual .item-slide {
    width: 1160px;
    position: relative;
    visibility: hidden;
}

.section-matsuya-keyvisual .item-slide img {
    display: block;
    width: 100%;
}

.section-matsuya-keyvisual .slick-arrow {
    margin-top: -40px;
}

.section-matsuya-keyvisual .slick-arrow.slick-prev {
    margin-left: -600px;
    left: 50%;
}

.section-matsuya-keyvisual .slick-arrow.slick-next {
    right: auto;
    margin-left: 560px;
    left: 50%;
}

.section-matsuya-keyvisual .slick-initialized .item-slide {
    visibility: visible;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 60px;
    margin-top: -30px;
    border: 1px solid #003983;
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto 22px;
    z-index: 1222;
}

.slick-arrow.slick-prev {
    background-image: url(../img/common/btn_prev.png);
    left: 0;
}

.slick-arrow.slick-next {
    background-image: url(../img/common/btn_next.png);
    right: 0;
}

.slick-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    z-index: 1222;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.slick-dots>li {
    margin: 0 5px;
}

.slick-dots button {
    width: 10px;
    height: 10px;
    border: 1px solid #003983;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    background: #fff;
}

.slick-dots .slick-active button {
    background: #003983;
}

@media only screen and (min-width: 641px) {
  .section-matsuya-movie {
    height: 768px;
    overflow-x: hidden;
    overflow-y: hidden;
  }
}

@media print,
(min-width: 751px) {
    .section-keyvisual .slick-active .keyvisual-logo {
        opacity: 1;
        transition-delay: 0.5s;
    }
    .section-keyvisual .keyvisual-logo {
        opacity: 0;
        transition: opacity 0.3s;
    }
}

@media only screen and (max-width: 750px) {
    .section-matsuya-movie {
        width: 100vw;
        aspect-ratio: 1 / 1.44;
        margin-bottom: 60px; /* script.jsにてmargin-bottomの数値を取得中、削除する際はjsのコード修正も行うこと */
    }
    .section-matsuya-movie .movie-txt img {
        height: 63%;
        z-index: 0;
    }
    .section-matsuya-movie video {
        z-index: -1;
    }
    .section-keyvisual {
        padding-top: 5px;
    }
    .section-keyvisual .keyvisual-slide {
        position: relative;
    }
    .section-keyvisual .keyvisual-slide:before,
    .section-keyvisual .keyvisual-slide:after {
        display: none;
    }
    .section-keyvisual .item-slide {
        width: auto;
        position: relative;
    }
    .section-keyvisual .item-slide:before {
        display: none;
    }
    .section-keyvisual .item-slide .item-inner {
        display: -webkit-flex;
        display: flex;
    }
    .section-keyvisual .thumb {
        width: 60%;
    }
    .section-keyvisual .keyvisual-logo {
        position: relative;
        top: auto;
        width: 40%;
        height: auto;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-align-items: center;
        align-items: center;
        left: auto;
        margin-left: 0;
        visibility: visible;
    }
    .section-keyvisual .slick-arrow {
        margin-top: -20px;
    }
    .section-keyvisual .slick-arrow.slick-prev {
        margin-left: 5px;
        left: 40%;
    }
    .section-keyvisual .slick-arrow.slick-next {
        right: 5px;
        margin-left: 0;
        left: auto;
    }
    .section-keyvisual .slick-dots {
        width: 60%;
        left: auto;
        right: 0;
    }
    .section-matsuya-keyvisual .matsuya-keyvisual-slide {
        position: relative;
    }
    .section-matsuya-keyvisual .matsuya-keyvisual-slide:before,
    .section-matsuya-keyvisual .matsuya-keyvisual-slide:after {
        display: none;
    }
    .section-matsuya-keyvisual .item-slide {
        width: auto;
        position: relative;
    }
    .item-slide img {
        width: 100%;
    }
    .section-matsuya-keyvisual .item-slide:before {
        display: none;
    }
    .section-matsuya-keyvisual .slick-arrow {
        margin-top: -20px;
    }
    .section-matsuya-keyvisual .slick-arrow.slick-prev {
        margin-left: 0;
        left: 5px;
    }
    .section-matsuya-keyvisual .slick-arrow.slick-next {
        right: 5px;
        margin-left: 0;
        left: auto;
    }
    .slick-arrow {
        width: 28px;
        height: 43px;
        margin-top: -20px;
        background-size: auto 18px;
    }
    .slick-arrow.slick-prev {
        left: 5px;
    }
    .slick-arrow.slick-next {
        right: 5px;
    }
    .slick-dots {
        bottom: 10px;
    }
    .slick-dots>li {
        margin: 0 3px;
    }
    .slick-dots button {
        width: 7px;
        height: 7px;
    }
}


/* SECTION TOP INFO
* ----------------------------------------------- */

.top_info {
    border: 2px solid #ff0000;
    padding: 30px;
    margin: 20px auto;
    width: 960px;
    text-align: center;
}

@media only screen and (max-width: 750px) {
    .top_info {
        width: 90%;
    }
}


/* SECTION BRANK
 * ----------------------------------------------- */

.section-foods-brank {
    /*  padding: 20px 0 0;*/
}

.section-foods-brank {
    padding: 86px 0 60px;
}

.section-foods-brank .ul-brank {
    width: 961px;
    border-left: 1px solid #ccc;
    margin: 0 auto;
}

.section-foods-brank .ul-brank>li {
    width: 120px;
    border-top: 1px solid #ccc;
    margin-top: -1px;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.section-foods-brank .ul-brank img {
    margin: 0 auto;
}

.section-foods-brank .ul-brank a {
    display: block;
    width: 100%;
}

.section-foods-brank .list-brand {
    margin: 92px 0 40px;
}

.section-foods-brank .list-brand>li {
    background: #f2f2f2;
}

.section-foods-brank .list-brand>li:nth-child(even) {
    background: #fff;
}

.section-foods-brank .list-brand>li:nth-child(even) .th {
    border-top: none;
    border-bottom: none;
}

.section-foods-brank .list-brand .wrapper {
    display: table;
    height: 340px;
}

.section-foods-brank .list-brand .wrapper .th,
.section-foods-brank .list-brand .wrapper .td {
    display: table-cell;
    vertical-align: middle;
}

.section-foods-brank .list-brand .th {
    width: 340px;
    border: 1px solid #f2f2f2;
    background: #fff;
}

.section-foods-brank .list-brand .th img {
    width: 100%;
}

.section-foods-brank .list-brand .td {
    padding: 20px 0 20px 60px;
    font-size: 14px;
    letter-spacing: 0.2em;
    line-height: 2.42857;
    color: #000;
}

.section-foods-brank .ul-other {
    border-left: 1px solid #f2f2f2;
    border-top: 1px solid #f2f2f2;
}

.section-foods-brank .ul-other>li {
    width: 20%;
    border-right: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
}

.section-foods-brank .ul-other .item {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    height: 240px;
}

.section-foods-brank .ul-other .current {
    background: #003983;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

@media only screen and (max-width: 750px) {
    .section-foods-brank .ul-brank {
        width: 100%;
    }
    .section-foods-brank .ul-brank>li {
        width: 20%;
    }
    .section-foods-brank .ul-brank img {
        margin: 0 auto;
    }
    .section-foods-brank .list-brand {
        margin: 42px 0 30px;
    }
    .section-foods-brank .list-brand .wrapper {
        height: 255px;
        padding: 0;
    }
    .section-foods-brank .list-brand .th {
        width: 150px;
        padding-left: 7px;
        padding-right: 7px;
    }
    .section-foods-brank .list-brand .td {
        padding: 20px;
        font-size: 11px;
        line-height: 1.81818;
    }
    .section-foods-brank .ul-other>li {
        width: 50%;
    }
    .section-foods-brank .ul-other .item {
        height: 173px;
    }
    .section-foods-brank .ul-other img {
        max-width: 135px;
        margin: 0 auto;
        width: auto;
    }
    .section-foods-brank .ul-other img.w01 {
        max-width: 170px;
    }
    .section-foods-brank .ul-other .current {
        font-size: 15px;
    }
}

@media only screen and (max-width: 374px) {
    .section-foods-brank .ul-other img {
        max-width: 100% !important;
    }
}

.section-top-news {
    padding: 86px 0 60px;
    border-bottom: 1px solid #003983;
}

.section-top-news .sec-title {
    margin-bottom: 90px;
}

.section-top-news .ul-tab {
    margin: 0 -15px 38px;
}

.section-top-news .ul-tab>li {
    width: 50%;
    padding: 0 15px;
}

.section-top-news .ul-tab a {
    display: block;
    border: 1px solid #aaaaaa;
    font-size: 18px;
    letter-spacing: 0.2em;
    text-align: center;
    padding: 10px 10px 12px;
    color: #003983;
}

.section-top-news .ul-tab a.active {
    border-color: #003983;
    background: #003983;
    color: #fff;
}

.section-top-news .ul-btn {
    *zoom: 1;
}

.section-top-news .ul-btn:after {
    content: "";
    display: table;
    clear: both;
}

.section-top-news .ul-btn>li {
    float: right;
    margin-left: 20px;
}

.list-news-cmn {
    display: table;
    width: 100%;
    margin-bottom: 20px;
    border-top: 1px solid #aaaaaa;
}

.list-news-cmn .item {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #aaaaaa;
}

.list-news-cmn .item .news_title {
    width: 100%;
    font-weight: bold;
}

.list-news-cmn .item .thumbs {
    flex-shrink: 0;
    width: 86px;
    height: 74px;
    margin-right: 20px;
}

.list-news-cmn .item .thumbs img {
    width: 100%;
}

.list-news-cmn .th {
    padding: 0 0 21px;
    line-height: 1.4;
}

.list-news-cmn .th {
    position: relative;
}

.list-news-cmn .th .tag {
    display: block;
}

.list-news-cmn a {
    /*  padding-right: 20px; background: url(../img/common/icn_bullet01.png) no-repeat right center;*/
    background-size: 12px auto;
}

.list-news-cmn .date {
    font-size: 14px;
    letter-spacing: 0.2em;
    color: #003983;
}

.list-news-cmn .ttl {
    letter-spacing: 0.1em;
}

.tag {
    display: inline-block;
    font-size: 10px;
    border: 1px solid #003983;
    color: #003983;
    min-width: 97px;
    position: relative;
    top: -2px;
    border-radius: 5px;
    text-align: center;
    margin-left: 8px;
    padding: 2px 5px;
    white-space: nowrap;
}

.windows10.ie .tag {
    padding-bottom: 6px;
}

.tag.bg-tag01 {
    border-color: #be0000;
    color: #be0000;
}

@media print,
(min-width: 751px) {
    .section-top-news .ul-tab a:hover {
        background: #003983;
        color: #fff;
        border-color: #003983;
    }
}

@media only screen and (max-width: 750px) {
    .section-top-news {
        padding: 20px 0 30px;
    }
    .section-top-news .wrapper {
        padding: 0 5px;
    }
    .section-top-news .wrapper .list-news-cmn .item {
        display: flex;
        margin-bottom: 5px;
        padding: 0 0 6px;
    }
    .list-news-cmn .item .news_title {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .list-news-cmn .item .thumbs {
        width: 83px;
        height: 72px;
        margin-right: 10px;
    }
    .section-top-news .sec-title {
        margin-bottom: 5px;
    }
    .section-top-news .ul-tab {
        margin: 0 -7px 16px;
    }
    .section-top-news .ul-tab>li {
        padding: 0 7px;
    }
    .section-top-news .ul-tab a {
        display: table;
        width: 100%;
        height: 60px;
        border: 1px solid #003983;
        font-size: 14px;
        line-height: 1.42857;
        padding: 5px;
        letter-spacing: 0.05em;
    }
    .section-top-news .ul-tab a>span {
        display: table-cell;
        vertical-align: middle;
    }
    .section-top-news .ul-btn {
        position: relative;
    }
    .section-top-news .ul-btn>li {
        margin-left: 10px;
        float: none;
    }
    .section-top-news .ul-btn .btn {}
    .list-news-cmn {
        display: block;
        margin-bottom: 30px;
        border-top-width: 0;
        font-size: 13px;
    }
    .list-news-cmn .item {
        display: flex;
        padding: 11px 0;
        border-bottom: 1px solid #aaaaaa;
        margin-bottom: 0;
    }
    .list-news-cmn .item:last-child {
        margin-bottom: 0;
    }
    .list-news-cmn .th,
    .list-news-cmn .td {
        display: block;
        border-bottom: none;
        padding: 0;
        font-weight: bold;
    }
    .list-news-cmn .th {
        width: auto;
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 10px;
        font-weight: bold;
    }
    .list-news-cmn .th .tag {
        display: inline-block;
    }
    .list-news-cmn .td {
        padding-right: 20px;
        background-size: 10px auto;
    }
    .list-news-cmn .date {
        position: relative;
        margin-right: 10px;
        left: auto;
        top: auto;
        font-size: 11px;
    }
    .tag {
        font-size: 10px;
        min-width: 96px;
        margin-left: 14px;
        padding: 3px 4px;
        border-radius: 3px;
    }
    .list-news-cmn a {
        /*  padding-right: 20px; background: url(../img/common/icn_bullet01.png) no-repeat right center;*/
        background-size: 12px auto;
    }
}

@media only screen and (max-width: 374px) {
    .section-top-news .ul-tab a {
        letter-spacing: 0;
        padding: 0;
    }
}

.section-top-message {
    background: url(../img/top/bg_message.jpg) no-repeat center center;
    background-size: cover;
    padding: 116px 0;
}

.section-top-message .wrapper {
    padding: 0 100px;
    position: relative;
}

.section-top-message .col {
    width: 500px;
    color: #fff;
}

.section-top-message .btn {
    display: block;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    width: 260px;
    border: 1px solid #fff;
    text-align: center;
    padding: 16px 35px 18px;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.1em;
    position: absolute;
    left: 152px;
    bottom: 9px;
}

.section-top-message .btn:after {
    content: "";
    width: 12px;
    height: 18px;
    top: 50%;
    right: 16px;
    margin-top: -9px;
    background: url(../img/common/icn_bullet03.png) no-repeat center center;
    background-size: 100% auto;
    position: absolute;
}

.section-top-message .col-l {
    padding: 75px 0;
}

.section-top-message .col-l .title {
    font-size: 46px;
    line-height: 1.73913;
    letter-spacing: 0.2em;
    font-weight: bold;
}

.section-top-message .info {
    line-height: 1.88889;
    font-size: 18px;
    letter-spacing: 0.2em;
}

.section-top-message .info .ttl {
    font-size: 24px;
    line-height: 1.66667;
    margin-bottom: 35px;
}

@media only screen and (max-width: 750px) {
    .section-top-message {
        background-image: url(../img/top/sm/bg_message.jpg);
        padding: 72px 0 70px;
    }
    .section-top-message .wrapper {
        padding: 0 35px;
    }
    .section-top-message .col {
        width: auto;
    }
    .section-top-message .col-l {
        padding: 0;
        margin-bottom: 35px;
    }
    .section-top-message .col-l .title {
        font-size: 23px;
    }
    .section-top-message .info {
        line-height: 2.08333;
        font-size: 12px;
        letter-spacing: 0.1em;
    }
    .section-top-message .info .ttl {
        font-size: 17px;
        line-height: 1.76471;
        margin-bottom: 25px;
    }
}


/* PAGE INNER
 * ----------------------------------------------- */

.section-tabs {
    padding: 60px 0;
}

.section-tabs .ul-tabs {
    margin: 0 -6px;
}

.section-tabs .ul-tabs>li {
    width: 16.66667%;
    padding: 0 6px;
}

.section-tabs .ul-tabs .tab-link {
    display: block;
    background: #f2f2f2;
    text-align: center;
    padding: 13px 14px 15px;
    cursor: pointer;
    color: #003983;
    letter-spacing: 0.1em;
}

.section-tabs .ul-tabs li.current .tab-link {
    background: #003983;
    color: #fff;
}

@media print,
(min-width: 751px) {
    .section-tabs .ul-tabs .tab-link {
        -moz-transition: ease 0.26s;
        -o-transition: ease 0.26s;
        -webkit-transition: ease 0.26s;
        transition: ease 0.26s;
    }
    .section-tabs .ul-tabs .tab-link:hover {
        background: #003983;
        color: #fff;
    }
}

@media only screen and (max-width: 750px) {
    .section-tabs {
        padding: 30px 0;
    }
    .section-tabs .select-tabs {
        position: relative;
    }
    .section-tabs .select-styled-year {
        background: #003983;
        color: #fff;
        height: 40px;
        padding: 11px 30px 3px 17px;
        position: relative;
        font-size: 16px;
        line-height: 1;
        letter-spacing: 0.1em;
    }
    .section-tabs .select-styled-year:before {
        content: "";
        width: 14px;
        height: 20px;
        background: url(../img/common/sm/icn_expand_off.png) no-repeat center center;
        background-size: 100% auto;
        top: 50%;
        margin-top: -10px;
        right: 12px;
        position: absolute;
    }
    .section-tabs .select-options-year {
        border: 2px solid #003983;
        position: absolute;
        width: 100%;
        top: 100%;
        left: 0;
        z-index: 999;
        background: #fff;
        display: none;
    }
    .section-tabs .select-options-year>li {
        border-top: 2px solid #003983;
        display: block;
        height: 40px;
        padding: 10px 15px;
        color: #003983;
    }
    .section-tabs .select-options-year>li:first-child {
        border-top: none;
    }
}

.section-inner-cmn {
    border-top: 5px solid #003983;
    line-height: 2.5;
    letter-spacing: 0.05em;
    padding-bottom: 39px;
}

.section-inner-cmn .sec-heading {
    font-size: 28px;
    letter-spacing: 0.1em;
    text-align: center;
    color: #000;
    background: #f2f2f2;
    padding-bottom: 5px;
    margin-bottom: 45px;
}

.section-inner-cmn .sec-heading .wrapper {
    height: 130px;
}

.section-inner-cmn .caption {
    margin-bottom: 47px;
}

.section-inner-cmn .ul-col>li {
    width: 580px;
    margin: 0 0 49px 40px;
}

.section-inner-cmn .ul-col>li:nth-child(2n+1) {
    margin-left: 0;
}

.section-inner-cmn .ul-col .thumb {
    margin-bottom: 7px;
    width: 100%;
    display: block;
}

.section-inner-cmn .tab-content {
    display: none;
}

.section-inner-cmn .tab-content.current {
    display: block;
}

.section-inner-rates {
    border-top-color: #ea571e;
    /*  border-bottom: 1px solid #003983;*/
    padding-bottom: 100px;
}

.section-inner-rates .ul-col {
    padding-bottom: 40px;
}

@media only screen and (max-width: 750px) {
    .section-inner-cmn {
        border-top-width: 3px;
        line-height: 2.08333;
        font-size: 12px;
        padding-bottom: 41px;
    }
    .section-inner-cmn .sec-heading {
        font-size: 18px;
        line-height: 1.66667;
        padding-bottom: 0;
        margin-bottom: 33px;
    }
    .section-inner-cmn .sec-heading .wrapper {
        height: 87px;
    }
    .section-inner-cmn .caption {
        margin-bottom: 30px;
    }
    .section-inner-cmn .ul-col>li {
        width: auto;
        margin: 0 0 30px 0;
    }
    .section-inner-cmn .ul-col>li:last-child {
        margin-bottom: 0;
    }
    .section-inner-cmn .ul-col .thumb {
        margin-bottom: 13px;
    }
    .section-inner-rates {
        border-top-color: #ea571e;
        /*    border-bottom: 1px solid #003983;*/
        padding-bottom: 70px;
    }
    .section-inner-rates .ul-col {
        padding-bottom: 42px;
        letter-spacing: 0;
    }
}


/* PAGE NEWS
 * ----------------------------------------------- */

.section-news {
    padding: 46px 0 100px;
    border-bottom: 1px solid #003983;
    position: relative;
    z-index: 10;
}

.section-news .caption {
    line-height: 2.5;
    letter-spacing: 0.1em;
    margin-bottom: 49px;
}

.section-news .row-tab {
    margin-bottom: 40px;
}

.section-news .wr-select {
    width: 190px;
}

.section-news .ul-tabs {
    width: 1010px;
}

.section-news .ul-tabs>li {
    width: 190px;
    margin-right: 12px;
}

.section-news .ul-tabs>li:first-child {
    margin-left: 0;
}

.section-news .ul-tabs>li .tab-link {
    font-size: 18px;
    color: #003983;
    letter-spacing: 0.1em;
    text-align: center;
    padding: 12px 0;
    background: #f2f2f2;
    display: block;
    height: 50px;
    cursor: pointer;
}

.section-news .ul-tabs>li.current .tab-link {
    background: #003983;
    color: #fff;
}

.section-news .ul-tabs .select-year {
    border: 4px solid #f2f2f2;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    background-color: #fff;
    -moz-appearance: none;
    -webkit-appearance: none;
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
}

.section-news .select-cmn {
    position: relative;
}

.section-news .ul-tab-text {
    border-bottom: 1px solid #aaaaaa;
    border-left: 1px solid #aaaaaa;
    padding-bottom: 10px;
    font-size: 18px;
    letter-spacing: 0.2em;
    margin-bottom: 38px;
}

.section-news .ul-tab-text>li {
    width: 20%;
    border-right: 1px solid #aaaaaa;
}

.section-news .ul-tab-text .item {
    color: #000;
    display: table;
    width: 100%;
    height: 40px;
    position: relative;
    cursor: pointer;
}

.section-news .ul-tab-text .item>span {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.section-news .ul-tab-text .item.clor {
    color: #be0000;
}

.section-news .ul-tab-text .hide {
    width: 0;
    height: 0;
    visibility: hidden;
}

.section-news .pagination {
    margin-top: 60px;
}

.section-news .tab-content,
.section-news .tab-content-sub {
    display: none;
}

.section-news .tab-content.current,
.section-news .tab-content-sub.current {
    display: block;
}

@media print,
(min-width: 751px) {
    .section-news .ul-tabs>li>.tab-link {
        -moz-transition: ease 0.26s;
        -o-transition: ease 0.26s;
        -webkit-transition: ease 0.26s;
        transition: ease 0.26s;
        letter-spacing: 0.2em;
    }
    .section-news .ul-tabs>li>.tab-link:hover {
        background: #003983;
        color: #fff;
    }
    .section-news .ul-tab-text .item:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -10px;
        background: #003983;
        height: 5px;
        filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
        opacity: 0;
        -moz-transition: opacity 0.26s ease;
        -o-transition: opacity 0.26s ease;
        -webkit-transition: opacity 0.26s ease;
        transition: opacity 0.26s ease;
    }
    .section-news .ul-tab-text li:hover .item:before,
    .section-news .ul-tab-text li.current .item:before {
        filter: progid: DXImageTransform.Microsoft.Alpha(enabled=false);
        opacity: 1;
    }
    .section-news .select-styled {
        background: #fff;
        border: 4px solid #f2f2f2;
        font-size: 18px;
        color: #003983;
        text-align: center;
        height: 50px;
        padding: 8px 34px 8px 10px;
        letter-spacing: 0.2em;
        position: relative;
        cursor: pointer;
    }
    .section-news .select-styled:after {
        content: "";
        position: absolute;
        right: 9px;
        height: 100%;
        width: 16px;
        top: 0;
        background: url(../img/common/icn_expand_off.png) no-repeat center center;
        background-size: 100% auto;
    }
    .section-news .select-options {
        width: 382px;
        position: absolute;
        letter-spacing: 0.2em;
        right: 0;
        top: 100%;
        *zoom: 1;
        z-index: 9999;
        background: #f2f2f2;
        color: #003983;
        text-align: center;
        display: none;
    }
    .section-news .select-options:after {
        content: "";
        display: table;
        clear: both;
    }
    .section-news .select-options>li {
        width: 50%;
        float: left;
        padding: 9px 10px;
        border-left: 1px solid #fff;
        border-top: 1px solid #fff;
        cursor: pointer;
        -moz-transition: ease 0.26s;
        -o-transition: ease 0.26s;
        -webkit-transition: ease 0.26s;
        transition: ease 0.26s;
    }
    .section-news .select-options>li:hover {
        background: #003983;
        color: #fff;
    }
    .section-news .select-options .options-active {
        background: #003983;
        color: #fff;
    }
}

@media only screen and (max-width: 750px) {
    .section-news {
        padding: 32px 0 70px;
        font-size: 12px;
        letter-spacing: 0;
    }
    .section-news .caption {
        line-height: 2.08333;
        margin-bottom: 33px;
    }
    .section-news .tabs-sm {
        font-size: 16px;
        letter-spacing: 0.1em;
        position: relative;
    }
    .section-news .tabs-sm .select-styled,
    .section-news .tabs-sm .select-styled-year,
    .section-news .tabs-sm .select-styled-cate {
        background: #003983;
        color: #fff;
        height: 40px;
        padding: 10px 30px 3px 17px;
        position: relative;
        font-size: 16px;
        line-height: 1;
    }
    .section-news .tabs-sm .select-styled:before,
    .section-news .tabs-sm .select-styled-year:before,
    .section-news .tabs-sm .select-styled-cate:before {
        content: "";
        width: 14px;
        height: 20px;
        background: url(../img/common/sm/icn_expand_off.png) no-repeat center center;
        background-size: 100% auto;
        top: 50%;
        margin-top: -10px;
        right: 12px;
        position: absolute;
    }
    .section-news .tabs-sm .select-options,
    .section-news .tabs-sm .select-options-year,
    .section-news .tabs-sm .select-options-cate {
        border: 2px solid #003983;
        position: absolute;
        width: 100%;
        top: 100%;
        left: 0;
        z-index: 999;
        background: #fff;
        display: none;
        *zoom: 1;
    }
    .section-news .tabs-sm .select-options:after,
    .section-news .tabs-sm .select-options-year:after,
    .section-news .tabs-sm .select-options-cate:after {
        content: "";
        display: table;
        clear: both;
    }
    .section-news .tabs-sm .select-options>li,
    .section-news .tabs-sm .select-options-year>li,
    .section-news .tabs-sm .select-options-cate>li {
        width: 50%;
        border: 2px solid #003983;
        border-left: none;
        margin-bottom: -2px;
        float: left;
        display: block;
        height: 40px;
        padding: 6px 17px;
        color: #003983;
    }
    .section-news .tabs-sm .select-options>li:nth-child(1),
    .section-news .tabs-sm .select-options>li:nth-child(2),
    .section-news .tabs-sm .select-options-year>li:nth-child(1),
    .section-news .tabs-sm .select-options-year>li:nth-child(2),
    .section-news .tabs-sm .select-options-cate>li:nth-child(1),
    .section-news .tabs-sm .select-options-cate>li:nth-child(2) {
        border-top: none;
    }
    .section-news .tabs-sm .select-options>li:nth-child(2n),
    .section-news .tabs-sm .select-options-year>li:nth-child(2n),
    .section-news .tabs-sm .select-options-cate>li:nth-child(2n) {
        border-right: none;
    }
    .section-news .tabs-sm .select-styled-year {
        padding-top: 11px;
    }
    .section-news .w-tab-sm {
        position: relative;
    }
    .section-news .w-tab-sm .select-styled-cate {
        border: 2px solid #f2f2f2;
        background: #fff;
        color: #000;
    }
    .section-news .w-tab-sm .select-styled-cate:before {
        background-image: url(../img/common/icn_expand_off.png);
    }
    .section-news .w-tab-sm .select-options-cate {
        border: 2px solid #f2f2f2;
        border-top: none;
        background: #fff;
        color: #282828;
    }
    .section-news .w-tab-sm .select-options-cate .clor {
        color: #be0000;
    }
    .section-news .w-tab-sm .select-options-cate>li {
        width: 100%;
        border: none;
        border-bottom: 2px solid #f2f2f2;
        color: #000;
    }
    .section-news .w-tab-sm .select-options-cate>li:last-child {
        border-bottom: none;
    }
    .section-news .w-tab-sm .select-options-cate>li[rel$="-5"] {
        color: #be0000;
    }
    .section-news .select-cmn-year {
        position: relative;
        z-index: 99999;
    }
    .section-news .tab-content {
        margin-top: 31px;
    }
    .section-news .tab-content-sub {
        margin-top: 18px;
    }
    .section-news .tab-content.sm {
        display: none !important;
    }
    .section-news .tab-content.sm.current {
        display: block !important;
    }
    .section-news .pagination {
        margin-top: 25px;
    }
}

.section-post-cmn {
    padding: 100px 0;
    border-bottom: 1px solid #003983;
}

.section-post-cmn .head-post {
    border-bottom: 1px solid #aaaaaa;
    padding-bottom: 32px;
    margin-bottom: 49px;
}

.section-post-cmn .head-post .gr {
    margin-bottom: 21px;
}

.section-post-cmn .head-post .date {
    font-size: 14px;
    margin-right: 15px;
    letter-spacing: 0.2em;
    color: #003983;
}

.section-post-cmn .title {
    font-size: 28px;
    line-height: 1.5;
    color: #000;
}

.section-post-cmn .thumb-large {
    margin-top: 46px;
}

.section-post-cmn .article-main {
    line-height: 2.5;
    margin-bottom: 60px;
}

.section-post-cmn .article-main .pttl {
    font-size: 20px;
    font-weight: bold;
    line-height: 2;
    margin-bottom: 36px;
}

.section-post-cmn .article-main .row {
    margin: 60px 0 0;
}

.section-post-cmn .article-main .row .info {
    width: 570px;
    margin-top: -12px;
}

.section-post-cmn .article-main .row .thumb {
    width: 600px;
}

@media only screen and (max-width: 750px) {
    .section-post-cmn {
        padding: 50px 0 70px;
    }
    .section-post-cmn .head-post {
        padding-bottom: 13px;
        margin-bottom: 33px;
    }
    .section-post-cmn .head-post .gr {
        margin-bottom: 13px;
    }
    .section-post-cmn .head-post .date {
        font-size: 11px;
        margin-right: 10px;
    }
    .section-post-cmn .title {
        font-size: 18px;
        line-height: 1.66667;
    }
    .section-post-cmn .thumb-large {
        margin-top: 24px;
    }
    .section-post-cmn .article-main {
        line-height: 2.08333;
        margin-bottom: 32px;
    }
    .section-post-cmn .article-main .pttl {
        font-size: 14px;
        line-height: 1.78571;
        margin-bottom: 18px;
    }
    .section-post-cmn .article-main .row {
        margin: 35px 0 0;
    }
    .section-post-cmn .article-main .row .info {
        width: auto;
        margin: 0 0 22px;
    }
    .section-post-cmn .article-main .row .thumb {
        width: auto;
    }
}

.page-inner .inner_title {
    margin: 40px 0 30px;
    padding-bottom: 5px;
    border-bottom: 1px solid #aaa;
    font-size: 24px;
}

.page-inner .inner_subtitle {
    font-size: 24px;
}

.page-inner .inner_subtitle~.inner_subtitle {
    margin-top: 20px;
}

.page-inner .links_btn {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    margin-top: 10px;
}

.page-inner .links_btn li~li {
    margin-left: 30px;
}

.page-inner p b {
    color: #be0000;
}

.page-inner p a {
    text-decoration: underline;
    color: #003983;
}

.page-inner .links_btn2 {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    margin-top: 15px;
}

.page-inner .links_btn2 li {
    width: 50%;
    text-align: center;
}

.page-inner .links_btn2 li a {
    display: inline-block;
    position: relative;
    padding: 5px 33px 6px 23px;
    border-radius: 5px;
    background-color: #014099;
    letter-spacing: 2px;
    min-width: 300px;
    color: #fff;
}

.page-inner .links_btn2 li a:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    width: 9px;
    height: 16px;
    margin-top: -8px;
    background: url(../img/common/icon_bullet06.png) no-repeat 0 0;
    -webkit-background-size: contain;
    background-size: contain;
}

.page-inner .notes {
    padding-left: 1em;
    text-indent: -1em;
}

.page-inner .caption img {
    display: block;
    margin-bottom: 28px;
    line-height: 1;
}

.page-inner .section-inner-cmn .caption {
    margin-bottom: 30px;
}

.page-inner .enc {
    padding: 5px 17px;
    border: 5px solid #f2f2f2;
}

.page-inner .mt30 {
    margin-top: 30px;
}

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

@media only screen and (max-width: 750px) {
    .page-inner img {
        width: 100%;
    }
}

@media only screen and (max-width: 750px) {
    .page-inner .inner_title {
        font-size: 16px;
    }
    .page-inner .inner_subtitle {
        font-size: 16px;
    }
    .page-inner .links_btn2 {
        display: block;
    }
    .page-inner .links_btn2 li {
        text-align: left;
    }
    .page-inner .links_btn2 li~li {
        margin-top: 15px;
    }
}

.page-inner .movie {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.6%;
}

.page-inner .movie iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-inner .links_btn_alone {
    justify-content: center;
}

.page-inner .links_btn_alone li {
    text-align: center;
}

.page-inner .mt50 {
    margin-top: 50px;
}

.page-inner .flow>li {
    margin-top: 50px;
}

.page-inner .flow li h2 {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    padding-bottom: 5px;
    border-bottom: 1px solid #00c402;
    font-size: 24px;
    font-weight: bold;
    color: #00b900;
}

.page-inner .flow li h2 img {
    margin-left: 15px;
}

.page-inner .flow>li>p {
    margin-top: 10px;
    font-size: 24px;
    font-weight: bold;
}

.page-inner .detail {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}

.page-inner .detail ol {
    width: 480px;
}

.page-inner .detail ol li {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    position: relative;
    padding: 5px 10px;
    background-color: #00b900;
    letter-spacing: 0;
    font-size: 20px;
    color: #fff;
}

.page-inner .detail ol li~li {
    margin-top: 30px;
    background-color: #00b900;
}

.page-inner .detail ol li img {
    margin-right: 15px;
}

.page-inner .detail ol li p {
    line-height: 1.5;
}

.page-inner .detail ol li small {
    font-size: 16px;
}

.page-inner .detail ol li~li:before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    width: 16px;
    height: 9px;
    margin-left: -8px;
    background: url(../img/lineat/icon_arrowb_g.png) no-repeat 0 0;
}

.page-inner .list_menu_counter {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.page-inner .list_menu_counter>li {
    width: 48%;
    margin-bottom: 30px;
}

@media only screen and (max-width: 750px) {
    .page-inner .detail {
        display: block;
    }
    .page-inner .flow>li>p,
    .page-inner .flow li h2 {
        font-size: 16px;
    }
    .page-inner .detail ol {
        width: 100%;
        margin-bottom: 40px;
    }
    .page-inner .detail ol li {
        min-height: 70px;
        font-size: 14px;
    }
    .page-inner .detail ol li small {
        font-size: 12px;
    }
    .page-inner .list_menu_counter {
        display: block;
    }
    .page-inner .list_menu_counter>li {
        width: 100%;
        margin-bottom: 30px;
    }
    .page-inner .list_menu_counter>li .inner_title {
        margin: 30px 0 20px;
    }
}

.section-news #search_area table>thead th {
    height: 60px;
    background-image: none;
    background-color: #f2f2f2;
    font-size: 16px;
    font-weight: normal;
}

.section-news #search_area table th,
.section-news #search_area table td {
    padding: 3px 21px 2px;
    border-color: #003983;
}

.section-news #search_area table th:nth-child(1) {
    width: 356px;
}

.section-news #search_area table th:nth-child(2) {
    width: 240px;
}

.section-news #search_area table th:nth-child(3) {
    width: 600px;
}

@media only screen and (max-width: 750px) {
    .section-news #search_area table>thead th {
        height: 47px;
        font-size: 12px;
    }
    .section-news #search_area table th:nth-child(1) {
        width: 40%;
    }
    .section-news #search_area table th:nth-child(2) {
        width: 20%;
    }
    .section-news #search_area table th:nth-child(3) {
        width: 40%;
    }
    .section-news #search_area table th,
    .section-news #search_area table td {
        padding: 3px 10px 2px;
    }
}

.btn_totop {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 100;
}

@media only screen and (max-width: 750px) {
    .btn_totop {
        width: 55px;
        height: 55px;
    }
    .btn_totop img {
        max-width: 100%;
    }
}

.footer-site-matsuya {
    padding: 40px 0 0;
    background: #fff;
    border-top: 1px solid #003983;
}

.footer-site-matsuya .col {
    width: 600px;
}

.footer-site-matsuya .flex-lg>.col:not(.col-right) {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-site-matsuya .col-right {
    padding-left: 60px;
    border-left: 1px solid #dddddd;
}

.footer-site-matsuya .footer-logo {
    display: block;
    width: 300px;
    margin: 0;
}

.footer-site-matsuya .btn-primary {
    display: block;
    padding: 21px 30px;
    position: relative;
    background: #f2f2f2;
    color: #003983;
    text-align: left;
    font-size: 18px;
    height: auto;
    width: 100%;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.footer-site-matsuya .btn-primary:before {
    background-image: url(../img/common/icn_bullet01.png);
}

.windows10.ie .footer-site-matsuya .btn-primary {
    padding-top: 21px;
}

.footer-site-matsuya .ul-btn {
    margin: 0 -10px 34px;
}

.footer-site-matsuya .ul-btn>li {
    width: 50%;
    padding: 0 10px;
}

.footer-site-matsuya .w-col {
    border: 1px solid #003983;
}

.footer-site-matsuya .w-col .col {
    width: 50%;
}

.footer-site-matsuya .w-col .item {
    height: 118px;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.footer-site-matsuya .w-col .item img {
    width: 150px;
}

.footer-site-matsuya .w-col .item.current {
    background: #014099;
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 1.66667;
    text-align: center;
    color: #fff;
    position: relative;
}

.footer-site-matsuya .w-col .item.current:after {
    content: "";
    position: absolute;
    bottom: 9px;
    width: 12px;
    height: 18px;
    margin-top: -9px;
    background: url(../img/common/icn_bullet03.png) no-repeat 0 center;
    background-size: 100% auto;
    top: 50%;
    right: 9px;
}

.footer-site-matsuya .list-menu-bl {
    margin-top: 41px;
}

.footer-site-matsuya .copyright {
    color: #fff;
    background: #003983;
    font-size: 12px;
    line-height: 1;
    text-align: center;
    letter-spacing: 0.05em;
    margin-top: 40px;
    padding: 28px 0;
}

@media only screen and (max-width: 750px) {
    .footer-site-matsuya {
        padding: 0;
    }
    .footer-site-matsuya .wrapper {
        padding: 0;
    }
    .footer-site-matsuya .col {
        width: auto;
    }
    .footer-site-matsuya .footer-logo {
        display: none;
        width: 200px;
        margin: 0 auto 48px;
    }
    .footer-site-matsuya .col-right {
        padding-left: 0;
        border-left: none;
    }
    .footer-site-matsuya .btn-primary {
        padding: 17.5px 15px;
        font-size: 15px;
    }
    .footer-site-matsuya .btn-primary:before {
        right: 13px;
    }
    .footer-site-matsuya .ul-btn {
        margin: 0 0 30px;
        font-weight: bold;
    }
    .footer-site-matsuya .ul-btn>li {
        width: auto;
        padding: 0;
        margin-bottom: 1px;
    }
    .footer-site-matsuya .w-col {
        margin: 0 15px 30px;
    }
    .footer-site-matsuya .w-col .col {
        width: 50%;
    }
    .footer-site-matsuya .w-col .item {
        height: 118px;
        padding: 0 5px;
    }
    .footer-site-matsuya .w-col .item img {
        width: auto;
        max-width: 140px;
        margin: 0 auto;
    }
    .footer-site-matsuya .w-col .item.current {
        font-size: 14px;
        background: #003983;
    }
    .footer-site-matsuya .w-col .item.current:after {
        width: 11px;
        right: 12px;
    }
    .footer-site-matsuya .list-menu-bl {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        letter-spacing: 0;
        margin-bottom: 8px;
        margin-top: 0;
    }
    .footer-site-matsuya .list-menu-bl>li {
        padding: 0 8px;
        margin-bottom: 9px;
    }
    .footer-site-matsuya .list-menu-bl>li:last-child {
        padding-right: 0;
    }
    .footer-site-matsuya .list-menu-bl>li:first-child {
        padding-left: 0;
    }
    .footer-site-matsuya .copyright {
        padding: 25px 0;
        background: #003983;
        color: #fff;
        font-size: 9px;
        letter-spacing: 0;
        text-align: center;
        margin-top: 23px;
    }
}

.footer-site-matsuya .btn-primary {
    line-height: 1;
}

.footer-site-matsuya .btn-primary:before {
    right: 9px;
}

@media only screen and (max-width: 750px) {
    .footer-site-matsuya .ul-col .item.current {
        letter-spacing: 0;
        font-size: 13px;
        padding-right: 5px;
        padding-left: 5px;
    }
    .footer-site-matsuya .ul-col .item {
        padding-right: 10px;
        padding-left: 10px;
    }
    .footer-site-matsuya .ul-col .item img {
        width: 100%;
        max-width: 100%;
    }
    .footer-site-matsuya .btn-primary:before {
        right: 13px;
    }
}


/* SECTION BRAND
 * ----------------------------------------------- */

.section-matsuya-brand {
    margin-top: 50px;
    padding: 72px 0 80px;
    background: #f2f2f2;
}

.section-matsuya-brand .sec-title {
    font-size: 24px;
    letter-spacing: 0.2em;
    margin-bottom: 34px;
}

.section-matsuya-brand .ul-brand {
    width: 961px;
    margin: 0 auto;
    border-left: 1px solid #ccc;
}

.section-matsuya-brand .ul-brand>li {
    width: 120px;
    border-top: 1px solid #ccc;
    margin-top: -1px;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    background: #fff;
}

.section-matsuya-brand .ul-brand a {
    display: block;
    width: 100%;
}

.section-matsuya-brand .ul-brand img {
    margin: 0 auto;
}

@media only screen and (max-width: 750px) {
    .section-matsuya-brand {
        margin-bottom: 31px;
        padding: 13px 0 17px;
    }
    .section-matsuya-brand .sec-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .section-matsuya-brand .ul-brand {
        width: 100%;
        border-left: 1px solid #f2f2f2;
    }
    .section-matsuya-brand .ul-brand>li {
        width: 25%;
        border-top: 1px solid #f2f2f2;
        border-right: 1px solid #f2f2f2;
        border-bottom: 1px solid #f2f2f2;
    }
}

.footer-site {
    padding-top: 0;
}

body.page-top .section-matsuya-brand {
    margin-top: 0;
}

.section-matsuya-topics {
    padding: 87px 0 100px;
    border-bottom: 1px solid #003983;
    margin-bottom: 50px;
}

.section-matsuya-topics .sec-title {
    margin-bottom: 75px;
}

.section-matsuya-topics .list-topics {
    margin: 0 -15px;
}

.section-matsuya-topics .list-topics .item {
    width: 33.33333%;
    padding: 15px;
    display: none;
}

.section-matsuya-topics .list-topics .item img {
    width: 100%;
}

.section-matsuya-topics .list-topics a {
    display: block;
}

.section-matsuya-topics .list-topics .list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.section-matsuya-topics .list-topics .wrapper-item .item {
    display: block;
}

.section-matsuya-topics .wrapper-item {
    display: -webkit-flex;
    display: flex;
    display: -ms-flexbox;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}

.btn-load {
    width: 380px;
    border: 1px solid #003983;
    margin: 0 auto;
    display: block;
    padding: 12px 30px;
    text-align: center;
    color: #003983;
    font-size: 18px;
    letter-spacing: 0.2em;
    position: relative;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    border-radius: 25px;
    cursor: pointer;
}

.btn-load:after {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -9px;
    width: 17px;
    height: 18px;
    background: url(../img/common/icn_expand_off.png) no-repeat center center;
    background-size: 100% auto;
    right: 19px;
}

@media only screen and (max-width: 750px) {
    .section-matsuya-topics {
        padding: 20px 0 15px;
    }
    .section-matsuya-topics .sec-title {
        margin-bottom: 5px;
    }
    .section-matsuya-topics .list-topics {
        margin: 0;
    }
    .section-matsuya-topics .list-topics .item {
        width: auto;
        margin-bottom: 5px;
        padding: 0;
    }
    .section-matsuya-topics .list-topics .item.sp-harf {
        width: 50%;
        padding: 0 3px 0 0;
    }
    .section-matsuya-topics .list-topics .item.sp-harf {
        width: 50%;
        padding: 0 3px 0 0;
    }
    .section-matsuya-topics .list-topics .item.sp-harf:nth-of-type(even) {
        width: 50%;
        padding: 0 0 0 3px;
    }
    .section-matsuya-topics .list {
        margin-bottom: 40px;
    }
    .section-matsuya-topics .wrapper-item {
        display: block;
    }
    .btn-load {
        width: 245px;
    }
}

.section-matsuya-menu {
    padding: 87px 0 90px;
    border-bottom: 1px solid #003983;
}

.section-matsuya-menu .wrapper {
    position: relative;
}

.section-matsuya-menu .sec-title {
    margin-bottom: 81px;
}

.section-matsuya-menu .btn-primary {
    position: absolute;
    right: 0;
    top: 70px;
}

.section-matsuya-menu .ul-products {
    margin: 0 -10px;
}

.section-matsuya-menu .ul-products>li {
    width: 25%;
    padding: 10px;
}

.section-matsuya-topics .ul-products>li {
    width: 20%;
}

.section-matsuya-menu .ul-products .item {
    position: relative;
    display: block;
}

.section-matsuya-menu .ul-products .item .txt {
    background: #003983;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    padding: 14px 17px 15px;
    font-size: 20px;
    letter-spacing: 0.1em;
    line-height: 1;
    z-index: 2;
}

.section-matsuya-menu .ul-products img {
    width: 100%;
}

@media print,
(min-width: 751px) {
    .section-matsuya-menu .btn-primary {
        padding-right: 29px;
        padding-left: 18px;
    }
}

@media only screen and (max-width: 750px) {
    .section-matsuya-menu {
        padding: 23px 0 15px;
    }
    .section-matsuya-menu .wrapper {
        padding: 0 5px;
    }
    .section-matsuya-menu .sec-title {
        margin-bottom: 6px;
    }
    .section-matsuya-menu .btn-primary {
        position: relative;
        right: auto;
        top: auto;
    }
    .section-matsuya-menu .ul-products {
        justify-content: space-between;
        margin: 0 0 10px;
    }
    .section-matsuya-menu .ul-products>li {
        width: 49.318%;
        margin: 0 0 1.5%;
        padding: 0;
    }
    .section-matsuya-topics .ul-products>li {
        width: 32.318%;
    }
    .section-matsuya-menu .ul-products .item .txt {
        padding: 6px 8px;
        font-size: 12px;
    }
}


/* SOCIALMEDIA LIST
 * ----------------------------------------------- */

.section-matsuya-menu .article {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
}

.section-matsuya-menu .article .sec-title2 {
    text-align: center;
    font-size: 40px;
    line-height: 1.4;
    letter-spacing: 0.1em;
    font-weight: bold;
    color: #003983;
    margin: 81px 0 30px 0;
}

.section-matsuya-menu .article .flex_list {
    display: flex;
    flex-wrap: wrap;
}

.section-matsuya-menu .article .social_col {
    margin: 10px auto;
    border: solid 1px #aaa;
    border-radius: 10px;
    padding: 10px;
    width: 48%;
}

.section-matsuya-menu .article .img_left {
    width: 70px;
    float: left;
    margin: 0 25px 30px 0;
}

.section-matsuya-menu .article .text_light {
    overflow: hidden;
}

.section-matsuya-menu .article h3 {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    margin-top: 5px;
}

.section-matsuya-menu .article ul {
    margin-top: 10px;
    padding-left: 0px;
}

.section-matsuya-menu .article li {
    display: inline-block;
    padding: 5px;
}

.section-matsuya-menu .article img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

@media only screen and (max-width: 750px) {
    .section-matsuya-menu .article {
        width: 90%;
        margin-bottom: 40px;
    }
    .section-matsuya-menu .article .sec-title2 {
        font-size: 30px;
        margin: 50px 0 6px 0;
    }
    .section-matsuya-menu .article .social_col {
        width: 100%;
        padding: 10px;
        margin: 5px auto;
    }
    .section-matsuya-menu .article .img_left {
        width: 50px;
    }
    .section-matsuya-menu .article h3 {
        font-size: 17px;
    }
    .section-matsuya-menu .article ul li {
        font-size: 14px;
        padding: 2px;
    }
    .section-matsuya-menu .article a {
        width: 35px;
        display: inline-block;
    }
}


/* header-bnr
 * ----------------------------------------------- */

.header-bnr {
    position: absolute;
    left: 110px;
    top: 40px;
    width: 90px;
}

#top_page .header-bnr {
    left: 155px;
    width: 75px;
}

.header-bnr img {
    max-width: 100%;
    border-radius: 4px;
}

@media only screen and (max-width: 750px) {
    .header-bnr {
        left: 10px;
        top: 10px;
        width: 64px;
    }

    #top_page .header-bnr {
        left: 10px;
        width: 64px;
    }
}

.chapter_list01 li a.under {
    color: #0000ff;
    text-decoration: underline;
}

.chapter_list01 {
    margin-bottom: 15px;
}