
@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
/*
font-family: "Noto Sans JP", sans-serif;
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
/*
font-family: "Poppins", sans-serif;
*/

@import url('');
/*
font-family: "Meow Script", cursive;
*/

/*=================================================
 root
=================================================*/

:root {
  /* color */
  --cr_main: #A4D8A8;
  --cr_sub: #67A975;
  --cr_light: #EAF4FF;
  --cr_text: #000;
  --cr_white: #FFF;

  /* font */
  --ft_text: "Noto Sans JP", sans-serif;
  --ft_en: "Noto Sans JP", sans-serif;
  --ft_hd: "", cursive;
}

/*=================================================
 html
=================================================*/

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/*=================================================
 body
=================================================*/

body {
  font-family: var(--ft_text);
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--cr_text);
  background-color: var(--cr_white);
}

/*=================================================
 header
=================================================*/

header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--cr_white);
}

.header-inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
}

.header-inner .header-logo {
  display: flex;
  gap: 9px;
}

.header-inner .header-logo .jp {
  width: 120px;
  height: 59px;
  font-size: 30px;
  line-height: 59px;
  text-align: center;
  font-weight: 400;
}

.header-inner .header-logo .en {
  width: 82px;
  height: 59px;
  font-size: 16px;
  line-height: 59px;
  text-align: center;
  font-weight: 400;
}

nav {
  width: 590px;
  height: 59px;
  line-height: 59px;
  text-align: center;
  margin-left: auto;
}

nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

nav li a {
  text-decoration: none;
  color: inherit;
  font-size: 13px;
  font-weight: 350;
  position: relative;
}

nav li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

nav li a:hover::after {
  width: 100%;
}


@media screen and (Max-width: 1340px){
  .header-inner {
    padding: 0 20px;
  }
}

@media screen and (Max-width: 860px){
  .header-inner {
    padding: 0 20px;
  }
}

@media screen and (Max-width: 860px){
  .header-inner nav{
    display: none;
  }

  .header-inner .header-logo{
    height: 73px;
  }

  .header-inner .header-logo .jp{
    height: 73px;
    align-items: center;
    display: flex;
  }

  .header-inner .header-logo .en{
    width: 80px;
    height: 73px;
    align-items: center;
    display: flex;
  }
}

@media screen and (Max-width: 768px){
  .header-inner .header-logo .jp{
    width: 80px;
    height: 73px;
    font-size: 20px;
    align-items: center;
    display: flex;
  }
}

/*=================================================
 humburger
=================================================*/

.drawer_button {
  position: fixed;
  top: calc((73px - 40px) / 2);
  right: 20px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.drawer_button span {
  display: block;
  position: absolute;
  width: 100%;
  border-bottom: solid 1px #000;
  transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.drawer_button span:nth-child(1) {
  top: 5px;
}

.drawer_button span:nth-child(2) {
  top: 18px;
}

.drawer_button span:nth-child(3) {
  top: 32px;
}

.drawer_button.active span:nth-child(1) {
  top: 18px;
  transform: rotate(-45deg);
  border-bottom: solid 1px #000;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.drawer_button.active span:nth-child(2) {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}
.drawer_button.active span:nth-child(3) {
  top: 18px;
  transform: rotate(45deg);
  border-bottom: solid 1px #000;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.drawer_nav {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease-out;
  z-index: -1;
}

.drawer_nav.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.drawer_nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--cr_main);
}

.drawer_nav_link {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  margin-top: 20px;
}

.drawer_nav.active .drawer_nav_link {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-in, transform 0.6s ease-in;
}

@media (max-width: 860px) {
  .drawer_nav {
    display: flex;
  }

  .drawer_button {
    display: flex;
  }
}

@media (min-width: 861px) {
  .drawer_nav {
    display: none;
  }

  .drawer_button {
    display: none;
  }
}

/*=================================================
 hero
=================================================*/

.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 165px);
  overflow: hidden;
}

.hero .video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

