@charset "UTF-8";
/**scss共通***/
img {
  width: 100%;
}

.test {
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  animation: Flash1 1s infinite;
  font-family: 'Noto Serif JP', serif;
  background: linear-gradient(90deg, #00486e 0%, #00789b 100%);
}

@keyframes Flash1 {
  50% {
    opacity: 0;
  }
}

.test {
  content: "\f105";
  font-family: FontAwesome;
}

/**scss共通ここまで***/
.slidephoto {
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 680px) {
  .slidephoto {
    height: 100vw;
  }
}

.slidephoto a {
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

.slidephoto a:hover {
  opacity: 0.7;
}

.slidephoto .slide01, .slidephoto .slide02, .slidephoto .slide03, .slidephoto .slide04, .slidephoto .slide05, .slidephoto .slide06, .slidephoto .slide07, .slidephoto .slide08 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-size: cover;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
  opacity: 0;
}

.slidephoto .slide01.active, .slidephoto .slide02.active, .slidephoto .slide03.active, .slidephoto .slide04.active, .slidephoto .slide05.active, .slidephoto .slide06.active, .slidephoto .slide07.active, .slidephoto .slide08.active {
  opacity: 1;
}

.slidephoto .slide01 {
  background-image: url(../images/top/top_photo01.jpg);
  opacity: 1 !important;
}

.slidephoto .slide02 {
  background-image: url(../images/top/top_photo02.jpg);
}

.slidephoto .slide03 {
  background-image: url(../images/top/top_photo03.jpg);
}

.slidephoto .slide04 {
  background-image: url(../images/top/top_photo04.jpg);
}

.slidephoto .slide05 {
  background-image: url(../images/top/top_photo05.jpg);
}
.slidephoto .slide06 {
  background-image: url(../images/top/top_photo06.jpg);
}
.slidephoto .slide07 {
  background-image: url(../images/top/top_photo07.jpg);
}
.slidephoto .slide08 {
  background-image: url(../images/top/top_photo08.jpg);
}

@media (max-width: 680px) {
  .slidephoto .slide01 {
    background-image: url(../images/top/top_photo01_sp.jpg);
  }
  .slidephoto .slide02 {
    background-image: url(../images/top/top_photo02_sp.jpg);
  }
  .slidephoto .slide03 {
    background-image: url(../images/top/top_photo03_sp.jpg);
  }
  .slidephoto .slide04 {
    background-image: url(../images/top/top_photo04_sp.jpg);
  }
  .slidephoto .slide05 {
    background-image: url(../images/top/top_photo05_sp.jpg);
  }
  .slidephoto .slide06 {
    background-image: url(../images/top/top_photo06_sp.jpg);
  }
  .slidephoto .slide07 {
    background-image: url(../images/top/top_photo07_sp.jpg);
  }
	.slidephoto .slide08 {
    background-image: url(../images/top/top_photo08_sp.jpg);
  }
}

.slidephoto .slide_contena {
  position: absolute;
  top: 0;
  left: 50%;
  height: 600px;
  width: 100%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

@media (max-width: 680px) {
  .slidephoto .slide_contena {
    height: 100vw;
  }
}

.slidephoto .slide_contena::before {
  content: "";
  width: 100vw;
  height: 100%;
  background-color: #e60000;
  top: 0;
  right: calc(100% - 250px);
  transform: skew(-24deg);
  position: absolute;
  z-index: 2;
}

@media (max-width: 680px) {
  .slidephoto .slide_contena::before {
    right: calc(100% - 20%);
  }
}

.slidephoto .slide_contena::after {
  content: "";
  width: 100vw;
  height: 100%;
  background-color: #e60000;
  top: 0;
  left: calc(100% - 50px);
  transform: skew(-24deg);
  position: absolute;
  z-index: 2;
}

@media (max-width: 680px) {
  .slidephoto .slide_contena::after {
    left: calc(100% - 0px);
  }
}

.slidephoto .slide_contena h2 {
  width: 800px;
  margin: 100px 0 0 50px;
  position: relative;
  z-index: 3;
}

@media (max-width: 680px) {
  .slidephoto .slide_contena h2 {
    width: 100%;
    margin: 50px 0 0 0;
  }
}

.slide_sum {
  width: 100%;
  padding: 30px 0 30px 0;
  text-align: center;
  background-color: #fff;
}

@media (max-width: 680px) {
  .slide_sum {
    padding: 20px 0;
  }
}

.slide_sum ul {
  display: flex;
  justify-content: center;
}
@media (max-width: 680px) {
  .slide_sum ul {
    flex-wrap: wrap;
  }
}

.slide_sum ul li {
  width: 156px;
  margin-right: 10px;
  position: relative;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}
@media (max-width: 680px) {
  .slide_sum ul li {
    width: calc(100% / 4 - 8px * 4 / 3);
    margin-right: 0;
  }
  .slide_sum ul li:not(:nth-child(4n + 1)) {
    margin-left: 8px;
  }
  .slide_sum ul li:nth-child(n + 5) {
    margin-top: 10px;
  }
}
.slide_sum ul li::after {
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  left: 0;
  bottom: 0;
  background-color: #e60000;
  opacity: 0;
}

.slide_sum ul li:last-child {
  margin-right: 0;
}

.slide_sum ul li.active::after {
  opacity: 1;
}

.slide_sum ul li:hover {
  opacity: 0.7;
  cursor: pointer;
}

.copy_slide .copy01 {
  position: relative;
  width: 100%;
  opacity: 0;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

.copy_slide .copy02 {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

.copy_slide .copy03 {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

.copy_slide .copy04 {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

.copy_slide .copy05 {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

.copy_slide .copy06 {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

.copy_slide .copy07 {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}
.copy_slide .copy08 {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

.copy_slide .active {
  opacity: 1;
}

#section02 {
  padding: 0 0 210px 0;
  overflow: hidden;
}

@media (max-width: 680px) {
  #section02 {
    padding: 0 0 60vw 0;
  }
}

#section02 .section__in {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}

#section02 .contena_up {
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 85px 0 70px 0;
}

@media (max-width: 680px) {
  #section02 .contena_up {
    padding: 60px 0;
  }
}

#section02 .contena_up h3 {
  width: 410px;
  margin-bottom: 40px;
  position: relative;
  z-index: 3;
}

@media (max-width: 680px) {
  #section02 .contena_up h3 {
    width: 60%;
    margin: 0 auto 20px 5%;
  }
}

#section02 .contena_up p.text {
  width: 500px;
  line-height: 240%;
  font-size: 16px;
  word-break: break-all;
  position: relative;
  z-index: 3;
}

@media (max-width: 680px) {
  #section02 .contena_up p.text {
    width: 90%;
    line-height: 200%;
    margin: 0 auto;
    font-size: 14px;
  }
}

#section02 .top_botan1 {
  font-size: 20px;
  width: 320px;
  margin-top: 50px;
  position: relative;
  z-index: 3;
}

