@charset "utf-8";

/* reset
==============================*/

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;
    outline: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}


/* HTML5 display-role reset for older browsers */

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

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

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

img {
    vertical-align: bottom;
    border: none;
}

input,
select {
    vertical-align: middle;
}

a {
    text-decoration: none;
}


/* basic
==============================*/

html {
    font-size: 62.5%;
}

body {
    position: relative;
    min-width: 1040px;
    color: #000;
    font-size: 14px;
    font-family: Verdana, "メイリオ", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", sans-serif;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}


/* common class
==============================*/

.spElem {
    display: none;
}

.hover:hover {
    opacity: 0.8;
}

a.tel {
    cursor: default;
}


/* 画面の横幅が768x以下
==============================*/

@media screen and (max-width: 768px) {
    body {
        min-width: 0;
    }
    .pcElem {
        display: none;
    }
    .spElem {
        display: block;
    }
}


/*
.wrp
********************************/

.wrp {
    background: url(../img/topImage.jpg) top center no-repeat;
    height: 640px;
    overflow: hidden;
}

#second .wrp {
    background-position: center -20px;
    height: 288px;
}


/*
.header
********************************/

.header {
    background: rgba(255, 255, 255, .85);
    border-bottom: 2px solid #26bbd4;
}

.header a {
    color: #222222;
}

.header .inner {
    position: relative;
    width: 960px;
    margin: 0 auto;
    padding-bottom: 8px;
}

.headerLogo {
    padding: 9px 0 12px;
}

.headerLogo img {
    height: 43px;
}

.header .link {
    position: absolute;
    top: 28px;
    right: 4px;
    font-size: 14px;
}

.header .link li {
    position: relative;
    display: inline-block;
    margin-left: 40px;
    font-family: "UD新ゴ R";
}

.header .link li:hover {
    text-decoration: underline;
}

.header .link li a::before {
    content: url(../img/arw.png);
    position: absolute;
    left: -24px;
    top: -1px;
}

.headText {
    font-family: "UD新ゴ M";
    position: relative;
    width: 960px;
    margin: 0 auto;
}

.headText p {
    position: absolute;
    top: -100px;
    left: 330px;
    color: #007f94;
    line-height: 21px;
    font-size: 14px;
}


/*
#nav
********************************/

#nav:after {
    content: "";
    clear: both;
    display: block;
}

#nav li {
    height: 40px;
    width: 190px;
    float: left;
    text-align: center;
    border-right: 1px solid #000;
    font-size: 15px;
    font-family: "UD新ゴ R";
    border-radius: 2px;
    /*transition: all .4s ease 0s;*/
}

#nav li:first-child {
    border-left: 1px solid #000;
}

#nav a {
    display: block;
    line-height: 40px;
    /*transition: all .3s ease 0s;*/
}

#nav li a:hover {
    background: #26bbd4;
    color: #fff
}


/*
.headContents
********************************/

.headContents {
    /*width: 1040px;*/
    width: 960px;
    margin: 0 auto;
    position: relative;
    padding: 94px 0;
}

#second .headContents {
    width: 960px;
    padding: 71px 0;
}

.headContents .info {
    padding: 8px;
    width: 328px;
    height: 144px;
    position: absolute;
    top: 94px;
    right: 0;
    background: #ffe100;
}

#second .info {
    top: 0;
    height: 106px
}

.headContents .info h2 {
    padding: 8px 0 16px 8px;
    font-size: 16px;
    font-family: "UD新ゴ DB";
}

#second .headContents .info h2 {
    padding: 0 0 8px 8px;
}

.headContents .info dl {
    height: 88px;
    padding: 8px;
    background: #fff;
    overflow: hidden;
}

.headContents .info dt,
.headContents .info dd {
    animation: fadeIn .4s ease 0s 1 normal;
    -webkit-animation: fadeIn .4s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

#second .headContents .info dl {
    height: 64px;
}

.headContents .info dl dt {
    width: 112px;
    height: 88px;
    line-height: 88px;
    text-align: center;
    display: inline-block;
    color: #fff;
    font-size: 32px;
    float: left;
}

