@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;
}

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

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


/* 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: 1280px;
    overflow: hidden;
}

#top_page_matsuya .container {
    padding-top: 0;
}

.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;
        height: 100%;
    }
    .navigation .wrapper {
        display: flex;
        align-items: center;
        height: 100%;
    }
    .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;
    }
    .wrapper {
        width: auto;
        margin: 0;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@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
 * ----------------------------------------------- */

.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;
}

.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 {
    padding-right: 13px;
    background: url(../img/common/icn_bullet01.png) no-repeat right 0.3em;
    background-size: 7px 12px;
    color: #555;
}

#top_page_matsuya .section-matsuya-movie .header-site-matsuya .list-menu-bl a{
    padding-right: 13px; background: url(../img/common/icn_bullet03.png) no-repeat right 0.3em; background-size: 7px 12px;
    color: #fff;
    font-weight: bold;
}

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

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

.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) {
    .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: #003983;
        position: relative;
        z-index: 100;
    }
    .navigation .navigation-inner .ul-nav>li {
        border-left: none;
        padding: 0;
    }
    .navigation .navigation-inner .ul-nav>li.menu-sp.even {
        background: #002a61;
    }
    .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);
    }
}

.header-site-matsuya {
    height: 100px;
    position: relative;
    z-index: 9999;
}

#top_page_matsuya .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_matsuya .DownMove{
  top: 0 !important;
	animation: DownAnime 0.5s forwards;
}

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

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

#top_page_matsuya .header-site-matsuya {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #aaaaaa;
}

.header-site-matsuya>.wrapper {
    position: relative;
}

.header-site-matsuya .header-logo {
    width: 180px;
    position: absolute;
    left: 0;
    background: #fdd352;
}

.header-site-matsuya .header-logo a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    height: 100px;
}

.header-site-matsuya .header-logo a img {
    width: 130px;
}

.header-site-matsuya .list-menu-bl {
    position: absolute;
    right: 20px;
    bottom: 17px;
}

#top_page_matsuya .header-site-matsuya .list-menu-bl {
  bottom: 3px;
  padding-left: 208px;
  line-height: 1.3;
}

.header-site-matsuya .list-menu-bl>li {
    padding: 0 12px;
}

.header-site-matsuya .list-menu-bl>li:last-child {
    padding-right: 0;
}

.header-site-matsuya .btn {
    position: absolute;
    font-size: 16px;
    line-height: 1;
    right: 20px;
    top: 15px;
    padding: 11px 40px 13px;
    text-align: center;
    letter-spacing: 1.2px;
    color: #fff;
    display: block;
    background: #003983;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
}

#top_page_matsuya .header-site-matsuya .btn {
  right: 15px;
  top: 10px;
  font-size: 13px;
  padding: 9px 24px 9px;
}

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

#top_page_matsuya .header-site-matsuya .btn:after{
  width: 9px;
  height: 19px;
  right: 10px;
}

#top_page_matsuya .section-matsuya-movie .header-site-matsuya .btn{
  background: none;
  border: 1px solid #fff;
}

@media print,
(min-width: 751px) {
    .header-site-matsuya .navigation .navigation-inner .ul-nav {
        padding-left: 240px;
    }
    #top_page_matsuya .header-site-matsuya .navigation .navigation-inner .ul-nav {
        padding-top: 10px;
    }
    .header-site-matsuya .navigation .navigation-inner .ul-nav>li a {
        display: inline-block;
        position: relative;
        padding: 16px 0;
        font-size: 20px;
        color: #333333;
        opacity: 1 !important;
    }
    #top_page_matsuya .header-site-matsuya .navigation .navigation-inner .ul-nav > li a {
        font-size: 16px;
    }
    .header-site-matsuya .navigation .navigation-inner .ul-nav>li a:hover:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: #003983;
    }
}

@media only screen and (max-width: 750px) {
    .header-site-matsuya {
        height: auto;
        border-bottom: none;
        position: fixed;
        z-index: 99999;
        left: 0;
        top: 0;
        right: 0;
        min-width: 320px;
    }
    .header-site-matsuya>.wrapper {
        padding: 0 60px 0 100px;
        height: 60px;
        z-index: 99;
        background: #fff;
        position: relative;
    }
    #top_page_matsuya .section-matsuya-movie .header-site-matsuya > .wrapper{
        background: none;
    }
    .header-site-matsuya .header-logo {
        width: 100px;
    }
    .header-site-matsuya .header-logo a {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 8px;
        height: 60px;
    }
    .header-site-matsuya .header-logo a img {
        width: 74px;
    }
    .header-site-matsuya .header-btn {
        *zoom: 1;
        font-size: 10px;
        line-height: 1;
        padding: 9px 11px 0 0;
    }
    .header-site-matsuya .header-btn:after {
        content: "";
        display: table;
        clear: both;
    }
    .header-site-matsuya .header-btn>li {
        float: right;
    }
    .header-site-matsuya .header-btn>li:nth-child(1) {
        width: 77px;
    }
    .header-site-matsuya .header-btn>li:nth-child(1) a {
        background-image: url(../img/common/sm/icn_icon03.png);
    }
    .header-site-matsuya .header-btn>li:nth-child(2) {
        width: 60px;
    }
    .header-site-matsuya .header-btn>li:nth-child(2) a {
        background-image: url(../img/common/sm/icn_icon02.png);
    }
    .header-site-matsuya .header-btn>li:nth-child(3) {
        width: 55px;
    }
    .header-site-matsuya .header-btn>li:nth-child(3) a {
        background-image: url(../img/common/sm/icn_icon01.png);
    }
    .header-site-matsuya .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;
    }
    #top_page_matsuya .section-matsuya-movie .header-site-matsuya .header-btn a {
        color: #fff;
    }
    .header-site-matsuya.js-header>.wrapper {
        overflow: hidden;
    }
    .header-site-matsuya.js-header .header-logo {}
}

