@charset "UTF-8";


/* anchorMenu
-----------------------------------------------*/
@media screen and (max-width: 750px) {
  .anchorMenu ul li {
    width: 100%;
  }
}


/* section
-----------------------------------------------*/
section {
  margin-top: 80px;
}
.anchorMenu + section {
  margin-top: 60px;
}
section h2 {
  font-size: 20px;
}
section .inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
section .box {
  border-top: 1px solid #e4e4e4;
}
section h2 + .box {
  margin-top: 30px;
}
section .box:last-child {
  border-bottom: 1px solid #e4e4e4;
}
section .box .ttl {
  position: relative;
  padding: 25px 60px 25px 25px;
  cursor: pointer;
}
section .box .ttl::before {
  content: "";
  position: absolute;
  right: 44px;
  top: 38px;
  width: 2px;
  height: 18px;
  background: #333;
  margin-top: -9px;
  opacity: 1;
}
section .box .ttl::after {
  content: "";
  position: absolute;
  right: 36px;
  top: 37px;
  width: 18px;
  height: 2px;
  background: #333;
}
section .box .ttl.active::after {
  opacity: 0;
}
section .box .ttl::before,
section .box .ttl::after {
  transition: transform 0.35s, opacity 0.35s;
}
section .box .ttl.active::before,
section .box .ttl.active::after {
  transform: rotate(90deg);
}
section .box .ttl h3 {
  position: relative;
  font-size: 16px;
  padding-left: 40px;
  line-height: 1.75em;
}
section .box .ttl h3::before {
  content: "Q";
  position: absolute;
  color: #003557;
  left: 5px;
  top: -1px;
  font-size: 26px;
  font-family: 'Oswald', sans-serif;
  font-weight: 100;
}
section .box .txt {
  display: none;
  position: relative;
  padding: 0 30px 32px;
}
section .box .txt .inner {
  position: relative;
  padding-left: 35px;
}
section .box .txt .inner::before {
  content: "A";
  color: #FF7E00;
  position: absolute;
  left: 1px;
  top: 4px;
  font-size: 26px;
  font-family: 'Oswald', sans-serif;
  font-weight: 100;
}
section .box .txt p {
  font-size: 14px;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  section {
    margin-top: 60px;
  }
  .anchorMenu + section {
    margin-top: 30px;
  }
  section h2 {
    font-size: 16px;
  }
  section h2 + .box {
    margin-top: 20px;
  }
  section .box .ttl {
    position: relative;
    padding: 15px 35px 15px 25px;
    cursor: pointer;
  }
  section .box .ttl h3 {
    font-size: 14px;
    line-height: 2em;
    padding-left: 12px;
  }
  section .box .ttl h3::before {
    left: -13px;
    top: -1px;
  }
  section .box .ttl::before {
    right: 18px;
    top: 30px;
  }
  section .box .ttl::after {
    right: 10px;
    top: 29px;
  }
  section .box .txt {
    padding: 0 35px 20px 30px;
  }
  section .box .txt .inner {
    padding-left: 8px;
  }
  section .box .txt .inner::before {
    left: -18px;
    top: 4px;
  }
}