@charset "utf-8";

/* ---------------------------------------------------------------------------------------- 

	共通

	※bootstrap.cssを先に読み込み
	※ECは非対応

---------------------------------------------------------------------------------------- */
@import url("reset.css");
@import url("layout.css");
@import url("contents_parts.css");
@import url("ec.css");


/* ---------------------------------------------------------------------------------------- 

	カスタマイズ

---------------------------------------------------------------------------------------- */

@import url("base.css");
@import url("color.css");
@import url("decolate.css");



/* ----------------------------------------------------------------------------------------

	エディター用
	
	editor.css にはエディターの背景色を記述
	FOR_EDITOR 内はエディターで表示するスタイルを記述

---------------------------------------------------------------------------------------- */
@import url("editor.css");

/* FOR_EDITOR */

/* /FOR_EDITOR */


[class*="cparts-id299"] .cparts-head-block .cparts-id299--01__ttl, [class*="cparts-id299"] .cparts-head-block .cparts-id299--02__ttl, [class*="cparts-id299"] .cparts-head-block .cparts-id299--03__ttl, [class*="cparts-id299"] .cparts-head-block .cparts-id299--04__ttl, [class*="cparts-id299"] .cparts-head-block .cparts-id299--05__ttl, [class*="cparts-id299"] .cparts-head-block .cparts-id299--06__ttl, [class*="cparts-id299"] .cparts-head-block .cparts-id299--07__ttl, [class*="cparts-id299"] .cparts-head-block .cparts-id299--08__ttl, [class*="cparts-id299"] .cparts-head-block .cparts-id299--09__ttl, [class*="cparts-id299"] .cparts-head-block .cparts-id299--10__ttl, [class*="cparts-id299"] .cparts-head-block .cparts-id299--11__ttl, [class*="cparts-id299"] .cparts-head-block .cparts-id299--12__ttl {
    margin: 5px 20px !important;
    font-size: 26px;
}
[class*="cparts-id299"] .cparts-body-block h5 {
    background: #000;
    margin: auto;
    margin-bottom: 1em;
    color: #FFF;
    padding: 0.25em 1em;
    letter-spacing: 0.1em;
}

/* -----------------------------
* ローディング画面
*/

div#loading_bg {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 10000;
}

div#loading_bg .icon {
    position: relative;
    width: 150px;
}

div#loading_bg .svgall {
    width: 100%;
    transition: .5s;
}

div#loading_bg .center_image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 122px;
    opacity: 0;
}

div#loading_bg .center_image.electric {
    animation-name: Electric;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    animation-delay: 0.2s;
}

@keyframes Electric {
    0% {
        opacity: 0.5;
    }
    10% {
        opacity: 0.2;
    }
    20% {
        opacity: 0.8;
    }
    30% {
        opacity: 0.4;
    }
    90% {
        opacity: 1;
    }
    95% {
        opacity: 0.6;
    }
    100% {
        opacity: 1;
    }
}

/*
* ローディング画面
* ----------------------------- */



/* -----------------------------
* ページタイトルアニメーション
*/

.page-title.animation {
    opacity: 1;
}

.page-title .parts_free_type09_box_text > div > div.title_contents {
    position: relative;
    border: none;
    z-index: 1;
}

.page-title .parts_free_type09_box_text > div > div.title_contents::before,
.page-title .parts_free_type09_box_text > div > div.title_contents::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 1px;
    z-index: -1;
}
.page-title .parts_free_type09_box_text > div > div.title_contents::before {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform-origin: top left;
}
.page-title .parts_free_type09_box_text > div > div.title_contents::after {
    top: auto;
    left: auto;
    bottom: 0;
    right: 0;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    transform-origin: bottom right;
}

.page-title.page-title-animation .parts_free_type09_box_text > div > div.title_contents::before,
.page-title.page-title-animation .parts_free_type09_box_text > div > div.title_contents::after {
    animation-name: PageTitleBorder;
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}

