@charset "UTF-8";
/*==================================
レスポンシブ設定 マップ型変数breakpointsを定義
=================================*/
/*==================================
# 色、フォントファミリー
=================================*/
@font-face {
    font-family: "CenturyGothic";
    src: url("../font/CenturyGothic.ttc") format("truetype");
}

/*==================================
common(一般) - 全体に共通するスタイル
=================================*/
@media screen and (max-width: 767px) {
    .is-pc {
        display: none !important;
    }
}

@media screen and (min-width: 768px) {
    .is-sp {
        display: none !important;
    }
}

body {
    font-size: 16px;
    color: #333;
    font-family: "kozuka-gothic-pr6n, sans-serif";
    line-height: 1.7;
    background: #fff;
    padding-top: 80px;
    overflow-x: hidden;
}

@media screen and (max-width: 767px) {
    body {
        padding-top: 70px;
    }
}

html {
    overflow-x: hidden;
}

.inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 120px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

@media screen and (max-width: 767px) {
    .inner {
        padding: 0 16px;
    }
}

img {
    width: 100%;
    vertical-align: bottom;
}

a {
    font-family: "kozuka-gothic-pr6n, sans-serif";
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #000;
}

a:hover {
    opacity: 0.6;
}

::-webkit-input-placeholder {
    color: rgba(62, 62, 62, 0.5);
    font-size: 18px;
}

:-ms-input-placeholder {
    color: rgba(62, 62, 62, 0.5);
    font-size: 18px;
}

::-ms-input-placeholder {
    color: rgba(62, 62, 62, 0.5);
    font-size: 18px;
}

::placeholder {
    color: rgba(62, 62, 62, 0.5);
    font-size: 18px;
}

@media screen and (max-width: 767px) {
    ::-webkit-input-placeholder {
        font-size: 14px;
    }
    :-ms-input-placeholder {
        font-size: 14px;
    }
    ::-ms-input-placeholder {
        font-size: 14px;
    }
    ::placeholder {
        font-size: 14px;
    }
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="submit"],
select,
textarea {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    background: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    width: 100%;
    padding: 20px;
    margin: 0;
    outline: none;
}

@media screen and (max-width: 767px) {
    input[type="text"],
    input[type="tel"],
    input[type="email"],
    input[type="submit"],
    select,
    textarea {
        padding: 10px;
    }
}