@media (max-width: 680px) {
  #section02 .top_botan1 {
    width: 90%;
    font-size: 14px;
    margin-top: 30px;
    margin-left: 5%;
  }
}

#section02 .top_botan1 a {
  display: inline-block;
  width: 100%;
  line-height: 100%;
  color: #fff;
  padding: 12px 0 15px 0;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
  position: relative;
  background-color: #e60000;
  border: 1px solid #e60000;
  text-align: center;
}

#section02 .top_botan1 a::after {
  position: absolute;
  content: "\f105";
  font-family: FontAwesome;
  top: 50%;
  right: 12px;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

#section02 .back_up {
  position: absolute;
  width: 2000px;
  height: 100%;
  top: 0;
  right: calc(100% - 1080px);
  background-color: #f5f5f5;
  transform: skew(-24deg);
}

@media (max-width: 680px) {
  #section02 .back_up {
    right: 0;
  }
}

#section02 .contena_down {
  position: absolute;
  width: calc((100vw - 1080px)/2 + 700px);
  height: 80%;
  bottom: -90px;
  left: calc(100% - 600px);
  transform: skewX(-24deg);
  overflow: hidden;
}

@media (max-width: 680px) {
  #section02 .contena_down {
    left: 15vw;
    bottom: -35vw;
    height: 40vw;
    width: calc(150vw);
  }
}