@keyframes PageTitleBorder {
    0% {
        width: 0;
        height: 1px;
    }

    50% {
        width: 100%;
        height: 1px;
    }

    100% {
        width: 100%;
        height: 100%;
    }
}

.page-title .parts_free_type09_box_text > div > div.title_contents .en {
    position: relative;
    border: none;
    overflow: hidden;
    padding: 0;
}

.page-title .parts_free_type09_box_text > div > div.title_contents .en::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transform: scale(0,1);
    transform-origin: center;
}

.page-title.page-title-animation .parts_free_type09_box_text > div > div.title_contents .en::before {
    animation-name: PageTitleLine;
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}

@keyframes PageTitleLine {
    from {
        transform: scale(0,1);
    }

    to {
        transform: scale(1,1);
    }
}

.page-title .parts_free_type09_box_text > div > div.title_contents .en > div {
    transform: translate(0, 250%) rotate(20deg);
    margin: 0 1.5em 5px;
}

.page-title.page-title-animation .parts_free_type09_box_text > div > div.title_contents .en > div {
    animation-name: PageTitleEnText;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}

@keyframes PageTitleEnText {
    from {
        transform: translate(0, 200%) rotate(20deg);
        transform-origin: left;
    }

    to {
        transform: translate(0, 0) rotate(0);
    }
}

#wrapper .page-title .parts_free_type09_box_text > div > div.title_contents h1 {
    overflow: hidden;
}

#wrapper .page-title .parts_free_type09_box_text > div > div.title_contents h1 > span {
    transform: translate(0, -200%) rotate(-20deg);
    display: block;
}

#wrapper .page-title.page-title-animation .parts_free_type09_box_text > div > div.title_contents h1 > span {
    animation-name: PageTitleText;
    animation-duration: 1s;
    animation-delay: 1.2s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}

@keyframes PageTitleText {
    from {
        transform: translate(0, -200%) rotate(-20deg);
        transform-origin: left;
    }

    to {
        transform: translate(0, 0) rotate(0);
    }
}

.page-title .parts_free_type09_box_text > div .text {
    opacity: 0;
    transform: translate(0, 50%);
}

.page-title.page-title-animation .parts_free_type09_box_text > div .text {
    animation-name: PageTitleDetail;
    animation-duration: 1s;
    animation-delay: 2.2s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}

@keyframes  PageTitleDetail {
    from {
        opacity: 0;
        transform: translate(0, 50%);
    }

    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

/*
* ページタイトルアニメーション
* ----------------------------- */



/* -----------------------------
* メディア掲載
*/

.media_anker {
    margin-bottom: 80px;
}

.media_anker ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

#wrapper #main .media_anker ul > li {
    padding: 0;
    width: calc(20% - 30px);
    margin: 0 15px;
    margin-bottom: 30px;
    border-bottom: none;
}

#wrapper #main .media_anker ul > li::before {
    content: none;
}

#wrapper #main .media_anker ul > li a {
    display: block;
    position: relative;
    z-index: 1;
    text-decoration: none;
    font-size: 22px;
    color: #fff;
    transition: .2s;
    padding: 10px 15px;
    text-align: center;
    border: 1px solid #000;
    background-image: radial-gradient(#ccc 10%, rgba(255,255,255,0) 20%), radial-gradient(#ccc 10%, rgba(255,255,255,0) 20%);
    background-size: 5px 5px;
    background-position: 0 0, 5px 5px;
}

#wrapper #main .media_anker ul > li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform .2s;
    transform: scale(1,1);
    transform-origin: left top;
    background: #000;
    background-image: radial-gradient(#333 10%, rgba(255,255,255,0) 20%), radial-gradient(#333 10%, rgba(255,255,255,0) 20%);
    background-size: 5px 5px;
    background-position: 0 0, 5px 5px;
    z-index: -1;
}

