@charset "utf-8";
/* ---------------------------------------
1.0 setting
	1.1 normalize
	1.2 clearfix
2.0 compontents
	2.1 button
	2.2 form
	2.3 list
	2.4 pagenation
	2.5 slider
    2.6 loading
3.0 layout
	3.1 baseblock--category
	3.1 header
	3.2 footer
4.0 page
	4.1 parts
	4.2 home
	4.3 information
	4.4 photo
	4.5 blog
	4.6 movie
	4.7 qa
    4.8 questionnaire
	4.9 faq
    4.10 wallpaler
	4.11 support
    4.12 feature
-------------------------------------------- */
/* 1.0 setting
============================== */
/* 1.1 normalize
------------------------------ */
html,
body {
    -webkit-text-size-adjust: none;
    background: #fff;
}
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}
ul {
    list-style: none;
}
button,
input,
select,
textarea {
    margin: 0;
}
img,
embed,
iframe,
object,
audio,
video {
    height: auto;
    max-width: 100%;
}
iframe {
    border: 0;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
td,
th {
    padding: 0;
    text-align: left;
}
i {
    font-style: normal;
}
img {
    max-width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    vertical-align:bottom !important;
}
::selection {
    background: #222;
    color: #fff;
}
::-moz-selection {
    background: #222;
    color: #fff;
}
*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    outline: none;
}
body.loaded *,
body.loaded *::before,
body.loaded *::after {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-backface-visibility:hidden;
    backface-visibility:hidden;
}
select,
input,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
/* 1.2 clearfix
------------------------------ */
.clearfix::after {
    display: table;
    content: "";
    clear: both;
}

/* 2.0 component
============================== */
@media screen and (max-width: 768px) {
    .pc {
        display: none !important;
    }
}
@media screen and (min-width: 769px) {
    .sp {
        display: none !important;
    }
}
/* 2.1 button
------------------------------ */
.btn {
    text-align: center;
    margin: 1em 0;
}
.btn--main {
    color: inherit;
    font-weight: 300;
    letter-spacing: 0.05em;
    -webkit-appearance: none;
    display: inline-block;
    min-width: 320px;
    text-align: center;
    text-decoration: none;
    font-size: 1.6rem;
    line-height: 3.4;
    padding: 0 1.5em;
    cursor: pointer;
    background: #222;
    color: #fff;
    border: 1px solid #222;
    border-radius: 5px;
}
.btn--main:hover {
    color: #222;
    background: #fff;
}
.btn--sub {
    color: inherit;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.05em;
    -webkit-appearance: none;
    display: inline-block;
    min-width: 320px;
    text-align: center;
    text-decoration: none;
    font-size: 1.6rem;
    line-height: 3.4;
    padding: 0 1.5em;
    cursor: pointer;
    background: transparent;
    color: #222;
    border: 1px solid;
}
.btn--sub:hover {
    background: #222;
    color: #fff;
}
.list__more a,
.list__more span {
    display: block;
    width: 160px;
    background: #e9d979;
    color: #2ca10d;
    text-align: center;
    line-height: 60px;
    margin: 0 0 0 auto;
    position: relative;
    font-family: "Noto Serif JP", 'Yu Mincho', serif;
}
.list__more a:hover,
.list__more span:hover {
    opacity: .75;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

@media screen and (max-width: 768px) {
    .btn--main {
        width: 90%;
        min-width: inherit;
    }
    .list__more a,
    .list__more span {
        margin: 0 auto;
    }
    .list__more a:hover,
    .list__more span:hover {
        -webkit-transform: none;
        transform: none;
    }
}
/* 2.2 form
------------------------------ */
.form--post dt {
    margin: 3em 0 1em;
}
.form--post dd {
    margin: 0 0 1em;
}
/* placeholder */
::-webkit-input-placeholder {
    color: #ccc;
}
::-moz-placeholder {
    color: #ccc;
    opacity: 1;
}
:-ms-input-placeholder {
    color: #ccc;
}
:-moz-placeholder {
    color: #ccc;
}
/* autofill */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}
/* input */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="number"] {
    color: inherit;
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.06em;
    -webkit-appearance: none;
    display: inline-block;
    width: 100%;
    max-width: 100%;
    background: transparent;
    box-shadow: none;
    border-radius: 0.3em;
    border: 1px solid #ddd;
    padding: 0.5em;
}
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus {
    border-color: inherit;
}
input[type="text"].form__error,
input[type="tel"].form__error,
input[type="email"].form__error,
input[type="password"].form__error,
input[type="number"].form__error {
    background: #fff0ea;
    color: #f33;
    border-color: #f33;
}
input[type="text"].form__error:focus,
input[type="tel"].form__error:focus,
input[type="email"].form__error:focus,
input[type="password"].form__error:focus,
input[type="number"].form__error:focus {
    background: transparent;
    color: inherit;
    border-color: inherit;
}
input[type="text"][disabled],
input[type="tel"][disabled],
input[type="email"][disabled],
input[type="password"][disabled],
input[type="number"][disabled] {
    background: #ddd;
    border: none;
    opacity: 0.5;
}
.input--half {
    width: 50% !important;
}
.input--quarter {
    width: 25% !important;
}
/* textarea */
textarea {
    color: inherit;
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.06em;
    -webkit-appearance: none;
    display: inline-block;
    width: 100%;
    max-width: 100%;
    background: transparent;
    box-shadow: none;
    border-radius: 0.3em;
    border: 1px solid #ddd;
    padding: 0.5em;
    height: 10em;
}
textarea:focus {
    border-color: inherit;
}
textarea.form__error {
    background: #fff0ea;
    color: #f33;
    border-color: #f33;
}
textarea.form__error:focus {
    background: transparent;
    color: inherit;
    border-color: inherit;
}
textarea[disabled] {
    background: #ddd;
    border: none;
    opacity: 0.5;
}
/* select */
.form__select {
    display: inline-block;
    position: relative;
}
.form__select select {
    color: inherit;
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.06em;
    -webkit-appearance: none;
    display: inline-block;
    width: 100%;
    max-width: 100%;
    background: transparent;
    box-shadow: none;
    border-radius: 0.3em;
    border: 1px solid #ddd;
    padding: 0.5em;
    padding-right: 1.5em;
}
.form__select select:focus {
    border-color: inherit;
}
.form__select select.form__error {
    background: #fff0ea;
    color: #f33;
    border-color: #f33;
}
.form__select select.form__error:focus {
    background: transparent;
    color: inherit;
    border-color: inherit;
}
.form__select select[disabled] {
    background: #ddd;
    border: none;
    opacity: 0.5;
}
.form__select::after {
    content: '';
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border: 2px solid #888;
    border-top: none;
    border-right: none;
    margin: -0.25em 0 0;
    position: absolute;
    right: 0.75em;
    top: 50%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
/* checkbox */
.form__checkbox label p {
    color: inherit;
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.06em;
    display: block;
    padding: 0.5em;
    position: relative;
    cursor: pointer;
}
.form__checkbox input[type="checkbox"],
.form__checkbox input[type="radio"] {
    -webkit-appearance: none;
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
}
.form__checkbox.form__error {
    color: #f33;
}
.form__checkbox label p {
    padding-left: 1.6em;
}
.form__checkbox label p::before {
    content: '';
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    border-radius: 0.3em;
    border: 1px solid #ddd;
    margin: -0.6em 0 0;
    position: absolute;
    left: 0;
    top: 50%;
}
.form__checkbox label p::after {
    content: '';
    display: inline-block;
    width: 0.8em;
    height: 0.4em;
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    margin: -0.25em 0 0;
    position: absolute;
    left: 0.2em;
    top: 70%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
}
.form__checkbox :checked ~ p::before {
    background: #eb6972;
    border-color: #eb6972;
}
.form__checkbox :checked ~ p::after {
    top: 50%;
    opacity: 1;
}
/* radio */
.form__radio label p {
    color: inherit;
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.06em;
    display: block;
    padding: 0.5em;
    position: relative;
    cursor: pointer;
}
.form__radio input[type="checkbox"],
.form__radio input[type="radio"] {
    -webkit-appearance: none;
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
}
.form__radio.form__error {
    color: #f33;
}
.form__radio label p {
    padding-left: 1.6em;
}
.form__radio label p::before {
    content: '';
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    border-radius: 50%;
    border: 1px solid #ddd;
    margin: -0.6em 0 0;
    position: absolute;
    left: 0;
    top: 50%;
}
.form__radio :checked ~ p::before {
    border-color: #2da10c;
    border-width: 0.3em;
}
/* toggle button */
.form__toggle label p {
    color: inherit;
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.06em;
    display: block;
    padding: 0.5em;
    position: relative;
    cursor: pointer;
}
.form__toggle input[type="checkbox"],
.form__toggle input[type="radio"] {
    -webkit-appearance: none;
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
}
.form__toggle.form__error {
    color: #f33;
}
.form__toggle label p {
    padding-left: 0;
    position: relative;
}
.form__toggle label p::before,
.form__toggle label p::after {
    content: '';
    display: block;
    height: 30px;
    margin: -15px 0 0;
    position: absolute;
    border: 1px solid #ddd;
}
.form__toggle label p::before {
    width: 50px;
    border-radius: 15px;
    right: 0;
    top: 50%;
}
.form__toggle label p::after {
    width: 30px;
    background: #fff;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    right: 20px;
    top: 50%;
}
.form__toggle :checked ~ p::before {
    background: #2da10c;
    border-color: #2da10c;
}
.form__toggle :checked ~ p::after {
    right: 0;
}
/* horizontal */
.form--horizontal li {
    display: inline-block;
}
.form--horizontal label {
    display: inline-block;
    margin: 0 0.3em 0 0;
}
.form_box .rule {
    color: #c00;
}
.form--confirm dt {
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #2da10c;
    line-height: 1.3;
}
.form--confirm dd {
    margin: 0 0 1.5em;
    font-size: 1.8rem;
}
/* 2.3 list
------------------------------ */
/* information */
.list--information {
    margin: 0 0 50px;
}
.list--information a {
    position: relative;
    display: block;
    border-bottom: 1px solid #ede8e4;
    line-height: 25px;
    padding: 20px 0;
}
.list--information a * {
    -webkit-transition: none;
    transition: none;
}
.list--information a::after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 0;
    height: 0;
    right: 0;
    top: 50%;
    margin-top: -5px;
    border-style: solid;
    border-width: 7px 0 7px 10px;
    border-color: transparent transparent transparent #2ca10d;
}
.list--information a:hover {
    color: #2ca10d;
    padding-left: 1%;
}
.list--information .list__txt {
    float: left;
    width: 150px;
}
.list--information .tit {
    padding: 5px 30px 0 150px;
    font-size: 1.6rem;
    font-weight: 600;
}
.list--information .date {
    display: inline-block;
    position: relative;
    top: 4px;
    min-width: 120px;
    padding: 0 20px;
    background-color: #2ca10d;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 3px;
    text-align: center;
}
.list--information .category {
    display: inline-block;
    background: #fff;
    padding: 0 10px;
    font-size: 1.3rem;
}
.list--information .new .tit::after {
    content: 'UP';
    color: #eb6972;
    font-weight: bold;
    font-size: 0.85em;
    margin-left: 5px;
}
.youtube {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
    padding-top: 56.25%;
}
.youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%!important;
    height: 100%!important;
}

