@charset "utf-8";

/*
Theme Name: KOBUKURO TICKET FAQ
Author: Shiro Nishiyama
Description: KOBUKURO TICKET
Version: 1.0
*/

html {
  color: #000;
  background: #fff;
}
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
fieldset,
img {
  border: 0;
}
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}
li {
  list-style: none;
}
caption,
th {
  text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
q:before,
q:after {
  content: "";
}
abbr,
acronym {
  border: 0;
  font-variant: normal;
}
sup {
  vertical-align: text-top;
}
sub {
  vertical-align: text-bottom;
}
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}
input,
textarea,
select {
  *font-size: 100%;
}
legend {
  color: #000;
}
del,
ins {
  text-decoration: none;
}
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/* clearfix
------------------------------ */
.clearfix::after {
  display: table;
  content: "";
  clear: both;
}

/* base
============================== */
html,
body {
  -webkit-text-size-adjust: none;
  word-break: normal;
  width: 100%;
  height: 100%;
  background: #F7F7F7;
  color: #202020;
  font-family: Roboto, "モトヤLシーダ3等幅", MotoyaLCedar, -apple-system,
    BlinkMacSystemFont, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN",
    sans-serif;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
#wrap {
  min-height: 100%;
  position: relative;
}
#wrap ~ img {
  display: none;
}
a {
  color: #0064b2;
}
a,
a::before {
  transition: all 0.3s ease;
}
button,
textarea,
select,
img,
input {
  outline: none;
}

@media screen and (min-width: 960px) {
  /* base pc */
  .sp {
    display: none !important;
  }
  a:hover {
    text-decoration: none;
  }
  body {
    font-size: 16px;
  }
  #wrap {
    padding: 90px 0;
  }
  #container {
    width: 700px;
    margin: 0 auto;
  }

}
@media screen and (max-width: 960px) {
  /* base sp */
  .pc {
    display: none !important;
  }
  body {
    font-size: 16px;
  }
  #wrap {
    padding: 50px 0;
    overflow: hidden;
  }


  .section--single,
  .section--category,
  .section--tag,
  .section--contact {
    margin: 70px 5% ;
  }


}
#bitnami-banner {
  display: none !important;
  pointer-events: none;
}