@media only screen and (max-width: 374px) {
    .header-site-matsuya .header-btn {
        padding-right: 6px;
        font-size: 8px;
        padding-top: 12px;
    }
    .header-site-matsuya .header-btn>li:nth-child(1) {
        width: 36.49289%;
    }
    .header-site-matsuya .header-btn>li:nth-child(2) {
        width: 28.43602%;
    }
    .header-site-matsuya .header-btn>li:nth-child(3) {
        width: 35.07109%;
    }
    .header-site-matsuya .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: #014099;
    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;
    }
}

.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: 240px;
    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: 168px;
        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;
    }
}

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


/* 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;
}

@media only screen and (max-width: 750px) {
    .sec-title {
        font-size: 30px;
    }
}


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

.btn-primary {
    padding: 11px 39px 0 20px;
    height: 40px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    color: #fff;
    letter-spacing: 0.1em;
    display: block;
    font-size: 16px;
    line-height: 1;
    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: 9px;
}

.btn-primary.btn-large {
    width: 300px;
    height: 60px;
    font-size: 20px;
    padding: 19px 30px 20px;
}

.btn-primary.btn-large:before {
    right: 20px;
}

.windows10.ie .btn-primary.btn-large {
    padding-top: 18px;
}

.windows10.ie .btn-primary {
    padding-top: 10px;
}

.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;
}

.windows10.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;
}

@media only screen and (max-width: 750px) {
    .btn-primary {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 17px 0 4px;
        height: 50px;
        color: #fff;
        font-size: 15px;
        width: 100%;
    }
    .btn-primary:before {
        width: 10px;
        background-size: 10px auto;
        right: 7px;
    }
    .btn-more {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 32px;
        padding: 0 16px 0 5px;
        width: 240px;
        font-size: 15px;
    }
    .btn-more:before {
        width: 10px;
        height: 17px;
        right: 7px;
        background-size: 10px auto;
    }
    .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 ul {
    padding-left: 240px;
}

.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%);
}

.section-main-cmn {
    position: relative;
    background: #fffbef;
    padding: 30px 0 0;
}

.section-main-cmn:before {
    content: "";
    background-color: #014099;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    height: 500px;
}

.section-main-cmn .wrapper {
    position: relative;
    z-index: 2;
    background: #fff;
    width: 1280px;
    padding-top: 1px;
}

.section-main-cmn .title {
    font-size: 28px;
    text-align: center;
    background: #014099;
    color: #fff;
    display: table;
    width: 100%;
    font-weight: bold;
    letter-spacing: 0.1em;
    height: 120px;
}

.section-main-cmn .title>span {
    display: table-cell;
    vertical-align: middle;
}

.section-main-cmn .title-cmn {
    font-size: 30px;
    text-align: center;
    font-weight: bold;
    color: #003983;
    line-height: 1;
    position: relative;
    letter-spacing: 0.1em;
    z-index: 3;
    margin-bottom: 30px;
}

.section-main-cmn .title-cmn.white {
    color: #fff;
}

.section-main-cmn .ttl-cmn {
    font-size: 20px;
    background: #fffbef;
    color: #000;
    text-align: center;
    padding: 21px 20px;
}

.section-main-cmn .ttl-cmn.gray {
    background: #f2f2f2;
}

.section-main-cmn .inner-content-cmn {
    background: #fff;
    padding: 46px 40px 100px;
}

@media only screen and (max-width: 750px) {
    .section-main-cmn {
        font-size: 12px;
        line-height: 2.08333;
        /* padding: 74px 0 70px; */
    }
    .section-main-cmn:before {
        height: 375px;
        background-color: #003983;
    }
    .section-main-cmn .wrapper {
        width: auto;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }
    .section-main-cmn .title {
        font-size: 17px;
        height: 60px;
    }
    .section-main-cmn .title-cmn {
        font-size: 16px;
        /* margin-bottom: 47px; */
    }
    .section-main-cmn .title-cmn.title-detail {
        display: none;
    }
    .section-main-cmn .ttl-cmn {
        font-size: 18px;
        padding: 12px 10px;
        margin: 15px 5px 0;
    }
    .section-main-cmn .ttl-cmn.mrl {
        margin: 0;
    }
    .section-main-cmn .inner-content-cmn {
        padding: 33px 5px 50px;
    }
    .section-main-cmn.main-post-cmn:before {
        height: 215px;
    }
}

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

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


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

/* movie */
.section-matsuya-movie {
  position: relative;
  margin-bottom: 60px; /* 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_matsuya .section-matsuya-movie .header-site-matsuya {
  position: absolute;
  top: 0;
  background: none transparent;
  border-bottom: none;
}

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


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

.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: -30px;
    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;
}

/* matsuya-keyvisual-list */
.section-matsuya-keyvisual .matsuya-keyvisual-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: left;
  width: 1220px;
  margin: 0 auto;
  padding: 0;
}
.section-matsuya-keyvisual .matsuya-keyvisual-list .item-slide,
.section-matsuya-movie + .section-matsuya-keyvisual .matsuya-keyvisual-list .item-slide:first-child
{
  width: 33.33333333%;
  padding: 10px;
  visibility: visible;
}
.section-matsuya-keyvisual .matsuya-keyvisual-list .item-slide:first-child {
  width: 90%;
  margin: 0 auto;
}
.section-matsuya-keyvisual .matsuya-keyvisual-list .item-slide a {
  display: block;
  line-height: 0;

  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;
}
.section-matsuya-keyvisual .matsuya-keyvisual-list .item-slide a:hover {
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}
.section-matsuya-keyvisual .matsuya-keyvisual-list .item-slide img {
  max-width: 100%;
}

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

