@charset "utf-8";

:root {
    --color: #e3bf00;
    --ja:'Zen Kaku Gothic New', sans-serif;
    --en:'Baloo 2', cursive;
}

html {
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%
}

*,
:after,
:before {
    background-repeat: no-repeat;
    box-sizing: inherit
}

:after,
:before {
    text-decoration: inherit;
    vertical-align: inherit
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

audio:not([controls]) {
    display: none;
    height: 0
}

hr {
    overflow: visible
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block
}

summary {
    display: list-item
}

small {
    font-size: 80%
}

[hidden],
template {
    display: none
}

abbr[title] {
    border-bottom: 1px dotted;
    text-decoration: none
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects
}

a:active,
a:hover {
    outline-width: 0
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace
}

b,
strong {
    font-weight: bolder
}

dfn {
    font-style: italic
}

mark {
    background-color: #ff0;
    color: #000
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

input {
    border-radius: 0
}

[role=button],
[type=button],
[type=reset],
[type=submit],
button {
    cursor: pointer
}

[disabled] {
    cursor: default
}

[type=number] {
    width: auto
}

[type=search] {
    -webkit-appearance: textfield
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

textarea {
    overflow: auto;
    resize: vertical
}

button,
input,
optgroup,
select,
textarea {
    font: inherit
}

optgroup {
    font-weight: 700
}

button {
    overflow: visible
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
    border-style: 0;
    padding: 0
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button:-moz-focusring {
    outline: 1px dotted ButtonText
}

[type=reset],
[type=submit],
button,
html [type=button] {
    -webkit-appearance: button
}

button,
select {
    text-transform: none
}

button,
input,
select,
textarea {
    background-color: transparent;
    border-style: none;
    color: inherit
}

select {
    -moz-appearance: none;
    -webkit-appearance: none
}

select::-ms-expand {
    display: none
}

select::-ms-value {
    color: currentColor
}

legend {
    border: 0;
    color: inherit;
    display: table;
    max-width: 100%;
    white-space: normal
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

img {
    border-style: none;
    vertical-align: bottom
}

progress {
    vertical-align: baseline
}

svg:not(:root) {
    overflow: hidden
}

audio,
canvas,
progress,
video {
    display: inline-block
}

@media screen {
    [hidden~=screen] {
        display: inherit
    }

    [hidden~=screen]:not(:active):not(:focus):not(:target) {
        position: absolute !important;
        clip: rect(0 0 0 0) !important
    }
}

[aria-busy=true] {
    cursor: progress
}

[aria-controls] {
    cursor: pointer
}

[aria-disabled] {
    cursor: default
}

::-moz-selection {
    background-color: #b3d4fc;
    color: #000;
    text-shadow: none
}

::selection {
    background-color: #b3d4fc;
    color: #000;
    text-shadow: none
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
}

.wrapper {
    overflow: hidden;
}

body {
    overflow-y: scroll;
}

img {
    max-width: 100%;
}

/* reset css-------------------- */


/* pcレイアウト-------------------- */
header {
    width: 100%;
    height: 100vh;
    background-color: #ffffff60;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

h1 {
    width: 400px;
    position: absolute;
    top: 20px;
    left: 20px;
}

/* ナビゲーション部分-------------------- */
#g-nav {
    width: 50%;
    height: 100vh;
    background-color: #fffc;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    transform: translateX(-100%);
    transition: 0.4s;
    /* display: none;navの範囲を作ったら非表示にする */
}

#g-nav.click {
    transform: translateX(0);
}

#btn {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 3;
    background-color: #fffc;
    padding: 30px;
}

#g-nav ul {
    padding: 100px 70px;
}

#g-nav a {
    padding: 12px 0 14px;
    margin-bottom: 20px;
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    overflow: hidden;
}

/* #g-nav a:hover{
    color: #e3bf00;
    text-decoration: underline;
    text-underline-offset: 5px;
} */

#g-nav a::after {
    content: "";
    display: block;
    width: 70%;
    height: 3px;
    background-color: var(--color);
    /* transform: scale(0); */
    transform: translateX(-100%);
    transition: .25s;
}

#g-nav a:hover::after {
    /* transform: scale(1); */
    transform: translateX(0);
}


/* メインビジュアル部分-------------------- */
.main-visual {
    width: 100%;
    height: 100vh;
    margin-bottom: 100px;
}

.main-visual li {
    /* objectfitのルール：親要素に幅と高さの指定が必要 */
    width: 100%;
    height: 100vh;
}

.main-visual img {
    object-fit: cover;
    object-position: center bottom;
    /* デフォルトはcenter center */
    width: 100%;
    height: 100%;
}

/* 共通部分-------------------- */
h2 {
    text-align: center;
    padding: 40px 0;
    font-family: var(--ja);
}