.drawer-icon {
    margin-left: 10px;
    z-index: 300;
    -webkit-transition: -webkit-transform 0.5s ease 0s;
    transition: -webkit-transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.drawer-icon.is-active .drawer-icon-bar1 {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 8px;
    -webkit-transition: -webkit-transform 0.5s ease 0s;
    transition: -webkit-transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.drawer-icon.is-active .drawer-icon-bar2 {
    opacity: 0;
    -webkit-transition: -webkit-transform 0.5s ease 0s;
    transition: -webkit-transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.drawer-icon.is-active .drawer-icon-bar3 {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 8px;
    -webkit-transition: -webkit-transform 0.5s ease 0s;
    transition: -webkit-transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.drawer-icon-bars {
    width: 30px;
    height: 30px;
    display: block;
    position: relative;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
    position: absolute;
    width: 30px;
    height: 3px;
    background: #ec9b9f;
    top: 0;
    left: 0;
    border-radius: 50px;
}

.drawer-icon-bar1 {
    top: 0;
    -webkit-transition: -webkit-transform 0.5s ease 0s;
    transition: -webkit-transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.drawer-icon-bar2 {
    top: 12px;
    -webkit-transition: -webkit-transform 0.5s ease 0s;
    transition: -webkit-transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.drawer-icon-bar3 {
    top: 24px;
    -webkit-transition: -webkit-transform 0.5s ease 0s;
    transition: -webkit-transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.drawer-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    background: #fff;
    z-index: 250;
    display: none;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.drawer-content.is-active {
    display: block;
}

@media screen and (max-width: 767px) {
    .drawer-content {
        overflow: auto;
    }
}

.drawer-icon-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.drawer-icon-nav ul li a {
    display: block;
    color: #333;
}

.header {
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 100;
}

.header.white {
    background: #fff;
}

@media screen and (max-width: 767px) {
    .header {
        height: 70px;
        background: #fff;
    }
}

.header-inner {
    height: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: initial;
    padding: 0 30px;
}

.headerLogo {
    width: 160px;
    margin-right: auto;
    position: relative;
    z-index: 1000;
}

@media screen and (max-width: 767px) {
    .headerLogo {
        width: 120px;
    }
}

.header-right-sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .header-right-sns {
        display: none;
    }
}

.header-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-right-sns-item {
    width: 35px;
    margin-right: 30px;
}
.header-right-sns-item.recruit {
    width: 45px;
}

@media screen and (max-width: 767px) {
    .header-right-sns-item:last-child {
        margin-right: 0;
    }
}

.header-right-store {
    margin-right: 20px;
}

@media screen and (max-width: 767px) {
    .header-right-store {
        display: none;
    }
}

.header-right-store a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #333;
    padding: 5px 30px;
    border-radius: 28px;
}

.header-right-store .img {
    width: 35px;
    display: inline-block;
    margin-right: 10px;
}

.header-right-store .text {
    color: #333;
    font-family: "CenturyGothic", serif;
    font-size: 18px;
    display: inline-block;
}

.drawer-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 40px;
}

.drawer-heading .left {
    margin-right: 40px;
    min-width: 120px;
}

.drawer-heading .left .ul1 li {
    margin-bottom: 20px;
}

.drawer-heading .left .ul1 li a {
    font-size: 16px;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .drawer-heading .left .ul1 li a {
        font-size: 14px;
    }
}

.drawer-heading .right {
    overflow: hidden;
}

.drawer-heading .right .ul2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.drawer-heading .right .ul2 li {
    margin-bottom: 15px;
    width: 50%;
}

.drawer-heading .right .ul2 li a {
    font-size: 14px;
}

@media screen and (max-width: 767px) {
    .drawer-heading .right .ul2 li a {
        font-size: 12px;
    }
}

.drawer-qa-title {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.drawer-qa-title::after {
    position: absolute;
    top: 50%;
    right: -480px;
    width: 470px;
    height: 1px;
    background: #ec9b9f;
    content: "";
}

@media screen and (max-width: 767px) {
    .drawer-qa-title {
        font-size: 14px;
    }
}

.drawer-bottom-title {
    font-size: 16px;
    font-family: "CenturyGothic", serif;
    font-weight: bold;
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .drawer-bottom-title {
        font-size: 14px;
    }
}

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

.drawer-bottom .left {
    margin-right: 30px;
}

.drawer-bottom .sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.drawer-bottom .sns li {
    width: 35px;
    margin-right: 20px;
}

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

.drawer-bottom-flex .text {
    margin-right: 10px;
    font-size: 14px;
}

.drawer-bottom-flex .btn a {
    color: #fff;
    background: #ec9b9f;
    padding: 10px 15px;
    font-size: 16px;
    min-width: 200px;
    border-radius: 30px;
    text-align: center;
    display: inline-block;
    position: relative;
}

.drawer-bottom-flex .btn a::after {
    content: "";
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    right: 15px;
    background: url(../img/arrow-drawer.png) no-repeat center center/cover;
    width: 20px;
    height: 8px;
}

.footer {
    margin-top: 100px;
}

@media screen and (max-width: 767px) {
    .footer {
        margin-top: 40px;
    }
}

.footerLogo {
    margin-bottom: 20px;
    width: 160px;
    margin: 0 auto 20px;
}

@media screen and (max-width: 767px) {
    .footerLogo {
        width: 120px;
    }
}

.footer-meta1 {
    font-size: 16px;
    margin-bottom: 15px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .footer-meta1 {
        font-size: 14px;
    }
}

.footer-meta2 {
    font-size: 25px;
    margin-bottom: 20px;
    text-align: center;
    font-family: "CenturyGothic", serif;
}

@media screen and (max-width: 767px) {
    .footer-meta2 {
        font-size: 16px;
    }
}

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

@media screen and (max-width: 767px) {
    .footer-heading {
        display: block;
    }
}

.footer-heading .left {
    width: 50%;
    padding: 0 16px;
}

@media screen and (max-width: 767px) {
    .footer-heading .left {
        width: 100%;
    }
}

.footer-heading .right {
    width: 50%;
    padding: 0 16px;
    background: #ec9b9f;
    color: #fff;
    padding: 40px 60px;
}

@media screen and (max-width: 767px) {
    .footer-heading .right {
        width: 100%;
        padding: 40px 16px;
    }
}

.footer-heading .right .title {
    font-size: 25px;
    margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
    .footer-heading .right .title {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

.footer-heading .right .text {
    font-size: 16px;
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .footer-heading .right .text {
        font-size: 14px;
    }
}

.footer-heading .right .btn a {
    border-radius: 30px;
    display: inline-block;
    color: #ec9b9f;
    background-color: #fff;
    border: 1px solid #ec9b9f;
    padding: 5px 40px;
    position: relative;
}

.footer-heading .right .btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../img/arrow-pink.png) no-repeat center center/cover;
    width: 20px;
    height: 8px;
}

.footer-sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .footer-sns {
        margin-bottom: 20px;
    }
}

.footer-bottom {
    padding: 20px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .footer-bottom {
        display: block;
    }
}

.footer-bottom .left {
    width: 50%;
}

@media screen and (max-width: 767px) {
    .footer-bottom .left {
        width: 100%;
    }
}

.footer-bottom .left .ul1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .footer-bottom .left .ul1 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-bottom: 10px;
    }
}

.footer-bottom .left .ul1 li {
    margin-right: 10px;
}

.footer-bottom .left .ul1 li a {
    font-size: 13px;
    color: #333;
}

@media screen and (max-width: 767px) {
    .footer-bottom .left .ul1 li a {
        font-size: 13px;
    }
}

.footer-bottom .right {
    width: 50%;
    margin-left: auto;
}

@media screen and (max-width: 767px) {
    .footer-bottom .right {
        width: 100%;
    }
}

.footer-bottom .right .copyright {
    font-size: 12px;
    text-align: right;
}

@media screen and (max-width: 767px) {
    .footer-bottom .right .copyright {
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .footer-heading .right .btn {
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .footer-heading .right .title {
        text-align: center;
    }
}

.section {
    padding: 80px 0;
}

@media screen and (max-width: 767px) {
    .section {
        padding: 40px 0;
    }
}

.section2 {
    padding: 40px 0;
}

@media screen and (max-width: 767px) {
    .section2 {
        padding: 20px 0;
    }
}

.section-title {
    font-size: 40px;
    font-family: "CenturyGothic", serif;
    color: #ec9b9f;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
    .section-title {
        font-size: 30px;
        margin-bottom: 20px;
    }
}

.section-title-ja {
    font-size: 28px;
    font-family: "NotoSansCJKjp-Regular", "NotoSansJP-Regular", "NotoSansJP-Bold", "NotoSansJP-Medium", serif;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 80px;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .section-title-ja {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

.section-title-span {
    font-size: 16px;
    font-family: "NotoSansCJKjp-Regular", "NotoSansJP-Regular", "NotoSansJP-Bold", "NotoSansJP-Medium", serif;
    text-align: center;
    display: block;
    color: #000;
}

@media screen and (max-width: 767px) {
    .section-title-span {
        font-size: 16px;
    }
}

.company-se1 {
    max-width: 900px;
    margin: 0 auto;
}

.company-se1 .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #ec9b9f;
}

.company-se1 .row .dt {
    width: 150px;
    font-size: 18px;
    padding: 30px 20px;
    color: #ec9b9f;
}

@media screen and (max-width: 767px) {
    .company-se1 .row .dt {
        width: 100px;
        font-size: 12px;
        padding: 20px 10px;
    }
}

.company-se1 .row .dd {
    width: calc(100% - 150px);
    font-size: 18px;
    padding: 30px 20px;
}

@media screen and (max-width: 767px) {
    .company-se1 .row .dd {
        width: calc(100% - 100px);
        font-size: 12px;
        padding: 20px 10px;
    }
}

.company-se1 .map {
    max-width: 500px;
    margin: 20px 0;
}

@media screen and (max-width: 767px) {
    .company-se1 .map {
        margin: 10px 0;
    }
}

.company-se1 .map .map-wrap {
    width: 100%;
    padding-top: 75%;
    position: relative;
}

.company-se1 .map .map-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.tab-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.tab {
    background: #fff;
    border-radius: 30px;
    color: #ec9b9f;
    border: 1px solid #ec9b9f;
    width: calc(50% - 10px * 1 / 2);
    margin-right: 10px;
    text-align: center;
    padding: 5px;
    font-size: 16px;
}

.tab:nth-child(2n) {
    margin-right: 0;
}

.tab:nth-child(n + 3) {
    margin-top: 10px;
}

.panel {
    display: none;
}

.tab.is-active {
    background: #ec9b9f;
    color: #fff;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.panel.is-show {
    display: block;
}

.single .heading,
.category-ul .heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 18px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
    .single .heading,
    .category-ul .heading {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

.single .time,
.category-ul .time {
    margin-right: 20px;
}

@media screen and (max-width: 767px) {
    .single .time,
    .category-ul .time {
        margin-right: 10px;
        font-size: 14px;
    }
}

.single .category,
.category-ul .category {
    font-size: 18px;
    color: #fff;
    background: #ec9b9f;
    padding: 0px 10px;
    line-height: 1.2;
    font-family: "CenturyGothic", serif;
}

@media screen and (max-width: 767px) {
    .single .category,
    .category-ul .category {
        font-size: 14px;
    }
}

.single .category.media,
.category-ul .category.media {
    background: #f7931e;
}

.single .category.other,
.category-ul .category.other {
    background: #666666;
}

.single .category.exhibition,
.category-ul .category.exhibition {
    background: #93278f;
}

.single .category.promotion,
.category-ul .category.promotion {
    background: #39b44a;
}

.single .category.award,
.category-ul .category.award {
    background: #29aae1;
}

.single h1,
.category-ul h1 {
    font-size: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ec9b9f;
    margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
    .single h1,
    .category-ul h1 {
        font-size: 16px;
    }
}

.single h2,
.category-ul h2 {
    font-size: 28px;
    padding-left: 20px;
    border-left: 4px solid #ec9b9f;
    line-height: 1.2;
    margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
    .single h2,
    .category-ul h2 {
        font-size: 16px;
    }
}

.single h3,
.category-ul h3 {
    font-size: 22px;
    color: #ec9b9f;
}

@media screen and (max-width: 767px) {
    .single h3,
    .category-ul h3 {
        font-size: 15px;
    }
}

.single p,
.category-ul p {
    font-size: 18px;
    line-height: 2;
}

@media screen and (max-width: 767px) {
    .single p,
    .category-ul p {
        font-size: 14px;
    }
}

@media screen and (min-width: 768px) {
    .single .bottom,
    .category-ul .bottom {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.single .bottom .thumbnail,
.category-ul .bottom .thumbnail {
    position: relative;
}

@media screen and (min-width: 768px) {
    .single .bottom .thumbnail,
    .category-ul .bottom .thumbnail {
        width: 47%;
        margin-right: auto;
    }
}

.single .bottom .thumbnail img,
.category-ul .bottom .thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (min-width: 768px) {
    .single .bottom .content,
    .category-ul .bottom .content {
        width: 47%;
    }
}

.single .news-btn,
.category-ul .news-btn {
    margin-top: 80px;
    text-align: center;
}

.single .news-btn a,
.category-ul .news-btn a {
    font-size: 20px;
    color: #ec9b9f;
    background: #fff;
    border: 1px solid #ec9b9f;
    padding: 10px 40px;
    border-radius: 30px;
    position: relative;
}

.single .news-btn a::after,
.category-ul .news-btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../img/arrow-pink.png) no-repeat center center/cover;
    width: 20px;
    height: 8px;
}

@media screen and (max-width: 767px) {
    .single .news-btn,
    .category-ul .news-btn {
        margin-top: 30px;
        padding: 10px 20px;
        font-size: 14px;
    }
}

.category-ul a {
    display: block;
}

@media screen and (min-width: 768px) {
    .category-ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        max-width: 900px;
        margin: 0 auto;
    }
}

.category-ul .heading {
    margin-bottom: 15px;
    font-size: 16px;
}

@media screen and (max-width: 767px) {
    .category-ul .heading {
        margin-bottom: 10px;
        font-size: 14px;
    }
}

.category-ul .thumbnail {
    margin-bottom: 10px;
    padding-top: 75%;
    position: relative;
}

.category-ul .thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (max-width: 767px) {
    .category-ul .thumbnail {
        margin-bottom: 10px;
    }
}

.category-ul .category {
    font-size: 16px;
}

@media screen and (max-width: 767px) {
    .category-ul .category {
        font-size: 14px;
    }
}

@media screen and (max-width: 767px) {
    .category-ul li {
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 768px) {
    .category-ul li {
        width: calc(33% - 30px * 2 / 3);
        margin-right: 30px;
    }
}

@media screen and (min-width: 768px) {
    .category-ul li:nth-child(3n) {
        margin-right: 0;
    }
}

@media screen and (min-width: 768px) {
    .category-ul li:nth-child(n + 4) {
        margin-top: 50px;
    }
}

.category-ul .more-p {
    margin-top: 10px;
    text-align: right;
    padding-right: 25px;
    color: #ec9b9f;
    position: relative;
    font-family: "CenturyGothic", serif;
}

.category-ul .more-p::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    background: url(../img/arrow-pink.png) no-repeat center center/cover;
    width: 20px;
    height: 8px;
}

.pagenation {
    text-align: center;
    margin-top: 50px;
    font-size: 20px;
}

@media screen and (max-width: 767px) {
    .pagenation {
        margin-top: 20px;
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .pagenation a,
    .pagenation span {
        margin: 0 5px;
    }
}

.slider-container {
    width: 47%;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    .slider-container {
        width: 100%;
        margin: 0 auto 40px;
    }
}

.single .slick-prev,
.single .slick-next {
    z-index: 2;
}

.single .slick-prev {
    left: 0 !important;
}

.single .slick-next {
    right: 0 !important;
}

.single .slick-slide {
    padding: 5px 10px;
}

.single .slick-next:before {
    content: "";
    background: url(../img/slider-arrow-right.png) no-repeat center center/cover;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 9px !important;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.single .slick-prev:before {
    content: "";
    background: url(../img/slider-arrow-left.png) no-repeat center center/cover;
    width: 40px;
    height: 40px;
    position: absolute;
    left: 9px !important;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.product-wrap {
    margin-bottom: 20px;
}

.product-wrap.first {
    margin-top: 50px;
}

@media screen and (max-width: 767px) {
    .product-wrap.first {
        margin-top: 20px;
    }
}

@media screen and (max-width: 767px) {
    .product-wrap {
        margin-bottom: 10px;
    }
}

.product-wrap p {
    font-size: 16px;
}

@media screen and (max-width: 767px) {
    .product-wrap p {
        font-size: 14px;
    }
}

.product-title {
    font-size: 20px;
    padding-bottom: 10px;
    border-bottom: 1px dotted #ec9b9f;
    color: #ec9b9f;
}

@media screen and (max-width: 767px) {
    .product-title {
        font-size: 16px;
    }
}

.product-name {
    font-size: 30px;
    margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
    .product-name {
        font-size: 20px;
    }
}

.online-btn {
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .online-btn {
        margin-bottom: 10px;
    }
}

.online-btn a {
    font-size: 25px;
    color: #ec9b9f;
    background: #fff;
    padding: 10px 40px;
    display: block;
    width: 100%;
    border: 1px solid #ec9b9f;
    text-align: center;
    border-radius: 30px;
}

@media screen and (max-width: 767px) {
    .online-btn a {
        font-size: 16px;
        padding: 10px 10px;
    }
}

.lp-btn {
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .lp-btn {
        margin-bottom: 10px;
    }
}

.lp-btn a {
    font-size: 25px;
    background: #ec9b9f;
    color: #fff;
    padding: 10px 40px;
    display: block;
    width: 100%;
    border: 1px solid #ec9b9f;
    text-align: center;
    border-radius: 30px;
}

@media screen and (max-width: 767px) {
    .lp-btn a {
        font-size: 16px;
        padding: 10px 10px;
    }
}

.pink {
    color: #ec9b9f;
    font-size: 23px;
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .pink {
        font-size: 16px;
        margin-bottom: 0px;
    }
}

/*=========
accordion
=========*/
.accordion_area .accordion_one .ac_header {
    background-color: transparent;
    padding: 1.5rem 4rem 1.5rem 2rem;
    position: relative;
    z-index: +1;
    cursor: pointer;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.accordion_area .accordion_one .ac_header .i_box {
    position: absolute;
    top: 50%;
    right: 2rem;
    width: 20px;
    height: 20px;
    margin-top: -10px;
}

.accordion_area .accordion_one .ac_header .i_box:before,
.accordion_area .accordion_one .ac_header .i_box:after {
    position: absolute;
    content: "";
    margin: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: middle;
}

.accordion_area .accordion_one .ac_header .i_box:before {
    border-top: 2px solid #000;
    width: 20px;
    height: 0;
    top: 0;
    bottom: 0;
    right: 0;
}

.accordion_area .accordion_one .ac_header .i_box:after {
    border-left: 2px solid #000;
    width: 0;
    height: 20px;
    top: 0;
    bottom: 0;
    right: 9px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.accordion_area .accordion_one .ac_header.open .i_box:after {
    height: 0;
}

.accordion_area .accordion_one .ac_inner {
    display: none;
    padding: 1.5rem 2rem 1.5rem 2rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #fff;
}

@media screen and (max-width: 767px) {
    .accordion_area .accordion_one .ac_inner {
        padding: 1rem 2rem 1rem 1rem;
    }
}

@media screen and (max-width: 736px) {
    .accordion_area .accordion_one .ac_header {
        padding: 1.5rem 2rem 1.5rem 1rem;
    }
}

@media screen and (max-width: 736px) and (max-width: 767px) {
    .accordion_area .accordion_one .ac_header {
        padding: 1rem 2rem 1rem 1rem;
    }
}

@media screen and (max-width: 736px) {
    .accordion_area .accordion_one .ac_header .i_box {
        right: 0.8rem;
        width: 15px;
        height: 15px;
        margin-top: -7px;
    }
    .accordion_area .accordion_one .ac_header .i_box:before {
        width: 15px;
    }
    .accordion_area .accordion_one .ac_header .i_box:after {
        height: 15px;
        right: 7px;
    }
    .accordion_area .accordion_one .ac_inner {
        padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    }
}

/*=========
faq
=========*/
.p-faq__headinner {
    display: block;
    padding-left: 35px;
    position: relative;
    line-height: 1.5;
}

.p-faq__headinner::before {
    position: absolute;
    left: 0;
    content: "Q.";
    color: #ec9b9f;
    font-size: 20px;
    padding: 0 5px;
    font-weight: bold;
    font-family: "CenturyGothic", serif;
}

.p-faq__headinner p.p-faq__q-txt {
    font-size: 20px;
}

@media screen and (max-width: 736px) {
    .p-faq__headinner {
        padding-left: 25px;
    }
    .p-faq__headinner::before {
        font-size: 14px;
    }
    .p-faq__headinner p.p-faq__q-txt {
        font-size: 14px;
    }
}

.p-faq__bodyinner {
    display: block;
    padding-left: 35px;
    position: relative;
    line-height: 1.5;
}

.p-faq__bodyinner::before {
    position: absolute;
    left: 0;
    content: "A.";
    color: #fff;
    padding: 0 5px;
    background-color: #ec9b9f;
    font-size: 20px;
    margin-right: 10px;
    font-weight: bold;
    font-family: "CenturyGothic", serif;
}

.p-faq__bodyinner p.p-faq__a-txt {
    font-size: 16px;
}

@media screen and (max-width: 736px) {
    .p-faq__bodyinner {
        padding-left: 25px;
    }
    .p-faq__bodyinner::before {
        font-size: 14px;
        background: #ec9b9f;
    }
    .p-faq__bodyinner p.p-faq__a-txt {
        font-size: 14px;
    }
}

/*=========
base
=========*/
.s_section {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 10px;
}

ul.list-disc {
    margin-bottom: 0;
    padding-left: 0;
}

.list-disc__item {
    margin-left: 1.5em;
    list-style: disc;
}

a._a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 2em 1em;
    border: 1px solid #222222;
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, #ffffff), color-stop(50%, #222222));
    background: linear-gradient(to right, #ffffff 50%, #222222 50%);
    background-size: 200% auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #222222;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: relative;
}

a._a:after {
    content: "";
    position: absolute;
    right: -5px;
    bottom: -5px;
    width: 100%;
    height: 100%;
    border-right: 1px solid #222222;
    border-bottom: 1px solid #222222;
}

a._a:hover {
    color: #ffffff;
    background-position: -100% 0;
}

.accordion_area .accordion_one .ac_header {
    border: none;
    border-top: 1px solid #ec9b9f;
}

.accordion_one:last-child {
    border-bottom: 1px solid #ec9b9f;
}

.pink-wrap {
    background: #ec9b9f;
    background: rgba(236, 155, 159, 0.1);
    padding-top: 50px;
    padding-bottom: 40px;
}

@media screen and (max-width: 767px) {
    .pink-wrap {
        padding-top: 20px;
        padding-bottom: 10px;
    }
}

.qa2 .p-faq__headinner::before {
    content: "";
}

.qa2 .p-faq__headinner {
    padding-left: 0;
}

.qa2 .accordion_area .accordion_one .ac_header {
    border: none;
    border: 1px solid #ec9b9f;
}

.qa2 .accordion_one {
    margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
    .qa2 .accordion_one {
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 768px) {
    .qa2 .p-faq__bodyinner {
        padding-left: 0px;
    }
}

@media screen and (min-width: 768px) {
    .qa2 .p-faq__bodyinner::before {
        left: 23px;
    }
}

.qa2 .p-faq__bodyinner::before {
    content: "";
}

@media screen and (max-width: 767px) {
    .qa2 .p-faq__bodyinner {
        padding-left: 0;
    }
}

.qa2 .accordion_area .accordion_one .ac_inner {
    background: rgba(236, 155, 159, 0.1);
}

@media screen and (max-width: 767px) {
    .qa2 .accordion_area .accordion_one .ac_inner {
        padding: 1rem 2rem 1rem 1rem;
    }
}

.qa2 .p-faq__bodyinner {
    border-bottom: 1px solid #ec9b9f;
    padding-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .qa2 .p-faq__bodyinner {
        padding-bottom: 10px;
    }
}

.qa2 .p-faq__bodyinner:last-child {
    border-bottom: none;
}

.qa2 .ac_inner {
    border-bottom: 1px solid #ec9b9f;
}

.qa2 p {
    font-size: 20px;
}

@media screen and (max-width: 767px) {
    .qa2 p {
        font-size: 14px;
    }
}

.qa2 .p-faq__bodyinner {
    margin-bottom: 20px;
}

.qa2 .p-faq__bodyinner.last {
    border-bottom: none;
}

.qa2 .accordion_one:last-child {
    border-bottom: none;
}

.qa2 .p-faq__a-txt {
    position: relative;
    padding-left: 45px;
}

@media screen and (max-width: 767px) {
    .qa2 .p-faq__a-txt {
        padding-left: 32px;
    }
}

.qa2 .p-faq__a-txt::before {
    position: absolute;
    left: 0;
    content: "A.";
    color: #fff;
    padding: 0 5px;
    background-color: #ec9b9f;
    font-size: 20px;
    margin-right: 10px;
    font-weight: bold;
    font-family: "CenturyGothic", serif;
}

@media screen and (max-width: 767px) {
    .qa2 .p-faq__a-txt::before {
        font-size: 14px;
    }
}

.qa2 {
    padding-top: 0;
}

@media screen and (max-width: 767px) {
    .qa2 .accordion_area .accordion_one .ac_inner {
        padding: 1rem 1rem 1rem 1rem;
    }
}

.qa2 .accordion_area .accordion_one .ac_inner {
    padding-bottom: 0;
}

.q-f {
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .q-f {
        margin-bottom: 10px;
    }
}

.p-faq__headinner::before {
    background: #fff;
}

.q-span {
    font-family: "CenturyGothic", serif;
    font-size: 20px;
    padding: 3px 4px;
    margin-right: 15px;
    background: #fff;
}

@media screen and (max-width: 767px) {
    .q-span {
        font-size: 14px;
        margin-right: 7px;
    }
}

.q-span.pink {
    background: #ec9b9f;
    color: #fff;
    margin-left: 20px;
}

@media screen and (max-width: 767px) {
    .q-span.pink {
        font-size: 14px;
        margin-left: 0;
    }
}

@media screen and (min-width: 768px) {
    .qa-flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (min-width: 768px) {
    .qa-flex .left {
        width: 50%;
        padding: 0 30px;
        border-right: 1px dotted #ec9b9f;
    }
}

@media screen and (max-width: 767px) {
    .qa-flex .left {
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 768px) {
    .qa-flex .right {
        width: 50%;
        padding: 0 30px;
    }
}

.qa-flex .title2 {
    font-size: 25px;
    color: #ec9b9f;
    margin-bottom: 30px;
    position: relative;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .qa-flex .title2 {
        margin-bottom: 50px;
    }
}

.qa-flex .title2 span {
    position: relative;
}

.qa-flex .title2 .img2 {
    position: absolute;
    bottom: -20px;
    width: 110%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
    .qa-flex .title2 {
        font-size: 16px;
        margin-bottom: 30px;
    }
}

.text-center {
    text-align: center;
    font-size: 16px;
}

@media screen and (max-width: 767px) {
    .text-center {
        font-size: 14px;
    }
}

.tel {
    font-family: "CenturyGothic", serif;
    font-size: 30px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .tel {
        font-size: 16px;
    }
}

.tel a {
    color: #ec9b9f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: bold;
    font-family: "CenturyGothic", serif;
}

.tel span {
    color: #fff;
    background: #ec9b9f;
    padding: 5px 10px;
    font-size: 20px;
    line-height: 1;
    margin-right: 10px;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .tel span {
        font-size: 14px;
    }
}

.form-btn {
    text-align: center;
    margin-top: 20px;
}

.form-btn a {
    color: #ec9b9f;
    border: 1px solid #ec9b9f;
    background: transparent;
    padding: 10px 40px;
    text-align: center;
    border-radius: 30px;
    font-size: 20px;
    position: relative;
}

@media screen and (max-width: 767px) {
    .form-btn a {
        font-size: 16px;
    }
}

.form-btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../img/arrow-pink.png) no-repeat center center/cover;
    width: 20px;
    height: 8px;
}

@media screen and (max-width: 767px) {
    .pink-wrap2 {
        padding-bottom: 30px;
    }
}

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

.top-flex label {
    font-size: 18px;
    position: relative;
    padding-left: 45px;
}

@media screen and (max-width: 767px) {
    .top-flex label {
        font-size: 14px;
    }
}

.top-flex input[type="radio"]:checked + span::after {
    display: block;
}

.top-flex input[type="radio"] {
    position: absolute;
    left: -200%;
    opacity: 0;
}

.design:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.design::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 8px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #ec9b9f;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: none;
}

.radio_container1,
.radio_container2 {
    margin-right: 40px;
}

@media screen and (max-width: 767px) {
    .radio_container1,
    .radio_container2 {
        margin-right: 20px;
    }
    .radio_container1 {
        margin-bottom: 20px;
    }
}

.contact-width {
    max-width: 900px;
    margin: 0 auto;
}

.contact-form {
    max-width: 900px;
    margin: 80px auto 0;
}


.contact-width .mw_wp_form.mw_wp_form_input {
    display: none;
}
.contact-width #radio_id + .mw_wp_form.mw_wp_form_input {
    display: block;
}
.contact-width .radio_inner div.check span {
    display: inline-block;
}

@media screen and (max-width: 767px) {
    .contact-form {
        margin: 40px auto 0;
    }
}

.contact-form .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
    .contact-form .row {
        margin-bottom: 15px;
        display: block;
    }
}

.contact-form .dt {
    width: 280px;
    font-size: 18px;
    padding: 20px;
}

@media screen and (max-width: 767px) {
    .contact-form .dt {
        font-size: 14px;
        padding: 20px;
        width: 100%;
        padding: 0;
        margin-bottom: 5px;
    }
}

.contact-form .dd {
    width: calc(100% - 280px);
    font-size: 18px;
}

@media screen and (max-width: 767px) {
    .contact-form .dd {
        font-size: 14px;
        width: 100%;
    }
}

textarea {
    height: 300px;
    resize: none;
}

@media screen and (max-width: 767px) {
    textarea {
        height: 200px;
    }
}

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

@media screen and (max-width: 767px) {
    .dd-flex {
        display: block;
    }
}

.dd-flex .left {
    width: 47%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .dd-flex .left {
        width: 100%;
        margin-bottom: 10px;
    }
}

.dd-flex .right {
    width: 47%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .dd-flex .right {
        width: 100%;
    }
}

.dd-name {
    min-width: 50px;
    margin-right: 10px;
}

.check {
    margin: 0 auto 50px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .check {
        font-size: 14px;
        margin: 0 auto 25px;
    }
}

.contact-text {
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 80px;
}

@media screen and (max-width: 767px) {
    .contact-text {
        margin-bottom: 15px;
        margin-top: 40px;
        font-size: 12px;
    }
}

.infobox {
    padding: 20px 40px;
    height: 300px;
    /* 高さを制限(※) */
    overflow: scroll;
    /* スクロールバーを表示(※) */
    border: #000 1px solid;
    /* 枠線を追加 */
    background-color: #fff;
    /* 背景色を追加 */
}

@media screen and (max-width: 767px) {
    .infobox {
        font-size: 13px;
        padding: 10px;
    }
}

.submit {
    text-align: center;
    padding-bottom: 100px;
}

input[type="submit"] {
    font-size: 20px;
    border: 1px solid #ec9b9f;
    border-radius: 30px;
    padding: 15px 40px;
    background: #fff;
    color: #ec9b9f;
    display: inline-block;
    max-width: 300px;
    margin-top: 40px;
}

@media screen and (max-width: 767px) {
    input[type="submit"] {
        font-size: 16px;
    }
}

.submit-wrap {
    display: inline-block;
}

@media screen and (max-width: 767px) {
    .dd-name {
        width: 40px;
        margin-right: 5px;
    }
}

.drawer-heading .right .ul2 li a {
    color: #ec9b9f;
}

@media screen and (max-width: 767px) {
    .drawer-heading {
        display: block;
    }
    .drawer-icon-nav {
        position: initial;
        top: initial;
        left: initial;
        -webkit-transform: initial;
        transform: initial;
    }
    .drawer-heading .right .ul2 li a {
        color: #ec9b9f;
    }
    .drawer-heading .right .ul2 {
        display: block;
    }
    .drawer-heading .right .ul2 li {
        width: 100%;
        margin-bottom: 10px;
    }
    .drawer-bottom {
        display: block;
    }
    .drawer-bottom-flex {
        display: block;
    }
    .drawer-heading {
        margin-top: 100px;
    }
    .drawer-content {
        padding: 0 16px;
    }
    .drawer-heading .right .ul2 {
        padding: 0 20px;
    }
    .drawer-bottom .left {
        margin-bottom: 20px;
    }
    .drawer-bottom-flex .text {
        margin-bottom: 20px;
    }
    .btn {
        margin-bottom: 30px;
    }
}

html {
    scroll-behavior: smooth;
}

.filter {
    max-width: 120px;
    margin-left: 80px;
    position: relative;
    z-index: 10;
}

@media screen and (max-width: 767px) {
    .filter {
        margin-left: 16px;
        max-width: 120px;
        position: relative;
        top: -10px;
    }
}

@media screen and (max-width: 767px) {
    .single .thumbnail {
        padding-top: 75% !important;
        margin-bottom: 10px;
    }
}

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

@media screen and (max-width: 767px) {
    .filter-flex {
        display: block;
    }
}

@media screen and (min-width: 768px) {
    .filter-flex .title {
        font-size: 18px !important;
        margin-bottom: 20px;
    }
}

.filter-flex li,
.filter-flex article {
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .filter-flex .text {
        width: 300px;
        margin-right: 80px;
    }
    .filter-flex .text:last-child {
        margin-right: 0;
    }
}

.overlay-product {
    position: absolute;
    z-index: 1;
    top: 300px;
    left: 0;
    width: 100%;
    height: 200%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
}

@media screen and (max-width: 767px) {
    .overlay-product {
        height: 1000%;
    }
}

.filter-contents {
    display: none;
    position: relative;
    z-index: 1;
}

@media screen and (min-width: 768px) {
    .filter-contents {
        padding: 0px 0;
    }
}

.filter-content {
    width: 100%;
    height: 500px;
    z-index: 9;
    background: #fff;
    padding: 0 80px;
}

@media screen and (max-width: 767px) {
    .filter-content {
        height: 900px;
    }
}

@media screen and (max-width: 767px) {
    .filter-content {
        padding: 0 16px;
    }
}

.filter-content .title {
    font-size: 20px;
    padding-bottom: 10px;
    border-bottom: 1px dotted #ec9b9f;
    color: #ec9b9f;
}

@media screen and (max-width: 767px) {
    .filter-content .title {
        font-size: 16px;
    }
}

.filter-content .cat-item {
    font-size: 16px;
}

@media screen and (max-width: 767px) {
    .filter-content .cat-item {
        font-size: 14px;
    }
}

.filter-content a {
    font-size: 16px !important;
}

@media screen and (max-width: 767px) {
    .filter-content a {
        font-size: 14px !important;
    }
}

@media screen and (min-width: 768px) {
    .about1-flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        margin-bottom: 80px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

@media screen and (max-width: 767px) {
    .about1-flex {
        margin-bottom: 40px;
    }
}

@media screen and (min-width: 768px) {
    .about1-flex .left {
        width: 46%;
    }
}

@media screen and (max-width: 767px) {
    .about1-flex .left {
        margin-bottom: 10px;
    }
}

@media screen and (min-width: 768px) {
    .about1-flex .right {
        width: 46%;
    }
}

.en {
    font-family: "CenturyGothic";
}

.about-title-en {
    font-size: 30px;
    color: #ec9b9f;
    margin-bottom: 40px;
    font-family: "CenturyGothic", serif;
}

@media screen and (max-width: 767px) {
    .about-title-en {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

.about-lead {
    font-size: 22px;
    color: #ec9b9f;
    margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
    .about-lead {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

.about-text {
    font-size: 18px;
}

@media screen and (max-width: 767px) {
    .about-text {
        font-size: 14px;
    }
}

.about-main-title {
    font-size: 30px;
    position: relative;
    text-align: center;
    margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
    .about-main-title {
        font-size: 18px;
        margin-bottom: 30px;
    }
}

.about-main-title::after {
    position: absolute;
    content: "";
    bottom: -10px;
    width: 30px;
    height: 4px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #ec9b9f;
}

.about-title-ja {
    font-size: 30px;
    color: #ec9b9f;
    margin-bottom: 40px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .about-title-ja {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

.about-text-center {
    font-size: 18px;
    margin-bottom: 40px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .about-text-center {
        font-size: 14px;
        margin-bottom: 20px;
        padding: 0 16px;
    }
}

.wrap-pink2 {
    background: rgba(236, 155, 159, 0.1);
}

@media screen and (min-width: 768px) {
    .no-reverse {
        -webkit-box-orient: initial;
        -webkit-box-direction: initial;
        -ms-flex-direction: initial;
        flex-direction: initial;
        margin-top: 100px;
    }
}

.section-inner {
    padding-left: 80px;
    padding-right: 80px;
}

@media screen and (max-width: 767px) {
    .section-inner {
        padding-left: 16px;
        padding-right: 16px;
    }
}

.con-btn {
    margin-top: 40px;
}

@media screen and (max-width: 767px) {
    .con-btn {
        margin-top: 20px;
        text-align: center;
    }
}

.con-btn a {
    color: #ec9b9f;
    font-size: 18px;
    border: 1px solid #ec9b9f;
    border-radius: 30px;
    padding: 15px 40px;
    position: relative;
}

@media screen and (max-width: 767px) {
    .con-btn a {
        font-size: 16px;
    }
}

.con-btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../img/arrow-pink.png) no-repeat center center/cover;
    width: 20px;
    height: 8px;
}

.center-s .slick-prev,
.center-s .slick-next {
    z-index: 2;
}

.center-s .slick-prev {
    left: 0 !important;
}

.center-s .slick-next {
    right: 0 !important;
}

.center-s .slick-slide {
    padding: 0 15px;
}

.center-s .slick-next:before {
    content: "";
    background: url(../img/slider-arrow-right.png) no-repeat center center/cover;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 30px !important;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.center-s .slick-prev:before {
    content: "";
    background: url(../img/slider-arrow-left.png) no-repeat center center/cover;
    width: 40px;
    height: 40px;
    position: absolute;
    left: 30px !important;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.about-main-title {
    margin-top: 160px;
}

@media screen and (max-width: 767px) {
    .about-main-title {
        margin-top: 80px;
    }
}

.oem-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.oem-title {
    font-size: 28px;
    text-align: center;
    color: #ec9b9f;
    margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
    .oem-title {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

.oem-lead {
    font-size: 18px;
    text-align: center;
    margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
    .oem-lead {
        text-align: left;
        font-size: 14px;
        margin-bottom: 30px;
    }
}

.oem-wrap-title {
    font-size: 24px;
    color: #ec9b9f;
    padding-bottom: 10px;
    border-bottom: 1px dotted #ec9b9f;
    margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
    .oem-wrap-title {
        font-size: 16px;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }
}

.oem-wrap-lead {
    font-size: 18px;
    margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
    .oem-wrap-lead {
        margin-bottom: 20px;
        font-size: 14px;
    }
}

.slider-container2 {
    margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
    .slider-container2 {
        margin-bottom: 30px;
    }
}

@media screen and (min-width: 768px) {
    .com2-flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-bottom: 80px;
    }
}

@media screen and (max-width: 767px) {
    .com2-flex {
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 767px) {
    .com2-flex li {
        width: 80%;
        margin: 0 auto 30px;
    }
}

@media screen and (min-width: 768px) {
    .com2-flex li {
        width: 30%;
    }
}

.multiple-items .slick-prev,
.multiple-items .slick-next {
    z-index: 2;
}

.multiple-items .slick-prev {
    left: 0 !important;
}

.multiple-items .slick-next {
    right: 0 !important;
}

.multiple-items .slick-slide {
    padding: 5px 10px;
}

.multiple-items .slick-next:before {
    content: "";
    background: url(../img/slider-arrow-right.png) no-repeat center center/cover;
    width: 40px;
    height: 40px;
    position: absolute;
    right: -33px !important;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
    .multiple-items .slick-next:before {
        right: -10px !important;
    }
}

.multiple-items .slick-prev:before {
    content: "";
    background: url(../img/slider-arrow-left.png) no-repeat center center/cover;
    width: 40px;
    height: 40px;
    position: absolute;
    left: -33px !important;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
    .multiple-items .slick-prev:before {
        left: -10px !important;
    }
}

.com3-title {
    font-size: 22px;
    font-family: "NotoSansJP-Bold";
    margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
    .com3-title {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

.oem-last {
    background: rgba(236, 155, 159, 0.1);
    padding: 100px 80px;
    padding: 40px 16px;
}

.slider-title {
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.slider-text {
    font-size: 14px;
}

@media screen and (max-width: 767px) {
    .slider-text {
        font-size: 14px;
    }
}

.center .slick-slide {
    padding: 0 30px;
}

.center .slick-next:before {
    content: "";
    background: url(../img/slider-arrow-right.png) no-repeat center center/cover;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 70px !important;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
    .center .slick-next:before {
        right: -10px !important;
    }
}

.center .slick-prev:before {
    content: "";
    background: url(../img/slider-arrow-left.png) no-repeat center center/cover;
    width: 40px;
    height: 40px;
    position: absolute;
    left: 70px !important;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
    .center .slick-prev:before {
        left: -10px !important;
    }
}

.center .slick-prev,
.center .slick-next {
    z-index: 2;
}

.qa32 .item-icon {
    padding-left: 60px;
    position: relative;
}

.qa32 .item-icon1::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -10px;
    content: "";
    background: url(../img/pro1.png) no-repeat center center/cover;
    width: 60px;
    height: 60px;
}

@media screen and (max-width: 767px) {
    .qa32 .item-icon1::after {
        width: 50px;
        height: 50px;
    }
}

.qa32 .item-icon2::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -10px;
    content: "";
    background: url(../img/pro2.png) no-repeat center center/cover;
    width: 60px;
    height: 60px;
}

@media screen and (max-width: 767px) {
    .qa32 .item-icon2::after {
        width: 50px;
        height: 50px;
    }
}

.qa32 .item-icon3::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -10px;
    content: "";
    background: url(../img/pro3.png) no-repeat center center/cover;
    width: 60px;
    height: 60px;
}

@media screen and (max-width: 767px) {
    .qa32 .item-icon3::after {
        width: 50px;
        height: 50px;
    }
}

.qa32 .item-icon4::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -10px;
    content: "";
    background: url(../img/pro4.png) no-repeat center center/cover;
    width: 60px;
    height: 60px;
}

@media screen and (max-width: 767px) {
    .qa32 .item-icon4::after {
        width: 50px;
        height: 50px;
    }
}

.qa32 .item-icon5::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -10px;
    content: "";
    background: url(../img/pro5.png) no-repeat center center/cover;
    width: 60px;
    height: 60px;
}

@media screen and (max-width: 767px) {
    .qa32 .item-icon5::after {
        width: 50px;
        height: 50px;
    }
}

.qa32 .item-icon6::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -10px;
    content: "";
    background: url(../img/pro6.png) no-repeat center center/cover;
    width: 60px;
    height: 60px;
}

@media screen and (max-width: 767px) {
    .qa32 .item-icon6::after {
        width: 50px;
        height: 50px;
    }
}

.qa32 .item-icon7::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -10px;
    content: "";
    background: url(../img/pro7.png) no-repeat center center/cover;
    width: 60px;
    height: 60px;
}

@media screen and (max-width: 767px) {
    .qa32 .item-icon7::after {
        width: 50px;
        height: 50px;
    }
}

.qa32 .item-icon8::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -10px;
    content: "";
    background: url(../img/pro8.png) no-repeat center center/cover;
    width: 60px;
    height: 60px;
}

@media screen and (max-width: 767px) {
    .qa32 .item-icon8::after {
        width: 50px;
        height: 50px;
    }
}

.qa32 .item-icon9::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -10px;
    content: "";
    background: url(../img/pro9.png) no-repeat center center/cover;
    width: 60px;
    height: 60px;
}

@media screen and (max-width: 767px) {
    .qa32 .item-icon9::after {
        width: 50px;
        height: 50px;
    }
}

.qa32 .item-icon10::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -10px;
    content: "";
    background: url(../img/pro10.png) no-repeat center center/cover;
    width: 60px;
    height: 60px;
}

@media screen and (max-width: 767px) {
    .qa32 .item-icon10::after {
        width: 50px;
        height: 50px;
    }
}

.section-inner3 {
    max-width: 900px;
    margin: 0 auto;
}

.top-about,
.top-movie {
    background: url(../img/top-about-bg.png) no-repeat center center/cover;
}

@media screen and (min-width: 768px) {
    .top-about,
    .top-movie {
        padding: 180px 0;
    }
}

@media screen and (max-width: 767px) {
    .top-about,
    .top-movie {
        padding: 80px 16px;
    }
}

@media screen and (min-width: 768px) {
    .top-about-ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media screen and (min-width: 768px) {
    .top-about-ul .left {
        width: calc(100% - 500px);
    }
}

@media screen and (max-width: 767px) {
    .top-about-ul .left {
        padding-bottom: 10px;
    }
}

@media screen and (min-width: 768px) {
    .top-about-ul .right {
        width: 500px;
        margin-right: 40px;
        padding-left: 50px;
    }
}

.top-about-ul .title {
    font-size: 22px;
    color: #ec9b9f;
    margin-bottom: 30px;
    font-family: "NotoSansJP-Bold";
}

@media screen and (max-width: 767px) {
    .top-about-ul .title {
        font-size: 16px;
        margin-bottom: 10px;
    }
}

.top-about-ul .text {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.8;
}

@media screen and (max-width: 767px) {
    .top-about-ul .text {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 767px) {
    .top-about-ul .btn {
        text-align: center;
    }
}

.top-about-ul .btn a {
    padding: 15px 40px;
    color: #ec9b9f;
    border: 1px solid #ec9b9f;
    border-radius: 30px;
    font-size: 18px;
    position: relative;
}

.top-about-ul .btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../img/arrow-pink.png) no-repeat center center/cover;
    width: 20px;
    height: 8px;
}

@media screen and (max-width: 767px) {
    .top-about-ul .btn a {
        font-size: 16px;
        padding: 10px 40px;
    }
}

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

@media screen and (max-width: 767px) {
    .news-btn {
        text-align: center;
        margin-top: 30px;
    }
}

.news-btn a {
    padding: 15px 40px;
    color: #ec9b9f;
    border: 1px solid #ec9b9f;
    border-radius: 30px;
    font-size: 18px;
    position: relative;
}

.news-btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../img/arrow-pink.png) no-repeat center center/cover;
    width: 20px;
    height: 8px;
}

@media screen and (max-width: 767px) {
    .news-btn a {
        font-size: 16px;
        padding: 10px 40px;
    }
}

.top-news-category {
    max-width: 900px;
    margin: 0 auto 80px;
}

.top-news-category .heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 18px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
    .top-news-category .heading {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

.top-news-category .time {
    margin-right: 20px;
}

@media screen and (max-width: 767px) {
    .top-news-category .time {
        margin-right: 10px;
        font-size: 14px;
    }
}

.top-news-category .category {
    font-size: 18px;
    color: #fff;
    background: #ec9b9f;
    padding: 0px 10px;
    line-height: 1.2;
    font-family: "CenturyGothic", serif;
}

@media screen and (max-width: 767px) {
    .top-news-category .category {
        font-size: 14px;
    }
}

.top-news-category .category.media {
    background: #f7931e;
}

.top-news-category .category.other {
    background: #666666;
}

.top-news-category .category.exhibition {
    background: #93278f;
}

.top-news-category .category.promotion {
    background: #39b44a;
}

.top-news-category .category.award {
    background: #29aae1;
}

.top-news-category h1 {
    font-size: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ec9b9f;
    margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
    .top-news-category h1 {
        font-size: 16px;
    }
}

.top-news-category h2 {
    font-size: 28px;
    padding-left: 20px;
    border-left: 4px solid #ec9b9f;
    line-height: 1.2;
    margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
    .top-news-category h2 {
        font-size: 16px;
    }
}

.top-news-category h3 {
    font-size: 22px;
    color: #ec9b9f;
}

@media screen and (max-width: 767px) {
    .top-news-category h3 {
        font-size: 15px;
    }
}

.top-news-category p {
    font-size: 18px;
    line-height: 2;
}

@media screen and (max-width: 767px) {
    .top-news-category p {
        font-size: 14px;
    }
}

@media screen and (min-width: 768px) {
    .top-news-category .bottom {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.top-news-category .bottom .thumbnail {
    position: relative;
}

@media screen and (min-width: 768px) {
    .top-news-category .bottom .thumbnail {
        width: 47%;
        margin-right: auto;
    }
}

.top-news-category .bottom .thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (min-width: 768px) {
    .top-news-category .bottom .content {
        width: 47%;
    }
}

.top-news-category .news-btn {
    margin-top: 80px;
    text-align: center;
}

.top-news-category .news-btn a {
    font-size: 20px;
    color: #ec9b9f;
    background: #fff;
    border: 1px solid #ec9b9f;
    padding: 10px 40px;
    border-radius: 30px;
    position: relative;
}

.top-news-category .news-btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../img/arrow-pink.png) no-repeat center center/cover;
    width: 20px;
    height: 8px;
}

@media screen and (max-width: 767px) {
    .top-news-category .news-btn {
        margin-top: 30px;
        padding: 10px 20px;
        font-size: 14px;
    }
}

.more-p {
    margin-top: 10px;
    text-align: right;
    padding-right: 0px;
    color: #ec9b9f;
    position: relative;
    font-family: "CenturyGothic", serif;
}

.more-p::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../img/arrow-pink.png) no-repeat center center/cover;
    width: 10px;
    height: 4px;
}

.multiple-items-top-news .slick-slide {
    padding: 0 20px;
}

.multiple-items-top-news .slick-prev,
.multiple-items-top-news .slick-next {
    z-index: 2;
}

.multiple-items-top-news .slick-prev {
    left: 0 !important;
}

.multiple-items-top-news .slick-next {
    right: 0 !important;
}

.multiple-items-top-news .slick-slide {
    padding: 5px 10px;
}

.multiple-items-top-news .slick-next:before {
    content: "";
    background: url(../img/slider-arrow-right.png) no-repeat center center/cover;
    width: 40px;
    height: 40px;
    position: absolute;
    right: -50px !important;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
    .multiple-items-top-news .slick-next:before {
        right: -30px !important;
    }
}

.multiple-items-top-news .slick-prev:before {
    content: "";
    background: url(../img/slider-arrow-left.png) no-repeat center center/cover;
    width: 40px;
    height: 40px;
    position: absolute;
    left: -50px !important;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
    .multiple-items-top-news .slick-prev:before {
        left: -30px !important;
    }
}

@media screen and (min-width: 768px) {
    .multiple-items-top-news .top-news-category .time {
        font-size: 13px;
        margin-right: 10px;
    }
}

@media screen and (min-width: 768px) {
    .multiple-items-top-news .category {
        font-size: 12px;
    }
}

@media screen and (min-width: 768px) {
    .multiple-items-top-news .heading {
        font-size: 13px;
        margin-bottom: 10px;
    }
}

@media screen and (min-width: 768px) {
    .multiple-items-top-news .time {
        margin-right: auto;
    }
}

@media screen and (min-width: 768px) {
    .multiple-items-top-news .title {
        font-size: 13px;
    }
}

@media screen and (max-width: 767px) {
    .multiple-items-top-news {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media screen and (min-width: 768px) {
    .multiple-items-top-news p {
        font-size: 13px;
    }
}

.top-news {
    margin-top: 0px;
}

@media screen and (max-width: 767px) {
    .top-news {
        margin-top: 140px;
    }
}

.top-movie {
    margin-top: 200px;
}

@media screen and (max-width: 767px) {
    .top-movie {
        margin-top: 140px;
    }
}

/*=============
slick
=============*/
.full {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    margin: 0;
    text-decoration: none;
}

.full .slick-dots {
    bottom: 4%;
    z-index: +1;
}

.slider-top {
    position: relative;
    z-index: 1;
    /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
    height: 100vh;
    /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    /*矢印の設定*/
    /*ドットナビゲーションの設定*/
}

.slider-top .slider-item {
    width: 100%;
    /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
}

@media screen and (min-width: 1600px) {
    .slider-top .slider-item {
        height: 100vh;
        /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    }
}

.slider-top .slick-prev,
.slider-top .slick-next {
    position: absolute;
    z-index: 3;
    top: 42%;
    cursor: pointer;
    /*マウスカーソルを指マークに*/
    outline: none;
    /*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #fff;
    /*矢印の色*/
    border-right: 2px solid #fff;
    /*矢印の色*/
    height: 25px;
    width: 25px;
}

.slider-top .slick-prev {
    /*戻る矢印の位置と形状*/
    left: 2.5%;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.slider-top .slick-next {
    /*次へ矢印の位置と形状*/
    right: 2.5%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.slider-top .slick-dots {
    position: relative;
    z-index: 3;
    text-align: center;
    margin: -50px 0 0 0;
    /*ドットの位置*/
}

.slider-top .slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.slider-top .slick-dots button {
    color: transparent;
    outline: none;
    width: 8px;
    /*ドットボタンのサイズ*/
    height: 8px;
    /*ドットボタンのサイズ*/
    display: block;
    border-radius: 50%;
    background: #fff;
    /*ドットボタンの色*/
}

.slider-top .slick-dots .slick-active button {
    background: #333;
    /*ドットボタンの現在地表示の色*/
}

@media screen and (min-width: 768px) {
    .center-s img {
        height: 220px;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

@media screen and (max-width: 767px) {
    .center-s img {
        height: 240px;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

@media screen and (max-width: 767px) {
    .drawer-heading .right {
        padding-bottom: 20px;
        border-bottom: 1px solid #ec9b9f;
    }
}

@media screen and (min-width: 768px) {
    .footer-heading .right .title {
        margin-bottom: 12px;
    }
}

.top {
    position: relative;
}

.thumbs-top li {
    margin-right: 15px;
}

.thumbs-top li span {
    border-radius: 50%;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.6);
    padding-top: 10px;
    width: 50px;
    height: 50px;
    text-align: center;
    display: block;
}

.thumbs-top-wrap {
    position: absolute;
    bottom: 40px;
    left: 10%;
    max-width: 300px;
    z-index: 10;
}

@media screen and (max-width: 767px) {
    .thumbs-top-wrap {
        max-width: 400px;
        margin: 0 auto;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        bottom: -20px;
    }
}

.thumbs-top-wrap .slick-slider .slick-track,
.thumbs-top-wrap .slick-slider .slick-list {
    height: 150px;
}

.thumbs-top-wrap .slick-current span {
    background: #fff;
}

.thumbs-top-wrap span {
    font-family: "CenturyGothic", serif;
    cursor: pointer;
}

.num1 {
    position: relative;
    top: 30px;
}

.num2 {
    position: relative;
    top: 20px;
}

.num3 {
    position: relative;
    top: 10px;
}

.num4 {
    position: relative;
    top: 0px;
}

.top .slick-slider {
    height: 100%;
}

.mv-news {
    position: relative;
    max-width: 500px;
}

.mv-news .title2 {
    font-size: 30px;
    font-family: "CenturyGothic", serif;
    color: #fff;
}

@media screen and (min-width: 768px) {
    .mv-news .title2 {
        margin-bottom: -100px;
    }
}

.mv-news .slick-prev {
    position: absolute;
    left: 80%;
    z-index: 2;
    bottom: -100px;
    -webkit-transform: translateY(92px);
    transform: translateY(92px);
}

.mv-news .slick-next {
    position: absolute;
    right: 5%;
    bottom: -100px;
    -webkit-transform: translateY(92px);
    transform: translateY(92px);
}

@media screen and (max-width: 767px) {
    .mv-news {
        max-width: 90%;
        margin: 0 auto;
    }
}

@media screen and (min-width: 768px) {
    .mv-news {
        position: absolute;
        right: 0;
        bottom: 100px;
        z-index: 20;
    }
}

.mv-news .top-news-category .heading {
    margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
    .mv-news .slick-slide {
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
        height: 300px;
    }
}

.mv-news li {
    padding: 20px;
    background: #fff;
    border-radius: 20px;
}

@media screen and (min-width: 768px) {
    .mv-news li {
        -webkit-box-shadow: 0 3px 6px #efe4e5;
        box-shadow: 0 3px 6px #efe4e5;
    }
}

@media screen and (max-width: 767px) {
    .mv-news li {
        border: 1px solid #efe4e5;
    }
}

.mv-news .top-news-category {
    margin-bottom: 0;
}

.mv-news li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.mv-news .left2 {
    width: 44%;
}

.mv-news .right2 {
    width: 50%;
}

.mv-news .top-news-category .time {
    margin-right: 10px;
    font-size: 13px;
}

.mv-news .top-news-category .category {
    font-size: 13px;
}

.mv-news .right2 .title {
    font-size: 14px;
}

.thumbnail {
    padding-top: 75%;
    position: relative;
}

.thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.mv-news {
    bottom: 50px;
}

.mv-news .slick-prev:before,
.mv-news .slick-next:before {
    font-family: "NotoSansCJKjp-Regular", "NotoSansJP-Regular", "NotoSansJP-Bold", "NotoSansJP-Medium", serif;
    color: #000;
    font-size: 30px;
}

@media screen and (max-width: 767px) {
    .mv-news .top-news-category .heading {
        display: block;
    }
}

@media screen and (max-width: 767px) {
    .mv-news .top-news-category .time {
        font-size: 14px;
        margin-bottom: 0px;
    }
}

@media screen and (max-width: 767px) {
    .mv-news .top-news-category .category {
        display: inline-block;
        font-size: 14px;
        margin-bottom: 0px;
    }
}

@media screen and (max-width: 767px) {
    .mv-news .top-news-category .heading {
        margin-bottom: 5px;
    }
}

.single .thumbnail {
    padding-top: 35%;
}

.single .bottom {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.slick-main span {
    display: block;
    line-height: 100px;
    position: relative;
    text-align: center;
    -webkit-transform: translate(0, 0) scale(0.4);
    transform: translate(0, 0) scale(0.4);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    opacity: 0.5;
}

.slick-main .slick-slide img {
    width: auto;
    height: 350px;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    .slick-main .slick-slide img {
        height: 200px;
    }
}

.slick-main .slick-slide.lt2 span {
    -webkit-transform: translate(-15%, 0) scale(0.3);
    transform: translate(-15%, 0) scale(0.3);
}

.slick-main .slick-slide.lt1 span {
    opacity: 0.7;
    -webkit-transform: translate(-15%, 0) scale(0.5);
    transform: translate(-15%, 0) scale(0.5);
}

.slick-main .slick-slide.gt1 span {
    opacity: 0.7;
    -webkit-transform: translate(15%, 0) scale(0.5);
    transform: translate(15%, 0) scale(0.5);
}

.slick-main .slick-slide.gt2 span {
    -webkit-transform: translate(15%, 0) scale(0.3);
    transform: translate(15%, 0) scale(0.3);
}

.slick-main .slick-slide.slick-center span {
    z-index: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.slick-main .slick-prev,
.slick-main .slick-next {
    position: absolute;
    top: 50%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin-top: -10px;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    color: transparent;
    outline: none;
    z-index: 100;
}

.slick-main .slick-prev {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 15px 15px 0;
    border-color: transparent #007bff transparent transparent;
    left: 0;
}

.slick-main .slick-next {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent #007bff;
    right: 0;
}

.slick-main .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #fff;
}

@media screen and (max-width: 767px) {
    .slick-current .a-6 img,
    .slick-current .a-7 img {
        height: 153px !important;
    }
}

@media screen and (max-width: 767px) {
    .slick-current .a-8 img {
        height: 153px !important;
    }
}

.back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.slick-center span.c-1 .back {
    background: red;
}

.change {
    position: relative;
}

.slick-dotted.slick-slider {
    z-index: 10;
}

.slick-sub {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slick-background img {
    height: 380px;
}

.slick-main .slick-dots {
    position: initial;
    bottom: -65px;
}

.b-1 .slick-sub-heading {
    background: #ff8f00;
}

.b-2 .slick-sub-heading {
    background: #f04442;
}

.b-3 .slick-sub-heading {
    background: #00c253;
}

.b-4 .slick-sub-heading {
    background: #ca9f54;
}

.b-5 .slick-sub-heading {
    background: #00bbde;
}

.b-6 .slick-sub-heading {
    background: #ff5b78;
}

.b-7 .slick-sub-heading {
    background: #ff7aa9;
}

.b-8 .slick-sub-heading {
    background: #6c4442;
}

.b-9 .slick-sub-heading {
    background: #427083;
}

.b-10 .slick-sub-heading {
    background: #edc74c;
}

.slick-sub-heading {
    padding: 30px 16px;
    position: relative;
    height: 180px;
}

.slick-sub-heading-wrap {
    position: absolute;
    -webkit-transform: translateX(150%);
    transform: translateX(150%);
    right: 50%;
    width: 400px;
}

@media screen and (max-width: 767px) {
    .slick-sub-heading-wrap {
        -webkit-transform: initial;
        transform: initial;
        right: initial;
        position: initial;
        width: 100%;
    }
}

.slick-sub {
    color: #fff;
}

.slick-sub .title {
    padding-left: 20px;
    border-left: 4px solid #fff;
    line-height: 1;
    margin-bottom: 20px;
}

.slick-sub .title .title-en {
    font-size: 16px;
    font-family: "CenturyGothic", serif;
    margin-bottom: 10px;
}

.slick-sub .title .title-ja {
    font-size: 20px;
}

.slick-sub .text {
    font-size: 14px;
}

.slick-sub-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #000;
}

.slick-sub-bottom .left {
    width: 60%;
}

.slick-sub-bottom .right {
    width: 40%;
    padding: 0px 60px;
}

.slick-sub-bottom .right .title {
    font-size: 40px;
    margin-bottom: 10px;
    font-family: "CenturyGothic", serif;
}

.slick-sub-bottom .right .title.color1 {
    color: #ff8f00;
}

.slick-sub-bottom .right .title.color2 {
    color: #f04442;
}

.slick-sub-bottom .right .title.color3 {
    color: #00c253;
}

.slick-sub-bottom .right .title.color4 {
    color: #ca9f54;
}

.slick-sub-bottom .right .title.color5 {
    color: #00bbde;
}

.slick-sub-bottom .right .title.color6 {
    color: #ff5b78;
}

.slick-sub-bottom .right .title.color7 {
    color: #ff7aa9;
}

.slick-sub-bottom .right .title.color8 {
    color: #6c4442;
}

.slick-sub-bottom .right .title.color9 {
    color: #427083;
}

.slick-sub-bottom .right .title.color10 {
    color: #edc74c;
}

.slick-sub-bottom .right span {
    font-family: "CenturyGothic", serif !important;
}

.slick-sub-bottom .right .span1 {
    font-size: 26px;
}

.slick-sub-bottom .right .span2 {
    font-size: 18px;
}

.slick-main {
    padding-bottom: 200px;
    margin-bottom: 100px;
}

.slick-sub-bottom {
    max-width: 1600px;
    margin: 0 auto;
}

.slick-sub-bottom .btn {
    margin-top: 20px;
}

.slick-sub-bottom .btn a {
    padding: 5px 40px;
    font-size: 16px;
    border-radius: 30px;
    border: 1px solid #000;
    display: inline-block;
    position: relative;
}

.slick-sub-bottom .btn a::after {
    content: "";
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    right: 15px;
    background: url(../img/arrow-black.png) no-repeat center center/cover;
    width: 20px;
    height: 8px;
}

.a1 {
    position: relative;
}

.fireworks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 767px) {
    .mv-news .slick-prev {
        position: absolute;
        left: 74%;
        z-index: 2;
        bottom: -119px;
        -webkit-transform: translateY(92px);
        transform: translateY(69px);
    }
    .mv-news .slick-next {
        -webkit-transform: translateY(69px);
        transform: translateY(69px);
    }
    .slick-sub-bottom {
        display: block;
    }
    .slick-sub-bottom .left {
        width: 100%;
    }
    .slick-sub-bottom .right {
        width: 100%;
        padding: 0 16px;
    }
    .slick-main {
        padding-bottom: 480px;
        margin-bottom: 100px;
    }
    .top-news {
        margin-top: 240px;
    }
    .top-movie {
        margin-top: 240px;
    }
    .slick-background img {
        height: 280px;
    }
    .slick-sub-bottom .right .title {
        font-size: 30px;
        margin-top: 10px;
    }
    .slick-sub-bottom .right .span1 {
        font-size: 20px;
    }
    .slick-sub-bottom .btn {
        text-align: center;
    }
    .top-news {
        margin-top: 110px;
    }
    .top-movie {
        margin-top: 110px;
    }
}

.a-1,
.a-2,
.a-3,
.a-4,
.a-5,
.a-6,
.a-7,
.a-8,
.a-9,
.a-10 {
    position: relative;
}

.change .slick-slide.slick-current .maru1 {
    width: 20px;
    height: 20px;
    background: #ec9b9f;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime 1s ease;
    animation: anime 1s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru11 {
    width: 20px;
    height: 20px;
    background: #ec9b9f;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime11 0.8s ease;
    animation: anime11 0.8s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru2 {
    width: 30px;
    height: 30px;
    background: #8484db;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime2 1s ease;
    animation: anime2 1s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru12 {
    width: 30px;
    height: 30px;
    background: #8484db;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime12 1s ease;
    animation: anime12 1s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru3 {
    width: 20px;
    height: 20px;
    background: yellow;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime3 0.8s ease;
    animation: anime3 0.8s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru13 {
    width: 20px;
    height: 20px;
    background: yellow;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime13 1s ease;
    animation: anime13 1s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru4 {
    width: 12px;
    height: 12px;
    background: #eb8c8c;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime4 1.1s ease;
    animation: anime4 1.1s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru14 {
    width: 12px;
    height: 12px;
    background: #8cd5eb;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime14 1s ease;
    animation: anime14 1s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru5 {
    width: 15px;
    height: 15px;
    background: #eb8c8c;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime5 0.9s ease;
    animation: anime5 0.9s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru15 {
    width: 15px;
    height: 15px;
    background: #f2a1d3;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime15 0.8s ease;
    animation: anime15 0.8s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru6 {
    width: 12px;
    height: 12px;
    background: green;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime6 1.2s ease;
    animation: anime6 1.2s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru16 {
    width: 12px;
    height: 12px;
    background: #a3dca3;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime16 0.7s ease;
    animation: anime16 0.7s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru7 {
    width: 24px;
    height: 24px;
    background: grey;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime7 1s ease;
    animation: anime7 1s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru17 {
    width: 24px;
    height: 24px;
    background: #e3b11c;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime17 1.1s ease;
    animation: anime17 1.1s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru8 {
    width: 15px;
    height: 15px;
    background: #5a5acb;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime8 0.6s ease;
    animation: anime8 0.6s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru18 {
    width: 15px;
    height: 15px;
    background: #4b4b7f;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime18 1s ease;
    animation: anime18 1s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru9 {
    width: 18px;
    height: 18px;
    background: #7a3434;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime9 1s ease;
    animation: anime9 1s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru19 {
    width: 18px;
    height: 18px;
    background: #4b2f2f;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime19 0.8s ease;
    animation: anime19 0.8s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru10 {
    width: 22px;
    height: 22px;
    background: #e59b9b;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime10 1s ease;
    animation: anime10 1s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru20 {
    width: 22px;
    height: 22px;
    background: #d39e9e;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime20 1s ease;
    animation: anime20 1s ease;
    opacity: 0;
    display: block;
}

@-webkit-keyframes anime {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(150px) scale(2);
        transform: translate(150px) scale(2);
        display: none;
    }
}

@keyframes anime {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(150px) scale(2);
        transform: translate(150px) scale(2);
        display: none;
    }
}

@-webkit-keyframes anime11 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-150px, 150px) scale(1.8);
        transform: translate(-150px, 150px) scale(1.8);
        display: none;
    }
}

@keyframes anime11 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-150px, 150px) scale(1.8);
        transform: translate(-150px, 150px) scale(1.8);
        display: none;
    }
}

@-webkit-keyframes anime2 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-130px) scale(2);
        transform: translate(-130px) scale(2);
        display: none;
    }
}

@keyframes anime2 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-130px) scale(2);
        transform: translate(-130px) scale(2);
        display: none;
    }
}

@-webkit-keyframes anime12 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-130px, -60px) scale(1.8);
        transform: translate(-130px, -60px) scale(1.8);
        display: none;
    }
}

@keyframes anime12 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-130px, -60px) scale(1.8);
        transform: translate(-130px, -60px) scale(1.8);
        display: none;
    }
}

@-webkit-keyframes anime3 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-130px, -130px) scale(2);
        transform: translate(-130px, -130px) scale(2);
        display: none;
    }
}

@keyframes anime3 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-130px, -130px) scale(2);
        transform: translate(-130px, -130px) scale(2);
        display: none;
    }
}

@-webkit-keyframes anime13 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(70px, -130px) scale(1.8);
        transform: translate(70px, -130px) scale(1.8);
        display: none;
    }
}

@keyframes anime13 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(70px, -130px) scale(1.8);
        transform: translate(70px, -130px) scale(1.8);
        display: none;
    }
}

@-webkit-keyframes anime4 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(150px, 150px) scale(2.4);
        transform: translate(150px, 150px) scale(2.4);
        display: none;
    }
}

@keyframes anime4 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(150px, 150px) scale(2.4);
        transform: translate(150px, 150px) scale(2.4);
        display: none;
    }
}