@media only screen and (max-width: 750px) {
    .section-matsuya-movie {
        width: 100vw;
        aspect-ratio: 1 / 1.44;
        margin-bottom: 40px; /* script.jsにてmargin-bottomの数値を取得中、削除する際はjsのコード修正も行うこと */
    }
    .section-matsuya-movie .movie-txt img{
        height: 63%;
    }
    .section-matsuya-movie video {
    }
    .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;
    }
    .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;
    }

    /* matsuya-keyvisual-list */
    .section-matsuya-keyvisual .matsuya-keyvisual-list {
        justify-content: space-between;
        width: auto;
        margin: auto;
        padding: 10px 5px 0 5px;
    }
    .section-matsuya-keyvisual .matsuya-keyvisual-list .item-slide,
    .section-matsuya-movie + .section-matsuya-keyvisual .matsuya-keyvisual-list .item-slide:first-child
    {
        width: 49.318%;
        margin: 0 0 1.5%;
        padding: 0;
    }
    .section-matsuya-keyvisual .matsuya-keyvisual-list .item-slide:first-child {
        width: 100%;
        margin: 0 0 5px 0;
    }
}

.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;
    }
}

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

.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 {
    margin-bottom: 3px;
}

.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 .wrapper {
        padding: 0 5px;
    }
    .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:nth-of-type(even) {
        width: 50%;
        padding: 0 0 0 3px;
    }
    .section-matsuya-topics .list {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 40px;
    }
    .section-matsuya-topics .wrapper-item {
        display: block;
    }
    .btn-load {
        width: 245px;
    }
}

.section-matsuya-sns {
    padding: 87px 0 100px;
    border-top: 1px solid #003983;
}

.section-matsuya-sns .sec-title {
    margin-bottom: 84px;
}

.section-matsuya-sns .sec-pttl {
    margin-bottom: 12px;
}

.section-matsuya-sns .ul-sns {
    margin: 0 -15px;
}

.section-matsuya-sns .ul-sns>li {
    width: 33.33333%;
    padding: 0 15px;
}

.section-matsuya-sns .ul-sns .instagram-photo {
    margin: -5px;
}

.section-matsuya-sns .ul-sns .instagram-photo .col-thumb {
    width: 50%;
    padding: 5px;
}

.section-matsuya-sns .ul-sns .instagram-photo .col-thumb .item {
    padding-top: 100%;
    position: relative;
}

.section-matsuya-sns .ul-sns .instagram-photo .col-thumb img {
    display: block;
    width: 100%;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
}

.section-matsuya-sns .ul-sns .sns-twitter {
    height: 570px;
    overflow-y: auto;
    border: 1px solid #f2f2f2;
}

.section-matsuya-sns .ul-sns .sns-twitter iframe {
    height: 100%;
    display: block;
    width: 100%;
    border: none;
}

.section-matsuya-sns .ul-col-instagram {
    margin: -10px -5px 0;
}

.section-matsuya-sns .ul-col-instagram>li {
    width: 50%;
    padding: 5px;
}

@media only screen and (max-width: 750px) {
    .section-matsuya-sns {
        padding: 40px 0 48px;
    }
    .section-matsuya-sns .sec-title {
        margin-bottom: 38px;
    }
    .section-matsuya-sns .sec-pttl {
        margin-bottom: 12px;
    }
    .section-matsuya-sns .ul-sns {
        margin: 0;
        -webkit-justify-content: center;
        justify-content: center;
    }
    .section-matsuya-sns .ul-sns>li {
        width: 74px;
        margin: 0 12px;
        padding: 0;
    }
}

@media only screen and (max-width: 374px) {
    .section-matsuya-sns .ul-sns {
        margin: 0 -5px;
    }
    .section-matsuya-sns .ul-sns>li {
        margin: 0 6px;
    }
}


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

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

.section-matsuya-brand .wrapper {
    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: 8px 0 17px;
    }
    .section-matsuya-brand .wrapper {
        padding: 0 5px;
    }
    .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;
    }
}

.section-top-news {
    padding: 86px 0 100px;
    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: 10px 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 19px;
    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;
    line-height: 1.4;
    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;
}

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

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

@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 {
        margin-bottom: 5px;
        padding: 0 0 7px;
    }
    .list-news-cmn .item .news_title {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .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: 12px;
        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 .thumbs {
        width: 83px;
        height: 72px;
        margin-right: 10px;
    }
    .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-right: 20px;
        padding-left: 0;
        margin-top: 3px;
        margin-bottom: 10px;
        letter-spacing: 1.6px;
    }
    .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;
        left: auto;
        top: auto;
        font-size: 11px;
    }
    .tag {
        font-size: 10px;
        min-width: 96px;
        margin-left: 14px;
        padding: 3px 4px;
        border-radius: 3px;
    }
}

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


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

.section-inner {
    padding: 100px 0 100px;
}

.section-inner:before {
    background-image: url(../img/inner/bg_banner.jpg);
}

.section-inner .inner-info {
    padding: 46px 40px 87px;
    line-height: 2.5;
    letter-spacing: 0.1em;
}

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

.section-inner .ul-data {
    display: table;
    width: 100%;
    margin-bottom: 10px;
    border-collapse: collapse;
    border-spacing: 0;
}

.section-inner .ul-data>li {
    display: table-row;
}