.hero .content {
  position: relative;
  z-index: -1;
  color: var(--cr_light);
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

.hero .content h1 {
  height: 64px;
  font-size: 26px;
  line-height: 64px;
  text-align: center;
  letter-spacing: 0.02em;
  font-weight: 300;
}

.hero .content p {
  height: 18px;
  font-size: 13px;
  line-height: 18px;
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 828px){
  .hero{
    height: 430px;
  }

  .hero .content h1{
    height: 25px;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 0.02em;
    font-weight: 300;
  }
  
  .hero .content p{
    height: 16px;
    font-size: 9px;
    line-height: 18px;
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.04em;
  }
}

/*=================================================
 notice
=================================================*/

.notice {
  width: 940px;
  height: 48px;
  margin: 0 auto;
  display: flex;
  width: 100%;
  height: 106px;
  background-color: var(--cr_light);
  opacity: 100%;
  display: flex;
  align-items: center;
}

.notice .full-bg {
  width: 940px;
  height: 48px;
  margin: 0 auto;
  display: flex;
}

.notice .full-bg .anchor-bg {
  width: 232px;
  height: 48px;
  background-color: var(--cr_main);
  opacity: 100%;
}

.notice .full-bg .anchor-bg a {
  width: 232px;
  height: 48px;
  font-size: 15px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #000;
  font-weight: 350;
}

.notice .full-bg .bg-list {
  width: 439px;
  height: 48px;
  margin-left: auto;
  display: flex;
  gap: 10px;
}

.notice .full-bg .bg-1 {
  width: 232px;
  height: 48px;
  background-color: var(--cr_main);
  display: flex;
  gap: 7px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
} 

.notice .full-bg .bg-1 p {
  font-size: 12px;
  align-items: center;
  display: flex;
}

.notice .full-bg .bg-2 {
  width: 79px;
  height: 48px;
  background-color: var(--cr_main);
}

.notice .full-bg .bg-2 a {
  width: 79px;
  height: 48px;
  font-size: 15px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--cr_text);
  font-weight: 350;
}

.notice .full-bg .bg-3 {
  width: 48px;
  height: 48px;
  background-color: var(--cr_main);
  display: flex;
  align-items: center;
  justify-content: center;
}

.notice .full-bg .bg-4 {
  width: 48px;
  height: 48px;
  background-color: var(--cr_main);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 940px) {
  .notice {
    padding: 0 20px;
  }
}

@media screen and (max-width: 730px) {
  .notice {
    height: 115px;
    align-items: normal;
    background-color: transparent;
    padding: 0;
  }

  .notice .full-bg {
    width: 100%;
    height: 115px;
    background-color: var(--cr_light);
    margin: 0 auto;
    display: block;
    justify-content: center;
  }

  .notice .full-bg .anchor-bg {
    margin: 0 auto;
    height: 46px;
    background-color: transparent;
  }

  .notice .full-bg .anchor-bg a {
    font-size: 14px;
  }

  .notice .full-bg .bg-list {
    width: 100%;
    margin: 0 auto;
    height: 69px;
    background-color: var(--cr_light);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .notice .full-bg .bg-1 {
    width: 167px;
    margin: 0;
  }

  .notice .full-bg .bg-2 a {
    width: 79px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/*=================================================
 news
=================================================*/

.news {
  width: 981px;
  height: 191px; 
  background-color: var(--cr_white);
  margin: 65px auto 73px;
  border: 1px solid var(--cr_main);
  display: flex;
  align-items: center;
  justify-content: center;
}

.news .bg {
  width: 940px;
  height: 170px;
  background-color: var(--cr_main);
  display: flex;
  align-items: center;
}

.news .content {
  width: 749px;
  height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 41px;
}

.news .title {
  width: 214px;
  height: 100px;
  display: flex;
  align-items: center;
}

.news .bg .title h1 {
  width: 142px;
  font-size: 48px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cr_text);
  font-weight: 400;
}

.news .bg .title p {
  width: 64px;
  height: 40px;
  font-size: 16px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cr_text);
  font-weight: 350;
  margin-top: 22px;
}

.news .bg .content .list {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news .bg .content .list p {
  width: 474px;
  font-size: 14px;
  font-weight: 200;
  margin-top: 14px;
  position: relative;
  padding-bottom: 5px;
}

.news .bg .content .list p::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 474px;
  height: 0.05em;
  background-color: currentColor;
  transform: translateY(2px);
}

@media screen and (Max-width: 998px){
  .news {
    width: 100%;
    margin: 0 auto;
    height: 340px;
    margin: 0;
    border: none;
    display: block;
  }

  .news .bg {
    width: 100%;
    height: 96px;
    background-color: transparent;
  }

  .news .content {
    flex-direction: column;
    gap: 0;
    padding: 20px;
  }

  .news .title {
    width: 100%;
    display: block;
    margin-top: 40px;
  }

  .news .bg .title h1 {
    width: 100%;
    height: 25px;
    font-size: 32px;
  }

  .news .bg .title p {
    width: 100%;
    height: 32px;
    font-size: 12px;
    margin: 0;
  }

  .news .bg .content .list {
    width: 100%;
    height: 375px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    line-height: 70px;
    margin-top: 11px;
  }
  
  .news .bg .content .list a {
    width: 100%;
  }

  .news .bg .content .list p {
    width: 100%;
    height: 52px;
    font-size: 12px;
    font-weight: 200;
    margin-top: 0;
    position: relative;
    padding-bottom: 5px;
  }

  .news .bg .content .list p::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.05em;
    background-color: currentColor;
    transform: translateY(2px);
  }
}

