/* 共通パーツ */
.h2 {
  position: relative;
  font-size: 3.4rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  color: #0073b5;
  width: fit-content;
  margin: 0 auto;
}
.h2:after {
  background: radial-gradient(
    circle farthest-side,
    #e56c00,
    #e56c00 30%,
    transparent 20%,
    transparent
  );
  background-size: 26px 13px;
  content: "";
  display: block;
  height: 13px;
  background-position: center;
  width: 100%;
}
.h2::before {
  display: block;
  content: url(../images/about_ico.svg);
  width: 80px;
  object-fit: contain;
  margin: 0 auto -20px;
}

@media screen and (max-width: 767px) {
  .h2 {
    font-size: 8vw;
    line-height: 1.4;
    font-weight: bold;
    letter-spacing: 0;
    color: #0073b5;
    margin: 0 auto;
    text-align: center;
  }
  .h2::before {
    margin: 0 auto;
  }
  .h2:after {
    background: radial-gradient(
      circle farthest-side,
      #e56c00,
      #e56c00 35%,
      transparent 20%,
      transparent
    );
    background-size: 18px 13px;
    content: "";
    display: block;
    height: 13px;
    background-position: center;
    width: 100%;
    margin-top: 15px;
  }
}

.more_btn {
  margin: 0 auto;
  text-align: center;
  background: #e56c00;
  width: 300px;
  padding: 5px 20px;
  font-weight: bold;
  border-radius: 50px;
}
.more_btn a {
  text-decoration: none;
  color: #fff;
}

.season_comments {
  max-width: 374px;
  margin: 0 auto;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
  color: #1d2084;
}
.season_comments.main {
  font-size: 40px;
}
.season_contents .img {
  max-width: 500px;
  margin: 0 auto;
}
.season_contents .txt {
  text-align: center;
}

.season_contents .theme_txt {
  margin-top: 3em;
}
.season_contents .theme_txt .kikan {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  font-weight: bold;
  max-width: initial;
  line-height: 1.6;
  gap: 0.5em;
  font-feature-settings: "palt";
}
.season_contents .theme_txt .kikan span {
  background-color: #28b55e;
  border-radius: 30px;
  font-size: 18px;
  padding: 0 17px;
}
.season_contents .theme_txt .theme_box {
  margin-top: 20px;
}

.season_contents .theme_txt .theme_box span {
  display: inline-block;
}