.headContents .info dl dt.free {
    background: #22ac38;
}

.headContents .info dl dt.full {
    background: #d80c18;
}

.headContents .info dl dt.konzatsu {
    background: #fe7c13;
}

#second .headContents .info dl dt {
    width: 112px;
    height: 64px;
    line-height: 64px;
}

.headContents .info dd {
    margin-left: 123px;
}

.headContents .info dd p {
    padding: 0;
    min-height: 6px;
    line-height: 1.7;
    font-size: 16px;
}

#second .headContents .info dd p {
    line-height: 1.7;
    font-size: 16px;
    padding: 0;
}

.headContents .info time {
    margin-top: 4px;
    display: block;
    font-size: 10px;
}

.headContents .btnList {
    position: absolute;
    top: 95px;
    right: 0;
}

.headContents .btnList li {
    /*float: left;*/
    font-size: 16px;
    /*width: 168px;
    height: 168px;*/
    width: 270px;
    height: 158px;
    background: url(../img/iconCar.png) 50% 39px no-repeat #00afcc;
    background-size: 74px auto;
    border-bottom: 2px solid #005e6d;
    font-family: "UD新ゴ R";
}

.headContents .btnList li:first-child {
    margin-bottom: 18px;
    background: url(../img/iconYen.png) 50% 33px no-repeat #00afcc;
    background-size: 50px auto;
}

.headContents .btnList li a {
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    text-align: center;
    box-sizing: border-box;
    padding-top: 112px;
    line-height: 1.2;
}

.headContents .btnList li:last-child a {
    padding-top: 122px;
}

.slideArea {
    width: 672px;
}

#second .pageTitle {
    font-size: 32px;
    padding: 0 0 0 46px;
    font-family: "UD新ゴ R", sans-serif;
}


/*
.section
********************************/

.section {
    width: 960px;
    margin: 0 auto;
    position: relative;
}

.sectionTitle {
    font-size: 24px;
    font-family: "UD新ゴ M";
}

.sectionTitle span {
    font-size: 16px;
    padding-left: 18px;
}


/*
.pickup
********************************/

.pickup {
    padding: 44px 0 48px;
}

.pickup .event {
    margin-top: 12px;
    width: 464px;
    padding: 24px;
    background: #00afcc;
}

.pickup .event dl {
    width: 150px;
    margin-right: 20px;
    float: left;
}

.pickup .event dl dt {
    font-family: 'ＭＳ Ｐゴシック', sans-serif;
    font-size: 12px;
    text-align: center;
    color: #00afcc;
    background: #fff;
    padding: 2px 0;
    margin-bottom: 2px;
}

.pickup .event p {
    font-family: "UD新ゴ M";
    font-size: 16px;
    color: #fff;
    line-height: 1.5;
}

.pickup .event p small {
    display: block;
    margin-top: 14px;
    font-family: 'ＭＳ Ｐゴシック', sans-serif;
    font-size: 13px;
    line-height: 21px;
}

.pickup .event strong {
    font-size: 32px;
}

.pickup .event p a {
    display: block;
    color: #000;
    background: #fff;
    width: 232px;
    text-align: center;
    border-radius: 2px;
    margin: 18px auto 0;
    font-size: 12px;
    line-height: 2;
}

.pickup .event p a:hover {
    text-decoration: underline;
}

.pickup .event p a::before {
    content: "＞ "
}

.pickup .character {
    position: absolute;
    top: 80px;
    right: 0;
    width: 432px;
}

.btnSmartNavi {
    font-family: "UD新ゴ R";
    position: absolute;
    top: 73px;
    right: 0;
    width: 432px;
    background: #ebf9fb;
    margin-top: 8px;
    border-bottom: 2px solid #007f94;
}

.btnSmartNavi a {
    position: relative;
    display: block;
    height: 130px;
    border: 2px solid #0081cc;
    color: #333;
    background: 22px 14px url(../img/iconSmp.png) no-repeat;
    cursor: default;
}