@-webkit-keyframes anime14 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(150px, -150px) scale(1.8);
        transform: translate(150px, -150px) scale(1.8);
        display: none;
    }
}

@keyframes anime14 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(150px, -150px) scale(1.8);
        transform: translate(150px, -150px) scale(1.8);
        display: none;
    }
}

@-webkit-keyframes anime5 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(80px, 70px) scale(1.5);
        transform: translate(80px, 70px) scale(1.5);
        display: none;
    }
}

@keyframes anime5 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(80px, 70px) scale(1.5);
        transform: translate(80px, 70px) scale(1.5);
        display: none;
    }
}

@-webkit-keyframes anime15 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(80px, -70px) scale(2.8);
        transform: translate(80px, -70px) scale(2.8);
        display: none;
    }
}

@keyframes anime15 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(80px, -70px) scale(2.8);
        transform: translate(80px, -70px) scale(2.8);
        display: none;
    }
}

@-webkit-keyframes anime6 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-80px, -70px) scale(1.8);
        transform: translate(-80px, -70px) scale(1.8);
        display: none;
    }
}

@keyframes anime6 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-80px, -70px) scale(1.8);
        transform: translate(-80px, -70px) scale(1.8);
        display: none;
    }
}

@-webkit-keyframes anime16 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-80px, 70px) scale(2.1);
        transform: translate(-80px, 70px) scale(2.1);
        display: none;
    }
}