.season_contents .theme_txt .theme_box .theme_box_title {
  position: relative;
  background-color: #28b55e;
  border-radius: 10px;
  width: fit-content;
  margin: 0 auto;
  padding: 0 2em;
  font-size: 18px;
}
.season_contents .theme_txt .theme_box .theme_box_title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #28b55e;
}
.season_contents .theme_txt .theme_box .theme_box_txt {
  font-size: 26px;
  max-width: 700px;
  margin: -10px auto 0;
  background: #fff;
  border-radius: 10px;
  padding: 30px 30px 15px;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.season_contents .theme_txt .theme_box .theme_box_txt span {
  color: #28b55e;
  font-size: 18px;
}
.season_contents .theme_txt .theme_box .theme_tag p {
  font-size: 18px;
  margin-top: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1.6;
}
.season_contents .theme_txt .theme_box .theme_tag p span {
  background-color: #ff9100;
  padding: 0 10px;
}

@media screen and (max-width: 767px) {
  .season_contents .img {
    max-width: 38vw;
  }
  .season_contents .img img:first-child {
    max-width: 27vw;
    margin: 0 auto;
  }
  .season_contents .theme_txt .kikan {
    flex-direction: column;
    font-size: 20px;
  }
  .season_contents .theme_txt .theme_box .theme_box_title {
    padding: 1em;
    font-size: 16px;
    width: 100%;
    line-height: 1.6;
  }
  .season_contents .theme_txt .theme_box .theme_box_title span {
    display: none;
  }
  .season_contents .theme_txt .theme_box .theme_box_txt {
    margin: 10px auto 0;
    padding: 20px 0px 15px;
    font-size: 20px;
    flex-direction: column;
    line-height: 1.5;
  }
  .season_contents .theme_txt .theme_box .theme_tag p {
    display: block;
  }
  .season_contents .theme_txt .theme_box .theme_tag p span {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }
}

/* mv--------------- */

.mv {
  position: relative;
  overflow: hidden;
  /* height: 100vh; */
  background: url(../images/bg_img.jpg);
  background-repeat: repeat-y;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  padding-top: 100px;
}
/* .mv .mvbg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    background: url(../images/mv_bg_img.png) no-repeat;
    background-size: cover;
    width: 100%;
    height: calc(100% - 10vw);
    z-index: -1;
} */

.mv .mv_txt {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 28px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
}

.mv .mvbg {
  width: 100%;
  z-index: 2;
}
.mv .mvbg img {
  width: 100%;
  max-width: none;
}
.mv .h1 {
  position: absolute;
  margin: 150px;
  z-index: 3;
}

.mv h1 {
  width: 100%;
  margin: 0 auto;
}
.mv h1 img {
  width: 100%;
  max-width: 46vw;
  /* max-height: 80vh; */
  object-fit: contain;
}

/*---- theme_link ----*/
.theme_link {
  position: absolute;
  bottom: 0;
  z-index: 10;
}
.theme_link .theme_link_ul {
  justify-content: space-around;
  align-items: flex-end;
}
.theme_link li {
  width: 30%;
}
.theme_link li a {
  display: block;
  width: 100%;
  height: 100%;
}
.theme_link li a:hover {
  opacity: 0.7;
  transition: all 0.5s;
}
.theme_link li img:first-child {
  width: 30%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
}

@media screen and (min-width: 768px) {
}
@media screen and (max-width: 767px) {
  .mv {
    padding: 60px 0 0px;
  }
  .mv .mv_txt {
    font-size: 18px;
  }
  .mv .h1 {
    position: absolute;
    margin: 0;
  }

  .mv h1 {
    width: 90vw;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
  .theme_link li {
    width: 32%;
  }
  .theme_link li img:first-child {
    width: 37%;
  }

  .mv h1 img {
    width: 100%;
    max-height: none;
    max-width: 85vw;
  }
}
@media screen {
  .mv h1 {
    opacity: 0;
    transform: translateY(20px);
  }
  .mv .mvbg {
    opacity: 0;
    transform: scale(1.1);
  }
  .main_start .mv h1 {
    transition: opacity 0.3s, transform 0.4s ease-out;
    opacity: 1;
    transform: translateY(0);
  }
  .main_start .mv .mvbg {
    transition: opacity 0.5s 0.2s linear, transform 0.8s 0.2s ease-in-out;
    opacity: 1;
    transform: scale(1);
  }
}

/* theme-------------------- */

.theme {
  position: relative;
  background: url(../images/theme-bg.png) no-repeat;
  background-size: cover;
  background-position: bottom;
}

.theme-logo {
  max-width: 540px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.theme-logo img {
  margin-top: 5px;
}

.theme .txt,
.season_contents .theme_txt {
  text-align: center;
  color: #fff;
  line-height: 2.5;
  font-weight: bold;
  font-size: 1.8rem;
}

.theme-fukidashi {
  max-width: 170px;
  margin: 0 auto;
}

.theme-sub-ttl {
  text-align: center;
  color: #1d2084;

  font-size: 26px;
}
.theme-ttl {
  text-align: center;
  color: #1d2084;
  font-size: 46px;
}

.theme-main {
  padding-top: 250px;
  padding-bottom: 50px;
}

.period-time {
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.period-time-tag {
  max-width: 440px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.conditions {
  max-width: 780px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.conditions-txt {
  width: 50%;
  max-width: 370px;
}

@media screen and (min-width: 1800px) {
  .theme-main {
    padding-top: 20vw;
  }
}

@media screen and (max-width: 767px) {
  .theme {
    background: url(../images/theme-bg_sp.png) no-repeat;
    background-position: top;
    background-size: cover;
  }
  .theme .theme_result {
    top: -168px;
  }
  .theme .theme_h {
    border-radius: 25px;
    position: absolute;
    top: -120px;
    width: 85%;
  }
  .theme .theme_h:after {
    bottom: -20px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #e56c00;
  }
  .theme .theme_h h2 {
    font-size: 2rem;
    background: none;
  }
  .theme .theme_h h3 {
    position: relative;
    font-size: 7vw;
    line-height: 1.4;
    letter-spacing: 0.2em;
    width: fit-content;
    margin: 0 auto;
  }

  .theme .theme_h h3:after {
    background-size: 19px 13px;
    height: 16px;
    margin-top: 10px;
  }
  .theme .txt {
    text-align: center;
    color: #fff;
    padding-top: 0px;
    line-height: 2.8;
    font-weight: bold;
    font-size: 4vw;
  }

  .theme-main {
    padding-top: 350px;
    padding-bottom: 10px;
  }
  .hourse {
    width: 200px;
    margin: 0 auto;
  }

  .theme-logo {
    width: 90%;
    margin-bottom: 30px;
  }
  .theme-logo img {
    margin-top: 0;
  }
  .theme-sub-ttl {
    font-size: 18px;
  }
  .theme-ttl {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .period-time {
    width: 70%;
    margin-bottom: 10px;
  }
  .period-time-tag {
    width: 90%;
  }
  .conditions {
    flex-direction: column;
  }
  .conditions-txt {
    width: 80%;
    margin-bottom: 15px;
  }
}

/* about----------------------------- */
.about {
  background: #eedcc1;
  position: relative;
  padding: 88px 0;
}
.about .about_contents {
  position: relative;
  background: #fff;
  border-radius: 30px;
  padding: 40px 90px 50px;
}
.about .about_contents .about_box {
  margin-top: 50px;
  align-items: center;
  justify-content: space-between;
}
.about .about_contents .about_box .img {
  width: 50%;
}
.about .about_contents .about_box .txt {
  width: 48%;
}
.about .about_contents .about_area {
  justify-content: space-between;
  margin-top: 50px;
  text-align: center;
  padding-bottom: 60px;
  border-bottom: solid 1px;
}
.about .about_contents .about_area img {
  border-radius: 50%;
}
.about .about_contents .about_area .txt {
  margin-top: 1em;
  color: #0073b5;
  font-size: 2rem;
  font-weight: bold;
}
.about .about_contents .about_access {
  margin-top: 50px;
}
.about .about_contents .about_access .img {
  text-align: center;
}
.about .about_contents .about_access .txt {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .about {
    padding: 50px 0;
  }
  .about .about_contents {
    border-radius: 25px;
    padding: 40px 90px;
    width: 90%;
    margin: 0 auto;
  }
  .about .about_contents .about_box {
    margin-top: 20px;
  }
  .about .about_contents .about_box .img,
  .about .about_contents .about_box .txt {
    width: 100%;
  }
  .about .about_contents .about_box .txt {
    margin-top: 20px;
  }
  .about .about_contents .about_area {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2% 1%;
  }
  .about .about_contents .about_area li {
    width: 48%;
    margin-bottom: 15px;
  }
  .about .about_contents .about_area .txt {
    font-size: 1.4rem;
  }
}

/* gallery------------------- */
.gallery {
  padding: 100px;
  background-color: #ff6c00;
}

.gallery .gallery_h {
  color: #fff;
}
.gallery .gallery_h::before {
  content: url(../images/gallery_ico.svg);
  width: 55px;
}
.gallery .h2::after {
  display: none;
}
.gallery .gallery_h {
  text-align: center;
}
.gallery .gallery_h p {
  font-size: 18px;
}

.gallery .gallery_box {
  margin: 50px auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 3% 2%;
  flex-wrap: wrap;
}
.gallery .gallery_box li {
  position: relative;
  width: 32%;
  margin-bottom: 3%;
}
.gallery .gallery_box a {
  display: block;
  position: relative;
  overflow: hidden;
}
.gallery .gallery_box .img {
  max-width: 360px;
  height: 22vw;
  max-height: 360px;
  transition: transform 0.3s ease-in-out;
}
.gallery .gallery_box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery .gallery_box a:hover .img {
  transform: scale(1.1);
}
.gallery .gallery_box .txt {
  font-weight: bold;
  background: rgba(255, 255, 255, 0.8);
  padding: clamp(10px, 2vw, 30px);
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: 100%;
  bottom: 0;
  gap: 1%;
}
.gallery .gallery_box .txt h3 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
}
.gallery .gallery_box .txt h4 {
  font-size: 1.4rem;
  font-weight: 500;
  color: #0073b5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
}

@media screen and (max-width: 767px) {
  .gallery {
    padding: 100px 5vw 50px;
  }
  .gallery .gallery_h p {
    font-size: 17px;
    line-height: 1.6;
  }
  .gallery .gallery_box {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery .gallery_box h3 {
    font-size: 4vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
  }
  .gallery .gallery_box li {
    position: relative;
    width: 39vmin;
    height: 39vmin;
  }
  .gallery .gallery_box .img {
    width: 39vmin;
    height: 39vmin;
  }
  .gallery .gallery_box .txt {
    padding: 15px;
    line-height: 1.6;
  }
  .gallery .gallery_box .txt h4 {
    font-size: 1.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
  }
  .gallery .more_btn {
    margin: 0 auto 0;
    text-align: center;
    background: #e56c00;
    width: 80%;
    padding: 5px 20px;
    font-weight: bold;
    border-radius: 50px;
  }
}

/* period--------------- */
.period {
  padding: 100px;
  background: url(../images/period_bg.jpg) no-repeat;
  background-position: top;
  background-size: cover;
}
.period dl:first-child {
  margin-bottom: 50px;
}
.period .period_contents dt {
  padding: 10px;
  font-size: 3.4rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
.period .period_contents dd {
  padding: 20px;
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
}
.period .period_contents .period_flow ul {
  margin-top: 50px;
}

.period .period_contents .period_flow ul li {
  position: relative;
  max-width: 650px;
  margin: 0 auto 60px;
  font-size: 20px;
  padding: 10px;
  border-radius: 50px;
  color: #000;
  background: #fff;
  text-align: center;
}
.period .period_contents .period_flow ul li::after {
  content: "";
  position: absolute;
  bottom: -46px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 25px solid #ff7800;
}

.period .period_contents .period_flow ul li:last-child {
  background: #ff7800;
  color: #fff;
}

/* present-- */
.period .present {
  background: #fff;
  padding: 35px 45px 50px;
  border-bottom: 20px solid;
  border-top: 20px solid;
  border-image: linear-gradient(to right, #ffa600, #ff6c00) 1;
}

.period .sarani {
  max-width: 170px;
  margin: 0 auto;
}

.present_sub-ttl {
  text-align: center;
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.75;
}
.present_caution {
  max-width: 550px;
  font-size: 14px;
  margin: 0 auto;
}
.period .present .present_h {
  width: 440px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.present_h_txt {
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 1.75;
}
.period .present .present_h h2 {
  font-size: 3.4rem;
  font-weight: bold;
  line-height: 1.4;
  color: #0049b5;
}

.period .present .present_h p {
  font-size: 1.8rem;
  font-weight: bold;
}
.period .present .present_box {
  margin-top: 40px;
  grid-template-columns: 1fr 1fr;
  gap: 2%;
  max-width: 800px;
  margin: 0 auto;
}

.period .present .caution {
  max-width: 550px;
  font-size: 14px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .period {
    padding: 100px;
    background: url(../images/period_bg_sp.jpg) no-repeat;
    background-position: top;
    background-size: cover;
  }
  .period .present .caution {
    line-height: 1.5;
    margin-left: 7px;
  }

  .period .present .present_h {
    width: 100%;
  }

  .present_h {
    width: 80%;
  }

  .period .sarani {
    margin-top: 20px;
  }

  .present_h_txt {
    font-size: 16px;
  }
}

.period .present .present_box .img {
  max-width: 570px;
  margin: 0 auto;
}

.period .present .present_box .txt .txt_box {
  background: #fff;
  color: #000;
  padding: 10px 20px 20px;
  border-radius: 10px;
  margin: 20px auto;
  line-height: 1.6;
  max-width: 800px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.period .present .present_box .txt .txt_box:first-child {
  margin-top: 50px;
}
.period .present .present_box .txt .txt_box h3 {
  font-size: 2.8rem;
  font-weight: bold;
  color: #e56c00;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.period .present .present_box .txt .txt_box h3 span {
  vertical-align: middle;
  color: #fff;
  margin-left: 1em;
  background: #86bb1f;
  padding: 0 15px;
  border-radius: 20px;
  font-size: 1.6rem;
}
.period .present .present_box .txt .txt_box .txt_box_limited {
  background-color: #e56c00;
  color: #fff;
  border-radius: 30px;
  font-size: 16px;
  padding: 0 10px;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 767px) {
  .period {
    padding: 50px 5vw;
  }
  .period .period_contents .period_flow ul {
    margin-top: 0;
  }
  .period .period_contents .period_flow ul li {
    width: 100%;
    font-size: 16px;
    line-height: 1.4;
    padding: 20px 10px;
    border-radius: 10px;
  }
  .period .period_contents .period_flow ul li::after {
    bottom: -41px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #e56c00;
  }
  .period dl:first-child {
    margin-bottom: 20px;
  }
  .period .period_contents dt {
    font-size: 2.4rem;
  }
  .period .period_contents dd {
    font-size: 2rem;
    padding: 0;
  }
  .period .present .present_h h2 {
    font-size: 2.6rem;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  .period .present .present_box {
    margin-top: 20px;
  }
  .period .present .present_box .txt .txt_box:first-child {
    margin-top: 20px;
  }
  .period .present .present_box .txt .txt_box {
    display: block;
  }
  .period .present .present_box .txt .txt_box h3 {
    flex-direction: column;
    text-align: center;
    row-gap: 10px;
    line-height: 1.3;
    margin-bottom: 10px;
    font-size: 21px;
  }
  .period .present .present_box .txt .txt_box h3 span {
    padding: 4px 1em;
    margin: 0;
    letter-spacing: 0.2em;
    background-color: #e56c00;
  }
  .period .present .present_box .txt .txt_box p {
    font-size: 3.5vw;
    text-align: center;
  }
}

/* gaiyo------------------------ */
#gaiyo {
  background-color: #17276d;
  padding: 50px;
  color: #fff;
}
#gaiyo .gaiyo_contents {
  max-width: 790px;
  margin: 0 auto 50px;
}
#gaiyo .gaiyo_contents h2 {
  border-top: solid 1px #fff;
  font-size: 24px;
  text-align: center;
  padding: 20px 0;
}
#gaiyo .gaiyo_contents h3 {
  margin-top: 1em;
}
#gaiyo .gaiyo_contents .scroll_box {
  background-color: #fff;
  color: #000;
  margin: 0 auto;
  max-width: 750px;
  height: 400px;
  padding: 30px;
  overflow: scroll;
  overflow-x: hidden;
}
#spring {
  background: url(../images/spring_bg.jpg) no-repeat;
  background-size: cover;
  padding: 50px 0 100px;
}

@media screen and (max-width: 767px) {
  #spring {
    padding: 50px 0;
    padding-bottom: 0;
  }
}
#spring .season_contents .theme_txt .kikan span,
#spring .season_contents .theme_txt .theme_box .theme_box_title {
  background-color: #dc3178;
}
#spring .season_contents .theme_txt .theme_box .theme_box_txt span {
  color: #dc3178;
}
#spring .season_contents .theme_txt .theme_box .theme_box_title::after {
  border-top: 20px solid #dc3178;
}

.award_txt {
  margin: 0 auto 25px;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  color: #fff;
}
/* .award {
  padding: 50px 0 0px;
} */
@media screen and (max-width: 767px) {
  .award {
    padding-top: 0;
  }
}
.award_contents {
  text-align: center;
}
.award_contents img {
  max-width: 135px;
  width: 25vw;
  margin: 0 auto;
  margin-bottom: 20px;
}

.contents-area {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .contents-area {
    width: 100%;
    margin: 0 auto;
  }
}

.list-item {
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .list-item {
    margin-bottom: 30px;
  }
}

.list-item:last-child {
  margin-bottom: 0;
}

.list-item__photo-area {
  position: relative;
  z-index: 100;
}

.list-item_ttl {
  text-align: center;
}

.list-item_ttl.back {
  background: url(../images/cloud.png) no-repeat;
  background-size: cover;
  background-position: top;
  padding: 180px 0;
}

@media screen and (max-width: 767px) {
  .list-item_ttl.back {
    background: url(../images/cloud_sp.png) no-repeat;
    background-size: cover;
    background-position: bottom;
    padding: 60px 0 20px;
  }
}

.list-item_ttl img {
  max-width: 530px;
  margin: 0 auto;
  width: 90%;
}

.list-item__txt {
  font-size: 22px;
  font-weight: bold;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 20px;
  text-align: center;
}

#spring-award .list-item__txt {
  color: #db3178;
}

#summer-award .list-item__txt {
  color: #28b55e;
}