.section-inner .ul-data .th,
.section-inner .ul-data .td {
    display: table-cell;
    vertical-align: middle;
    border: 1px solid #003983;
    padding: 10px 10px 10px 30px;
    border-collapse: collapse;
    border-spacing: 0;
}

.windows10.ie .section-inner .ul-data .th,
.windows10.ie .section-inner .ul-data .td {
    padding-bottom: 12px;
}

.section-inner .ul-data .th {
    width: 300px;
}

.section-inner .ul-data .thead .th,
.section-inner .ul-data .thead .td {
    background: #fffbef;
}

.section-inner .note {
    margin-top: 46px;
}

@media only screen and (max-width: 750px) {
    .section-inner {
        padding: 70px 0 50px;
    }
    .section-inner:before {
        background-image: url(../img/inner/sm/bg_banner.jpg);
        height: 350px;
    }
    .section-inner .title {
        font-size: 17px;
    }
    .section-inner .caption {
        margin-bottom: 24px;
    }
    .section-inner .inner-info {
        padding: 23px 15px 44px;
        line-height: 2.08333;
    }
    .section-inner .ul-data {
        margin-bottom: 10px;
        letter-spacing: 0;
        line-height: 1.66667;
        font-size: 12px;
    }
    .section-inner .ul-data .th,
    .section-inner .ul-data .td {
        padding: 12px 5px 12px 14px;
    }
    .section-inner .ul-data .th {
        width: 39.68254%;
    }
    .section-inner .note {
        margin-top: 24px;
        font-size: 12px;
        line-height: 2.08333;
    }
}

.section-menu-matsuya:before {
    /* background-image: url(../img/menu/bg_banner.jpg); */
}

.section-menu-matsuya .w-col {
    padding: 40px 40px 20px;
}

.section-menu-matsuya .w-col>li {
    width: 285px;
    margin: 0 0 20px 20px;
}

.section-menu-matsuya .w-col>li a {
    display: block;
    height: 0;
    padding-bottom: 100%;
    background-color: #eee;
}

.section-menu-matsuya .w-col>li:nth-child(4n+1) {
    margin-left: 0;
}

.section-menu-matsuya .w-col>li img {
    width: 100%;
}

.item-menu-cmn {
    display: block;
    position: relative;
}

.item-menu-cmn .txt {
    background: #003983;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    padding: 10px 10px 10px;
    /* font-size: 20px; */
    letter-spacing: 0.1em;
    line-height: 1;
    z-index: 2;
}

@media only screen and (max-width: 750px) {
    .section-menu-matsuya {
        padding-bottom: 0;
    }
    .section-menu-matsuya:before {
        /* background-image: url(../img/menu/sm/bg_banner.jpg);
    background-size: cover; */
    }
    .section-menu-matsuya .ttl {
        font-size: 18px;
        padding: 12px 10px;
        margin: 0 15px;
    }
    .section-menu-matsuya .w-col {
        justify-content: space-between;
        padding: 15px 5px 50px;
        margin: 0;
        background: #fff;
    }
    .section-menu-matsuya .w-col>li {
        width: 49.318%;
        padding: 0;
        margin: 0 0 1%;
    }
    .section-menu-matsuya .wrapper {
        margin: 0;
        padding: 0;
        background: none;
    }
    .item-menu-cmn .txt {
        padding: 6px 8px;
        font-size: 12px;
    }
}

.section-menu-detail-matsuya {
    color: #000;
}

.section-menu-detail-matsuya:before {
    /* background-image: url(../img/menu/bg_banner.jpg); */
}

.section-menu-detail-matsuya * {
    letter-spacing: 0.1em;
}

.section-menu-detail-matsuya .wrapper {
    padding: 40px;
}

.section-menu-detail-matsuya .article-thumb {
    width: 580px;
}

.section-menu-detail-matsuya .article-info {
    width: 580px;
    padding-top: 26px;
}

.section-menu-detail-matsuya .article-info * {
    letter-spacing: 0.1em;
}

.section-menu-detail-matsuya .article-info .txt {
    font-size: 18px;
    margin-bottom: 10px;
    padding-left: 20px;
}

.section-menu-detail-matsuya .article-info .ttl {
    font-size: 34px;
    margin-bottom: 25px;
    padding-left: 20px;
}

.section-menu-detail-matsuya .article-info .ul-text {
    display: table;
    width: 100%;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 300;
    margin-bottom: 26px;
    padding-left: 20px;
}

.section-menu-detail-matsuya .article-info .ul-text>li {
    display: table-row;
}

.section-menu-detail-matsuya .article-info .ul-text .th,
.section-menu-detail-matsuya .article-info .ul-text .td {
    display: table-cell;
    vertical-align: middle;
    padding-bottom: 10px;
}

.section-menu-detail-matsuya .article-info .ul-text .th {
    width: 200px;
    position: relative;
}

.section-menu-detail-matsuya .article-info .ul-text .th:after {
    content: "：";
    position: absolute;
    right: -12px;
    top: 0;
}

.section-menu-detail-matsuya .article-info .ul-text .td {
    padding-left: 40px;
}

.section-menu-detail-matsuya .article-info .ul-text .clr {
    color: #dc0000;
}

.section-menu-detail-matsuya .article-info .ul-text .fs {
    font-size: 70%;
}

.section-menu-detail-matsuya .article-info .box-text {
    background: #f2f2f2;
    padding: 20px;
}

.section-menu-detail-matsuya .article-info .box-text ol {
    display: table;
    width: 100%;
    font-size: 12px;
}

.section-menu-detail-matsuya .article-info .box-text ol>li {
    display: table-row;
}