/*=================================================
 map
=================================================*/

.map {
  width: 940px;
  height: 56px;
  display: flex;
  margin: 0 auto;
  gap: 55px;
  margin-bottom: 40px;
}

.map .container {
  display: flex;
  gap: 8px;
}

.map .container .title {
  width: 201px;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.map .container .block {
  width: 8px;
  height: 56px;
  background-color: var(--cr_sub);
}

.map .container .title h1 {
  width: 101px;
  height: 56px;
  font-size: 48px;
  font-weight: 400;
  display: flex;
  align-items: center;
}

.map .container .title p {
  width: 96px;
  height: 36px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  margin-top: 22px;
}

.map .description {
  width: 496px;
  height: 36px;
  display: flex;
  align-items: center;     
  justify-content: center; 
  align-self: flex-end;    
}

.map .description p {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  text-align: center;
}

@media screen and (Max-width: 930px){
  .map {
    width: 100%;
    margin: 0 auto;
    height: 57px;
    margin: 0;
    border: none;
    display: block;
  }

  .map .container {
    display: flex;
    flex-direction: column;
  }

  .map .container .block {
    display: none;
  }

  .map .container .title {
    width: 100%;
    display: block;
  }

  .map .container .title h1 {
    width: 100%;
    height: 25px;
    font-size: 32px;
    margin: 0 auto;
    justify-content: center;
    display: flex;
  }

  .map .container .title p {
    width: 100%;
    height: 32px;
    margin: 0;
    font-size: 12px;
    margin: 0 auto;
    justify-content: center;
    display: flex;
  }

  .map .description {
    display: none;
  }
}

/*=================================================
 image
=================================================*/

.map-image {
  width: 100%;
  display: flex;
  gap: 17px;
  margin: 0 auto;
  justify-content: center;
  margin-bottom: 44px;
}

.map-image .around-map {
  text-align: center;
}

.map-image  img {
  position: relative;
  border: 1px solid transparent;
  transition: border 0.3s ease;
}

.map-image  img:hover {
  border: 1px solid #000;
}

.map-image .around-map .caption {
  height: 58px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  font-size: 15px;
  font-weight: 400;
}

.map-image .rental-boat {
  text-align: center;
}

.map-image .rental-boat .caption {
  height: 58px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  font-size: 15px;
  font-weight: 400;
}

@media screen and (max-width: 930px) {
  .map-image {
    width: 100%;
    display: block;
    margin: 0;
  }

  .map-image .around-map {
    width: 100%;
    display: block;
    padding: 18px;
    padding: 0 20px;
  }

  .map-image .around-map img {
    width: 100%;
    height: 302px;
    object-fit: cover;
  }

  .map-image .around-map .caption {
    height: 40px;
    font-size: 15px;
    margin-bottom: 13px;
  }

  .map-image .rental-boat {
    width: 100%;
    display: block;
    padding: 20px;
  }

  .map-image .rental-boat img {
    width: 100%;
    height: 302px;
    object-fit: cover;
  }

  .map-image .rental-boat .caption {
    height: 40px;
    font-size: 15px;
  }
}

/*=================================================
 places
=================================================*/

.places-row {
  width: 100%;
}

.places-row  img {
  position: relative;
  border: 1px solid transparent;
  transition: border 0.3s ease;
}

.places-row  img:hover {
  border: 1px solid #000;
}

.places-row tr {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  gap: 44px;
}

.places-row img {
  width: 100%;
  max-width: 284px;
  object-fit: cover;
}

.places-row p {
  width: 100%;
  max-width: 284px;
  height: 40px;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 25px;
}

@media screen and (max-width: 930px) {
  .places-row tr {
    padding: 0 20px;
    gap: 20px;
  }

  .places-row tr td img {
    width: 100%;
    height: 302px;
    object-fit: cover;
  }
}

@media screen and (max-width: 650px) {
  .places-row tr td img {
    width: 100%;
    height: 140px;
    object-fit: cover;
  }
}

/*=================================================
　highlights
=================================================*/

.highlights {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.highlights h1 {
  width: 150px;
  height: 36px;
  display: flex;
  align-items: center;
  font-size: 30px;
  font-weight: 400;
  margin-top: 40px;
}

.highlights .description {
  max-width: 525px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 350;
  text-align: center;
  border-bottom: 1px solid var(--cr_sub);
  padding-bottom: 5px;
  margin-top: 6px;
  letter-spacing: 0.02em;
}

@media screen and (Max-width: 940px){
  .highlights {
    padding: 0 20px;
    margin-bottom: 20px;
  }

  .highlights h1 {
    margin-top: 20px;
    margin-bottom: 5px;
  }
}

/*=================================================
 background
=================================================*/

.background-row {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 37px 0 30px;
  gap: 14px;
}

.background-box {
  position: relative;
  padding: 20px;
  border: 1px solid transparent;
  transition: border 0.3s ease;
}

.background-box:hover {
  border: 1px solid #000;
}

.background-box {
  width: 463px;
  height: 114px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: var(--cr_white);
}

.text-container {
  display: flex;
  justify-content: space-between;
  margin-right: auto;
}

.first-box {
  background-color: #BBECBB;
}

.second-box {
  background-color: #FDE9EE;
}

.third-box {
  background-color: #FFFACA;
}

.fourth-box {
  background-color: #C2EDFF;
}

.spring-title {
  width: 97px;
  height: 114px;
  font-size: 24px;
  font-weight: 400;
  align-items: center;
  justify-content: center;
  display: flex;
}

.summer-title {
  width: 97px;
  height: 114px;
  font-size: 24px;
  font-weight: 400;
  align-items: center;
  justify-content: center;
  display: flex;
}

.autumn-title {
  width: 97px;
  height: 114px;
  font-size: 24px;
  font-weight: 400;
  align-items: center;
  justify-content: center;
  display: flex;
}

.winter-title {
  width: 97px;
  height: 114px;
  font-size: 24px;
  font-weight: 400;
  align-items: center;
  justify-content: center;
  display: flex;
}

.spring-desc {
  height: 114px;
  font-size: 13px;
  font-weight: 350;
  align-items: center;
  justify-content: center;
  display: flex;
}

.summer-desc {
  height: 114px;
  font-size: 13px;
  font-weight: 350;
  align-items: center;
  justify-content: center;
  display: flex;
}

.autumn-desc {
  height: 114px;
  font-size: 13px;
  font-weight: 350;
  align-items: center;
  justify-content: center;
  display: flex;
}

.winter-desc {
  padding: 10px;
  height: 114px;
  font-size: 13px;
  font-weight: 350;
  align-items: center;
  justify-content: center;
  display: flex;
}

@media screen and (max-width: 940px) {
  .background-row {
    padding: 0 20px;
  }

  .spring-desc {
    padding: 10px;
  }

  .summer-desc {
    padding: 10px;
  }

  .autumn-desc {
    padding: 10px;
  }
}

@media screen and (max-width: 530px) {
  .background-row {
    display: block;
    margin: 0;
    padding: 0 20px;
  }

  .background-box {
    width: 100%;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .fourth-box {
    margin-bottom: 30px;
  }
}

/*=================================================
 about
=================================================*/

.about {
  width: 100%;
  border-top: 1px solid var(--cr_sub);
  border-bottom: 1px solid var(--cr_sub);
  margin-top: 67px;
  margin: 0 auto;
}

.about  img {
  position: relative;
  border: 1px solid transparent;
  transition: border 0.3s ease;
}

.about img:hover {
  border: 1px solid #000;
}

.about .container {
  max-width: 940px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
}

.about .block {
  width: 8px;
  height: 56px;
  background-color: var(--cr_sub);
  margin-top: 67px;
}

.about .title {
  gap: 8px;
  display: flex;
}

.about .title h1 {
  width: 163px;
  height: 56px;
  display: flex;
  align-items: center;
  font-size: 48px;
  font-weight: 400;
  margin-top: 67px;
}

.about .title p {
  width: 96px;
  height: 34px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  margin-top: 88px;
}

.images {
  width: 100%;
  margin-top: 54px;
}

.images tr {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  gap: 44px;
}

.images img {
  width: 100%;
  max-width: 284px;
  object-fit: cover;
}

.images p {
  width: 100%;
  max-width: 284px;
  height: 40px;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 25px;
}

@media screen and (Max-width: 930px){
  .about {
    width: 100%;
    margin: 0 auto;
    margin: 0;
    border: none;
    display: block;
    border-bottom: 1px solid var(--cr_sub);
  }

  .about .container {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--cr_sub);
  }

  .about .container .block {
    display: none;
  }

  .about .container .title {
    width: 100%;
    display: block;
  }

  .about .container .title h1 {
    width: 100%;
    height: 25px;
    font-size: 32px;
    margin: 0 auto;
    justify-content: center;
    display: flex;
    margin-top: 43px;
  }

  .about .container .title p {
    width: 100%;
    height: 32px;
    margin: 0;
    font-size: 12px;
    margin: 0 auto;
    justify-content: center;
    display: flex;
  }
}

@media screen and (Max-width: 930px){
  .images {
    margin-top: 30px;
  }

  .images tr {
    padding: 0 20px;
    gap: 20px;
  }

  .images tr td img {
    width: 100%;
    height: 302px;
    object-fit: cover;
  }
}

@media screen and (Max-width: 650px){
  .images tr td img {
    width: 100%;
    height: 140px;
    object-fit: cover;
  }
}

/*=================================================
 info
=================================================*/

.info {
  width: 100%;
  height: 312px;
  margin: 0 auto;
  border-bottom: 1px solid var(--cr_sub);
  display: flex;
  justify-content: center;
  gap: 38px;
  align-items: center;
}

.info .container {
  display: flex;
  gap: 8px;
}

.info .container .block {
  width: 4px;
  height: 46px;
  background-color: var(--cr_sub);
}

.info .container h1 {
  width: 256px;
  height: 45px;
  font-size: 32px;
  font-weight: 400;
  align-items: center;
  display: flex;
}

.info section {
  width: 518px;
  height: 237px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info .section .buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
  margin: 0 auto;
  justify-content: center;
  align-items: center; 
}

.info .section .buttons .button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--cr_main);
  color: #000;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  text-align: center;
  margin: 0 auto;
  width: 250px;
  height: 60px;
  transition: background-color 0.8s ease, color 0.3s ease, transform 0.3s ease;
}