#autumn-award .list-item__txt {
  color: #ff9100;
}

@media screen and (max-width: 767px) {
  .list-item__txt {
    font-size: 17px;
    line-height: 1.5;
  }
}

.list-item__photo-area .list-item__txt-area {
  background-color: #fff;
  padding: 30px 50px;
}

@media screen and (max-width: 767px) {
  .list-item__photo-area .list-item__txt-area {
    padding: 20px;
  }
}

.ttl-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  font-weight: bold;
}

#spring-award .ttl-area {
  border-bottom: 1px solid #db3178;
}

#summer-award .ttl-area {
  border-bottom: 1px solid #28b55e;
}

#autumn-award .ttl-area {
  border-bottom: 1px solid #ff9100;
}

#anniversary .ttl-area {
  border-bottom: 1px solid #1d2084;
}

@media screen and (max-width: 767px) {
  .ttl-area {
    flex-direction: column;
    align-items: flex-start;
  }
}

.photo-ttl {
  font-size: 18px;
}
.name {
  font-size: 20px;
}

#spring-award .name {
  color: #db3178;
}

#summer-award .name {
  color: #28b55e;
}

#autumn-award .name {
  color: #ff9100;
}

#anniversary .name {
  color: #1d2084;
}

.comment {
  padding-top: 15px;
}