/* header
============================== */
header {
  width: 100%;
  background: #fff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 25px 3% 25px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}

header .logo a {
  text-decoration: none;
  font-weight: 800;
}
@media screen and (min-width: 960px) {
  /* header pc */
  header .logo {
    float: left;
    font-size: 1.5rem;
  }

  header .fanplus {
    width: 140px;
    float: right;
    padding: 24px 30px 20px 0;
  }
  header .fanplus a {
/*     display: inline-block;
    width: 100%;
    height: 26px;
    background: url(/wp-content/themes/emtgfaq/assets/images/logo_header_fanplus.png)
      no-repeat left top;
    background-size: contain;
    text-indent: -9999px;
    pointer-events: none; */
  }
  /* gnav */
  header #gnav {
  }
  header #gnav li {
    display: inline-block;
  }
  header #gnav li.category,
  header #gnav li.faq,
  header #gnav li.login,
  header #gnav li.logout {
    display: none;
  }
  header #gnav a {
    display: inline-block;
    color: #222;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 24px 10px;
    position: relative;
  }
  header #gnav a::after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    background: #0064b2;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  header #gnav a:hover {
    color: #0064b2;
  }
  header #gnav a:hover::after {
    height: 3px;
  }
}
@media screen and (max-width: 960px) {
  /* header sp */
  header {
    display: flex;
    align-items: center;
    padding: 15px 3%;
    gap: 15px;
  }

  header .logo {
    float: left;
    font-size: 1.1rem;
  }


  /* gnav */
  header #gnav {
    width: 70%;
    height: 100%;
    background: #202020;
    padding: 20px 0 0 20px;
    position: fixed;
    left: -100%;
    top: 0;
    z-index: 998;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  header #gnav .faq {
    border-bottom: 1px solid #444;
    padding: 0 0 10px;
    margin: 0 0 10px;
  }
  header #gnav li.category {
    padding: 7.5px 20px 7.5px 0;
  }
  header #gnav a {
    display: block;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    line-height: 24px;
  }
  /* loginNav */
  header #loginNav {
    position: absolute;
    right: 0;
    top: 0;
  }
  header #loginNav li {
    width: 50px;
    height: 50px;
    float: left;
  }
  header #loginNav li a {
    display: block;
    width: 100%;
    height: 100%;
    color: #151515;
    font-size: 9px;
    line-height: 10px;
    text-align: center;
    text-decoration: none;
    padding: 9px 0 0;
  }
  header #loginNav li svg {
    width: 50px;
    height: 20px;
  }
  header #loginNav .logout {
    display: none;
  }
  header #langtype-link {
    width: 100%;
    display: none;
    background: #0064b2;
    text-align: center;
    position: fixed;
    left: 0;
    top: 50px;
  }
  header #langtype-link li {
    display: inline-block;
  }
  header #langtype-link a {
    display: block;
    color: #fff;
    text-decoration: none;
    line-height: 50px;
    padding: 0 10px;
    position: relative;
  }
  header #langtype-link .current a::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border: 3px solid transparent;
    border-top: 3px solid #fff;
    margin-left: -3px;
    position: absolute;
    left: 50%;
    top: 7px;
  }
  .languageOpen header #loginNav .language a {
    color: #0064b2;
  }
  .languageOpen header #loginNav .language path {
    fill: #0064b2;
  }

  /* navBtn */
  header #navBtn {
    order: -1;
    position: relative;
    top: auto;
    left: auto;
    display: block;
    width: 26px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
    z-index: 1000;
  }
  header #navBtn .bar {
    display: block;
    position: absolute;
    width: 26px;
    height: 2px;
    background: #0064b2;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  header #navBtn .top {
    top: 0px;
  }
  header #navBtn .mid {
    top: 8px;
  }
  header #navBtn .btm {
    top: 16px;
  }

  /* menuOpen */
  .menuOpen header #navBtn .top {
    top: 7px;
    -webkit-transform: rotate(45deg);
  }
  .menuOpen header #navBtn .mid {
    opacity: 0;
  }
  .menuOpen header #navBtn .btm {
    top: 7px;
    -webkit-transform: rotate(-45deg);
  }
  .menuOpen header #gnav {
    left: 0;
    top: 0;
  }
  .menuOpen header,
  .menuOpen #wrap {
  }
  .menuOpen header,
  .menuOpen footer,
  .menuOpen #container,
  .menuOpen #langtype-link {
    left: 70%;
  }
}
@media screen and (max-width: 560px) {
  header .logo a {
    width: 50%;
  }
}

/* footer
============================== */
footer {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
}
footer .bnr {
  width: 220px;
  margin: 0 auto 10px;
}
footer .bnr a {
  display: block;
  line-height: 0;
}
footer .bnr a img {
  width: 100%;
}
footer #supportNav li {
  display: inline-block;
}
footer #supportNav a {
  display: inline-block;
  color: #666;
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
  padding: 0 10px;
}
footer .copyright {
  color: #888;
  font-size: 10px;
  line-height: 1.4;
  padding: 0 0 15px;
}
@media screen and (min-width: 960px) {
  /* footer pc */
  footer #supportNav {
    padding: 15px 0;
  }
  footer #supportNav a:hover {
    color: #0064b2;
  }
  footer #supportNav li a {
    border-right: 1px solid #aaa;
  }
  footer #supportNav li:last-child a {
    border: none;
  }
}
@media screen and (max-width: 960px) {
  /* footer sp */
  footer {
    left: 0;
  }
  footer .bnr {
    width: 180px;
    margin: 0 auto 10px;
  }
  footer li {
    margin: 0;
  }
  footer #supportNav {
    display: none;
    padding: 10px 5%;
    margin: 0 auto;
  }
  footer #supportNav a {
    font-weight: normal;
    padding: 0 5px;
  }
}

