@charset "UTF-8";
/* CSS Document */ /* CSS Document */
/* ###################  ブレイクポイントの設定  ################### */
/*ブレイクポイント*/
/*
sp：640px
pad：830px
PC：831px以上
@include mq() {} → 無印の場合はSPのブレイクポイント
@include mq(pad) {} → 引数にpadが入るとPAD用のブレイクポイントが適用される
*/
.mt_10 {
  margin-top: 10px !important;
}

.mb_10 {
  margin-bottom: 10px !important;
}

.pt_10 {
  padding-top: 10px !important;
}

.pb_10 {
  padding-bottom: 10px !important;
}

.mt_20 {
  margin-top: 20px !important;
}

.mb_20 {
  margin-bottom: 20px !important;
}

.pt_20 {
  padding-top: 20px !important;
}

.pb_20 {
  padding-bottom: 20px !important;
}

.mt_30 {
  margin-top: 30px !important;
}

.mb_30 {
  margin-bottom: 30px !important;
}

.pt_30 {
  padding-top: 30px !important;
}

.pb_30 {
  padding-bottom: 30px !important;
}

.mt_40 {
  margin-top: 40px !important;
}

.mb_40 {
  margin-bottom: 40px !important;
}

.pt_40 {
  padding-top: 40px !important;
}

.pb_40 {
  padding-bottom: 40px !important;
}

.mt_50 {
  margin-top: 50px !important;
}

.mb_50 {
  margin-bottom: 50px !important;
}

.pt_50 {
  padding-top: 50px !important;
}

.pb_50 {
  padding-bottom: 50px !important;
}

.mt_60 {
  margin-top: 60px !important;
}

.mb_60 {
  margin-bottom: 60px !important;
}

.pt_60 {
  padding-top: 60px !important;
}

.pb_60 {
  padding-bottom: 60px !important;
}

.mt_70 {
  margin-top: 70px !important;
}

.mb_70 {
  margin-bottom: 70px !important;
}

.pt_70 {
  padding-top: 70px !important;
}

.pb_70 {
  padding-bottom: 70px !important;
}

.mt_80 {
  margin-top: 80px !important;
}

.mb_80 {
  margin-bottom: 80px !important;
}

.pt_80 {
  padding-top: 80px !important;
}

.pb_80 {
  padding-bottom: 80px !important;
}

.mt_90 {
  margin-top: 90px !important;
}

.mb_90 {
  margin-bottom: 90px !important;
}

.pt_90 {
  padding-top: 90px !important;
}

.pb_90 {
  padding-bottom: 90px !important;
}

.mt_100 {
  margin-top: 100px !important;
}

.mb_100 {
  margin-bottom: 100px !important;
}

.pt_100 {
  padding-top: 100px !important;
}

.pb_100 {
  padding-bottom: 100px !important;
}

body, html {
  margin: 0;
  padding: 0;
  color: #333;
}

html {
  font-family: "NotoSansCJKjp", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}

.serif {
  font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 Pro W3", YuMincho, "游明朝", "MS PMincho", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
}

.disp_pc {
  display: block;
}
@media screen and (max-width: 640px) {
  .disp_pc {
    display: none;
  }
}

.disp_sp {
  display: none;
}
@media screen and (max-width: 640px) {
  .disp_sp {
    display: block;
  }
}

.center {
  text-align: center;
}

body {
  background: #1f1c1f;
}

img {
  vertical-align: bottom;
}

@-webkit-keyframes border_anim {
  0% {
    width: 0%;
  }
  30% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
}