@media screen and (max-width: 768px) {
    .list--information .list__txt {
        float: none;
        width: 100%;
    }
    .list--information .tit {
        padding: 10px 30px 0 0;
        font-size: 1.3rem;
        font-weight: normal;
    }
    .list--information a {
        padding: 3% 0;
    }
    .list--information a:hover {
        padding-left: 0;
    }
    .list--information .date {
        min-width: 100px;
        padding: 0 10px;
        line-height: 2;
        font-size: 1.1rem;
    }
}
/* 2.4 pagenation
------------------------------ */
.block--pager {
    margin: 50px 0 0;
    text-align: center;
}
.block--pager li {
    display: inline-block;
    position: relative;
    margin: 0 5px;
}
.block--pager li.pager__item--current,
.block--pager li.pager__item--other a {
    width: 30px;
    height: 30px;
    color: inherit;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.05em;
    font-weight: bold;
    text-decoration: none;
    line-height: 30px;
    border-radius: 100px;
}
.block--pager li.pager__item--other a {
    display: block;
}
.block--pager li.pager__item--current,
.block--pager li:not(.pager__item--older):not(.pager__item--newer) a:hover {
    color: #2ca10d;
    background: #e9d979;
}
.block--pager .pager__item--newer,
.block--pager .pager__item--older {
    position: relative;
    top: 12px;
    margin: 0 5px;
}
.block--pager .pager__item--newer a {
    left: 0;
}
.block--pager .pager__item--older a {
    right: 0;
}
.block--pager .pager__item--newer a:hover {
    left: -5px;
}
.block--pager .pager__item--older a:hover {
    right: -5px;
}
.block--pager .pager__item--newer a,
.block--pager .pager__item--older a {
    display: block;
    width: 30px;
    height: 30px;
    position: relative;
}
.block--pager .pager__item--newer a:before,
.block--pager .pager__item--older a:after {
    content: '';
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border: 2px solid;
    border-top: none;
    border-right: none;
    margin: -0.35em 0 0;
    right: 0.25em;
    top: 50%;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    position: absolute;
}
.block--pager .pager__item--newer a:hover::before,
.block--pager .pager__item--older a:hover::after {
    border-color: #2ca10d;
}
.block--pager .pager__item--newer a:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    right: auto;
    left: 0.25em;
}
.block--pager li.pager__item--number {
    font-weight: bold;
}
.block--pager .pager-link--next,
.block--pager .pager-link--prev {
    width: 30px;
    height: 30px;
}
.block--pager .pager-link--next a,
.block--pager .pager-link--prev a {
    display: block;
    width: 30px;
    height: 30px;
    font-size: 15px;
    line-height: 30px;
    border-radius: 50%;
    background-color: #e9d979;
    text-indent: -9999px;
}
.block--pager .pager-link--next {
    float: left;
}
.block--pager .pager-link--prev {
    float: right;
}
.block--pager .pager-link--next a:before,
.block--pager .pager-link--prev a:after {
    content: '';
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border: 2px solid;
    border-top: none;
    border-right: none;
    margin: -0.25em -0.15em 0 0;
    right: 50%;
    top: 50%;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    position: absolute;
}
.block--pager .pager-link--next a:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin: -0.25em 0 0 -0.15em;
    right: auto;
    left: 50%;
}

@media screen and (max-width: 768px) {
    .block--pager {
        bottom: 30px;
    }
}
/* 2.5 slider
------------------------------ */
.loaded .slick-slider * {
    -webkit-transition: none;
    transition: none;
}
.slider {
    opacity: 0;
}
.slider.slick-initialized {
	opacity: 1;
}
.slick-slider {
    margin: 0;
    overflow: visible;
}
.slick-slider .slick-arrow {
    -webkit-appearance: none;
    display: block;
    width: 50px;
    height: 50px;
    background: #e9d979;
    color: #fff;
    text-indent: -999px;
    margin: 0 0 0;
    border: none;
    position: absolute;
    top: auto;
    bottom: -85px;
    z-index: 9;
    cursor: pointer;
    border-radius: 50%;
}
.slick-slider .slick-arrow.slick-disabled {
    display: none!important;
}
.slick-slider .slick-arrow:hover {
    opacity: .75;
}
.slick-slider .slick-arrow::before {
    content: '';
    position: absolute;
    display: inline-block;
    width: 0;
    height: 0;
    left: 18px;
    top: 18px;
    border-style: solid;
    border-width: 7px 10px 7px 0;
    border-color: transparent #2ca10d transparent transparent;
}
.slick-slider .slick-prev {
    left: 30px;
}
.slick-slider .slick-next {
    right: 30px;
}
.slick-slider .slick-next::before {
    left: 22px;
    border-width: 7px 0 7px 10px;
    border-color: transparent transparent transparent #2ca10d;
}
.slick-slider .slick-dots {
    bottom: -40px;
}
.slick-slider .slick-dots li {
    width: 10px;
    height: 10px;
    margin: 0 8px;
}
.slick-slider .slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 0;
}
.slick-slider .slick-dots li button::before {
    content: '';
    background: #e9d979;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: .75;
}
.slick-slider .slick-dots li button:hover::before {
    opacity: .75;
    background: #eb6a72;
}
.slick-slider .slick-dots li.slick-active button:before {
    background: #2ca10d;
}
.slick-slider .slick-dots {
    bottom: -30px;
}
/* 2.6 loading
------------------------------ */
#loading {
	position: fixed;
	width: 100%;
	height: 100%;
	top:0;
	left:0;
	background: rgba(255,255,255,1);
	z-index: 999;
    animation: loading_bg 3s ease-in-out infinite alternate;
}
#loading .loader img {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 280px;
	height: 160px;
	margin-top: -80px;
	margin-left: -140px;
	text-align: center;
	opacity: .7;
	z-index: 10;
    animation: loading_logo 1s ease-in-out infinite;
}
@keyframes loading_bg {
	50% {
		background-color: rgba(233,217,121,1);
	}
	100% {
		background-color: rgba(241,240,233,1);
	}
}
@keyframes loading_logo {
	0% {
		margin-top: -80px;
	}
	50% {
		margin-top: -60px;
	}
	100% {
		margin-top: -80px;
	}
}

/* 3.0 layout
============================== */
/* 3.1 base
------------------------------ */
html {
	font-size: 62.5%;
}
html,
body {
    min-height: 100vh;
}
body {
    position: relative;
    background-color: #E1DBC5;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
    font-feature-settings: "pkna" 1;
    color: #222;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.05em;
}
a {
    color: #222;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
#container {
    padding: 130px 0 180px;
    background-color: #fff;
}
.inner {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;

}