.link-area {
  padding-top: 15px;
  text-align: right;
}

.link-area a {
  text-decoration: none;
  color: #1d2084;
}

.link-area:hover {
  opacity: 0.8;
  transition: all 0.5s;
}

.select-reason {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .select-reason {
    padding: 0 20px;
  }
}

.is-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .is-sp {
    display: block;
  }
}

.is-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

.select-reason_ttl {
  font-size: 20px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .select-reason_ttl {
    font-size: 18px;
  }
}

#summer {
  background: url(../images/summer_bg.jpg) no-repeat;
  background-size: cover;
  padding: 50px;
}

@media screen and (max-width: 767px) {
  #summer {
    padding: 50px 0px;
    padding-bottom: 0;
  }
}
#summer .season_contents .theme_txt .kikan span,
#summer .season_contents .theme_txt .theme_box .theme_box_title {
  background-color: #28b55e;
}
#summer .season_contents .theme_txt .theme_box .theme_box_txt span {
  color: #28b55e;
}
#summer .season_contents .theme_txt .theme_box .theme_box_title::after {
  border-top: 20px solid #28b55e;
}
#autumn {
  background: url(../images/autumn_bg.jpg) no-repeat;
  background-size: cover;
  padding: 50px 0;
}
#autumn .season_contents .theme_txt .kikan span,
#autumn .season_contents .theme_txt .theme_box .theme_box_title {
  background-color: #ff9100;
}
#autumn .season_contents .theme_txt .theme_box .theme_box_txt span {
  color: #ff9100;
}
#autumn .season_contents .theme_txt .theme_box .theme_box_title::after {
  border-top: 20px solid #ff9100;
}