.btnSmartNavi span {
    margin: 24px 0 0 70px;
    display: block;
    font-size: 14px;
    font-family: "UD新ゴ M";
}

.btnSmartNavi strong {
    margin: 14px 0 0 70px;
    display: block;
    color: #0081cc;
    font-size: 24px;
    font-family: "UD新ゴ M";
}

.btnSmartNavi small {
    margin: 20px 0 0 22px;
    font-size: 10px;
    line-height: 14px;
    display: block;
}

.btnSmartNavi img {
    position: absolute;
    top: 14px;
    right: 22px;
}


/*
.news
********************************/

.news {
    padding: 30px 4px 32px;
    background: #f6f4eb;
}

.news ul {
    margin-top: 12px;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.news li {
    font-family: "ヒラギノ角ゴ W3 JIS2004";
    line-height: 25px;
    padding: 16px 0;
    border-bottom: 2px solid #e2e1dd;
}

.news li:last-child {
    border-bottom: none;
}

.news time {
    display: inline-block;
    color: #666666;
    width: 92px;
}

.news li span.category {
    border-radius: 2px;
    width: 104px;
    text-align: center;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    background: #00afcc;
}

.news li span.category.cat-media {
    background: #005bac;
}

.news li span.category.cat-artranger {
    background: #e83428;
}

.news li span.title {
    margin-left: 10px;
    color: #000;
    display: inline-block;
}

.news li a:hover span.title {
    text-decoration: underline;
}

.news .btn {
    top: -4px;
    right: 0;
    position: absolute;
    border: 1px solid #000;
    font-family: "UD新ゴ R";
    transition: all .3s ease 0s;
}

.news .btn:hover {
    color: #fff;
    border: 1px solid #fff;
    background: #00afcc;
}

.news .btn a {
    color: #000;
    display: block;
    padding: 5px 4px;
    font-size: 12px;
    transition: all .5s ease 0s;
}

.news .btn a:hover {
    color: #fff;
}

.news .btn a::before {
    content: "＞";
    margin-right: 2px;
}


/*
.accessArea
********************************/

.accessArea {
    padding: 46px 0 48px;
}

.accessArea address {
    position: absolute;
    top: 54px;
    right: 0;
    font-family: "UD新ゴ R";
}

.accessArea address a {
    color: #222222;
}

.accessArea #map {
    margin-top: 12px;
    width: 100%;
    height: 430px;
    background: #eee;
}

.accessArea #map iframe {
    width: 100%;
    height: 100%;
}


/*
.banners
********************************/

.banners {
    display: -webkit-box;
    display: flex;
    margin-bottom: 43px;
}

.banners li {
    width: 50%;
}

.banners li:last-child {
    text-align: right;
}

.btnList li {
    background: #fff;
}

.pickup .character a:hover,
.btnList li:hover,
.slideArea li img:hover,
.banners li a:hover {
    -moz-animation-name: flash_hover;
    -moz-animation-duration: 1s;
    -moz-animation-timing-function: ease;
    -moz-animation-iteration-count: 1;
    -webkit-animation-name: flash_hover;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: ease;
    -webkit-animation-iteration-count: 1;
    -o-animation-name: flash_hover;
    -o-animation-duration: 1s;
    -o-animation-timing-function: ease;
    -o-animation-iteration-count: 1;
    -ms-animation-name: flash_hover;
    -ms-animation-duration: 1s;
    -ms-animation-timing-function: ease;
    -ms-animation-iteration-count: 1;
}

@-moz-keyframes flash_hover {
    0% {
        opacity: .75
    }
    100% {
        opacity: 1
    }
}

@-webkit-keyframes flash_hover {
    0% {
        opacity: .75
    }
    100% {
        opacity: 1
    }
}

@-o-keyframes flash_hover {
    0% {
        opacity: .75
    }
    100% {
        opacity: 1
    }
}

@-ms-keyframes flash_hover {
    0% {
        opacity: .75
    }
    100% {
        opacity: 1
    }
}