.section-menu-detail-matsuya .article-info .box-text ol>li:last-child .th,
.section-menu-detail-matsuya .article-info .box-text ol>li:last-child .td {
    padding-bottom: 0;
}

.section-menu-detail-matsuya .article-info .box-text ol .th,
.section-menu-detail-matsuya .article-info .box-text ol .td {
    display: table-cell;
    vertical-align: middle;
    padding-bottom: 5px;
}

.section-menu-detail-matsuya .article-info .box-text ol .th {
    width: 40px;
    vertical-align: top;
}

.section-menu-detail-matsuya .article-info .box-text ol .th img {
    width: 100%;
    display: block;
}

.section-menu-detail-matsuya .article-info .box-text ol .td {
    padding-left: 10px;
}

.section-menu-detail-matsuya .row-article {
    margin-bottom: 40px;
}

.section-menu-detail-matsuya .ul-btn {
    margin-bottom: 60px;
}

.section-menu-detail-matsuya .ul-btn>li {
    width: 580px;
}

.section-menu-detail-matsuya .btn {
    display: block;
    position: relative;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    color: #fff;
    padding: 16px 30px;
    background: #003983;
    font-size: 20px;
    text-align: center;
}

.section-menu-detail-matsuya .btn:after {
    content: "";
    position: absolute;
    width: 12px;
    height: 100%;
    background: url(../img/common/icn_bullet03.png) no-repeat center center;
    background-size: 100% auto;
    right: 20px;
    top: 0;
}

.section-menu-detail-matsuya .btn.yellow {
    background: #fdd352;
    color: #000;
}

.section-menu-detail-matsuya .btn.yellow:after {
    background-image: url(../img/common/icn_bullet06.png);
}

.section-menu-detail-matsuya .btn.yellow span {
    display: inline-block;
    position: relative;
    padding: 0 20px;
}

.section-menu-detail-matsuya .btn.yellow span:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 100%;
    background: url(../img/common/icn_external.png) no-repeat center center;
    background-size: 100% auto;
    right: 0;
    top: 0;
}

.windows10.ie .section-menu-detail-matsuya .btn {
    padding-bottom: 17px;
}

.section-menu-detail-matsuya .pttl {
    background: #f2f2f2;
    padding: 17px 30px;
    font-size: 18px;
    margin-bottom: 10px;
    cursor: pointer;
}

.section-menu-detail-matsuya .ul-data {
    text-align: center;
    font-size: 14px;
    line-height: 1.28571;
    margin-bottom: 18px;
}

.section-menu-detail-matsuya .ul-data>li {
    width: 7.14286%;
    border: 2px solid #f2f2f2;
    border-left: none;
    margin-bottom: 10px;
}

.section-menu-detail-matsuya .ul-data>li:nth-child(14n+1) {
    border-left: 2px solid #f2f2f2;
}

.section-menu-detail-matsuya .ul-data .th {
    background: #fffbef;
    display: table;
    width: 100%;
    height: 48px;
}

.section-menu-detail-matsuya .ul-data .th>span {
    display: table-cell;
    vertical-align: middle;
}

.section-menu-detail-matsuya .ul-data .td {
    padding: 21px 0;
}

.section-menu-detail-matsuya .text {
    font-size: 14px;
}

.section-menu-detail-matsuya .text .note {
    margin-top: 15px;
}

.section-menu-detail-matsuya .row-block {
    margin-bottom: 57px;
}

.section-menu-detail-matsuya .row-block.last {
    margin-bottom: 40px;
}

.section-menu-detail-matsuya .ul-col {
    border: 2px solid #f2f2f2;
    padding: 25px 0 28px;
    line-height: 2.14286;
    font-size: 14px;
}

.section-menu-detail-matsuya .ul-col>li {
    width: 25%;
    border-right: 2px solid #f2f2f2;
    padding-left: 28px;
    padding-right: 15px;
}

.section-menu-detail-matsuya .ul-col>li:last-child {
    border-right: none;
}

.section-menu-detail-matsuya .ul-col .txt {
    font-weight: bold;
    font-size: 18px;
}

.section-menu-detail-matsuya .ul-note {
    font-size: 14px;
    line-height: 2.14286;
    border: 1px dashed #aaa;
    padding: 20px 28px 28px;
}

.section-menu-detail-matsuya .ul-note>li {
    padding-left: 1em;
    position: relative;
}

.section-menu-detail-matsuya .ul-note>li:before {
    content: "※";
    position: absolute;
    left: 0;
    top: 0;
}

.section-menu-detail-matsuya .wrap-banner {
    background: none;
    padding: 60px 40px 0;
}

.section-menu-detail-matsuya .ul-banner {
    margin-top: 100px;
}

.section-menu-detail-matsuya .ul-banner>li {
    width: 590px;
}

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

.section-menu-detail-matsuya .ul-banner a {
    display: block;
}

