@charset "UTF-8";

body{
    background-color: #ffffff;
    font-size: 18px;
}
img{
    max-width: 100%;
    height: 100%;
}
header{
    display: flex;
    height: 120px;
    border-bottom: 1px solid #333;
}
h1{
   margin: 40px 0 40px 50px;
   font-size: 40px;
}
nav ul{
    display: flex;
    margin: 45px 0 40px 500px;
    text-align: right;
    font-size: 20px;
    gap: 100px;
}
header nav ul li a:hover{
    border-bottom: 2px solid #264bf1;
}
.minato{
    width:100%;
    height: auto;
    position: relative;
}
.minato p{
    position: absolute;
    top: 50px;
    left: 80px;
    padding:0;
    margin:0;
}
.concept{
    font-size: 35px;
    padding-bottom: 50px;
    padding-top: 70px;
    color: #1c6afc;
}
.mongon{
    text-align: center;
    padding: 100px 0;
    font-size: 20px;
    line-height: 2.5em;
}
main h3{
    padding: 100px 0;
    font-size: 30px;
}
.yotei2{
    text-align: center;
}
.yoyaku{
    padding: 100px 0;
}
.yoyaku span{
    color: #f00;
}
.basyo{
    text-align: center;
    font-size: 20px;
}
main h2{
    padding-top: 150px;
}
.mogi{
    padding: 50px 0;
}
.map{
    padding: 100px 0;
}
html {
    scroll-behavior: smooth;
}
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 2px #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: translateY(20%) rotate(-45deg);
}
@media (hover: hover) and (pointer: fine) {
    .pagetop:hover, .pagetop:hover .pagetop__arrow {
        border-color: #003cff;
    }
}
main h4{
    text-align: center;
    padding: 100px 0 150px 0;
    font-size: 30px;
}
dl{
    line-height: 2.0em;
}
.turi{
    display: flex;
    justify-content: center;
    gap: 150px;
}
.kyanseru{
    padding-top: 30px;
}
.otosi{
    padding-top: 100px;
    padding-left: 325px;
}
.turi2{
    display: flex;
    /* justify-content: center; */
    gap: 350px;
    padding-top: 100px;
    padding-left: 325px;
}
.kasidasi{
    padding: 100px 0 100px 325px;
}
.life{
    padding-top: 20px;
}
.ice{
    padding-top: 20px;
}
main h5{
    text-align: center;
    padding: 100px 0;
    font-size: 30px;
}
main h6{
    text-align: center;
    padding: 100px 0;
    font-size: 30px;
}
.insta{
    display: flex;
    justify-content: center;
    font-size: 20px;
}
.insta img{
    width: 150px;
    height: 150px;
    text-align: center;
    margin-right: 50px;
    margin-bottom: 100px;
}
.toi{
    text-align: center;
    padding: 100px 0;
}
.toi p{
    padding: 70px 0;
}
.namae{
    display: flex;
    justify-content: center;
    font-size: 20px;
    margin-top: 100px;
}
.namae img{
    width: 550px;
    height: 300px;
    padding-left: 100px;
}
.touroku{
    display: flex;
    justify-content: center;
    font-size: 20px;
    margin-top: 150px;
}
.touroku img{
    width: 550px;
    height: 300px;
    padding-right: 100px;
}
.kanbi{
    display: flex;
    justify-content: center;
    font-size: 20px;
    margin-top: 150px;
}
.kanbi img{
    width: 550px;
    height: 300px;
    padding-left: 100px;
    margin-bottom: 100px;
}