@media screen and (max-width: 1099px) {
    #container {
        padding-top: 60px;
    }
}

@media screen and (max-width: 768px) {
    #container {
        padding: 60px 0 280px;
    }
}
/* 3.2 header
------------------------------ */
.header {
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    width: 100%;
    height: 130px;
    padding: 0 3%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    background-color: #e1dbbf;
}
.header {
    opacity: 0;
    top: 0;
}
.loaded .header {
    opacity: 1;
    top: 0;
}
.header h1 {
    width: 300px;
    height: 100px;
    background: url(/static/yhanzaki/fanclub/common/logo.png) no-repeat center top;
    background-size: contain;
    z-index: 100;
}
.header h1 a {
    display: block;
    height: 100%;
    z-index: 101;
}
.header .btn--nav {
    display: none;
    width: 30px;
    height: 20px;
    position: absolute;
    right: 3%;
    top: 20px;
    cursor: pointer;
}
.header .btn--nav span {
    display: inline-block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
}
.header .btn--nav span:first-child {
    top: 0;
}
.header .btn--nav span:nth-of-type(2) {
    top: 9px;
}
.header .btn--nav span:nth-of-type(3) {
    top: 18px;
}
.header_inner {
    width: -webkit-calc(100% - 300px);
    width: calc(100% - 300px);
    font-family: "Noto Serif JP", 'Yu Mincho', serif;
    text-align: right;
}
.header_inner .login_nav {
    display: inline-block;
    margin: 10px 0 0;
    border: solid 2px #ffffff;
    border-radius: 5px;
    background-color: #2ca10d;
    color: #ffffff;
    opacity: 1;
}
.header_inner .login_nav a {
    display: inline-block;
    padding: 0 20px;
    color: #ffffff;
}
.header_inner .login_nav a:hover {
    color: #e9d979;
}
.header_inner .g-nav {
    margin: 8px 0 0;
    opacity: 1;
}
.header_inner .g-nav ul {
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.header_inner .g-nav ul li {
    padding: 0 10px;
}
.header_inner .g-nav ul li a {
    padding-top: 38px;
    font-size: 1.2rem;
    font-weight: 600;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.header_inner .g-nav ul li a span {
    position: relative;
}
.header_inner .g-nav ul li a:hover {
    color: #245018;
}
@keyframes hover {
  50% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(-8px);
  }
}
.hover {
  display: inline-block;
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
  transition-property: transform;
  transform: translateZ(0);
}
.hover:hover {
  transform: translateY(-8px);
  animation-name: hover;
  -webkit-transition-duration: 1.0s;
  animation-duration: 1.0s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.header_inner .g-nav ul li a span::after {
    content: "";
    position: absolute;
    width: 38px;
    height: 38px;
    top: -38px;
    left: 50%;
    margin-left: -19px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.header_inner .g-nav ul li.menu01 a span::after {
    background-image: url(/static/yhanzaki/fanclub/common/icon_fcnews.svg);
}
.header_inner .g-nav ul li.menu02 a span::after {
    background-image: url(/static/yhanzaki/fanclub/common/icon_movie.svg);
}
.header_inner .g-nav ul li.menu03 a span::after {
    background-image: url(/static/yhanzaki/fanclub/common/icon_photo.svg);
}
.header_inner .g-nav ul li.menu04 a span::after {
    background-image: url(/static/yhanzaki/fanclub/common/icon_qa.svg);
}
.header_inner .g-nav ul li.menu05 a span::after {
    background-image: url(/static/yhanzaki/fanclub/common/icon_blog.svg);
}
.header_inner .g-nav ul li.menu06 a span::after {
    background-image: url(/static/yhanzaki/fanclub/common/icon_eye.svg);
}
.header_inner .g-nav ul li.menu07 a span::after {
    background-image: url(/static/yhanzaki/fanclub/common/icon_report.svg);
}
.header_inner .g-nav ul li.menu08 a span::after {
    background-image: url(/static/yhanzaki/fanclub/common/icon_present.svg);
}
.header_inner .g-nav ul li.menu09 a span::after {
    background-image: url(/static/yhanzaki/fanclub/common/icon_ticket.svg);
}
.header_inner .g-nav ul li.menu10 a span::after {
    background-image: url(/static/yhanzaki/fanclub/common/icon_cart.svg);
}

@media screen and (min-width: 1100px) {
    .header .btn--nav:hover span:nth-of-type(1),
    .header .btn--nav:hover span:nth-of-type(3) {
        top: 9px;
    }
    /* scrolled */
    .header.headerFixed {
        height: 80px;
        box-shadow: 0 0 10px rgba(60, 60, 60, 0.5);
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }
    .header.headerFixed h1 {
        width: 210px;
        height: 70px;
    }
    .header.headerFixed .header_inner {
        width: -webkit-calc(100% - 200px);
        width: calc(100% - 200px);
    }
    .header.headerFixed .header_inner .g-nav ul li a {
        padding: 0;
    }
    .header.headerFixed .header_inner .g-nav ul li a span::after {
        content: none;
    }
}

@media screen and (max-width: 1099px) {
    .header {
        height: 60px;
    }
    .header h1 {
        width: 150px;
        height: 50px;
    }
    .header_inner {
        display: none;
        opacity: 0;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        padding-top: 80px;
        -webkit-transition: all 0.5s ease;
        transition: all 0.5s ease;
        background-color: #e1dbbf;
    }
    .header_inner .login_nav {
        display: block;
        width: 94%;
        margin: 0 auto;
        text-align: center;
        opacity: 0;
        -webkit-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }
    .header_inner .login_nav li a {
        width: 48%;
        padding: 0.5em 0;
    }
    .header_inner .g-nav {
        width: 94%;
        margin: 0 auto;
        opacity: 0;
        -webkit-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }
    .header_inner .g-nav ul {
        display: block;
        margin: 1em 0;
        text-align: center;
    }
    .header_inner .g-nav ul li {
        width: 50%;
        float: left;
        padding: 0;
    }
    .header_inner .g-nav ul li a {
        display: block;
        padding: 1.5em 0;
    }
    .header_inner .g-nav ul li a:hover {
        transform: none;
        animation: none;
    }
    .header_inner .g-nav ul li a span::after {
        top: -50%;
        left: -28px;
    }
    .header .btn--nav {
        display: block;
    }
    /* menu-open */
    .open .header_inner,
    .open .header_inner .login_nav,
    .open .header_inner .g-nav {
        opacity: 1;
        -webkit-transition: none;
        transition: none;
    }
    .open .header .btn--nav span:first-child {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 9px;
    }
    .open .header .btn--nav span:nth-of-type(2) {
        opacity: 0;
    }
    .open .header .btn--nav span:nth-of-type(3) {
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
        top: 9px;
    }
}
/* 3.3 footer
------------------------------ */
footer {
    width: 100%;
    height: 180px;
    text-align: center;
    padding: 40px 0;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #e1dbbf;
    color: #245018;
}
footer a:hover {
    color: #245018;
    opacity: 1;
}
footer a * {
    -webkit-transition: none;
    transition: none;
}
footer .list--support {
    margin: 0 0 20px;
}
footer .list--support li {
    display: inline-block;
    line-height: 1;
    padding: 0 10px;
    border-right: 1px solid #222;
    font-size: 1.3rem;
    font-weight: 600;
}
footer .list--support li:last-child {
    border: none;
}
footer .copyright {
    font-family: "Noto Serif JP", 'Yu Mincho', serif;
    color: #245018;
}
footer .block--page-top {
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 10px;
    background-color: #e1dbbf;
    border-radius: 50%;
    z-index: 100;
}
footer .block--page-top a {
    display: block;
    height: 40px;
    margin: 0 auto;
    background: url(/static/yhanzaki/fanclub/common/arrow_totop_sp.svg) no-repeat center center;
}

@media screen and (max-width: 768px) {
    footer {
        height: auto;
    }
    footer .list--support li {
        width: 50%;
        float: left;
        padding: 0;
        border: none;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
    footer .list--support li a {
        display: block;
        padding: 1em 0;
    }
}

@media screen and (max-width: 420px) {
    footer .list--support li {
        font-size: 1.1rem;
    }
}

/* 4.0 page
============================== */
.page--home .loading {
    display: none;
}
body:not(.page--home) .loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 98;
    background: #fff;
    -webkit-transition: none;
    transition: none;
}
/*    4.1 parts
------------------------------ */
/* typography */
.section-tit {
    margin-bottom: 0.2em;
    line-height: 1.6;
    letter-spacing: .05em;
    color: #245018;
    font-size: 3.6rem;
    font-family: "Noto Serif JP", 'Yu Mincho', serif;
    text-align: center;
    -webkit-transition: none;
    transition: none;
}
.tit--page {
    color: inherit;
    font-size: 3.8rem;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.06em;
    margin: 0 0 1em;
}
.tit--section {
    color: inherit;
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.06em;
    margin: 0 0 1em;
}
.tit--menu {
    color: inherit;
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 0.04em;
    margin: 0 0 1em;
    opacity: 0.5;
}
.txt--lead {
    color: inherit;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.06em;
    margin: 0 0 1em;
}
.txt--basic {
    color: inherit;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.05em;
    margin: 0 0 1em;
}
.txt--sub {
    color: inherit;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: 0.04em;
}
.center {
    text-align: center;
}
/* section */
section {
    padding: 120px 8% 80px;
    position: relative;
}
section > * {
    position: relative;
    z-index: 1;
}
.tit .new {
    display: inline-block;
    position: relative;
    overflow: visible;
    width: 28px;
    height: 15px;
    margin: 0 0 0 6px;
}
.tit .new::after {
    content: '';
    background: url(/static/yhanzaki/fanclub/common/icon_new.svg) no-repeat center;
    background-size: 100% auto;
    width: 28px;
    height: 15px;
    display: inline-block;
    position: absolute;
}
[class^="page--"] .section--detail .inner {
    max-width: 850px;
    margin: 0 auto;
}
[class^="page--"] .section--detail .tit {
    font-size: 2.8rem;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin: 0 0 20px;
}
[class^="page--"] .section--detail .date {
    margin: 0 0 40px;
    opacity: 0.5;
    max-width: 200px;
}
[class^="page--"] .section--detail .txt a {
    text-decoration: underline;
}
[class^="page--"] .section--detail .txt a:hover {
    text-decoration: none;
}
[class^="page--"] .section--detail .ph {
    position: relative;
}
[class^="page--"] .section--detail .ph .dummy {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.detail__btn {
    margin: 70px 0 0 ;
    text-align: center;
    font-family: "Noto Serif JP", 'Yu Mincho', serif;
    font-size: 1.6rem;
    font-weight: 600;
}
.detail__btn a {
    display: inline-block;
    position: relative;
    text-decoration: none;
}
.detail__btn a:hover {
    color: #2ca10d;
}
.detail__btn a::before {
    content: '';
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border: 2px solid;
    border-top: none;
    border-right: none;
    margin: -0.25em 0 0;
    position: absolute;
    right: auto;
    top: 50%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: -1em;
}
.detail__btn a:hover::before {
    border-color: #2ca10d;
}
.block--error {
    color: #f33;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: 0.04em;
    line-height: 1.6;
    background: #fff0ea;
    border: .5px solid #F32;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    padding: 1em;
    margin: 0 0 30px;
}
.block--error li::before {
    content: '※';
}
.block--error li + li {
    margin: 5px 0 0 ;
}
.block--share {
    float: right;
    z-index: 10;
}
.block--share li {
    display: inline-block;
    margin: 0 1em 0 0;
    transition: none;
    -webkit-transition: none;
    font-size: 1.2rem;
    color: #999;
    line-height: 1;
}
.block--share li.facebook,
.block--share li.twitter,
.block--share li.lineIcon {
    width: 20px;
}
.block--share li a {
    display: block;
    font-size: 2.2rem;
    color: #999;
}
.block--share li a * {
    -webkit-transition: none;
    transition: none;
}
.block--share li a:hover {
    color: #2ca10d;
    opacity: 1;
}
.block--share li a:hover svg {
    fill: #2ca10d;
}
.block--share li svg {
    width: 20px;
    height: 20px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    fill: #999;
}
.block--category {
    position: absolute;
    top: 140px;
    right: 0;
    padding: 0 10px;
    background: #222;
    line-height: 60px;
    font-size: 0.9em;
}
.block--category li {
    display: inline-block;
}
.block--category span,
.block--category a {
    position: relative;
    display: inline-block;
    padding: 0 10px;
    color: #fff;
    font-family: "Noto Serif JP", 'Yu Mincho', serif;
}
.block--category span {
    color: #eb6a72;
}
.block--category a::before {
    content: '';
    width: 0;
    height: 100%;
    background: #eb6a72;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.block--category a:hover::before {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .section-tit {
        font-size: 2.6rem;
    }
    section {
        padding: 8% 5%;
    }
    [class^="page--"] .section--detail .inner {
        width: 100%;
    }
    [class^="page--"] .section--detail .tit {
        font-size: 2rem;
        line-height: 1.4;
        margin: 0 0 20px;
    }
    .detail__btn {
        margin: 5% 0 0;
    }
}
/* 4.2 home
------------------------------ */
.page--home #container {
    padding: 0;
}
.page--home .header {
    top: -100px;
}
.page--home.loaded .header {
    top: 0px;
}
.page--home section {
    padding: 110px 0 55px;
}
.page--home .inner {
    width: 94%;
    padding-left: 60px;
}
.page--home .section-tit {
    position: absolute;
    top: 20px;
    left: 50px;
    -webkit-transform-origin: left top;
    transform-origin: left top;
    transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -webkit-transition: none;
    transition: none;
}
/* mainvisual */
.page--home #mainvisual {
    padding-top: 130px;
    background-color: #e1dbbf;
}
.page--home #mainvisual img {
    width: 100%;
}
.page--home #mainvisual .slick-dots {
    bottom: 20px;
}
/* banner */
.page--home #banner {
    padding: 25px 0 50px;
    background-color: #f1f0e9;
    -webkit-transition: none;
    transition: none;
}
.page--home .slick-slide {
    padding: 0 5px;
}
.page--home .slick-slide a {
    display: block;
    position: relative;
    margin: 10px 0;
}
.page--home .slick-slide img {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
/* loginNav */
.page--home .loginNav {
    padding: 10px 0;
    background-color: #e1dbbf;
}
.page--home .loginNav ul li {
    width: 50%;
    float: left;
}
.page--home .loginNav ul li a {
    display: block;
    width: 90%;
    margin: 0 auto;
    padding: 0.3em 0;
    background-color: #e9d979;
    color: #61550d;
    font-family: "Noto Serif JP", 'Yu Mincho', serif;
    font-weight: 600;
    text-align: center;
    border: solid 2px #ffffff;
    border-radius: 5px;
}
/* fc news */
.page--home #fcNews .chara02 {
    content: "";
    position: absolute;
    top: -70px;
    right: 1%;
    width: 80px;
    height: 80px;
    animation: horizontal 3s ease-in-out infinite alternate;
}
.page--home #fcNews .chara02 span {
    display: block;
    width: 80px;
    height: 80px;
    background: url(/static/yhanzaki/fanclub/top/chara02_top.png) no-repeat center center;
    background-size: contain;
    animation: vertical 2s ease-in-out infinite alternate;
}
@keyframes horizontal {
    0% { transform:translateX(-15px); }
  100% { transform:translateX(  0px); }
}
@keyframes vertical {
    0% { transform:translateY(-25px); }
  100% { transform:translateY(  0px); }
}
/* contents */
.page--home #contents {
    position: relative;
    padding: 35px 0;
    background-color: #e1dbbf;
}
.page--home #contents::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    top: -113px;
    left: 3%;
    background: url(/static/yhanzaki/fanclub/top/chara01_top.gif) no-repeat center bottom;
    background-size: 120px 120px; 
}
.page--home #contents .contentsList {
    padding: 8% 4% 6% 4%;
    background: url(/static/yhanzaki/fanclub/common/bg.png) repeat center top;
    border: solid 5px #fff;
    border-radius: 20px;
}
.page--home #contents .contentsList * {
    -webkit-transition: all 0.5 ease;
    transition: all 0.5 ease;
}
.page--home #contents .contentsList li {
    width: 33%;
    float: left;
    overflow: hidden;
}
.page--home #contents .contentsList li > a,
.page--home #contents .contentsList li > .comingsoon {
    display: block;
    width: 96%;
    margin: 0 auto 4%;
    background-color: #fff;
    border: solid 2px #fff;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}