@media only screen and (max-width: 750px) {
    .section-menu-detail-matsuya {
        background: none;
        padding-top: 0;
        padding-bottom: 45px;
    }
    .section-menu-detail-matsuya:before {
        /* background-image: url(../img/menu/sm/bg_banner01.jpg);
    height: 156px; */
    }
    .section-menu-detail-matsuya .wrapper {
        padding: 0 5px;
        margin: 0;
    }
    .section-menu-detail-matsuya .article-thumb {
        width: auto;
        margin: 0 -5px;
    }
    .section-menu-detail-matsuya .article-info {
        width: auto;
        padding: 26px 0 0;
    }
    .section-menu-detail-matsuya .article-info .txt {
        font-size: 9px;
        margin-bottom: 0;
        padding-left: 10px;
    }
    .section-menu-detail-matsuya .article-info .ttl {
        font-size: 20px;
        line-height: 1.5;
        margin-bottom: 13px;
        padding-left: 10px;
    }
    .section-menu-detail-matsuya .article-info .ul-text {
        font-size: 14px;
        margin-bottom: 15px;
        padding-left: 10px;
    }
    .section-menu-detail-matsuya .article-info .ul-text .th,
    .section-menu-detail-matsuya .article-info .ul-text .td {
        padding-bottom: 5px;
    }
    .section-menu-detail-matsuya .article-info .ul-text .th {
        width: 120px;
    }
    .section-menu-detail-matsuya .article-info .ul-text .th:after {
        right: 2px;
    }
    .section-menu-detail-matsuya .article-info .ul-text .td {
        padding-left: 10px;
    }
    .section-menu-detail-matsuya .article-info .box-text {
        padding: 10px;
    }
    .section-menu-detail-matsuya .article-info .box-text ol {
        font-size: 9px;
    }
    .section-menu-detail-matsuya .article-info .box-text ol>li {
        display: table-row;
    }
    .section-menu-detail-matsuya .article-info .box-text ol>li:last-child .th,
    .section-menu-detail-matsuya .article-info .box-text ol>li:last-child .td {
        padding-bottom: 0;
    }
    .section-menu-detail-matsuya .article-info .box-text ol .th,
    .section-menu-detail-matsuya .article-info .box-text ol .td {
        padding-bottom: 2px;
    }
    .section-menu-detail-matsuya .article-info .box-text ol .th {
        width: 30px;
    }
    .section-menu-detail-matsuya .article-info .box-text ol .td {
        padding-left: 10px;
    }
    .section-menu-detail-matsuya .row-article {
        margin-bottom: 30px;
    }
    .section-menu-detail-matsuya .ul-btn {
        margin-bottom: 32px;
    }
    .section-menu-detail-matsuya .ul-btn>li {
        width: auto;
        margin-bottom: 0;
    }
    .section-menu-detail-matsuya .ul-btn>li:last-child {
        margin-bottom: 0;
    }
    .section-menu-detail-matsuya .btn {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50px;
        padding: 0 20px;
        font-size: 15px;
    }
    .section-menu-detail-matsuya .btn:after {
        right: 8px;
        width: 10px;
    }
    .section-menu-detail-matsuya .pttl {
        padding: 6px 15px;
        font-size: 13px;
        margin-bottom: 4px;
    }
    .section-menu-detail-matsuya .ul-data {
        font-size: 8px;
        margin-bottom: 10px;
    }
    .section-menu-detail-matsuya .ul-data>li {
        width: 12.5%;
        border: 1px solid #f2f2f2;
        border-right: none;
        margin-bottom: 5px;
    }
    .section-menu-detail-matsuya .ul-data>li:nth-child(8n) {
        border-right: 1px solid #f2f2f2;
    }
    .section-menu-detail-matsuya .ul-data .th {
        height: 24px;
    }
    .section-menu-detail-matsuya .ul-data .td {
        padding: 10px 0;
    }
    .section-menu-detail-matsuya .text {
        font-size: 11px;
        line-height: 1.81818;
    }
    .section-menu-detail-matsuya .text .note {
        margin-top: 15px;
    }
    .section-menu-detail-matsuya .row-block {
        margin-bottom: 26px;
    }
    .section-menu-detail-matsuya .row-block.last {
        margin-bottom: 15px;
    }
    .section-menu-detail-matsuya .ul-col {
        border: 1px solid #f2f2f2;
        padding: 15px 0 20px;
        line-height: 2;
        font-size: 12px;
    }
    .section-menu-detail-matsuya .ul-col>li {
        width: 50%;
        border-right: none;
        border-left: 1px solid #f2f2f2;
        padding: 0 15px;
        margin-top: 40px;
        position: relative;
    }
    .section-menu-detail-matsuya .ul-col>li:before {
        content: "";
        position: absolute;
        left: 15px;
        top: -20px;
        height: 1px;
        right: 0;
        background: #f2f2f2;
    }
    .section-menu-detail-matsuya .ul-col>li:nth-child(2n):before {
        left: 0;
        right: 15px;
    }
    .section-menu-detail-matsuya .ul-col>li:nth-child(2n+1) {
        border-left: none;
    }
    .section-menu-detail-matsuya .ul-col>li:nth-child(1) {
        margin-top: 0;
    }
    .section-menu-detail-matsuya .ul-col>li:nth-child(2) {
        margin-top: 0;
    }
    .section-menu-detail-matsuya .ul-col .txt {
        font-size: 14px;
    }
    .section-menu-detail-matsuya .ul-note {
        font-size: 10px;
        line-height: 2;
        padding: 10px 10px 10px 15px;
    }
    .section-menu-detail-matsuya .wrap-banner {
        background: none;
        padding: 30px 5px 0;
    }
    .section-menu-detail-matsuya .ul-banner {
        margin-top: 50px;
    }
    .section-menu-detail-matsuya .ul-banner>li {
        width: auto;
    }
    .section-menu-detail-matsuya .ul-banner>li+li {
        margin-top: 5px;
    }
    .section-menu-detail-matsuya .btn-primary.btn-large {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 50px;
        font-size: 15px;
        padding: 0 20px 0 5px;
    }
    .section-menu-detail-matsuya .btn-primary.btn-large:before {
        right: 7px;
    }
}

.section-menu-other {
    padding: 73px 0 41px;
}

.section-menu-other .title {
    font-size: 24px;
    letter-spacing: 0.2em;
    color: #003983;
    text-align: center;
    font-weight: bold;
    margin-bottom: 53px;
}

