@charset "utf-8";


@keyframes fuwafuwa01 {
  0% {
    transform: translateY(-5%)
  }

  100% {
    transform: translateY(5%)
  }
}

@keyframes fuwafuwa02 {
  0% {
    transform: translateY(-10%);
  }

  100% {
    transform: translateY(10%);
  }
}

.fuwa-shape {
  position: relative;
}

.page-ttl {
  font-size: 50px;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  color: #004996;
}

.sec-ttl {
  padding: 3rem 0 0;
  position: relative;
  font-size: 40px;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-align: center;
}

.sec-ttl::before {
  content: "";
  position: absolute;
  top: 0;
  width: 60px;
  left: 50%;
  height: 8px;
  display: block;
  background: #ef8971;
  border-radius: 0 4px 4px 0;
}

.sec-ttl::after {
  content: "";
  position: absolute;
  top: 0;
  right: 50%;
  width: 60px;
  height: 8px;
  display: block;
  background: #84bde8;
  border-radius: 4px 0 0 4px;

}

.sec-ttl span {
  display: block;
  font-size: 24px;
}


.cir-blu {
  width: 54px;
  height: 54px;
  background-color: #d3e5f6;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 130px;
}

.cir-blu img {
  width: 24px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .6s;
}

.faq-area {
  background: #f8f7ef;
  padding: 200px 0 100px;
}

.shape03 {
  position: absolute;
  width: 20%;
  left: 0;
  top: -100px;
  animation: fuwafuwa01 2s ease-in-out infinite alternate-reverse;
}

.shape04 {
  position: absolute;
  width: 24%;
  right: 0px;
  bottom: -760px;
  animation: fuwafuwa02 2s 1s ease-in-out infinite alternate-reverse;
}

