@charset 'utf-8';
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600&family=Playfair+Display+SC&display=swap');
/*==============
    common
===============*/
@font-face {
    font-family: 'icomoon';
    src:url('../fonts/icomoon.eot?ch1k2p');
    src:url('../fonts/icomoon.eot?ch1k2p#iefix') format('embedded-opentype'),
        url('../fonts/icomoon.ttf?ch1k2p') format('truetype'),
        url('../fonts/icomoon.woff?ch1k2p') format('woff'),
        url('../fonts/icomoon.svg?ch1k2p#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}
[class^="icon-"], [class*=" icon-"] {
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
:root {
    /* color */
    --black: #292929;
    --gray: #f2f2f2;
    --red: #df7076;
    --color1: #7f9183;
    --color2: #cccccc;
    --link: #377188;
    /* font */
    --en :
    'Playfair Display SC', serif;
    --jp :
    'Noto Sans JP', sans-serif;
}
::selection {
    background: var(--color1);
    color: #fff;
}
::-moz-selection {
    background: var(--color1);
    color: #fff;
}
html{
    font-size: 10px;
    scroll-behavior: smooth;
}
img{
    user-drag: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    image-rendering: -webkit-optimize-contrast;
    width: 100%;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
body {
    font-size: 1.4rem;
    font-family: var(--jp);
    font-weight: 500;
    color: var(--black);
    animation: fadeIn 4s forwards;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0; /* add */
}
a{
    text-decoration: none;
    color: initial;
    transition: 0.4s all;
    word-break: break-all;
}
.pc{
    display: block;
}
.sp{
    display: none;
}
.wrap{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.flex{
    display: flex;
}
.hover{
    transition: 0.4s all;
}
.hover:hover{
    opacity: 0.5;
}
.text-center {
    text-align: center;
}
@media screen and (max-width: 1200px){
    .wrap{
        width: 90%;
        max-width: none;
    }
}
@media screen and (max-width: 768px){
    .pc{
        display: none;
    }
    .sp{
        display: block;
    }
}
/*==============
    common
===============*/
.indent{
    text-indent: -0.8rem;
    padding-left: 0.8rem;
    display: block;
}
.cap{
    font-size: 1.2rem;
    text-indent: -1rem;
    padding-left: 1rem;
    display: block;
}
/* anime */
.anime {
    position: relative;
    overflow: hidden;
}
.anime::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--color1);
    z-index: 50;
    transition: .8s;
}
.anime.show::before{
    transform: translateX(100%);
}
.anime img{
    opacity: 0;
    transition: .8s;
}
.anime.show img{
    opacity: 1;
}
.fadeIn {
    transition: 1.6s opacity cubic-bezier(0.5, 1, 0.89, 1);
    opacity: 0;
}
.fadeIn.show {
    opacity: 1;
}
/* toppage */
h2{
    font-family: var(--en);
    font-size: clamp(3.2rem, 7.6vw, 5.6rem);
    margin-bottom: 45px;
    letter-spacing: 0.05em;
}
/* google material_icons */
.material-icons.md-18 { 
    font-size: 18px;
}
.material-icons.md-20 { 
    font-size: 20px;
}
.material-icons.md-24 { 
    font-size: 24px;
}
.material-icons.md-36 { 
    font-size: 36px; 
}
.material-icons.md-48 { 
    font-size: 48px;
}
/* view more */
.moreBtn a{
    margin-left: 20px;
    position: relative;
    font-size: 1.8rem;
    font-family: var(--en);
    letter-spacing: 0.025em;
    display: inline-block;
    background: var(--color1);
    color: #fff;
    padding: 20px 44px;
    z-index: 2;
}
.moreBtn a:before{
    content: "";
    width: 40px;
    height: 1px;
    background: #fff;
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.4s;
}
.moreBtn a:after{
    content: "";
    width: 0;
    height: 100%;
    background: #fff;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.4s;
}
.moreBtn a:hover:before{
    left: -10px;
}
.moreBtn a:hover:after{
    width: 100%;
}
@media screen and (max-width: 768px){
    h2 {
        margin-bottom: 24px;
    }
    /* more */
    .moreBtn a {
        font-size: 1.6rem;
        padding: 12px 36px;
    }
}
/*==============
    header
===============*/
header .header-logo {
    position: fixed;
    top: 28px;
    left: 30px;
    z-index: 10;
}
header .header-logo img {
    max-width: 170px;
    max-height: 7vh;
}
header .gnav {
    position: fixed;
    top: 32px;
    right: 84px;
    z-index: 10;
}
header .gnav-list {
    display: flex;
    align-items: center;
    column-gap: 14px;
}
header .gnav-list a {
    display: block;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    background: var(--color1);
    color: #fff;
    text-align: center;
    border-radius: 100px;
    text-align: center;
    padding: 10px 42px;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
}
header .gnav-list a:hover {
    opacity: 0.5;
}
header .hamburger {
    width: 30px;
    height: 12px;
    position: fixed;
    top: 45px;
    right: 30px;
    z-index: 600;
    cursor: pointer;
}
header .hamburger:before,
header .hamburger:after {
    content: "";
    position: absolute;
    background: var(--color1);
    width: 100%;
    height: 2px;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease;
}
header .hamburger:before {
    top: 0;
}
header .hamburger:after {
    top: 10px;
}
header .nav-wrapper.open .hamburger:after,
header .nav-wrapper.open .hamburger:before {
    transition: top 300ms 50ms ease, transform 300ms 350ms ease;
    top: 6px;
    background: #fff;
}
header .nav-wrapper.open .hamburger:before {
    transform: rotate(45deg);
    background: var(--black);
}
header .nav-wrapper.open .hamburger:after {
    transform: rotate(-45deg);
    background: var(--black);
}
header .nav {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 500;
    background: url(../img/fantta-template-b/bg2.jpg) no-repeat top left /100%,
                         url(../img/fantta-template-b/bg.jpg) repeat-y center /100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}
header .nav-wrapper.open .nav {
    opacity: 1.0;
    visibility: visible;
}
header .nav .wrap {
    padding: 100px 0;
    height: 100%;
    position: relative;
    overflow-y: auto;
    overscroll-behavior-y: none;
    box-sizing: border-box;
}
header .nav-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    column-gap: 12.5%;
}
header .nav-main {
    width: 36%;
}
header .nav-main ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 12%;
}
header .nav-main ul li a {
    display: block;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    text-align: center;
    border-radius: 100px;
    text-align: center;
    padding: 10px 42px;
    background: var(--color1);
    color: #fff;
}
header .nav-main ul li a:hover {
    opacity: 0.5;
}
header .nav-pages {
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    column-gap: 13%;
}
header .nav-pages__main li {
    opacity: 0;
    transition: 1.4s all;
}
header .nav-wrapper.open .nav-pages__main li {
    opacity: 1;
}
header .nav-wrapper.open .nav-pages__main li:nth-child(1) {
    transition-delay: 0.2s;
}
header .nav-wrapper.open .nav-pages__main li:nth-child(2) {
    transition-delay: 0.3s;
}
header .nav-wrapper.open .nav-pages__main li:nth-child(3) {
    transition-delay: 0.4s;
}
header .nav-wrapper.open .nav-pages__main li:nth-child(4) {
    transition-delay: 0.5s;
}
header .nav-wrapper.open .nav-pages__main li:nth-child(5) {
    transition-delay: 0.6s;
}
header .nav-wrapper.open .nav-pages__main li:nth-child(6) {
    transition-delay: 0.7s;
}
header .nav-wrapper.open .nav-pages__main li:nth-child(7) {
    transition-delay: 0.8s;
}
header .nav-wrapper.open .nav-pages__main li:nth-child(8) {
    transition-delay: 0.9s;
}
header .nav-wrapper.open .nav-pages__main li:nth-child(9) {
    transition-delay: 1.0s;
}
header .nav-pages__main li + li {
    margin-top: 8vh;
}
header .nav-pages__main li a {
    color: var(--black);
    font-family: var(--en);
    font-size: 2.4rem;
    letter-spacing: 0.05em;
    line-height: 1.0;
    position: relative;
}
header .nav-pages__main li a:before {
    content: "";
    width: 100%;
    height: 2px;
    background: currentColor;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(0, 1);
    transform-origin: right;
    transition: transform 0.4s;
}
header .nav-pages__main li a:hover:before {
    transform: scale(1, 1);
    transform-origin: left;
}
header .nav-pages__sub {
    opacity: 0;
    transition: 1.4s all;
    transition-delay: 0.5s;
}
header .nav-wrapper.open .nav-pages__sub {
    opacity: 1.0;
}
header .nav-pages__sub li + li {
    margin-top: 5.5vh;
}
header .nav-pages__sub li a {
    color: var(--black);
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.0;
}
header .nav-others {
    position: absolute;
    right: 0;
    top: calc(100% + 20px);
}
header .nav-others ul {
    display: flex;
    align-items: center;
    column-gap: 24px;
}
header .nav-others ul li:nth-child(1) {
    max-width: 70px;
}
header .nav-others ul li:nth-child(2) {
    max-width: 180px;
}
@media screen and (max-width: 1200px){
    header .nav-pages {
        column-gap: 8%;
        justify-content: space-between;
    }
    header .nav-main {
        width: 30%;
    }
    header .nav-container {
        column-gap: 6vw;
    }
}
@media screen and (max-width: 1100px){
    header .pc {
        display: none;
    }
    header .sp {
        display: block;
    }
    header .header-logo img {
        max-width: 170px;
    }
    header .nav {
        background: url(../img/fantta-template-b/bg_sp.jpg) no-repeat left top /100%,
                             url(../img/fantta-template-b/bg.jpg) repeat-y center /100%;
    }
    header .nav .wrap {
        padding: 40px 0;
    }
    header .nav .wrap::-webkit-scrollbar {
        display: none;
    }
    header .nav-container {
        flex-direction: column;
        justify-content: center;
        row-gap: 8vh;
        height: auto;
        min-height: 100%;
    }
    header .nav-main {
        width: 100%;
    }
    header .nav-main p {
        text-align: center;
    }
    header .nav-main img {
        max-width: 240px;
    }
    header .nav-main ul {
        margin-top: 32px;
    }
    header .nav-pages {
        flex-grow: 0;
        flex-wrap: wrap;
        row-gap: 0;
    }
    header .nav-pages__main {
        width: 100%;
    }
    header .nav-pages__main:nth-child(2){
        margin-top: 28px;
    }
    header .nav-pages__main li {
        text-align: center;
    }
    header .nav-pages__main li + li {
        margin-top: 28px;
    }
    header .nav-pages__main li a {
        font-size: 2.0rem;
    }
    header .nav-pages__sub {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, auto);
        justify-content: center;
        gap: 24px 48px;
        margin-top: 8vh;
    }
    header .nav-pages__sub li + li {
        margin-top: 0;
    }
    header .nav-others {
        position: relative;
        right: auto;
        top: auto;
    }
    header .nav-others ul li {
        flex: 1;
    }
}
@media screen and (max-width: 768px){
    header .header-logo {
        top: 20px;
        left: 5%;
    }
    header .header-logo img {
        max-width: 150px;
        max-height: 4vh;
    }
    header .hamburger {
        top: 32px;
        right: 5%;
    }
    header .nav-container {
        row-gap: 52px;
    }
    header .nav-main img {
        max-width: 200px;
    }
    header .nav-main ul {
        margin-top: 20px;
    }
    header .nav-pages__sub {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 0;
        width: 85%;
        margin: 0 auto;
        margin-top: 8vh;
    }
    header .nav-pages__sub li a {
        font-size: 1.1rem;
    }
    header .nav-pages__sub li{
        text-align: center;
    }
}
@media screen and (max-width: 430px){
   header .header-logo img{
    max-height: 38px;
   }
   header .nav-others ul li:nth-child(1) {
    max-width: 50px;
    }
}
/*==============
    footer
===============*/
footer {
    background: var(--color1);
    padding: 100px 0 32px;
}
@media screen and (max-width: 768px){
    footer {
        margin-top: auto;
        padding: 0;
    }
}
footer .footer-wrapper {
    display: flex;
    align-items: flex-start;
    /* justify-content: space-between; */
    column-gap: 10%;
}
@media screen and (max-width: 768px){
    footer .footer-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 32px;
    }
}
footer .footer-logo {
    width: 25.75%;
    max-width: 355px;
}
@media screen and (max-width: 768px){
    footer .footer-logo {
        width: 200px;
        display: none;
    }
}
footer .footer-nav li + li {
    margin-top: 40px;
}
footer .footer-nav a {
    color: #fff;
    font-family: var(--en);
    font-size: 1.6rem;
    letter-spacing: 0.025em;
    line-height: 1.0;
    position: relative;
}
footer .footer-nav a:before {
    content: "";
    width: 100%;
    height: 1px;
    background: currentColor;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: scale(0, 1);
    transform-origin: right;
    transition: transform 0.2s linear;
}
footer .footer-nav a:hover:before {
    transform: scale(1, 1);
    transform-origin: left;
}
@media screen and (max-width: 768px){
    footer .footer-nav {
        display: none;
    }
}
footer .footer-subnav {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 32px 52px;
}
@media screen and (max-width: 1100px){
    footer .footer-subnav {
        grid-template-columns: auto;
        gap: 20px 0;
    }
}
@media screen and (max-width: 768px){
    footer .footer-subnav {
        display: none;
    }
}
footer .footer-subnav a {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #fff;
}
footer .footer-others {
    width: 19%;
}
footer .footer-others li + li {
    margin-top: 24px;
}
footer .footer-others li:nth-child(1) {
    max-width: 100px;
}
footer .footer-others li:nth-child(2) {
    max-width: 250px;
}
@media screen and (max-width: 768px){
    footer .footer-others {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 20px;
        display: none;
    }
    footer .footer-others li {
        flex: 1;
    }
    footer .footer-others li + li {
        margin-top: 0;
    }
}
footer .copyright {
    margin-top: 100px;
    text-align: center;
    font-size: 1.0rem;
    font-weight: 700;
    color: var(--black);
}
footer .copyright small {
    font-size: 100%;
    color: #fff;
}
@media screen and (max-width: 768px){
    footer .copyright {
        margin-top: 0px;
        padding: 12px 0;
    }
}
/*==============
    news
===============*/
#news .category-wrap{
    display: flex;
    gap: 40px;
    justify-content: end;
}
#news .category-wrap li{
    border-bottom: 0;
    padding: 0;
}
#news .category-wrap li a{
    font-family: var(--en);
    font-size: 1.6rem;
}
#news .category-wrap li.on a{
    color: var(--color2);
}
#news ul li{
    border-bottom: 1px solid var(--color2);
    padding: 32px 16px;
}
#news ul li a .flex{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 12px;
}
#news ul li .day{
    font-size: 1.4rem;
    color: #b2b2b2;
    transition: 0.4s all;
    margin-left: 1.88vw;
}
#news ul li .category i{
    font-family: var(--en);
    font-size: 1.6rem;
    background: var(--color1);
    padding: 6px 10px;
    min-width: 84px;
    text-align: center;
    color: #fff;
    display: block;
    transition: 0.4s all;
}
#news ul li .ttl{
    font-size: 1.6rem;
    line-height: 1.8;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    transition: 0.4s all;
}
#news ul li:hover .ttl,
#news ul li:hover .day{
    opacity: 0.5;
}
#news ul li:hover .category i{
    background: #aaa;
}
#news.from-ryeoun ul li .day{
    margin-left: 0;
}
@media screen and (max-width: 768px){
    #news ul li {
        padding: 20px 0;
    }
    #news .category-wrap {
        justify-content: flex-start;
        margin-bottom: 16px;
    }
    #news ul li .ttl{
        font-size: 1.4rem;
        -webkit-line-clamp: 3;
    }
}
/*==============
    common
===============*/
body {
    background: url(../img/fantta-template-b/bg.jpg) repeat-y top center /100%;
}
.top h2 {
    color: var(--black);
}
.reflect,
.reflect canvas {
    max-width: 100%;
}
@media screen and (max-width: 768px){
    .moreBtn {
        text-align: right;
    }
}
/*==============
    header
===============*/
/*header .header-logo {
    display: none!important;
}*/
header .gnav-list a {
    background: #fff;
    color: var(--black);
}
header .gnav-list a:hover {
    background: var(--color2);
    opacity: 1;
}
header .hamburger:before,
header .hamburger:after {
    background: #fff;
}