/* 携帯用メディアクエリ */
@media screen and (max-width: 768px){
header{
    height: 100px;
}
h1{
   margin: 30px 0 30px 20px;
   font-size: 18px;
}
nav ul{
    display: block;
    text-align: left;
    margin: 20px 0 0 0;
    font-size: 16px;
    gap: 0px;
}
#top{
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
}
#top.active{
    background-color: #ffffff;
}
/* 非アクティブ */
#hamburger{
    width: 32px;
    height: 28px;
    cursor: pointer;
    position: relative;
    z-index: 30;
    /* margin: 0 10px 50px 0; */
}
#hamburger span{
    width: 32px;
    height: 3px;
    display: block;
    background-color: #333333;
    border-radius: 2px;
    position: absolute;
    transition: 0.2s;
}
#hamburger span:first-child{
    top: 0;
}
#hamburger span:nth-child(2){
    top: 12px;
}
#hamburger span:last-child{
    top: 24px;
}
nav{
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    max-width: 400px;
    height: 100dvh;
    display: flex;
    align-items: center;
    padding: 30px;
    background:rgba(245, 245, 247, 0.9);
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition-property: all;
    transition-duration: 0.2s;
}
nav ul li a{
    margin-bottom: 50px;
    display: block;
}
  /* アクティブ */
.active #hamburger span:first-child{
    top: 12px;
    transform: rotate(45deg);
}
.active #hamburger span:nth-child(2){
    opacity: 0;
}
.active #hamburger span:last-child{
    top: 12px;
    transform: rotate(-45deg);
}
.active nav{
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}
.active::before{
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    background-color: #333333;
    width: 100%;
    height: 100dvh;
    opacity: 0.4;
    z-index: 10;
}
.minato p{
    top: 10px;
    right: 100px;
    left: 0;
}
.concept{
    font-size: 18px;
    padding-bottom: 80px;
    padding-top: 20px;
}
.mongon{
    padding: 80px 0 80px;
    font-size: 11px;
    line-height: 3.0em;
}
.basyo{
    font-size: 16px;
}
main h2{
    padding-top: 80px;
}
.mogi{
    padding: 30px 0;
}
.map{
    padding: 50px 0 100px 0;
}
.map iframe{
    width: 350px;
    height: 250px;
}
.pagetop {
    height: 45px;
    width: 45px;
}
main h4{
    padding: 100px 0 100px 0;
    font-size: 20px;
}
dl{
    line-height: 2.0em;
}
.turi{
    display: block;
    gap: 0px;
    font-size: 14px;
    margin: 0 10px;
}
.jigi{
    margin-top: 50px;
}
.kyanseru{
    padding-top: 10px;
}
.otosi{
    padding-top: 100px;
    padding-left: 0px;
    font-size: 14px;
    margin: 0 10px;
}
.turi2{
    display: block;
    gap: 0px;
    padding-left: 0px;
    font-size: 14px;
    margin: 0 10px;
}
.chata{
    margin-top: 50px;
}
.kasidasi{
    padding: 80px 0;
    font-size: 14px;
    margin-left: 10px;
}
main h3{
    padding: 100px 0;
    font-size: 20px;
}
.yotei2 iframe{
    width: 350px;
    height: 300px;
}
main h5{
    text-align: center;
    padding: 100px 0 50px 0;
    font-size: 20px;
}
.namae{
    display: block;
    font-size: 18px;
    margin-top: 80px;
    margin-left: 10px;
}
.namae img{
    width: 350px;
    height: 250px;
    padding-left: 25px;
    padding-top: 25px;
}
.touroku{
    display: block;
    font-size: 18px;
    margin-top: 100px;
    margin-left: 20px;
}
.touroku img{
    width: 350px;
    height: 200px;
    padding-right: 0px;
    margin-bottom: 25px;
}
.kanbi{
    display: block;
    font-size: 18px;
    margin-top: 100px;
    margin-left: 20px;
}
.kanbi img{
    width: 350px;
    height: 250px;
    padding-left: 0px;
    margin-bottom: 100px;
    margin-top: 20px;
}
main h6{
    padding: 80px 0 80px 0;
    font-size: 20px;
}
.insta{
    display: flex;
    justify-content: center;
    font-size: 18px;
}
.insta img{
    width: 100px;
    height: 100px;
    margin-right: 10px;
    margin-bottom: 50px;
}
.toi{
    padding: 50px 0;
}
.toi p{
    padding: 30px 0;
    font-size: 14px;
}
.igai iframe{
    width: 375px;
    height: 600px;
    margin-bottom: 80px;
}
}