.section-menu-other .w-col>li {
    width: 224px;
    margin: 0 0 20px 20px;
}

.section-menu-other .w-col>li:nth-child(5n+1) {
    margin-left: 0;
}

.chapter_list01 {
    margin-bottom: 15px;
}

@media only screen and (max-width: 750px) {
    .section-menu-other {
        padding: 0 0 60px;
    }
    .section-menu-other .wrapper {
        padding: 0 5px;
    }
    .section-menu-other .title {
        font-size: 17px;
        margin-bottom: 15px;
    }
    .section-menu-other .w-col {
        margin: 0 -5px;
    }
    .section-menu-other .w-col>li {
        width: 33.33333%;
        margin: 0 0 5px;
        padding: 0 2px 0 3px;
    }
    .section-menu-other .item-menu-cmn .txt {
        letter-spacing: 0;
        font-size: 8px;
    }
}

@media only screen and (max-width: 374px) {
    .section-menu-other .item-menu-cmn .txt {
        letter-spacing: 0;
        padding-left: 4px;
        padding-right: 4px;
    }
    .section-menu-other .item-menu-cmn .txt.ls {
        letter-spacing: -0.05em;
    }
}


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

.section-news {
    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;
    text-align: center;
    padding: 12px 0;
    background: #f2f2f2;
    display: block;
    height: 50px;
    letter-spacing: 0.2em;
    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;
    }
    .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;
        position: relative;
        letter-spacing: 0.2em;
        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;
        right: 0;
        top: 100%;
        *zoom: 1;
        z-index: 9999;
        background: #f2f2f2;
        color: #003983;
        letter-spacing: 0.2em;
        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;
    }
    .nourishment {
        display: flex;
    }
    .nourishment .ul-col {
        width: 50%;
    }
}

@media only screen and (max-width: 750px) {
    .section-news {
        font-size: 12px;
        letter-spacing: 0;
        padding-bottom: 50px;
    }
    .section-news:before {
        height: 350px;
    }
    .section-news .ttl-cmn {
        margin: 0;
    }
    .section-news .caption {
        line-height: 2.08333;
        margin-bottom: 38px;
    }
    .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;
        letter-spacing: 0.2em;
    }
    .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 .inner-content-cmn {
    padding-top: 60px;
}

.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-txt {
    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-bottom: 50px;
    }
    .section-post-cmn:before {
        height: 350px;
    }
    .section-post-cmn .inner-content-cmn {
        padding-top: 40px;
    }
    .section-post-cmn .head-post {
        display: flex;
        flex-direction: column;
        padding-bottom: 13px;
        margin-bottom: 33px;
    }
    .section-post-cmn .head-post .gr {
        order: 2;
        margin: 13px 0 0;
    }
    .section-post-cmn .head-post .date {
        font-size: 11px;
        margin-right: 10px;
    }
    .section-post-cmn .title-txt {
        order: 1;
        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;
    }
}

.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%;
    }
}

.chapter_title03 {
    width: 1200px;
    margin: 39px auto 0;
    padding: 23px;
    border: 1px solid #aaa;
    text-align: center;
}

.chapter_title03 a {
    color: #e8340c;
}

.chapter_title03 a:hover {
    text-decoration: underline;
}

.section-menu-matsuya .w-col.menu_inner>li {
    background-color: #fffbef;
}

.section-menu-matsuya .w-col.menu_inner>li .item_inner>span.txt {
    display: block;
    margin: 15px;
    font-size: 16px;
    color: #001532;
}

.section-menu-matsuya .w-col.menu_inner>li .item_inner>p.notes {
    display: block;
    margin: 10px 15px;
    font-size: 12px;
    color: #001532;
}

.section-menu-matsuya .w-col.menu_inner>li .item_inner>p.notes span.notesRed {
    font-weight: bold;
    color: #FF0000;
}

.section-menu-matsuya .w-col.menu_inner>li .price {
    font-size: 20px;
    font-weight: bold;
    color: #dc0000;
}

.section-menu-matsuya .w-col.menu_inner>li .txt_bold {
    display: inline-block;
    margin-right: 12px;
    font-size: 16px;
}

.section-menu-matsuya .w-col.menu_inner>li ul.txt {
    margin-right: 15px;
    padding-bottom: 15px;
    text-align: right;
}

@media only screen and (max-width: 750px) {
    .section-menu-matsuya .w-col.menu_inner>li {
        position: relative;
        width: 49.318%;
        padding: 0 0 50px;
        margin: 0 0 1%;
    }
    .section-menu-matsuya .w-col.menu_inner {
        padding-right: 5px;
        padding-left: 5px;
        justify-content: space-between;
    }
    .section-menu-matsuya .w-col.menu_inner>li .item_inner>span.txt {
        margin: 10px 15px;
        line-height: 1.6;
        font-size: 12px;
    }
    .section-menu-matsuya .w-col.menu_inner>li .item_inner>p.notes {
        font-size: 10px;
        line-height: 1.6;
    }
    .section-menu-matsuya .w-col.menu_inner>li ul.txt {
        margin: 0;
        padding: 0;
    }
    .section-menu-matsuya .w-col.menu_inner>li .item_inner .description {
        position: absolute;
        right: 10px;
        bottom: 10px;
    }
    .section-menu-matsuya .w-col.menu_inner>li .price {
        font-size: 13px;
    }
    .section-menu-matsuya .w-col.menu_inner>li .txt_bold {
        font-size: 11px;
    }
    .chapter_title03 {
        position: relative;
        width: calc(100% - 10px);
        margin: 15px auto 0;
        padding: 20px;
        z-index: 5;
    }
    .section-menu-matsuya .wrapper {
        padding-top: 1px;
        background-color: #fff;
    }
}

