@charset "UTF-8";

/* ---------------- Reset CSS ---------------- */

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,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-style: normal;
    font-weight: normal;
    /*font-size: 100%;*/
    vertical-align: baseline;
}

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

html {
    overflow-y: scroll;
    font-size: 62.5%;
    font-family: 'Hiragino Kaku Gothic ProN', Meiryo, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}


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

blockquote,
q {
    quotes: none;
}

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

input,
textarea {
    margin: 0;
    padding: 0;
}

input::-webkit-input-placeholder,
input:-moz-placeholder,
textarea::-webkit-input-placeholder,
textarea:-moz-placeholder {
    color: #888;
}

input[type="button"],
input[type="submit"],
input[type="search"],
input[type="reset"] {
    -webkit-appearance: none;
}

ol,
ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

caption,
th {
    text-align: left;
}

a:focus {
    outline: none;
}

.clearfix:after {
    content: '';
    clear: both;
    display: block;
}


/* ---------------- common ---------------- */

body {
    overflow: hidden;
}

#contents {
    background: #fff;
    color: #2c2c2c;
    font-family: 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
    letter-spacing: 0.06em;
    line-height: 1.8;
    font-size: 1.8rem;
    font-weight: 400;
}

main {
    padding-top: 88px;
}

.mainarea {
    display: block;
    margin: 0;
    max-width: none;
    width: 100%;
}

img {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    vertical-align: bottom;
}

a {
    color: inherit;
    transition: .3s;
    text-decoration: none;
}

a:hover {
    opacity: .8;
}

a[href^="tel:"] {
    cursor: default;
    opacity: 1;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    text-decoration: inherit;
}

sub,
sup {
    font-size: 40%;
}

strong,
.font-w-b,
.font-w-b * {
    font-weight: 700;
}

.font-s-s {
    font-weight: inherit;
    font-size: 75%;
}

.inner {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

.inner.is-m {
    max-width: 1280px;
}

.inner.is-s {
    max-width: 1000px;
}

.inner.is-ss {
    max-width: 620px;
}

.pd-l {
    padding: 100px 0;
}

.pd-m {
    padding: 80px 0;
}

.pd-s {
    padding: 60px 0;
}

.pdb-m {
    padding: 0 0 80px;
}

.sec-ttl-l {
    color: #505050;
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1.2em;
}

i {
    font-style: italic;
    font-weight: inherit;
}

.list-disc {
    list-style-type: disc;
    text-align: left;
    padding-left: 2em;
}

/* 画像ホバーで明るく（四角画像・動画サムネイル用） */
.img-link01 {
    display: inline-block;
    position: relative;
    transition: .3s;
}

.img-link01:hover {
    opacity: 1;
    transition: .3s;
}

.img-link01::before {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #FFF;
    opacity: 0;
    transition: .3s;
}

.img-link01:hover::before {
    opacity: 0.2;
}

/* 画像ホバーで明るく（四角以外の画像用） */

.img-link02 img {
    transition: .3s;
}

.img-link02:hover {
    opacity: 1;
}

.img-link02:hover {
    -webkit-filter: brightness(1.1) saturate(90%);
    filter: brightness(1.1) saturate(90%);
}

.arrow {
    display: block;
    position: relative;
}

.arrow::after {
    content: '';
    background: url(../img/btn-arrow-white.svg) no-repeat center/cover;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 40px;
    height: 6px;
}

.btn-s {
    color: #fff;
    display: block;
    padding-bottom: 4px;
    position: relative;
    max-width: 180px;
}

.btn-s:hover {
    color: #fff;
    text-decoration: none;
    opacity: 1;
}

.btn-s::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
}

.btn-s:hover::after {
    -webkit-animation: border-anim 0.5s ease forwards;
    animation: border-anim 0.5s ease forwards;
}