@keyframes anime16 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-80px, 70px) scale(2.1);
        transform: translate(-80px, 70px) scale(2.1);
        display: none;
    }
}

@-webkit-keyframes anime7 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-180px, -170px) scale(1.8);
        transform: translate(-180px, -170px) scale(1.8);
        display: none;
    }
}

@keyframes anime7 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-180px, -170px) scale(1.8);
        transform: translate(-180px, -170px) scale(1.8);
        display: none;
    }
}

@-webkit-keyframes anime17 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-180px, 170px) scale(0.9);
        transform: translate(-180px, 170px) scale(0.9);
        display: none;
    }
}

@keyframes anime17 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-180px, 170px) scale(0.9);
        transform: translate(-180px, 170px) scale(0.9);
        display: none;
    }
}

@-webkit-keyframes anime8 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(130px, 130px) scale(1.8);
        transform: translate(130px, 130px) scale(1.8);
        display: none;
    }
}

@keyframes anime8 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(130px, 130px) scale(1.8);
        transform: translate(130px, 130px) scale(1.8);
        display: none;
    }
}

@-webkit-keyframes anime18 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-100px, 130px) scale(1.8);
        transform: translate(-100px, 130px) scale(1.8);
        display: none;
    }
}

@keyframes anime18 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-100px, 130px) scale(1.8);
        transform: translate(-100px, 130px) scale(1.8);
        display: none;
    }
}

@-webkit-keyframes anime9 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-130px, 60px) scale(1.8);
        transform: translate(-130px, 60px) scale(1.8);
        display: none;
    }
}

@keyframes anime9 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-130px, 60px) scale(1.8);
        transform: translate(-130px, 60px) scale(1.8);
        display: none;
    }
}

@-webkit-keyframes anime19 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-130px, 60px) scale(1.8);
        transform: translate(-130px, 60px) scale(1.8);
        display: none;
    }
}

@keyframes anime19 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-130px, 60px) scale(1.8);
        transform: translate(-130px, 60px) scale(1.8);
        display: none;
    }
}

@-webkit-keyframes anime10 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(130px, 60px) scale(1.8);
        transform: translate(130px, 60px) scale(1.8);
        display: none;
    }
}

@keyframes anime10 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(130px, 60px) scale(1.8);
        transform: translate(130px, 60px) scale(1.8);
        display: none;
    }
}

@-webkit-keyframes anime20 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-60px, 90px) scale(1.8);
        transform: translate(-60px, 90px) scale(1.8);
        display: none;
    }
}

@keyframes anime20 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-60px, 90px) scale(1.8);
        transform: translate(-60px, 90px) scale(1.8);
        display: none;
    }
}

.zyunbityu {
    padding: 300px 20px;
    text-align: center;
    font-size: 24px;
}

@media screen and (max-width: 767px) {
    .zyunbityu {
        padding: 150px 16px;
        font-size: 16px;
    }
}

.bogo-language-switcher {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 10px;
    position: relative;
    z-index: 1000;
}

.bogo-language-switcher li {
    margin-right: 10px;
}

.bogo-language-switcher li a {
    color: #ec9b9f;
}

.bogo-language-switcher .current {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    /* 線の太さ */
    text-underline-offset: 5px;
    color: #000;
}

.qa-nin-title {
    font-size: 28px;
    color: #ec9b9f;
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .qa-nin-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
}

.filter-contents .text-left {
    width: 300px;
}

.filter-contents .text-right {
    width: 600px;
}

@media screen and (min-width: 768px) {
    .filter-contents .list2 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .filter-contents .list2 li {
        width: 50%;
    }
}

.filter-flex {
    background: #fff;
}

@media screen and (max-width: 767px) {
    .filter-flex {
        padding-bottom: 50px;
    }
}

.confilm .radio_inner span {
    display: block !important;
}

.slick-sub-bottom .left {
    position: relative;
}

.home_detail_loader {
    width: 100%;
    height: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

.home_detail_loader .opa {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    opacity: 0;
}

.home_detail_loader span {
    display: block;
    height: 100%;
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    background: #141414;
}

.slick-sub .slick-sub-bottom .left {
    overflow: hidden;
}

.slick-sub .slick-slide.slick-current img {
    -webkit-animation: img 7s ease;
    animation: img 7s ease;
}

@-webkit-keyframes img {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    80% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

@keyframes img {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    80% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

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

@keyframes home_detail_off3 {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

.slick-sub .slick-slide.slick-current .opa {
    -webkit-animation: home_detail_off3 5s ease;
    animation: home_detail_off3 5s ease;
    opacity: 1;
}

.slick-sub .slick-slide.slick-current .home_detail_loader > div:nth-child(1) span,
.slick-sub .slick-slide.slick-current .home_detail_loader > div:nth-child(2) span,
.slick-sub .slick-slide.slick-current .home_detail_loader > div:nth-child(3) span,
.slick-sub .slick-slide.slick-current .home_detail_loader > div:nth-child(4) span {
    -webkit-animation: home_detail_off4 5s ease;
    animation: home_detail_off4 5s ease;
    width: 100%;
}

@-webkit-keyframes home_detail_off4 {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes home_detail_off4 {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .top-about-ul {
        padding: 0 16px;
    }
}

@media screen and (min-width: 768px) {
    .mv-news {
        right: -22px;
    }
    .mv-news .slick-prev {
        left: 75%;
    }
    .mv-news .slick-next {
        right: 10%;
    }
    .filter {
        padding-bottom: 30px;
    }
}

.top-movie {
    z-index: 1000;
}

.movie {
    width: 100%;
    margin: 100px 0;
}

@media screen and (max-width: 767px) {
    .movie {
        margin: 30px 0;
    }
}

.movie-wrap {
    padding-top: 56%;
    position: relative;
}

.movie-wrap video,
.movie-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.pro-ul2 .title {
    text-align: center;
}

@media screen and (max-width: 767px) {
    .mv-news {
        right: -50px;
        max-width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .top-news {
        margin-top: 0px;
        margin-bottom: 0px;
    }
}

@media screen and (max-width: 767px) {
    .mv-news li {
        padding: 20px 60px 50px 20px;
    }
}

@media screen and (max-width: 767px) {
    .mv-news .slick-prev {
        left: 50%;
    }
    .mv-news .slick-next {
        right: 30%;
    }
    .mv-news .slick-next {
        -webkit-transform: translateY(57px);
        transform: translateY(57px);
    }
    .mv-news .slick-prev {
        -webkit-transform: translateY(57px);
        transform: translateY(57px);
    }
}

@media screen and (max-width: 767px) {
    .filter {
        max-width: 65px;
        position: relative;
        top: -25px;
        right: 23px;
        text-align: right;
        margin-left: auto;
    }
    .filter a:hover {
        opacity: 1;
    }
}

@media screen and (max-width: 767px) {
    .thumbs-top-wrap {
        max-width: 283px;
        margin: 0 auto;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        bottom: -20px;
        width: 100%;
    }
    .qa-flex .title2 .img2 {
        width: 200px;
    }
}

.top-news-category .more-p {
    padding-right: 20px;
}

.top-news-category .more-p:after {
    right: 5px;
}

.slick-sub-bottom .title {
    padding-left: 0 !important;
}

@media screen and (min-width: 768px) {
    .top-movie {
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 767px) {
    .top-movie {
        padding: 80px 16px 40px;
    }
}

.text404 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
    .text404 {
        font-size: 14px;
        padding: 0 20px;
    }
}

.btn404 {
    text-align: center;
}

.btn404 a {
    color: #fff;
    background: #ec9b9f;
    padding: 10px 15px;
    font-size: 16px;
    min-width: 200px;
    border-radius: 30px;
    text-align: center;
    display: inline-block;
    position: relative;
}

@media screen and (max-width: 767px) {
    .btn404 a {
        font-size: 14px;
    }
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: #fff;
    text-align: center;
}

#loading_box {
    position: absolute;
    top: 45%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#loading .kvArea {
    width: 100%;
}

@media screen and (max-width: 767px) {
    #loading .kvArea {
        width: 300%;
    }
}

#loading .kvArea .img_box {
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    #loading .kvArea .img_box {
        width: 85%;
    }
}

#loading .kvArea .img_box video {
    max-width: 100%;
    height: auto;
}

.fadeUp {
    -webkit-animation-name: fadeUpAnime;
    animation-name: fadeUpAnime;
    -webkit-animation-duration: 1.8s;
    animation-duration: 1.8s;
    -webkit-animation-delay: 2.2s;
    animation-delay: 2.2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
    from {
        opacity: 0;
        -webkit-transform: translateY(80px);
        transform: translateY(80px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        -webkit-transform: translateY(80px);
        transform: translateY(80px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.thumbs-top-wrap .slick-slider .slick-track,
.thumbs-top-wrap .slick-slider .slick-list {
    -webkit-transform: translate3d(0px, 0px, 0px) !important;
    transform: translate3d(0px, 0px, 0px) !important;
}

@media screen and (min-width: 768px) {
    .mv-news .slick-slide {
        width: 500px !important;
    }
}

.skip-btn {
    z-index: 10000;
    position: fixed;
    top: 80%;
    left: 50%;
    border-radius: 30px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border: 1px solid #ec9b9f;
    padding: 5px 20px;
    color: #ec9b9f;
    cursor: pointer;
}

.skip-btn:hover {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

#loading.add {
    display: none !important;
}

.single .thumbnail {
    position: initial !important;
    padding-top: 0;
}

.single img {
    position: initial !important;
}

@media screen and (max-width: 767px) {
    .slick-main .slick-slide img {
        height: 150px !important;
    }
}

.slick-main .slick-slide img {
    -o-object-fit: cover;
    object-fit: cover;
}

.slick-main .slick-slide.slick-center span {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

@media screen and (max-width: 767px) {
    .slick-main .slick-slide img {
        height: 130px !important;
    }
}

.present-lead {
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .present-lead {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

.present-wrap {
    background: #fff;
    padding: 40px;
    margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
    .present-wrap {
        padding: 15px;
        margin-bottom: 30px;
    }
}

.present-wrap label {
    font-size: 18px;
    position: relative;
    padding-left: 45px;
    color: #ec9b9f;
}

@media screen and (max-width: 767px) {
    .present-wrap label {
        font-size: 14px;
    }
}

.present-wrap input[type="radio"]:checked + .mwform-radio-field-text::after {
    display: block;
}

.present-wrap input[type="radio"] {
    position: absolute;
    left: -200%;
    opacity: 0;
}

.present-wrap .mwform-radio-field-text {
    font-weight: bold;
}

.present-wrap .mwform-radio-field-text:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ccc;
}

.present-wrap .mwform-radio-field-text::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 8px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #ec9b9f;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: none;
}

.present-wrap .present-row2 .mwform-radio-field-text {
    font-weight: normal;
}

.present-wrap .radio_container1 {
    margin-right: 40px;
}

@media screen and (max-width: 767px) {
    .present-wrap .radio_container1 {
        margin-right: 20px;
    }
}

.present-wrap .design:before {
    content: "";
    position: initial;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.present-wrap .design::after {
    content: "";
    position: initial;
    top: 50%;
    left: 8px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #ec9b9f;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: none;
}

.present-wrap .radio_container1 {
    margin-right: 40px;
}

@media screen and (max-width: 767px) {
    .present-wrap .radio_container1 {
        margin-right: 20px;
    }
}

.present-row {
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
}

.present-row label {
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .present-row {
        padding: 10px 0;
    }
}

.present-row .present-text2 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #ec9b9f;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .present-row .present-text2 {
        font-size: 14px;
    }
}

.present-row2 label {
    color: #333;
    font-weight: 500;
}

.present-btn-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .present-btn-wrap {
        display: block;
    }
}

@media screen and (max-width: 767px) {
    .present-btn-wrap .btn {
        text-align: center;
    }
}

.present-btn-wrap .btn a {
    border-radius: 30px;
    display: inline-block;
    color: #ec9b9f;
    background-color: #fff;
    border: 2px solid #ec9b9f;
    color: #ec9b9f;
    font-weight: bold;
    padding: 5px 60px;
    position: relative;
}

@media screen and (max-width: 767px) {
    .present-btn-wrap .btn a {
        padding: 5px 20px;
        font-size: 14px;
        min-width: 300px;
    }
}

.present-btn-wrap .btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../img/arrow-pink.png) no-repeat center center/cover;
    width: 20px;
    height: 8px;
}

.present-btn-wrap .btn.in a {
    background: #ec9b9f;
    color: #fff;
}

.present-btn-wrap .btn.in a::after {
    background: url(../img/arrow-drawer.png) no-repeat center center/cover;
}

@media screen and (min-width: 768px) {
    .btn-right {
        margin-right: 40px;
    }
}

@media screen and (max-width: 767px) {
    .btn-right {
        margin-bottom: 10px;
    }
}

.footer-meta2 span {
    font-size: 13px;
    font-family: "kozuka-gothic-pr6n, sans-serif";
    font-weight: normal;
    display: block;
}

@media screen and (max-width: 767px) {
    .footer-meta2 span {
        font-size: 10px;
    }
}

.footer-meta3-text {
    display: inline-block;
    position: relative;
}

.footer-meta3-text span {
    position: absolute;
    bottom: -14px;
    left: -10px;
}

.free-tel {
    width: 35px;
    vertical-align: sub;
    margin-left: 5px;
    position: relative;
    top: -5px;
}

@media screen and (max-width: 767px) {
    .free-tel {
        width: 20px;
        top: -3px;
    }
}

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

.pre-confilm .present-row {
    border: none;
}

.pre-confilm .present-text2 {
    display: none;
}

.dengon-title {
    color: #ec9b9f;
    font-size: 18px;
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .dengon-title {
        font-size: 14px;
        margin-bottom: 10px;
    }
}

.select-row2 select {
    border: 1px solid #ccc;
    padding: 10px;
    max-width: 400px;
    margin-left: 10px;
}

@media screen and (max-width: 767px) {
    .select-row2 select {
        font-size: 12px;
        margin-left: 5px;
    }
}

.sele-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
    .sele-row {
        margin-bottom: 5px;
        display: block;
    }
}

@media screen and (max-width: 767px) {
    .p0831 {
        font-size: 13px;
    }
}

.title0831 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.select-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 700px;
}

.select-row select {
    border: 1px solid #ccc;
    padding: 10px;
}

@media screen and (max-width: 767px) {
    .select-row select {
        font-size: 12px;
    }
}

.select-row .set {
    margin-left: 10px;
    width: 60px;
}

@media screen and (max-width: 767px) {
    .select-row .set {
        margin-left: 5px;
        font-size: 10px;
        width: 50px;
    }
}

.select-row .main-select {
    width: calc(100% - 110px);
}

@media screen and (max-width: 767px) {
    .select-row .main-select {
        width: calc(100% - 90px);
    }
}

.select-row .num-select {
    margin-left: 40px;
    width: 50px;
}

@media screen and (max-width: 767px) {
    .select-row .num-select {
        margin-left: 10px;
        width: 40px;
    }
}

.present-attention {
    margin-top: 10px;
    font-size: 16px;
}

@media screen and (max-width: 767px) {
    .present-attention {
        font-size: 13px;
    }
}

.present-sub-title {
    font-size: 18px;
    margin-bottom: 5px;
}

@media screen and (max-width: 767px) {
    .present-sub-title {
        font-size: 14px;
    }
}

.present-sub-title.up {
    margin-top: 20px;
}

.total-wrap {
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    margin-top: 40px;
}

.total-wrap .price {
    min-width: 200px;
    text-align: right;
}

.total-wrap2 {
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    margin-top: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.total-wrap2 .text {
    font-size: 25px;
}

.total-wrap2 .price {
    min-width: 200px;
    font-size: 25px;
    text-align: right;
}

.total-en {
    font-size: 25px;
}

.total-wrap2-text {
    color: #ec9b9f;
    margin-right: 5px;
}

.total-last {
    font-size: 14px;
}

@media screen and (max-width: 767px) {
    .total-last {
        font-size: 12px;
    }
}

.total-last.pink {
    color: #ec9b9f;
}

.total-last.add {
    margin-top: 60px;
}

@media screen and (max-width: 767px) {
    .total-last.add {
        margin-top: 20px;
    }
}

.total-kingaku {
    position: absolute;
    left: 200%;
}

.mw_wp_form_confirm .total-wrap {
    opacity: 0;
}

.mw_wp_form_confirm .total-en {
    display: none;
}

.mw_wp_form_confirm .dengon-title {
    display: none !important;
}

.mw_wp_form_confirm .present-row {
    border-bottom: none !important;
}

.mw_wp_form_confirm #pro1,
.mw_wp_form_confirm #pro2,
.mw_wp_form_confirm #pro3 {
    display: block !important;
}

.none {
    display: none !important;
}

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

.atte0916 {
    color: #f52828;
    font-weight: 500;
}

/*==================================
レスポンシブ設定 マップ型変数breakpointsを定義
=================================*/
/*==================================
# 色、フォントファミリー
=================================*/
@font-face {
    font-family: "CenturyGothic";
    src: url("../font/CenturyGothic.ttc") format("truetype");
}

/*==================================
common(一般) - 全体に共通するスタイル
=================================*/
@media screen and (max-width: 767px) {
    .is-pc {
        display: none !important;
    }
}

@media screen and (min-width: 768px) {
    .is-sp {
        display: none !important;
    }
}

body {
    font-size: 16px;
    color: #333;
    font-family: "kozuka-gothic-pr6n, Noto Sans SC,sans-serif";
    line-height: 1.7;
    background: #fff;
    padding-top: 80px;
    overflow-x: hidden;
}

@media screen and (max-width: 767px) {
    body {
        padding-top: 70px;
    }
}

html {
    overflow-x: hidden;
}

.inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 120px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

@media screen and (max-width: 767px) {
    .inner {
        padding: 0 16px;
    }
}

img {
    width: 100%;
    vertical-align: bottom;
}

a {
    font-family: "kozuka-gothic-pr6n, sans-serif";
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #000;
}

a:hover {
    opacity: 0.6;
}

::-webkit-input-placeholder {
    color: rgba(62, 62, 62, 0.5);
    font-size: 18px;
}

:-ms-input-placeholder {
    color: rgba(62, 62, 62, 0.5);
    font-size: 18px;
}

::-ms-input-placeholder {
    color: rgba(62, 62, 62, 0.5);
    font-size: 18px;
}

::placeholder {
    color: rgba(62, 62, 62, 0.5);
    font-size: 18px;
}

@media screen and (max-width: 767px) {
    ::-webkit-input-placeholder {
        font-size: 14px;
    }
    :-ms-input-placeholder {
        font-size: 14px;
    }
    ::-ms-input-placeholder {
        font-size: 14px;
    }
    ::placeholder {
        font-size: 14px;
    }
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="submit"],
select,
textarea {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    background: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    width: 100%;
    padding: 20px;
    margin: 0;
    outline: none;
}

@media screen and (max-width: 767px) {
    input[type="text"],
    input[type="tel"],
    input[type="email"],
    input[type="submit"],
    select,
    textarea {
        padding: 10px;
    }
}