.info .section .buttons .button:hover {
  background-color: var(--cr_sub);
  color: #fff;
}

.info .read-more a {
  font-size: 14px;
  width: 84px;
  font-weight: 350;
}

@media screen and (Max-width: 870px){
  .info {
    width: 100%;
    display: block;
    margin: 0;
    margin-top: 39px;
    padding: 0 20px;
  }

  .info .container .block {
    display: none;
  }

  .info .container h1{
    width: 100%;
    margin: 0 auto;
    font-size: 25px;
    justify-content: center;
    margin-bottom: 25px;
  }

  .info section {
    width: 100%;
    margin: 0 auto;
    justify-content: center;
  }

  .info .section .buttons {
    width: 100%;
    margin: 0 auto;
    justify-content: center;
  }

  .info .section .buttons .button {
    width: 100%;
    font-size: 14px;
    margin: 0 auto;
    justify-content: center;
  }

  .info .read-more {
    display: none;
  }
}

@media screen and (Max-width: 420px){
  .info .section .buttons .button {
    font-size: 15px;
  }
}

/*=================================================
 volunteer
=================================================*/

.volunteer {
  width: 100%;
  height: 312px;
  margin: 0 auto;
  border-bottom: 1px solid var(--cr_sub);
  display: flex;
  justify-content: center;
  gap: 38px;
  align-items: center;
}

