@charset "utf-8";

/* レイアウトのためのCSS */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Yu Gothic Medium",
    "Yu Gothic", sans-serif;
  background: #fff;
  color: #111;
  font-size: 100%;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
}

.min {
  font-family: "Noto Serif JP", serif;
}

* {
  box-sizing: border-box;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: #333;
  text-decoration: none;
  outline: none;
}

img {
  width: 100%;
  height: auto;
}

.pc {
  display: block;
}

.tb960 {
  display: none;
}

.bold {
  font-weight: bold;
}
@media screen and (max-width: 1280px) {
  .pc {
    display: none;
  }

  .tb960 {
    display: block;
  }
}

/*====================================================================================================
余白
===================================*/
.mab8 {
  margin-bottom: 8px;
}

.mab16 {
  margin-bottom: 16px;
}

.mab24 {
  margin-bottom: 24px;
}

.mab32 {
  margin-bottom: 32px;
}

.mab40 {
  margin-bottom: 40px;
}

.mab48 {
  margin-bottom: 48px;
}

.pa20 {
  padding: 0 20px;
}

.mal16 {
  margin-left: 16px;
}

/*====================================================================================================
flex
===================================*/
@media screen and (min-width: 961px) {
  .flex {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .flex2 {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
  }

  .flex3 {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .flex4 {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }

  .reverse {
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .list2 li {
    width: 50%;
  }

  .list2-2 li {
    width: 49%;
  }

  .list2-3 li {
    width: 49.5%;
  }

  .list3 li {
    width: 32%;
  }

  .list3 li ul li {
    width: 100%;
  }

  .list4 li {
    width: 23%;
  }
}

/*====================================================================================================
loading
===================================*/
/* splash */
#splash-logo {
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #eb6100;
}

/*====================================================================================================
top image
===================================*/
.top-lead {
  position: fixed;
  bottom: 10%;
  left: 5%;
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.5;
}

@media screen and (max-width: 1280px) {
  .top-lead {
    background: url("../img/triangle.svg") no-repeat left bottom;
    padding: 150px 220px 0 0;
    background-size: 350px;
  }
}

@media screen and (max-width: 560px) {
  .top-lead {
    padding: 120px 120px 0 0;
    background-size: 310px;
  }
}

/*====================================================================================================
header
===================================*/
header h1 a {
  color: #111;
}

header h1 {
  text-transform: uppercase;
  padding: 4px 0 0 0;
  line-height: 1;
  white-space: nowrap;
  max-width: 300px;
}

@media screen and (max-width: 1279px) {
  header h1 {
    position: absolute;
    top: 22px;
    left: 20px;
    padding: 0;
  }
}

@media screen and (max-width: 960px) {
  header h1 {
    top: 12px;
    max-width: 260px;
  }
}

/*====================================================================================================
main
===================================*/
/*=====　トップページ　=====*/
#news,
#wrap {
  position: relative;
  min-height: 70vh;
}

#news .svganimeblock {
  width: 50%;
  height: 50%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: -1;
}

@media screen and (min-width: 1281px) {
  #news .svganimeblock {
    top: 100px;
  }
}

#pickup .pick-area {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto 300px auto;
  width: 90%;
}

@media screen and (max-width: 768px) {
  #pickup .pick-area {
    margin: 0 0 200px 0;
  }
}

@media screen and (max-width: 590px) {
  #pickup .pick-area {
    margin: 0 auto 50px auto;
  }
}

#pickup .pick-area::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 23em;
  background: rgba(75, 204, 51, 0.5);
  right: 10%;
  top: 20%;
  z-index: -1;
}

#pickup .pick-area:nth-of-type(2n + 1) {
  flex-direction: row-reverse;
}

#pickup .pick-area .img {
  width: 50%;
}

#pickup .pick-area .content {
  width: 40%;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 150px;
}

@media screen and (max-width: 768px) {
  #pickup .pick-area .content {
    width: 47%;
    top: 100px;
  }
}

@media screen and (max-width: 590px) {
  #pickup .pick-area .img {
    width: 100%;
    z-index: 2;
  }

  #pickup .pick-area .content {
    width: 100%;
    top: -10px;
    animation: none;
    opacity: 1;
    z-index: 1;
  }
}

#pickup .pick-area .content-area {
  padding: 40px;
}

#pickup .pick-area .content-area h3 {
  text-align: center;
  font-size: 1rem;
  margin: 0 0 30px 0;
}

#pickup .pick-area .content-area h3 span {
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  font-size: 1.2rem;
}

#pickup .pick-area .content-area p {
  margin: 0 0 30px 0;
}

#pickup .btn,
.btn {
  text-align: center;
  width: 90%;
  max-width: 360px;
  margin: auto;
}

/*=====　他　=====*/
.wrap {
  max-width: 1280px;
  margin: 0 auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}

tr {
  border-bottom: 1px solid #ccc;
}

th[scope="col"] {
  width: calc(100% / 3);
  border-right: 1px solid #ccc;
  background: #eee;
}

th[scope="row"] {
  text-align: left;
  border-right: 1px solid #ccc;
  background: rgba(75, 204, 51, 0.2);
}

th,
td {
  padding: 2%;
}

td {
  border-right: 1px solid #ccc;
}

/*====================================================================================================
footer
===================================*/
footer {
  padding: 100px 0;
  text-align: center;
  background: #111;
  position: relative;
  text-transform: uppercase;
}

footer .footer-logo {
  width: 80%;
  max-width: 360px;
  margin: 0 auto;
}

footer small {
  color: #fff;
}
