@charset "UTF-8";
.under_mv::before{
  background: url("../img/mv.png") no-repeat center left;
  -webkit-background-size: cover;
  background-size: cover;
}
main{
  padding-bottom: 65px;
}
.sec_title {
  margin: 0;
  font-size: 3.6rem;
}
.guide {
    margin-top: 60px;
}
.guide_inner {
    max-width: 896px;
    width: 90%;
  margin: auto;
}
.guide_nav {
    display: flex;
    justify-content: center;
    align-items: center;
  border-bottom: 2px solid #FF9933;
  gap:20px;
}
.guide_name {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    width: 50%;
    position: relative;
    padding: 15px 0;
    cursor: pointer;
  background: #F4F4F4;
  color: #000;
  transition: .3s;
  border-radius: 16px 16px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.guide_name.act{
  background: #F93;
  color: #fff;
}
.guide_name::before{
  content: '';
  display: block;
  background: url("../img/arrow.svg") no-repeat center;
  width: 13px;
  height: 8px;
  margin-right: 10px;
  transition: .3s;
}
.guide_name.act::before{
  filter: brightness(0) invert(1);
}
.guide_body {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .3s;
  height: 0;
  overflow: hidden;
  line-height: 2;
}
.guide_body.act {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition: .3s;
  height: auto;
}
.guide_title {
    margin: 0;
  color: #F93;
    font-size: 2.4rem;
}
.guide_table {
    width: 100%;
    border-top: 1px solid #B7B0A3;
    margin-top: 30px;
}
.guide_table th {
  border-bottom: 1px solid #B7B0A3;
  text-align: left;
  padding: 15px 0;
    width: 225px;
}
.guide_table td {
  border-bottom: 1px solid #B7B0A3;
  padding: 15px 0;
}
.media_title {
    margin: 0;
    font-weight: normal;
    font-size: 1.6rem;
    text-indent: -1.1em;
    padding-left: 1.1em;
}
.media_chill {
    padding-left: 1.1em;
}
.media_chill p {
    text-indent: -1.9em;
    padding-left: 1.9em;
}
.guide_cell a {
    color: #FF9933;
    text-decoration: underline;
}



@media screen and (max-width: 767px) {
  .guide_body .center {
    text-align: left;
  }
.guide_nav {
  gap:0;
}
.guide_name {
  font-size: 1.2rem;
  border-radius: 6px 6px 0 0;
}
.guide_name::before{
  margin-right: 10px;
}
.guide_table,
.guide_table tbody,
.guide_table tr,
.guide_table th,
.guide_table td {
    width: 100%;
  display: block;
}
.guide_table th{
  border-bottom: none;
  padding-bottom: 0;
}
}
@media print {

}