.page--home #contents .contentsList li .thumb img {
    width: 100%;
}
.page--home #contents .contentsList li .contents_title {
    position: relative;
    padding: 40px 10px 5px;
    font-family: "Noto Serif JP", 'Yu Mincho', serif;
    text-align: center;
}
.page--home #contents .contentsList li .contents_title::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 50%;
    width: 100px;
    height: 100px;
    margin-left: -50px;
    z-index: 10;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-position: center top 10px;
    background-size: 72%;
    border-radius: 50%;
}
.page--home #contents .contentsList li > a:hover .contents_title::before {
    top: -50px;
}
.page--home #contents .contentsList li.content-movie .contents_title::before {
    background-image: url(/static/yhanzaki/fanclub/common/icon_movie.svg);
}
.page--home #contents .contentsList li.content-report .contents_title::before {
    background-image: url(/static/yhanzaki/fanclub/common/icon_report.svg);
}
.page--home #contents .contentsList li.content-photo .contents_title::before {
    background-image: url(/static/yhanzaki/fanclub/common/icon_photo.svg);
}
.page--home #contents .contentsList li.content-message .contents_title::before {
    background-image: url(/static/yhanzaki/fanclub/common/icon_eye.svg);
}
.page--home #contents .contentsList li.content-qa .contents_title::before {
    background-image: url(/static/yhanzaki/fanclub/common/icon_qa.svg);
}
.page--home #contents .contentsList li.content-blog .contents_title::before {
    background-image: url(/static/yhanzaki/fanclub/common/icon_blog.svg);
}
.page--home #contents .contentsList li.content-present .contents_title::before {
    background-image: url(/static/yhanzaki/fanclub/common/icon_present.svg);
}
.page--home #contents .contentsList li.content-ticket .contents_title::before {
    background-image: url(/static/yhanzaki/fanclub/common/icon_ticket.svg);
}
.page--home #contents .contentsList li.content-store .contents_title::before {
    background-image: url(/static/yhanzaki/fanclub/common/icon_cart.svg);
}
.page--home #contents .contentsList li.content-staffblog .contents_title::before {
    background-image: url(/static/yhanzaki/fanclub/common/icon_report.svg);
}
.page--home #contents .contentsList li .contents_title h3 {
    position: relative;
    z-index: 11;
    font-size: 2rem;
    font-weight: bold;
}
.page--home #contents .contentsList li a:hover h3 {
    color: #2ca10d;
}
.page--home #contents .contentsList li .contents_title p {
    font-size: 1.3rem;
    text-align: left;
}
.page--home #contents .contentsList li.content-blank {
    background: url(/static/yhanzaki/fanclub/top/chara01_full.png) no-repeat center center;
    background-size: contain;
}
/* subvisual */
.page--home .subvisual {
    position: relative;
    width: 100%;
    height: 220px;
    background: url(/static/yhanzaki/fanclub/top/bg_bottom.jpg) no-repeat center top;
    background-size: cover;
}
.page--home .subvisual .chara01_side {
    content: "";
    position: absolute;
    right: 0;
    bottom: 10px;
    width: 80px;
    height: 142px;
    overflow: hidden;
}
.page--home .subvisual .chara01_side span {
    display: block;
    width: 80px;
    height: 142px;
    background: url(/static/yhanzaki/fanclub/top/chara01_side.png) no-repeat right center;
    background-size: contain;
    animation: horizontal2 10s ease infinite;
}
@keyframes horizontal2 {
    0% { transform:translateX( 0px); }
   89% { transform:translateX( 0px); }
   95% { transform:translateX( 30px); }
  100% { transform:translateX( 0px); }
}
/* footer */
.page--home footer {
    position: relative;
    height: auto;
}
.page--home footer .block--page-top {
    position: absolute;
    width: 160px;
    height: 90px;
    top: -90px;
    left: 50%;
    margin-left: -80px;
    background: url(/static/yhanzaki/fanclub/common/bg_totop.png) no-repeat center bottom;
    background-size: contain;
    border-radius: 0;
}
.page--home footer .block--page-top a {
    display: block;
    height: 90px;
    margin: 0 auto;
    background: url(/static/yhanzaki/fanclub/common/arrow_totop.svg) no-repeat center bottom 10px;
}