#wrapper #main .media_anker ul > li a:hover {
    color: #000;
}

#wrapper #main .media_anker ul > li a:hover::before {
    transform-origin: right top;
    transform: scale(0, 1);
}

#wrapper #main .media_anker ul > li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    border-top: 5px solid transparent;
    border-right: 5px solid #fff;
    border-bottom: 5px solid #fff;
    border-left: 5px solid transparent;
    transition: .2s;
}

#wrapper #main .media_anker ul > li a:hover::after {
    border-right-color: #000;
    border-bottom-color: #000;
}

@media (max-width: 767px) {

	#wrapper #main .media_anker ul > li {
		width: calc(50% - 20px);
		margin: 0 10px 15px;
	}

}



.year_contents {
    margin: 0 calc(50% - 50vw);
    padding: 80px calc(50vw - 50%);
}

.year_contents.back_white {
    background-image: radial-gradient(#ccc 10%, rgba(255,255,255,0) 20%), radial-gradient(#ccc 10%, rgba(255,255,255,0) 20%);
    background-size: 5px 5px;
    background-position: 0 0, 5px 5px;
}

.year_contents.back_grey {
    background-color: #eee;
    background-image: radial-gradient(#ccc 10%, rgba(255,255,255,0) 20%), radial-gradient(#ccc 10%, rgba(255,255,255,0) 20%);
    background-size: 5px 5px;
    background-position: 0 0, 5px 5px;
}

.year_contents h2 {
    font-size: 28px;
    color: #000;
    padding-top: 0;
    text-align: left;
}

.year_contents h2 > span {
    display: table;
}

.year_contents h2 > span:first-child {
    background: #000;
    background-image: radial-gradient(#333 10%, rgba(255,255,255,0) 20%), radial-gradient(#333 10%, rgba(255,255,255,0) 20%);
    background-size: 5px 5px;
    background-position: 0 0, 5px 5px;
    color: #fff;
    border: 4px double #fff;
    padding: 10px 1em;
    font-size: 80%;
    margin-bottom: 20px;
}

.year_contents h2 > span:last-child {
    border-bottom: 1px solid #000;
    padding: 0 0.5em 10px;
    padding-right: 1.5em;
    font-size: 125%;
}

.year_contents > div {
    padding-left: 50px;
}

@media (max-width: 767px) {

	.year_contents h2 > span:last-child {
		font-size: 20px;
	}	
	.year_contents > div {
		padding-left: 0;
	}
}

.floating_year {
    position: fixed;
    bottom: 50%;
    right: 100px;
    transform: translate(calc(100px + 100px), -50%);
    font-size: 22px;
    writing-mode: vertical-rl;
    font-weight: bold;
    padding-bottom: 1em;
    transition: .5s;
}

#main {
    position: relative;
}

.floating_year::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 7px;
    height: 7px;
    transform: translateX(-50%) rotate(45deg);
    background-color: #09347f;
}

.floating_year::after {
    content: "";
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 50%;
    width: 1px;
    height: 0;
    animation-name: MediaFix;
    animation-duration: 1.4s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    background: -webkit-linear-gradient(top, rgba(9,52,127,0) 0%,rgba(9,52,127,1) 15%,rgba(9,52,127,1) 85%,rgba(9,52,127,0) 100%);
    background: linear-gradient(to bottom, rgba(9,52,127,0) 0%,rgba(9,52,127,1) 15%,rgba(9,52,127,1) 85%,rgba(9,52,127,0) 100%);
}

@keyframes MediaFix {
    0% {
        top: 100%;
        bottom: auto;
        height: 0;
    }
    49.9999% {
        top: 100%;
    }
    50% {
        top: auto;
        bottom: -100%;
        height: 100%;
    }
    100% {
        top: auto;
        bottom: -100%;
        height: 0;
    }
}

.floating_year p {
    margin: 0;
}

.btn_white {
    display: inline-block;
    padding: 15px 35px;
    color: #000;
    background: #fff;
    line-height: 1;
    text-decoration: none;
    transition: 0.3s linear;
    -webkit-transition: 0.3s linear;
}

.btn_white::after {
    content: "\2192";
    display: inline;
    margin-left: 1em;
}

.btn_white:hover {
    opacity: 0.5;
    text-decoration: none;
}

#main h1 {
    text-align: center;
    color: #fff;
        background: #000;
    background-image: radial-gradient(#333 10%, rgba(255,255,255,0) 20%), radial-gradient(#333 10%, rgba(255,255,255,0) 20%);
    background-size: 5px 5px;
    background-position: 0 0, 5px 5px;
}

#main h1::first-letter {
    color: inherit;
    font-size: inherit;
}

