@charset "UTF-8";
/* media query */
nav.navStd ul li.faq a {
  background-color: #f5f5f5;
  color: #222;
}

.anchorArea ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 30px;
}
@media screen and (max-width: 668px) {
  .anchorArea ul {
    display: block;
  }
}
.anchorArea ul li {
  padding-right: 20px;
  margin-right: 20px;
}
@media screen and (max-width: 668px) {
  .anchorArea ul li {
    margin-bottom: 10px;
    width: 100%;
    border-bottom: 1px solid #eee;
    padding-bottom: 2px;
  }
}
.anchorArea ul li a {
  position: relative;
  display: block;
  font-size: 1.1em;
  line-height: 250%;
}
@media screen and (max-width: 800px) {
  .anchorArea ul li a {
    font-size: 100%;
    line-height: 200%;
  }
}
.anchorArea ul li a::after {
  position: absolute;
  content: "";
  background-image: url(../images/arrow_down_black.svg);
  top: calc(50% - 3px);
  right: -20px;
  width: 8px;
  height: 5px;
  transition: 0.5s;
}
.anchorArea ul li a:hover::after {
  top: 50%;
}
.anchorArea ul li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 668px) {
  .anchorArea ul li:last-child {
    margin-bottom: 0;
  }
}
.anchorArea ul li.external a::after {
  position: absolute;
  content: "";
  background-image: url(../../common/images/icon_externallink.svg);
  background-size: cover;
  top: calc(50% - 7px);
  right: -20px;
  width: 13px;
  height: 13px;
  transition: 0.5s;
}
@media screen and (max-width: 668px) {
  .anchorArea ul li.external a::after {
    right: -23px;
  }
}
.anchorArea ul li.external a:hover::after {
  top: calc(50% - 4px);
}