#section02 .contena_down .contena_down__in {
  width: calc((100vw - 1080px)/2 + 750px);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/top/top_sec02_photo.jpg);
  background-position: left center;
  background-size: cover;
  transform-origin: bottom left;
  transform: skewX(24deg);
}

@media (max-width: 680px) {
  #section02 .contena_down .contena_down__in {
    width: calc(100vw);
  }
}

#section03 .section__in {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 680px) {
  #section03 .section__in {
    width: 90%;
  }
}

#section03 h2 {
  width: 450px;
  margin-bottom: 65px;
  line-height: 100%;
}

@media (max-width: 680px) {
  #section03 h2 {
    width: 80%;
    margin-bottom: 30px;
  }
}

#section03 #topics_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

#section03 #topics_list li {
  width: 30.8%;
  margin-right: 3.8%;
}

@media (max-width: 680px) {
  #section03 #topics_list li {
    width: 100%;
    margin-right: 0%;
    margin-bottom: 40px;
  }
}

#section03 #topics_list li a {
  display: inline-block;
}

#section03 #topics_list li:nth-child(3n) {
  margin-right: 0;
}

#section03 #topics_list .photo {
  width: 100%;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

#section03 #topics_list .category {
  position: absolute;
  display: inline-block;
  padding: 2px 5px 3px 5px;
  width: 130px;
  text-align: center;
  font-size: 12px;
  color: #fff;
  background-color: #000;
  z-index: 2;
  top: 0;
  left: -15px;
  transform: skew(-35deg);
}

#section03 #topics_list .category span {
  display: inline-block;
  padding-left: 1em;
  transform: skew(35deg);
}

#section03 #topics_list .days {
  font-size: 13px;
  line-height: 100%;
  padding-bottom: 5px;
}

#section03 #topics_list .text {
  padding-right: 1.2em;
  font-size: 16px;
  line-height: 140%;
  position: relative;
}

@media (max-width: 680px) {
  #section03 #topics_list .text {
    font-size: 14px;
  }
}

#section03 #topics_list .text::after {
  content: "\f105";
  position: absolute;
  font-family: FontAwesome;
  top: 10px;
  right: 5px;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  font-weight: bold;
  color: #e60000;
  font-size: 24px;
}

@media (max-width: 680px) {
  #section03 #topics_list .text::after {
    font-size: 18px;
  }
}

#section03 .more_topics {
  width: 100%;
  text-align: right;
  font-size: 14px;
  margin-bottom: 100px;
  margin-top: 25px;
}

#section03 .more_topics a {
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

#section03 .more_topics a::after {
  content: "\f105";
  display: inline-block;
  font-family: FontAwesome;
  font-weight: bold;
  color: #000;
  padding-left: 10px;
}

#section03 .more_topics a:hover {
  opacity: 0.7;
}

#section04 .section__in {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 680px) {
  #section04 .section__in {
    width: 90%;
  }
}

#section04 h2 {
  width: 450px;
  margin-bottom: 65px;
  line-height: 100%;
}

@media (max-width: 680px) {
  #section04 h2 {
    width: 80%;
    margin-bottom: 30px;
  }
}

#section04 .tab ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

#section04 .tab ul li {
  text-align: center;
  width: 25%;
  border-right: 1px solid #999;
  font-size: 18px;
  letter-spacing: 0.1em;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

@media (max-width: 680px) {
  #section04 .tab ul li {
    font-size: 14px;
    letter-spacing: 0em;
  }
}

