@charset "UTF-8";
/* -----------
 *
 * Top以外のページでの共通スタイル
 *
 * ---------- */
/* 小川さん追加分 */
article .dl_display-none {
  display: none !important;
}
article .dl_display-none .display-none {
  display: none !important;
}
article h2.article-h2 {
  position: relative;
  padding: 1rem 2rem calc(1rem + 10px);
  background: #65e9de;
}
article h2.article-h2:before {
  position: absolute;
  top: -7px;
  left: -7px;
  width: 99%;
  height: 97%;
  content: "";
  border: 2px solid #000;
}
article .article-p {
  font-weight: bold;
  color: coral;
  font-weight: bold;
}
article .button a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 1em 2em;
  width: 250px;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  background-color: #ecf572;
  box-shadow: 0 5px 0 #c4c568;
  transition: 0.3s;
  text-decoration: none;
}
article .button a::after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 3px solid #333333;
  border-right: 3px solid #333333;
  transform: rotate(45deg);
}
article .button a:hover {
  transform: translateY(3px);
  text-decoration: none;
  box-shadow: 0 2px 0 #aaaaaa;
}
article .under {
  position: relative;
  padding: 0.3em;
  font-weight: bold;
}
article .under:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background: repeating-linear-gradient(-45deg, rgb(240, 164, 2), rgb(235, 228, 135) 2px, white 2px, white 4px);
}
article .example_list {
  position: relative;
  margin: 2em 0;
  padding: 0.5em 1em;
  border: solid 3px #62c1ce;
}
article .example_list ul {
  list-style: square;
}
article .example_list ul li {
  margin: 0.5em 0;
  padding: 0.5em 0.5em;
}
article .example-title {
  position: absolute;
  display: inline-block;
  top: -27px;
  left: -3px;
  padding: 0 9px;
  height: 25px;
  line-height: 25px;
  font-size: 17px;
  background: rgb(100, 194, 206);
  color: #FFF;
  font-weight: bold;
  border-radius: 5px 5px 0 0;
}
article .item-h3 {
  position: relative;
  display: inline-block;
  padding: 0 65px;
  text-align: center;
}
article .item-h3:before {
  left: 0;
}
article .item-h3:after {
  right: 0;
}
article .item-h3:before, article .item-h3:after {
  position: absolute;
  top: calc(50% - 3px);
  width: 50px;
  height: 6px;
  content: "";
  border-top: solid 2px rgb(100, 194, 206);
  border-bottom: solid 2px rgb(100, 194, 206);
}
article .time_tabel {
  color: rgb(97, 180, 191);
}
article a {
  color: #000;
  text-decoration: none;
}