@media screen and (max-width: 1099px) {
    .page--home #mainvisual {
        padding-top: 60px;
    }
}

@media screen and (max-width: 768px) {
    .page--home section {
        padding: 8% 0 5%;
    }
    .page--home .inner {
        padding-left: 0;
    }
    .page--home .section-tit {
        position: static;
        transform: none;
        -ms-transform: none;
        -moz-transform: none;
        -webkit-transform: none;
        -o-transform: none;
    }
    .page--home #banner {
        padding: 3% 0 5%;
        -webkit-transition: none;
        transition: none;
    }
    .page--home #fcNews .chara02 {
        top: -25px;
        width: 60px;
        height: 60px;
    }
    .page--home #fcNews .chara02 span {
        width: 60px;
        height: 60px;
    }
    .page--home #contents::before {
        width: 80px;
        height: 80px;
        top: -77px;
        background-size: 80px 80px; 
    }
    .page--home #contents .contentsList {
        margin-top: 3%;
        border: solid 3px #fff;
        border-radius: 10px;
    }
    .page--home #contents .contentsList li {
        width: 50%;
    }
    .page--home #contents .contentsList li.content-blank {
        display: none;
    }
    .page--home #contents .contentsList li .contents_title {
        padding: 30px 10px 5px;
    }
    .page--home #contents .contentsList li .contents_title::before {
        top: -25px;
        left: 50%;
        width: 60px;
        height: 60px;
        margin-left: -30px;
    }
    .page--home #contents .contentsList li > a:hover .contents_title::before {
        top: -25px;
    }
    .page--home #contents .contentsList li .contents_title h3 {
        font-size: 1.5rem;
    }
    .page--home .subvisual {
        height: 130px;
    }
    .page--home .subvisual .chara01_side {
        width: 56px;
        height: 100px;
    }
    .page--home .subvisual .chara01_side span {
        width: 56px;
        height: 100px;
    }
    .page--home footer .block--page-top {
        width: 80px;
        height: 45px;
        top: -45px;
        left: 50%;
        margin-left: -40px;
    }
    .page--home footer .block--page-top a {
        height: 45px;
        background: url(/static/yhanzaki/fanclub/common/arrow_totop_sp.svg) no-repeat center bottom;
    }    
}

/*    4.3 information
------------------------------ */
/*    4.4 photo
------------------------------ */
.page--photo .list--contents {
    margin: 3% 0 3% 2%;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.page--photo .list--contents li {
    width: calc(94% / 3);
    margin: 0 2% 2% 0;
    display: inline-block;
    letter-spacing: .05em;
}
.page--photo .list--contents li:nth-of-type(3n) {
    margin-right: 0;
}
.page--photo .list--contents li a {
    display: block;
    text-decoration: none;
}
.page--photo .list--contents li img {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50%;
}
.page--photo .list--contents li .thumb {
	position: relative;
	margin: 0 auto 10px;
	line-height: 0;
    border-radius: 10px;
    overflow: hidden;
}
.page--photo .list--contents li .thumb::after {
    content: "";
    opacity: 0;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 161, 12, 0.6);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.page--photo .list--contents li a:hover .thumb::after {
    opacity: 1;
}
.page--photo .list--contents li .thumb img {
	width: 100%;
}
.page--photo .list--contents li .tit {
    margin-bottom: 2%;
	line-height: 1.4;
    font-weight: bold;
}
#swipebox-slider * {
    -webkit-transition: none;
    transition: none;
}
#swipebox-slider img {
    vertical-align: middle!important;
}