#section04 .tab ul li:hover {
  opacity: 0.7;
  cursor: pointer;
}

#section04 .tab ul li:first-child {
  border-left: 1px solid #999;
}

#section04 .tab ul li.active {
  background-color: #e60000;
  border-left: 0px solid #999;
  border-right: 0px solid #999;
}

#section04 .tab ul li.active span {
  color: #fff;
}

#section04 .tab ul li span {
  padding: 12px 0 14px 0;
  width: 100%;
  display: inline-block;
}

#section04 .section__out {
  width: 100%;
  border-top: 2px solid #e60000;
  background-color: #f5f5f5;
  padding: 60px 0 60px 0;
}

@media (max-width: 680px) {
  #section04 .section__out {
    padding: 40px 0 40px 0;
  }
}

#section04 .tab__in {
  width: 100%;
  min-height: 240px;
  max-width: 1080px;
  margin: 0 auto;
  letter-spacing: 0.1em;
  font-size: 16px;
}

#section04 .tab__in a:hover {
  text-decoration: underline;
}

@media (max-width: 680px) {
  #section04 .tab__in {
    width: 90%;
    font-size: 14px;
    min-height: 480px;
  }
}

#section04 dt {
  float: left;
  width: 180px;
  text-align: center;
}

@media (max-width: 680px) {
  #section04 dt {
    float: none;
    width: 100%;
    text-align: left;
  }
}

#section04 dd {
  margin-left: 180px;
  margin-bottom: 30px;
}

@media (max-width: 680px) {
  #section04 dd {
    margin-left: 0;
    margin-bottom: 25px;
  }
}

#section04 .tab01 {
  display: none;
}

#section04 .tab02 {
  display: none;
}

#section04 .tab03 {
  display: none;
}

#section04 .tab04 {
  display: none;
}

#section04 .is-show {
  display: block;
}

#section04 .more_topics2 {
  width: 100%;
  text-align: right;
  font-size: 14px;
  margin-bottom: 0px;
  margin-top: 15px;
}

#section04 .more_topics2 a {
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

#section04 .more_topics2 a::after {
  content: "\f105";
  display: inline-block;
  font-family: FontAwesome;
  font-weight: bold;
  color: #000;
  padding-left: 10px;
}

#section04 .more_topics2 a:hover {
  opacity: 0.7;
}

#section05 {
  padding-top: 100px;
}

#section05 .section__in {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 680px) {
  #section05 .section__in {
    width: 90%;
  }
}

#section05 h2 {
  width: 450px;
  margin-bottom: 65px;
  line-height: 100%;
}

@media (max-width: 680px) {
  #section05 h2 {
    width: 80%;
    margin-bottom: 30px;
  }
}

#section05 ul.products_list {
  width: 100%;
  display: flex;
  /* justify-content: space-between; */
  flex-wrap: wrap;
}

#section05 ul.products_list li {
  width: 20%;
  height: 210px;
  position: relative;
  background-position: center;
  background-size: cover;
}

@media (max-width: 680px) {
  #section05 ul.products_list li {
    height: 50vw;
    width: 50%;
  }
}

#section05 ul.products_list li::after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  border-bottom: 30px solid #e60000;
  border-left: 30px solid transparent;
}

#section05 ul.products_list li .red_back {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #e60000;
  top: 0;
  left: 0;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
  opacity: 0;
}

#section05 ul.products_list li:hover > a > .red_back {
  opacity: 0.3;
  cursor: pointer;
}

#section05 ul.products_list li a {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}


#section05 ul.products_list li.plist-title {
  background-color: #e60000;
}

#section05 ul.products_list li.plist-title span{
  text-align: center;
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  display: block;
  padding-top: 25%;
  letter-spacing: .075em;
}

#section05 ul.products_list li.plist-title h4{
  padding-top: 8px;
  font-size: 20px;
}