/*==============
    main
===============*/
#main {
    position: relative;
    overflow: hidden;
}
#main:before {
    content: "";
    width: 100%;
    height: 100%;
    background: url(../img/fantta-template-b/main.jpg) no-repeat top center /cover;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1.05);
    transition: 2s transform cubic-bezier(0.5, 1, 0.89, 1);
    transition-delay: 0.1s;
}
#main.show:before {
    transform: scale(1);
}
#main .wrap {
    position: relative;
    height: 100vh;
}
#main .mv-logo {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 31.68%;
    opacity: 0;
    transition: 1.6s opacity cubic-bezier(0.5, 1, 0.89, 1);
    transition-delay: 0.5s;
    max-width: 456.17px;
}
#main.show .mv-logo {
    opacity: 1.0;
}
@media screen and (max-width: 768px){
    #main .mv-logo {
        width: 80%;
    }
}
@media screen and (max-width: 500px){
    #main:before {
        background: url(../img/fantta-template-b/main-sp.jpg) no-repeat top center /cover;
    }
}
/*==============
    topics
===============*/
#topics {
    transform: translateY(-50px);
    margin-bottom: -70px;
}
#topics .topics-list {
}
#topics .topics-list-item {
    padding: 0 16px 20px;
    max-width: 471px;
    position: relative;
}
@media screen and (max-width: 768px){
    #topics {
        transform: translateY(-50px);
        margin-bottom: -70px;
        position: relative;
        z-index: 10;
    }
    #topics .topics-list-item {
        padding: 0 8px 20px;
    }
}
#topics .topics-list-item:before {
    content: "";
    width: calc(100% - 32px);
    height: calc(100% - 20px);
    position: absolute;
    top: 0;
    left: 16px;
    box-shadow: 0px 10px 15px 0px rgba(0,0,0,0.3);
}
#topics .topics-list-item a {
    position: relative;
    display: block;
    overflow: hidden;
}
#topics .topics-list-item a:after {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--color1);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.4s;
}
#topics .topics-list-item img {
    transition: all 0.4s;
}
#topics .topics-list-item a:hover:after {
    opacity: 0.5;
}
#topics .topics-list-item a:hover img {
    transform: scale(1.05);
}
/*==============
    news
===============*/
#news {
    padding: 150px 0;
    background: url(../img/fantta-template-b/bg2.jpg) no-repeat top left /100%;
    background-attachment: fixed;
    background-size: cover;
}
#message {
    padding: 150px 0 0;
}
.bgImg{
    background: url(../img/fantta-template-b/bg2.jpg) no-repeat top left /100%;
    background-attachment: fixed;
    background-size: cover;
}
@media screen and (max-width: 768px) {
    #news {
        padding: 80px 0;
        background-attachment: initial;
        background: none;
        position: relative;
    }
    #message {
        padding: 80px 0;
        background-attachment: initial;
        background: none;
        position: relative;
    }
    .bgImg {
        background-attachment: initial;
        background: none;
        position: relative;
    }
    #news::after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        width: 100%;
        height: 100vh;
        background-repeat: no-repeat;
        background-position: 0 0;
        background-image: url(../img/fantta-template-b/bg_sp.jpg);
        background-size: cover;
    }
    .bgImg::after {
        content: "";
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        z-index: -2;
        width: 100%;
        height: 100vh;
        background-repeat: no-repeat;
        background-position: 0 0;
        background-image: url(../img/fantta-template-b/bg_sp.jpg);
        background-size: cover;
    }
}
#news .news-container,
#message .message-container {
    display: grid;
    grid-template-columns: 360px 1fr;
}
#news .news-container .moreBtn,
#message .message-container .moreBtn {
    grid-column: 1 / 2;
}
#news .news-container ul,
#message .message-container ul {
    grid-column: 2 / 3;
    grid-row: 1 / 4;
}
@media screen and (max-width: 959px){
    #news .news-container,
    #message .message-container {
        grid-template-columns: 100%;
    }
    #news .news-container .moreBtn,
    #message .message-container .moreBtn {
        grid-column: auto;
        grid-row: 3;
        margin-top: 45px;
    }
    #news .news-container ul,
    #message .message-container ul {
        grid-column: auto;
        grid-row: auto;
    }
}
#news ul li,
#message ul li {
    padding: 0;
    border: 0;
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.3);
}
#news ul li + li,
#message ul li + li {
    margin-top: 32px;
}
@media screen and (max-width: 768px){
    #news ul li + li,
    #message ul li + li {
        margin-top: 20px;
    }
}
#news ul li:hover .category i,
#message ul li:hover .category i {
    background: var(--color1);
}
#news ul li:hover .ttl,
#news ul li:hover .day,
#message ul li:hover .ttl,
#message ul li:hover .day {
    opacity: 1;
}
#news ul li a,
#message ul li a {
    display: block;
    background: #fff;
    padding-bottom: 20px;
    position: relative;
    z-index: 2;
}
#news ul li a:before,
#message ul li a:before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--color1);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s all;
    z-index: -1;
}
#news ul li .ttl,
#message ul li .ttl {
    font-size: 1.8rem;
    margin: 12px 30px 0;
}
#message ul li .day{
    margin: 0 0 0 32px;
    padding-top: 20px;
}
#news ul li a:hover:before,
#message ul li a:hover:before {
    opacity: 0.3;
    visibility: visible;
}
@media screen and (max-width: 768px){
    #news ul li .ttl,
    #message ul li .ttl {
        font-size: 1.4rem;
        margin: 12px 15px 0;
    }
    #message ul li .day{
        margin: 0 0 0 15px;
        padding-top: 15px;
    }
}
/*==============
    profile
===============*/
#profile {
    background: url(../img/fantta-template-b/profile.jpg) no-repeat center /cover;
    padding: 8.89vw 0;
}
@media screen and (max-width: 768px){
    #profile {
        background: url(../img/fantta-template-b/profile_sp.jpg) no-repeat center /cover;
        padding: 17vw 0;
    }
    #profile .moreBtn {
        text-align: left;
    }
}
/*==============
    gallery
===============*/
#gallery {
    padding: 150px 0 70px;
    background: linear-gradient(135deg, #fefbff 0%, #dfdfdf 100%);
}
@media screen and (max-width: 768px){
    #gallery {
        padding: 80px 0;
    }
}
#gallery .gallery-item {
    margin-bottom: 80px;
    padding: 3.89vw 0;
    position: relative;
    z-index: 2;
}
#gallery .gallery-item .wrap{
    position: relative;
    z-index: 2;
}
#gallery .gallery-item:after {
    content: "";
    width: 80%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
}
#gallery #photo:after {
    background: url(../img/fantta-template-b/photo.jpg) no-repeat center /cover;
}
#gallery #movie:after {
    background: url(../img/fantta-template-b/movie.jpg) no-repeat center /cover;
}
#gallery .gallery-item.anime:before {
    width: 80%;
    z-index: 10;
}
#gallery .gallery-item.anime.show:before {
    transform: translateX(-100%);
}
@media screen and (max-width: 768px){
    #gallery .gallery-item {
        margin-bottom: 40px;
        padding: 8vw 0;
    }
    #gallery .gallery-item:nth-child(2){
        margin-bottom: 0;
    }
    #gallery .gallery-item:after {
        width: 100%;
    }
    #gallery #photo:after {
        background: url(../img/fantta-template-b/photo_sp.jpg) no-repeat center /cover;
    }
    #gallery #movie:after {
        background: url(../img/fantta-template-b/movie_sp.jpg) no-repeat center /cover;
    }
    #gallery .gallery-item.anime:before {
        width: 100%;
    }
}
#gallery .gallery-item-ttl {
    font-family: var(--en);
    font-size: 3.0rem;
    letter-spacing: 0.025em;
    color: var(--black);
    margin-bottom: 16px;
}
@media screen and (max-width: 768px){
    #gallery .gallery-item-ttl {
        font-size: 1.6rem;
        margin-bottom: 0;
    }
}
#gallery .moreBtn {
    position: relative;
    right: auto;
    bottom: auto;
}
@media screen and (max-width: 768px){
    #gallery .moreBtn {
        text-align: left
    }
}
#gallery .gallery-item:nth-child(odd) .gallery-item-container {
    width: fit-content;
    margin-left: auto;
}
#gallery .gallery-item:nth-child(even):after {
    left: auto;
    right: 0;
}
#gallery .gallery-item.anime:nth-child(even):before {
    left: 20%;
}
#gallery .gallery-item.anime.show:nth-child(even):before {
    transform: translateX(100%);
}
@media screen and (max-width: 768px){
    #gallery .gallery-item.anime:nth-child(even):before {
        left: 0;
    }
    #gallery .gallery-item:nth-child(odd) .gallery-item-container {
        margin-left: initial;
    }
    #gallery h2, #gallery .gallery-item-ttl{
        color: var(--black);
    }
}
/*==============
    special
===============*/
#special {
    padding: 275px 0 56px;
    position: relative;
    overflow: hidden;
    z-index: 2;
    background: url(../img/fantta-template-b/bg2.png) no-repeat left top /100%;
    background-attachment: fixed;
}
@media screen and (max-width: 768px){
    #special {
        padding: 100px 0 0;
        background-attachment: initial;
        background: none;
    }
}
#special:after {
    content: "";
    width: 80%;
    height: 610px;
    background: linear-gradient(135deg, #fefbff 0%, #dfdfdf 100%);
    position: absolute;
    top: 120px;
    left: 0;
    z-index: -1;
}
@media screen and (max-width: 768px){
    #special:after {
        height: 300px;
        top: 50px;
    }
}
#special .flex {
    align-items: center;
    justify-content: space-between;
}
#special .flex h2 {
    margin-bottom: 0;
}
#special .special-list {
    margin-top: 72px;
}
#special .special-list.slick-dotted.slick-slider {
    margin-bottom: 0;
}
#special .special-list .slick-list {
    overflow: visible;
}
#special .special-list-item {
    margin: 0 18px;
    box-shadow: 0px 10px 15px 0px rgba(0,0,0,0.3);
}
@media screen and (max-width: 768px){
    #special .special-list-item {
        margin: 0 8px;
    }
    #special .special-list {
        margin-top: 24px;
    }
}
#special .special-list-item-inner {
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
}
#special .special-list-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    filter: blur(8.5px);
    transition: 0.4s all;
}
#special .special-list-item-inner a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#special .special-list-item-inner a:before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--color1);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: 0.4s all;
}
#special .special-list-item-inner a:after {
    content: "";
    width: 20%;
    padding-top: 20%;
    background: url(../img/fantta-template-b/lock.png) no-repeat center /contain;
    position: absolute;
    inset: 0;
    margin: auto;
    z-index: 2;
}
#special .special-list-item a:hover:before {
    opacity: 0.5;
}
#special .special-list-item a:hover img {
    transform: scale(1.05);
}
#special .special-list .slick-dots {
    position: relative;
    bottom: auto;
    display: flex;
    column-gap: 10px;
    margin-top: 28px;
    padding: 0 18px;
}
#special .special-list .slick-dots li {
    width: 50px;
    height: auto;
    padding: 0;
    margin: 0;
}
#special .special-list .slick-dots li:first-child:last-child {
    display: none;
}
@media screen and (max-width: 768px){
    #special .special-list-item-inner {
        padding-top: 70%;

    }
    #special .special-list .slick-dots {
        padding: 0 8px;
    }
    #special .special-list .slick-dots li {
        width: 20px;
    }
}
#special .special-list .slick-dots li button {
    width: 100%;
    height: 100%;
    border-radius: 0;
    padding: 0;
    margin: 0;
}
#special .special-list .slick-dots li button:before {
    display: none;
}
#special .special-list .slick-dots li button:after {
    content: "";
    width: 100%;
    height: 3px;
    background: var(--color2);
    margin: 4px 0;
    display: block;
}
#special .special-list .slick-dots li.slick-active button:after {
    background: #fff;
}
#special .special-list-item-inner a.on:after {
    display: none;
}
#special .special-list-item-inner a.on img{
    filter: none;
}
/*==============
    onlineshop
===============*/
#onlineshop {
    padding: 150px 0;
    background: linear-gradient( 0deg, rgb(51,51,51) 0%, rgb(39,39,39) 100%);
}
@media screen and (max-width: 768px){
    #onlineshop {
        padding: 80px 0;
    }
}
#onlineshop .onlineshop-container {
    display: grid;
    grid-template-columns: auto 51%;
    justify-content: space-between;
    column-gap: 32px;
}
#onlineshop .onlineshop-txt {
    color: #fff;
}
#onlineshop .onlineshop-txt h2 {
    white-space: nowrap;
}
#onlineshop .onlineshop-txt .txt {
    font-size: 1.8rem;
    letter-spacing: 0.025em;
    margin-bottom: 60px;
    color: #fff;
}
#onlineshop .onlineshop-img {
    grid-row: 1 / 4;
    grid-column: 2 / 3;
    margin-bottom: -21%;
}
@media screen and (max-width: 959px){
    #onlineshop .onlineshop-container {
        grid-template-columns: 100%;
    }
    #onlineshop .onlineshop-img {
        grid-row: auto;
        grid-column: auto;
        margin: 0 auto;
        width: 500px;
        max-width: 100%;
    }
}
@media screen and (max-width: 768px){
    #onlineshop .onlineshop-txt .txt {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
}
::-webkit-full-page-media, :future, :root #onlineshop .moreBtn{
        margin-top: 24px;
}
/*==============
    video
===============*/
#video {
    padding: 150px 0 150px;
    position: relative;
    overflow: hidden;
}
@media screen and (max-width: 768px){
    #video {
        padding: 0 0 80px;
        background-attachment: initial;
        background: none;
    }
}
#video:after {
    /* content: ""; */
    width: 100%;
    height: 293px;
    background: #333333;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}