/*
footer
***********************************/

footer {
    background: #333333 url(../img/btmImage.png) top center repeat-x;
    padding-top: 91px;
    color: #fff;
    font-size: 14px;
    font-family: 'ＭＳ Ｐゴシック', sans-serif;
    height: 74px;
}

footer a {
    color: #fff;
}

footer a:hover {
    text-decoration: underline;
}

footer .copy {
    margin-top: 10px;
}

footer .footLogo img {
    height: 34px;
}

footer .tel {
    text-align: right;
    position: absolute;
    right: 0;
    top: 16px;
}

footer ul {
    position: absolute;
    top: 44px;
    right: 0;
}

footer ul li {
    display: inline-block;
    margin-left: 30px;
}

footer ul li a::before {
    content: "> ";
}

/* 画面の横幅が768px以下
==============================*/

@media screen and (max-width: 768px) {
    /*
    .wrp
    ********************************/
    .wrp {
        background: none;
        height: inherit;
    }
    #second .wrp {
        background: url(../img/topImage.jpg) top center no-repeat;
        height: 288px;
    }
    /*
	header
	**********************/
    .header {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        width: 100%;
        height: 55px;
        margin: 0 auto;
        border-bottom-width: 1px;
        background: #fff;
    }
    .header .inner {
        position: relative;
        width: 100%;
    }
    .headerLogo {
        position: absolute;
        left: 5%;
        top: 8px;
        padding: 0;
    }
    .headerLogo img {
        height: 35px
    }
    #menuBtn {
        background: #00afcc;
        position: absolute;
        border-radius: 2px;
        right: 5%;
        top: 13px;
        width: 60px;
        height: 28px;
        padding: 0 2px;
        color: #fff;
        text-align: center;
        border-bottom: 2px solid #005e6d;
    }
    #menuBtn span {
        display: block;
        font-size: 10px;
        line-height: 28px;
        text-align: right;
        font-weight: bold;
    }
    #menuBtn div {
        position: absolute;
        width: 14px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: all .4s ease 0s;
    }
    #menuBtn .bar1 {
        top: 8px;
        left: 5px;
    }
    #menuBtn .bar2 {
        top: 13px;
        left: 5px;
    }
    #menuBtn .bar3 {
        top: 18px;
        left: 5px;
    }
    #menuBtn.open .bar1 {
        top: 12px;
        -webkit-transform: rotate(45deg) translateX(0px) translateY(0px);
        transform: rotate(45deg) translateX(0px) translateY(0px);
    }
    #menuBtn.open .bar2 {
        display: none;
        opacity: 0;
    }
    #menuBtn.open .bar3 {
        top: 12px;
        -webkit-transform: rotate(-45deg) translateX(0px) translateY(0px);
        transform: rotate(-45deg) translateX(0px) translateY(0px);
    }
    #nav {
        position: absolute;
        right: 0;
        top: -556px;
        width: 100%;
        background: #fff;
        transition: all .4s ease 0s;
        z-index: 200;
    }
    #nav.open {
        top: 56px;
    }
    .header .link.open {
        top: 248px;
    }
    #nav li:first-child {
        border-left: none;
    }
    .header .link {
        overflow: hidden;
        width: 100%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    #nav li {
        float: none;
        width: 100%;
        border: none;
        box-sizing: border-box;
        padding: 8px;
        margin-bottom: 8px;
    }
    #nav li a {
        border: 1px solid #000;
        text-align: center;
        width: 100%;
        height: auto;
        text-indent: 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    #nav li a:hover {
        background: #fff;
        color: #222;
    }
    .header .link {
        transition: all .4s ease 0s;
        width: 100%;
        position: absolute;
        top: -500px;
        right: 0%;
        font-size: 14px;
        padding-bottom: 8px;
        background: #fff;
    }
    .header .link li {
        background: #fff;
        position: relative;
        display: block;
        margin-left: 0px;
        border: none;
        padding: 8px 8px 0 8px;
    }
    .header .link a {
        padding: 4px;
        border: 1px solid #000;
        text-align: center;
        display: block;
        line-height: 32px;
        box-sizing: border-box;
    }
    .header .link li a::before {
        content: none;
    }
    .header .link li a:hover {
        text-decoration: none;
    }
    /*
    .headContents
    ********************************/
    .headContents {
        width: 100%;
        padding: 0;
    }
    .headContents .info {
        box-sizing: border-box;
        width: 90%;
        margin: 0 auto;
        height: inherit;
        position: static;
    }
    .headContents .info dl dt {
        font-family: "UD新ゴ M";
        font-family: "UD新ゴ M";
    }
    .headContents .btnList {
        position: static;
        width: 90%;
        margin: 8px auto;
        display: -webkit-box;
        display: flex;
    }
    .headContents .btnList li {
        float: none;
        width: 50%;
        background: url(../img/iconCar.png) 50% 35% no-repeat #00afcc;
        background-size: 50px auto;
    }
    .headContents .btnList li:first-child {
        background: url(../img/iconYen.png) 50% 35% no-repeat #00afcc;
        background-size: 40px auto;
        margin-right: 8px;
    }
    .headContents .btnList li a {
        padding-top: 110px;
        height: 39px;
    }
    .headContents .btnList li:last-child a {
        padding-top: 118px;
    }
    /*
    *#second
    *****************************/
    #second .wrp {
        background: none;
        height: inherit;
    }
    #second .headContents {
        width: 100%;
        padding: 0;
        height: inherit;
    }
    #second .info {
        display: none;
        top: 0;
        height: inherit;
    }
    #second .headContents .info dd p {
        padding: 0;
        line-height: 1.8;
    }
    #second .pageTitle {
        text-align: center;
        font-size: 22px;
        padding: 24px 0;
        background: url(../img/topImage.jpg) 0 -16px;
        background-size: 100%;
        margin-bottom: 0px;
    }
    .headText {
        position: relative;
        width: 90%;
        margin: 59px auto 4px;
    }
    .headText p {
        position: static;
        line-height: 1.5;
    }
    #second .headText {
        margin: 55px auto 4px;
        width: 100%;
        background: #fff;
    }
    #second .headText p {
        width: 90%;
        padding: 4px 0;
        margin: 0 auto;
    }
    .slideArea {
        width: 100%;
    }
    /*
    .section
    ********************************/
    .section {
        width: 90%;
    }
    .sectionTitle span {
        font-size: 16px;
        padding-left: 18px;
    }
    /*
    .pickup
    ********************************/
    .pickup {
        padding: 16px 0 0;
    }
    .pickup .event {
        margin-top: 8px;
        width: 100%;
        height: inherit;
        box-sizing: border-box;
        padding: 8px;
        background: #00afcc;
        display: -webkit-box;
        display: flex;
    }
    .pickup .event dl {
        float: none;
        width: 130px;
        margin-right: 10px;
    }
    .pickup .event img {
        width: 130px;
    }
    .pickup .event dl dt {
        font-size: 12px;
        padding: 4px 0;
    }
    .pickup .event p {
        font-size: 13px;
        color: #fff;
        padding: 0;
        line-height: 1.5;
        margin-left: 0;
    }
    .pickup .event p small {
        display: block;
        margin-top: 14px;
        font-family: 'ＭＳ Ｐゴシック', sans-serif;
        font-size: 12px;
        line-height: 1.5;
    }
    .pickup .event strong {
        display: block;
        margin-top: 7px;
        font-size: 19px;
        font-weight: bold;
    }
    .pickup .event p a {
        display: block;
        color: #000;
        background: #fff;
        width: auto;
        text-align: center;
        border-radius: 2px;
        margin: 8px auto 0;
        font-size: 11px;
        line-height: 2;
    }
    .pickup .event p a::before {
        content: "＞ "
    }
    .pickup .character {
        position: static;
        width: 100%;
        margin: 8px 0;
    }
    .pickup .character img {
        width: 100%;
    }
    .btnSmartNavi {
        position: static;
        width: 100%;
    }
    .btnSmartNavi a {
        position: relative;
        display: block;
        height: 130px;
        border: 2px solid #0081cc;
        color: #333;
        background: 22px 14px url(../img/iconSmp.png) no-repeat;
    }
    .btnSmartNavi span {
        margin: 18px 0 0 70px;
        display: block;
        font-size: 15px;
    }
    .btnSmartNavi strong {
        margin: 12px 0 0 70px;
        display: block;
        color: #0081cc;
        font-size: 28px;
    }
    .btnSmartNavi small {
        margin: 20px 0 0 10px;
        font-size: 10px;
        line-height: 14px;
        display: block;
    }
    .btnSmartNavi img {
        display: none;
    }
    /*
    .news
    ********************************/
    .news {
        padding: 24px 0;
    }
    .news ul {
        margin-top: 8px;
    }
    .news li {
        line-height: 1.5;
        padding: 8px 0;
        border-bottom: 2px solid #e2e1dd;
    }
    .news time {
        display: inline-block;
        color: #666666;
        width: 92px;
    }
    .news li span.title {
        display: block;
        margin-top: 8px;
        margin-left: 0px;
    }
    .news .btn {
        top: 0px;
    }
    /*
    .accessArea
    ********************************/
    .accessArea {
        padding: 24px 0;
    }
    .accessArea address {
        position: static;
        margin-top: 8px;
        line-height: 1.4;
    }
    .accessArea address a {
        color: blue;
    }
    .accessArea #map {
        margin-top: 8px;
        height: 300px;
    }
    /*
    .banners
    ********************************/
    .banners {
        display: inherit;
        margin-bottom: 0px;
    }
    .banners li {
        width: 100%;
        margin-bottom: 8px;
    }
    .banners li:last-child {
        text-align: inherit;
    }
    .banners li img {
        width: 100%;
    }
    /*
    footer
    ***********************************/
    footer {
        background-size: auto 42px;
        padding: 50px 8px 8px 8px;
        font-size: 12px;
        height: inherit;
    }
    footer .footLogo img {
        height: 24px;
    }
    footer .tel {
        text-align: right;
        position: absolute;
        right: 0;
        top: -4px;
        margin: 8px 0;
        line-height: 1.4
    }
    footer ul {
        margin: 16px 0 0;
        position: static;
        display: flex;
    }
    footer ul li {
        text-align: center;
        width: 50%;
        display: block;
        margin-left: 0px;
    }
    footer ul li a::before {
        content: "> ";
    }
    footer .copy {
        text-align: center;
        font-size: 10px;
    }
}


