@charset "UTF-8";
main{
}
.faq_head {
    max-width: 1024px;
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px auto 0;
}

.faq_tab {
    display: flex;
    align-items: center;
    background: #009844;
    padding: 1px;
    max-width: 328px;
  height: 120px;
    width: 100%;
    position: relative;
  cursor: pointer;
}
.faq_tab:hover{
  opacity: .8;
} 
.tab_img {
    max-width: 155px;
  height: 100%;
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tab_text {
    padding: 10px;
    font-weight: bold;
    color: #fff;
    width: 100%;
    text-align: center;
}
.faq_body {
  margin: auto;
  position: relative;
}
.box_outer{
  padding-top: 60px;
  padding-bottom: 60px;
}
.box_outer:nth-child(even){
  background: #EEEEEE;
}
.faq_box {
    display: none;
}
.faq_box.box_act {
    display: block;
}
.box_tit {
    text-align: center;
    font-size: 3.2rem;
    letter-spacing: 3px;
    color: #009844;
    margin: 0;
}
.box_sub {
    margin-top: 20px;
}
.box_nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
.nav_col .mt_10 {
    padding-left: 2em;
    text-indent: -1em;
}
.nav_col a {
  color: #000;
  text-decoration: underline;
}
.box_inner{
  max-width: 1024px;
  width: 90%;
  margin: auto;
}
.box_main {
  padding-top: 80px;
  margin-top: -20px;
}
.box_main.pt_0 {
  padding-top: 0px;
}
.box_name {
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #009844;
    text-align: center;
}
.box_row {
    margin-top: 30px;
}
.box_sw {
    display: none;
}
.box_q {
    display: flex;
    background: #fff;
  padding-right: 50px;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.box_q::after{
  content: '';
  background: url("../img/arrow.png") no-repeat center;
  display: block;
  width: 23px;
  height: 14px;
  position: absolute;
    right: 35px;
    top: 35px;
  transition: .5s;
}
.box_sw:checked ~ .box_q::after{
  transform: rotate3d(1,0,0,180deg);
}
.box_q_icon {
    min-width: 83px;
    min-height: 83px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #009844;
    font-size: 3.2rem;
    font-weight: bold;
    color: #fff;
  font-family: Arial, Helvetica, Meiryo, "sans-serif"
}
.box_q_text {
    display: flex;
    padding: 25px;
  font-size: 2rem;
}
.box_a_icon {
    min-width: 83px;
    min-height: 83px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    font-size: 3.2rem;
    font-weight: bold;
    color: #fff;
  font-family: Arial, Helvetica, Meiryo, "sans-serif"
}
.box_a {
  display: flex;
  background: #fff;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: .5s;
  position: relative;
  z-index: 0;
}
.box_sw:checked ~ .box_a {
  opacity: 1;
  height: auto;
  margin-top: 10px;
  transform: translateY(0px);
}
.box_a_text{
  display: block;
  width: 100%;
}
.box_sw:checked ~ .box_a .box_a_text {
    padding: 20px 30px;
}
.box_a a{
  color: #009844;
  text-decoration: underline;
}
.box_outer:nth-child(odd) .box_q{
    background: #eee;
}
.box_outer:nth-child(odd) .box_a{
    background: #eee;
}
.box_a_img {
    display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.box_a_table {
    display: flex;
  margin-top: 10px;
}
.box_a_table table {
  width: 100%;
    border-top: 1px solid #999999;
    border-left: 1px solid #999999;
}
.box_a_table table th {
    background: #009844;
    color: #fff;
    padding: 15px;
    border-right: 1px solid #999999;
    border-bottom: 1px solid #999999;
    font-weight: bold;
    text-align: center;
}
.box_a_table table th.left {
  text-align: left;
}
.box_a_table table td {
    padding: 15px;
    border-bottom: 1px solid #999999;
    border-right: 1px solid #999999;
}
.box_a_table table tr:nth-child(even) {
    background: rgba(126, 203, 160, .5);
}
@media screen and (max-width: 767px) {
.box_nav {
    flex-direction: column;
}
.box_q_icon {
    min-width: 50px;
    min-height: 50px;
    height: 50px;
    font-size: 2.4rem;
}
.box_a_icon {
    min-width: 50px;
    min-height: 50px;
    height: 50px;
    font-size: 2.4rem;
}
.box_q::after {
    top: 17px;
    right: 17px;
}
.box_q_text {
    padding: 10px;
    font-size: 1.6rem;
}
.box_a_text {
    line-height: 1.5;
    width: calc(100% - 50px);
}
.box_sw:checked ~ .box_a .box_a_text {
    padding: 10px;
}
.faq_head {
    flex-direction: column;
    align-items: center;
}
.faq_tab {
    height: 80px;
}
.tab_img {
    max-width: 100px;
  padding: 5px;
}
.tab_img img {
    max-height: 100%;
}
.box_tit {
    font-size: 2.8rem;
    letter-spacing: 0;
}
.box_a_table {
  overflow: scroll;
}
.box_a_table table {
  min-width: 800px;
}
}
@media print {

}