@charset "UTF-8";
/* CSS Document */

section h2 {
text-align: center;
font-size: var(--font-size-48);
font-weight: 500;
letter-spacing: 0.05em;
margin-bottom: 4rem;
}
section h2 span {
display: block;
margin-top: .5rem;
font-size: var(--font-size-24);
}
#mv_snow {
width: 100%;
height: auto; 
position: relative;
top: 0;
overflow: hidden;
z-index: 1;
}
#mv_snow h1 {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-family: "Kaisei Opti", serif;
font-size: var(--font-size-56);
white-space: nowrap;
z-index: 2;
text-shadow: 0 0 15px #fff,0 0 15px #fff;
}
#mv_snow .banner {
width: 25%;
height: auto;
position: absolute;
right: 1rem;
top: 8vw;
}
#mv_snow video {
width: 100%;
height: auto;
}
#contents .inner {
width: 90%;
margin: 0 auto;
}
#sec1 {
padding: 2rem 0;
}
#sec1 .inner {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
}
#sec1 dl {
width: 26%;
display: flex;
flex-wrap: wrap;
}
#sec1 dt.date {
width: 100%;
font-size: var(--font-size-24);
text-align: center;
}
#sec1 dd.temp {
width: 60%;
font-size: var(--font-size-42);
}
#sec1 dd.temp span {
display: inline-block;
font-size: var(--font-size-100);
}
#sec1 dd.weather {
width: 40%;
display: flex;
flex-direction: column;
justify-content: center;
}
#sec1 dd.weather span {
font-size: var(--font-size-18);
}
#sec1 dd.weather img {
width: 60%;
height: auto;
margin: 0 auto;
}
#sec1 ul {
width: 72%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
border-left: solid 1px #ccc;
}
#sec1 ul li {
width: 25%;
text-align: center;
font-size: var(--font-size-32);
margin-bottom: 1rem;
}
#sec1 ul li span {
display: block;
margin-bottom: 0.3rem;
font-size: var(--font-size-18);
}
#sec2 {
padding: 4rem 0 6rem;
background: #9cc4e2;
margin-top: -1vw;
}
#sec2 .map {
width: 80%;
margin: 0 auto 2rem;
}
#sec3 {
padding: 4rem 0 6rem;
}
#sec3 ul {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
margin-bottom: 4rem;
}
#sec3 ul li {
width: 30%;
display: flex;
flex-direction: column;
justify-content: flex-start;
}
#sec3 ul li .title {
font-size: var(--font-size-20);
font-weight: 500;
text-align: left;
}
#sec3 ul li .title:before {
content: "\f0da";
  font-family: "Font Awesome 5 Free";
  font-weight: 900; 
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: 2px;
}
#sec3 ul li .date {
margin-bottom: 1rem;
}
#sec3 ul li dt {
margin-bottom: 1rem;
}
#sec4 {
padding: 6rem 0 6rem;
background: #9cc4e2;
}
#sec4 ul {
width: 100%;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
#sec4 ul li {
width: 23%;
}
#sec4 ul li dl {
  display: flex;
  flex-direction: column;
  height: 100%;
}
#sec4 ul li dt {
min-height: 3em; 
  font-size: var(--font-size-20);
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center; 
}
#sec4 ul li dd.image {
margin-bottom: 1rem
}
#sec4 ul li dd.image img {
border-radius: 20px;
}
#sec4 ul li dd.text {
text-align: left;
font-size: var(--font-size-16);
}
#sec5 {
padding: 6rem 0 6rem;
}
#sec5 ul.event {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
margin-bottom: 4rem;
}
#sec5 ul.event li {
width: 22%;
display: flex;
flex-direction: column;
}
#sec5 ul.event li dt {
font-size: var(--font-size-18);
font-weight: 600;
margin-bottom: 1rem;
}
#sec5 ul.event li dd.image {
margin-bottom: 1rem
}
#sec5 ul.event li dd.text {
margin-bottom: 1rem
}
#sec5 .detail_bt {
display: block;
padding: 0.8rem;
text-align: center;
background: #2d77ba;
color: #fff;
transition: 0.3s;
}
#sec5 .detail_bt:hover {
background: #0c6aaf;
}
#sec5 .link {
  width: 80%;
  margin: 4rem auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4rem;
}
#sec5 .link li {
  flex: 1 1 45%;
  display: flex;
}

#sec5 .link li a {
  flex: 1;
  display: flex;
  align-items: center;
  border: 2px solid #175082;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
  min-height: 90px;       /* ボタン高さを揃える */
  box-sizing: border-box;
  overflow: hidden;       /* アイコンのはみ出し防止 */
}

#sec5 .link li a .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-shrink: 0;
}

#sec5 .link li a .icon img {
  height: 100%;            /* 枠の中で余白を残す */
  width: auto;
}

#sec5 .link li a .text {
  flex: 1;
  padding-left: 5%;
  font-size: var(--font-size-20);
  color: #175082;
  display: flex;
  align-items: center;  
  line-height: 1.4em;
}
#sec5 .link .text { line-height: 1; }
#sec5 .link a:hover::before { background: #285f90; }
#sec5 .link a:active { transform: translateY(1px); }
#sec5 .link li a:hover {
  background: #C8DDED;
}
#sec5 .link li a:hover::before {
  background: #285f90;
}
#sec5 p.chatch{
font-size: var(--font-size-32);
font-weight: 600;
text-align: center;
}
#sec5 p.chatch span {
margin-bottom: 2rem;
display: flex;
align-items: center;
font-size: var(--font-size-32);
width: 50%;
margin: 1rem auto 2rem;
}
#sec5 p.chatch span::before,
#sec5 p.chatch span::after {
content: "";
height:1px;
flex-grow: 1;
background-color:#666;
}
#sec5 p.chatch span:before {
margin-right: 10px;
}
#sec5 p.chatch span:after {
margin-left: 10px;
}
#sec5 .prov {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
margin-bottom: 4rem;
}
#sec5 .prov li {
width: 30%;
}