/* component
============================== */
@media screen and (min-width: 960px) {
  /* pc */
  h1 {
    font-size: 26px;
    color: #888;
    margin: 0 0 0.5em;
  }
  h2 {
    font-size: 22px;
    line-height: 40px;
  }
  h3 {
    font-size: 1.2rem;
    color: #888;
    margin: 0 0 1.5em;
  }
  section {
    margin: 3em 0;
  }
}
@media screen and (max-width: 960px) {
  /* sp */
  h1 {
    font-size: 1.4rem;
    margin: 0 0 0.3em;
    color: #888;
  }
  h2 {
    font-size: 1.2rem;
    color: #888;
    margin: 0 0 0.3em;
  }
  h3 {
    font-size: 1.2rem;
    color: #888;
    margin: 0 0 0.7em;
  }
  section {
    margin: 3em 0;
  }
}

/* list
------------------------------ */
.list--category,
.list--article {
  background: #fff;
  border-radius: 7px;
  margin: 0px;
}

.list--category.child {
  border: 1px solid #DDDDDD;
}

.list--category a,
.list--article a,
.list--search a {
  display: block;
  color: inherit;
  text-decoration: none;
  position: relative;
}

.list--category .cat-item a::after,
.list--article a::after,
.list--search a::after {
  content: "";
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  border-right: 2px solid;
  border-top: 2px solid;
  margin: -0.2em 0 0;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: rotate(45deg);
  opacity: 0.3;
}


.home .list--article a::before,
.section--single h3::before {
  display: inline-block;
  content: "Q";
  width: 1.6em;
  height: 1.6em;
  background: #0064b2;
  color: #fff;
  font-weight: 600;
  text-align: center;
  line-height: 1.6em;
  border-radius: 50%;
  position: absolute;
}

.list--article a::before,
.section--single h3::before {
  display: inline-block;
  content: "Q";
  width: 2em;
  height: 2em;
  background: #0064b2;
  color: #fff;
  font-weight: 600;
  text-align: center;
  line-height: 2em;
  border-radius: 50%;
  position: absolute;
  left: 14px;
}


.list--article a::before {
  margin-top: 0;
}

.list--article li:nth-child(n + 6) {
  display: none;
}

/* 開いたら全件表示 */
.list--article.is-open li {
  display: list-item;
}

.list--category.parent {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  background: transparent;
  box-shadow: none;
}

.list--category.parent li {
  width: auto;
  float: none;
  border: none;
  background-color: #fff;
  border: 1px solid #DDDDDD;
  border-radius: 7px;
  overflow: hidden;
}

.list--category.parent a svg * {
  fill: #9b9b9b;
  transition: all 0.3s ease;
}
.list--category.child li {
  padding-right: 15px;
}