@-webkit-keyframes border-anim {
    0% {
        width: 0%;
    }

    20% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes border-anim {
    0% {
        width: 0%;
    }

    20% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.btn-black-s {
    background: #484848;
    box-shadow: 0px 0px 20px 0px rgba(64, 64, 64, 0.6);
    display: block;
    text-align: center;
    padding: 10px 20px;
    margin: 1.8em auto;
    max-width: 300px;
}

.btn-black-s>span {
    color: #fff;
    font-family: "游ゴシック", YuGothic, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.btn-black-s .arrow::after {
    width: 48px;
    height: 7px;
}

.btn-gray-s {
    background: url(../img/btn-bg-gray-s.jpg)no-repeat center/cover;
    border: 1px solid #8f8f8f;
    box-shadow: 0px 2px 40px 0px rgba(64, 64, 64, 0.4);
    display: block;
    text-align: center;
    padding: 16px 20px;
    margin: 2.5em auto;
    max-width: 480px;
}

.btn-gray-s+.btn-gray-s {
    margin-top: -1.2em;
}

.btn-gray-s>span {
    color: #fff;
    font-family: "游ゴシック", YuGothic, sans-serif;
}

.btn-gray-s .arrow::after {
    width: 54px;
    height: 6px;
}

.btn-white-s {
    background: url(../img/btn-bg-white-s.jpg)no-repeat center/cover;
    box-shadow: 0px 2px 20px 0px rgba(64, 64, 64, 0.5);
    display: block;
    text-align: center;
    padding: 12px 20px;
    margin: 2.2em auto;
    max-width: 360px;
}

.btn-white-s>span {
    color: #484848;
    font-family: "游ゴシック", YuGothic, sans-serif;
    font-weight: 700;
}

.btn-white-s .arrow::after {
    background: url(../img/btn-arrow-black.svg) no-repeat center/cover;
    width: 49px;
    height: 8px;
}

.btn-green-l {
    background: url(../img/btn-bg-green-m.jpg)no-repeat center/cover;
    border: 1px solid #8f8f8f;
    box-shadow: 0px 2px 40px 0px rgba(64, 64, 64, 0.4);
    display: block;
    text-align: center;
    padding: 25px 30px;
    margin: 3em auto;
    max-width: 580px;
}

.btn-green-l>span {
    color: #fff;
    font-family: "游ゴシック", YuGothic, sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
}

.btn-green-l .arrow::after {
    width: 68px;
    height: 10px;
}

.btn-wh {
    background: #fff;
    border: 1px solid #484848;
    box-shadow: 0px 2px 40px 0px rgba(64, 64, 64, 0.4);
    display: block;
    text-align: center;
    padding: 20px;
    margin: 2em auto;
    max-width: 440px;
}

.btn-wh>span {
    color: #484848;
    font-size: 2.2rem;
    font-weight: 700;
    font-family: "游ゴシック", YuGothic, sans-serif;
}

.btn-wh .arrow::after {
    content: '';
    background: url(../img/btn-arrow-black.svg) no-repeat center/cover;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 58px;
    height: 9px;
}

.bnr-item {
    display: block;
    margin-bottom: 4.5em;
}

.bnr-item img {
    box-shadow: 0px 2px 20px 0px rgba(64, 64, 64, 0.4);
    display: block;
    margin: 0 auto;
    max-width: 1000px;
    width: 100%;
}

.last-block {
    padding-bottom: 200px !important;
}

.sub-sec-wrap {
    background: url(../img/bg-common.jpg) repeat-y top center/100%;
}

.sub-sec-wrap.bg02 {
    background: #f9f9f9;
}

@media screen and (max-width: 1280px) {
    .inner {
        width: 96%;
    }
}

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

    #contents {
        letter-spacing: 0.04em;
    }

    main {
        font-size: 1.6rem;
        padding-top: 80px;
    }

    .inner {
        width: 92%;
    }

    .pd-l {
        padding: 60px 0;
    }

    .pd-m {
        padding: 40px 0;
    }

    .pd-s {
        padding: 30px 0;
    }

    .pdb-m {
        padding: 0 0 40px;
    }

    .sec-ttl-l {
        font-size: 2rem;
        line-height: 1.6;
        margin-bottom: 1.5em;
    }

    .btn-black-s {
        padding: 8px 15px;
        margin: 1em auto;
        max-width: 200px;
    }

    .btn-black-s .arrow::after {
        width: 35px;
        height: 4px;
    }

    .btn-black-s>span {
        font-size: 1.2rem;
    }

    .btn-gray-s {
        box-shadow: 0px 2px 15px 0px rgba(64, 64, 64, 0.3);
        padding: 14px 10px;
        margin: 2.8em auto 2em;
        max-width: 310px;
    }

    .btn-gray-s>span {
        font-size: 1.3rem;
    }

    .btn-gray-s .arrow::after {
        width: 28px;
        height: 4px;
    }

    .btn-white-s {
        box-shadow: 0px 2px 10px 0px rgba(64, 64, 64, 0.5);
        padding: 10px 12px;
        margin: 1.3em auto 2em;
        max-width: 210px;
    }

    .btn-white-s>span {
        font-size: 1.3rem;
    }

    .btn-white-s .arrow::after {
        width: 28px;
        height: 4px;
    }

    .btn-green-l {
        padding: 15px;
        margin: 2em auto;
        max-width: 310px;
    }

    .btn-green-l>span {
        font-size: 1.6rem;
    }

    .btn-green-l .arrow::after {
        width: 34px;
        height: 5px;
    }

    .btn-wh {
        box-shadow: 0px 2px 15px 0px rgba(64, 64, 64, 0.3);
        color: #484848;
        padding: 10px 12px;
        max-width: 210px;
    }

    .btn-wh>span {
        font-size: 1.3rem;
    }

    .btn-wh .arrow::after {
        width: 28px;
        height: 3px;
    }

    .bnr-item {
        margin-bottom: 2em;
    }

    .last-block {
        padding-bottom: 100px !important;
    }

}

.block-s,
.inline-s {
    display: none !important
}

@media (max-width: 960px) {
    .hide-s {
        display: none !important
    }

    .block-s {
        display: block !important
    }

    .inline-s {
        display: inline !important
    }
}

/* modaal */

.modaal-close:after,
.modaal-close:before {
    border-radius: 0;
}

.modaal-close:focus,
.modaal-close:hover {
    background: none;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
    background: #6b976d;
}

.modaal-video-container {
    max-width: 1000px;
    max-height: 600px;
}

.movie-wrap {
    position: relative;
}

.movie-wrap.is-s {
    max-width: 380px;
}

.movie-wrap.is-m {
    max-width: 870px;
}

.movie-wrap.is-l {
    max-width: 750px;
}

.movie-wrap.is-xl {
    max-width: 1000px;
}

.movie-wrap .yt-frame {
    position: relative;
    width: 100%;
    padding-top: 56.33%;
}

.movie-wrap .yt-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.movie-wrap .yt-modal {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 960px) {
    .modaal-video-wrap {
        margin: 0;
    }

    .modaal-inner-wrapper {
        padding: 80px 5px;
    }

    .movie-wrap.is-s {
        max-width: 250px;
        margin: 0 auto;
    }

    
}

/* remodal */

.remodal {
    max-width: 334px;
    background: #111;
    border: 2px solid #fff;
}

.remodal .btn-gray-s {
    color: #fff;
    font-family: "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    padding: 12px 10px;
    margin: 1em auto 0;
    max-width: 160px;
}

.remodal-overlay {
    background: rgb(0 0 0 / 80%);
}

.remodal-close {
    left: auto;
    right: -60px;
    width: 50px;
    height: 50px;
    color: #fff;
}

.remodal-close:before {
    font-size: 46px;
    line-height: 50px;
    width: 50px;
}

.remodal-close:hover,
.remodal-close:focus {
    color: #6b976d;
}

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

    .remodal {
        max-width: 80vw;
    }

    .remodal-close {
        top: -60px;
        right: 0;
    }
}

.header {
    z-index: 90;
}

.footer {
    margin-top: 0 !important;
}
