@charset "utf-8";
.main {
  width: 100%;
  overflow: hidden;
}
/* CSS Document */
/* ヘッダー */
.c-header__list-item:first-child a {
  background-color: #FFE100;
  border-radius: 5px;
  color: #000;
  padding: 10px 30px;
  transition: all 0.3s;
}
.c-header__list-item:first-child a:hover {
  background-color: #fff;
  border-bottom: none;
}
/* ファーストビュー */
.first_view_image {
  background-image: url("../images/top/top_senndai2_sepia.png"), url("../images/top/top_senndai.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  height: 1150px;
  position: relative;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
   /*background-position: center center;*/
  animation: image_anime 2s ease;
  /* forwardsを設定すると100%の状態で止まる */
  animation-fill-mode: forwards;
  /* animationを開始する時間を設定 */
  animation-delay: 1s;
}
@keyframes image_anime {
  100% {
    background-image: url("../images/top/top_senndai.png");
  }
}
/* ズームアニメーション 
.first_view_image::before {
    content: "";
    display: block;
    background-image: url(file:///C:/Users/user/Desktop/%E6%9F%8F%E5%8E%9F_%E4%BD%9C%E6%A5%AD%E4%B8%AD/%E2%98%85HP%E4%BD%9C%E6%A5%AD%E7%94%A8/%E9%BB%92%E6%BE%A4%E9%98%B2%E7%81%BD/kurosawabousai/images/top/top_senndai.png);
    background-size: cover;
    background-repeat: no-repeat;
    animation-timeline: auto;
    animation-range-start: normal;
    animation-range-end: normal;
    position: absolute;
    z-index: 10000;
    background-position: center center;
    animation: 10s ease 0s 1 normal forwards running zoom;
}*/
.section-top {
  height: 890px;
    margin-bottom: 200px;
    width: 100%;
}
.section-top-imge-message {
  padding-top: 120px;
    padding-left: 10%;
	text-align: left;
}
.top_catch_copy {
  margin-bottom: 30px;
  animation-name: fadeIn500ms;
  animation-delay: 2s;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  transform: translateX(50px);
  opacity: 0;
  width: 20%;
  min-width: 230px;
}
@keyframes fadeIn500ms {
  0% {}
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.top_catch_copy img {
  width: 100%;
  height: auto;
}
.section-top-imge-message p {
  font-size: 2rem;
  letter-spacing: 3px;
  line-height: 3.25rem;
  font-weight: 600;
  font-family: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  animation-name: fadeIn500ms;
  animation-delay: 2500ms;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  transform: translateX(50px);
  opacity: 0;
}
@keyframes fadeIn500ms {
  0% {}
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* お知らせ */
.section-news {
  height: 470px;
}
.section-news-wapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.section-news-content ol {
  list-style: none;
}
.section-news-title {
  text-align: left;
  width: 275px;
}
.section-news h3 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  margin-top: 30px;
  font-family: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
.list_btn a {
  text-decoration: none;
  color: #000;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.3rem;
  background-color: #FFE100;
  border-radius: 40px;
  padding: 8px 20px;
  transition: all 0.3s;
  font-family: "A-OTF UD新ゴ Pro", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}
.list_btn a:hover {
  background-color: #FFF7C5;
 
}
.section-news-content {
  height: 340px;
  padding: 0 30px;
}
.news-list {
  list-style: none outside;
  margin: 0;
  padding: 0;
  padding-left: 60px;
  border-left: solid 3px #FFE100;
  font-family: "A-OTF UD新ゴ Pro", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-weight: 400;
}
.news-list .item a {
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #CCC;
  padding: 40px 80px;
}
.news-list .item:last-child a {
  border-bottom: none;
}
.news-list .item .date {
  margin: 0;
  min-width: 120px;
  font-size: 16px;
  color: #000;
  padding: 0 20px 0 0;
}
.news-list .item .title {
  margin: 0;
  width: 100%;
}
.news-list .item a:hover {
  color: #FFE100;
}
@media screen and (max-width: 767px) {
  .news-list .item a {
    flex-wrap: wrap;
  }
  .news-list .item .date {
    min-width: 100px;
  }
  .news-list .item .title {
    margin-top: 10px;
	font-size: 1.3rem;
  }
}
/* 装飾 */
* {
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
/* about */
.section-about {
  height: 880px;
  position: relative;
  /* 
  background-image: url("file:///C:/Users/user/Desktop/%E6%9F%8F%E5%8E%9F_%E4%BD%9C%E6%A5%AD%E4%B8%AD/%E2%98%85HP%E4%BD%9C%E6%A5%AD%E7%94%A8/%E9%BB%92%E6%BE%A4%E9%98%B2%E7%81%BD/kurosawabousai/images/top/top_about_photo.png");
  background-position-x: 100%;
  background-position-y: 0%;
  background-size: initial;
  background-repeat: no-repeat;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  margin-top: 200px;
  position: relative; */
}
.section-about_img {
  position: absolute;
  z-index: 0;
  right: 0;
  width: 50%;
  height: auto;
  max-height: 680px;
}
.fadeIn1 {
  transform: translate3d(0, 50px, 0);
  transition: 1s;
  opacity: 0;
}
.fadeIn1.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.section-about_img img {
  width: 100%;
  height: 100%;
}
.section-about-wapper {
  padding-top: 120px;
  margin: 0 auto;
  max-width: 1100px;
  height: 100%;
  z-index: 1000;
}
.section-about-container {
  text-align: left;
  width: 60%;
  position: relative;
  z-index: 10000;
}
.about_image {
  position: absolute;
  left: 3%;
  max-width: 420px;
  /*animation-name: fadeIn500ms;
  animation-delay: 2500ms;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  transform: translateX(50px);
  opacity: 0;*/
}
/* 
@keyframes fadeIn500ms {
  0% {}
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}*/
.fadeIn2 {
  transform: translate3d(50px, 0, 0);
  opacity: 0;
  transition: 1s .5s;
}
.fadeIn2.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.about_image img {
  width: 100%;
  height: auto;
}
.section-about-subtitle {
  padding-top: 140px;
  padding-left: 30px;
}
.section-about-subtitle h3 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-family: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
.section-about-subtitle p {
  font-size: 1.7rem;
  margin-bottom: 50px;
  line-height: 3rem;
  font-family: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 600;
}
.section-about-detailed_btn {
  height: auto;
}
.section-about-detailed_btn a {
  color: #000;
  border-radius: 40px;
  text-decoration: none;
  background-color: #FFE100;
  padding: 15px 45px;
  font-size: 1.7rem;
  font-weight:500;
  margin-left: 180px;
  transition: all 0.3s;
  font-family: "A-OTF UD新ゴ Pro", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  letter-spacing: 0.1rem;
  width: 100%;
  display: block;
  text-align: center;
  max-width: 250px;
}
.section-about-detailed_btn a:hover {
  background-color: #FFF7C5;
}
/* business */
.section-business {
  height: 1080px;
  background-color:#FFE100;
  position: relative;
}
.business_image {
  position: absolute;
  top: 90px;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 45%;
}
.business_image img {
  width: 100%;
}
.section-business-wapper {
  padding-top: 220px;
  margin: 0 auto;
  height: 100%;
  max-width: 1475px;
}
.section-business-subtitle h3 {
  font-size: 2.5rem;
  padding-bottom: 60px;
  font-family: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  z-index: 1000;
  position: relative; /*staticだと位置指定ができない、z-indexも使えないのでrelativeにするといい*/
}
.section-business-subtitle p {
  font-size: 1.7rem;
  padding-bottom: 60px;
  line-height: 3rem;
  font-family: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 600;
}
.section-business-list {
  width: 100%;
  margin-bottom: 70px;
}
.section-business-list ul {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  justify-content: space-between;
  padding: 0 15px;
}
.section-business-list img {
  width: 100%;
}
.fadeIn3:first-child {
  transform: translate3d(0, 50px, 0);
  transition: 1s .5s;
  opacity: 0;
}
.fadeIn3:nth-child(2) {
  transform: translate3d(0, 50px, 0);
  transition: 1s 1s;
  opacity: 0;
}
.fadeIn3:nth-child(3) {
  transform: translate3d(0, 50px, 0);
  transition: 1s 1.5s;
  opacity: 0;
}
.fadeIn3:last-child {
  transform: translate3d(0, 50px, 0);
  transition: 1s 2s;
  opacity: 0;
}
.fadeIn3.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.section-business-detailed_btn a {
  color: #000;
  border-radius: 40px;
  text-decoration: none;
  background-color: #fff;
  padding: 15px 45px;
  font-size: 1.7rem;
  font-weight: 600;
  transition: all 0.3s;
  font-family: "A-OTF UD新ゴ Pro", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  letter-spacing: 0.1rem;
}
.section-business-detailed_btn a:hover {
  background-color: #FFF7C5;
}
@media screen and (max-width: 768px) {
  .scrolldown2 {
    bottom: 10px;
  }
  .section-top-imge-message {
    padding-top: 0;
  }
  .first_view_image {
    height: 750px;
  }
  .section-top {
    padding-top: 70px;
    height: 650px;
    margin-bottom: 0;
  }
  .section-top-imge-message p {
    font-size: 1.2rem;
    line-height: 2rem;
  }
  .top_catch_copy {
    margin-bottom: 40px;
  }
  .section-news {
    height: 420px;
  }
  .section-news-title {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 40px
  }
  .section-news-wapper {
    justify-content: center;
  }
  .section-news h3 {
    margin: 0;
    padding-top: 5px;
    padding-left: 30px;
    padding: 5px 30px 0;
  }
  .list_btn {
    width: 80px;
  }
  .list_btn a {
    font-size: 1.5rem;
    padding: 5px 8px;
    width: 100%;
    text-align: center;
    display: block;
  }
  .news-list .item a {
    padding: 15px 15px 40px;
    margin-left: 10px;
    text-align: left;
    font-size: 1.5rem;
  }
  .news-list {
    padding-left: 0;
  }
  .section-about {
    height: 600px;
  }
  .section-about-wapper {
    margin-top: 80px;
    padding: 0;
    position: relative;
  }
  .section-about_img {
    width: 80%;
  }
  .section-about-subtitle {
    padding-top: 300px;
    padding-left: 0;
  }
  .section-about-container {
    width: 100%;
  }
  .section-about-subtitle h3 {
    margin-bottom: 25px;
    margin-left: 50px;
  }
  .section-about-subtitle p {
    font-size: 1.3rem;
    margin-left: 50px;
  }
  .section-about-detailed_btn {
    max-width: 205px;
    margin: 0 auto;
  }
  .section-about-detailed_btn a {
    margin: 0;
    font-size: 1.5rem;
    padding: 10px 20px;
  }
  .about_image {
    top: 250px;
    left: 5%;
    width: 270px;
  }
  .section-business-wapper {
    padding-top: 170px;
  }
  .business_image {
    width: 90%;
  }
  .section-business-subtitle h3 {
    padding-bottom: 40px;
  }
  .section-business-subtitle p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.4rem;
    letter-spacing: 0.2rem;
    text-align: center;
    line-height: 2.5rem;
    padding: 0 20px 30px;
    padding-bottom: 30px;
  }
  .section-business-list {
    width: 100%;
    margin-bottom: 40px;
  }
  .section-business-list ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  .section-business-list ul li {
    max-width: 45%;
  }
  .section-business-list ul li:first-child, .section-business-list ul li:nth-child(3) {
    margin-right: 10px;
  }
  .section-business-detailed_btn a {
    font-size: 1.5rem;
    padding: 10px 20px;
    display: block;
    width: 205px;
    margin: 0 auto;
  }
  .section-business {
    height: 1200px;
  }
}
@media screen and (max-width: 430px) {
  .section-business {
    height: 1000px;
  }
  .section-business-list {
    width: 100%;
    margin-bottom: 70px;
  }
  .section-business-subtitle p {
    max-width: 300px;
    text-align: left;
  }
  .section-news-wapper {
    justify-content: flex-start;
  }
}



@media (max-height:864px) {
.first_view_image {
height: 800px;
}
.section-top-imge-message {
    padding-top: 100px;
}
}
@media screen and (max-width: 768px) {
    .section-top-imge-message {
        padding-top: 0;
    }
}