@charset "UTF-8";

/* ===================================================================
ext_faq.css
（ext/faq.xhtml専用）よくあるご質問ページ
=================================================================== */

html {
  scroll-behavior: smooth;
}
#main h1{
  margin:0 0 20px 0;
  padding: 0 10px;
  border-radius: 5px;
  box-shadow: 3px 3px 3px rgba(0,0,0,.1);
  border: 1px solid #cccccc;
  font-size: 16px;
}
#main h1 span{
  padding: 0 15px;
  border-left: 8px solid #3165AE;
  line-height: 35px;
  display: inline-block;
}
#main > section > ul{
  margin: 15px 0 30px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#main > section > ul li{
  width: 110px;
  margin: 0 5px;
  background-color: #eef7fc;
  border-radius: 5px;
  text-align: center;
  line-height: 1.2;
}
#main > section > ul li a{
  padding: 5px 10px 10px;
  text-decoration: none;
  color: #333333;
  display: block;
}
#main > section > ul li a img{
  margin: 0 0 5px 0;
  width: 75%;
}
#main > section > ul li a span{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 2.4em;
}
#main > section > section{
  margin: 0 0 40px 0;
}
#main h2{
  margin: 0 0 2px 0;
  padding: 10px 10px 5px;
  font-weight: bold;
  font-size: 14px;
  border-bottom: 3px solid #3165ae;
}
#main > section > section > div{
  font-size: 13px;
}
#main details{
  line-height: 1.5;
  border-bottom: 1px solid #cccccc;
}
#main details summary{
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 14px 30px 14px 55px;
  transition: 0.5s;
  position: relative;
  color: #3165ae;
  font-size: 14px;
}
#main details summary::-webkit-details-marker {
  display: none;
}
#main details summary::before{
  content:"Q";
  position: absolute;
  top: 7px;
  left: 10px;
  border-radius: 9999px;
  background-color: #eef7fc;
  color: #3165ae;
  font-weight: bold;
  font-size: 17px;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
}
#main details[open] summary{
}
#main details summary::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #3165ae;
  position: absolute;
  top: calc( 50% - 9px );
  right: 10px;
  transition: transform 0.5s;
}
#main details[open]:not([data-accordion-before-close]) summary::after {
  transform: rotate(-180deg);
}
#main details > div{
  padding: 14px 30px 14px 55px;
  background-color: #eef7fc;
  overflow: hidden;
  position: relative;
}
#main details > div::before{
  content:"A";
  position: absolute;
  top: 7px;
  left: 10px;
  border-radius: 9999px;
  background-color: #3165ae;
  color: #ffffff;
  font-weight: bold;
  font-size: 17px;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
}
#main details > div ul{
  margin: 5px 0;
}
#main details > div ul li{
  padding: 0 0 0 1em;
  text-indent: -1em;
}
