@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: clamp(16px, 2.5vw, 32px) 0;
  margin-bottom: 2rem;
}

/* 全体：左ブロック + 右ブロック */
#sec1 .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2.5vw, 28px);
  flex-wrap: wrap; /* 狭い時は縦積み */
}

/* 左：日付 + 気温 + 天気 */
#sec1 dl {
  flex: 0 1 320px;          /* 可変 */
  min-width: 260px;
  display: grid;
  grid-template-columns: 1fr 1fr; /* 気温 / 天気 */
  grid-template-rows: auto auto;
  align-items: center;
  margin: 0;
}

#sec1 dt.date {
  grid-column: 1 / -1;
  text-align: center;
  font-size: clamp(14px, 1.6vw, 24px);
  line-height: 1.2;
  margin: 0 0 clamp(8px, 1.2vw, 14px);
}

#sec1 dd.temp {
  margin: 0;
  text-align: left;
  line-height: 1;
  font-size: clamp(24px, 3vw, 42px); /* 「°C」側 */
  white-space: nowrap;
}

#sec1 dd.temp span {
  font-size: clamp(56px, 7vw, 100px); /* 2 の巨大文字 */
  letter-spacing: -0.02em;
}

#sec1 dd.weather {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: clamp(4px, 0.8vw, 10px);
}

#sec1 dd.weather img {
  width: clamp(44px, 4.5vw, 70px);
  height: auto;
  display: block;
}

#sec1 dd.weather span {
  font-size: clamp(12px, 1.2vw, 18px);
  line-height: 1.2;
  white-space: nowrap;
}

/* 右：4列×2段 */
#sec1 ul {
  flex: 1 1 520px;
  min-width: 320px;
  margin: 0;
  padding: 0 0 0 clamp(14px, 2vw, 22px);
  list-style: none;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.8vw, 18px) clamp(8px, 1.5vw, 16px);

  border-left: 1px solid #ccc;
  align-items: start;
}

#sec1 ul li {
  text-align: center;
  margin: 0;
  line-height: 1.2;
}

#sec1 ul li span {
  display: block;
  font-size: clamp(12px, 1.2vw, 18px);
  margin-bottom: clamp(6px, 0.9vw, 10px);
  white-space: nowrap;      /* 画像のように1行固定 */
  overflow: hidden;
  text-overflow: ellipsis;  /* 万一長い時に崩れない */
}

/* ○×の見た目（HTMLの文字実体をそのまま大きく） */
#sec1 ul li {
  font-size: clamp(18px, 2.2vw, 32px);
}

/* 狭い画面：右側を2列にして崩れにくく */
@media (max-width: 768px) {
#sec1 .inner{
    justify-content: center;
  }
  #sec1 dl, #sec1 ul{
    margin-inline: auto;
  }
  #sec1 ul {
    width: 100%;
    max-width: 720px; /* 好みでOK（不要なら消してOK） */
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #ccc;
    padding-top: clamp(14px, 2vw, 18px);
  }

  #sec1 dt.date {
    text-align: center;
  }

  #sec1 dd.temp {
    text-align: center;
    justify-self: center; 
  }

  #sec1 dl {
    justify-items: center;
  }

  #sec1 ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #ccc;
    padding-top: clamp(14px, 2vw, 18px);
  }
}

/*
#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 .date span {
display: inline-block;
color: #fff;
padding: 0 2rem;
background: #2d77ba;
margin-right: 1rem;
}
#sec3 ul li dt {
margin-bottom: 1rem;
}
#sec3 ul li dt a:hover {
opacity: 0.7;
}
#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);
}
#sec4 .link {
text-align: center;
margin: 2rem auto 0;
}
#sec4 .link a {
    color: #fff;
    position: relative;
    font-weight: 600;
    letter-spacing: .1em;
    text-align: center;
    padding: 1rem 6rem;
    border-radius: 16px;
    margin: 0 auto;
    display: inline-block;
    transition: 0.3s;
    background-color: #2d77ba;
    font-size: var(--font-size-18);
}
#sec4 .link a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: 900;
    position: absolute;
    right: 20px;
    transition: all 0.2s;
}
#sec4 .link a:hover:after {
  right: 15px;
}
#sec4 .link a:hover {
background-color: #0c6aaf;
}
#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 ul.event:after {
    content: "";
    display: block;
    width: 22%; 
    height: 0;
}
#sec5 ul.event:before {
    content: "";
    display: block;
    width: 22%;  
    height: 0;
    order: 1; 
}

#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;
}




}