.drawer-icon {
    margin-left: 10px;
    z-index: 300;
    -webkit-transition: -webkit-transform 0.5s ease 0s;
    transition: -webkit-transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.drawer-icon.is-active .drawer-icon-bar1 {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 8px;
    -webkit-transition: -webkit-transform 0.5s ease 0s;
    transition: -webkit-transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.drawer-icon.is-active .drawer-icon-bar2 {
    opacity: 0;
    -webkit-transition: -webkit-transform 0.5s ease 0s;
    transition: -webkit-transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.drawer-icon.is-active .drawer-icon-bar3 {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 8px;
    -webkit-transition: -webkit-transform 0.5s ease 0s;
    transition: -webkit-transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.drawer-icon-bars {
    width: 30px;
    height: 30px;
    display: block;
    position: relative;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
    position: absolute;
    width: 30px;
    height: 3px;
    background: #ec9b9f;
    top: 0;
    left: 0;
    border-radius: 50px;
}

.drawer-icon-bar1 {
    top: 0;
    -webkit-transition: -webkit-transform 0.5s ease 0s;
    transition: -webkit-transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.drawer-icon-bar2 {
    top: 12px;
    -webkit-transition: -webkit-transform 0.5s ease 0s;
    transition: -webkit-transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.drawer-icon-bar3 {
    top: 24px;
    -webkit-transition: -webkit-transform 0.5s ease 0s;
    transition: -webkit-transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.drawer-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    background: #fff;
    z-index: 250;
    display: none;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.drawer-content.is-active {
    display: block;
}

@media screen and (max-width: 767px) {
    .drawer-content {
        overflow: auto;
    }
}

.drawer-icon-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.drawer-icon-nav ul li a {
    display: block;
    color: #333;
}

.header {
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 100;
}

.header.white {
    background: #fff;
}

@media screen and (max-width: 767px) {
    .header {
        height: 70px;
        background: #fff;
    }
}

.header-inner {
    height: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: initial;
    padding: 0 30px;
}

.headerLogo {
    width: 160px;
    margin-right: auto;
    position: relative;
    z-index: 1000;
}

@media screen and (max-width: 767px) {
    .headerLogo {
        width: 120px;
    }
}

.header-right-sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .header-right-sns {
        display: none;
    }
}

.header-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-right-sns-item {
    width: 35px;
    margin-right: 30px;
}

@media screen and (max-width: 767px) {
    .header-right-sns-item:last-child {
        margin-right: 0;
    }
}

.header-right-store {
    margin-right: 20px;
}

@media screen and (max-width: 767px) {
    .header-right-store {
        display: none;
    }
}

.header-right-store a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #333;
    padding: 5px 30px;
    border-radius: 28px;
}

.header-right-store .img {
    width: 35px;
    display: inline-block;
    margin-right: 10px;
}

.header-right-store .text {
    color: #333;
    font-family: "CenturyGothic", serif;
    font-size: 18px;
    display: inline-block;
}

.drawer-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 40px;
}

.drawer-heading .left {
    margin-right: 40px;
    min-width: 120px;
}

.drawer-heading .left .ul1 li {
    margin-bottom: 20px;
}

.drawer-heading .left .ul1 li a {
    font-size: 16px;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .drawer-heading .left .ul1 li a {
        font-size: 14px;
    }
}

.drawer-heading .right {
    overflow: hidden;
}

.drawer-heading .right .ul2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.drawer-heading .right .ul2 li {
    margin-bottom: 15px;
    width: 50%;
}

.drawer-heading .right .ul2 li a {
    font-size: 14px;
}

@media screen and (max-width: 767px) {
    .drawer-heading .right .ul2 li a {
        font-size: 12px;
    }
}

.drawer-qa-title {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.drawer-qa-title::after {
    position: absolute;
    top: 50%;
    right: -480px;
    width: 470px;
    height: 1px;
    background: #ec9b9f;
    content: "";
}

@media screen and (max-width: 767px) {
    .drawer-qa-title {
        font-size: 14px;
    }
}

.drawer-bottom-title {
    font-size: 16px;
    font-family: "CenturyGothic", serif;
    font-weight: bold;
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .drawer-bottom-title {
        font-size: 14px;
    }
}

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

.drawer-bottom .left {
    margin-right: 30px;
}

.drawer-bottom .sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.drawer-bottom .sns li {
    width: 35px;
    margin-right: 20px;
}

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

.drawer-bottom-flex .text {
    margin-right: 10px;
    font-size: 14px;
}

.drawer-bottom-flex .btn a {
    color: #fff;
    background: #ec9b9f;
    padding: 10px 15px;
    font-size: 16px;
    min-width: 200px;
    border-radius: 30px;
    text-align: center;
    display: inline-block;
    position: relative;
}

.drawer-bottom-flex .btn a::after {
    content: "";
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    right: 15px;
    background: url(../img/arrow-drawer.png) no-repeat center center/cover;
    width: 20px;
    height: 8px;
}

.footer {
    margin-top: 100px;
}

@media screen and (max-width: 767px) {
    .footer {
        margin-top: 40px;
    }
}

.footerLogo {
    margin-bottom: 20px;
    width: 160px;
    margin: 0 auto 20px;
}

@media screen and (max-width: 767px) {
    .footerLogo {
        width: 120px;
    }
}

.footer-meta1 {
    font-size: 16px;
    margin-bottom: 15px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .footer-meta1 {
        font-size: 14px;
    }
}

.footer-meta2 {
    font-size: 25px;
    margin-bottom: 20px;
    text-align: center;
    font-family: "CenturyGothic", serif;
}

@media screen and (max-width: 767px) {
    .footer-meta2 {
        font-size: 16px;
    }
}

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

@media screen and (max-width: 767px) {
    .footer-heading {
        display: block;
    }
}

.footer-heading .left {
    width: 50%;
    padding: 0 16px;
}

@media screen and (max-width: 767px) {
    .footer-heading .left {
        width: 100%;
    }
}

.footer-heading .right {
    width: 50%;
    padding: 0 16px;
    background: #ec9b9f;
    color: #fff;
    padding: 40px 60px;
}

@media screen and (max-width: 767px) {
    .footer-heading .right {
        width: 100%;
        padding: 40px 16px;
    }
}

.footer-heading .right .title {
    font-size: 25px;
    margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
    .footer-heading .right .title {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

.footer-heading .right .text {
    font-size: 16px;
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .footer-heading .right .text {
        font-size: 14px;
    }
}

.footer-heading .right .btn a {
    border-radius: 30px;
    display: inline-block;
    color: #ec9b9f;
    background-color: #fff;
    border: 1px solid #ec9b9f;
    padding: 5px 40px;
    position: relative;
}

.footer-heading .right .btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../img/arrow-pink.png) no-repeat center center/cover;
    width: 20px;
    height: 8px;
}

.footer-sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .footer-sns {
        margin-bottom: 20px;
    }
}

.footer-bottom {
    padding: 20px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .footer-bottom {
        display: block;
    }
}

.footer-bottom .left {
    width: 50%;
}

@media screen and (max-width: 767px) {
    .footer-bottom .left {
        width: 100%;
    }
}

.footer-bottom .left .ul1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .footer-bottom .left .ul1 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-bottom: 10px;
    }
}

.footer-bottom .left .ul1 li {
    margin-right: 10px;
}

.footer-bottom .left .ul1 li a {
    font-size: 13px;
    color: #333;
}

@media screen and (max-width: 767px) {
    .footer-bottom .left .ul1 li a {
        font-size: 13px;
    }
}

.footer-bottom .right {
    width: 50%;
    margin-left: auto;
}

@media screen and (max-width: 767px) {
    .footer-bottom .right {
        width: 100%;
    }
}

.footer-bottom .right .copyright {
    font-size: 12px;
    text-align: right;
}

@media screen and (max-width: 767px) {
    .footer-bottom .right .copyright {
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .footer-heading .right .btn {
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .footer-heading .right .title {
        text-align: center;
    }
}

.section {
    padding: 80px 0;
}

@media screen and (max-width: 767px) {
    .section {
        padding: 40px 0;
    }
}

.section2 {
    padding: 40px 0;
}

@media screen and (max-width: 767px) {
    .section2 {
        padding: 20px 0;
    }
}

.section-title {
    font-size: 40px;
    font-family: "CenturyGothic", serif;
    color: #ec9b9f;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
    .section-title {
        font-size: 30px;
        margin-bottom: 20px;
    }
}

.section-title-ja {
    font-size: 28px;
    font-family: "NotoSansCJKjp-Regular", "NotoSansJP-Regular", "NotoSansJP-Bold", "NotoSansJP-Medium", serif;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 80px;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .section-title-ja {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

.section-title-span {
    font-size: 16px;
    font-family: "NotoSansCJKjp-Regular", "NotoSansJP-Regular", "NotoSansJP-Bold", "NotoSansJP-Medium", serif;
    text-align: center;
    display: block;
    color: #000;
}

@media screen and (max-width: 767px) {
    .section-title-span {
        font-size: 16px;
    }
}

.company-se1 {
    max-width: 900px;
    margin: 0 auto;
}

.company-se1 .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #ec9b9f;
}

.company-se1 .row .dt {
    width: 150px;
    font-size: 18px;
    padding: 30px 20px;
    color: #ec9b9f;
}

@media screen and (max-width: 767px) {
    .company-se1 .row .dt {
        width: 100px;
        font-size: 12px;
        padding: 20px 10px;
    }
}

.company-se1 .row .dd {
    width: calc(100% - 150px);
    font-size: 18px;
    padding: 30px 20px;
}

@media screen and (max-width: 767px) {
    .company-se1 .row .dd {
        width: calc(100% - 100px);
        font-size: 12px;
        padding: 20px 10px;
    }
}

.company-se1 .map {
    max-width: 500px;
    margin: 20px 0;
}

@media screen and (max-width: 767px) {
    .company-se1 .map {
        margin: 10px 0;
    }
}

.company-se1 .map .map-wrap {
    width: 100%;
    padding-top: 75%;
    position: relative;
}

.company-se1 .map .map-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.tab-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.tab {
    background: #fff;
    border-radius: 30px;
    color: #ec9b9f;
    border: 1px solid #ec9b9f;
    width: calc(50% - 10px * 1 / 2);
    margin-right: 10px;
    text-align: center;
    padding: 5px;
    font-size: 16px;
}

.tab:nth-child(2n) {
    margin-right: 0;
}

.tab:nth-child(n + 3) {
    margin-top: 10px;
}

.panel {
    display: none;
}

.tab.is-active {
    background: #ec9b9f;
    color: #fff;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.panel.is-show {
    display: block;
}

.single .heading,
.category-ul .heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 18px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
    .single .heading,
    .category-ul .heading {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

.single .time,
.category-ul .time {
    margin-right: 20px;
}

@media screen and (max-width: 767px) {
    .single .time,
    .category-ul .time {
        margin-right: 10px;
        font-size: 14px;
    }
}

.single .category,
.category-ul .category {
    font-size: 18px;
    color: #fff;
    background: #ec9b9f;
    padding: 0px 10px;
    line-height: 1.2;
    font-family: "CenturyGothic", serif;
}

@media screen and (max-width: 767px) {
    .single .category,
    .category-ul .category {
        font-size: 14px;
    }
}

.single .category.media,
.category-ul .category.media {
    background: #f7931e;
}

.single .category.other,
.category-ul .category.other {
    background: #666666;
}

.single .category.exhibition,
.category-ul .category.exhibition {
    background: #93278f;
}

.single .category.promotion,
.category-ul .category.promotion {
    background: #39b44a;
}

.single .category.award,
.category-ul .category.award {
    background: #29aae1;
}

.single h1,
.category-ul h1 {
    font-size: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ec9b9f;
    margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
    .single h1,
    .category-ul h1 {
        font-size: 16px;
    }
}

.single h2,
.category-ul h2 {
    font-size: 28px;
    padding-left: 20px;
    border-left: 4px solid #ec9b9f;
    line-height: 1.2;
    margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
    .single h2,
    .category-ul h2 {
        font-size: 16px;
    }
}

.single h3,
.category-ul h3 {
    font-size: 22px;
    color: #ec9b9f;
}

@media screen and (max-width: 767px) {
    .single h3,
    .category-ul h3 {
        font-size: 15px;
    }
}

.single p,
.category-ul p {
    font-size: 18px;
    line-height: 2;
}

@media screen and (max-width: 767px) {
    .single p,
    .category-ul p {
        font-size: 14px;
    }
}

@media screen and (min-width: 768px) {
    .single .bottom,
    .category-ul .bottom {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .single .bottom.contents_max {
        display: block;
    }
    .single .bottom.contents_max .thumbnail,
    .single .bottom.contents_max .content {
        width: 100%;
    }
}

.single .bottom .thumbnail,
.category-ul .bottom .thumbnail {
    position: relative;
}

@media screen and (min-width: 768px) {
    .single .bottom .thumbnail,
    .category-ul .bottom .thumbnail {
        width: 47%;
        margin-right: auto;
    }
}

.single .bottom .thumbnail img,
.category-ul .bottom .thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (min-width: 768px) {
    .single .bottom .content,
    .category-ul .bottom .content {
        width: 47%;
    }
}

.single .news-btn,
.category-ul .news-btn {
    margin-top: 80px;
    text-align: center;
}

.single .news-btn a,
.category-ul .news-btn a {
    font-size: 20px;
    color: #ec9b9f;
    background: #fff;
    border: 1px solid #ec9b9f;
    padding: 10px 40px;
    border-radius: 30px;
    position: relative;
}

.single .news-btn a::after,
.category-ul .news-btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../img/arrow-pink.png) no-repeat center center/cover;
    width: 20px;
    height: 8px;
}

@media screen and (max-width: 767px) {
    .single .news-btn,
    .category-ul .news-btn {
        margin-top: 30px;
        padding: 10px 20px;
        font-size: 14px;
    }
}

.category-ul a {
    display: block;
}

@media screen and (min-width: 768px) {
    .category-ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        max-width: 900px;
        margin: 0 auto;
    }
}

.category-ul .heading {
    margin-bottom: 15px;
    font-size: 16px;
}

@media screen and (max-width: 767px) {
    .category-ul .heading {
        margin-bottom: 10px;
        font-size: 14px;
    }
}

.category-ul .thumbnail {
    margin-bottom: 10px;
    padding-top: 75%;
    position: relative;
}

.category-ul .thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (max-width: 767px) {
    .category-ul .thumbnail {
        margin-bottom: 10px;
    }
}

.category-ul .category {
    font-size: 16px;
}

@media screen and (max-width: 767px) {
    .category-ul .category {
        font-size: 14px;
    }
}

@media screen and (max-width: 767px) {
    .category-ul li {
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 768px) {
    .category-ul li {
        width: calc(33% - 30px * 2 / 3);
        margin-right: 30px;
    }
}

@media screen and (min-width: 768px) {
    .category-ul li:nth-child(3n) {
        margin-right: 0;
    }
}

@media screen and (min-width: 768px) {
    .category-ul li:nth-child(n + 4) {
        margin-top: 50px;
    }
}

.category-ul .more-p {
    margin-top: 10px;
    text-align: right;
    padding-right: 25px;
    color: #ec9b9f;
    position: relative;
    font-family: "CenturyGothic", serif;
}

.category-ul .more-p::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    background: url(../img/arrow-pink.png) no-repeat center center/cover;
    width: 20px;
    height: 8px;
}

.pagenation {
    text-align: center;
    margin-top: 50px;
    font-size: 20px;
}

@media screen and (max-width: 767px) {
    .pagenation {
        margin-top: 20px;
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .pagenation a,
    .pagenation span {
        margin: 0 5px;
    }
}

.slider-container {
    width: 47%;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    .slider-container {
        width: 100%;
        margin: 0 auto 40px;
    }
}

.single .slick-prev,
.single .slick-next {
    z-index: 2;
}

.single .slick-prev {
    left: 0 !important;
}

.single .slick-next {
    right: 0 !important;
}

.single .slick-slide {
    padding: 5px 10px;
}

.single .slick-next:before {
    content: "";
    background: url(../img/slider-arrow-right.png) no-repeat center center/cover;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 9px !important;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.single .slick-prev:before {
    content: "";
    background: url(../img/slider-arrow-left.png) no-repeat center center/cover;
    width: 40px;
    height: 40px;
    position: absolute;
    left: 9px !important;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.product-wrap {
    margin-bottom: 20px;
}

.product-wrap.first {
    margin-top: 50px;
}

@media screen and (max-width: 767px) {
    .product-wrap.first {
        margin-top: 20px;
    }
}

@media screen and (max-width: 767px) {
    .product-wrap {
        margin-bottom: 10px;
    }
}

.product-wrap p {
    font-size: 16px;
}

@media screen and (max-width: 767px) {
    .product-wrap p {
        font-size: 14px;
    }
}

.product-title {
    font-size: 20px;
    padding-bottom: 10px;
    border-bottom: 1px dotted #ec9b9f;
    color: #ec9b9f;
}

@media screen and (max-width: 767px) {
    .product-title {
        font-size: 16px;
    }
}

.product-name {
    font-size: 30px;
    margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
    .product-name {
        font-size: 20px;
    }
}

.online-btn {
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .online-btn {
        margin-bottom: 10px;
    }
}

.online-btn a {
    font-size: 25px;
    color: #ec9b9f;
    background: #fff;
    padding: 10px 40px;
    display: block;
    width: 100%;
    border: 1px solid #ec9b9f;
    text-align: center;
    border-radius: 30px;
}

@media screen and (max-width: 767px) {
    .online-btn a {
        font-size: 16px;
        padding: 10px 10px;
    }
}

.lp-btn {
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .lp-btn {
        margin-bottom: 10px;
    }
}

.lp-btn a {
    font-size: 25px;
    background: #ec9b9f;
    color: #fff;
    padding: 10px 40px;
    display: block;
    width: 100%;
    border: 1px solid #ec9b9f;
    text-align: center;
    border-radius: 30px;
}

@media screen and (max-width: 767px) {
    .lp-btn a {
        font-size: 16px;
        padding: 10px 10px;
    }
}

.pink {
    color: #ec9b9f;
    font-size: 23px;
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .pink {
        font-size: 16px;
        margin-bottom: 0px;
    }
}

/*=========
accordion
=========*/
.accordion_area .accordion_one .ac_header {
    background-color: transparent;
    padding: 1.5rem 4rem 1.5rem 2rem;
    position: relative;
    z-index: +1;
    cursor: pointer;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.accordion_area .accordion_one .ac_header .i_box {
    position: absolute;
    top: 50%;
    right: 2rem;
    width: 20px;
    height: 20px;
    margin-top: -10px;
}

.accordion_area .accordion_one .ac_header .i_box:before,
.accordion_area .accordion_one .ac_header .i_box:after {
    position: absolute;
    content: "";
    margin: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: middle;
}

.accordion_area .accordion_one .ac_header .i_box:before {
    border-top: 2px solid #000;
    width: 20px;
    height: 0;
    top: 0;
    bottom: 0;
    right: 0;
}

.accordion_area .accordion_one .ac_header .i_box:after {
    border-left: 2px solid #000;
    width: 0;
    height: 20px;
    top: 0;
    bottom: 0;
    right: 9px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.accordion_area .accordion_one .ac_header.open .i_box:after {
    height: 0;
}

.accordion_area .accordion_one .ac_inner {
    display: none;
    padding: 1.5rem 2rem 1.5rem 2rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #fff;
}

@media screen and (max-width: 767px) {
    .accordion_area .accordion_one .ac_inner {
        padding: 1rem 2rem 1rem 1rem;
    }
}

@media screen and (max-width: 736px) {
    .accordion_area .accordion_one .ac_header {
        padding: 1.5rem 2rem 1.5rem 1rem;
    }
}

@media screen and (max-width: 736px) and (max-width: 767px) {
    .accordion_area .accordion_one .ac_header {
        padding: 1rem 2rem 1rem 1rem;
    }
}

@media screen and (max-width: 736px) {
    .accordion_area .accordion_one .ac_header .i_box {
        right: 0.8rem;
        width: 15px;
        height: 15px;
        margin-top: -7px;
    }
    .accordion_area .accordion_one .ac_header .i_box:before {
        width: 15px;
    }
    .accordion_area .accordion_one .ac_header .i_box:after {
        height: 15px;
        right: 7px;
    }
    .accordion_area .accordion_one .ac_inner {
        padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    }
}

/*=========
faq
=========*/
.p-faq__headinner {
    display: block;
    padding-left: 35px;
    position: relative;
    line-height: 1.5;
}

.p-faq__headinner::before {
    position: absolute;
    left: 0;
    content: "Q.";
    color: #ec9b9f;
    font-size: 20px;
    padding: 0 5px;
    font-weight: bold;
    font-family: "CenturyGothic", serif;
}

.p-faq__headinner p.p-faq__q-txt {
    font-size: 20px;
}

@media screen and (max-width: 736px) {
    .p-faq__headinner {
        padding-left: 25px;
    }
    .p-faq__headinner::before {
        font-size: 14px;
    }
    .p-faq__headinner p.p-faq__q-txt {
        font-size: 14px;
    }
}

.p-faq__bodyinner {
    display: block;
    padding-left: 35px;
    position: relative;
    line-height: 1.5;
}

.p-faq__bodyinner::before {
    position: absolute;
    left: 0;
    content: "A.";
    color: #fff;
    padding: 0 5px;
    background-color: #ec9b9f;
    font-size: 20px;
    margin-right: 10px;
    font-weight: bold;
    font-family: "CenturyGothic", serif;
}

.p-faq__bodyinner p.p-faq__a-txt {
    font-size: 16px;
}

@media screen and (max-width: 736px) {
    .p-faq__bodyinner {
        padding-left: 25px;
    }
    .p-faq__bodyinner::before {
        font-size: 14px;
        background: #ec9b9f;
    }
    .p-faq__bodyinner p.p-faq__a-txt {
        font-size: 14px;
    }
}

/*=========
base
=========*/
.s_section {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 10px;
}

ul.list-disc {
    margin-bottom: 0;
    padding-left: 0;
}

.list-disc__item {
    margin-left: 1.5em;
    list-style: disc;
}

a._a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 2em 1em;
    border: 1px solid #222222;
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, #ffffff), color-stop(50%, #222222));
    background: linear-gradient(to right, #ffffff 50%, #222222 50%);
    background-size: 200% auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #222222;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: relative;
}

a._a:after {
    content: "";
    position: absolute;
    right: -5px;
    bottom: -5px;
    width: 100%;
    height: 100%;
    border-right: 1px solid #222222;
    border-bottom: 1px solid #222222;
}

a._a:hover {
    color: #ffffff;
    background-position: -100% 0;
}

.accordion_area .accordion_one .ac_header {
    border: none;
    border-top: 1px solid #ec9b9f;
}

.accordion_one:last-child {
    border-bottom: 1px solid #ec9b9f;
}

.pink-wrap {
    background: #ec9b9f;
    background: rgba(236, 155, 159, 0.1);
    padding-top: 50px;
    padding-bottom: 40px;
}

@media screen and (max-width: 767px) {
    .pink-wrap {
        padding-top: 20px;
        padding-bottom: 10px;
    }
}

.qa2 .p-faq__headinner::before {
    content: "";
}

.qa2 .p-faq__headinner {
    padding-left: 0;
}

.qa2 .accordion_area .accordion_one .ac_header {
    border: none;
    border: 1px solid #ec9b9f;
}

.qa2 .accordion_one {
    margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
    .qa2 .accordion_one {
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 768px) {
    .qa2 .p-faq__bodyinner {
        padding-left: 0px;
    }
}

@media screen and (min-width: 768px) {
    .qa2 .p-faq__bodyinner::before {
        left: 23px;
    }
}

.qa2 .p-faq__bodyinner::before {
    content: "";
}

@media screen and (max-width: 767px) {
    .qa2 .p-faq__bodyinner {
        padding-left: 0;
    }
}

.qa2 .accordion_area .accordion_one .ac_inner {
    background: rgba(236, 155, 159, 0.1);
}

@media screen and (max-width: 767px) {
    .qa2 .accordion_area .accordion_one .ac_inner {
        padding: 1rem 2rem 1rem 1rem;
    }
}

.qa2 .p-faq__bodyinner {
    border-bottom: 1px solid #ec9b9f;
    padding-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .qa2 .p-faq__bodyinner {
        padding-bottom: 10px;
    }
}

.qa2 .p-faq__bodyinner:last-child {
    border-bottom: none;
}

.qa2 .ac_inner {
    border-bottom: 1px solid #ec9b9f;
}

.qa2 p {
    font-size: 20px;
}

@media screen and (max-width: 767px) {
    .qa2 p {
        font-size: 14px;
    }
}

.qa2 .p-faq__bodyinner {
    margin-bottom: 20px;
}

.qa2 .p-faq__bodyinner.last {
    border-bottom: none;
}

.qa2 .accordion_one:last-child {
    border-bottom: none;
}

.qa2 .p-faq__a-txt {
    position: relative;
    padding-left: 45px;
}

@media screen and (max-width: 767px) {
    .qa2 .p-faq__a-txt {
        padding-left: 32px;
    }
}

.qa2 .p-faq__a-txt::before {
    position: absolute;
    left: 0;
    content: "A.";
    color: #fff;
    padding: 0 5px;
    background-color: #ec9b9f;
    font-size: 20px;
    margin-right: 10px;
    font-weight: bold;
    font-family: "CenturyGothic", serif;
}

@media screen and (max-width: 767px) {
    .qa2 .p-faq__a-txt::before {
        font-size: 14px;
    }
}

.qa2 {
    padding-top: 0;
}

@media screen and (max-width: 767px) {
    .qa2 .accordion_area .accordion_one .ac_inner {
        padding: 1rem 1rem 1rem 1rem;
    }
}

.qa2 .accordion_area .accordion_one .ac_inner {
    padding-bottom: 0;
}

.q-f {
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .q-f {
        margin-bottom: 10px;
    }
}

.p-faq__headinner::before {
    background: #fff;
}

.q-span {
    font-family: "CenturyGothic", serif;
    font-size: 20px;
    padding: 3px 4px;
    margin-right: 15px;
    background: #fff;
}

@media screen and (max-width: 767px) {
    .q-span {
        font-size: 14px;
        margin-right: 7px;
    }
}

.q-span.pink {
    background: #ec9b9f;
    color: #fff;
    margin-left: 20px;
}

@media screen and (max-width: 767px) {
    .q-span.pink {
        font-size: 14px;
        margin-left: 0;
    }
}

@media screen and (min-width: 768px) {
    .qa-flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (min-width: 768px) {
    .qa-flex .left {
        width: 50%;
        padding: 0 30px;
        border-right: 1px dotted #ec9b9f;
    }
}

@media screen and (max-width: 767px) {
    .qa-flex .left {
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 768px) {
    .qa-flex .right {
        width: 50%;
        padding: 0 30px;
    }
}

.qa-flex .title2 {
    font-size: 25px;
    color: #ec9b9f;
    margin-bottom: 30px;
    position: relative;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .qa-flex .title2 {
        margin-bottom: 50px;
    }
}

.qa-flex .title2 span {
    position: relative;
}

.qa-flex .title2 .img2 {
    position: absolute;
    bottom: -20px;
    width: 110%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
    .qa-flex .title2 {
        font-size: 16px;
        margin-bottom: 30px;
    }
}

.text-center {
    text-align: center;
    font-size: 16px;
}

@media screen and (max-width: 767px) {
    .text-center {
        font-size: 14px;
    }
}

.tel {
    font-family: "CenturyGothic", serif;
    font-size: 30px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .tel {
        font-size: 16px;
    }
}

.tel a {
    color: #ec9b9f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: bold;
    font-family: "CenturyGothic", serif;
}

.tel span {
    color: #fff;
    background: #ec9b9f;
    padding: 5px 10px;
    font-size: 20px;
    line-height: 1;
    margin-right: 10px;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .tel span {
        font-size: 14px;
    }
}

.form-btn {
    text-align: center;
    margin-top: 20px;
}

.form-btn a {
    color: #ec9b9f;
    border: 1px solid #ec9b9f;
    background: transparent;
    padding: 10px 40px;
    text-align: center;
    border-radius: 30px;
    font-size: 20px;
    position: relative;
}

@media screen and (max-width: 767px) {
    .form-btn a {
        font-size: 16px;
    }
}

.form-btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../img/arrow-pink.png) no-repeat center center/cover;
    width: 20px;
    height: 8px;
}

@media screen and (max-width: 767px) {
    .pink-wrap2 {
        padding-bottom: 30px;
    }
}

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

.top-flex label {
    font-size: 18px;
    position: relative;
    padding-left: 45px;
}

@media screen and (max-width: 767px) {
    .top-flex label {
        font-size: 14px;
    }
}

.top-flex input[type="radio"]:checked + span::after {
    display: block;
}

.top-flex input[type="radio"] {
    position: absolute;
    left: -200%;
    opacity: 0;
}

.design:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.design::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 8px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #ec9b9f;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: none;
}

.radio_container1 {
    margin-right: 40px;
}

@media screen and (max-width: 767px) {
    .radio_container1 {
        margin-right: 20px;
    }
}

.contact-width {
    max-width: 900px;
    margin: 0 auto;
}

.contact-form {
    max-width: 900px;
    margin: 80px auto 0;
}

@media screen and (max-width: 767px) {
    .contact-form {
        margin: 40px auto 0;
    }
}

.contact-form .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
    .contact-form .row {
        margin-bottom: 15px;
        display: block;
    }
}

.contact-form .dt {
    width: 280px;
    font-size: 18px;
    padding: 20px;
}

@media screen and (max-width: 767px) {
    .contact-form .dt {
        font-size: 14px;
        padding: 20px;
        width: 100%;
        padding: 0;
        margin-bottom: 5px;
    }
}

.contact-form .dd {
    width: calc(100% - 280px);
    font-size: 18px;
}

@media screen and (max-width: 767px) {
    .contact-form .dd {
        font-size: 14px;
        width: 100%;
    }
}

textarea {
    height: 300px;
    resize: none;
}

@media screen and (max-width: 767px) {
    textarea {
        height: 200px;
    }
}

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

@media screen and (max-width: 767px) {
    .dd-flex {
        display: block;
    }
}

.dd-flex .left {
    width: 47%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .dd-flex .left {
        width: 100%;
        margin-bottom: 10px;
    }
}

.dd-flex .right {
    width: 47%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .dd-flex .right {
        width: 100%;
    }
}

.dd-name {
    min-width: 50px;
    margin-right: 10px;
}

.check {
    margin: 0 auto 50px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .check {
        font-size: 14px;
        margin: 0 auto 25px;
    }
}

.contact-text {
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 80px;
}

@media screen and (max-width: 767px) {
    .contact-text {
        margin-bottom: 15px;
        margin-top: 40px;
        font-size: 12px;
    }
}

.infobox {
    padding: 20px 40px;
    height: 300px;
    /* 高さを制限(※) */
    overflow: scroll;
    /* スクロールバーを表示(※) */
    border: #000 1px solid;
    /* 枠線を追加 */
    background-color: #fff;
    /* 背景色を追加 */
}

@media screen and (max-width: 767px) {
    .infobox {
        font-size: 13px;
        padding: 10px;
    }
}

.submit {
    text-align: center;
    padding-bottom: 100px;
}

input[type="submit"] {
    font-size: 20px;
    border: 1px solid #ec9b9f;
    border-radius: 30px;
    padding: 15px 40px;
    background: #fff;
    color: #ec9b9f;
    display: inline-block;
    max-width: 300px;
    margin-top: 40px;
}

@media screen and (max-width: 767px) {
    input[type="submit"] {
        font-size: 16px;
    }
}

.submit-wrap {
    display: inline-block;
}

@media screen and (max-width: 767px) {
    .dd-name {
        width: 40px;
        margin-right: 5px;
    }
}

.drawer-heading .right .ul2 li a {
    color: #ec9b9f;
}

@media screen and (max-width: 767px) {
    .drawer-heading {
        display: block;
    }
    .drawer-icon-nav {
        position: initial;
        top: initial;
        left: initial;
        -webkit-transform: initial;
        transform: initial;
    }
    .drawer-heading .right .ul2 li a {
        color: #ec9b9f;
    }
    .drawer-heading .right .ul2 {
        display: block;
    }
    .drawer-heading .right .ul2 li {
        width: 100%;
        margin-bottom: 10px;
    }
    .drawer-bottom {
        display: block;
    }
    .drawer-bottom-flex {
        display: block;
    }
    .drawer-heading {
        margin-top: 100px;
    }
    .drawer-content {
        padding: 0 16px;
    }
    .drawer-heading .right .ul2 {
        padding: 0 20px;
    }
    .drawer-bottom .left {
        margin-bottom: 20px;
    }
    .drawer-bottom-flex .text {
        margin-bottom: 20px;
    }
    .btn {
        margin-bottom: 30px;
    }
}

html {
    scroll-behavior: smooth;
}

.filter {
    max-width: 120px;
    margin-left: 80px;
    position: relative;
    z-index: 10;
}

@media screen and (max-width: 767px) {
    .filter {
        margin-left: 16px;
        max-width: 120px;
        position: relative;
        top: -10px;
    }
}

@media screen and (max-width: 767px) {
    .single .thumbnail {
        padding-top: 0% !important;
        margin-bottom: 10px;
    }
}

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

@media screen and (max-width: 767px) {
    .filter-flex {
        display: block;
    }
}

@media screen and (min-width: 768px) {
    .filter-flex .title {
        font-size: 18px !important;
        margin-bottom: 20px;
    }
}

.filter-flex li,
.filter-flex article {
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .filter-flex .text {
        width: 300px;
        margin-right: 80px;
    }
    .filter-flex .text:last-child {
        margin-right: 0;
    }
}

.overlay-product {
    position: absolute;
    z-index: 1;
    top: 300px;
    left: 0;
    width: 100%;
    height: 200%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
}

@media screen and (max-width: 767px) {
    .overlay-product {
        height: 1000%;
    }
}

.filter-contents {
    display: none;
    position: relative;
    z-index: 1;
}

@media screen and (min-width: 768px) {
    .filter-contents {
        padding: 0px 0;
    }
}

.filter-content {
    width: 100%;
    height: 500px;
    z-index: 9;
    background: #fff;
    padding: 0 80px;
}

@media screen and (max-width: 767px) {
    .filter-content {
        height: 900px;
    }
}

@media screen and (max-width: 767px) {
    .filter-content {
        padding: 0 16px;
    }
}

.filter-content .title {
    font-size: 20px;
    padding-bottom: 10px;
    border-bottom: 1px dotted #ec9b9f;
    color: #ec9b9f;
}

@media screen and (max-width: 767px) {
    .filter-content .title {
        font-size: 16px;
    }
}

.filter-content .cat-item {
    font-size: 16px;
}

@media screen and (max-width: 767px) {
    .filter-content .cat-item {
        font-size: 14px;
    }
}

.filter-content a {
    font-size: 16px;
}

@media screen and (max-width: 767px) {
    .filter-content a {
        font-size: 14px !important;
    }
}

@media screen and (min-width: 768px) {
    .about1-flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        margin-bottom: 80px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

@media screen and (max-width: 767px) {
    .about1-flex {
        margin-bottom: 40px;
    }
}

@media screen and (min-width: 768px) {
    .about1-flex .left {
        width: 46%;
    }
}

@media screen and (max-width: 767px) {
    .about1-flex .left {
        margin-bottom: 10px;
    }
}

@media screen and (min-width: 768px) {
    .about1-flex .right {
        width: 46%;
    }
}

.en {
    font-family: "CenturyGothic";
}

.about-title-en {
    font-size: 30px;
    color: #ec9b9f;
    margin-bottom: 40px;
    font-family: "CenturyGothic", serif;
}

@media screen and (max-width: 767px) {
    .about-title-en {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

.about-lead {
    font-size: 22px;
    color: #ec9b9f;
    margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
    .about-lead {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

.about-text {
    font-size: 18px;
}

@media screen and (max-width: 767px) {
    .about-text {
        font-size: 14px;
    }
}

.about-main-title {
    font-size: 30px;
    position: relative;
    text-align: center;
    margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
    .about-main-title {
        font-size: 18px;
        margin-bottom: 30px;
    }
}

.about-main-title::after {
    position: absolute;
    content: "";
    bottom: -10px;
    width: 30px;
    height: 4px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #ec9b9f;
}

.about-title-ja {
    font-size: 30px;
    color: #ec9b9f;
    margin-bottom: 40px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .about-title-ja {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

.about-text-center {
    font-size: 18px;
    margin-bottom: 40px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .about-text-center {
        font-size: 14px;
        margin-bottom: 20px;
        padding: 0 16px;
    }
}

.wrap-pink2 {
    background: rgba(236, 155, 159, 0.1);
}

@media screen and (min-width: 768px) {
    .no-reverse {
        -webkit-box-orient: initial;
        -webkit-box-direction: initial;
        -ms-flex-direction: initial;
        flex-direction: initial;
        margin-top: 100px;
    }
}

.section-inner {
    padding-left: 80px;
    padding-right: 80px;
}

@media screen and (max-width: 767px) {
    .section-inner {
        padding-left: 16px;
        padding-right: 16px;
    }
}

.con-btn {
    margin-top: 40px;
}

@media screen and (max-width: 767px) {
    .con-btn {
        margin-top: 20px;
        text-align: center;
    }
}

.con-btn a {
    color: #ec9b9f;
    font-size: 18px;
    border: 1px solid #ec9b9f;
    border-radius: 30px;
    padding: 15px 40px;
    position: relative;
}

@media screen and (max-width: 767px) {
    .con-btn a {
        font-size: 16px;
    }
}

.con-btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../img/arrow-pink.png) no-repeat center center/cover;
    width: 20px;
    height: 8px;
}

.center-s .slick-prev,
.center-s .slick-next {
    z-index: 2;
}

.center-s .slick-prev {
    left: 0 !important;
}

.center-s .slick-next {
    right: 0 !important;
}

.center-s .slick-slide {
    padding: 0 15px;
}

.center-s .slick-next:before {
    content: "";
    background: url(../img/slider-arrow-right.png) no-repeat center center/cover;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 30px !important;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.center-s .slick-prev:before {
    content: "";
    background: url(../img/slider-arrow-left.png) no-repeat center center/cover;
    width: 40px;
    height: 40px;
    position: absolute;
    left: 30px !important;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.about-main-title {
    margin-top: 160px;
}

@media screen and (max-width: 767px) {
    .about-main-title {
        margin-top: 80px;
    }
}

.oem-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.oem-title {
    font-size: 28px;
    text-align: center;
    color: #ec9b9f;
    margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
    .oem-title {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

.oem-lead {
    font-size: 18px;
    text-align: center;
    margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
    .oem-lead {
        text-align: left;
        font-size: 14px;
        margin-bottom: 30px;
    }
}

.oem-wrap-title {
    font-size: 24px;
    color: #ec9b9f;
    padding-bottom: 10px;
    border-bottom: 1px dotted #ec9b9f;
    margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
    .oem-wrap-title {
        font-size: 16px;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }
}

.oem-wrap-lead {
    font-size: 18px;
    margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
    .oem-wrap-lead {
        margin-bottom: 20px;
        font-size: 14px;
    }
}

.slider-container2 {
    margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
    .slider-container2 {
        margin-bottom: 30px;
    }
}

@media screen and (min-width: 768px) {
    .com2-flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-bottom: 80px;
    }
}

@media screen and (max-width: 767px) {
    .com2-flex {
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 767px) {
    .com2-flex li {
        width: 80%;
        margin: 0 auto 30px;
    }
}

@media screen and (min-width: 768px) {
    .com2-flex li {
        width: 30%;
    }
}

.multiple-items .slick-prev,
.multiple-items .slick-next {
    z-index: 2;
}

.multiple-items .slick-prev {
    left: 0 !important;
}

.multiple-items .slick-next {
    right: 0 !important;
}

.multiple-items .slick-slide {
    padding: 5px 10px;
}

.multiple-items .slick-next:before {
    content: "";
    background: url(../img/slider-arrow-right.png) no-repeat center center/cover;
    width: 40px;
    height: 40px;
    position: absolute;
    right: -33px !important;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
    .multiple-items .slick-next:before {
        right: -10px !important;
    }
}

.multiple-items .slick-prev:before {
    content: "";
    background: url(../img/slider-arrow-left.png) no-repeat center center/cover;
    width: 40px;
    height: 40px;
    position: absolute;
    left: -33px !important;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
    .multiple-items .slick-prev:before {
        left: -10px !important;
    }
}

.com3-title {
    font-size: 22px;
    font-family: "NotoSansJP-Bold";
    margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
    .com3-title {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

.oem-last {
    background: rgba(236, 155, 159, 0.1);
    padding: 100px 80px;
    padding: 40px 16px;
}

.slider-title {
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.slider-text {
    font-size: 14px;
}

@media screen and (max-width: 767px) {
    .slider-text {
        font-size: 14px;
    }
}

.center .slick-slide {
    padding: 0 30px;
}

.center .slick-next:before {
    content: "";
    background: url(../img/slider-arrow-right.png) no-repeat center center/cover;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 70px !important;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
    .center .slick-next:before {
        right: -10px !important;
    }
}

.center .slick-prev:before {
    content: "";
    background: url(../img/slider-arrow-left.png) no-repeat center center/cover;
    width: 40px;
    height: 40px;
    position: absolute;
    left: 70px !important;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
    .center .slick-prev:before {
        left: -10px !important;
    }
}

.center .slick-prev,
.center .slick-next {
    z-index: 2;
}

.qa32 .item-icon {
    padding-left: 60px;
    position: relative;
}

.qa32 .item-icon1::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -10px;
    content: "";
    background: url(../img/pro1.png) no-repeat center center/cover;
    width: 60px;
    height: 60px;
}

@media screen and (max-width: 767px) {
    .qa32 .item-icon1::after {
        width: 50px;
        height: 50px;
    }
}

.qa32 .item-icon2::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -10px;
    content: "";
    background: url(../img/pro2.png) no-repeat center center/cover;
    width: 60px;
    height: 60px;
}

@media screen and (max-width: 767px) {
    .qa32 .item-icon2::after {
        width: 50px;
        height: 50px;
    }
}

.qa32 .item-icon3::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -10px;
    content: "";
    background: url(../img/pro3.png) no-repeat center center/cover;
    width: 60px;
    height: 60px;
}

@media screen and (max-width: 767px) {
    .qa32 .item-icon3::after {
        width: 50px;
        height: 50px;
    }
}

.qa32 .item-icon4::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -10px;
    content: "";
    background: url(../img/pro4.png) no-repeat center center/cover;
    width: 60px;
    height: 60px;
}

@media screen and (max-width: 767px) {
    .qa32 .item-icon4::after {
        width: 50px;
        height: 50px;
    }
}

.qa32 .item-icon5::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -10px;
    content: "";
    background: url(../img/pro5.png) no-repeat center center/cover;
    width: 60px;
    height: 60px;
}

@media screen and (max-width: 767px) {
    .qa32 .item-icon5::after {
        width: 50px;
        height: 50px;
    }
}

.qa32 .item-icon6::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -10px;
    content: "";
    background: url(../img/pro6.png) no-repeat center center/cover;
    width: 60px;
    height: 60px;
}

@media screen and (max-width: 767px) {
    .qa32 .item-icon6::after {
        width: 50px;
        height: 50px;
    }
}

.qa32 .item-icon7::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -10px;
    content: "";
    background: url(../img/pro7.png) no-repeat center center/cover;
    width: 60px;
    height: 60px;
}

@media screen and (max-width: 767px) {
    .qa32 .item-icon7::after {
        width: 50px;
        height: 50px;
    }
}

.qa32 .item-icon8::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -10px;
    content: "";
    background: url(../img/pro8.png) no-repeat center center/cover;
    width: 60px;
    height: 60px;
}

@media screen and (max-width: 767px) {
    .qa32 .item-icon8::after {
        width: 50px;
        height: 50px;
    }
}

.qa32 .item-icon9::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -10px;
    content: "";
    background: url(../img/pro9.png) no-repeat center center/cover;
    width: 60px;
    height: 60px;
}

@media screen and (max-width: 767px) {
    .qa32 .item-icon9::after {
        width: 50px;
        height: 50px;
    }
}

.qa32 .item-icon10::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -10px;
    content: "";
    background: url(../img/pro10.png) no-repeat center center/cover;
    width: 60px;
    height: 60px;
}

@media screen and (max-width: 767px) {
    .qa32 .item-icon10::after {
        width: 50px;
        height: 50px;
    }
}

.section-inner3 {
    max-width: 900px;
    margin: 0 auto;
}

.top-about,
.top-movie {
    background: url(../img/top-about-bg.png) no-repeat center center/cover;
}

@media screen and (min-width: 768px) {
    .top-about,
    .top-movie {
        padding: 180px 0;
    }
}

@media screen and (max-width: 767px) {
    .top-about,
    .top-movie {
        padding: 80px 16px;
    }
}

@media screen and (min-width: 768px) {
    .top-about-ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media screen and (min-width: 768px) {
    .top-about-ul .left {
        width: calc(100% - 500px);
    }
}

@media screen and (max-width: 767px) {
    .top-about-ul .left {
        padding-bottom: 10px;
    }
}

@media screen and (min-width: 768px) {
    .top-about-ul .right {
        width: 500px;
        margin-right: 40px;
        padding-left: 50px;
    }
}

.top-about-ul .title {
    font-size: 22px;
    color: #ec9b9f;
    margin-bottom: 30px;
    font-family: "NotoSansJP-Bold";
}

@media screen and (max-width: 767px) {
    .top-about-ul .title {
        font-size: 16px;
        margin-bottom: 10px;
    }
}

.top-about-ul .text {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.8;
}

@media screen and (max-width: 767px) {
    .top-about-ul .text {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 767px) {
    .top-about-ul .btn {
        text-align: center;
    }
}

.top-about-ul .btn a {
    padding: 15px 40px;
    color: #ec9b9f;
    border: 1px solid #ec9b9f;
    border-radius: 30px;
    font-size: 18px;
    position: relative;
}

.top-about-ul .btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../img/arrow-pink.png) no-repeat center center/cover;
    width: 20px;
    height: 8px;
}

@media screen and (max-width: 767px) {
    .top-about-ul .btn a {
        font-size: 16px;
        padding: 10px 40px;
    }
}

.section.top-recruit {
    color: #FFF;
}
.section.top-recruit .section-title {
    margin-bottom: 120px;
}
@media print, screen and (max-width: 767px) {
    .section.top-recruit .section-title {
        margin-bottom: 24.5vw;
    }
}
.top-recruit-ul {
    background-color: #E19498;
    margin-bottom: 50px;
}

.top-recruit-ul .inner {
    position: relative;
    max-width: 1370px;
    padding: 110px 0;
}
/* @media screen and (min-width: 768px) and (max-width: 999px) {
    .top-recruit-ul .inner {
        padding: 3% 0 3%;
    }
}
@media screen and (min-width: 1000px) {
    .top-recruit-ul .inner {
        padding: 6% 0 6%;
    }
} */
@media screen and (max-width: 767px) {
    .top-recruit-ul .inner {
        padding: 6% 0 6%;
    }
}

.top-recruit-ul .left {
    /* width: 50%;
    max-width:685px; */
    width: 685px;
    position: absolute;
    bottom: 10%;
    right: 50%;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
    .top-recruit-ul .left {
        bottom: 15%;
    }
}
@media screen and (min-width: 1000px) {
    .top-recruit-ul .left {
        bottom: 10%;
    }
}
@media screen and (max-width: 767px) {
    .top-recruit-ul .left {
        padding-bottom: 0;
        top: -11.6vw;
        width: 93vw;
        left: 0;
        right: auto;
    }
}

@media screen and (min-width: 768px) {
    .top-recruit-ul .right {
        padding: 0 0 0 5%;
        margin: 0 0 0 auto;
        width: 50%;
    }
}
@media print, screen and (max-width: 767px) {
    .top-recruit-ul .right {
        padding: 57.3vw 0 0 5vw;
        width: 100%;
    }
}

.top-recruit-ul .title {
    font-size: 22px;
    margin-bottom: 30px;
    font-family: "NotoSansJP-Bold";
}

@media screen and (max-width: 767px) {
    .top-recruit-ul .title {
        font-size: 22px;
        margin-bottom: 10px;
    }
}

.top-recruit-ul .text {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.8;
}

@media screen and (max-width: 767px) {
    .top-recruit .text {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

.top-recruit .btn {
    text-align: center;
}

.top-recruit .btn a {
    padding: 15px 100px;
    color: #ec9b9f;
    border: 1px solid #ec9b9f;
    border-radius: 30px;
    font-size: 18px;
    position: relative;
}

.top-recruit .btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../img/arrow-pink.png) no-repeat center center/cover;
    width: 20px;
    height: 8px;
}

@media screen and (max-width: 767px) {
    .top-recruit .btn a {
        font-size: 16px;
        padding: 10px 40px;
    }
}

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

@media screen and (max-width: 767px) {
    .news-btn {
        text-align: center;
        margin-top: 30px;
    }
}

.news-btn a {
    padding: 15px 40px;
    color: #ec9b9f;
    border: 1px solid #ec9b9f;
    border-radius: 30px;
    font-size: 18px;
    position: relative;
}

.news-btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../img/arrow-pink.png) no-repeat center center/cover;
    width: 20px;
    height: 8px;
}

@media screen and (max-width: 767px) {
    .news-btn a {
        font-size: 16px;
        padding: 10px 40px;
    }
}

.top-news-category {
    max-width: 900px;
    margin: 0 auto 80px;
}

.top-news-category .heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 18px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
    .top-news-category .heading {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

.top-news-category .time {
    margin-right: 20px;
}

@media screen and (max-width: 767px) {
    .top-news-category .time {
        margin-right: 10px;
        font-size: 14px;
    }
}

.top-news-category .category {
    font-size: 18px;
    color: #fff;
    background: #ec9b9f;
    padding: 0px 10px;
    line-height: 1.2;
    font-family: "CenturyGothic", serif;
}

@media screen and (max-width: 767px) {
    .top-news-category .category {
        font-size: 14px;
    }
}

.top-news-category .category.media {
    background: #f7931e;
}

.top-news-category .category.other {
    background: #666666;
}

.top-news-category .category.exhibition {
    background: #93278f;
}

.top-news-category .category.promotion {
    background: #39b44a;
}

.top-news-category .category.award {
    background: #29aae1;
}

.top-news-category h1 {
    font-size: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ec9b9f;
    margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
    .top-news-category h1 {
        font-size: 16px;
    }
}

.top-news-category h2 {
    font-size: 28px;
    padding-left: 20px;
    border-left: 4px solid #ec9b9f;
    line-height: 1.2;
    margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
    .top-news-category h2 {
        font-size: 16px;
    }
}

.top-news-category h3 {
    font-size: 22px;
    color: #ec9b9f;
}

@media screen and (max-width: 767px) {
    .top-news-category h3 {
        font-size: 15px;
    }
}

.top-news-category p {
    font-size: 18px;
    line-height: 2;
}

@media screen and (max-width: 767px) {
    .top-news-category p {
        font-size: 14px;
    }
}

@media screen and (min-width: 768px) {
    .top-news-category .bottom {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.top-news-category .bottom .thumbnail {
    position: relative;
}

@media screen and (min-width: 768px) {
    .top-news-category .bottom .thumbnail {
        width: 47%;
        margin-right: auto;
    }
}

.top-news-category .bottom .thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (min-width: 768px) {
    .top-news-category .bottom .content {
        width: 47%;
    }
}

.top-news-category .news-btn {
    margin-top: 80px;
    text-align: center;
}

.top-news-category .news-btn a {
    font-size: 20px;
    color: #ec9b9f;
    background: #fff;
    border: 1px solid #ec9b9f;
    padding: 10px 40px;
    border-radius: 30px;
    position: relative;
}

.top-news-category .news-btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../img/arrow-pink.png) no-repeat center center/cover;
    width: 20px;
    height: 8px;
}

@media screen and (max-width: 767px) {
    .top-news-category .news-btn {
        margin-top: 30px;
        padding: 10px 20px;
        font-size: 14px;
    }
}

.more-p {
    margin-top: 10px;
    text-align: right;
    padding-right: 0px;
    color: #ec9b9f;
    position: relative;
    font-family: "CenturyGothic", serif;
}

.more-p::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../img/arrow-pink.png) no-repeat center center/cover;
    width: 10px;
    height: 4px;
}

.multiple-items-top-news .slick-slide {
    padding: 0 20px;
}

.multiple-items-top-news .slick-prev,
.multiple-items-top-news .slick-next {
    z-index: 2;
}

.multiple-items-top-news .slick-prev {
    left: 0 !important;
}

.multiple-items-top-news .slick-next {
    right: 0 !important;
}

.multiple-items-top-news .slick-slide {
    padding: 5px 10px;
}

.multiple-items-top-news .slick-next:before {
    content: "";
    background: url(../img/slider-arrow-right.png) no-repeat center center/cover;
    width: 40px;
    height: 40px;
    position: absolute;
    right: -50px !important;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
    .multiple-items-top-news .slick-next:before {
        right: -30px !important;
    }
}

.multiple-items-top-news .slick-prev:before {
    content: "";
    background: url(../img/slider-arrow-left.png) no-repeat center center/cover;
    width: 40px;
    height: 40px;
    position: absolute;
    left: -50px !important;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
    .multiple-items-top-news .slick-prev:before {
        left: -30px !important;
    }
}

@media screen and (min-width: 768px) {
    .multiple-items-top-news .top-news-category .time {
        font-size: 13px;
        margin-right: 10px;
    }
}

@media screen and (min-width: 768px) {
    .multiple-items-top-news .category {
        font-size: 12px;
    }
}

@media screen and (min-width: 768px) {
    .multiple-items-top-news .heading {
        font-size: 13px;
        margin-bottom: 10px;
    }
}

@media screen and (min-width: 768px) {
    .multiple-items-top-news .time {
        margin-right: auto;
    }
}

@media screen and (min-width: 768px) {
    .multiple-items-top-news .title {
        font-size: 13px;
    }
}

@media screen and (max-width: 767px) {
    .multiple-items-top-news {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media screen and (min-width: 768px) {
    .multiple-items-top-news p {
        font-size: 13px;
    }
}

.top-news {
    margin-top: 0px;
}

@media screen and (max-width: 767px) {
    .top-news {
        margin-top: 140px;
    }
}

.top-movie {
    margin-top: 200px;
}

@media screen and (max-width: 767px) {
    .top-movie {
        margin-top: 140px;
    }
}

/*=============
slick
=============*/
.full {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    margin: 0;
    text-decoration: none;
}

.full .slick-dots {
    bottom: 4%;
    z-index: +1;
}

.slider-top {
    position: relative;
    z-index: 1;
    /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
    height: 100vh;
    /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    /*矢印の設定*/
    /*ドットナビゲーションの設定*/
}

.slider-top .slider-item {
    width: 100%;
    /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
}

@media screen and (min-width: 1600px) {
    .slider-top .slider-item {
        height: 100vh;
        /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    }
}

.slider-top .slick-prev,
.slider-top .slick-next {
    position: absolute;
    z-index: 3;
    top: 42%;
    cursor: pointer;
    /*マウスカーソルを指マークに*/
    outline: none;
    /*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #fff;
    /*矢印の色*/
    border-right: 2px solid #fff;
    /*矢印の色*/
    height: 25px;
    width: 25px;
}

.slider-top .slick-prev {
    /*戻る矢印の位置と形状*/
    left: 2.5%;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.slider-top .slick-next {
    /*次へ矢印の位置と形状*/
    right: 2.5%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.slider-top .slick-dots {
    position: relative;
    z-index: 3;
    text-align: center;
    margin: -50px 0 0 0;
    /*ドットの位置*/
}

.slider-top .slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.slider-top .slick-dots button {
    color: transparent;
    outline: none;
    width: 8px;
    /*ドットボタンのサイズ*/
    height: 8px;
    /*ドットボタンのサイズ*/
    display: block;
    border-radius: 50%;
    background: #fff;
    /*ドットボタンの色*/
}

.slider-top .slick-dots .slick-active button {
    background: #333;
    /*ドットボタンの現在地表示の色*/
}

@media screen and (min-width: 768px) {
    .center-s img {
        height: 220px;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

@media screen and (max-width: 767px) {
    .center-s img {
        height: 240px;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

@media screen and (max-width: 767px) {
    .drawer-heading .right {
        padding-bottom: 20px;
        border-bottom: 1px solid #ec9b9f;
    }
}

@media screen and (min-width: 768px) {
    .footer-heading .right .title {
        margin-bottom: 12px;
    }
}

.top {
    position: relative;
}

.thumbs-top li {
    margin-right: 15px;
}

.thumbs-top li span {
    border-radius: 50%;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.6);
    padding-top: 10px;
    width: 50px;
    height: 50px;
    text-align: center;
    display: block;
}

.thumbs-top-wrap {
    position: absolute;
    bottom: 40px;
    left: 10%;
    /* max-width: 300px; */
    width: 300px;
    z-index: 10;
}

@media screen and (max-width: 767px) {
    .thumbs-top-wrap {
        max-width: 400px;
        margin: 0 auto;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        bottom: -20px;
    }
}

.thumbs-top-wrap .slick-slider .slick-track,
.thumbs-top-wrap .slick-slider .slick-list {
    height: 150px;
}

.thumbs-top-wrap .slick-current span {
    background: #fff;
}

.thumbs-top-wrap span {
    font-family: "CenturyGothic", serif;
    cursor: pointer;
}

.num1 {
    position: relative;
    top: 40px;
}

.num2 {
    position: relative;
    top: 30px;
}

.num3 {
    position: relative;
    top: 20px;
}

.num4 {
    position: relative;
    top: 10px;
}

.num5 {
    position: relative;
    top: 0px;
}

.top .slick-slider {
    height: 100%;
}

.mv-news {
    position: relative;
    max-width: 500px;
}

.mv-news .title2 {
    font-size: 30px;
    font-family: "CenturyGothic", serif;
    color: #fff;
}

@media screen and (min-width: 768px) {
    .mv-news .title2 {
        margin-bottom: -100px;
    }
}

.mv-news .slick-prev {
    position: absolute;
    left: 80%;
    z-index: 2;
    bottom: -100px;
    -webkit-transform: translateY(92px);
    transform: translateY(92px);
}

.mv-news .slick-next {
    position: absolute;
    right: 5%;
    bottom: -100px;
    -webkit-transform: translateY(92px);
    transform: translateY(92px);
}

@media screen and (max-width: 767px) {
    .mv-news {
        max-width: 90%;
        margin: 0 auto;
    }
}

@media screen and (min-width: 768px) {
    .mv-news {
        position: absolute;
        right: 0;
        bottom: 100px;
        z-index: 20;
    }
}

.mv-news .top-news-category .heading {
    margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
    .mv-news .slick-slide {
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
        height: 300px;
    }
}

.mv-news li {
    padding: 20px;
    background: #fff;
    border-radius: 20px;
}

@media screen and (min-width: 768px) {
    .mv-news li {
        -webkit-box-shadow: 0 3px 6px #efe4e5;
        box-shadow: 0 3px 6px #efe4e5;
    }
}

@media screen and (max-width: 767px) {
    .mv-news li {
        border: 1px solid #efe4e5;
    }
}

.mv-news .top-news-category {
    margin-bottom: 0;
}

.mv-news li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.mv-news .left2 {
    width: 44%;
}

.mv-news .right2 {
    width: 50%;
}

.mv-news .top-news-category .time {
    margin-right: 10px;
    font-size: 13px;
}

.mv-news .top-news-category .category {
    font-size: 13px;
}

.mv-news .right2 .title {
    font-size: 14px;
}

.thumbnail {
    padding-top: 75%;
    position: relative;
}

.thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.mv-news {
    bottom: 50px;
}

.mv-news .slick-prev:before,
.mv-news .slick-next:before {
    font-family: "NotoSansCJKjp-Regular", "NotoSansJP-Regular", "NotoSansJP-Bold", "NotoSansJP-Medium", serif;
    color: #000;
    font-size: 30px;
}

@media screen and (max-width: 767px) {
    .mv-news .top-news-category .heading {
        display: block;
    }
}

@media screen and (max-width: 767px) {
    .mv-news .top-news-category .time {
        font-size: 14px;
        margin-bottom: 0px;
    }
}

@media screen and (max-width: 767px) {
    .mv-news .top-news-category .category {
        display: inline-block;
        font-size: 14px;
        margin-bottom: 0px;
    }
}

@media screen and (max-width: 767px) {
    .mv-news .top-news-category .heading {
        margin-bottom: 5px;
    }
}

.single .thumbnail {
    padding-top: 35%;
}

.single .bottom {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.slick-main span {
    display: block;
    line-height: 100px;
    position: relative;
    text-align: center;
    -webkit-transform: translate(0, 0) scale(0.4);
    transform: translate(0, 0) scale(0.4);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    opacity: 0.5;
}

.slick-main .slick-slide img {
    width: auto;
    height: 350px;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    .slick-main .slick-slide img {
        height: 200px;
    }
}

.slick-main .slick-slide.lt2 span {
    -webkit-transform: translate(-15%, 0) scale(0.3);
    transform: translate(-15%, 0) scale(0.3);
}

.slick-main .slick-slide.lt1 span {
    opacity: 0.7;
    -webkit-transform: translate(-15%, 0) scale(0.5);
    transform: translate(-15%, 0) scale(0.5);
}

.slick-main .slick-slide.gt1 span {
    opacity: 0.7;
    -webkit-transform: translate(15%, 0) scale(0.5);
    transform: translate(15%, 0) scale(0.5);
}

.slick-main .slick-slide.gt2 span {
    -webkit-transform: translate(15%, 0) scale(0.3);
    transform: translate(15%, 0) scale(0.3);
}

.slick-main .slick-slide.slick-center span {
    z-index: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.slick-main .slick-prev,
.slick-main .slick-next {
    position: absolute;
    top: 50%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin-top: -10px;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    color: transparent;
    outline: none;
    z-index: 100;
}

.slick-main .slick-prev {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 15px 15px 0;
    border-color: transparent #007bff transparent transparent;
    left: 0;
}

.slick-main .slick-next {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent #007bff;
    right: 0;
}

.slick-main .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #fff;
}

@media screen and (max-width: 767px) {
    .slick-current .a-6 img,
    .slick-current .a-7 img {
        height: 153px !important;
    }
}

@media screen and (max-width: 767px) {
    .slick-current .a-8 img {
        height: 153px !important;
    }
}

.back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.slick-center span.c-1 .back {
    background: red;
}

.change {
    position: relative;
}

.slick-dotted.slick-slider {
    z-index: 10;
}

.slick-sub {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slick-background img {
    height: 380px;
}

.slick-main .slick-dots {
    position: initial;
    bottom: -65px;
}

.b-1 .slick-sub-heading {
    background: #ff8f00;
}

.b-2 .slick-sub-heading {
    background: #f04442;
}

.b-3 .slick-sub-heading {
    background: #00c253;
}

.b-4 .slick-sub-heading {
    background: #ca9f54;
}

.b-5 .slick-sub-heading {
    background: #00bbde;
}

.b-6 .slick-sub-heading {
    background: #ff5b78;
}

.b-7 .slick-sub-heading {
    background: #ff7aa9;
}

.b-8 .slick-sub-heading {
    background: #6c4442;
}

.b-9 .slick-sub-heading {
    background: #427083;
}

.b-10 .slick-sub-heading {
    background: #edc74c;
}

.slick-sub-heading {
    padding: 30px 16px;
    position: relative;
    height: 180px;
}

.slick-sub-heading-wrap {
    position: absolute;
    -webkit-transform: translateX(150%);
    transform: translateX(150%);
    right: 50%;
    width: 400px;
}

@media screen and (max-width: 767px) {
    .slick-sub-heading-wrap {
        -webkit-transform: initial;
        transform: initial;
        right: initial;
        position: initial;
        width: 100%;
    }
}

.slick-sub {
    color: #fff;
}

.slick-sub .title {
    padding-left: 20px;
    border-left: 4px solid #fff;
    line-height: 1;
    margin-bottom: 20px;
}

.slick-sub .title .title-en {
    font-size: 16px;
    font-family: "CenturyGothic", serif;
    margin-bottom: 10px;
}

.slick-sub .title .title-ja {
    font-size: 20px;
}

.slick-sub .text {
    font-size: 14px;
}

.slick-sub-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #000;
}

.slick-sub-bottom .left {
    width: 60%;
}

.slick-sub-bottom .right {
    width: 40%;
    padding: 0px 60px;
}

.slick-sub-bottom .right .title {
    font-size: 40px;
    margin-bottom: 10px;
    font-family: "CenturyGothic", serif;
}

.slick-sub-bottom .right .title.color1 {
    color: #ff8f00;
}

.slick-sub-bottom .right .title.color2 {
    color: #f04442;
}

.slick-sub-bottom .right .title.color3 {
    color: #00c253;
}

.slick-sub-bottom .right .title.color4 {
    color: #ca9f54;
}

.slick-sub-bottom .right .title.color5 {
    color: #00bbde;
}

.slick-sub-bottom .right .title.color6 {
    color: #ff5b78;
}

.slick-sub-bottom .right .title.color7 {
    color: #ff7aa9;
}

.slick-sub-bottom .right .title.color8 {
    color: #6c4442;
}

.slick-sub-bottom .right .title.color9 {
    color: #427083;
}

.slick-sub-bottom .right .title.color10 {
    color: #edc74c;
}

.slick-sub-bottom .right span {
    font-family: "CenturyGothic", serif !important;
}

.slick-sub-bottom .right .span1 {
    font-size: 26px;
}

.slick-sub-bottom .right .span2 {
    font-size: 18px;
}

.slick-main {
    padding-bottom: 200px;
    margin-bottom: 100px;
}

.slick-sub-bottom {
    max-width: 1600px;
    margin: 0 auto;
}

.slick-sub-bottom .btn {
    margin-top: 20px;
}

.slick-sub-bottom .btn a {
    padding: 5px 40px;
    font-size: 16px;
    border-radius: 30px;
    border: 1px solid #000;
    display: inline-block;
    position: relative;
}

.slick-sub-bottom .btn a::after {
    content: "";
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    right: 15px;
    background: url(../img/arrow-black.png) no-repeat center center/cover;
    width: 20px;
    height: 8px;
}

.a1 {
    position: relative;
}

.fireworks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 767px) {
    .mv-news .slick-prev {
        position: absolute;
        left: 74%;
        z-index: 2;
        bottom: -119px;
        -webkit-transform: translateY(92px);
        transform: translateY(69px);
    }
    .mv-news .slick-next {
        -webkit-transform: translateY(69px);
        transform: translateY(69px);
    }
    .slick-sub-bottom {
        display: block;
    }
    .slick-sub-bottom .left {
        width: 100%;
    }
    .slick-sub-bottom .right {
        width: 100%;
        padding: 0 16px;
    }
    .slick-main {
        padding-bottom: 480px;
        margin-bottom: 100px;
    }
    .top-news {
        margin-top: 240px;
    }
    .top-movie {
        margin-top: 240px;
    }
    .slick-background img {
        height: 280px;
    }
    .slick-sub-bottom .right .title {
        font-size: 30px;
        margin-top: 10px;
    }
    .slick-sub-bottom .right .span1 {
        font-size: 20px;
    }
    .slick-sub-bottom .btn {
        text-align: center;
    }
    .top-news {
        margin-top: 110px;
    }
    .top-movie {
        margin-top: 110px;
    }
}

.a-1,
.a-2,
.a-3,
.a-4,
.a-5,
.a-6,
.a-7,
.a-8,
.a-9,
.a-10 {
    position: relative;
}

.change .slick-slide.slick-current .maru1 {
    width: 20px;
    height: 20px;
    background: #ec9b9f;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime 1s ease;
    animation: anime 1s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru11 {
    width: 20px;
    height: 20px;
    background: #ec9b9f;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime11 0.8s ease;
    animation: anime11 0.8s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru2 {
    width: 30px;
    height: 30px;
    background: #8484db;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime2 1s ease;
    animation: anime2 1s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru12 {
    width: 30px;
    height: 30px;
    background: #8484db;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime12 1s ease;
    animation: anime12 1s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru3 {
    width: 20px;
    height: 20px;
    background: yellow;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime3 0.8s ease;
    animation: anime3 0.8s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru13 {
    width: 20px;
    height: 20px;
    background: yellow;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime13 1s ease;
    animation: anime13 1s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru4 {
    width: 12px;
    height: 12px;
    background: #eb8c8c;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime4 1.1s ease;
    animation: anime4 1.1s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru14 {
    width: 12px;
    height: 12px;
    background: #8cd5eb;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime14 1s ease;
    animation: anime14 1s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru5 {
    width: 15px;
    height: 15px;
    background: #eb8c8c;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime5 0.9s ease;
    animation: anime5 0.9s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru15 {
    width: 15px;
    height: 15px;
    background: #f2a1d3;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime15 0.8s ease;
    animation: anime15 0.8s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru6 {
    width: 12px;
    height: 12px;
    background: green;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime6 1.2s ease;
    animation: anime6 1.2s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru16 {
    width: 12px;
    height: 12px;
    background: #a3dca3;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime16 0.7s ease;
    animation: anime16 0.7s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru7 {
    width: 24px;
    height: 24px;
    background: grey;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime7 1s ease;
    animation: anime7 1s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru17 {
    width: 24px;
    height: 24px;
    background: #e3b11c;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime17 1.1s ease;
    animation: anime17 1.1s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru8 {
    width: 15px;
    height: 15px;
    background: #5a5acb;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime8 0.6s ease;
    animation: anime8 0.6s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru18 {
    width: 15px;
    height: 15px;
    background: #4b4b7f;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime18 1s ease;
    animation: anime18 1s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru9 {
    width: 18px;
    height: 18px;
    background: #7a3434;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime9 1s ease;
    animation: anime9 1s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru19 {
    width: 18px;
    height: 18px;
    background: #4b2f2f;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime19 0.8s ease;
    animation: anime19 0.8s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru10 {
    width: 22px;
    height: 22px;
    background: #e59b9b;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime10 1s ease;
    animation: anime10 1s ease;
    opacity: 0;
    display: block;
}

.change .slick-slide.slick-current .maru20 {
    width: 22px;
    height: 22px;
    background: #d39e9e;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 40;
    -webkit-animation: anime20 1s ease;
    animation: anime20 1s ease;
    opacity: 0;
    display: block;
}

@keyframes anime {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(150px) scale(2);
        transform: translate(150px) scale(2);
        display: none;
    }
}

@keyframes anime11 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-150px, 150px) scale(1.8);
        transform: translate(-150px, 150px) scale(1.8);
        display: none;
    }
}

@keyframes anime2 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-130px) scale(2);
        transform: translate(-130px) scale(2);
        display: none;
    }
}

@keyframes anime12 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-130px, -60px) scale(1.8);
        transform: translate(-130px, -60px) scale(1.8);
        display: none;
    }
}

@keyframes anime3 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-130px, -130px) scale(2);
        transform: translate(-130px, -130px) scale(2);
        display: none;
    }
}

@keyframes anime13 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(70px, -130px) scale(1.8);
        transform: translate(70px, -130px) scale(1.8);
        display: none;
    }
}

@keyframes anime4 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(150px, 150px) scale(2.4);
        transform: translate(150px, 150px) scale(2.4);
        display: none;
    }
}

@keyframes anime14 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(150px, -150px) scale(1.8);
        transform: translate(150px, -150px) scale(1.8);
        display: none;
    }
}

@keyframes anime5 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(80px, 70px) scale(1.5);
        transform: translate(80px, 70px) scale(1.5);
        display: none;
    }
}

@keyframes anime15 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(80px, -70px) scale(2.8);
        transform: translate(80px, -70px) scale(2.8);
        display: none;
    }
}

@keyframes anime6 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-80px, -70px) scale(1.8);
        transform: translate(-80px, -70px) scale(1.8);
        display: none;
    }
}

@keyframes anime16 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-80px, 70px) scale(2.1);
        transform: translate(-80px, 70px) scale(2.1);
        display: none;
    }
}

@keyframes anime7 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-180px, -170px) scale(1.8);
        transform: translate(-180px, -170px) scale(1.8);
        display: none;
    }
}