@media screen and (max-width: 768px) {
    .page--photo .list--contents li .ph {
        border-radius: 5px;
    }
}
/*    4.5 blog
------------------------------ */
.page--blog .list--contents {
    margin: 3% 0 3% 2%;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.page--blog .list--contents li {
    width: calc(94% / 3);
    margin: 0 2% 2% 0;
    display: inline-block;
    letter-spacing: .05em;
}
.page--blog .list--contents li:nth-of-type(3n) {
    margin-right: 0;
}
.page--blog .list--contents li a {
    display: block;
    text-decoration: none;
}
.page--blog .list--contents li img {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50%;
    background-image: url(/static/yhanzaki/fanclub/common/ph_no_images.jpg)
}
.page--blog .list--contents li .thumb {
	position: relative;
	margin: 0 auto 10px;
	line-height: 0;
    border-radius: 10px;
    overflow: hidden;
}
.page--blog .list--contents li .thumb::after {
    content: "";
    opacity: 0;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 161, 12, 0.6);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.page--blog .list--contents li a:hover .thumb::after {
    opacity: 1;
}
.page--blog .list--contents li .thumb img {
	width: 100%;
}
.page--blog .list--contents li .tit {
    margin-bottom: 2%;
	line-height: 1.4;
    font-weight: bold;
}
.page--blog .list--contents li .date {
    color: #999999;
    font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
    .page--blog .list--contents li {
        width: calc(94% / 2);
        margin: 0 2% 2% 0;
    }
    .page--blog .list--contents li:nth-of-type(2n) {
        margin-right: 0;
    }
    .page--blog .list--contents li:nth-of-type(3n) {
        margin-right: 2%;
    }
    .page--blog .list--contents li .thumb {
        border-radius: 5px;
    }
}
/*    4.6 movie
------------------------------ */
/* LIST */
.page--movie .list--contents {
    margin: 3% 0 3% 2%;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.page--movie .list--contents li {
    width: calc(94% / 3);
    margin: 0 2% 2% 0;
    display: inline-block;
    letter-spacing: .05em;
}
.page--movie .list--contents a {
    display: block;
}
.page--movie .list--contents a * {
    -webkit-transition: none;
    transition: none;
}
.page--movie .list--contents .thumb {
    position: relative;
    margin: 0 auto 10px;
    line-height: 0;
    border-radius: 10px;
    overflow: hidden;
}
.page--movie .list--contents .thumb::after {
    content: "";
    opacity: 0;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 161, 12, 0.6);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.page--movie .list--contents li a:hover .thumb::after {
    opacity: 1;
}
.page--movie .list--contents .thumb img {
    width: 100%;
}
.page--movie .list--contents li .tit {
    margin-bottom: 2%;
    line-height: 1.4;
    font-weight: bold;
}
.page--movie .list--contents .date {
    color: #999999;
    font-size: 1.2rem;
}
.cursor {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 99;
    width: 60px;
    height: 60px;
    border-radius: 40px;
    line-height: 60px;
    font-size: 1.2rem;
    text-align: center;
    color: #fff;
    background: #222;
    -webkit-transition: none;
    transition: none;
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition: 0.1s all 0s ease;
    transition: 0.1s all 0s ease;
    pointer-events: none;
}
.cursor.onmouse {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

@media screen and (max-width: 768px) {
    .page--movie .list--contents li {
        width: calc(94% / 2);
        margin: 0 2% 2% 0;
    }
    .page--movie .list--contents li:nth-of-type(2n) {
        margin-right: 0;
    }
    .page--movie .list--contents li:nth-of-type(3n) {
        margin-right: 2%;
    }
    .page--movie .list--contents li .thumb {
        border-radius: 5px;
    }
}

/* DETAIl */
.page--play .txt--sub a {
    text-decoration: underline;
}
.page--play .txt--sub a:hover {
    text-decoration: none;
}
.block--player {
	position: relative;
	width: 70%;
	margin: 0 auto 3%;
	padding-top: 39.37%;
}
.block--player > div {
	position:absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}
.block--player iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}
.eq-header , .video_title , .video_title_text_cover , .video_title_text {
	display: none !important;
}
.block--player .txt {
    margin-bottom: 1em;
}
.flash__player--accordion { margin: 2em 0; border: 1px solid rgba(150,150,150,0.5); }
.flash__player--accordion dt { text-align: center; line-height: 3em; background-color: #000000; color: #ffffff; }
.flash__player--accordion dd { display: none; padding: 0 10px; }
.flash__player--accordion .list--player li { border-top: 1px solid rgba(150,150,150,0.5); }
.flash__player--accordion .list--player li:first-of-type { border-top: none; }
.flash__player--accordion .list--player li a { display: block; padding: 1em; }

.block--player--ios,
.block--player--android {
    text-align: center;
}

@media screen and (max-width: 960px) {
	.block--player video {
		width: 100%;
	}
}

@media screen and (max-width: 768px) {
    .block--player {
        width: 100%;
        padding-top: 56.25%;
    }
}

/* newMovie LIST */
.page--movie.new-movie.movie-category-list .section--list {
    width: inherit;
    max-width: inherit;
}
.page--movie.new-movie.movie-category-list .section--list .section-tit {
    margin-bottom: 0.2em;
}
.page--movie.new-movie.movie-category-list .list--contents {
    margin: 3% 0 3% 2%;
    gap: inherit;
}
.page--movie.new-movie.movie-category-list .list--contents li {
    width: calc(94% / 3);
    margin: 0 2% 2% 0;
}
.page--movie.new-movie.movie-category-list .list--contents li .thumb {
    margin: 0 auto 10px;
}
.page--movie.new-movie.movie-category-list .list--contents li .list__txt .date {
    font-size: 1.2rem;
    margin-bottom: inherit;
    opacity: 1;
}
.page--movie.new-movie.movie-category-list .detail__btn {
    display: none;
}
.page--movie.new-movie.movie-category-list .block--category-list + .block--pager {
    margin: 50px 0 0;
}

@media screen and (max-width: 960px) {
    .page--movie.new-movie.movie-category-list .section--list .list--contents {
        gap: inherit;
    }
    .page--movie.new-movie.movie-category-list .section--list .list--contents li {
        width: calc(94% / 3);
    }
    .page--movie.new-movie.movie-category-list .section--list {
        padding: 120px 8% 80px;
    }
}

@media screen and (max-width: 768px) {
    .page--movie.new-movie.movie-category-list .section--list {
        padding: 8% 5%;
    }
    .page--movie.new-movie.movie-category-list .section--list .list--contents li {
        width: calc(94% / 2);
        margin: 0 2% 2% 0;
    }
}

/* newMovie DETAIL */
.page--movie.new-movie.page-movie-detail .section--detail .area--more-info {
    display: none;
}
.page--movie.new-movie.page-movie-detail .section--detail .block--tit {
    width: inherit;
    margin: inherit;
}
.page--movie.new-movie.page-movie-detail .section--detail .block--tit .tit {
    font-size: 2.8rem;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin: 0 0 20px;
}
.page--movie.new-movie.page-movie-detail .section--detail .block--tit .date {
    margin: 0 0 40px;
    opacity: 0.5;
    max-width: 200px;
    font-size: 1.4rem;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--movie {
    width: 70%;
    margin: 0 auto 3%;
}
.page--movie.new-movie.page-movie-detail .section--detail .block--player {
    margin: 0 auto;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--movie .vjs-big-play-centered .vjs-big-play-button {
    margin-top: -1.3em;
}
.page--movie.new-movie.page-movie-detail .detail__btn {
    margin: 70px 0 0;  
}

@media screen and (max-width: 960px) {

    .page--movie.new-movie.page-movie-detail .section--detail {
        padding: 120px 8% 80px;
    }
    .page--movie.new-movie.page-movie-detail .section--detail .block--tit {
        padding: inherit;
    }
    .page--movie.new-movie.page-movie-detail .area--movie {
        position: relative;
        width: 100%;
        padding-top: 39.37%;
    }
    .page--movie.new-movie.page-movie-detail .area--movie .block--player {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
        margin: 0 auto;
    }
    .page--movie.new-movie.page-movie-detail .section--detail .area--movie .vjs-big-play-centered .vjs-big-play-button {
        margin-top: -1.05em;
    }
    .page--movie.new-movie.page-movie-detail .area--movie .video-js.vjs-paused .vjs-play-control,
    .page--movie.new-movie.page-movie-detail .area--movie .video-js.vjs-playing .vjs-play-control,
    .page--movie.new-movie.page-movie-detail .area--movie .video-js.vjs-paused .vjs-control-bar,
    .page--movie.new-movie.page-movie-detail .area--movie .video-js.vjs-playing .vjs-control-bar {
        display: none;
    }
    .page--movie.new-movie.page-movie-detail .detail__btn {
        padding-top: 0;
        padding-bottom: 0;
    }

} 

@media screen and (max-width: 768px) {

    .page--movie.new-movie.page-movie-detail .section--detail {
        padding: 8% 5%;
    }
    .page--movie.new-movie.page-movie-detail .section--detail .block--tit .tit {
        font-size: 2rem;
        line-height: 1.4;
        margin: 0 0 20px;
    }
    .page--movie.new-movie.page-movie-detail .section--detail .area--movie{
        position: relative;
        width: 100%;
        padding-top: 56.25%;
    }
    .page--movie.new-movie.page-movie-detail .section--detail .txt--sub {
        text-indent: -1em;
        padding: 5px 0 0 1em;
    }
    .page--movie.new-movie.page-movie-detail .detail__btn {
        margin: 40px 0 0;
    }

}

/*    4.7 qa
------------------------------ */
.page--qa .qa_box {
    text-align: center;
}
.page--qa .qa_box .qa_description {
    margin: 40px;
    font-weight: bold;
}
.page--qa .form_box .txt {
    margin-bottom: 5%;
}
.page--qa .qa_area {
    padding: 40px 0 0;
}
.page--qa .contents_list li:first-of-type a {
    border-top: 1px solid #ede8e4;
}
.page--qa .contents_list li a {
    display: block;
    border-bottom: 1px solid #ede8e4;
    padding: 20px 10px 15px;
}
.page--qa .contents_list li a:hover {
    background-color: #f1f0e9;
}
.page--qa .contents_list li .date,
.page--qa .question .qa_area .date {
    float: right;
    margin: 0;
    line-height: 1;
    color: #999999;
    font-size: 1.2rem;
}
.page--qa .contents_list li .name,
.page--qa .question .qa_area .name {
    float: left;
    line-height: 1;
    color: #2da10c;
    font-size: 1.2rem;
}
.page--qa .contents_list li .list__txt,
.page--qa .question .qa_area .txt,
.page--qa .answer .qa_area .txt {
    margin: 22px 0 0 0;
}
.page--qa .question .qa_area {
    padding: 20px 10px 15px;
    margin: 40px 0;
    border-top: 1px solid #ede8e4;
    border-bottom: 1px solid #ede8e4;
}
.page--qa .answer .qa_area {
    padding: 0 0 40px;
}
/*    4.8 questionnaire
------------------------------ */
.page--questionnaire .form_box .txt {
    margin-bottom: 5%;
}
/*    4.9 faq
------------------------------ */
.tit--category {
    color: inherit;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.06em;
    margin: 0 0 20px;
}
.section--list .list--faq,
.section--detail .list--faq {
    margin: 0 0 60px;
}
.section--list .list--faq li,
.section--detail .list--faq li {
    border-top: 1px solid #ede8e4;
}
.section--list .list--faq li:last-child,
.section--detail .list--faq li:last-child {
    border-bottom: 1px solid #ede8e4;
}
.section--list .list--faq a,
.section--detail .list--faq a {
    position: relative;
    display: block;
    padding: 25px 5% 27px 0;
}
.section--list .list--faq a *,
.section--detail .list--faq a * {
    -webkit-transition: none;
    transition: none;
}
.section--list .list--faq a:hover,
.section--detail .list--faq a:hover {
    color: #2ca10d;
    padding-left: 1%;
}
.section--list .list--faq .tit,
.section--detail .list--faq .tit {
    padding-left: 20px;
    font-weight: bold;
}
.section--list .list--faq .txt,
.section--detail .list--faq .txt {
    margin: 0;
    padding-left: 20px;
    line-height: 1.4;
}
.section--list .list--faq .icon--q,
.section--detail .list--faq .icon--q {
    margin-right: 5px;
    font-weight: 700;
    opacity: 0.5;
    float: left;
}
.page--faq .loading {
    display: none;
}
.page--faq .searchBox {
    margin: 0 0 50px;
    text-align: center;
}
.page--faq .searchBox input {
    -webkit-appearance: none;
    outline: none;
    font-size: 1.5rem;
    line-height: 1.4em;
    box-sizing: border-box;
}
.page--faq .searchBox input[type="text"] {
    width: 400px;
    height: 40px;
    margin: 0 5px 0 0;
    padding: 0 10px;
    background: #fff;
    border: solid 1px #aaa;
    border-radius: 3px;
}
.page--faq .searchBox input[type="text"]:placeholder-shown {
    color: #ccc;
}
.page--faq .searchBox input[type="text"]::-webkit-input-placeholder {
    color: #ccc;
}
.page--faq .searchBox input[type="submit"] {
    background: #2ca10c;
    padding: 8px 25px;
    color: #fff;
    font-weight: bold;
    -webkit-transition: all .3s;
    transition: all .3s;
    cursor: pointer;
    border: none;
    border-radius: 0;
}
.page--faq .searchBox input[type="submit"]:hover {
    background: #e9d979;
    color: #2ca10c;
}
.section--detail .block--faq-detail {
    margin: 0 0 80px;
    padding: 25px;
    border: 1px solid #ede8e4;
    border-radius: 10px;
}
.section--detail .block--faq-detail dt {
    margin: 0 0 20px;
    padding: 0 0 15px;
    border-bottom: 1px solid #ede8e4;
}
.section--detail .block--faq-detail dt .txt {
    margin: 0;
    padding-left: 40px;
    color: inherit;
    font-size: 1.8rem;
    font-weight: normal;
    line-height: 1.6;
    letter-spacing: 0.06em;
}
.section--detail .block--faq-detail dt .category {
    display: inline-block;
    margin: 0 0 20px;
    padding: 1px 8px 0;
    font-size: 1.2rem;
    background: #eee;
    color: #999;
    border-radius: 20px;
}
.section--detail .block--faq-detail dd .txt {
    margin: 0;
    padding-left: 40px;
    font-size: 1.5rem;
}
.section--detail .block--faq-detail dd .txt a {
    color: #2ca10d;
    text-decoration: underline;
}
.section--detail .block--faq-detail span[class^="icon--"] {
    float: left;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
}
.section--detail .block--faq-detail .icon--q {
    background: #2ca10c;
    color: #fff;
}
.section--detail .block--faq-detail .icon--a {
    background: #e9d979;
    color: #2ca10d;
}
.page--faq .section--detail .block--contact {
    margin: 0 0 40px;
}
.page--faq .section--detail .block--contact .txt {
    margin: 0;
}
.page--faq .section--detail .block--contact a {
    text-decoration: underline;
}
.page--faq .section--detail .block--contact a:hover {
    text-decoration: none;
}
.section--detail .block--faq-detail dd .txt hr {
    margin: 1em 0;
    border: solid 1px #ede8e3;
    background-color: #ede8e3;
}
.ulizahtml5{
    width: 80%!important;
    aspect-ratio: 16 / 9;
    height: 80%!important;
    margin: 0 auto 30px;
}

@media screen and (max-width: 768px) {
    .page--faq .searchBox {
        margin: 0 0 30px;
    }
    .page--faq .searchBox input {
        font-size: 15px;
        line-height: 38px;
        box-sizing: border-box;
        width: 20%;
        border-radius: 0;
    }
    .page--faq .searchBox input[type="submit"] {
        padding: 0;
    }
    .page--faq .searchBox input[type="text"] {
        width: 78%;
        height: 40px;
        margin: 0;
        padding: 0 10px;
        border-radius: 0;
    }
    .section--detail .block--faq-detail {
        padding: 2em 1em;
    }
    .section--detail .block--faq-detail dd .txt {
        font-size: 1.3rem;
    }
}
/*    4.10 wallpaper
------------------------------ */
.page--download .list--contents {
    margin: 3% 0 3% 2%;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.page--download .list--contents li {
    position: relative;
    width: calc(94% / 3);
    margin: 0 2% 2% 0;
    display: inline-block;
    letter-spacing: .05em;
}
.page--download .list--contents li:nth-of-type(3n) {
    margin-right: 0;
}
.page--download .list--contents li a {
    display: block;
    text-decoration: none;
}
.page--download .list--contents li img {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50%;
}
.page--download .list--contents li .thumb {
	position: relative;
	margin: 0 auto 10px;
	line-height: 0;
    border-radius: 10px;
    overflow: hidden;
}
.page--download .list--contents li .thumb::after {
    content: "";
    opacity: 0;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 161, 12, 0.6);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.page--download .list--contents li a:hover .thumb::after {
    opacity: 1;
}
.page--download .list--contents li .thumb img {
	width: 100%;
}
.page--download .list--contents li .tit {
    margin-bottom: 2%;
	line-height: 1.4;
    font-weight: bold;
}
#swipebox-slider * {
    -webkit-transition: none;
    transition: none;
}
#swipebox-slider img {
    vertical-align: middle!important;
}
.page--download .btn--sub {
    min-width: inherit;
    margin: 0 2px;
    font-size: 1.2rem;
    font-weight: bold;
}

@media screen and (max-width: 960px) {
    .page--download .list--contents li .dummy {
        position: absolute;
        z-index: 2;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
    }
}

@media screen and (max-width: 768px) {
    .page--download .list--contents {
        margin: 3% 0 3% 1%
    }
    .page--download .list--contents li {
        width: calc(98% / 2);
    }
    .page--download .list--contents li:nth-of-type(2n) {
        margin-right: 0;
    }
    .page--download .list--contents li .ph {
        border-radius: 5px;
    }
}

/*    4.11 support
------------------------------ */
.support-tit {
    position: relative;
    font-family: "Noto Serif JP", 'Yu Mincho', serif;
    font-size: 3.0rem;
    letter-spacing: 0.1em;
    line-height: 1.6;
    color: #245018;
    margin: 0 0 60px;
    padding: 0 8%;
    text-align: center;
}
.support-tit::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -20px;
    width: 100px;
    height: 5px;
    margin-left: -50px;
    background-color: #e1dbbf;   
}
.page--support .support-list dt {
    font-weight: bold;
    margin: 0 0 3px;
}
.page--support .support-list dd {
    margin: 0 0 20px;
}
.page--support .support-list dd:last-of-type {
    margin-bottom: 0;
}
.page--support .supportList dd ul {
    padding: 1em 0;
}
.page--support .supportList dd li {
    margin-bottom: 0.5em;
}
.page--support .txt {
    padding-bottom: 3em;
}

@media screen and (max-width: 768px) {
    .support-tit {
        margin-bottom: 8%;
        font-size: 2.6rem;
    }
    .support-tit::after {
        bottom: -10px;
    }
}

@media screen and (max-width: 420px) {
    .support-tit {
        margin-bottom: 10%;
        font-size: 2.0rem;
    }
}
/*    4.12 feature
------------------------------ */
.page--feature .center {
    text-align: center;
}
.page--feature .red {
    color: #c00;
}
.page--feature .bold {
    font-weight: bold;
}
.page--feature table {
    width: 96%;
    margin: 0 auto 30px;
    border: 1px solid #24820b;
    border-collapse: collapse;
}
.page--feature table * {
    -webkit-transition: none;
    transition: none;
}
.page--feature table th {
	width: 30%;
	padding: 15px 20px;
	background: #2ca10c;
	color: #fff;
	font-size: 1.6rem;
	border: 1px solid #24820b;
	box-sizing: border-box;
	text-align: center;
	vertical-align: middle;
}
.page--feature table td {
	padding: 15px 20px;
	background: #ffffff;
	border: 1px solid #24820b;
	vertical-align: middle;
}

@media screen and (max-width: 768px) {
    .page--feature table tr {
        display: block;
    }
    .page--feature table th,
    .page--feature table td {
        width: 100%;
        display: block;
        padding: 0.5em;
        border: none;
    }
}

/* entryinfo */
#entryinfo {
    padding: 60px 8% 80px;
}
#entryinfo .topvisual {
    width: 100%;
    height: 0;
    padding-top: 60%;
    background: url(/static/yhanzaki/fanclub/feature/entry/entryinfo_top.png) no-repeat center top;
    background-size: contain;
    text-indent: -9999px;
}
#entryinfo .box {
    margin-bottom: 5%;
    padding: 4% 2%;
    background: #e1dbbf url(/static/yhanzaki/fanclub/common/bg_lb.png) repeat center top;
    background-size: 216px 167px;
    border: solid 5px #2ca10c;
    border-radius: 20px;
}
#entryinfo .box h3 {
    font-family: "Noto Serif JP", 'Yu Mincho', serif;
    font-size: 3.0rem;
    letter-spacing: 0.1em;
    line-height: 1.6;
    color: #245018;
    margin: 0 0 30px;
    padding: 0 8%;
    text-align: center;
}
#entryinfo .box h4 {
    margin-bottom: 1em;
}
#entryinfo .box a.txtLink {
    color: #2ca10d;
}
#entryinfo #venu.box ul.col3 {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding-left: 2%;
}
#entryinfo #venu.box ul.col3 li {
    width: calc(94% / 3);
    margin: 0 2% 2% 0;
    padding: 2%;
    display: inline-block;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}