@media screen and (max-width: 768px){
    #video:after {
        height: 35%;
    }
}
#video .video-list {
    margin-top: 80px;
}
@media screen and (max-width: 768px){
    #video .video-list {
        margin-top: 40px;
    }
}
#video .video-list.slick-dotted.slick-slider {
    margin-bottom: 0;
}
#video .video-list .slick-list {
    overflow: visible;
}
#video .video-list-item {
    max-width: 960px;
    margin: 0 20px;
    box-shadow: 0px 10px 15px 5px rgba(0,0,0,0.3);
}
@media screen and (max-width: 768px){
    #video .video-list-item {
        margin: 0 8px;
    }
}
#video .youtube {
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
#video .youtube a::before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--color1);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.8s all;
    z-index: 2;
}
#video .youtube a::after {
    content: "";
    background-image: url(../img/fantta-template-b/play.png);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 119px;
    height: 119px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
}
@media screen and (max-width: 420px){
    #video .youtube a::after {
        width: 50px;
        height: 50px;
    }
}
#video .youtube img {
    transition: 0.8s all;
}
#video .youtube:hover a::before {
    opacity: 0.3;
}
#video .youtube:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
#video .video-list .slick-dots {
    position: relative;
    bottom: auto;
    display: flex;
    justify-content: center;
    column-gap: 10px;
    margin-top: 28px;
}
#video .video-list .slick-dots li {
    width: 50px;
    height: auto;
    margin: 0;
    padding: 0;
}
#video .video-list .slick-dots li:first-child:last-child {
    display: none;
}
@media screen and (max-width: 768px){
    #video .video-list .slick-dots li {
        width: 20px;
    }
}
#video .video-list .slick-dots li button {
    width: 100%;
    height: 100%;
    border-radius: 0;
    margin: 0;
    padding: 0;
}
#video .video-list .slick-dots li button:before {
    display: none;
}
#video .video-list .slick-dots li button:after {
    content: "";
    width: 100%;
    height: 3px;
    background: var(--color2);
    margin: 4px 0;
    display: block;
}
#video .video-list .slick-dots li.slick-active button:after {
    background: #fff;
}
/* 1227 */
.slick-prev	{
    left: 0
}
.slick-next	{
    right: 0
}
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  max-width: 70px;
  width: 100%;
  max-height: 70px;
  height: 100%;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  z-index: 10;
  background: transparent;
}
.slick-arrow:before{
	content:""!important;
}
/*==============
    DOWNLOAD
===============*/
#download{
    padding: 150px 0 0;
    /*position: relative;
    overflow: hidden;
    z-index: 2;
    background: url(../img/bg2.png) no-repeat left top /100%;
    background-attachment: fixed;*/
}
#download .flex .left{
    width: 40%;
}
#download .flex .right{
    width: 60%;
}
#download .flex .left p{
    font-size: 1.6rem;
    margin-bottom: 32px;
    line-height: 1.8;
}
#download .flex .left p.moreBtn{
    margin-bottom: 0;
}
#special .flex .moreBtn.pc{
    display: block;
}
#special .flex .moreBtn.sp{
    display: none;
}
@media screen and (max-width: 1000px){
    #download .flex{
        flex-wrap: wrap;
    }
    #download .flex .left,
    #download .flex .right{
        width: 100%;
    }
    #download .flex .left{
        order: 2;
        margin-top: 32px
    }
    #download .flex .right{
        order: 1;
    }
    #download .flex .left p{
        margin-bottom: 24px;
    }
}
@media screen and (max-width: 768px){
    #download {
        padding: 80px 0;
        background-attachment: initial;
        background: none;
    }
}