@keyframes border_anim {
  0% {
    width: 0%;
  }
  30% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
}
#sub_nav {
  background: #000;
  border-width: 1px 0;
  border-style: solid;
  border-color: #555;
  font-size: 16px;
}
#sub_nav ul {
  display: flex;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  justify-content: space-between;
  padding: 6px 0;
}
#sub_nav li {
  list-style: none;
  width: 16.6666666667%;
  transition: all 0.3s 0s ease;
}
#sub_nav li.ac {
  position: relative;
}
#sub_nav li.ac::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  border-bottom: solid 2px #f00;
  -webkit-animation: border_anim 0.2s ease-in forwards;
          animation: border_anim 0.2s ease-in forwards;
}
#sub_nav a {
  color: #fff;
  text-decoration: none;
  display: block;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 640px) {
  #sub_nav a {
    font-size: 1.8vw;
  }
}
#sub_nav a :hover {
  color: #333;
  background: #fff;
}
#sub_nav.fix {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10;
}
@media screen and (max-width: 640px) {
  #sub_nav.fix {
    top: inherit;
    bottom: 0;
  }
}

.two {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.two article {
  width: 49%;
  box-sizing: border-box;
  margin-bottom: 2%;
}
@media screen and (max-width: 640px) {
  .two article {
    width: 96%;
  }
}
.two::after {
  display: block;
  content: "";
  width: 50%;
}

article {
  width: 100%;
  max-width: 1000px;
  margin: auto auto 40px auto;
}
@media screen and (max-width: 640px) {
  article {
    width: 96%;
  }
}

.result {
  width: 100%;
  max-width: 1000px;
  margin: auto;
}
.result .result_title {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.result dl {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  font-size: 20pt;
}
@media screen and (max-width: 640px) {
  .result dl {
    width: 96%;
    font-size: 4vw;
    padding: 2%;
  }
}
.result dl h3 {
  width: 100%;
  margin: 0 0 10px 0;
  padding-left: 10px;
}
.result dt {
  width: 14%;
  margin: 0;
  padding: 0 0 0 1%;
  border-bottom: 1px solid #333;
}
@media screen and (max-width: 640px) {
  .result dt {
    padding-top: 6px;
    width: 29%;
  }
}
.result dd {
  width: 34%;
  margin: 0 1% 0 0;
  padding: 0 0 0 1%;
  border-bottom: 1px solid #333;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .result dd {
    padding-top: 6px;
    width: 69%;
  }
}

.img {
  position: relative;
}
.img img {
  width: 100%;
  height: auto;
}
.img img:nth-child(2) {
  position: absolute;
  bottom: 0;
  left: 0;
}
.img img:nth-child(3) {
  position: absolute;
  left: 0;
  top: 0;
  width: 9%;
  height: auto;
}
.img img:nth-child(4) {
  position: absolute;
  right: 0;
  top: 0;
  width: 9%;
  height: auto;
}

.comment {
  width: 100%;
  padding: 20px;
  background: #000;
  box-sizing: border-box;
}
.comment p {
  line-height: 1.4;
  color: #fff;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
}
@media screen and (max-width: 640px) {
  .comment p {
    font-size: 10px;
  }
}

.area_result {
  display: flex;
  flex-wrap: wrap;
}
.area_result div {
  width: 48%;
  margin: 0 auto 20px auto;
  background: #FFC000;
  padding: 10px 0 20px 0;
}
@media screen and (max-width: 640px) {
  .area_result div {
    width: 92%;
  }
}
.area_result a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #000;
  font-weight: bold;
}
.area_result h2 {
  color: #000;
  margin: 0;
  padding: 0;
  font-size: 28pt;
  text-shadow: none;
}
@media screen and (max-width: 640px) {
  .area_result h2 {
    font-size: 8vw;
  }
}
.area_result h2 span {
  font-size: 14pt;
  color: #c00;
}
@media screen and (max-width: 640px) {
  .area_result h2 span {
    font-size: 4vw;
  }
}

.mai_title h2 {
  color: #8b52a1;
  text-shadow: none;
  margin-bottom: 0;
}
.mai_title h3 {
  color: #FFC000;
  text-align: center;
  margin-top: 0;
}

.mai ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.mai li {
  width: 48%;
  list-style: none;
  margin: 0;
  padding: 0 0 40px 0;
}
@media screen and (max-width: 640px) {
  .mai li {
    width: 100%;
  }
}
.mai li img {
  width: 100%;
  height: auto;
}