#entryinfo #venu.box ul.col3 li:nth-of-type(3n) {
    margin-right: 0;
}
#entryinfo #venu.box ul.col3 li .tit {
    margin-bottom: 0.5em;
    padding-bottom: 0.5em;
    border-bottom: solid 2px #2ca10c;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
}
#entryinfo #venu.box ul.col3 li .txt {
    color: #2ca10c;
    font-weight: bold;
}
#entryinfo #venu.box ul.col3 li .subtxt {
    margin-top: 10px;
    font-size: 1.1rem;
}
#entryinfo #step.box ul.col3 {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding-left: 2%;
}
#entryinfo #step.box ul.col3 li {
    position: relative;
    width: calc(88% / 3);
    margin: 0 5% 5% 0;
    padding: 4% 2%;
    display: table;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}
#entryinfo #step.box ul.col3 li:nth-of-type(3n) {
    margin-right: 0;
}
#entryinfo #step.box ul.col3 li::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    right: -30px;
    top: 50%;
    margin-top: -10px;
    border-style: solid;
    border-width: 14px 0 14px 20px;
    border-color: transparent transparent transparent #2ca10d;
}
#entryinfo #step.box ul.col3 li:nth-of-type(3n)::after {
    content: none;
}
#entryinfo #step.box ul.col3 li .number {
    position: absolute;
    width: 40px;
    height: 40px;
    top: -20px;
    left: -12px;
    line-height: 40px;
    background-color: #e9d979;
    color: #2ca10d;
    font-weight: bold;
    font-size: 2.5rem;
    border-radius: 50%;
    text-align: center;
}
#entryinfo #step.box ul.col3 li p {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    font-weight: bold;
    font-size: 1.6rem;
    line-height: 1.5;
}
#entryinfo .newEntry {
    margin: 3% 0;
    text-align: center;
}