.list--category.child li:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
.list--search a {
  background: #fff;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.4);
  margin: 0 0 1em;
}
.list--search .cat {
  font-size: 0.7em;
  opacity: 0.5;
}
.list--search .tit {
  color: #0064b2;
  margin: 0.2em 0;
}
.list--search .tit .search-everything-highlight {
  font-weight: inherit !important;
}
.list--search .summary {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.search-result em {
  font-size: 1.4em;
  color: #0064b2;
  padding: 0 0.2em;
}

 .list--article li:not(:last-child) {
    border-bottom: 1px solid #ddd;
  }

  .list--article:not(.is-open) li:nth-child(5) {
  border-bottom: none;
  }

  .list--article.is-open + .btn_accordion::after {
    opacity: 0;
  }

  .section--tag-list .list--article ,
  .section--category-list .list--article {
    border-radius: 7px;
    border: 1px solid #DDDDDD;
  }



@media screen and (min-width: 960px) {
  /* pc */
  .list--category a {
    padding: 1.7em 3.5em;
  }

  .list--article li {
    padding: 1.7em 15px 1.7em 70px;
  }

  .list--category.parent li a {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 36px;
  }

  .list--category.parent a img {
    position: static;
    margin-top: 0;
    left: auto;
    top: auto;
  }

  .list--category.parent li a > svg,
  .list--category.parent li a > img {
    width: 50px;
    height: 60px;
    object-fit: contain;
    flex: 0 0 96px;
  }

  .list--category__text {
    flex: 1;
    min-width: 0;
  }

   .list--category__title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #0064b2;
    line-height: 1.4;
  }

  .list--category__description {
    margin: 6px 0 0;
    font-size: 16px;
    line-height: 1.6;
  }

  .list--category.child a {
    padding-left: 1em;
  }

  .list--article a::before {
    left: -3em;
    bottom: -0.1em;
  }

  .list--search a {
    padding: 1.5em 2em;
  }
  .list--search .tit {
    font-size: 18px;
  }
  .list--search .summary {
    font-size: 13px;
  }

  .list--category a:hover,
  .list--search a:hover {
    background: #e6f3ff;
  }

    /* .list--article a:hover, */
  .list--category.child a:hover,
  .list--article a:hover {
    color: #0064b2;
    background: #ffffff;
  }

  .list--article a:hover::before {
    background: #0064b2;
  } 

  .list--category.parent a svg {
    left: 1em;
  }
  .list--category.parent a:hover svg * {
    fill: #0064b2;
  }

  .home .list--article a::before,
  .section--single h3::before {
    width: 1.8em;
    height: 1.8em;
    line-height: 1.8em;
  }

  .list--article a::before,
  .section--single h3::before {
    width: 2em;
    height: 2em;
    line-height: 2em;
  }
}
@media screen and (max-width: 960px) {
  /* sp */

  .list--article a {
    padding-right: 1.2em;
  }

  .home .list--article a::before,
  .search .list--article a::before {
    left: 0em;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .wp-singular .list--article a::before {
    left: 0.7em;
  }

  .list--article li a {
    padding: 1.2em 24px 1.2em 2.4em;
    position: relative;
  }

  .list--article a::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -2.7em;
  }

  .home .list--category.child li:not(:last-child) {
    border-bottom: none;
  }
  .home .list--category li {
    height: auto;
    min-height: 176px;
    padding: 0;
  }

  .list--category a {
    padding: 0.7em 1.5em;
  }

  .list--category.parent {
    /* grid-template-columns: repeat(2, 1fr);
    gap: 10px; */
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
  }

  .list--category.parent li {
    height: auto;
    min-height: 180px;
    padding: 0;
    width: calc(50% - 5px);
  }

  .list--category.parent li a {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;    
    text-align: center;
    padding: 20px 10px;
    gap: 8px;
    overflow: hidden;
  }

  .list--category.parent li a > svg,
  .list--category.parent li a > img {
    position: static;
    width: 70px;
    height: 70px;
    flex: none;
    margin: 0;
    object-fit: contain;
  }

  .list--category__text {
    width: 100%;
  }

  .list--category__title {
    margin: 0;
    color: #0064b2;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
  }

  .list--category__description {
    margin: 6px 0 0;
    color: #202020;
    font-size: 13px;
    line-height: 1.5;
    /* word-break: keep-all; */
  }

  .list--search li {
    margin: 0 -5.5%;
  }
  .list--search a {
    padding: 1em 6% 1em 5%;
  }
  .list--search .tit {
    font-size: 1.1rem;
  }
  .list--search .summary {
    font-size: 0.8rem;
  }

  .list--category .cat-item a::after,
  .list--article a::after,
  .list--search a::after {
    content: "";
    right: 0.5em;
  }

  .section--category-list,
  .section--tag-list {
    margin: 3em 5%;
  }

  .section--category-list .list--article li a {
    padding: 1.2em 24px 1.2em 3.4em;
  }

  .section--category-list .list--article li a::before {
    left: 0.8em;
  }
}

