@charset "UTF-8";
/* ==================================================
 * ACCORDION（アコーディオン）イベント設定
 * ================================================== */
.is-accordion-trigger {
  position: relative;
  padding-right: 40px;
  cursor: pointer;
}
.is-accordion-trigger::after {
  position: absolute;
  top: calc(50% - 1em);
  right: 0;
  width: 3.0em;
  height: auto;
  content: "\f107";
  color: #707070;
  font-weight: 600;
  text-align: center;
  font-family: "Font Awesome 6 Free";
}
.is-accordion-trigger.is-active::after {
  content: "\f106";
}
.is-accordion-box {
  display: none;
  padding: 40px 0;
}
.is-accordion-box.is-active {
  display: block;
}

.is-popup-trigger {
  margin: 0 5px;
  color: #FC7C9F;
  text-decoration: underline;
  cursor: pointer;
}
.is-popup-trigger::after {
  margin-left: 2px;
  content: "\f059";
  font-size: 0.7rem;
  color: #707070;
  font-weight: 600;
  font-family: "Font Awesome 6 Free";
}
.is-popup-box-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99999;
}
.is-popup-box-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.is-popup-box {
  margin: 0 auto;
  padding: 20px 0;
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  border-radius: 10px;
  background: #FFFFFF;
  overflow-y: auto;
}
.is-popup-button {
  margin: 20px auto 0;
  max-width: 200px;
}
.is-popup-close-button {
  display: block;
  width: 100%;
  height: 40px;
  line-height: 38px;
  border: 1px solid #707070;
  border-radius: 20px;
  background: #FFFFFF;
  font-size: 0.8rem;
  color: #707070;
  font-weight: 600;
  text-align: center;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  text-decoration: none;
  transition: 0.1s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.is-popup-close-button span,
.is-popup-close-button i {
  line-height: 38px;
}
.is-popup-close-button i {
  margin-right: 2px;
}
.is-popup-close-button:hover, .is-popup-close-button.is-active {
  border-color: #707070 !important;
  background: #d9d9d9 !important;
  color: #707070 !important;
  opacity: 1;
}

/* ==================================================
 * FREEWORD SEARCH（フリーワード検索）
 * ================================================== */
.freeword-search {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 400px;
  border: 1px solid #FC7C9F;
  border-radius: 5px;
  overflow: hidden;
}
.freeword-search + * {
  margin-top: 40px;
}
.freeword-search-input {
  width: calc(100% - 100px);
}
.freeword-search-button {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  width: 100px;
}
.freeword-search input[type="text"] {
  padding: 0 5px;
  width: 100%;
  max-width: 100%;
  height: 50px;
  line-height: 50px;
  border: none;
  background-color: #FFFFFF;
  font-size: 1.0rem;
  color: #000000;
  vertical-align: bottom;
}
.freeword-search input[type="text"]::placeholder {
  color: #999999;
}
.freeword-search input[type="text"]:-webkit-autofill, .freeword-search input[type="text"]:autofill {
  box-shadow: 0 0 0 1000px #FFFFFF inset;
}
.freeword-search input[type="text"]:focus {
  border-color: #FF0000;
  color: #000000;
  outline: none;
}
.freeword-search input[type="text"]:disabled {
  background-color: #333333;
  color: #FFFFFF;
}
.freeword-search input[type="text"] + span:not([class]) {
  display: inline-block;
  margin-left: 5px;
  margin-right: 10px;
  vertical-align: bottom;
}
.freeword-search input[type="text"][readonly] {
  background-color: #e6e6e6;
  cursor: not-allowed;
}
.freeword-search button {
  display: block;
  width: 50px;
  max-width: 100%;
  height: 50px;
  line-height: 50px;
  border-radius: 0px;
  background: #707070;
  font-size: 1rem;
  color: #FFFFFF;
  font-weight: 600;
  text-align: center;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  text-decoration: none;
  transition: 0.1s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.freeword-search button i {
  margin-right: 2px;
}
.freeword-search button:hover, .freeword-search button.is-active {
  border-color: #707070 !important;
  background: #4a4a4a !important;
  color: #FFFFFF !important;
  opacity: 1;
}
button.freeword-search-start {
  background: #FC7C9F;
}
button.freeword-search-start:hover, button.freeword-search-start.is-active {
  background: #fa3168 !important;
}
button.freeword-search-reset {
  background: #F9F4F4;
  color: #707070;
}
button.freeword-search-reset:hover, button.freeword-search-reset.is-active {
  background: #dec3c3 !important;
  color: #707070 !important;
}

.freeword-search-container .highlight {
  background-color: #FC7C9F;
  font-weight: 600;
  text-align: left;
  font-family: "Inter", "Noto Sans JP", sans-serif;
}

/* ==================================================
 * COPY TOP CLIPBOARD（テキストコピー機能）
 * ================================================== */
.copy-text {
  margin-top: 10px;
  margin-bottom: 10px;
  width: 100%;
}
.copy-text-input {
  position: relative;
  width: 100%;
  height: 40px;
}
.copy-text-input input[type="text"] {
  padding: 0 50px 0 0;
  width: 100%;
  max-width: 100%;
  height: 40px;
  line-height: 40px;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  background-color: #FFFFFF;
  font-size: 1.0rem;
  color: #000000;
  vertical-align: bottom;
}
.copy-text-input input[type="text"]::placeholder {
  color: #999999;
}
.copy-text-input input[type="text"]:-webkit-autofill, .copy-text-input input[type="text"]:autofill {
  box-shadow: 0 0 0 1000px #FFFFFF inset;
}
.copy-text-input input[type="text"]:focus {
  border-color: #FF0000;
  color: #000000;
  outline: none;
}
.copy-text-input input[type="text"]:disabled {
  background-color: #333333;
  color: #FFFFFF;
}
.copy-text-input input[type="text"] + span:not([class]) {
  display: inline-block;
  margin-left: 5px;
  margin-right: 10px;
  vertical-align: bottom;
}
.copy-text-input input[type="text"][readonly] {
  background-color: #e6e6e6;
  cursor: not-allowed;
}
.copy-text-input button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 40px;
  max-width: 100%;
  height: 40px;
  line-height: 38px;
  border: 1px solid #707070;
  border-radius: 0px;
  background: #707070;
  font-size: 1rem;
  color: #FFFFFF;
  font-weight: 600;
  text-align: center;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  text-decoration: none;
  transition: 0.1s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-radius: 0 3px 3px 0;
  background-color: #707070;
  color: #FFFFFF;
  text-align: center;
}
.copy-text-input button span,
.copy-text-input button i {
  line-height: 38px;
}
.copy-text-input button i {
  margin-right: 2px;
}
.copy-text-input button:hover, .copy-text-input button.is-active {
  border-color: #707070 !important;
  background: #4a4a4a !important;
  color: #FFFFFF !important;
  opacity: 1;
}
.copy-text-tips {
  font-size: 0.8rem;
  color: #707070;
  text-align: center;
}
