@charset "utf-8";

/*
Theme Name: アドダス
Author: アドダス
Author URI: https://addas.jp
Description: Bootstrap5@Webpack
*/
.kiwi-maru-light {
  font-family: "Kiwi Maru", serif;
  font-weight: 300;
  font-style: normal;
}

.kiwi-maru-regular {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
}

.kiwi-maru-medium {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
}

body {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
}

p {
  color: #555;
}

.bg-blue {
  background-color: #004898;
}

.bg-gray {
  background-color: #f0f0f0;
}

.text-blue {
  color: #004898;
}

.border-blue {
  border: solid 2px #004898;
}

.border-blue-sm {
  border: solid 1px #004898;
}

.border-b-blue {
  border-bottom: solid 2px #004898;
}

ul.circle-l {
  list-style: none;
  padding-left: 16px;
}

ul.circle-l li::before {
  content: "●";
  font-size: 16px; /* ここで黒丸のサイズを調整 */
  color: #555;
  display: inline-block;
  width: 16px;
  margin-left: -16px;
}

/*border-responsive*/

.border-responsive {
  border-color: #004898;
  border: solid 2px #004898;
}

.border-responsive th {
  color: #004898;
  font-weight: bold;
}

.border-responsive tr:not(:last-child) td {
  border-bottom: solid 2px #004898;
}

@media (min-width: 769px) {
  .border-responsive th {
    width: 30%;
  }

  .border-responsive tr:not(:last-child) th {
    border-bottom: solid 2px #004898;
  }

  .border-responsive td {
    width: 70%;
  }
}

@media (max-width: 768px) {
  .border-responsive th {
    width: 100%;
    display: block;
  }

  .border-responsive tr th {
    border-bottom: solid 1px #004898;
  }

  .border-responsive td {
    width: 100%;
    display: block;
  }
}

/*border-member*/
.border-member {
  border-color: #004898;
  border: solid 2px #004898;
}

.border-member tr {
  border-bottom: solid 2px #004898;
}

.border-member tr th:first-child {
  border-right: solid 2px #004898;
}

/*mwwpform*/
.mwform-zip-field {
  display: flex;
  align-items: center;
}

.p-postal-code {
  width: 25% !important;
  max-width: 100%;
  margin: 0 4px;
}

/*==================================================
アコーディオンのためのcss
===================================*/

/*アコーディオン全体*/
.accordion-area {
  list-style: none;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

/*アコーディオンタイトル*/
.title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1rem;
  font-weight: normal;
  padding: 3% 3% 3% 50px;
  transition: all 0.5s ease;
  margin-bottom: 0;
}

/*アイコンの＋と×*/
.title::before,
.title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #fff;
}
.title::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
}
.title::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.title.close::before {
  transform: rotate(45deg);
}

.title.close::after {
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
  display: none; /*はじめは非表示*/
  padding: 3% 6% 3% 6%;
}