/* tag
------------------------------ */
.list--tag > div:not(.moreTags),
.list--tag .moreTags div {
  display: inline-block;
}
.list--tag a {
  display: inline-block;
  background: #fff;
  text-decoration: none;
  border: 1px solid;
  border-radius: 4px;
  padding: 0.2em 0.5em;
  margin: 0 0.2em 0.5em 0;
}
.list--tag div.moreTags {
  opacity: 0;
  height: 0;
  transition: 0.3s;
}
.list--tag .btn--more.visible {
  display: none;
}
.list--tag .btn--more.visible + .moreTags {
  opacity: 1;
  height: auto;
}
.btn--more {
  width: 30%;
  display: block;
  padding: 10px 0;
  margin-top: 0.5em;
  font-size: 0.88rem !important;
  line-height: 1;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}
.btn--more i {
  color: #a7a7a7;
  margin-right: 5px;
}
.btn--more:hover {
  opacity: 0.5;
}

@media screen and (min-width: 960px) {
  /* pc */
  .list--tag a:hover {
    background: #0064b2;
    color: #fff;
  }
  .list--tag a {
    font-size: inherit !important;
  }
}
@media screen and (max-width: 960px) {
  /* sp */
  .list--tag a {
    font-size: 0.88rem !important;
  }
  .btn--more {
    margin-top: 0;
  }
}

/* pager
------------------------------ */
.section--pager {
  margin: 40px auto;
}
.block--pager {
  text-align: center;
  letter-spacing: -0.5em;
}
.block--pager li {
  position: relative;
  display: inline-block;
  padding: 0.6em;
  margin: 0 5px;
  letter-spacing: 0.03em;
  vertical-align: middle;
}
.block--pager li a,
.block--pager li span {
  display: block;
  height: 2.4em;
  line-height: 2.3em;
  text-decoration: none;
}
.block--pager .pager__item--current {
  position: relative;
}
.block--pager .pager__item--current::after {
  position: absolute;
  bottom: 7px;
  left: 10%;
  content: "";
  display: block;
  background: #c7d8e6;
  opacity: 0.3;
  width: 80%;
  height: 10px;
}
.block--pager .pager__item--newer {
  float: left;
  text-align: left;
  padding-left: 50px;
}
.block--pager .pager__item--newer a::before,
.block--pager .pager__item--newer span::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #202020;
  border-top: none;
  border-right: none;
  position: absolute;
  top: 50%;
  left: -2px;
  margin-top: -11px;
  line-height: 0;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  transform: rotate(45deg);
}
.block--pager .pager__item--newer a:hover::before {
  opacity: 0.2;
}
.block--pager .pager__item--older {
  float: right;
  text-align: right;
  padding-right: 50px;
}
.block--pager .pager__item--older a::after,
.block--pager .pager__item--older span::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #202020;
  border-bottom: none;
  border-left: none;
  position: absolute;
  top: 50%;
  right: -2px;
  margin-top: -4px;
  line-height: 0;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  transform: rotate(45deg);
}
.block--pager .pager__item--older a:hover::after {
  opacity: 0.2;
}
.block--pager .pager__item--newer span,
.block--pager .pager__item--older span {
  opacity: 0.2;
}
@media screen and (max-width: 960px) {
  /* sp */
  .section--pager {
    margin: 40px auto 20px;
  }
  .block--pager li {
    margin: 0;
  }
  .block--pager .pager__item--newer {
    padding-left: 20px;
  }
  .block--pager .pager__item--older {
    padding-right: 20px;
  }
  .block--pager .pager__item--newer a::before,
  .block--pager .pager__item--newer span::before {
    width: 15px;
    height: 15px;
    left: 4px;
    margin-top: -11px;
    line-height: 0;
  }
  .block--pager .pager__item--older a::after,
  .block--pager .pager__item--older span::after {
    width: 15px;
    height: 15px;
    right: 4px;
    margin-top: -9px;
  }
}