@media (max-width: 680px) {
  #section05 ul.products_list li.plist-title span{
    font-size: 18px;
    padding-top: 35%;
  }
  #section05 ul.products_list li.plist-title h4{
    font-size: 14px;
  }
}


#section05 ul.products_list li.plist01 {
  background-image: url(../images/top/top_products_photo01.jpg);
}

#section05 ul.products_list li.plist02 {
  background-image: url(../images/top/top_products_photo02.jpg);
}

#section05 ul.products_list li.plist03 {
  background-image: url(../images/top/top_products_photo03.jpg);
}

#section05 ul.products_list li.plist04 {
  background-image: url(../images/top/top_products_photo04.jpg);
}

#section05 ul.products_list li.plist05 {
  background-image: url(../images/top/top_products_photo05.jpg);
}

#section05 ul.products_list li.plist06 {
  background-image: url(../images/top/top_products_photo06.jpg);
}

#section05 ul.products_list li.plist07 {
  background-image: url(../images/top/top_products_photo07.jpg);
}

#section05 ul.products_list li.plist08 {
  background-image: url(../images/top/top_products_photo08.jpg);
}

#section05 ul.products_list li.plist09 {
  background-image: url(../images/top/top_products_photo09.jpg);
}
#section05 ul.products_list li.plist10 {
  background-image: url(../images/top/top_products_photo10.jpg);
}


#section05 ul.products_list li.plist09 h4 img {
	margin:5px auto 10px auto;
  width:148px;
	
}
#section05 ul.products_list li.plist10 h4 img {
	margin:5px auto 10px auto;
  width:136px;
}

#section05 ul.products_list li h4 {
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.4;
  padding-top: 20%;
}

@media (max-width: 680px) {
  #section05 ul.products_list li h4 {
    font-size: 4vw;
    padding-top: 30%;
  }
}

#section05 ul.products_list li p {
  font-size: 14px;
  color: #fff;
  text-align: center;
  letter-spacing: .1em;
  padding-top: 8px;
}

@media (max-width: 680px) {
  #section05 ul.products_list li p {
    font-size: 3vw;
    bottom: 8px;
    line-height: 160%;
  }
}

#section05 ul.products_list li .division {
  position: absolute;
  top: 0;
  left: 12px;
	font-size: 10px;
}

@media (max-width: 680px) {
  #section05 ul.products_list li .division {
    
  }
}

/* #section05 ul.products_list li p::after {
  content: "\f105";
  position: absolute;
  font-family: FontAwesome;
  font-weight: bold;
  color: #fff;
  padding-left: 10px;
  bottom: 0em;
  right: 0;
  font-size: 20px;
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
} */

#section06 {
  padding: 60px 0;
  text-align: center;
  background-color: #f5f5f5;
  margin-bottom: 250px;
}

@media (max-width: 680px) {
  #section06 {
    margin-bottom: 100px;
    padding: 30px 0 40px 0;
  }
}

#section06 h5 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}

@media (max-width: 680px) {
  #section06 h5 {
    font-size: 16px;
  }
}

#section06 p {
  margin: 0 auto;
  font-size: 16px;
}

@media (max-width: 680px) {
  #section06 p {
    width: 90%;
  }
}

#section06 .download_bt {
  width: 320px;
  margin: 28px auto 0 auto;
}

@media (max-width: 680px) {
  #section06 .download_bt {
    width: 90%;
  }
}

#section06 .download_bt a {
  display: inline-block;
  width: 100%;
  line-height: 100%;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 0 17px 0;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
  position: relative;
  background-color: #e60000;
  border: 1px solid #e60000;
  text-align: center;
}

#section06 .download_bt a::after {
  position: absolute;
  content: "\f105";
  font-family: FontAwesome;
  top: 50%;
  right: 12px;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

.color_01 {
  background-color: #e60000;
}

.color_02 {
  background-color: #3549ce;
}

.color_03 {
  background-color: #299199;
}

.color_04 {
  background-color: #b77f52;
}