.faq-list {
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.faq-btn a {
  display: block;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 35px 0;
  background: #fff;
  outline: 1px solid #8f8f8f;
  transition: .6s;
  position: relative;
  text-align: center;
}

.faq-btn a:before {
  content: '';
  width: 36px;
  height: 36px;
  background: #d3e5f6;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  margin: auto;
}

.faq-btn a:after {
  content: '';
  width: 12px;
  height: 12px;
  border-bottom: solid 2px #004996;
  border-right: solid 2px #004996;
  transform: rotate(45deg);
  position: absolute;
  top: -4px;
  right: 27px;
  bottom: 0;
  margin: auto;
}

.faq-btn .cir-blu {
  width: 54px;
  height: 54px;
  right: 20px;
  left: auto;
}

.faq-btn a:hover {
  opacity: .6;
}

.faq-btn a:hover .cir-blu img {
  left: 65%;
}

/* 株主優待について */

.yutai {
  background: #f7f8fa;
  padding: 100px 0;
}

.yut-list {
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.yut-btn a {
  display: block;
  font-size: 18px;
  font-weight: 600;
  padding: 25px 0;
  background: #fff;
  outline: 1px solid #8f8f8f;
  transition: .6s;
  position: relative;
  text-align: center;
  border-radius: 10px;
  letter-spacing: 0.05em;
}

.yut-btn a:before {
  content: '';
  width: 30px;
  height: 30px;
  background: #d3e5f6;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  margin: auto;
}

.yut-btn a:after {
  content: '';
  width: 10px;
  height: 10px;
  border-bottom: solid 2px #004996;
  border-right: solid 2px #004996;
  transform: rotate(45deg);
  position: absolute;
  top: -4px;
  right: 20px;
  bottom: 0;
  margin: auto;
}

.yut-btn a:hover {
  opacity: .6;
}

.faq-box {
  margin-top: 80px;
}

.sm-ttl {
  font-size: 32px;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  color: #004996;
}

.accordion {
  margin-top: 40px;
}

.accordion-content {
  display: none;
}

.accordion-header {
  background-color: #FFF;
  padding: 24px 20px;
  margin-top: 30px;
  transition: background .3s ease;
  cursor: pointer;
  position: relative;
  border: 1px solid #787878;
  border-radius: 10px;
}

.accordion-header.active {
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.accordion-header::after {
  position: absolute;
  content: '';
  top: 1px;
  right: 25px;
  bottom: 0;
  width: 20px;
  height: 20px;
  background-image: url("../img/icon-arrow-bottom-bl.svg");
  border-radius: 50%;
  margin: auto;
}

.accordion-header::before {
  content: '';
  width: 42px;
  height: 42px;
  background: #f4f4f4;
  border-radius: 50%;
  position: absolute;
  top: 1px;
  right: 15px;
  bottom: 0;
  margin: auto;
}

.accordion-header.active::after {
  transform: rotate(180deg);
}

.accordion-content {
  background-color: #FFF;
  padding: 0 60px 20px 20px;
  border: 1px solid #787878;
  border-top: 0;
  border-radius: 0 0 10px 10px;
}

.accordion-header span {
  font-size: 20px;
  font-weight: 600;
  padding-right: 60px;
}

.accordion-header span,
.accordion-content span {
  padding-left: 40px;
  /* padding-right: 60px; */
  width: 100%;
  position: relative;
  display: inline-block;
  line-height: 1.5;
}


.accordion-header span::before {
  position: absolute;
  content: "Q";
  top: -8px;
  left: 0;
  color: #84bde8;
  font-size: 30px;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
}

.accordion-content span::before {
  position: absolute;
  content: "A";
  top: -8px;
  left: 0;
  color: #ef8971;
  font-size: 30px;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
}

.accordion-header:hover::before {
  opacity: 0.7;
}

.accordion-content img {
  width: 100%;
  max-width: 400px;
  margin: 1rem 0;
}

.faq_img_high img {
  max-width: 500px;
}

.accordion-content a {
  color: #154b97;
  border-bottom: 1px solid #154b97;
  overflow-wrap: anywhere;
}



/* 優待内容 */

.yut-naiyo-list {
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.yut-naiyo-btn a {
  display: block;
  font-size: 18px;
  font-weight: 600;
  padding: 25px 0;
  background: #fff;
  outline: 1px solid #8f8f8f;
  transition: .6s;
  position: relative;
  text-align: center;
  border-radius: 10px;
  letter-spacing: 0.05em;
}

.yut-naiyo-btn a:before {
  content: '';
  width: 30px;
  height: 30px;
  background: #f4f4f4;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  margin: auto;
}

.yut-naiyo-btn a:after {
  content: '';
  width: 10px;
  height: 10px;
  border-bottom: solid 2px #000;
  border-right: solid 2px #000;
  transform: rotate(45deg);
  position: absolute;
  top: -4px;
  right: 20px;
  bottom: 0;
  margin: auto;
}

.yut-naiyo-btn a:hover {
  opacity: .6;
}

.yut-naiyo-ttl {
  margin-top: 80px;
  font-size: 24px;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}

/* 配当金について */

.haito {
  background: #f8f7ef;
  padding: 100px 0;
}
.td-l{
  text-align: left;
  padding-left: 3%;
}



/* 株主総会 */
.sokai {
  background-color: #f7f8fa;
  padding: 100px 0;
}

/* アンカー調整 */
/* .anchor {
  margin-top: -20px;
  padding-bottom: 20px;
} */



/* 表 */

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  border: 1px solid #d5d3d3;
  padding: 8px 8px;
  text-align: center;
  vertical-align: middle;
}
th {
  background-color: #EEEEEE;
  font-weight: normal;
}
td:first-child {
  width: 40%;
}
td:last-child {
  width: 60%;
  text-align: left;
}

.tb_mti td:first-child {
  width: 50%;
}
.tb_mti td:last-child {
  width: 50%;
  text-align: center;
}

/* スクロール */
.uni-table {
  width: 100%;
  overflow-x: auto;
  /* 横スクロールを許可 */
  -webkit-overflow-scrolling: touch;
  /* iOSでスムーズスクロール */
  position: relative;
}
.uni-table table {
  width: 100%;
  min-width: 900px;
  /* スマホで収まらない場合にスクロール */
  border-collapse: collapse;
}
.uni-table th {
  width: 25%;
}
.uni-table td:first-child {
  width: 12%;
}
.uni-table td:last-child {
  width: 73%;
  text-align: left;
}







@media screen and (max-width: 1200px) {


  .faq-area {
    padding: 120px 0;
  }

  .shape04 {
    width: 30%;
    bottom: -580px;
  }

  .sec-ttl {
    padding: 2.2rem 0px 0px;
  }

  .faq-list {
    margin-top: 48px;
  }


  .faq-list {
    margin: 60px auto 0;
    gap: 30px;
  }

  /* スワイプガイド（初回のみ軽く表示） */
  .uni-table.icon-swip::after {
    content: "← 横にスクロールできます →";
    position: absolute;
    top: 10px;
    right: 50px;
    font-size: 12px;
    color: #999;
    background: rgba(255, 255, 255, 0.8);
    padding: 2px 6px;
    border-radius: 4px;
    pointer-events: none;
    animation: fadeout 4s forwards;
  }

  @keyframes fadeout {

    0%,
    60% {
      opacity: 1;
    }

    100% {
      opacity: 0;
    }
  }

}

@media screen and (max-width : 767px) {

  .page-ttl {
    font-size: 30px;
    line-height: 1.4;
  }

  .sec-ttl {
    padding: 2rem 0 0;
    font-size: 30px;
    line-height: 1.4;
  }

  .sec-ttl::before {
    width: 40px;
    left: 50%;
  }

  .sec-ttl::after {
    width: 40px;
  }

  .sec-ttl span {
    font-size: 18px;
  }

  .shape03 {
    width: 30%;
    top: -60px;
  }

  .shape04 {
    width: 40%;
    bottom: -510px;
  }

  .faq-area {
    margin-top: 76px;
    padding: 60px 0;
  }

  .faq-list {
    margin-top: 24px;
    gap: 20px;
  }

  .faq-btn {
    width: 92%;
    margin: 0 auto;
  }

  .faq-btn a {
    padding: 16px 10px;
    font-size: 18px;
    letter-spacing: 0.05em;
  }

  .faq-btn a:before {
    width: 30px;
    height: 30px;
    right: 10px;
  }

  .faq-btn a:after {
    width: 10px;
    height: 10px;
    right: 20px;
  }


  .faq-btn .cir-blu {
    width: 40px;
    height: 40px;
  }

  /* 株主優待について */

  .yutai {
    padding: 60px 0;
  }

  .yut-list {
    margin: 30px auto 0;
    gap: 16px;
    grid-template-columns: 1fr 1fr;
  }

  .yut-btn a {
    font-size: 16px;
    padding: 16px 0;
  }

  .yut-btn a:before {
    width: 20px;
    height: 20px;
    right: 8px;
  }

  .yut-btn a:after {
    width: 8px;
    height: 8px;
    top: -2px;
    right: 14px;
  }

  .faq-box {
    margin-top: 40px;
  }

  .sm-ttl {
    font-size: 24px;
  }

  .accordion {
    margin-top: 20px;
  }

  .accordion-header {
    padding: 20px 50px 20px 16px;
    margin-top: 20px;
  }


  .accordion-header::after {
    right: 20px;
    width: 16px;
    height: 16px;
  }

  .accordion-header::before {
    width: 36px;
    height: 36px;
    right: 10px;
  }

  .accordion-content {
    background-color: #FFF;
    padding: 0 30px 20px 16px;
    border: 1px solid #787878;
    border-top: 0;
    border-radius: 0 0 10px 10px;
  }

  .accordion-header span {
    font-size: 16px;
    font-weight: 600;
  }

  .accordion-header span,
  .accordion-content span {
    padding-left: 22px;
    padding-right: 0;
  }

  .accordion-header span::before {
    top: -3px;
    font-size: 20px;
  }

  .accordion-content span::before {
    top: -3px;
    font-size: 20px;
  }



  /* 優待内容  */

  .yut-naiyo-list {
    margin: 24px auto 0;
    gap: 16px;
  }

  .yut-naiyo-btn a {
    font-size: 16px;
    padding: 16px 0;
  }

  .yut-naiyo-btn a:before {
    width: 20px;
    height: 20px;
    right: 8px;
  }

  .yut-naiyo-btn a:after {
    width: 8px;
    height: 8px;
    top: -2px;
    right: 14px;
  }

  .yut-naiyo-ttl {
    margin-top: 40px;
    font-size: 18px;

  }

  /* 配当金について */

  .haito {
    padding: 60px 0;
  }

  /* 株主総会 */
  .sokai {
    padding: 60px 0;
  }

  /* アンカー調整 */
  .anchor {
    margin-top: -60px;
    padding-bottom: 60px;
  }



  /* 表 */

  table {
    font-size: 14px;
  }

  td:first-child {
    width: 25%;
  }

  td:last-child {
    width: 85%;
  }

  .tb_mti th,
  .tb_mti td {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
  }
  .tb_mti td{
    padding: 16px 0;
  }


  /* スクロール */
  .uni-table table {
    min-width: 500px;
  }
  .uni-table th {
    width: 20%;
  }
  .uni-table table td:first-child {
    width: 25%;
  }
  .uni-table table td:last-child {
    width: 55%;
  }



}