/* single
------------------------------ */
.section--single {
  background: #fff;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.4);
  border-radius: 7px;
  margin: 10px 5%;
}
.section--single h3 {
  color: inherit;
  position: relative;
}
.section--single h3::before {
  left: -2.7em;
}
.section--single article {
  position: relative;
  margin: 0 0 2em;
}
.section--single article::before {
  display: inline-block;
  content: "A";
  width: 1.9em;
  height: 1.9em;
  color: #0064b2;
  font-weight: 600;
  text-align: center;
  line-height: 1.9em;
  border: 2px solid;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: -2.7em;
}
.section--single .tit--keyword {
  font-size: 0.9em;
  opacity: 0.5;
  margin: 1em 0;
}
.section--single .list--tag {
  font-size: 0.8em;
}

.section--single article a {
  word-break: break-all;
}

article p {
  line-height: 1.8;
  margin: 0 0 1em;
}
article strong {
  font-weight: bold;
}
article em {
  font-family: serif;
  font-style: italic;
}
article ul,
article ol {
  padding: 0 0 0 1.5em;
  margin: 0 0 1.5em;
}
article ul li {
  list-style: disc;
}
article ol li {
  list-style: decimal;
}
article del {
  text-decoration: line-through;
}
article a {
  text-decoration: underline;
}
article hr {
  border: none;
  border-bottom: 1px solid;
  margin: 2em 0;
  opacity: 0.2;
}
article img {
  max-width: 100%;
  display: block;
  margin: 2em auto;
}
article iframe {
  width: 100%;
  height: 400px;
  margin: 2em 0;
}


.category--tit {
  margin-top: 3em;
}

@media screen and (min-width: 960px) {
  /* pc */
  .section--single {
    margin: 1em 0;
    padding: 70px;
  }

  .section--single h3 {
    color: inherit;
    font-size: 20px;
    margin: 0 0 1.5em 3rem;
  }
  .section--single article {
    padding-top: 0.4em;
    margin-left: 3rem;
  }
  .section--single article::before {
    font-size: 20px;
  }

  article a:hover {
    color: #0064b2;
    text-decoration: none;
  }

}
@media screen and (max-width: 960px) {
  /* sp */
  .single #container {
    padding-top: 0;
  }

  .section--single {
    padding: 20px;
  }

  .section--single h3 {
    font-size: 1.2rem;
    margin: 0 0 1.2em 0;
  }
  .section--single h3::before,
  .section--single article::before {
    display: block;
    font-size: 1rem;
    left: 0;
    position: static;
    margin-bottom: 0.5em;
  }
  .single .list--article  {
    border-top: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD;
    border-radius: 0;
  }
  .single .list--article a {
    padding-left: 3.5em;
  }
  /* .single .list--article a::before {
    content: "Q.";
    background: transparent;
    color: #0064b2;
  } */
  .section--single article {
    padding-top: 0.2em;
    margin-left: 0;
  }
  .section--contact p {
    font-size: 0.9rem;
  }

  .category--tit {
    margin: 2em 5% 0.5em;
  }
}

/* afb_container
============================== */
.section--single .afb_container {
  background: #f7f7f7;
  text-align: center;
  border-radius: 5px;
  margin: 3em 0 0;
}
.section--single .afb_container::after {
  display: table;
  content: "";
  clear: both;
}
.section--single .afb_container .message {
  font-weight: bold;
  opacity: 0.6;
  margin: 0;
}
.section--single .afb_container .good {
  margin-right: 1%;
}
.section--single .afb_container .bad {
  margin-left: 1%;
}

@media screen and (min-width: 960px) {
  /* pc */
  .section--single .afb_container {
    padding: 1.5em;
    margin-left: -3rem;
  }
  .section--single .afb_container a {
    min-width: 220px;
    margin-top: 1em;
  }
}
@media screen and (max-width: 960px) {
  /* sp */
  .section--single .afb_container {
    padding: 1em;
    margin-left: 0;
  }
  .section--single .afb_container a {
    width: 49%;
    float: left;
    margin-top: 0.5em;
  }
}

