@charset "UTF-8";
@import url("global.css");
#introtxt {
  text-align: center;
  margin-bottom: 60px;
  line-height: 2;
}

ul.catlink {
  overflow: hidden;
  margin: 0 -5px;
  padding-bottom: 10px;
}
ul.catlink li {
  float: left;
  width: 25%;
  box-sizing: border-box;
  padding: 0 5px;
}
ul.catlink li a {
  display: block;
  background-color: #DEDEDE;
  padding: 20px 10px;
  letter-spacing: 0;
  text-align: center;
  line-height: 1.4;
  font-weight: bold;
  position: relative;
}
ul.catlink li a br {
  display: none;
}
ul.catlink li a::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #DEDEDE transparent transparent transparent;
  border-width: 10px 8px 0 8px;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -8px;
  transition: all 0.5s cubic-bezier(0.52, 0.08, 0.18, 1);
  -webkit-transition: all 0.5s cubic-bezier(0.52, 0.08, 0.18, 1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
ul.catlink li a:hover {
  background-color: #ED6C00;
  color: #fff;
}
ul.catlink li a:hover::after {
  bottom: -10px;
  border-color: #ED6C00 transparent transparent transparent;
}

.section {
  margin-top: 40px;
}
.section .cattitle {
  font-size: 28px;
  padding: 10px;
  border-bottom: #C8C8C8 1px solid;
  margin-bottom: 20px;
  color: #ED6C00;
}
.section .cattitle::before {
  content: "Q";
  font-family: "Poppins", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "游ゴシック Medium", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Meiryo", "メイリオ", Helvetica, sans-serif;
  font-size: 36px;
  line-height: 1;
  display: inline-block;
  margin-right: 12px;
}
.section dl.list {
  padding: 0 0;
  letter-spacing: 1px;
}
.section dl.list > dt {
  padding: 10px 40px 10px 32px;
  line-height: 1.5;
  position: relative;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.52, 0.08, 0.18, 1);
  -webkit-transition: all 0.3s cubic-bezier(0.52, 0.08, 0.18, 1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.section dl.list > dt:hover {
  background-color: rgba(237, 108, 0, 0.1);
}
.section dl.list > dt::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: rgba(237, 108, 0, 0.5);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: 18px;
  left: 15px;
}
.section dl.list > dt::after {
  content: "\f00d";
  line-height: 30px;
  height: 30px;
  font-size: 30px;
  font-weight: 900;
  font-family: "Font Awesome 5 free";
  position: absolute;
  top: 50%;
  margin-top: -15px;
  right: 15px;
  color: #A79979;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.52, 0.08, 0.18, 1);
  -webkit-transition: all 0.4s cubic-bezier(0.52, 0.08, 0.18, 1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.section dl.list > dt.openheader {
  background-color: rgba(237, 108, 0, 0.2);
  font-weight: bold;
}
.section dl.list > dt.openheader::after {
  opacity: .5;
}
.section dl.list > dd {
  padding: 15px 30px 20px 30px;
  font-size: 15px;
  text-align: justify;
  background-color: rgba(200, 200, 200, 0.1);
}
.section dl.list > dd p + p {
  margin-top: 1em;
}
.section dl.list > dd ul {
  margin: 15px 0;
}
.section dl.list > dd ul li {
  line-height: 1.4;
  margin: 5px 0;
  padding-left: 28px;
  text-indent: -28px;
}
.section dl.list > dd ul li span {
  padding: 0 5px;
  color: #ED6C00;
  font-size: 19px;
}
.section dl.list > dd strong {
  font-weight: bold;
  font-size: 17px;
}
.section dl.list > dd .notice {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}
.section dl.list > dd dl {
  background-color: #fff;
  margin-top: 1em;
  padding: 10px 20px;
}
.section dl.list > dd dl dt {
  color: #ED6C00;
  font-weight: bold;
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: #C8C8C8 1px solid;
}

/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-1 (1400px)
 
------------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-2 ( 960px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 959px) {
  ul.catlink li {
    width: 25%;
    margin-bottom: 10px;
  }
  ul.catlink li a br {
    display: inline;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-3 ( 644px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 644px) {
  #introtxt {
    line-height: inherit;
    margin-bottom: 40px;
    text-align: left;
  }

  ul.catlink {
    margin: 0 -5px;
    padding-bottom: 0;
  }
  ul.catlink li {
    width: auto;
    float: none;
  }
  ul.catlink li a {
    padding: 10px 10px;
    line-height: 1.3;
  }
  ul.catlink li a br {
    display: none;
  }
  ul.catlink li a::after {
    display: none;
  }

  .section {
    margin-top: 20px;
  }
  .section .cattitle {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .section .cattitle::before {
    font-size: 32px;
  }
  .section dl.list > dt {
    padding: 10px 20px 10px 32px;
  }
  .section dl.list > dt::after {
    font-size: 21px;
    right: 10px;
  }
  .section dl.list > dd {
    padding: 15px 22px 20px 22px;
  }
  .section dl.list > dd ul {
    margin: 15px 0 15px -5px;
  }
}