.volunteer .container {
  display: flex;
  gap: 8px;
}

.volunteer .container .block {
  width: 4px;
  height: 46px;
  background-color: var(--cr_sub);
}

.volunteer .container h1 {
  width: 256px;
  height: 45px;
  font-size: 32px;
  font-weight: 400;
  align-items: center;
  display: flex;
}

.volunteer .container .section {
  width: 518px;
  height: 237px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.volunteer .section .buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
  margin: 0 auto;
  justify-content: center;
  align-items: center; 
}

.volunteer .section .buttons .button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--cr_main);
  color: #000;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  text-align: center;
  margin: 0 auto;
  width: 250px;
  height: 60px;
  transition: background-color 0.8s ease, color 0.3s ease, transform 0.3s ease;
}

.volunteer .section .buttons .button:hover {
  background-color: var(--cr_sub);
  color: #fff;
}

.volunteer .read-more a {
  font-size: 14px;
  width: 84px;
  font-weight: 350;
}

@media screen and (Max-width: 870px){
  .volunteer {
    width: 100%;
    display: block;
    margin: 0;
    margin-top: 39px;
    padding: 0 20px;
  }

  .volunteer .container .block {
    display: none;
  }

  .volunteer .container h1{
    width: 100%;
    margin: 0 auto;
    font-size: 25px;
    justify-content: center;
    margin-bottom: 25px;
  }

  .volunteer section {
    width: 100%;
    margin: 0 auto;
    justify-content: center;
  }

  .volunteer .section .buttons {
    width: 100%;
    margin: 0 auto;
    justify-content: center;
  }

  .volunteer .section .buttons .button {
    width: 100%;
    font-size: 14px;
    margin: 0 auto;
    justify-content: center;
  }

  .volunteer .read-more {
    display: none;
  }
}