.section-menu-detail-matsuya .article-info .leadTxt {
    margin-bottom: 25px;
    padding-left: 20px;
}

.section-menu-detail-matsuya .article-info {
    padding-top: 0;
}

.section-menu-detail-matsuya .article-info .txt {
    margin-bottom: 0;
}

@media only screen and (max-width: 750px) {
    .section-menu-detail-matsuya .article-info {
        padding-top: 18px;
    }
    .section-menu-detail-matsuya .article-info .leadTxt {
        padding-left: 10px;
    }
}

.section-menu-detail-matsuya .nourishment .ul-col>li {
    width: 100%;
}

.section-menu-detail-matsuya .nourishment {
    flex-wrap: wrap;
}

.section-menu-detail-matsuya .nourishment .ul-col {
    width: 100%;
}

.section-menu-detail-matsuya .nourishment .ul-col>li {
    width: 25%;
}

.section-menu-detail-matsuya .ul-col>li:nth-child(4n) {
    border-right: none;
}

.section-menu-detail-matsuya .ul-btn {
    width: 580px;
}

.section-menu-detail-matsuya .ul-btn>li~li {
    margin-top: 15px;
}

@media only screen and (max-width: 750px) {
    .section-menu-detail-matsuya .ul-btn {
        width: 100%;
    }
}

.section-menu-detail-matsuya .btn-dropdown-js {
    position: relative;
}

.section-menu-detail-matsuya .btn-dropdown-js:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 20px;
    width: 15px;
    height: 9px;
    margin-top: -5px;
    background: url(../img/common/icn_expand_bl.png) no-repeat 0 0;
    transform: scale(1, -1);
}

.section-menu-detail-matsuya .btn-dropdown-js.active:after {
    transform: scale(1, 1);
}

.section-menu-detail-matsuya .article-info .ul-text .td {
    padding-left: 0;
}

.section-menu-detail-matsuya .article-info .ul-text .th~.td {
    padding-left: 40px;
}

@media only screen and (max-width: 750px) {
    .section-menu-detail-matsuya .nourishment .ul-col>li {
        width: 50%;
    }
}

.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;
}

.section-top-news .ul-btn.shop_info li {
    /*	float: left; */
    margin: 0 20px 0 0;
}

.ul-btn.shop_info li .btn-more {
    width: auto;
    min-width: 140px;
    padding: 10px 25px 0 15px;
    background-color: #fdd352;
    color: #003983;
}

.ul-btn.shop_info li .btn-more:before {
    background-image: url(../img/common/icn_bullet01.png);
}

@media only screen and (max-width: 750px) {
    .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 {
        /*		margin-top: 20px;*/
    }
    .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;
    }
    .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;
    }
    .img_qr {
        max-width: 40% !important;
    }
}

@media only screen and (max-width: 750px) {
    .sp-none {
        display: none;
    }
}

@media only screen and (min-width: 751px) {
    .pc-none {
        display: none;
    }
}

@media only screen and (max-width: 750px) {
    .navigation .navigation-inner .ul-nav>li a {
        padding: 20px 15px 20px 87px;
        background: none no-repeat 32px center/33px 33px;
        font-size: 20px;
    }
    .navigation .navigation-inner .ul-nav>li.ul-nav-news a {
        background-image: url(../img/common/icn_nav01.png);
    }
    .navigation .navigation-inner .ul-nav>li.ul-nav-allergen a {
        background-image: url(../img/common/icn_nav02.png);
    }
    .navigation .navigation-inner .ul-nav>li.ul-nav-gensanchi a {
        background-image: url(../img/common/icn_nav03.png);
    }
    .navigation .navigation-inner .ul-nav>li.ul-nav-matsuken a {
        background-image: url(../img/common/icn_nav04.png);
    }
    .navigation .navigation-inner .ul-nav>li.ul-nav-contact a {
        background-image: url(../img/common/icn_nav05.png);
    }
    .navigation .navigation-inner .ul-nav>li.ul-nav-english a {
        background-image: url(../img/common/icn_nav06.png);
    }
    .navigation .navigation-inner .ul-nav>li.ul-nav-foodstop a {
        /* padding-left: 30px; border: 2px solid #003983; background-color: #fff; color: #003983;*/
    }
    .navigation .navigation-inner .ul-nav>li.ul-nav-foodstop a {
        background-image: url(../img/common/icn_home.png);
    }
    .navigation .navigation-inner .ul-nav>li.ul-nav-recruit a {
        background-image: url(../img/common/icn_nav07.png);
    }
    .navigation .navigation-inner .ul-nav>li.ul-nav-sdgs a {
        background-image: url(../img/common/icon_sdgs.png);
    }
    .navigation .navigation-inner .ul-nav>li.ul-nav-delivery a {
        background-image: url(../img/common/icon_deli.png);
    }
    .navigation .navigation-inner .ul-nav>li.ul-nav-online a {
        background-image: url(../img/common/icon_online.png);
    }
}


/* YUUTAI INFO
* ----------------------------------------------- */

.yuutai_info {
    border: 2px solid #003983;
    background: #FFF;
    padding: 30px;
    margin: 20px auto;
    width: 960px;
    text-align: center;
}

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


/* 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%;
    }
}

.pc {
    display: inline;
}

.sp {
    display: none;
}

@media only screen and (max-width: 750px) {
    .pc {
        display: none;
    }
    .sp {
        display: inline;
    }
}


/* 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;
    }
}