@charset "utf-8";
/*
Theme Name: KURODA.CC
Theme URI: 
Description: 
Version: 1.0
Author: 
Author URI: 
*/
/* import
------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&display=swap');
/* reset
------------------------------ */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, select, input, textarea, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, button {
    margin: 0;
    padding: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    border: 0;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
    display: block;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
caption, th {
    text-align: left;
}
img, iframe {
    vertical-align: bottom;
}
button:focus {
    outline: none;
}
/* general
------------------------------ */
/* link */
a {
    color: #058dc7;
    text-decoration: none;
    outline: none;
}
a:hover img, a:focus img {
    opacity: .5;
}
a, a img, input, button {
    transition: all .4s;
}
/* img */
img {
    max-width: 100%;
    height: auto;
}
/* font */
strong {
    font-weight: bold;
}
.en {
    font-family: "Oswald", sans-serif;
    font-weight: 400;
}
.tracking-02em {
    letter-spacing: .2em;
}
.tracking-03em {
    letter-spacing: .3em;
}
/* pc sp */
.sp {
    display: none;
}
@media screen and (max-width : 740px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}
/* fadein */
.fadein {
    opacity: 0;
    transform: translateY(3rem);
}
.fadein.isShow {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
/* layout
------------------------------ */
/* html */
html {
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
}
@media screen and (max-width : 1000px) {
    /*
    html {
        font-size: 1.6vw;
    }
    */
}
/* body */
body {
    padding-top: 80px;
    color: #000;
    background: #fff;
}
@media screen and (max-width: 460px) {
    body {
        padding-top: 70px;
    }
}
/* header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: #0b4a0b;
}
.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 5%;
    color: #fff;
}
.header-inner h1 {
    width: 200px;
}
.header-inner h1 svg {
    display: block;
    width: 100%;
}
.header-inner h1 svg path {
    transition: all .4s;
}
.header-inner h1 a:hover svg path {
    fill: #d4781f;
}
.header-txt {
    line-height: 1;
}
@media screen and (max-width: 460px) {
    .header-inner {
        gap: 10px;
    }
    .header-inner h1 {
        width: 100px;
    }
    .header-inner {
        padding: 5px 5%;
    }
    .header-txt {
        font-size: 12px;
    }
}
/* nav-btn */
.nav-btn {
    position: relative;
    margin-left: auto;
}
.nav-btn a {
    display: block;
    margin-left: auto;
    width: 80px;
    height: 0;
    padding-top: 80px;
    background: #fff;
    mask: url(img/common/nav-btn.svg) no-repeat center / contain;
}
.nav-btn i,
.nav-btn i::before,
.nav-btn i::after {
    position: absolute;
    background: #fff;
    border-radius: 9999px;
    transition: .4s;
}
.nav-btn i {
    top: 42%;
    right: 12%;
    width: 40%;
    height: 3px;
    pointer-events: none;
}
.nav-btn i::before,
.nav-btn i::after {
    content: "";
    left: 0;
    width: 100%;
    height: 100%;
}
.nav-btn i::before {
    top: -300%;
}
.nav-btn i::after {
    top: 300%;
}
.nav-btn.active i {
    background: transparent;
    transition: none;
}
.nav-btn.active i::before,
.nav-btn.active i::after {
    top: 0;
}
.nav-btn.active i::before {
    transform: rotate(225deg);
}
.nav-btn.active i::after {
    transform: rotate(-225deg);
}
.nav-btn:not(.active) a:hover + i,
.nav-btn a:hover + i::before,
.nav-btn a:hover + i::after {
    background: #d4781f;
}
@media screen and (max-width: 460px) {
    .nav-btn a {
        width: 60px;
        padding-top: 60px;
    }
    .nav-btn i {
        height: 2px;
    }
}
/* nav */
nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 70px;
    z-index: 90;
    box-sizing: border-box;
    background: #0b4a0b;
}
nav ul {
    max-width: min(600px, 80%);
    margin: 0 auto;
    padding-top: 40px;
}
nav ul li {
    margin-bottom: 40px;
}
nav ul li a {
    display: block;
    padding: 1em 0;
    color: #fff;
    text-align: center;
    border: 1px solid #fff;
}
nav ul li a:hover {
    color: #0b4a0b;
    background: #fff;
}
@media screen and (max-width: 460px) {
    nav {
        padding-top: 70px;
    }
    nav ul {
        padding-top: 20px;
    }
    nav ul li {
        margin-bottom: 20px;
    }
    nav ul li a {
        font-size: 14px;
    }
}
/* main */
main {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
}
.main-inner {
    padding: min(5%, 50px);
}
/* btn */
.btn-prev > *,
.btn-next > * {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(50em / 16);
    padding: 0 1.5em 0 3em;
    color: #0b4a0b;
    font-weight: bold;
    line-height: 1;
    border: solid 2px #0b4a0b;
    border-radius: 9999px;
}
.btn-next > * {
    padding: 0 3em 0 1.5em;
}
.btn-prev > span,
.btn-next > span {
    color: #ccc;
    border-color: #ccc;
}
.btn-prev > *::after,
.btn-next > *::after {
    content: "";
    position: absolute;
    top: 50%;
    transition: all .4s;
    width: 1.5em;
    height: 1.5em;
    background: #0b4a0b;
    mask: url("img/common/arrow-01.png") no-repeat center center;
    mask-size: 1.5em 1.5em;
}
.btn-prev > *::after {
    left: 1em;
    transform: scale(-1, 1) translateY(-50%);
}
.btn-next > *::after {
    right: 1em;
    transform: translateY(-50%);
}
.btn-prev > span::after,
.btn-next > span::after {
    background: #ccc;
}
.btn-prev a:hover,
.btn-prev a:focus,
.btn-next a:hover,
.btn-next a:focus {
    color: #fff;
    background: #0b4a0b;
}
.btn-prev a:hover::after,
.btn-prev a:focus::after,
.btn-next a:hover::after,
.btn-next a:focus::after {
    background: #fff;
}
@media screen and (max-width: 460px) {
    .btn-prev > *,
    .btn-next > * {
        font-size: 12px;
    }
}
/* footer */
footer {
    color: #fff;
    background: #000;
}
.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
}
.copyright {
    padding: 1em 0;
    text-align: center;
    border-top: solid 1px #333;
}
/* top
------------------------------ */
/* top-main */
.top-main {
    position: relative;
}
/* top-fv */
.top-fv {
    position: relative;
}
.top-logo {
    width: 60%;
    margin: 0 auto;
    padding-top: 18%;
}
.top-img-01 {
    position: absolute;
    top: 0;
    left: 0;
    width: 39%;
    padding-top: 3%;
}
.top-txt-01 {
    width: 26%;
    margin: 5% auto 0;
    border-bottom: solid 1px #878787;
}
@media screen and (max-width: 460px) {
    .top-img-01 {
        width: 46%;
    }
    .top-txt-01 {
        width: 34%;
    }
}
/* top-hole */
.top-hole {
    position: relative;
    padding-top: 5%;
}
.top-hole::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: #878787;
}
.top-hole-list li {
    position: relative;
    width: 54%;
    margin: 0 auto 20%;
}
.top-hole-img {
    opacity: 0;
    transform: scale(.8);
    will-change: transform, opacity;
}
@keyframes popScale {
    0% {
        transform: scale(.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
.isShow .top-hole-img {
    animation: popScale .5s cubic-bezier(0, 1, .5, 1) both;
}
.top-hole-info {
    position: absolute;
    top: 100%;
    width: 52%;
}
.top-hole-01 .top-hole-info {
    top: 75%;
    left: 44%;
}
.top-hole-02 .top-hole-info {
    top: 70%;
    left: 5%;
}
.top-hole-03 .top-hole-info {
    top: 85%;
    left: 25%;
}
.top-hole-04 .top-hole-info {
    top: 85%;
    left: 10%;
}
.top-hole-05 .top-hole-info {
    top: 75%;
    left: 44%;
}
.top-hole-06 .top-hole-info {
    top: 75%;
    left: 5%;
}
.top-hole-07 .top-hole-info {
    top: 80%;
    left: 25%;
}
.top-hole-08 .top-hole-info {
    top: 80%;
    left: 10%;
}
.top-hole-09 .top-hole-info {
    top: 80%;
    left: 25%;
}
.top-hole-txt {
    color: #24295a;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 4%;
}
.top-hole-01 .top-hole-txt,
.top-hole-05 .top-hole-txt {
    text-align: right;
}
.top-hole-btn a {
    display: block;
    padding: 7% 10%;
    color: #fff;
    font-size: 36px;
    line-height: 1;
    background: #24295a url(img/common/arrow-01.png) no-repeat right 8% center / 8% auto;
    border-radius: 5px;
}
.top-hole-btn a:hover,
.top-hole-btn a:focus {
    background-color: #3c4492;
}
@media screen and (max-width: 460px) {
    .top-hole-list li {
        width: 70%;
    }
    .top-hole-txt {
        font-size: 14px;
    }
    .top-hole-btn a {
        font-size: 17px;
    }
}
/* top-img-03 */
.top-img-03 {
    width: 72%;
    margin: 0 auto;
}
/* top-side-txt */
.top-side-txt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    pointer-events: none;
}
.top-side-txt p {
    width: 15%;
    opacity: 0;
    transform: translateY(15rem);
}
.top-side-txt p.isShow {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease, transform .5s ease-out;
}
.top-side-txt-01,
.top-side-txt-03 {
    margin-left: auto;
}
.top-side-txt-02,
.top-side-txt-04 {
    margin-right: auto;
}
@media screen and (max-width: 460px) {
    .top-side-txt {
        padding-top: 70px;
    }
    .top-side-txt p {
        width: 13%;
    }
}
/* sns
------------------------------ */
/* sns-category-list */
.sns-category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: min(5%, 50px);
}
.sns-category-list li {
    width: calc((100% - 20px) / 3);
}
.sns-category-list a {
    display: block;
    padding: 1em 0;
    color: #24295a;
    font-weight: bold;
    text-align: center;
    border: solid 2px #24295a;
    border-radius: 5px;
}
.sns-category-list a:hover,
.sns-category-list a:focus {
    background-color: #f5f5f5;
}
.sns-category-list a.active {
    color: #fff;
    background: #24295a;
}
@media screen and (max-width: 460px) {
    .sns-category-list {
        margin-bottom: 20px;
    }
    .sns-category-list a {
        font-size: 12px;
    }
}
/* sns-list */
.sns-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 10px;
}
.sns-list li {
    width: calc((100% - 20px) / 3);
}
.sns-list li a {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 5px;
}
.sns-list-img {
    height: 0;
    padding-top: 140%;
    background: no-repeat center center / cover;
    transition: all .4s;
}
a:hover .sns-list-img,
a:focus .sns-list-img {
    opacity: .5;
}
.sns-list-txt {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5%;
    box-sizing: border-box;
    color: #fff;
    background: rgba(0, 0, 0, .5);
}
@media screen and (max-width: 460px) {
    .sns-list {
        gap: 20px 10px;
    }
    .sns-list li {
        width: calc((100% - 10px) / 2);
    }
    .sns-list-txt {
        font-size: 12px;
    }
}
/* archive-pager */
.archive-pager {
    text-align: center;
    margin-top: 3rem;
}
.archive-pager .page-numbers {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    padding-left: 0;
}
.archive-pager .page-numbers li {
    list-style: none;
}
.archive-pager .page-numbers a,
.archive-pager .page-numbers span {
    display: inline-block;
    min-width: 1.5em;
    padding: .5rem .75rem;
    color: #000;
    text-align: center;
    background: #f2f2f2;
    border-radius: 4px;
    text-decoration: none;
}
.archive-pager .page-numbers a:hover {
    background: #ccc;
}
.archive-pager .page-numbers .current {
    color: #fff;
    background: #0b4a0b;
}
@media screen and (max-width: 460px) {
    .archive-pager .page-numbers a,
    .archive-pager .page-numbers span {
        font-size: 12px;
    }
}
/* single
------------------------------ */
/* single_slide */
.single_slide {
    max-width: min(400px, 80%);
    margin: 0 auto 20px;
}
.single_slide .slick-track {
    display: flex;
    align-items: center;
}
.single_slide .slick-prev,
.single_slide .slick-next {
    z-index: 10;
}
.single_slide .slick-prev {
    left: 10px;
}
.single_slide .slick-next {
    right: 10px;
}
/* video-wrap */
.video-wrap {
    position: relative;
}
.video-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.video-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, .5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: background-color .4s;
}
.video-btn:hover::before {
    background: rgba(0, 0, 0, .25);
}
.video-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: calc(tan(60deg) * 40px / 2);
    background: #fff;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    transform: translate(-40%, -50%) rotate(90deg);
}
.video-btn.hide::before,
.video-btn.hide::after {
    visibility: hidden;
}
/* single-pager */
.single-pager {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}
/* page
------------------------------ */
/* page-title */
.page-title {
    color: #24295a;
    font-size: 72px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.4;
}
.page-title-sub {
    margin-bottom: 50px;
    color: #878787;
    font-size: 24px;
    text-align: center;
    line-height: 1.4;
}
@media screen and (max-width: 460px) {
    .page-title {
        font-size: 36px;
    }
}
/* page-content */
.page-content h3 {
    margin-bottom: 20px;
    color: #24295a;
    font-size: 32px;
    font-weight: bold;
}
.page-content > h3:not(:first-child) {
    margin-top: 40px;
}
.page-content > p,
.page-content > ul,
.page-content > ol {
    margin-bottom: 20px;
}
.page-content > ul {
    list-style: disc;
    padding-left: 20px;
}
@media screen and (max-width: 460px) {
    .page-content h3 {
        font-size: 26px;
    }
}