@keyframes anime17 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-180px, 170px) scale(0.9);
        transform: translate(-180px, 170px) scale(0.9);
        display: none;
    }
}

@keyframes anime8 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(130px, 130px) scale(1.8);
        transform: translate(130px, 130px) scale(1.8);
        display: none;
    }
}

@keyframes anime18 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-100px, 130px) scale(1.8);
        transform: translate(-100px, 130px) scale(1.8);
        display: none;
    }
}

@keyframes anime9 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-130px, 60px) scale(1.8);
        transform: translate(-130px, 60px) scale(1.8);
        display: none;
    }
}

@keyframes anime19 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-130px, 60px) scale(1.8);
        transform: translate(-130px, 60px) scale(1.8);
        display: none;
    }
}

@keyframes anime10 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(130px, 60px) scale(1.8);
        transform: translate(130px, 60px) scale(1.8);
        display: none;
    }
}

@keyframes anime20 {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px) scale(0.5);
        transform: translate(0px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-60px, 90px) scale(1.8);
        transform: translate(-60px, 90px) scale(1.8);
        display: none;
    }
}

.zyunbityu {
    padding: 300px 20px;
    text-align: center;
    font-size: 24px;
}

@media screen and (max-width: 767px) {
    .zyunbityu {
        padding: 150px 16px;
        font-size: 16px;
    }
}