#main h1.blog {
    color: #000;
}

/*
* メディア掲載
* ----------------------------- */

@media (max-width: 767px) {
    .main_visual.parts_free_type08.box {
        height: 60vh;
    }

    div.main_visual .parts_free_type08_text {
        left: 50%;
        bottom: 50%;
        transform: translate(-50%, 50%);
    }

    .main_visual.parts_free_type08.box video {
        object-position: 30%;
    }
}

@media (max-width: 767px) {
    #wrapper #main h1.blog {
        color: #fff;
        margin-top: 0;
    }
}

.btn_pdf {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    border-radius: 100vh;
    border: 1px solid #000;
    overflow: hidden;
    padding: 10px 30px;
    transition: .2s;
}

.btn_pdf:hover {
    color: #000;
    text-decoration: none;
}

.btn_pdf::before {
    content: url('/images/common/icon_pdf.svg');
    display: block;
    width: 2em;
    margin-right: 0.75em;
    filter: brightness(0%) invert(100%) saturate(0%);
    transition: .2s;
}

.btn_pdf:hover::before {
    filter: none;
}

.btn_pdf::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform .2s;
    transform: scale(1,1);
    transform-origin: left top;
    background: #000;
    background-image: radial-gradient(#333 10%, rgba(255,255,255,0) 20%), radial-gradient(#333 10%, rgba(255,255,255,0) 20%);
    background-size: 5px 5px;
    background-position: 0 0, 5px 5px;
    z-index: -1;
    border-radius: 100vh;
}

.btn_pdf:hover::after {
    transform-origin: right top;
    transform: scale(0, 1);
}


.top .blogRecent .blogRecentList {
    flex-direction: column;
}

.blogRecentList .list_item {
    margin-bottom: 30px;
}

.blogRecentList .two_in_one {
    display: flex;
    align-items: center;
}

.blogRecentList .two_in_one > div.image_contents {
    overflow: hidden;
    width: 30%;
}

.blogRecentList .two_in_one > div.text_contents {
    width: calc(70% - 30px);
    margin-left: auto;
}

.blogRecentList .two_in_one > div.image_contents img {
    transition: .2s;
    display: block;
    aspect-ratio: 5 / 3;
    object-fit: cover;
    object-position: center;
}

.blogRecentList .list_item a:hover .two_in_one > div.image_contents img {
    transform: scale(1.05);
}

.blogRecentList .two_in_one > div.text_contents .blog_date {
    display: table;
    font-size: 12px;
    border: 1px solid #000;
    padding: 2px 5px;
    margin-bottom: 5px;
}

#wrapper .blogRecentList .two_in_one > div.text_contents .blog_title h3 {
    display: table;
    padding: 0 0.5em 5px;
    padding-right: 2em;
    color: #000;
    text-align: left;
    border-bottom: 1px solid #000;
    font-size: 18px;
    margin-bottom: 10px;
}

.blogRecentList .two_in_one > div.text_contents .text {
    padding-left: 15px;
    line-height: 1.5;
    height: calc(1.5em * 3);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 14px;
}

.top .blogRecent .blogRecentList {
    padding-top: 50px;
}



