@charset "UTF-8";

body {
    background-color: #faf5f141;
    color: #313131;
    margin: 0 auto;
    overflow: hidden;
    font-family: "Noto Sans JP", YuGothic, "Yu Gothic", 游ゴシック, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
}
    
html {
    overflow: auto;
}

.header_box {
    display: flex;
}

.header_logo {
    text-align: center;
    margin: 0 auto;
}

.sns {
    position: relative;
}

.sns img{
    width: 30px;
    height: 30px;
    position: absolute;
    top: 1.5vw;
    right: 14vw;
}

.fa-envelope {
    padding-right: 10px;
}

.fa-envelope:before {
    font-family: "Font Awesome 5 Free";
    content: '\f0e0';
    font-weight: 900;
}

.header-contanct p {
    color: #92653ab6;
    font-size: 30px;
}

.header-contact a {
    list-style: none;
    text-decoration: none;
    color: #92653ab6;
    border: solid 2px #92653ab6;
    border-radius: 15px;
    padding: 13px 22px;
    background-color: #fff;
    position: absolute;
    right: 5vw;
    top: 4.7vw;
}

.header_logo img{
    width: 60%;
}

.header-contact a:hover {
    background-color: #e8f6f5;
    box-shadow: 0.5px 0.5px #474747;
}

.nav {
    display: flex;
    background-color: #92653ab6;
    height: 8%;
    width: 100%;
    justify-content: center;
}

.nav-list ul{
    display: flex;
}

.nav-list li {
    text-decoration: none; 
    list-style: none;
    padding: 15px 50px 15px 0;
}

.nav-list a{
    text-decoration: none; 
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    border-bottom: 3px solid #e8f6f5;
    padding-bottom: 10px;
    border-bottom: hidden;
}

.nav-list li a:hover {
    visibility: visible;
    border-bottom: 3px solid #e8f6f5;
}

#global_nav.sp_open {
    display: none;

}

#global_nav li {
    list-style: none;
}


.photo {
    text-align: center;
}

.photo h2 {
    padding-top: 100px;
    padding-bottom: 30px;
}

.photo p {
    line-height: 1.5;
}

.movie {
    display: flex;
    padding: 20px;
}


.movie1 iframe {
    padding: 20px;
}

.movie2 iframe {
    padding: 20px;
}

.gallery {
    margin: 0 auto;
}

.gallery img{
    width: 328.19px;
    height: 246.14px;
}


.gallery td {
    padding: 10px;
}

#page_top{
    width: 50px;
    height: 50px;
    position: fixed;
    right: 0;
    bottom: 0;
    background-color: #92653ab6;
    box-shadow: 0.5px 0.5px #474747;
    border-radius: 50%;
}

#page_top a{
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
}

#page_top a::before{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f106';
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -5px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}

.footer {
    display: flex;
    text-align: center;
    justify-content: space-evenly;
    height: 400px;
    line-height: 1.7;
    background-color: #92653ab6;
    padding-top: 20px;
}


.footer_nav a{
    display: block;
    text-decoration: none;
    list-style: none;
    color: #fff;
    text-align: left;
    padding-top: 10px;
}

.footer_nav li {
    list-style: none;
    text-decoration: none; 
}

.footer_nav li a:hover {
    border-bottom: 3px solid #e8f6f5;
    opacity: 1s;
}

.footer_nav h2 {
    color: #fff;
    font-size: 17px;
    text-align: left;
    border-bottom: dotted;
    padding-bottom: 10px;
}

.footer_sns img{
    width: 40px;
    height: 40px;
    padding-top: 20px;
}

.footer_sns li a:hover {
    border-bottom: none;
}

.premier h2{
    color: #fff;
    font-size: 17px;
    text-align: left;
    border-bottom: dotted;
    padding-bottom: 10px;
}

.premier p {
    display: block;
    color: #fff;
    text-align: left;
}

.premier a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.premier a:hover {
    border-bottom: 3px solid #e8f6f5;
    padding-bottom: 7px;
    opacity: 1s;
}

.copyright {
    text-align: center;
    font-size: 12px;
    background-color: #92653ab6;
    padding: 10px;
}

@media screen and (max-width: 479px) {
body {
    margin: 0 auto;
    overflow: hidden;
}
  /* ハンバーガーボタン */
header nav {
    box-sizing: border-box;
    position: fixed;
    top: 30px;
    display: none;
    width: 100%;
    height: calc(100% - 60px);
    background: #fff;
    opacity: 0.9;
    z-index: 100;
    /* 3. スライドメニューの場合 */
    /* display: block; 
    right: -100%;
    transition: right .5s;
    /* ここまで */
}
/* 3. スライドメニューの場合 */
header nav.sp_open {
    right: 0;
}
/* ここまで */
header nav ul {
    position: absolute;
    top: 50%;
    left: 40%;
    right: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
}

header nav ul li a {
    display: block;
    padding: 20px;
    border-radius: 5px;
    color: #666;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    width: 100%;  
}
header nav ul li a:hover{
    border-bottom: 3px solid #e8f6f5;
    opacity: 1s;
    color: #92653ab6;
}

#drawer_toggle {
    z-index: 200;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    width: 60px;
    height: 60px;

}

#drawer_toggle span {
    position: absolute;
    top: 19px;
    left: 17px;
    display: inline-block;
    width: 30px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    vertical-align: top;
}
#drawer_toggle span:nth-child(2) {
    margin-top: 10px;
}
#drawer_toggle span:last-child {
    margin-top: 20px;
}
#drawer_toggle.open span {
    top: 29px;
    left: 14px;
    width: 35px;
    margin: 0;
}
#drawer_toggle.open span:first-child {
    transform: rotate(45deg);
}
#drawer_toggle.open span:nth-child(2) {
    display: none;
}
#drawer_toggle.open span:last-child {
    transform: rotate(-45deg);
}


.header_box {
    width: 100vw;
    height: auto;
    margin-top: 30px;
    text-align: center;
}

.header_logo {
    margin: 0 auto;
}

.header_logo img{
    width: 70vw;
    height: auto;
    padding-left: 0;
}

.header-contact {
    display: none;
}

.sns img{
    display: none;
}

.nav-list {
    display: none;
}


.photo p{
    font-size: 13px;
    margin: 0 10% 10% 10%;
}

.movie1 {
    position: absolute;
    padding: 18% 0 46% 0;
    height: auto;
    width: 100%;
    overflow: hidden;
}

.movie1 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 86vw;
    height: 100%;
}

.movie2 iframe{
    width: 100%;
    height: auto;
    position: static;
    padding-left: 0;
    margin: 69vw -14vw 1vw 8vw;
}

.gallery img {
    width: 100%;
    height: auto;
}

.footer {
    height: auto;
}
.footer h2{
    font-size: 12px;
}

.footer p, .footer li {
    font-size: 11px;
}

.footer_sns img {
    width: 20px;
    height: 20px;
    padding-top: 0;
}

.copyright {
    font-size: 9px;
    margin: 0 auto;
}
}