section.inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media all and (max-width: 1200px) {
  section.inner {
    max-width: 100%;
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  section.inner {
    max-width: 100%;
    margin-left: 25px;
    margin-right: 25px;
  }
}
section .headline_normal {
  font-size: 1.4em;
  padding-bottom: 5px;
  margin: 50px 0 20px;
  border-bottom: 2px solid #222;
}
section .headline_normal span.icon {
  position: relative;
  font-size: 1.2em;
  padding: 5px 15px;
  margin-right: 10px;
  z-index: 1;
  text-align: center;
  margin: 0 20px 0 10px;
  color: #fff;
}
@media screen and (max-width: 668px) {
  section .headline_normal span.icon {
    font-size: 1em;
    padding: 5px 12px;
    margin: 0px 10px 0 5px;
  }
}
section .headline_normal span.icon::before {
  position: absolute;
  transform: skewX(-20deg);
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-color: #977A39;
}
@media screen and (max-width: 668px) {
  section .headline_normal span.icon::before {
    left: 3px;
  }
}
section .headline_small {
  font-size: 1.1em;
}
section .headline_small span.namber {
  font-weight: bold;
  margin-right: 10px;
}
section .headline_small.icon {
  position: relative;
  margin: 1em;
  margin-bottom: 5px;
}
section ul.notice li {
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 668px) {
  section ul.notice li {
    font-size: 0.9em;
  }
}
section ul.notice li.noindent {
  padding-left: 0;
  text-indent: 0;
}
section p {
  margin-bottom: 6px;
  overflow-wrap: break-word;
}
section p.link {
  text-align: center;
  margin: 30px 0;
}
section p.link a {
  position: relative;
  display: inline-block;
  border: 1px solid #ddd;
  line-height: 150%;
  font-size: 14px;
  color: #222;
  padding: 15px 40px 15px 25px;
  background-color: #fff;
  letter-spacing: 2px;
}
section p.link a::after {
  position: absolute;
  right: 20px;
  top: calc(50% - 5px);
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 5px auto;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%225%22%20height%3D%228.239%22%20viewBox%3D%220%200%205%208.239%22%3E%20%3Cpath%20id%3D%22chevron-right-solid%22%20d%3D%22M32.362%2C42.1%2C28.7%2C45.764a.453.453%2C0%2C0%2C1-.64%2C0l-.428-.428a.453.453%2C0%2C0%2C1%2C0-.64l2.906-2.92-2.906-2.92a.453.453%2C0%2C0%2C1%2C0-.64l.428-.428a.453.453%2C0%2C0%2C1%2C.64%2C0l3.667%2C3.667A.453.453%2C0%2C0%2C1%2C32.362%2C42.1Z%22%20transform%3D%22translate(-27.495%20-37.657)%22%20fill%3D%22%23ddd%22%2F%3E%3C%2Fsvg%3E");
  background-size: contain;
  transition: 0.5s;
}
section p.link a:hover {
  background-color: #3E577E;
  color: #fff;
  border: 1px solid #3E577E;
}
@media screen and (max-width: 960px) {
  section p.link a {
    padding: 10px 35px 10px 15px;
  }
}
section p.link a:hover::after {
  right: 15px;
}
section p.notice {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 92%;
  margin-top: 10px;
}
section p span.bold {
  font-weight: bold;
}
section p span.circle {
  color: #ccc;
  margin-right: 10px;
  font-size: 80%;
}
section p span.small {
  font-size: 95%;
}
section strong {
  font-weight: bold;
}
section span.note {
  font-size: 90%;
}
section span.qa {
  float: left;
  line-height: 0;
  background-color: #000;
  color: #fff;
  padding: 18px 12px;
  margin-right: 10px;
  max-height: 36px;
}
@media screen and (max-width: 668px) {
  section span.qa {
    padding: 16px 10px;
    margin-right: 0;
    max-height: 32px;
  }
}
section .mt20 {
  margin-top: 20px;
}
section .mt30 {
  margin-top: 30px;
}
section .mt40 {
  margin-top: 40px;
}
section .mt50 {
  margin-top: 50px;
}
section .red {
  color: #CB4B4B;
}
section .blue {
  color: #6071A7;
}

.keywordArea {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 60px;
}
@media all and (max-width: 1200px) {
  .keywordArea {
    max-width: 100%;
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .keywordArea {
    max-width: 100%;
    margin-left: 25px;
    margin-right: 25px;
  }
}
@media screen and (max-width: 960px) {
  .keywordArea {
    margin-bottom: 30px;
  }
}
.keywordArea > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.keywordArea > div .keyword {
  width: 100%;
  max-width: calc(96% - 200px);
}
@media screen and (max-width: 960px) {
  .keywordArea > div .keyword {
    max-width: calc(96% - 90px);
  }
}
.keywordArea > div .keyword .keywordBox {
  border: 1px solid #222;
  width: 100%;
  height: 54px;
  padding-left: 70px;
  font-size: 1.1em;
  letter-spacing: 1px;
  background: #fff url("../../common/images/icon_search.svg") no-repeat 26px center;
  background-size: 26px 26px;
  outline: none;
  cursor: pointer;
}
@media screen and (max-width: 668px) {
  .keywordArea > div .keyword .keywordBox {
    padding-left: 45px;
    font-size: 0.9em;
    background: #fff url("../../common/images/icon_search.svg") no-repeat 10px center;
  }
}
.keywordArea > div .submitBtn {
  text-align: center;
}
.keywordArea > div .submitBtn input[type="submit"] {
  width: 200px;
  font-size: 1.1em;
  letter-spacing: 1px;
  padding: 10px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 5px auto;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%225%22%20height%3D%228.239%22%20viewBox%3D%220%200%205%208.239%22%3E%20%3Cpath%20id%3D%22chevron-right-solid%22%20d%3D%22M32.362%2C42.1%2C28.7%2C45.764a.453.453%2C0%2C0%2C1-.64%2C0l-.428-.428a.453.453%2C0%2C0%2C1%2C0-.64l2.906-2.92-2.906-2.92a.453.453%2C0%2C0%2C1%2C0-.64l.428-.428a.453.453%2C0%2C0%2C1%2C.64%2C0l3.667%2C3.667A.453.453%2C0%2C0%2C1%2C32.362%2C42.1Z%22%20transform%3D%22translate(-27.495%20-37.657)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  background-position: right 15px center;
}
@media screen and (max-width: 668px) {
  .keywordArea > div .submitBtn input[type="submit"] {
    width: 90px;
    font-size: 0.8em;
    letter-spacing: 0;
    padding: 15px 5px;
    background-position: right 5px center;
  }
}
.keywordArea > div + p {
  margin-top: 10px;
}

.tableBox {
  margin-top: 10px;
  padding: 20px;
  border: 5px solid #f7f4ea;
}
@media screen and (max-width: 668px) {
  .tableBox {
    padding: 15px;
  }
}

@media screen and (max-width: 668px) {
  .spscroll {
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}

div.accordion_button {
  position: relative;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  padding-right: 25px;
}
@media screen and (max-width: 668px) {
  div.accordion_button {
    padding-bottom: 10px;
  }
}
div.accordion_button::after {
  position: absolute;
  content: "＋";
  font-weight: bold;
  top: 45%;
  transform: translateY(-50%);
  right: 0;
  font-size: 1.2em;
}
div.accordion_button:hover {
  opacity: 0.7;
  transition: 0.5s;
}
div.accordion_button.active::after {
  content: "－";
}
div.accordion_button div.text {
  max-width: 1100px;
}
@media screen and (max-width: 668px) {
  div.accordion_button div.text {
    max-width: 85%;
    line-height: 180%;
  }
}

.tableBox {
  display: none;
}
.tableBox span.qa {
  padding: 18px 13.5px;
}
@media screen and (max-width: 668px) {
  .tableBox span.qa {
    padding: 16px 11.5px;
  }
}
.tableBox p {
  max-width: 95%;
  margin: auto 0 auto auto;
}
@media screen and (max-width: 960px) {
  .tableBox p {
    max-width: 90%;
  }
}
@media screen and (max-width: 668px) {
  .tableBox p {
    max-width: 85%;
  }
}
.tableBox p a {
  text-decoration: underline;
}

.blueLink {
  position: relative;
  background-color: #fff;
  border: 1px solid #ddd;
  color: #222;
  letter-spacing: 2px;
  text-align: center;
  padding: 12px 40px 12px 25px;
  cursor: pointer;
  margin-top: 20px;
  display: inline-block;
}
.blueLink::after {
  position: absolute;
  content: "";
  background-image: url(../images/arrow_down_gray.svg);
  top: calc(50% - 3px);
  right: 20px;
  width: 8px;
  height: 5px;
  transition: 0.5s;
}
.blueLink:hover {
  background-color: #3E577E;
  color: #fff;
}
.blueLink:hover::after {
  background-image: url(../images/arrow_down_white.svg);
  top: 50%;
}

.accordion_contents {
  display: none;
}
.accordion_contents dl dd {
  padding-left: 1em;
  text-indent: -1em;
}

.searchWord {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 1.2em;
}
.searchWord dd {
  background: #eee;
  color: #000;
  text-align: center;
  padding: 0 10px;
  border-radius: 3px;
  margin-left: 15px;
}

.faqArea .none {
  font-size: 1.1em;
  text-align: center;
  margin: 20px 0 40px;
}
.faqArea .none + .back {
  text-align: center;
}

.faqArea.pickup div.accordion_button {
  margin-bottom: 5px;
}
.faqArea.pickup div.accordion_button span.qa {
  padding: 18px 12px;
}
@media screen and (max-width: 668px) {
  .faqArea.pickup div.accordion_button span.qa {
    padding: 16px 10px;
  }
}
.faqArea.pickup .catemap {
  margin-left: 80px;
  margin-bottom: 30px;
}
@media screen and (max-width: 668px) {
  .faqArea.pickup .catemap {
    margin-left: 0;
  }
}
.faqArea.pickup .catemap a {
  position: relative;
  font-size: 0.9em;
  text-align: center;
  margin-right: 30px;
  display: inline-block;
  text-decoration: underline;
  font-weight: bold;
  color: #666;
}
@media screen and (max-width: 668px) {
  .faqArea.pickup .catemap a {
    margin-right: 20px;
  }
}
.faqArea.pickup .catemap a::after {
  position: absolute;
  content: ">";
  top: 50%;
  transform: translateY(-50%);
  right: -18px;
}
@media screen and (max-width: 668px) {
  .faqArea.pickup .catemap a::after {
    right: -14px;
  }
}
.faqArea.pickup .catemap a:last-child::after {
  content: none;
}

.categoryArea ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 668px) {
  .categoryArea ul {
    display: block;
  }
}
.categoryArea ul li {
  width: 48.5%;
  background: url(../../common/images/bg_gray.png);
  padding: 25px;
  margin-bottom: 50px;
}
@media screen and (max-width: 668px) {
  .categoryArea ul li {
    width: 100%;
    padding: 20px;
    margin-bottom: 30px;
  }
}
.categoryArea ul li:last-child {
  margin-bottom: 0;
}
.categoryArea ul li h4 {
  text-align: left;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.categoryArea ul li h4 a {
  font-weight: bold;
  font-size: 1.2em;
}
.categoryArea ul li p {
  font-size: 1.2em;
  margin-bottom: 0;
}
@media screen and (max-width: 668px) {
  .categoryArea ul li p {
    font-size: 1.1em;
  }
}

body.detail section .headline_normal {
  position: relative;
  padding-left: 2.2em;
}
@media screen and (max-width: 668px) {
  body.detail section .headline_normal {
    padding-left: 2em;
  }
}
body.detail section .headline_normal::before {
  position: absolute;
  content: "▼";
  color: #977A39;
  top: 3px;
  left: 5px;
  font-size: 1.4em;
}
@media screen and (max-width: 668px) {
  body.detail section .headline_normal::before {
    font-size: 1.2em;
  }
}

.back {
  text-align: right;
}
.back:not(.first) {
  margin-top: 100px;
}
.back a {
  position: relative;
  display: inline-block;
  line-height: 150%;
  padding: 5px 15px 5px 0;
  border: none;
}
@media screen and (max-width: 668px) {
  .back a {
    font-size: 0.9em;
  }
}
.back a::after {
  position: absolute;
  right: 0;
  top: calc(50% - 5px);
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 5px auto;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%225%22%20height%3D%228.239%22%20viewBox%3D%220%200%205%208.239%22%3E%20%3Cpath%20id%3D%22chevron-right-solid%22%20d%3D%22M32.362%2C42.1%2C28.7%2C45.764a.453.453%2C0%2C0%2C1-.64%2C0l-.428-.428a.453.453%2C0%2C0%2C1%2C0-.64l2.906-2.92-2.906-2.92a.453.453%2C0%2C0%2C1%2C0-.64l.428-.428a.453.453%2C0%2C0%2C1%2C.64%2C0l3.667%2C3.667A.453.453%2C0%2C0%2C1%2C32.362%2C42.1Z%22%20transform%3D%22translate(-27.495%20-37.657)%22%20fill%3D%22%23ddd%22%2F%3E%3C%2Fsvg%3E");
  background-size: contain;
  transition: 0.5s;
}

.categoryName {
  background: #f7f4ea;
  padding: 5px;
  text-align: center;
  font-size: 1.8em;
}
@media screen and (max-width: 668px) {
  .categoryName {
    padding: 8px 5px;
    font-size: 1.4em;
    line-height: 140%;
  }
}

.tableBox .imageBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}
@media screen and (max-width: 668px) {
  .tableBox .imageBox {
    display: block;
  }
}
.tableBox .imageBox p {
  width: 48%;
  margin-bottom: 0;
}
@media screen and (max-width: 668px) {
  .tableBox .imageBox p {
    width: 100%;
  }
}
@media screen and (max-width: 668px) {
  .tableBox .imageBox p:last-child {
    margin-top: 20px;
  }
}
