<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
.story_block {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: flex-start;
  position: relative;
}
.story_block:nth-child(odd) {
  justify-content: right;
}
.story_block:nth-child(odd) .story_gallery {
  left: 0;
  border-radius: 0 20px 20px 0;
  padding: 70px 60px 70px 0;
}
.story_block:nth-child(odd) .story_textarea {
  padding: 70px 20px;
  padding-right: calc((100% - 1100px) / 2);
  border-radius: 20px 0 0 20px;
  justify-content: right;
}
.story_block:nth-child(even) {
  justify-content: left;
}
.story_block:nth-child(even) .story_gallery {
  right: 0;
  border-radius: 20px 0 0 20px;
  padding: 70px 0 70px 60px;
}
.story_block:nth-child(even) .story_textarea {
  padding: 70px 20px;
  padding-left: calc((100% - 1100px) / 2);
  border-radius: 0 20px 20px 0;
  justify-content: left;
}

.story_gallery {
  position: absolute;
  top: 70px;
  width: calc(100% - (100% - 1100px) / 2 - 460px);
  background-image: url(../images/story_bg.jpg.webp);
  background-size: cover;
  background-position: center;
  /*Masonry部分*/
}
.story_gallery .grid {
  display: flex;
  width: 100%;
}
.story_gallery .grid-item {
  width: calc((100% - 32px) / 3);
  margin-bottom: 16px;
  color: white;
}

.story_textarea {
  width: calc(100% - (100% - 1100px) / 2);
  background: linear-gradient(to bottom, #F8F4EA 0%, #E3D1A5 100%);
  display: flex;
  align-items: flex-start;
}

.story_textarea_inner {
  width: 420px;
}

.story_text_title {
  width: fit-content;
  font-size: 60px;
  font-family: "DINBEK", sans-serif;
  color: #57672B;
  line-height: 1.2;
  margin-left: auto;
  margin-right: auto;
}
.story_text_title .year {
  font-size: 50px;
  font-family: "Noto Sans JP", sans-serif;
}

.story_text_subtitle {
  width: fit-content;
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  color: #57672B;
  line-height: 1.2;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.story_circle {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: #6F9851;
  margin-left: auto;
  margin-right: auto;
}

.story_content {
  width: 100%;
  padding: 70px 0;
}

@media (max-width: 1240px){
  .story_textarea {
    width: calc(100% - 40px);
  }
}

@media (max-width: 1160px){
  .story_block:nth-child(odd) .story_gallery {
    padding: 40px 40px 40px 0;
  }
  .story_block:nth-child(odd) .story_textarea {
    padding-right: 20px;
  }
  .story_block:nth-child(even) .story_gallery {
    padding: 40px 0 40px 40px;
  }
  .story_block:nth-child(even) .story_textarea {
    padding-left: 20px;
  }
  .story_gallery {
    width: calc(100% - 480px);
  }
}

@media (max-width: 960px){
  .story_gallery .grid-item {
    width: calc((100% - 16px) / 2);
  }
}

@media (max-width: 767px){
  .story_block:nth-child(odd) .story_gallery {
    padding: 40px 20px 40px 0;
  }
  .story_block:nth-child(odd) .story_textarea {
    padding: 30px 20px 180px 20px;
  }
  .story_block:nth-child(even) .story_gallery {
    padding: 40px 0 40px 20px;
  }
  .story_block:nth-child(even) .story_textarea {
    padding: 30px 20px 180px 20px;
  }
  .story_gallery {
    width: calc(100% - 20px);
    top: calc(100% - 180px);
  }
  .story_textarea {
    width: calc(100% - 20px);
  }
  .story_textarea_inner {
    width: 100%;
  }
  .story_text_title {
    font-size: 36px;
  }
  .story_text_title .year {
    font-size: 22px;
  }
  .story_text_subtitle {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .story_circle {
    width: 16px;
    height: 16px;
    border-radius: 8px;
  }
  .story_content {
    padding: 25px 0;
  }
}</pre></body></html>