.bogo-language-switcher {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 10px;
    position: relative;
    z-index: 1000;
}

.bogo-language-switcher li {
    margin-right: 10px;
}

.bogo-language-switcher li a {
    color: #ec9b9f;
}

.bogo-language-switcher .current {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    /* 線の太さ */
    text-underline-offset: 5px;
    color: #000;
}

.qa-nin-title {
    font-size: 28px;
    color: #ec9b9f;
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .qa-nin-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
}

.filter-contents .text-left {
    width: 300px;
}

.filter-contents .text-right {
    width: 600px;
}

@media screen and (min-width: 768px) {
    .filter-contents .list2 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .filter-contents .list2 li {
        width: 50%;
    }
}

.filter-flex {
    background: #fff;
}

@media screen and (max-width: 767px) {
    .filter-flex {
        padding-bottom: 50px;
    }
}

.confilm .radio_inner span {
    display: block !important;
}

.slick-sub-bottom .left {
    position: relative;
}

.home_detail_loader {
    width: 100%;
    height: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

.home_detail_loader .opa {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    opacity: 0;
}

.home_detail_loader span {
    display: block;
    height: 100%;
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    background: #141414;
}

.slick-sub .slick-sub-bottom .left {
    overflow: hidden;
}

.slick-sub .slick-slide.slick-current img {
    -webkit-animation: img 7s ease;
    animation: img 7s ease;
}

@keyframes img {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    80% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

@keyframes home_detail_off3 {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

.slick-sub .slick-slide.slick-current .opa {
    -webkit-animation: home_detail_off3 5s ease;
    animation: home_detail_off3 5s ease;
    opacity: 1;
}

.slick-sub .slick-slide.slick-current .home_detail_loader > div:nth-child(1) span,
.slick-sub .slick-slide.slick-current .home_detail_loader > div:nth-child(2) span,
.slick-sub .slick-slide.slick-current .home_detail_loader > div:nth-child(3) span,
.slick-sub .slick-slide.slick-current .home_detail_loader > div:nth-child(4) span {
    -webkit-animation: home_detail_off4 5s ease;
    animation: home_detail_off4 5s ease;
    width: 100%;
}

@keyframes home_detail_off4 {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .top-about-ul {
        padding: 0 16px;
    }
}

@media screen and (min-width: 768px) {
    .mv-news {
        right: -22px;
    }
    .mv-news .slick-prev {
        left: 75%;
    }
    .mv-news .slick-next {
        right: 10%;
    }
    .filter {
        padding-bottom: 30px;
    }
}

.top-movie {
    z-index: 1000;
}

.movie {
    width: 100%;
    margin: 100px 0;
}

@media screen and (max-width: 767px) {
    .movie {
        margin: 30px 0;
    }
}

.movie-wrap {
    padding-top: 56%;
    position: relative;
}

.movie-wrap video,
.movie-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.pro-ul2 .title {
    text-align: center;
}

@media screen and (max-width: 767px) {
    .mv-news {
        right: -50px;
        max-width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .top-news {
        margin-top: 0px;
        margin-bottom: 0px;
    }
}

@media screen and (max-width: 767px) {
    .mv-news li {
        padding: 20px 60px 50px 20px;
    }
}

@media screen and (max-width: 767px) {
    .mv-news .slick-prev {
        left: 50%;
    }
    .mv-news .slick-next {
        right: 30%;
    }
    .mv-news .slick-next {
        -webkit-transform: translateY(57px);
        transform: translateY(57px);
    }
    .mv-news .slick-prev {
        -webkit-transform: translateY(57px);
        transform: translateY(57px);
    }
}

@media screen and (max-width: 767px) {
    .filter {
        max-width: 65px;
        position: relative;
        top: -25px;
        right: 23px;
        text-align: right;
        margin-left: auto;
    }
    .filter a:hover {
        opacity: 1;
    }
}

@media screen and (max-width: 767px) {
    .thumbs-top-wrap {
        max-width: 283px;
        margin: 0 auto;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        bottom: -20px;
        width: 100%;
    }
    .qa-flex .title2 .img2 {
        width: 200px;
    }
}

.top-news-category .more-p {
    padding-right: 20px;
}

.top-news-category .more-p:after {
    right: 5px;
}

.slick-sub-bottom .title {
    padding-left: 0 !important;
}

@media screen and (min-width: 768px) {
    .top-movie {
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 767px) {
    .top-movie {
        padding: 80px 16px 40px;
    }
}

.text404 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
    .text404 {
        font-size: 14px;
        padding: 0 20px;
    }
}

.btn404 {
    text-align: center;
}

.btn404 a {
    color: #fff;
    background: #ec9b9f;
    padding: 10px 15px;
    font-size: 16px;
    min-width: 200px;
    border-radius: 30px;
    text-align: center;
    display: inline-block;
    position: relative;
}

@media screen and (max-width: 767px) {
    .btn404 a {
        font-size: 14px;
    }
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: #fff;
    text-align: center;
}

#loading_box {
    position: absolute;
    top: 45%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#loading .kvArea {
    width: 100%;
}

@media screen and (max-width: 767px) {
    #loading .kvArea {
        width: 300%;
    }
}

#loading .kvArea .img_box {
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    #loading .kvArea .img_box {
        width: 85%;
    }
}