.award-lists {
  background-size: cover;
  background-position: center top;
}

.award-lists.first {
  background: url(../images/background_01.jpg) no-repeat;
  background-size: cover;
  background-position: center top;
}

@media screen and (max-width: 767px) {
  .award-lists.first {
    background: url(../images/background_01_sp.jpg) no-repeat;
    background-size: cover;
  }
}

.anniversary_main-ttl {
  background: url(../images/cloud_top.png) no-repeat;
  background-size: cover;
  background-position: center bottom;
  padding: 100px 0;
}

@media screen and (max-width: 767px) {
  .anniversary_main-ttl {
    background: url(../images/cloud_top_sp.png) no-repeat;
    background-size: cover;
    background-position: center bottom;
    padding: 60px 0;
  }
}

#anniversary .award-lists.cloud {
  margin-top: -80px;
}
@media screen and (max-width: 767px) {
  #anniversary .award-lists.cloud {
    margin-top: 0px;
  }
}

#anniversary .award-lists.sec {
  background: url(../images/background_02.jpg) no-repeat;
  background-size: cover;
  background-position: center bottom;
}

#anniversary .award-lists.third {
  background: url(../images/background_03.jpg) no-repeat;
  background-size: cover;
  background-position: center bottom;
}

#anniversary .award-lists.forth {
  background: url(../images/background_04.jpg) no-repeat;
  background-size: cover;
  background-position: center bottom;
}