@media screen and (max-width: 768px) {
    #entryinfo {
        padding: 4% 3%;
    }
    #entryinfo .box {
        padding: 4% 2%;
        border: solid 3px #2ca10c;
        border-radius: 10px;
    }
    #entryinfo .box h3 {
        margin: 0 0 3%;
        font-size: 2.5rem;
    }
    #entryinfo #venu.box ul.col3 li {
        width: 98%;
        padding: 3% 5% 5%;
    }
    #entryinfo #venu.box ul.col3 li:nth-of-type(3n) {
        margin-right: 0;
    }
    #entryinfo #step.box ul.col3 li {
        width: 100%;
        margin: 0 0 30px 0;
    }
    #entryinfo #step.box ul.col3 li:nth-of-type(3n) {
        margin-right: 0;
    }
    #entryinfo #step.box ul.col3 li::after,
    #entryinfo #step.box ul.col3 li:nth-of-type(3n)::after {
        content: "";
        right: 50%;
        top: auto;
        bottom: -20px;
        margin-top: 0;
        border-width: 10px 7px 0 7px;
        border-color: #2da10c transparent transparent transparent;
    }
    #entryinfo #step.box ul.col3 li:last-of-type::after {
        content: none;
    }
}




/*    4.13 bbs
------------------------------ */

.page--bbs .thread_block {
    margin-bottom: 60px;
}

.page--bbs .comment_block {
    margin-bottom: 60px;
}

.page--bbs .contents_list {
    margin-bottom: 30px;
}

.page--bbs .contents_list li:first-of-type {
    border-top: 1px solid #ede8e4;
}
.page--bbs .contents_list li {
    display: block;
    border-bottom: 1px solid #ede8e4;
    padding: 25px 0px;
}

.page--bbs .contents_list li .date {
    float: right;
    margin: 0;
    line-height: 1;
    color: #999999;
    font-size: 1.2rem;
}
.page--bbs .contents_list li .name {
    float: left;
    line-height: 1;
    color: #2da10c;
    font-size: 1.4rem;
}
.page--bbs .contents_list li .list__txt {
    margin: 35px 0 0 0;
}

.pulldownBox {
    border: none;
    position: relative;
    margin: 0;
    width: 100px;
}

.pulldownBox select {
    -webkit-appearance: none;
    -moz-appearance: button;
    width: 100%;
    background: #e1dbbf none repeat scroll 0 0;
    color: #000;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    border-radius: 0;
    box-sizing: border-box;
    line-height: 24px;
    padding: 5px 12px;
    position: relative;
    border: none;
    border-radius: 5px;
}

.pulldownBox::before {
    content: "\f107";
    font-family: 'FontAwesome';
    position: absolute;
    right: 10px;
    top: 50%;
    z-index: 10;
    color: #000;
    line-height: 0;
    font-size: 20px;
}

.comment_tit_box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.comment_tit {
    letter-spacing: .05em;
    color: #245018;
    font-size: 2.2rem;
    font-family: "Noto Serif JP", 'Yu Mincho', serif;
}

.report a {
    display: block;
    background: #e1dbbf;
    border-radius: 5px;
    padding: 0;
    font-size: 12px;
    width: 45px;
    text-align: center;
    margin: 10px 0 0 auto;
    color: #525252;
}

.page--bbs .commentPost {
    background: #f6f2e2;
    padding: 45px;
}

.page--bbs .form.form--post {
    margin-bottom: 2em;
}

.page--bbs .form--post dt {
    color: #2ca10d;
    margin: 2em 0 0.6em;
}

.page--bbs .form--post dt:first-child {
    margin-top: 0;
}

.page--bbs textarea {
    font-size: 13px;
    background: #fff;
}

.page--bbs .btn--sub {
    border-radius: 5px;
}

.page--bbs.page--bbs_detail .titArea .txt {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 2em;
}

.page--bbs .sml {
    font-size: 12px;
}

.page--bbs .form--confirm dd {
    font-size: 1.6rem;
}

.page--bbs .txt.error {
    color: #cd0000;
}


@media screen and (max-width: 768px) {
.page--bbs .section-tit {
    margin-bottom: 30px;
}

.page--bbs .section--detail .tit {
    margin-bottom: 4px;
}

[class^="page--"].page--bbs  .section--detail .date {
    margin-bottom: 20px;
}

.page--bbs .thread_block {
    margin-bottom: 40px;
}

.comment_tit_box {
    margin-bottom: 15px;
}

.comment_tit {
    font-size: 17px;
}

.pulldownBox select {
    font-size: 13px;
}

.page--bbs .contents_list li {
    padding: 20px 0;
}

.page--bbs .comment_block {
    margin-bottom: 40px;
}

.page--bbs .block--pager {
    margin: 0;
}

.page--bbs .commentPost {
    padding: 20px;
}

.page--bbs .form--post dt {
    margin: 1em 0 0.2em;
}

.page--bbs .form.form--post {
    margin-bottom: 20px;
}

.page--bbs .btn--sub {
    width: 90%;
    min-width: auto;
}

.page--bbs.page--bbs_detail .titArea .txt {
    font-size: 15px;
    margin-bottom: 20px;
}

.page--bbs .form--confirm dd {
    font-size: 14px;
    margin-bottom: 15px;
}

}