/* media */


/* 画面の横幅が360px以下
==============================*/

@media screen and (max-width: 360px) {
    .btnSmartNavi span {
        font-size: 14px;
        margin-top: 10px;
    }
    .btnSmartNavi strong {
        margin: 24px 0 0 70px;
        display: block;
        color: #0081cc;
        font-size: 22px;
    }
    .btnSmartNavi small {
        margin: 20px 0 0 10px;
        font-size: 9px;
        line-height: 14px;
        display: block;
    }
    .headerLogo img {
        height: 30px;
    }
    footer .footLogo img {
        height: 20px;
    }
}


/*印刷設定*/

@media print {}


/*wp style*/

body.mceContentBody {
    font-size: 12px;
    font-family: "メイリオ", Meiryo, Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    max-width: 600px;
}

.editor-area a {
    color: green;
    text-decoration: underline;
}

.editor-area p {
    margin: 0 0 1em 0;
}

p.wp-caption-text {
    margin: 0;
}

.alignleft {
    display: block;
    float: left;
    margin-right: 10px;
    margin-bottom: 1em;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

.alignright {
    display: block;
    float: right;
    margin-left: 10px;
    margin-bottom: 1em;
}

.clear {
    clear: both;
}

.space1em {
    clear: both;
    height: 1em;
}

.space2em {
    clear: both;
    height: 2em;
}

.entryBody h1 {
    background: none !important;
    text-align: inherit;
    font-weight: bold;
    color: #000;
    font-size: 30px;
}

.entryBody h2 {
    text-align: inherit;
    font-weight: bold;
    font-size: 26px;
}

.entryBody h3 {
    text-align: inherit;
    font-weight: bold;
    font-size: 20px;
}

.entryBody h4 {
    text-align: inherit;
    font-weight: bold;
    font-size: 16px;
}

.entryBody h5 {
    text-align: inherit;
    font-weight: bold;
    font-size: 14px;
}

.entryBody h6 {
    text-align: inherit;
    font-weight: bold;
    font-size: 12px;
}

.entryBody ul {
    list-style-type: disc;
    padding-left: 1.5em;
}

.entryBody ol {
    list-style-type: decimal;
    padding-left: 1.5em;
}

.entryBody b,
.entryBody strong {
    font-weight: bold;
}

.entryBody em {
    font-family: "ＭＳ Ｐゴシック", sans-serif;
    font-style: italic !important;
}

.entryBody del {
    text-decoration: line-through;
}
/*
#headInfo
***********************************/
#headInfo {
    display: none;
}
/*
#headInfo {
    background: #fff;
    width: 960px;
    box-sizing: border-box;
    padding: 8px;
    font-size: 21px;
    line-height: 1.5;
    position: absolute;
    top: 22px;
    left: 0;
    padding-left: 48px;
}

#headInfo::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 10px;
    margin-top: -13px;
    background-color: rgba(0, 0, 0, 0);
    border: 4px solid rgba(255, 0, 0, 0.9);
    border-right: 4px solid rgba(0, 0, 0, 0);
    border-left: 4px solid rgba(0, 0, 0, 0);
    border-radius: 50px;
    box-shadow: 0 0 10px #f00;
    animation: spin 1.5s infinite ease-in-out;
    -moz-animation: spin 1.5s infinite ease-in-out;
    -webkit-animation: spin 1.5s infinite linear;
}

#headInfo span {
    color: red;
}

#headInfo .bx-wrapper {
    border-bottom: none;
}
#second .wrp {
    background-position: center -20px;
    height: 306px;
}
#second #headInfo {
    top: 8px;
    font-size: 20px;
    width: 100%;
}
#second .info{
    top: 62px;
}
#second .headContents{
    padding: 105px 0 0 0;
}
#second .holiday .leadText dd{
    line-height: 1.5;
    margin-top: 8px;
}
#second .holiday .leadText p{
    font-size: 18px;
}
#second .holiday .leadText p span{
    color: #b81c22;
}
.simulation .textInfo{
    line-height: 1.5;
    margin: 0 0 8px;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
        -moz-transform: rotate(160deg);
        opacity: 0;
        box-shadow: 0 0 1px #2187e7;
    }
    50% {
        -moz-transform: rotate(145deg);
        opacity: 1;
    }
    100% {
        -moz-transform: rotate(-320deg);
        opacity: 0;
        transform: rotate(360deg);
    }
}
@media screen and (max-width: 768px) {
    #headInfo {
        width: 100%;
        font-size: 16px;
        position: relative;
        top: 0px;
        left: 0;
    }
    #headInfo::before {
        top: 8px;
        left: 10px;
        margin-top: 0;
    }
    #second .wrp {
        background-position: center -20px;
        height:inherit
    }
    #second #headInfo {
        top: 8px;
        width: 100%;
        padding-top: 0;
    }
    #second #headInfo::before {
        top: 2px;
    }
    #second .info{
        top: 62px;
    }
    #second .headContents{
        padding: 0;
        border-top: 1px solid #26bbd4;
    }
    .wrp .headContents{
        padding: 0;
        border-top: 1px solid #26bbd4;
    }
    #second .holiday .leadText p{
        font-size: 12px;
        margin-top: 12px;
    }
}
*/
/*
* ヘッダーの臨時ニュースを削除する場合、#headInfoのcssを削除し、各ページのdiv#headInfoを削除する。
*
*/