#anniversary .award-lists.fifth {
  background: url(../images/background_05.jpg) no-repeat;
  background-size: cover;
  background-position: center bottom;
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  #anniversary .award-lists.fifth {
    padding-bottom: 30px;
  }
}


#anniversary .award-lists.cloud ul {
  margin-top: -150px;
}

@media screen and (max-width: 767px) {
  #anniversary .award-lists.cloud ul {
    margin-top: 0px;
  }
}

@media screen and (max-width: 767px) {
  #gaiyo {
    background: #17276c;
    padding: 5vw;
  }
  #autumn {
    padding-top: 50px;
  }
}

/* footer------------------ */

#footer {
  /* padding: 100px 5vw; */
  padding: 100px 14vw;
}
#footer ul {
  gap: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
#footer ul li {
  /* width: calc(50% - 20px); */
}
#footer ul li a:hover {
  opacity: 0.8;
  transition: all 0.5s;
}

#footer .foot_info {
  margin-top: 50px;
  align-items: center;
  justify-content: center;
}
#footer .foot_info .img,
#footer .foot_info .txt {
  margin: 0 20px;
}
#footer .foot_info .txt h2 {
  color: #fff;
  background: #0073b5;
  padding: 5px 20px;
  border-radius: 40px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  #footer {
    padding: 7vw 0;
  }
  #footer ul {
    gap: 20px;
    display: flex;
    flex-direction: column;
  }
  #footer ul li {
    width: 100%;
    margin-bottom: 10px;
  }
  #footer .foot_info .img {
    margin: 30px;
    text-align: center;
  }
  #footer .foot_info .txt {
    margin: 0;
  }
  #footer .foot_info .txt h2 {
    border-radius: 0;
    text-align: center;
  }
}