#sec6 {
padding: 6rem 0 6rem;
background: #9cc4e2;
}
#sec6 ul {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
margin-bottom: 4rem;
}
#sec6 ul li {
width: 30%;
display: flex;
flex-direction: column;
}
#sec6 ul li dt:before {
content: "\f0da";
  font-family: "Font Awesome 5 Free";
  font-weight: 900; 
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: 2px;
}
#sec6 ul li dt {
font-size: var(--font-size-20);
font-weight: 600;
margin-bottom: 1rem;
}
#sec6 ul li dd.image {
margin-bottom: 1rem
}
#sec4 ul li dd.image img {
border-radius: 20px;
}
#sec4 ul li dd.text {
text-align: left;
font-size: var(--font-size-16);
}

#sec7 {
padding: 6rem 0 6rem;
}
#sec7 ul {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
margin-bottom: 4rem;
}
#sec7 ul li {
width: 45%;
display: flex;
flex-direction: column;
}
#sec7 ul li span {
display: block;
margin-top: 1rem;
}

#sec8{
padding: 6rem 0 6rem;
background: #9cc4e2;
}
#sec8 ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  gap: 1rem;
}
#sec8 .inner {
width: 90%!important;
}
#sec8 ul li {
  flex: 1 1 calc((100% - 2rem) / 3);
  display: flex;
  flex-direction: column;
  min-width: 326px; /* Instagram embed が要求する最小幅 */
  margin-bottom: 2rem;
}

/* 768px〜1024pxは2列 */
@media (max-width: 1024px) and (min-width: 769px) {
  #sec8 ul li {
    flex: 1 1 calc((100% - 1rem) / 2);
  }
}

/* 768px以下は2列 */
@media (max-width: 768px) {
  #sec8 ul li {
    flex: 1 1 calc((100% - 1rem) / 2);
  }
}

/* 480px以下は1列 */
@media (max-width: 480px) {
  #sec8 ul li {
    flex: 1 1 100%;
  }
}
#sec8 p {
text-align: center;
margin-bottom: 2rem;
}

@media screen and (min-width:769px)and (max-width:1024px){
#sec1 dd.temp span {
display: inline-block;
font-size: 54px;
}
#sec5 .link {
width: 100%;
}

}


@media screen and (min-width:521px) and (max-width:768px) {
#sec1 dd.temp span {
display: inline-block;
font-size: 40px;
}
#sec5 .link {
width: 100%;
  gap: 2rem;
}
#sec5 .link li {
    flex: 1 1 40%;
    display: flex;
}
}

@media screen and (max-width:520px) {

#mv_snow {
    width: 100%;
    height: 50vh;
    position: relative;
    top: 14.5vw;
    overflow: hidden;
    z-index: 1;
}
#mv_snow h1 {
text-align: center;
font-size: 30px;
line-height: 1.8em;
top: 50%;
}
#mv_snow video {
    width: auto;
    height: 50vh;
}
#mv_snow .banner {
width: 60%;
}
#contents {
margin-top: 14.5vw;
}
#contents .inner {
width: 90%;
margin: 0 auto;
}
#sec1 dl {
width: 100%;
margin-bottom: 1rem;
}
#sec1 dd.temp {
text-align: center;
}
#sec1 ul {
width: 100%;
border-left: none;
}
#sec2 {
margin-top: 0;
padding-top: 2rem;
}
#sec2 .map {
margin-bottom: 2rem;
}
#sec3 {
padding: 2rem 0;
}
#sec3 ul li {
width: 100%;
margin-bottom: 2rem;
}
#sec4 {
padding: 2rem 0;
}
#sec4 ul li {
width: 46%;
margin: 0 auto 2rem;
}
#sec5 {
padding: 2rem 0;
}
#sec5 ul.event li {
width: 100%;
margin-bottom: 2rem;
}
#sec5 .link {
margin: 2rem 0;
}
#sec5 .link li {
width: 100%;
margin-bottom: 2rem;
}
#sec5 .link li a {
width: 100%;
min-width: 100%;
}
#sec5 .link li a {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    height: 80px;
    min-width: 350px;
    padding-left: 120px;
    padding-right: 24px;
    background: #e7eef4;
    color: #175082;
    font-weight: 600;
    font-size: var(--font-size-20);
    text-decoration: none;
    border: 1px solid #0f3d63;
    position: relative;
    border-radius: 6px;
    box-shadow: 0 1px 0 rgba(0,0,0,.25);
    overflow: hidden;
    transition: 0.3s;
}
#sec5 .link .btn1 img {
width: 50%;
}
#sec5 .link .btn1 {
top: 30%;
}
#sec5 .link .btn2 img {
width: 70%;
}
#sec5 .link .btn2 {
top: 30%;
left: 0;
}
#sec5 .link .btn1 {
  position: absolute;
  left: -6%; top:18%;
  width: 35%;
  height: auto;
  display: grid;
  place-items: center;
}
#sec5 .link .btn2 img {
width: 60%;
}
#sec5 .link .btn2 {
  position: absolute;
top: 30%;
left: 3%;
  height: auto;
  display: grid;
  place-items: center;
}
#sec6 {
padding: 2rem 0;
}
#sec6 ul li {
width: 100%;
margin-bottom: 2rem;
}
#contents a.more {
padding: 1rem 4rem;
}
#sec7 {
padding: 2rem 0;
}
#sec7 ul li {
width: 100%;
margin-bottom: 2rem;
}

#sec8 ul li {
width: 100%;
margin-bottom: 2rem;
}




}