/* btn
------------------------------ */
.btn {
  text-align: center;
}
.btn a,
.btn input,
.btn button,
.afb_container a {
  -webkit-appearance: none;
  display: inline-block;
  text-decoration: none;
  box-sizing: border-box;
  border: 1px solid;
  border-radius: 4px;
  margin-top: 2em;
}
.btn .main,
.afb_container .good {
  background: #0064b2;
  color: #fff;
  border-color: #0064b2;
}
.btn .sub,
.afb_container .bad {
  background: #888;
  color: #fff;
  border-color: #888;
}

.btn--back {
  width: 80%;
  display: block;
  padding: 10px 0;
  margin: 1em auto;
  font-size: 0.88rem !important;
  line-height: 1;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
}
.btn--back a {
  display: inline-block;
  position: relative;
  color: #666;
  text-decoration: none;
  padding-left: 0.8em;
}
.btn--back a::before {
  content: "";
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  border-right: 2px solid;
  border-top: 2px solid;
  margin: -0.3em 0 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: rotate(-135deg);
  opacity: 0.6;
  transition: none;
}
.btn--back a:hover,
.btn--back a:hover::before {
  color: #0064b2;
}
.link {
  display: block;
  background: #f7f7f7;
  text-decoration: none;
  line-height: 1.5;
  padding: 0.5em 1.2em 0.5em 1em;
  margin: 1em 0;
  position: relative;
}
.link::after {
  content: "";
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  color: #202020;
  border-right: 2px solid;
  border-top: 2px solid;
  margin: -0.2em 0 0;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: rotate(45deg);
  opacity: 0.3;
}
@media screen and (min-width: 960px) {
  /* pc */
  .btn a,
  .btn input,
  .btn button,
  .afb_container a {
    width: auto;
    min-width: 400px;
    font-size: 18px;
    line-height: 45px;
    padding: 0 10px;
  }
  .btn a:hover,
  .btn input:hover,
  .btn button:hover,
  .afb_container a:hover {
    box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.25);
  }
  .btn .main:hover,
  .afb_container .good:hover {
    background: #0064b2;
  }
  .btn .sub:hover,
  .afb_container .bad:hover {
    background: #fff;
    color: #0064b2;
    border-color: #0064b2;
  }

  .link:hover {
    background: #0064b2;
    color: #fff;
  }
  .link:hover::after {
    color: #fff;
  }
}
@media screen and (max-width: 960px) {
  /* sp */
  .btn a,
  .btn input,
  .afb_container a {
    width: 100%;
    font-size: 1.2rem;
    line-height: 44px;
    padding: 0;
  }
}

/* section-tit
------------------------------ */
.section-tit {
  color: #0064B2;
  font-weight: 700;
  margin: 0 0 0.5em;
  font-weight: 700;
}


/* section--search
------------------------------ */
.section--search {
  background: linear-gradient(
  66deg,
  #6298F6 30%,
  #5498E0 65%,
  #9fd1e8 100%
);
  text-align: center;
  color: #fff;
}

.section--search .section-tit {
  font-weight: 600;
  color: #fff;
}

.section--search .txt--sub {
  font-size: 11px;
  opacity: 0.8;
}

@media screen and (min-width: 960px) {
  /* pc */
  .section--search {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 33px 30px;
    font-size: 16px;
    font-weight: 400;
  }

  .section--search .section-tit {
    font-size: 26px;
    margin-bottom: 0.1em;
  }

  .section--search .tit {
    margin-bottom: 25px;
  }

}

@media screen and (max-width: 960px) {
  /* sp */
  .section--search {
    padding: 33px 30px 25px;
  }

  .section--search .section-tit {
    font-size: 20px;
    margin: 0 0 0.2em;
  }

  .section--search .tit {
    margin-bottom: 18px;
    font-size: 13px;
  }

  .section--search .txt--sub {
    font-size: 11px;
  }
}



