@charset "utef-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}
img {
  width: 100%;
  vertical-align: bottom;
}
/* header */
.image {
  width: 60%;
}
header h1 img {
  width: 50px;
}
header h1 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 7vw;
}
.image a {
  color: white;
}
.sp-header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #000b76;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
}
.pc-header {
  display: none;
}
header {
  background-color: #000b76;
}
.hamburger {
  width: 35px;
  height: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  top: 10px;
  right: 2%;
  z-index: 999999999;
  background: transparent;
}
.sp-header .hamburger span {
  width: 100%;
  height: 3px;
  border-radius: 10px;
  background-color: white;
  display: block;
  transition: 0.7s;
}
.hamburger p {
  font-size: 12px;
  text-align: center;
  line-height: 1;
  position: relative;
  bottom: 3px;
  transition: 0.7s;
  color: white;
}
@media (min-width: 768px) {
  .image {
    width: 100%;
  }
  header h1 img {
    width: 100px;
  }
  header h1 {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 40px;
  }
  .image a {
    display: flex;
    align-items: center;
    color: white;
  }
  .pc-nav li {
    width: 150px;
  }
}
/* click後のスタイル */
.hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}
.hamburger.active p {
  opacity: 0;
}
/* nav */
.sp-nav {
  width: 100%;
  height: 100vh;
  background-color: #00aaff;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.7s;
  pointer-events: none;
  line-height: 3em;
}
.sp-nav a {
  color: #000b76;
}
i {
  margin-right: 15px;
}
.sp-nav.active {
  opacity: 1;
}
@media (min-width: 768px) {
  .sp-header,
  .sp-nav {
    display: none;
  }
  .pc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .pc-header h1 {
    width: fit-content;
    margin: 0;
    padding: 0;
  }
  .pc-nav ul {
    display: flex;
    gap: 10px;
  }
  .pc-nav ul li a {
    color: white;
  }
}
/* hero */
.pc-hero {
  display: none;
}
.hero img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .sp-hero {
    display: none;
  }
  .pc-hero {
    display: block;
    height: 70vh;
    object-fit: cover;
  }
}
/* about */
.about {
  font-family: "Zen Maru Gothic", sans-serif;
}
.about h2 {
  font-size: 25px;
  text-align: center;
  padding-top: 5%;
  padding-bottom: 7%;
}
.about p {
  text-align: center;
  font-size: 14px;
  line-height: 3;
}
@media (min-width:768pxa) {
  .about h2 {
  font-size: 45px;
  text-align: center;
}
  .about p {
  text-align: center;
  font-size: 14px;
  line-height: 3;
}
}
/* pickup */
.pickup {
  font-family: "Zen Maru Gothic", sans-serif;
}
.pickup h2 {
  text-align: center;
  padding: 3% 0;
}
.pickup h3 {
  text-align: center;
  padding: 2%;
}
.pickup a h3 {
  width: fit-content;
  position: relative;
  margin: 0 auto;
  color: #003b73;
}
.pickup a h3::before {
  content: "";
  display: block;
  width: 90%;
  height: 2px;
  background-color: #000b76;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.pickup img {
  border-radius: 30px;
}
@media (min-width: 768px) {
  .pickup-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  .pickup-item {
    width: 30%;
  }
  .pickup-item img {
    height: 300px;
  }
}
/* event */
.event {
  font-family: "Zen Maru Gothic", sans-serif;
  background-color: #003b73;
  padding-bottom: 3%;
}
.event-item {
  background-color: white;
  width: 90%;
  padding: 5%;
  border: 1px solid #003b73;
  margin: 0 auto;
  margin-bottom: 3%;
  line-height: 2;
}
.event-item dd {
  font-size: 15px;
}
.event-item dd a {
  color: #000b76;
}
.event h2 {
  text-align: center;
  padding: 3%;
  color: #fff;
}
.event dt span {
  display: inline-block;
  border: 1px solid #66ccff;
  border-radius: 10px;
  padding: 0 10px;
  font-size: 0.8em;
  margin-right: 1em;
  color: #00aaff;
}
@media (min-width: 768px) {
  .event-erea {
    display: flex;
    width: 90%;
    gap: 50px;
    padding-left: 100px;
  }
}
/* gallery */
.gallery {
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  padding-top: 10%;
  line-height: 3em;
}
.gallery-slider {
  width: 100%;
  background-color: #00aaff;
}
.gallery-slider .slider-area {
  position: relative;
  height: 100vh;
}
.triming01 {
  height: 65px;
  object-fit: cover;
  object-position: bottom;
}
.area-item01 img {
  width: 40%;
  height: 40vw;
  border-radius: 50%;
  position: absolute;
  top: 55%;
  left: 3%;
  transition: 1s;
}
.area-item01 img:hover{
  transform: scale(1.2);
}
.area-item02 img {
  width: 40%;
  height: 40vw;
  border-radius: 50%;
  position: absolute;
  top: 26%;
  left: 12%;
  transition: 1s;
}
.area-item02 img:hover{
  transform: scale(1.2);
}
.area-item03 img {
  width: 40%;
  height: 40vw;
  border-radius: 50%;
  position: absolute;
  top: 38%;
  right: 3%;
  transition: 1s;
}
.area-item03 img:hover{
  transform: scale(1.2);
}
.area-item04 img {
  width: 40%;
  height: 40vw;
  border-radius: 50%;
  position: absolute;
  top: 5%;
  right: 8%;
  transition: 1s;
}
.area-item04 img:hover{
  transform: scale(1.2);
}
.area-item05 img {
  width: 40%;
  height: 40vw;
  border-radius: 50%;
  position: absolute;
  top: -30px;
  left: 2%;
  transition: 1s;
}
.area-item05 img:hover{
  transform: scale(1.2);
}
.area-item06 img {
  width: 48%;
  height: 48vw;
  border-radius: 50%;
  position: absolute;
  top: 70%;
  right: 8%;
  transition: 1s;
}
.area-item06 img:hover{
  transform: scale(1.2);
}
.area-item07 img {
  width: 35%;
  height: 35vw;
  border-radius: 70%;
  position: absolute;
  top: 90%;
  left: 2%;
  transition: 1s;
}
.area-item07 img:hover{
  transform: scale(1.2);
}
.area-item08 img {
  display: none;
}
.area-item09 img {
  display: none;
}
.area-item10 img {
  display: none;
}
.gallery-item p {
  padding-bottom: 5%;
}
@media (min-width: 768px) {
  .area-item01 img {
    width: 20%;
    height: 20vw;
    border-radius: 50%;
    position: absolute;
    top: 45%;
    left: 20%;
  }
  .area-item02 img {
    width: 20%;
    height: 30%;
    border-radius: 50%;
    position: absolute;
    top: -8%;
    left: 18%;
  }
  .area-item03 img {
    width: 20%;
    height: 30%;
    border-radius: 50%;
    position: absolute;
    top: 25%;
    right: 12%;
  }
  .area-item04 img {
    width: 15%;
    height: 25%;
    border-radius: 50%;
    position: absolute;
    top: -8%;
    right: 5%;
  }
  .area-item05 img {
    width: 20%;
    height: 30%;
    border-radius: 50%;
    position: absolute;
    top: 20%;
    left: 2%;
  }
  .area-item06 img {
    width: 20%;
    height: 10%;
    border-radius: 50%;
    position: absolute;
    top: 70%;
    right: 15%;
  }
  .area-item07 img {
    width: 20%;
    height: 20vw;
    border-radius: 50%;
    position: absolute;
    top: 80%;
    left: 3%;
  }
  .area-item08 img {
    display: block;
    width: 25%;
    border-radius: 70%;
    position: absolute;
    top: 5%;
    left: 40%;
    transition: 1s;
  }
  .area-item08 img:hover{
  transform: scale(1.2);
  }
  .area-item09 img {
    display: block;
    width: 15%;
    border-radius: 70%;
    position: absolute;
    bottom: 3%;
    left: 35%;
    transition: 1s;
  }
  .area-item09 img:hover{
  transform: scale(1.2);
  }
  .area-item10 img {
    display: block;
    width: 20%;
    border-radius: 70%;
    position: absolute;
    top: 50%;
    left: 45%;
    transition: 1s;
  }
  .area-item10 img:hover{
  transform: scale(1.2);
  }
  .triming01{
    height: 250px;
  }
}
/* footer access */
footer {
  background-color: #66ccff;
}
.triming02 {
  height: 65px;
  object-fit: cover;
  object-position: bottom;
}
.access p img {
  width: 50px;
  position: absolute;
  top: -1;
  left: 21%;
}
.access p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 7vw;
  color: white;
  display: flex;
  justify-content: center;
}
.access {
  margin: 0 auto;
  position: relative;
}
.access-item3 {
  background-color: #a2d9ff;
}
.access-item3 img {
  width: 7%;
  margin-left: 3%;
}
.access-item3 p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 25px;
  justify-content: left;
  padding-left: 3%;
}
.access-item {
  padding-top: 5%;
  width: 65%;
  margin: 0 auto;
}
.access-item a {
  font-size: 15px;
  position: relative;
  padding-left: 3%;
}
.access-item p {
  font-size: 16px;
  justify-content: left;
  padding-left: 3%;
  line-height: 2;
}
.access-item2 {
  padding-top: 6%;
  padding-left: 3%;
  width: fit-content;
  margin: 0 auto;
}
.access-item2 ul li {
  font-size: 17px;
  line-height: 3;
}
@media (min-width: 768px) {
  p.access img {
    width: 80%;
    position: absolute;
    top: 7%;
    left: 30%;
  }
  p.access01 {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 50px;
    color: white;
    display: flex;
    text-align: center;
  }
  .access-item p {
    font-size: 20px;
    justify-content: left;
    padding-left: 35%;
    line-height: 2;
    
  }
  .access-item a {
    font-size: px;
    position: relative;
    padding-left: 35%;
  }
  .access-item3 img {
    width: 3%;
    margin-left: 3%;
  }
  .access-item3 p {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 30px;
    justify-content: left;
    padding-left: 3%;
    padding-bottom: 10px;
  }
  .triming02{
    height: 240px;
  }
  .access p img {
    width: 80px;
    position: absolute;
    top: 2px;
    left: 29%;
}
}
/* footer */
.footer01 p {
  background-color: #000b76;
  color: white;
  text-align: center;
  font-size: 13px;
}
.triming {
  height: 30px;
  object-fit: cover;
  object-position: bottom;
  background-color: #a2d9ff;
}
@media (min-width: 768px) {
  .triming {
  height: 110px;
  object-fit: cover;
  object-position: bottom;
  background-color: #a2d9ff;
}
}
#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 5px 5px;
  background-color: #66ccff66;
  color: white;
  border: 1px solid #003b73;
  border-radius: 5px;
  cursor: pointer;
  display: none; /* 初期状態で非表示 */
}
#back-to-top:hover {
  background-color: #0056b3;
}
