@charset "utf-8";

@font-face {
    font-family: 'Allura';
    src: url('Allura-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


html {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    color: black;
    background: white;
}

body {
    position: relative;
    min-height: 100vh;
    box-sizing: border-box;
    /* display: flex; */
    /* flex-direction: column; */
    margin: 0;
}

header {
    z-index: 250;
    position: sticky;
    width: 100%;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(rgba(255,255,255,0.7), rgba(0,0,0,0));
    margin: 0;
}

.logo {
    margin-top: 20px;
    margin-left: 20px;
    flex-shrink: 0;
}

.logo img {
    width: 200px;
}

.pc-nav {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    margin-right: 40px;
}

.hamburger {
    display: none;
}

.pc-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.pc-nav ul li {
    display: inline-block;
    margin: 0 5px;
}

.pc-nav ul li a {
    position: relative;
    text-align: center;
    font-size: 21px;
    text-decoration: none;
    color: rgba(0,0,0,1);
    border-radius: 3px;
    border: 1.5px solid black;
    padding: 0 10px;
    transition: 0.3s;
}

.pc-nav ul li a:hover {
    color: rgba(255,255,255,1);
    background: rgba(0,0,0,0.8);
}

/* .pc-nav ul li a::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: rgba(0,0,0,0.5);
    transition: 0.3s;
}

.pc-nav ul li a:hover::before {
    left: -4%;
    width: 110%;
} */


.drawer_hidden {
    display: none;
}

.top-space {
    margin-top: calc(100vh - 50px);
}


/* ^^^^^ Top Main Image ^^^^^ */
main {
    min-height: 100vh;
}

.main {
    top: 0;
    position: absolute;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: flex-end;
}

.mainbg {
    position: absolute;
    left: 40%;
    height: 100%;
    transform: translateX(-65%);
    text-align: center;
    opacity: 0.5;
}

.main-txts {
    position: absolute;
    bottom: 90px;
    left: 40%;
    width: 40%;
    text-align: center;
    transform: translateX(-100%);
    opacity: 0;
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.main-txt1 {
    font-family: "Allura", cursive;
    font-size: 100px;
    font-weight: bold;
    text-decoration: none;
    color: black;
    margin: 0;
    transform: rotate(-5deg);
    text-shadow: white 1px 0 10px;
}

.main-txt2 {
    font-family: "Allura", cursive;
    font-size: 50px;
    text-decoration: none;
    color: black;
    margin-top: 20px;
    margin-bottom: 0;
    transform: rotate(-5deg);
    text-shadow: white 1px 0 10px;
}

.mainimg {
	width: 70%;
	height: 100%;
    object-fit: cover;
    object-position: top;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%);
}

.scroll-fade {
    opacity: 0;
    transition: 1s;
}

.scroll-fade.active {
    opacity: 1;
}

.page-section {
    max-width: 90%;
    margin: 0 auto;
}

.top-section {
    max-width: 90%;
    margin: 50px auto;
}

.top-section p,
.news,
.videos {
    font-size: 17px;
}

.section-title {
    font-family: "Allura", cursive;
    font-size: 75px;
    font-weight: bold;
    text-decoration: none;
    color: rgba(0,0,0,0.4);
    margin: 0;
    transition: 0.5s;
}

.section-title:hover {
    color: rgba(0,0,0,1);
}


/* ^^^^^ News ^^^^^ */

.news dl a {
    display: block;
    text-decoration: none;
    color: black;
    padding: 10px 0;
    margin: 10px 0;
    border-bottom: 1.5px solid rgba(0,0,0,0.4);
}

.news dl a span {
	display: inline-block;
	line-height: 1;
	text-align: center;
	border-radius: 3px;
    width: 120px;
	border: 1px solid black;
	padding: 0.3rem 1rem;
	margin: 0 1rem;
}


/* ^^^^^ Videos ^^^^^ */

.videos {
    display: flex;
    justify-content: center;
}

.videos dl {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.videos dl a {
    display: inline-block;
    text-decoration: none;
    color: black;
    margin: 10px;
    padding: 12px;
    width: 320px;
    border: 1px black solid;
}

.videos dl a dt {
    margin-bottom: 10px;
}

.videos dl a span {
	display: inline-block;
	line-height: 1;
	text-align: center;
	border-radius: 3px;
    width: 120px;
	border: 1px solid black;
	padding: 0.3rem 1rem;
	margin: 0 1rem;
}

.videos dl a dd {
    margin: 0 auto;
    width: 95%;
    text-align: center;
}

.videos dl a dd img {
    width: 100%;
}

.videos dl a dd p {
    margin: 10px;
    font-weight: bold;
}


/* ^^^^^ Footer ^^^^^ */

footer {
    /* position: absolute; */
    display: block;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(12px);
}

.copyright {
    color: white;
    text-align: center;
    font-size: 14px;
}

.footer-ul1 {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    font-size: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-ul1 li {
    text-align: center;
    margin: 7px 5px;
}


.footer-ul1 li a {
    text-decoration: none;
    color: white;
    padding-left: 7px;
    padding-right: 7px;
    position: relative;
    transition: 0.3s;
}

.footer-ul1 li a:hover {
    color: black;
    background: white;
}

.footer-ul2 {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    color: rgb(21, 59, 92);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-ul2 li a {
    text-decoration: none;
    color: white;
    padding-left: 10px;
    padding-right: 10px;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.footer-ul2 li a:hover {
    color: black;
    background: white;
}

.footer-ul2 li a img {
    filter: invert(100%);
    width: 14px;
    margin-right: 3px;
}

.footer-ul2 li a:hover img {
    width: 14px;
    margin-right: 3px;
    filter: invert(0%);
}

.page-title {
    font-family: "Allura", cursive;
    font-size: 75px;
    font-weight: bold;
    text-decoration: none;
    color: rgba(0,0,0,0.4);
    margin: 0;
    opacity: 0;
    animation: fadeIn 1s forwards;
}

/* ^^^^^ Pagination & Filter ^^^^^ */

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination a,
.pagination span {
    margin-top: 0;
    margin-bottom: 20px;
    margin-right: 5px;
    margin-left: 5px;
    padding: 5px 10px;
    text-decoration: none;
    color: black;
}

.pagination a:hover {
    background-color: black;
    color: white;
}

.pagination span {
    font-weight: bold;
}

.filter-form {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    position: relative;
    right: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

select::-ms-expand {
    display: none;
}

.filter-form:after {
    content: '<>';
    font: 17px "Consolas", monospace;
    color: #333;
    transform: rotate(90deg);
    right: 11px;
    top: 8px;
    padding: 0 0 2px;
    border-bottom: 1px solid #999;
    position: absolute;
    pointer-events: none;
}

.filter-form select {
    appearance: none;
    display: block;
    width: 100%;
    max-width: 170px;
    height: 29px;
    float: right;
    margin: 5px 0px;
    padding: 0px 24px;
    font-size: 16px;
    line-height: 1.75;
    color: black;
    background-color: white;
    background-image: none;
    border: 1px solid #cccccc;
    word-break: normal;
}

.about-box {
    margin: 60px 0;
    width: 100%;
    display: flex;
}

.reverse {
    flex-direction: row-reverse;
}

.about-txt {
    width: calc(100% - 400px);
    padding: 0 15px;
    font-size: 17px;
}

.about-txt h2 {
    font-size: 35px;
    margin-top: 0;
    margin-bottom: 10px;
}

.about-txt h3 {
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 20px;
}

.about-txt p {
    margin: 0;
}

.about-txt p a {
    color: rgba(0,0,0,1);
    transition: 0.3s;
}

.about-txt p a:hover {
    color: rgba(0,0,0,0.4);
}

.about-img {
    width: 450px;
    height: 400px;
}

.about-img img {
    margin: auto 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    object-fit: cover;
}


/* ^^^^^ Contact ^^^^^ */

.contact-form {
    padding: 25px 50px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 900px;
    margin: 30px auto;
    font-size: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 20px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea,
.form-group input[type="file"] {
    font-size: 14px;
    width: 100%;
    padding: 12px;
    border: 1.5px solid black;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
    width: 100%;
    height: 200px;
    font-size: 17px;
}

.radio-group {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
    padding: 0 25px;
    border: 1.5px solid black;
}

.radio-group label {
    width: 100%;
    display: block;
    margin-left: 20px;
    font-size: 17px;
    margin-top: 17px;
    margin-bottom: 17px;
}

.contact-subtitle {
    font-weight: normal;
    font-size: 14px;
    margin: 0;
}

.radio-group input[type="radio"] {
    width: 15px;
    height: 15px;
    vertical-align: middle;
}

.form-group button {
    padding: 5px 15px;
    border: none;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    transition: 0.3s;
    border: 1.5px solid black;
}

.form-group button:hover {
    background-color: black;
    color: white;
}

.news-header,
.videos-header {
    width: 100%;
    background:rgba(0, 0, 0, 0.1);
}

.news-header h2,
.videos-header h2 {
    font-size: 22px;
    padding-top: 20px;
    margin-left: 20px;
}

.news-header p,
.videos-header p {
    display: flex;
    padding: 0;
    margin-left: 20px;
    font-size: 17px;
    align-items: center;
}

.news-header p span,
.videos-header p span {
	display: inline-block;
	line-height: 1;
	text-align: center;
	border-radius: 3px;
    width: 120px;
	border: 1px solid black;
	padding: 0.3rem 1rem;
	margin: 0 1rem;
}

.social-share {
    margin-right: 10px;
    text-align: right;
}

.social-share a {
    display: inline-block;
    cursor: pointer;
    margin: 0 3px;
}

.social-share img{
    width: 25px;
}

.news-detail {
    font-size: 17px;
    padding: 40px 20px;
}

.news-detail img {
    display: block;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

.news-detail p {
    margin: 0.2em 0;
}

.videos-description {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 0;
    width: 100%;
}

.videos-description summary{
    padding-left: 25px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
}

.videos-description p {
    font-size: 17px;
    margin: 0;
    padding: 20px;
}

.video_area {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 960px;
    aspect-ratio: 16/9;
    margin: 0 auto;
}

.contents_container {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding-bottom: 0;
    margin-bottom: 50px;
}

.privacypolicy {
    font-size: 17px;
    margin-bottom: 50px;
}

.privacypolicy p {
    margin:0;
}

.privacypolicy h2 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 10px;
}