/* overlay
============================================================================================================ */
#overlay {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
  opacity: 0;
  z-index: 8999;
}
#overlay.show {
  bottom: 0;
  opacity: 1;
}

#overlay.loading::after {
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border-top: 5px solid rgba(255, 255, 255, 0.5);
  border-right: 5px solid rgba(255, 255, 255, 0.5);
  border-bottom: 5px solid rgba(255, 255, 255, 0.5);
  border-left: 5px solid #fff;
}

/* 202211追加　結果発表用 */
.winning {
  padding: 100px;
  background: linear-gradient(
    202deg,
    rgba(39, 159, 201, 1),
    rgba(0, 58, 181, 1) 100%,
    rgba(0, 115, 181, 1) 50%
  );
  overflow: hidden;
  position: relative;
  z-index: -1;
}

.winning .winning_h {
  color: #fff;
}
.winning .winning_h:before {
  content: url(../images/winning_ico.svg);
  width: 61px;
}
.winning .winning_contents h3 {
  text-align: center;
  margin: 50px auto 0;
  z-index: 10;
}
.winning .winning_contents .winnning_gift_txt {
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 2.2rem;
}
.winning .winning_contents .winning_box {
  margin: 0 auto 80px;
}

.winning .winning_contents .winning_work {
  position: relative;
  margin-top: 50px;
  background: #fff;
  z-index: 10;
}
.winning .winning_contents .winning_work:before {
  content: "";
  position: absolute;
  width: 370px;
  height: 415px;
  background: url(../images/winning_work_bg-01.svg) no-repeat;
  background-size: contain;
  top: -135px;
  left: -300px;
  z-index: -1;
}
.winning .winning_contents .winning_work:after {
  content: "";
  position: absolute;
  width: 370px;
  height: 415px;
  background: url(../images/winning_work_bg-02.svg) no-repeat;
  background-size: contain;
  bottom: -135px;
  right: -300px;
  z-index: -1;
}

.winning .winning_contents .winning_work .txt {
  padding: 20px 40px;
}

.winning .winning_contents .winning_work .txt dl {
  justify-content: space-between;
  padding: 0 0 20px;
  border-bottom: solid 1px #0073b5;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 1.8rem;
}
.winning .winning_contents .winning_work .txt dl dt {
}
.winning .winning_contents .winning_work .txt dl dd {
  color: #0073b5;
}

.winning .winning_contents h4 {
  margin-top: 30px;
  text-align: center;
  font-size: 2rem;
  color: #fff;
}
.winning .winning_contents .reason_txt {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .winning {
    padding: 70px 0;
  }
  .winning:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../images/winning_work_bg-01.svg) no-repeat;
    background-size: contain;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
  }
  .winning .winning_contents .reason_txt {
    padding: 0 20px;
  }
  .winning .winning_contents .winning_work:after {
    display: none;
  }
  .winning .winning_contents .winning_work {
    z-index: -1;
  }
  .winning .winning_contents .winning_work:before {
    width: 100%;
    height: 100%;
    top: -45vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
  }
  .winning .winning_contents .sp_before_none:before {
    display: none;
  }
}