@media (max-width: 767px) {
    .top .blogRecent .blogRecentList {
        padding-top: 30px;
        padding-left: 20px;
    }

    .blogRecentList .two_in_one > div.image_contents img {
        aspect-ratio: 3 / 4;
    }

    .blogRecentList .two_in_one > div.text_contents {
        width: calc(70% - 10px);
    }

    #wrapper .blogRecentList .two_in_one > div.text_contents .blog_title h3 {
        font-size: 18px;
        padding-right: 0.5em;
    }

    .blogRecentList .two_in_one > div.text_contents .text {
        font-size: 14px;
    }
}

.blogEntryList .list_item {
    margin-bottom: 50px;
}

.blogEntryList .two_in_one {
    display: flex;
    align-items: center;
}

.blogEntryList .two_in_one > div.image_contents {
    overflow: hidden;
    width: 30%;
}

.blogEntryList .two_in_one > div.text_contents {
    width: calc(70% - 30px);
    margin-left: auto;
}

.blogEntryList .two_in_one > div.image_contents img {
    transition: .2s;
    display: block;
    aspect-ratio: 5 / 3;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.blogEntryList .list_item a:hover .two_in_one > div.image_contents img {
    transform: scale(1.05);
}

.blogEntryList .two_in_one > div.text_contents .blog_date {
    display: table;
    font-size: 12px;
    border: 1px solid #000;
    padding: 2px 5px;
    margin-bottom: 5px;
}

#wrapper .blogEntryList .two_in_one > div.text_contents .blog_title h3 {
    display: table;
    padding: 0 0.5em 5px;
    padding-right: 2em;
    color: #000;
    margin: 0;
    text-align: left;
    border: none;
    border-bottom: 1px solid #000;
    font-size: 18px;
    margin-bottom: 10px;
    background: none;
}

#wrapper .blogEntryList .two_in_one > div.text_contents .blog_title h3::before {
    content: none;
}

#wrapper .blogEntry .blogEntryList .list_item a::after {
    content: none;
}

.blogEntryList .two_in_one > div.text_contents .text {
    padding-left: 15px;
    line-height: 1.5;
    height: calc(1.5em * 3);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 14px;
}
#wrapper .youtube iframe {
    position: static;
    aspect-ratio: 16 / 9;
    max-width: 560px;
    width: 100%;
}

@media (max-width: 767px) {
    #wrapper .blogEntry .blogRecentList {
        padding-top: 30px;
        padding-left: 20px;
    }

    .blogEntryList .two_in_one > div.image_contents img {
        aspect-ratio: 3 / 4;
    }

    .blogEntryList .two_in_one > div.text_contents {
        width: calc(70% - 10px);
    }

    #wrapper .blogEntryList .two_in_one > div.text_contents .blog_title h3 {
        font-size: 18px;
        padding-right: 0.5em;
    }

    .blogEntryList .two_in_one > div.text_contents .text {
        font-size: 14px;
    }
}
.song_contents {
    margin-top: 30px;
    padding: 30px;
    padding-top: 0;
    margin-bottom: 30px;
    background: #000;
    background-image: radial-gradient(#333 10%, rgba(255, 255, 255, 0) 20%), radial-gradient(#333 10%, rgba(255, 255, 255, 0) 20%);
    background-size: 5px 5px;
    background-position: 0 0, 5px 5px;
    padding: 15px 30px;
}
.song_contents .cparts-txt-block {
    display: flex;
    align-items: center;
}
.song_contents h4 {
    color: #fff;
    font-size: 20px;
    margin: 0;
    margin-right: 1em;
    white-space: nowrap;
}
.song_contents figure,
.song_contents audio {
    width: 100%;
}
@media (max-width: 767px) {
    .song_contents h4 {
        margin-bottom: 15px;
        margin-right: 0;
        font-size: 18px;
    }
    .song_contents .cparts-txt-block {
        flex-direction: column;
    }
}