@media screen and (Max-width: 420px){

  .volunteer .section .buttons .button {
    font-size: 15px;
  }
}

/*=================================================
 access　
=================================================*/

.access {
  max-width: 940px;
  height: 140px;
  margin: 0 auto;
  display: flex;
  margin: 0 auto;
  gap: 38px;
  align-items: center;
}

.access .container {
  display: flex;
  gap: 8px;
}

.access .container .block {
  width: 4px;
  height: 46px;
  background-color: var(--cr_sub);
}

.access .container h1 {
  width: 256px;
  height: 46px;
  font-size: 32px;
  font-weight: 400;
  text-align: left;
  align-items: center;
  display: flex;
}

.access .read-more {
  margin-left: auto;
  font-size: 14px;
  font-weight: 350;
}

@media screen and (Max-width: 768px){
  .access {
    width: 100%;
    display: block;
    margin: 0;
    margin-top: 39px;
    height: 57px;
    margin-bottom: 13px;
  }

  .access .container .block {
    display: none;
  }

  .access .container h1{
    width: 100%;
    margin: 0 auto;
    font-size: 25px;
    justify-content: center;
    margin-bottom: 25px;
  }

  .access .read-more {
    display: none;
  }
}

/*=================================================
 google-map
=================================================*/

.google-map {
  width: 686px;
  height: 385px;
  margin: 0 auto; /* コンテナを中央寄せ */
}