/* search-form
------------------------------ */
.search-form {
  position: relative;
  margin: 0 auto 10px;
}
.search-form input[type="search"] {
  -webkit-appearance: none;
  display: block;
  width: 100%;
  background:
  linear-gradient(#fff, #fff) padding-box,
  linear-gradient(
    90deg,
    #8DB4F7 0%,
    #76B0ED 34%,
    #B1D8F7 100%
  ) border-box;
  border: 2px solid transparent;
  border-radius: 200px;
  
}
.search-form input[type="search"]::placeholder {
  color: #bbb;
}
.search-form input[type="submit"] {
  display: block;
  width: 2.8em;
  height: 100%;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}

.search-form .btn--search {
  line-height: 0;
  position: absolute;
  background: linear-gradient(66deg, #427bc5 0%, #62addc 55%, #9ec4e1 100%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center; 
}

@media screen and (min-width: 960px) {
  /* pc */
  .search-form {
    font-size: 18px;
    width: 491px;
    position: relative;
  }
  .search-form input[type="search"] {
    line-height: 60px;
    padding: 0 1em 0 2em;
    font-size: 1rem;
  }

  .section--search .btn--search {
    transition: transform transform 0.6s cubic-bezier(0.25, 0.1, 0, 1.01);
    transition: all 0.3s ease;
  }

  .search-icon:hover .btn--search {
    transform: translateY(-50%) scale(1.03);
}

}
@media screen and (max-width: 960px) {
  /* sp */
  .search-form {
    font-size: 1.2rem;
  }
  .search-form input[type="search"] {
    padding: 1.2em 2em;
    font-size: 16px;
  }
  .search-form .btn--search {

  }
}

/* search autocomplete custom
------------------------------ */
.ui-widget.ui-widget-content {
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 10px;
}
.ui-menu .ui-menu-item {
  margin: 0;
  cursor: pointer;
}
.ui-menu .ui-menu-item-wrapper {
  padding: 10px 1em 10px 1em;
}
.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
@media screen and (min-width: 960px) {
  /* pc */
  .ui-widget.ui-widget-content {
    width: 491px;
    margin-top: 20px;
  }
  .ui-menu .ui-menu-item-wrapper:hover {
    font-weight: normal;
    color: #0064b2;
  }
}
@media screen and (max-width: 960px) {
  /* sp */
  .ui-widget.ui-widget-content {
    width: 300px;
    margin-top: 20px;
  }
  .ui-menu .ui-menu-item:not(:last-child) {
    border-bottom: 1px solid #ddd;
  }
}


  /* section--feature
  ------------------------------ */

  .section--feature .inner {
    background: #fff;
  }

  .section--feature .list--article {
  }


  .section--feature .btn_accordion {
    display: block;
    margin: 10px auto 0;
    background-color: #0064b2;
    color: #fff;
    width: 100%;
    border-radius: 10px;
    padding: 15px 0;
    border: none;
    position: relative;
  }

  .section--feature .btn_accordion::before  {
    content: "";
    width: 1em;
    height: 2px;
    background: #fff;
    position: absolute;
    right: 1em;
    top: 50%;
    transform: translateY(-50%);
   }

    .section--feature .btn_accordion::after  {
      content: "";
      width: 2px;
      height: 1em;
      background: #fff;
      position: absolute;
      right: calc(1.5em - 1px);
      top: 50%;
      transform: translateY(-50%);
      transition: 0.3s;
   }

  @media screen and (min-width: 960px) {
    /* pc */
    .section--feature .inner {
    border: 1px solid #DDDDDD;
    }

    .section--feature .inner {
      border-radius: 10px;
      padding: 10px 2.8em 1.5em 2.8em;
    }

    .section--feature .btn_accordion {
      font-size: 16px;
      font-weight: 600;
    }

    .section--feature .btn_accordion:hover {
      cursor: pointer;
      opacity: 80%;
    }
  }

  @media screen and (max-width: 960px) {
    /* sp */
    .section--feature .inner {
    border-top: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD;
    }

    .section--feature .section-tit {
    padding: 0 5% ;
    }

    .section--feature .inner {
      padding: 0 1.1em 15px;
    }

    .section--feature .btn_accordion {
      font-size: 16px;
      font-weight: 600;
    }
  }