@media screen and (max-width: 1000px) {
  body main .second_header {
    width: 100%;
  }
  body main .second_header .title {
    height: 110px;
    width: 100%;
    background-size: cover;
    background-position: 50% 50%;
    background-color: lightgreen;
  }
  body main .second_header .title h1 {
    font-family: "Noto Sans JP", sans-serif;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    text-align: center;
    font-size: 18px;
    height: 110px;
  }
  body main .second_header .title h1 span {
    background-color: #fff;
    border: 3px solid #000;
    border-radius: 5px;
    padding: 5px 20px;
  }
  body main .second_body {
    padding: 15px 10px 60px;
    background-color: whitesmoke;
  }
  body main .second_body .inner {
    background: #fff;
    padding: 10px 15px 40px;
    margin: 0 15px;
    border-radius: 5px;
    padding: 10px 20px 40px;
    margin: 0 auto;
    border-radius: 5px;
  }
  body main.site .second_body .inner .lead_box, body main.category .second_body .inner .lead_box {
    padding: 5px;
    border-radius: 5px;
    background-color: white;
    border: 1px solid grey;
    text-align: center;
  }
  body main.site .second_body .inner .flex_box, body main.category .second_body .inner .flex_box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 680px;
    margin: 30px auto 0 auto;
  }
  body main.site .second_body .inner .flex_box .item_box, body main.category .second_body .inner .flex_box .item_box {
    height: 300px;
    width: 300px;
    border-radius: 10px;
    box-shadow: 10px 10px grey;
    position: relative;
    z-index: 0;
    margin: 10px;
    padding: 10px;
  }
  body main.site .second_body .inner .flex_box .item_box .item_inner, body main.category .second_body .inner .flex_box .item_box .item_inner {
    background-color: lightgrey;
    height: 100%;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  body main.site .second_body .inner .flex_box .item_box .item_inner.closed img, body main.category .second_body .inner .flex_box .item_box .item_inner.closed img {
    filter: brightness(65%) grayscale(50%);
  }
  body main.site .second_body .inner .flex_box .item_box .item_inner.closed span, body main.category .second_body .inner .flex_box .item_box .item_inner.closed span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
  }
  body main.site .second_body .inner .flex_box .item_box .item_inner .thumbnail_box, body main.category .second_body .inner .flex_box .item_box .item_inner .thumbnail_box {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  body main.site .second_body .inner .flex_box .item_box .item_inner .thumbnail_box img, body main.category .second_body .inner .flex_box .item_box .item_inner .thumbnail_box img {
    border-radius: 5px;
    height: auto;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body main.article .inner .backbtn_box .toBack {
    position: relative;
    font-weight: bold;
    font-size: 12px;
    color: #fff;
    padding: 1px 20px 6px 10px;
    display: inline-block;
    background-color: #fff;
    border-radius: 30px;
    z-index: 0;
    overflow: hidden;
  }
  body main.article .inner .backbtn_box .toBack:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    height: 100%;
    width: 50%;
    background-color: #000;
    z-index: -1;
  }
  body main.article .inner .backbtn_box .toBack:after {
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    width: 50%;
    height: 100%;
    background-color: #000;
    z-index: -1;
  }
  body main.article .inner .backbtn_box .toBack .circle {
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: inline-block;
    top: 5px;
    margin-right: 8px;
  }
  body main.article .inner .backbtn_box .toBack .circle:before {
    position: absolute;
    top: 7px;
    left: 6px;
    content: "";
    width: 4px;
    height: 4px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(45deg);
  }
  body main.article .inner .backbtn_box .toBack .circle:after {
    position: absolute;
    content: "";
    width: 6px;
    height: 1px;
    background-color: #fff;
    top: 9px;
    left: 7px;
  }
  body main.article .inner .detail_area {
    position: relative;
    margin-top: 30px;
  }
  body main.article .inner .detail_area .date_box {
    text-align: right;
    margin-top: 10px;
  }
  body main.article .inner .detail_area .date_box time {
    color: lightslategrey;
    font-weight: bold;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
  }
  body main.article .inner .detail_area .title_box h1 {
    font-size: 26px;
    margin-bottom: 20px;
  }
  body main.article .inner .bottom_area {
    padding: 40px 0;
  }
  body main.article .inner .bottom_area .inner {
    position: relative;
    width: 100%;
    margin: 10px 0;
    padding: 10px;
  }
}
@media print, screen and (min-width: 1001px) {
  body main .second_header {
    width: 100%;
  }
  body main .second_header .title {
    height: 280px;
    width: 100%;
    background-size: cover;
    background-position: 50% 50%;
    background-image: url(../images/second/title/mv_green.png);
  }
  body main .second_header .title h1 {
    font-family: "Noto Sans JP", sans-serif;
    height: 280px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    text-align: center;
    font-size: 36px;
  }
  body main .second_header .title h1 span {
    background-color: #fff;
    border: 3px solid #000;
    border-radius: 5px;
    padding: 10px 28px;
  }
  body main .second_body {
    padding: 45px 0 100px;
  }
  body main .second_body .inner {
    width: 90%;
    max-width: 1110px;
    margin: 0 auto;
    background: #fff;
    padding: 10px 30px 60px;
    border-radius: 10px;
  }
  body main.site .second_body .inner .lead_box, body main.category .second_body .inner .lead_box {
    padding: 5px;
    border-radius: 5px;
    background-color: #FFF;
    border: 1px solid grey;
    text-align: center;
  }
  body main.site .second_body .inner .lead_box p, body main.category .second_body .inner .lead_box p {
    font-size: 1.4rem;
    font-weight: 700;
  }
  body main.site .second_body .inner .flex_box, body main.category .second_body .inner .flex_box {
    width: 990px;
    margin: 40px auto 0px auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  body main.site .second_body .inner .flex_box .item_box, body main.category .second_body .inner .flex_box .item_box {
    z-index: 0;
    margin: 15px;
    padding: 15px;
    height: 300px;
    width: 300px;
    transition: 0.3s ease-in-out;
    border-radius: 10px;
    box-shadow: 10px 10px grey;
    margin: 10px;
    position: relative;
    display: block;
    transition: 0.3s ease-in-out;
  }
  body main.site .second_body .inner .flex_box .item_box:hover, body main.category .second_body .inner .flex_box .item_box:hover {
    transform: translateY(-10px);
    color: #000;
  }
  body main.site .second_body .inner .flex_box .item_box .item_inner, body main.category .second_body .inner .flex_box .item_box .item_inner {
    height: 100%;
    background-color: lightgrey;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  body main.site .second_body .inner .flex_box .item_box .item_inner.closed img, body main.category .second_body .inner .flex_box .item_box .item_inner.closed img {
    filter: brightness(65%) grayscale(50%);
  }
  body main.site .second_body .inner .flex_box .item_box .item_inner.closed span, body main.category .second_body .inner .flex_box .item_box .item_inner.closed span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
  }
  body main.site .second_body .inner .flex_box .item_box .item_inner .thumbnail_box, body main.category .second_body .inner .flex_box .item_box .item_inner .thumbnail_box {
    position: relative;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  body main.site .second_body .inner .flex_box .item_box .item_inner .thumbnail_box img, body main.category .second_body .inner .flex_box .item_box .item_inner .thumbnail_box img {
    border-radius: 5px;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body main.article .second_body .inner {
    background: #fff;
    width: 910px;
    padding: 10px 30px 60px;
    border-radius: 10px;
  }
  body main.article .second_body .inner .backbtn_box .toBack {
    position: relative;
    font-weight: bold;
    font-size: 12px;
    color: #fff;
    padding: 1px 20px 6px 10px;
    display: inline-block;
    background-color: #fff;
    border-radius: 30px;
    z-index: 0;
    overflow: hidden;
    transition: 0.3s ease-in-out;
  }
  body main.article .second_body .inner .backbtn_box .toBack:hover {
    color: #000;
  }
  body main.article .second_body .inner .backbtn_box .toBack:hover:before {
    width: 0;
  }
  body main.article .second_body .inner .backbtn_box .toBack:hover:after {
    width: 0;
  }
  body main.article .second_body .inner .backbtn_box .toBack .circle {
    border: 1px solid #000;
  }
  body main.article .second_body .inner .backbtn_box .toBack .circle:before {
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
  }
  body main.article .second_body .inner .backbtn_box .toBack .circle:after {
    background-color: #000;
  }
  body main.article .second_body .inner .backbtn_box .toBack:before {
    position: absolute;
    content: "";
    width: 50%;
    height: 100%;
    background-color: #000;
    top: 0;
    left: 0;
    z-index: -1;
    transition: 0.3s ease-in-out;
  }
  body main.article .second_body .inner .backbtn_box .toBack:after {
    position: absolute;
    content: "";
    width: 50%;
    height: 100%;
    background-color: #000;
    top: 0;
    right: 0;
    z-index: -1;
    transition: 0.3s ease-in-out;
  }
  body main.article .second_body .inner .backbtn_box .toBack .circle {
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: inline-block;
    top: 5px;
    margin-right: 8px;
    transition: 0.3s ease-in-out;
  }
  body main.article .second_body .inner .backbtn_box .toBack .circle:before {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(45deg);
    top: 7px;
    left: 6px;
    transition: 0.3s ease-in-out;
  }
  body main.article .second_body .inner .backbtn_box .toBack .circle:after {
    position: absolute;
    content: "";
    width: 6px;
    height: 1px;
    background-color: #fff;
    top: 9px;
    left: 7px;
    transition: 0.3s ease-in-out;
  }
  body main.article .second_body .inner .detail_area .date_box {
    text-align: right;
    margin-top: 10px;
  }
  body main.article .second_body .inner .detail_area .date_box time {
    color: lightslategrey;
    font-weight: bold;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
  }
  body main.article .second_body .inner .detail_area .title_box {
    font-size: 34px;
    margin-bottom: 30px;
  }
  body main.article .second_body .inner .bottom_area {
    width: 100%;
  }
  body main.article .second_body .inner .bottom_area .inner {
    position: relative;
    width: 100%;
    margin: 50px 0 10px 0;
    padding: 60px 0 30px 0;
  }
}/*# sourceMappingURL=page_yt.css.map */