h2::after{
    content: attr(data-en);
    display: block;
    font-size: 20px;
    color: var(--color);
    font-family: var(--en);
}


/* お知らせ部分-------------------- */
#news>dl {
    padding: 0 10px;
    max-width: 800px;
    margin: 0 auto 50px;
    display: flex;
    flex-wrap: wrap;
}

#news dt {
    width: 30%;
    border-bottom: 2px solid var(--color);
    padding: 10px;
    margin-bottom: 20px;
    font-weight: bold;
    color: rgb(112, 90, 74);
}

#news dd {
    width: 70%;
    border-bottom: 2px solid var(--color);
    padding: 10px;
    margin-bottom: 20px;
    line-height: 1.65;
}

#news dt:nth-of-type(n+4),
#news dd:nth-of-type(n+4) {
    display: none;
}

#more-btn {
    width: 240px;
    height: 44px;
    margin: 0 auto 200px;
}

#more-btn>a {
    display: block;
    text-align: center;
    line-height: 44px;
    background-color: var(--color);
    color: #fff;
    border-radius: 8px;
}

#more-btn>a::after {
    content: "→";
    display: inline-block;
    margin-left: 1em;
}

#more-btn>a:hover {
    text-indent: 1em;
    background-color: #daa000;
    transition: 0.2s;
}


/* ムービー部分-------------------- */
.video-wrapper {
    width: 60%;
    height: 50vh;
    margin: 0 auto 100px;
}

.video-wrapper>video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.yt-wrapper {
    width: 60%;
    height: 50vh;
    margin: 0 auto 100px;
}

.y-tube {
    width: 100%;
    height: 100%;
}

/* ギャラリー部分-------------------- */
.gallery-wrapper {
    max-width: 960px;
    padding: 0 10px;
    margin: 0 auto 100px;
    display: flex;
    justify-content: space-between;
}

.gallery-box {
    width: calc((100% - 40px) / 3);
}

.gallery-box>h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
}

.gallery-box>h3::before,
.gallery-box>h3::after {
    content: '';
    width: 30px;
    height: 3px;
    background-color: #e3bf00;
}

.gallery-box>h3::before {
    margin-right: 12px;
}

.gallery-box>h3::after {
    margin-left: 12px;
}


/* インフォメーション部分-------------------- */
.info-wrapper {
    max-width: 960px;
    padding: 0 10px;
    margin: 0 auto 100px;
    display: flex;
    justify-content: space-between;
}

.tw {
    width: 320px;
}

.map {
    width: calc(100% - 380px);
    height: 400px;
}

.g-map {
    width: 100%;
    height: 100%;
    /* filter: blur(20px);ぼかし */
    filter: grayscale(1);
    /* グレースケール */
    /* filter: hue-rotate(180deg);色相環で色を回す */
}


/* フォーム部分-------------------- */
.form-wrapper {
    max-width: 640px;
    margin: 0 auto 100px;
}

.g-form{
    width: 100%;
}


/* footer部分-------------------- */
footer {
    width: 100%;
    background-color: var(--color);
    padding-bottom: 50px;
}

footer>p {
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 20px;
}

.sns {
    display: flex;
    justify-content: center;
}

.sns>li {
    width: 40px;
    margin: 0 20px;
}


/* 767px以下の設定------------------------- */
@media (max-width:767px) {

    /* インフォメーション部分----- */
    .info-wrapper {
        margin: 0 auto 100px;
        display: block;
    }

    .tw {
        margin: 0 auto 70px;
    }

    .map {
        width: calc(100%);
        height: 300px;
        margin: 0 auto;
    }

    .g-map {
        width: 100%;
        height: 100%;
        filter: grayscale(1);
        /* グレースケール */
    }

}/* media-end----- */


/* 640px以下の設定 */
@media (max-width:640px) {

    /* ギャラリー部分----- */
    .gallery-wrapper {
        padding: 0 10px;
        margin: 0 auto 100px;
        display: block;
    }

    .gallery-box {
        width: calc(100%);
        margin-bottom: 50px;
    }

    /* header部分----- */

    h1 {
        width: 250px;
        position: absolute;
        top: calc(50% - 125px);
        left: calc(50% - 125px);
    }

    /* お知らせ部分----- */
    #news>dl {
        margin: 0 auto 50px;
        display: block;
    }

    #news dt {
        width: 50%;
        padding: 10px;
        margin-bottom: 0;
    }

    #news dd {
        width: 100%;
        padding: 10px;
        margin-bottom: 40px;
    }

    /* ムービー部分----- */
    .video-wrapper,.yt-wrapper{
        width: 90%;
        margin: 0 auto 100px;
    }

    /* ナビゲーション部分-------------------- */
#g-nav {
    width: 100%;
    height: 100vh;
    /* display: none;navの範囲を作ったら非表示にする */
}

#g-nav ul {
    padding: 70px 30px 0 30px;
}


}/* media-end----- */