.google-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media screen and (Max-width: 768px){
  .google-map {
    width: 100%;
    height: 302px;
    margin: 0;
  }
}

/*=================================================
 access
=================================================*/

.access-method {
  width: 100%;
  height: auto;
  margin: 0 auto;
  justify-content: center;
  display: grid;
  align-items: center;
}

.access-method h1 {
  width: 143px;
  height: 110px;
  font-size: 24px;
  font-weight: 400;
  position: relative;
  text-align: left;
  align-items: center;
  display: flex;
  font-weight: 400;
}

.access-method .details {
  width: 686px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--cr_sub);
}

.access-method .details ul li {
  width: 204px;
  height: 80px;
  font-size: 14px;
  font-weight: 400;
  align-items: center;
  display: flex;
}

.access-method .route-info p {
  max-width: 473px;
  height: 80px;
  font-size: 14px;
  align-items: center;
  display: flex;
}

.access-method .parking-info {
  height: 116px;
  display: flex;
  align-items: center;
}

.access-method .parking-info h1 {
  width: 144px;
  font-size: 24px;
}

.access-method .parking-info .read_more {
  font-size: 14px;
  font-weight: 350;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .access-method {
    width: 100%;
    display: block;
    margin: 0;
    margin-top: 39px;
    padding: 20px;
  }

  .access-method .details {
    width: 100%;
    gap: 20px;
  }

  .access-method .details ul li {
    width: 204px;
    height: 100px;
    font-size: 14px;
    font-weight: 400;
    align-items: center;
    display: flex;
  }

  .access-method .route-info {
    width: 100%;
  }

  .access-method .route-info p {
    font-size: 14px;
  }
}

/*=================================================
 background
=================================================*/

.background-alt {
  width: 100%;
  height: 195px;
  background-color:var(--cr_light);
  margin-top: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.background-alt .box {
  width: 451px;
  height: 111px;
  background-color: var(--cr_white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.background-alt .box .icon {
  width: 40px;
  height: auto;
  margin-bottom: 24px;
}

.background-alt .box .text {
  width: 100%;
  font-weight: 400;
  font-size: 12px;
  color: var(--cr_text);
  text-align: center;
}

/*=================================================
 back
=================================================*/

.back-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 99px;
  text-align: center;
  margin: 20px auto;
}

.back-top .link {
  font-size: 13px;
  color: var(--cr_text);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.3s;
  font-weight: 500;
}

/*=================================================
 pre
=================================================*/

.pre-footer img {
  width: 100%;
  max-width: 1440px;
  height: 187px;
  object-fit: cover;
  margin: 0 auto;
  display: flex;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .pre-footer img {
    width: 100%;
    height: 187px;
    object-fit: cover;
  }
}

/*=================================================
 footer
=================================================*/

.footer {
  width: 100%;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  gap: 31px;
  border-top: 1px solid var(--cr_main);
  margin-top: 54px;
  padding-top: 41px;
  padding-bottom: 49px;
}

.footer .title {
  height: 35px;
  margin-bottom: 7px;
  font-size: 15px;
}

.footer .item {
  height: 35px;
  font-size: 12px;
}

@media screen and (max-width: 960px) {
  .footer {
    width: 100%;
    display: block;
    text-align: center;
    padding: 0;
  }

  .footer .title {
    font-size: 15px;
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0;
  }

  .footer .footer-news {
    margin-top: 10px;
  }

  .footer .language {
    margin-bottom: 10px;
  }

  .footer .item {
    display: none;
  }
}

/*=================================================
 copyright
=================================================*/

.copyright {
  width: 100%;
  background-color: var(--cr_main);
  border-top: 1px solid var(--cr_sub);
}

.copyright p {
  text-align: center;
  line-height: 52px;
  color: var(--cr_text);
  font-size: 12px;
}

@media screen and (Max-width: 768px){
  .copyright p {
    font-size: 16px;
  }
}

/*=================================================
 main-1
=================================================*/

main-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  opacity: 0;
  transition: opacity 0.9s ease-in;
}

main-1.active {
  opacity: 1;
}

.main-1 p {
  width: 100%;
  font-size: 14px;
  text-align: center;
}