#loading .kvArea .img_box video {
    max-width: 100%;
    height: auto;
}

.fadeUp {
    -webkit-animation-name: fadeUpAnime;
    animation-name: fadeUpAnime;
    -webkit-animation-duration: 1.8s;
    animation-duration: 1.8s;
    -webkit-animation-delay: 2.2s;
    animation-delay: 2.2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        -webkit-transform: translateY(80px);
        transform: translateY(80px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.thumbs-top-wrap .slick-slider .slick-track,
.thumbs-top-wrap .slick-slider .slick-list {
    -webkit-transform: translate3d(0px, 0px, 0px) !important;
    transform: translate3d(0px, 0px, 0px) !important;
}

@media screen and (min-width: 768px) {
    .mv-news .slick-slide {
        width: 500px !important;
    }
}

.skip-btn {
    z-index: 10000;
    position: fixed;
    top: 80%;
    left: 50%;
    border-radius: 30px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border: 1px solid #ec9b9f;
    padding: 5px 20px;
    color: #ec9b9f;
    cursor: pointer;
}

.skip-btn:hover {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

#loading.add {
    display: none !important;
}

.single .thumbnail {
    position: initial !important;
    padding-top: 0;
}

.single img {
    position: initial !important;
}

@media screen and (max-width: 767px) {
    .slick-main .slick-slide img {
        height: 150px !important;
    }
}

.slick-main .slick-slide img {
    -o-object-fit: cover;
    object-fit: cover;
}

.slick-main .slick-slide.slick-center span {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

@media screen and (max-width: 767px) {
    .slick-main .slick-slide img {
        height: 130px !important;
    }
}

.present-lead {
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .present-lead {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

.present-wrap {
    background: #fff;
    padding: 40px;
    margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
    .present-wrap {
        padding: 15px;
        margin-bottom: 30px;
    }
}

.present-wrap label {
    font-size: 18px;
    position: relative;
    padding-left: 45px;
    color: #ec9b9f;
}

@media screen and (max-width: 767px) {
    .present-wrap label {
        font-size: 14px;
    }
}

.present-wrap input[type="radio"]:checked + .mwform-radio-field-text::after {
    display: block;
}

.present-wrap input[type="radio"] {
    position: absolute;
    left: -200%;
    opacity: 0;
}

.present-wrap .mwform-radio-field-text {
    font-weight: bold;
}

.present-wrap .mwform-radio-field-text:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ccc;
}

.present-wrap .mwform-radio-field-text::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 8px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #ec9b9f;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: none;
}

.present-wrap .present-row2 .mwform-radio-field-text {
    font-weight: normal;
}

.present-wrap .radio_container1 {
    margin-right: 40px;
}

@media screen and (max-width: 767px) {
    .present-wrap .radio_container1 {
        margin-right: 20px;
    }
}

.present-wrap .design:before {
    content: "";
    position: initial;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.present-wrap .design::after {
    content: "";
    position: initial;
    top: 50%;
    left: 8px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #ec9b9f;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: none;
}

.present-wrap .radio_container1 {
    margin-right: 40px;
}

@media screen and (max-width: 767px) {
    .present-wrap .radio_container1 {
        margin-right: 20px;
    }
}

.present-row {
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
}

.present-row label {
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .present-row {
        padding: 10px 0;
    }
}

.present-row .present-text2 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #ec9b9f;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .present-row .present-text2 {
        font-size: 14px;
    }
}

.present-row2 label {
    color: #333;
    font-weight: 500;
}

.present-btn-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .present-btn-wrap {
        display: block;
    }
}

@media screen and (max-width: 767px) {
    .present-btn-wrap .btn {
        text-align: center;
    }
}

.present-btn-wrap .btn a {
    border-radius: 30px;
    display: inline-block;
    color: #ec9b9f;
    background-color: #fff;
    border: 2px solid #ec9b9f;
    color: #ec9b9f;
    font-weight: bold;
    padding: 5px 60px;
    position: relative;
}

@media screen and (max-width: 767px) {
    .present-btn-wrap .btn a {
        padding: 5px 20px;
        font-size: 14px;
        min-width: 300px;
    }
}

.present-btn-wrap .btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../img/arrow-pink.png) no-repeat center center/cover;
    width: 20px;
    height: 8px;
}

.present-btn-wrap .btn.in a {
    background: #ec9b9f;
    color: #fff;
}

.present-btn-wrap .btn.in a::after {
    background: url(../img/arrow-drawer.png) no-repeat center center/cover;
}

@media screen and (min-width: 768px) {
    .btn-right {
        margin-right: 40px;
    }
}

@media screen and (max-width: 767px) {
    .btn-right {
        margin-bottom: 10px;
    }
}

.footer-meta2 span {
    font-size: 13px;
    font-family: "kozuka-gothic-pr6n, sans-serif";
    font-weight: normal;
    display: block;
}

@media screen and (max-width: 767px) {
    .footer-meta2 span {
        font-size: 10px;
    }
}

.footer-meta3-text {
    display: inline-block;
    position: relative;
}

.footer-meta3-text span {
    position: absolute;
    bottom: -14px;
    left: -10px;
}

.free-tel {
    width: 35px;
    vertical-align: sub;
    margin-left: 5px;
    position: relative;
    top: -5px;
}

@media screen and (max-width: 767px) {
    .free-tel {
        width: 20px;
        top: -3px;
    }
}

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

.pre-confilm .present-row {
    border: none;
}

.pre-confilm .present-text2 {
    display: none;
}

.dengon-title {
    color: #ec9b9f;
    font-size: 18px;
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .dengon-title {
        font-size: 14px;
        margin-bottom: 10px;
    }
}

.select-row2 select {
    border: 1px solid #ccc;
    padding: 10px;
    max-width: 400px;
    margin-left: 10px;
}

@media screen and (max-width: 767px) {
    .select-row2 select {
        font-size: 12px;
        margin-left: 5px;
    }
}

.sele-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
    .sele-row {
        margin-bottom: 5px;
        display: block;
    }
}

@media screen and (max-width: 767px) {
    .p0831 {
        font-size: 13px;
    }
}

.title0831 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.select-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 700px;
}

.select-row select {
    border: 1px solid #ccc;
    padding: 10px;
}

@media screen and (max-width: 767px) {
    .select-row select {
        font-size: 12px;
    }
}

.select-row .set {
    margin-left: 10px;
    width: 60px;
}

@media screen and (max-width: 767px) {
    .select-row .set {
        margin-left: 5px;
        font-size: 10px;
        width: 50px;
    }
}

.select-row .main-select {
    width: calc(100% - 110px);
}

@media screen and (max-width: 767px) {
    .select-row .main-select {
        width: calc(100% - 90px);
    }
}

.select-row .num-select {
    margin-left: 40px;
    width: 50px;
}

@media screen and (max-width: 767px) {
    .select-row .num-select {
        margin-left: 10px;
        width: 40px;
    }
}

.present-attention {
    margin-top: 10px;
    font-size: 16px;
}

@media screen and (max-width: 767px) {
    .present-attention {
        font-size: 13px;
    }
}

.present-sub-title {
    font-size: 18px;
    margin-bottom: 5px;
}

@media screen and (max-width: 767px) {
    .present-sub-title {
        font-size: 14px;
    }
}

.present-sub-title.up {
    margin-top: 20px;
}

.total-wrap {
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    margin-top: 40px;
}

.total-wrap .price {
    min-width: 200px;
    text-align: right;
}

.total-wrap2 {
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    margin-top: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.total-wrap2 .text {
    font-size: 25px;
}

.total-wrap2 .price {
    min-width: 200px;
    font-size: 25px;
    text-align: right;
}

.total-en {
    font-size: 25px;
}

.total-wrap2-text {
    color: #ec9b9f;
    margin-right: 5px;
}

.total-last {
    font-size: 14px;
}

@media screen and (max-width: 767px) {
    .total-last {
        font-size: 12px;
    }
}

.total-last.pink {
    color: #ec9b9f;
}

.total-last.add {
    margin-top: 60px;
}

@media screen and (max-width: 767px) {
    .total-last.add {
        margin-top: 20px;
    }
}

.total-kingaku {
    position: absolute;
    left: 200%;
}

.mw_wp_form_confirm .total-wrap {
    opacity: 0;
}

.mw_wp_form_confirm .total-en {
    display: none;
}

.mw_wp_form_confirm #pro1,
.mw_wp_form_confirm #pro2,
.mw_wp_form_confirm #pro3 {
    display: block !important;
}

.none {
    display: none !important;
}

.contact-form .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.contact-form .row.border {
    align-items: flex-start;
    border-top: 1px solid #323333;
    padding-top: 0;
}
.contact-form .row.border + .row.textarea {
    border-top: 1px solid #323333;
    padding-top: 20px;
}
.contact-form .row.border .dd {
    padding-top: 20px;
}
@media screen and (max-width: 767px) {
    .contact-form .row.border,
    .contact-form .row.border + .row.textarea {
        border-top: none;
        padding-top: 0;
    }
    .contact-form .row.border {
        border-bottom:  1px solid #323333;
    }
    .contact-form .row.border .dd {
        padding-top: 0;
        padding-bottom: 20px;
        padding-left: 20px;
    }
}

.contact-form .row.border ul.attention {
    font-size: 14px;
    padding-top: 10px;
}
@media screen and (max-width: 767px) {
    .contact-form .row.border ul.attention {
        font-size: 12px;
    }
}

.atte0916 {
    color: #f52828;
    font-weight: 500;
}

.slick-sub-bottom .right .title.color9 {
    color: #edc74c;
}

.b-9 .slick-sub-heading {
    background: #edc74c;
}

.slick-sub-bottom .right .title.color10 {
    color: #1ea7a3;
}

.b-10 .slick-sub-heading {
    background: #1ea7a3;
}

.csr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
    .csr {
        display: block;
        margin-bottom: 20px;
    }
}

.csr .left {
    width: 50%;
}

@media screen and (max-width: 767px) {
    .csr .left {
        width: 100%;
        margin-bottom: 10px;
    }
}

.csr .right {
    width: 45%;
}

@media screen and (max-width: 767px) {
    .csr .right {
        width: 100%;
    }
}

.csr .right .title {
    font-size: 20px;
    margin-bottom: 40px;
    color: #ec9b9f;
}

@media screen and (max-width: 767px) {
    .csr .right .title {
        font-size: 16px;
        margin-bottom: 10px;
    }
}

.csr .right .text {
    font-size: 18px;
}

@media screen and (max-width: 767px) {
    .csr .right .text {
        font-size: 14px;
    }
}

.oem-title span {
    display: block;
    font-size: 20px;
}

@media screen and (max-width: 767px) {
    .oem-title span {
        font-size: 13px;
    }
}

@media screen and (min-width: 768px) {
    .slick-num {
        display: none;
    }
}

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

.container-csr .slick-img {
    padding: 0 20px;
}

.container-csr p {
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
}

@media screen and (max-width: 767px) {
    .container-csr p {
        margin-top: 10px;
        font-size: 14px;
    }
}

.slider-csr .slick-next:before {
    content: "";
    background: url(../img/slider-arrow-right.png) no-repeat center center/cover;
    width: 40px;
    height: 40px;
    position: absolute;
    right: -33px !important;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.slider-csr .slick-prev:before {
    content: "";
    background: url(../img/slider-arrow-left.png) no-repeat center center/cover;
    width: 40px;
    height: 40px;
    position: absolute;
    left: -33px !important;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.container-csr p {
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media screen and (max-width: 767px) {
    .slider-csr .slick-next {
        right: 12px;
    }
}

.slider-csr .slick-prev {
    z-index: 10;
}

@media screen and (max-width: 767px) {
    .slider-csr .slick-prev {
        left: 12px;
    }
}

.slider-csr .slick-center p {
    opacity: 1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.znbody,
.znbody p,
.znbody span,
.znbody a,
.znbody div,
.znbody .top-about-ul .title,
.znbody .section-title-span,
.znbody .slick-sub-bottom .btn a {
    font-family: "Noto Sans SC", sans-serif !important;
}

html,
body {
    -webkit-text-size-adjust: 100% !important;
}

/* ==============================
  404 Not Found
============================== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@700&display=swap');

section.error-404 {
    background-color: #fbebec;
    text-align: center;
    padding: 100px 0;
}
section.error-404 h2 {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 50px;
}
section.error-404 .section-title-span {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    color: #eb9a9e;
    font-size: 22px;
}
section.error-404 .img {
    max-width: 685px;
    margin: 0 auto;
}

section.error-404 .notfound-text {
    font-weight: bold;
}
section.error-404 .con-btn {
    margin-top: 65px;
}
@media print, screen and (max-width: 768px) {
    section.error-404 h2 {
        font-size: 35px;
    }
    section.error-404 .section-title-span {
        font-size: 15px;
    }
    section.error-404 .img {
        width: 100%;
    }
    section.error-404 .notfound-text {
        font-size: 13px;
    }
}

/* ==============================
  採用情報
============================== */
section.recruit.about {
    text-align: center;
}

section.recruit.about p.pink {
    color: #ec9b9f;
    margin-bottom: 50px;
    font-weight: bold;
}
section.recruit.about p {
    font-size: 20px;
    line-height: 1.7;
}
@media print, screen and (max-width: 768px) {
    section.recruit.about {
        text-align: left;
    }
    section.recruit.about p.pink {
        margin: 10vw 0 8vw;
    }
    section.recruit.about p {
        font-size: 14px;
    }
}

section.recruit.detail {
    background-color: #FCF5F5;
}

.recruit-title-ja {
    font-size: 30px;
    color: #ec9b9f;
    text-align: center;
}
@media print, screen and (max-width: 768px) {
    .recruit-title-ja {
        font-size:22px;
    }
}

.recruit-detail-wrap {
    margin-top: 130px;
    margin-bottom: 50px;
}
.recruit-detail-wrap:first-of-type {
    margin-top: 100px;
}

.recruit-detail-wrap h3 {
    font-size: 26px;
    text-align: center;
    line-height: 1;
    margin-bottom: 20px;
}
.recruit-detail-wrap h3 span {
    font-size: 18px;
}
.recruit-se1 .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #ec9b9f;
}
.recruit-se1 .row .dt {
    width: 150px;
    font-size: 18px;
    padding: 30px 20px;
    color: #ec9b9f;
}
.recruit-se1 .row .dd {
    width: calc(100% - 150px);
    font-size: 18px;
    padding: 30px 20px;
}
@media print, screen and (max-width: 768px) {
    .recruit-detail-wrap,
    .recruit-detail-wrap:first-of-type {
        margin-top: 12vw;
        margin-bottom: 20vw;
    }

    .recruit-detail-wrap h3 {
        font-size: 19px;
        margin-bottom: 5vw;
    }
    .recruit-detail-wrap h3 span {
        font-size: 11px;
    }
    .recruit-se1 .row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        border-bottom: 1px solid #ec9b9f;
    }
    .recruit-se1 .row .dt {
        width: 100px;
        font-size: 12px;
        padding: 20px 10px;
    }
    .recruit-se1 .row .dd {
        width: calc(100% - 100px);
        font-size: 12px;
        padding: 20px 10px;
    }
}

section.recruit.flow {
    padding-top: 130px;
}
.recruit-flow-wrapper {
    margin-top: 100px;
}
.recruit-flow-box {
    display: flex;
    align-items: center;
    border: 1px solid #E3979B;
    box-sizing: border-box;
    padding: 3% 5%;
    margin-bottom: 98px;
    position: relative;
}
.recruit-flow-box::after {
    content: "";
    display: block;
    background-image: url(../img/recruit-flow-arrow.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    height: 26px;
}
.recruit-flow-box:last-of-type::after {
    display: none;
}
.recruit-flow-box img {
    max-width: 133px;
    width: 13.3%;
    margin-right: 5%;
}
.recruit-flow-box .recruit-flow-text {
    font-size: 18px;
}
.recruit-flow-box .recruit-flow-text h6 {
    font-size: 26px;
    font-weight: bold;
}
@media print, screen and (max-width: 768px) {
    section.recruit.flow {
        padding-top: 13.3vw;
    }
    .recruit-flow-wrapper {
        margin-top: 10vw;
    }

    .recruit-flow-box {
        padding: 4vw 2vw;
        margin-bottom: 13vw;
    }
    .recruit-flow-box::after {
        bottom: -8.1vw;
        height: 3.3vw;
        background-size: contain;
    }
    .recruit-flow-box:last-of-type::after {
        display: none;
    }
    .recruit-flow-box img {
        width: 14.1vw;
        margin-right: 4vw;
    }
    .recruit-flow-box .recruit-flow-text {
        font-size: 12px;
    }
    .recruit-flow-box .recruit-flow-text h6 {
        font-size: 14px;
    }
}

section.recruit.entry {
    background-color: #FCF5F5;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}
section.recruit.entry .section-title {
    margin-bottom: 40px;
}
section.recruit.entry p {
    margin-bottom: 70px;
}
section.recruit.entry .btn a {
    padding: 15px 40px;
    color: #ec9b9f;
    border: 1px solid #ec9b9f;
    border-radius: 30px;
    font-size: 18px;
    position: relative;
    background-color: #FFF;
}
section.recruit.entry .btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../img/arrow-pink.png) no-repeat center center/cover;
    width: 20px;
    height: 8px;
}
@media print, screen and (max-width: 768px) {
    section.recruit.entry {
        max-width: 80vw;
    }
    section.recruit.entry .section-title {
        margin-bottom: 6.6vw;
    }
    section.recruit.entry .section-title-span {
        font-size: 14px;
    }
    section.recruit.entry p {
        font-size: 14px;
        margin-bottom: 7.4vw;
    }
    section.recruit.entry .btn a {
        font-size: 16px;
        padding: 10px 40px;
    }
}

.contact-width .thanks-text {
    text-align: center;
    font-weight: bold;
    margin-bottom: 21px;
}
@media print, screen and (max-width: 768px) {
    .contact-width .thanks-text {
        text-align: left;
    }
}
