@charset "UTF-8";
/* =================================================================
 base
================================================================= */
*::before, *::after {
  box-sizing: border-box;
}

html {
  height: 100%;
}
html.lity-active body {
  overflow: hidden;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-width: 320px;
  background: #FFFFFF;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-feature-settings: "palt";
  line-height: 1.5;
  letter-spacing: 0.04em;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  word-break: break-word;
  overflow-x: hidden;
}
@media screen and (max-width: 1330px) {
  body {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

body.non-scroll {
  overflow: hidden;
}

/* 共通スタイル（タグ）
-------------------------------------------------------------*/
p {
  margin: 0.625em 0 0;
}
p.lead {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.65;
  text-align: center;
}
@media screen and (max-width: 1330px) {
  p.lead {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  p.lead {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  p.lead {
    margin-left: auto;
    margin-right: auto;
    width: -moz-fit-content;
    width: fit-content;
    text-align: left;
  }
}
p.page-explanation {
  margin: 3.75em auto 0;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.85;
  text-align: center;
}
@media screen and (max-width: 767px) {
  p.page-explanation {
    margin: 2.1428571429em auto 0;
  }
}
p.page-explanation .en {
  font-size: 0.8em;
}

a {
  color: #EB4B4B;
  text-decoration: underline;
  text-underline-offset: 0.25em;
  transition: all 0.3s;
}
@media (hover: hover) {
  a:hover {
    text-decoration: none;
  }
  a:focus {
    background: #FFE5E5;
    outline: none;
  }
}
a[href^="tel:"] {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
a.external-link {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: flex-start;
  gap: 0.625em;
  width: -moz-fit-content;
  width: fit-content;
  word-break: break-all;
  position: relative;
}
a.external-link::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  aspect-ratio: 1;
  width: 0.75em;
  min-width: 0.75em;
  height: auto;
  background-image: url(../media/images/common/icon_external_link.svg);
  position: relative;
  top: 0.125em;
}
a.text-link {
  font-weight: 700;
}
a.text-link.small {
  font-size: 13px;
}
@media screen and (max-width: 1330px) {
  a.text-link.small {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  a.text-link.small {
    font-size: 12px;
  }
}
a.text-link-close {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: center;
  gap: 0.625em;
  padding-bottom: 0.375em;
  border-bottom: solid 1px #EB4B4B;
  text-decoration: none;
  position: relative;
}
@media (hover: hover) {
  a.text-link-close:hover, a.text-link-close:focus {
    border-bottom-color: transparent;
  }
}
a.text-link-close::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  aspect-ratio: 1;
  width: 0.8125em;
  height: auto;
  background-image: url(../media/images/common/icon_txt_close.svg);
  position: relative;
  top: 0.0625em;
}
a.text-link-logout {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: center;
  gap: 0.625em;
  padding-bottom: 0.375em;
  border-bottom: solid 1px #EB4B4B;
  text-decoration: none;
  position: relative;
}
@media (hover: hover) {
  a.text-link-logout:hover, a.text-link-logout:focus {
    border-bottom-color: transparent;
  }
}
a.text-link-logout::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  aspect-ratio: 1;
  width: 1em;
  height: auto;
  background-image: url(../media/images/common/icon_txt_logout.svg);
  position: relative;
  top: 0.0625em;
}

button,
input[type=submit] {
  transition: all 0.3s;
}
@media (hover: hover) {
  button:hover,
  input[type=submit]:hover {
    opacity: 0.8;
  }
}

ul.dots-list {
  margin: 1.5em 0 0;
  display: flex;
  align-items: flex-start;
  flex-flow: column nowrap;
  justify-content: flex-start;
}
ul.dots-list li {
  display: flex;
  align-items: flex-start;
  flex-flow: row nowrap;
  justify-content: flex-start;
}
ul.dots-list li::before {
  content: "・";
  padding: 0 0.5em;
}

ol.no-list {
  margin: 1.5em 0 0;
  display: flex;
  align-items: flex-start;
  flex-flow: column nowrap;
  justify-content: flex-start;
}
ol.no-list li {
  display: flex;
  align-items: flex-start;
  flex-flow: row nowrap;
  justify-content: flex-start;
}
ol.no-list li .no {
  padding: 0 0.3em;
  white-space: nowrap;
}

dl.description-list {
  margin: 1.5em 0 0;
}
dl.description-list dt {
  font-size: 16px;
  line-height: 1.3;
}
@media screen and (max-width: 1330px) {
  dl.description-list dt {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  dl.description-list dt {
    font-size: 14px;
  }
}
dl.description-list dd {
  font-size: 16px;
}
@media screen and (max-width: 1330px) {
  dl.description-list dd {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  dl.description-list dd {
    font-size: 14px;
  }
}
dl.description-list dd + dt {
  margin-top: 0.5em;
}

table {
  margin: 1.5em 0 0;
  border: solid 1px #CBCBCB;
}
@media screen and (max-width: 767px) {
  table {
    margin-top: 1.4285714286em;
  }
}
table tr {
  border: solid 1px #CBCBCB;
}
table th {
  padding: 2em 1.0666666667em;
  background: #F3F3F3;
  font-size: 15px;
  font-weight: 700;
  vertical-align: middle;
}
@media screen and (max-width: 1330px) {
  table th {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  table th {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  table th {
    padding: 1.1538461538em 0.7692307692em;
    font-size: 13px;
  }
}
table td {
  padding: 1.875em 1em;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  table td {
    padding: 1.0714285714em 1.1428571429em;
  }
}
table.wide {
  width: 100%;
}
table.wide tr:has(th) th {
  white-space: nowrap;
}
table.wide tr:has(th) td {
  width: 100%;
}

em {
  font-style: normal;
  font-weight: 700;
}

hr {
  margin: 5em auto;
  color: #B0B0B0;
}
@media screen and (max-width: 767px) {
  hr {
    margin: 2.5em auto;
  }
}

/* テキスト入力 */
input[type=text],
input[type=email],
input[type=password],
input[type=tel],
input[type=number],
textarea {
  padding: 0.9375em 0.875em;
  border: solid 1px #333;
  border-color: #B0B0B0;
  background: #FFFFFF;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.2;
  border-radius: 5px;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=number]:focus,
textarea:focus {
  box-shadow: 0 0 2px 2px #EB4B4B;
  outline: none;
  transition: all 0.3s;
}

/* セレクトボックス */
.select-box {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  border: solid 1px #333;
  border-color: #B0B0B0;
  background: #FFFFFF;
  font-size: 16px;
  line-height: 1.2;
  border-radius: 5px;
  position: relative;
}
.select-box::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  aspect-ratio: 10/5;
  width: 0.75em;
  height: auto;
  background-image: url(../media/images/common/icon_select_arrow.svg);
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0.9375em;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .select-box::before {
    right: 0.625em;
  }
}
.select-box select {
  padding: 0.9375em 2.375em 0.9375em 0.875em;
  max-width: 100%;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .select-box select {
    padding: 0.9375em 1.875em 0.9375em 0.875em;
  }
}
.select-box select:focus {
  box-shadow: 0 0 2px 2px #EB4B4B;
  outline: none;
  transition: all 0.3s;
}

/* ラジオボタン */
input[type=radio] {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
input[type=radio] + label {
  display: block;
  margin: 0;
  padding-left: 1.5em;
  position: relative;
}
input[type=radio] + label::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border: solid 1px #333;
  border-color: #B0B0B0;
  background: #FFFFFF;
  line-height: 1.2;
  border-radius: 50%;
  position: absolute;
  top: 0.35em;
  left: 0;
}
@media screen and (max-width: 1330px) {
  input[type=radio] + label::before {
    top: 0.2em;
  }
}
@media screen and (max-width: 767px) {
  input[type=radio] + label::before {
    top: 0.2em;
  }
}
input[type=radio]:checked + label::before {
  border-color: #EB4B4B;
}
input[type=radio]:checked + label::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #EB4B4B;
  border-radius: 50%;
  position: absolute;
  top: 0.6em;
  left: 4px;
}
@media screen and (max-width: 1330px) {
  input[type=radio]:checked + label::after {
    top: 0.5em;
  }
}
@media screen and (max-width: 767px) {
  input[type=radio]:checked + label::after {
    top: 0.48em;
  }
}
input[type=radio]:focus + label::before {
  box-shadow: 0 0 2px 2px #EB4B4B;
  outline: none;
  transition: all 0.3s;
}

.radio-group {
  display: flex;
  align-items: flex-start;
  flex-flow: row wrap;
  justify-content: flex-start;
  gap: 0.5em 1.25em;
  position: relative;
}
.radio-group input[type=radio] {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.radio-group.column {
  margin-top: 8px;
  display: flex;
  align-items: flex-start;
  flex-flow: column nowrap;
  justify-content: flex-start;
  gap: 0.9375em;
}
@media screen and (max-width: 767px) {
  .radio-group.sp-column {
    margin-top: 8px;
    display: flex;
    align-items: flex-start;
    flex-flow: column nowrap;
    justify-content: flex-start;
    gap: 1.0714285714em;
  }
}

/* チェックボックス */
input[type=checkbox] {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
input[type=checkbox] + label {
  display: block;
  margin: 0;
  padding-left: 1.5em;
  position: relative;
}
input[type=checkbox] + label::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border: solid 1px #333;
  border-color: #B0B0B0;
  background: #FFFFFF;
  border-radius: 2px;
  position: absolute;
  top: 0.35em;
  left: 0;
}
@media screen and (max-width: 1330px) {
  input[type=checkbox] + label::before {
    top: 0.25em;
  }
}
@media screen and (max-width: 767px) {
  input[type=checkbox] + label::before {
    top: 0.22em;
  }
}
input[type=checkbox]:checked + label::before {
  border-color: #EB4B4B;
  background: #EB4B4B;
}
input[type=checkbox]:checked + label::after {
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  border-style: solid;
  border-width: 0 0 2px 2px;
  border-color: #FFFFFF;
  background: #EB4B4B;
  transform: rotate(-45deg);
  position: absolute;
  top: 0.5em;
  left: 3px;
  transform: rotate(-45deg);
}
input[type=checkbox]:focus + label::before {
  box-shadow: 0 0 2px 2px #EB4B4B;
  outline: none;
  transition: all 0.3s;
}
input[type=checkbox] + label {
  display: block;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  flex-flow: row wrap;
  justify-content: flex-start;
  gap: 0.5em 1.25em;
  position: relative;
}
.checkbox-group input[type=checkbox] {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.checkbox-group.column {
  margin-top: 8px;
  display: flex;
  align-items: flex-start;
  flex-flow: column nowrap;
  justify-content: flex-start;
  gap: 0.9375em;
}
@media screen and (max-width: 767px) {
  .checkbox-group.sp-column {
    margin-top: 8px;
    display: flex;
    align-items: flex-start;
    flex-flow: column nowrap;
    justify-content: flex-start;
    gap: 1.0714285714em;
  }
}

/* パスワード入力 */
.password-wrap {
  position: relative;
}
.password-wrap .mask-btn {
  display: block;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  width: 50px;
  height: 50px;
  max-height: calc(100% - 2px);
  position: absolute;
  top: 1px;
  right: 1px;
  border-radius: 0 5px 5px 0;
}
@media (hover: hover) {
  .password-wrap .mask-btn:hover::before {
    opacity: 0.8;
  }
  .password-wrap .mask-btn:focus {
    background-color: #FFE5E5;
  }
}
.password-wrap .mask-btn::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  aspect-ratio: 21/17;
  width: 1.3125em;
  height: auto;
  background-image: url(../media/images/common/icon_password_show.svg);
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
.password-wrap.mask .mask-btn::before {
  background-image: url(../media/images/common/icon_password_mask.svg);
}
.password-wrap input[type=password],
.password-wrap input[type=text] {
  padding-right: 3.25em;
}
.password-wrap input[type=password]::-ms-reveal,
.password-wrap input[type=text]::-ms-reveal {
  display: none;
}

/* 共通スタイル（id、class）
-------------------------------------------------------------*/
.anchor {
  scroll-padding-top: 130px;
}
@media screen and (max-width: 1330px) {
  .anchor {
    scroll-padding-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .anchor {
    scroll-padding-top: 70px;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.inner-only {
  display: none;
}
@media screen and (max-width: 1330px) {
  .inner-only {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .inner-only {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .pc-br::before {
    content: "\a";
    white-space: pre;
  }
}

@media screen and (max-width: 767px) {
  .sp-br::before {
    content: "\a";
    white-space: pre;
  }
}

.hide {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .hide-sp {
    display: none !important;
  }
}

.first {
  margin-top: 0 !important;
}

.last {
  margin-bottom: 0 !important;
}

.txt-left {
  text-align: left;
}

.txt-right {
  text-align: right;
}

.txt-center {
  text-align: center;
}
.txt-center .indent {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (max-width: 767px) {
  .txt-left-sp {
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .txt-right-sp {
    text-align: right;
  }
}

@media screen and (max-width: 767px) {
  .txt-center-sp {
    text-align: center;
  }
}

.bold {
  font-weight: 700;
}

.error {
  color: #EB4B4B;
}

.attention {
  color: #EB4B4B;
}

.indent {
  display: block;
  padding-left: 1em;
  width: -moz-fit-content;
  width: fit-content;
  text-indent: -1em;
  text-align: left;
}
.indent.en {
  padding-left: 0.5em;
  text-indent: -0.5em;
}

.notice {
  font-size: 0.9em;
}

.notice-s {
  font-size: 0.75em;
}
@media screen and (max-width: 767px) {
  .notice-s {
    font-size: 0.85em;
  }
}

.emphasis {
  font-size: 1.2em;
  font-weight: 700;
}
.emphasis em {
  font-size: 1.1em;
}

.subdued {
  font-size: 0.75em;
}

.marker {
  display: inline;
  padding: 0 0.1em;
  background: linear-gradient(transparent 0%, #F3F3F3 0%);
}

.message {
  margin-top: 2.2222222222em;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.65;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1330px) {
  .message {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .message {
    font-size: 16px;
  }
}
.message.complete-msg {
  margin-top: 4.0909090909em;
  font-size: 22px;
}
@media screen and (max-width: 1330px) {
  .message.complete-msg {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .message.complete-msg {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .message.complete-msg {
    margin-top: 2.9411764706em;
    font-size: 17px;
  }
}
.message.complete-msg.with-icon {
  display: flex;
  align-items: center;
  flex-flow: column nowrap;
  justify-content: flex-start;
  gap: 1.3636363636em;
}
@media screen and (max-width: 767px) {
  .message.complete-msg.with-icon {
    gap: 1.25em;
  }
}
.message.complete-msg.with-icon::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  aspect-ratio: 1;
  width: 4.5454545455em;
  height: auto;
  background-image: url(../media/images/common/icon_complete.svg);
}
@media screen and (max-width: 767px) {
  .message.complete-msg.with-icon::before {
    width: 3.75em;
  }
}

/* ブロック
-------------------------------------------------------------*/
#wholeWrapper,
#main {
  margin: auto;
  padding-bottom: 6em;
  width: 100%;
  flex: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  #wholeWrapper,
  #main {
    padding-bottom: 3.5714285714em;
  }
}
#wholeWrapper.simple,
#main.simple {
  display: flex;
  align-items: center;
  flex-flow: column nowrap;
  justify-content: center;
  padding: 0;
}
#wholeWrapper:has(.bg-extra),
#main:has(.bg-extra) {
  padding-bottom: 4.375em;
}
@media screen and (max-width: 767px) {
  #wholeWrapper:has(.bg-extra),
  #main:has(.bg-extra) {
    padding-bottom: 1.1428571429em;
  }
}
#wholeWrapper:has(#main-content + .buttons),
#main:has(#main-content + .buttons) {
  padding-bottom: 7.5em;
}
@media screen and (max-width: 767px) {
  #wholeWrapper:has(#main-content + .buttons),
  #main:has(#main-content + .buttons) {
    padding-bottom: 5em;
  }
}

#main-content + .buttons {
  margin-top: 4.375em;
}
@media screen and (max-width: 767px) {
  #main-content + .buttons {
    margin-top: 3.5714285714em;
  }
}

.inner {
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  width: 100%;
  max-width: 1330px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1330px) {
  .inner {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1330px;
  }
}
@media screen and (max-width: 767px) {
  .inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.inner .narrow {
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  width: 100%;
  max-width: 1330px;
  max-width: 980px;
}
@media screen and (max-width: 1330px) {
  .inner .narrow {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1330px;
  }
}
@media screen and (max-width: 767px) {
  .inner .narrow {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 1330px) {
  .inner .narrow {
    max-width: 980px;
  }
}

.section-inner {
  padding-left: 35px;
  padding-right: 35px;
}
@media screen and (max-width: 1330px) {
  .section-inner {
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media screen and (max-width: 767px) {
  .section-inner {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.content-box {
  margin: 3.75em 0 0;
  padding: 3.75em 2.5em 5em;
  background: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 0 1.25em 0 rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .content-box {
    border-radius: 10px;
  }
}
@media screen and (max-width: 767px) {
  .content-box {
    margin: 1.4285714286em 0 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }
}
.content-box .content-box-title {
  margin: 0 auto;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 1330px) {
  .content-box .content-box-title {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .content-box .content-box-title {
    font-size: 22px;
  }
}
.content-box .content-box-title + * {
  margin-top: 3.75em;
}
.content-box > *:first-child {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .content-box > *:first-child {
    margin-top: 30px;
  }
}
.content-box .content-box-inner {
  margin: 0 auto;
  max-width: 1050px;
}
.content-box .content-box-inner > .buttons:last-child {
  margin-top: 4.375em;
}
@media screen and (max-width: 767px) {
  .content-box .content-box-inner > .buttons:last-child {
    margin-top: 2.8571428571em;
  }
}
.content-box.extra {
  padding: 3.75em 2.5em 6.25em;
}
@media screen and (max-width: 767px) {
  .content-box.extra {
    margin: 1.0714285714em 0 0;
    padding: 1.875em 0.9375em 4.375em;
    background: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 0 1.25em 0 rgba(0, 0, 0, 0.15);
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .content-box.extra {
    border-radius: 10px;
  }
}
.content-box.extra .content-box-title + * {
  margin-top: 3.75em;
}
@media screen and (max-width: 767px) {
  .content-box.extra .content-box-title + * {
    margin-top: 1.7857142857em;
  }
}
.content-box + .buttons {
  margin-top: 4.375em;
}
@media screen and (max-width: 767px) {
  .content-box + .buttons {
    margin-top: 3.5714285714em;
  }
}

.content-box-s {
  margin-top: 2.5em;
  padding: 3.125em;
  background: #F3F3F3;
  border-radius: 10px;
}
@media screen and (max-width: 1330px) {
  .content-box-s {
    padding: 1.7857142857em;
  }
}
@media screen and (max-width: 767px) {
  .content-box-s {
    margin-top: 1.4285714286em;
    padding: 1.4285714286em 0.8571428571em 2.1428571429em;
  }
}
.content-box-s > *:first-child {
  margin-top: 0;
}
.content-box-s .content-box-s-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 1330px) {
  .content-box-s .content-box-s-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .content-box-s .content-box-s-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .content-box-s .content-box-s-title {
    margin-top: 0.3571428571em;
    font-size: 14px;
  }
}

.terms-box {
  margin: 1.25em auto 0;
  padding: 0.625em;
  max-width: 700px;
  background: #F3F3F3;
  border: solid 1px #333;
  border-color: #B0B0B0;
  border-radius: 5px;
  position: relative;
}
.terms-box .terms-box-inner {
  padding: 0.75em 0.9375em;
  max-height: 130px;
  overflow-y: auto;
}
@-moz-document url-prefix() {
  .terms-box .terms-box-inner {
    scrollbar-width: 0.5em;
    scrollbar-color: #D9D9D9 #F3F3F3;
  }
}
.terms-box .terms-box-inner::-webkit-scrollbar {
  background: #F3F3F3;
  width: 0.5em;
  border-radius: 999px;
}
.terms-box .terms-box-inner::-webkit-scrollbar-thumb {
  background: #D9D9D9;
  border-radius: 999px;
}
@media screen and (max-width: 767px) {
  .terms-box .terms-box-inner {
    padding: 0.2857142857em 1.0714285714em 0.2857142857em 0.4285714286em;
  }
}
.terms-box .terms-title {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 1330px) {
  .terms-box .terms-title {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .terms-box .terms-title {
    font-size: 14px;
  }
}
.terms-box .terms-title + * {
  margin-top: 1.125em;
}
@media screen and (max-width: 767px) {
  .terms-box .terms-title + * {
    margin-top: 0.4285714286em;
  }
}
.terms-box p {
  font-size: 14px;
  line-height: 1.65;
}
@media screen and (max-width: 1330px) {
  .terms-box p {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .terms-box p {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .terms-box p {
    font-size: 13px;
  }
}

.agree-box {
  display: flex;
  align-items: flex-start;
  flex-flow: column nowrap;
  justify-content: flex-start;
  gap: 0.25em;
  margin: 2.1875em auto 0;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .agree-box {
    margin-top: 1.4285714286em;
  }
}

/* パーツ
-------------------------------------------------------------*/
.overlay {
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
}

.bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .bg {
    display: none;
  }
}
.bg .bg-1 {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  aspect-ratio: 693/1145;
  width: 43.3125em;
  background-image: url(../media/images/common/bg_001.svg);
  position: absolute;
  top: -12.75em;
  left: -24.5625em;
}
@media screen and (max-width: 767px) {
  .bg .bg-1 {
    width: 33.2857142857em;
    top: -18em;
    left: -17.8571428571em;
  }
}
.bg .bg-2 {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  aspect-ratio: 360/995;
  width: 22.5em;
  background-image: url(../media/images/common/bg_002.svg);
  position: absolute;
  top: 4.625em;
  right: -8.0625em;
}
@media screen and (max-width: 767px) {
  .bg .bg-2 {
    width: 18em;
    top: 50%;
    right: -8em;
    transform: translate(0, -50%);
  }
}
.bg .bg-3 {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  aspect-ratio: 487/1072;
  width: 30.4375em;
  background-image: url(../media/images/common/bg_003.svg);
  position: absolute;
  top: calc(50% + 41.0625em);
  left: -13em;
  transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  .bg .bg-3 {
    width: 24.2857142857em;
    top: calc(50% + 32.8571428571em);
    left: -10.3571428571em;
  }
}
.bg .bg-4 {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  aspect-ratio: 689/1510;
  width: 43.0625em;
  background-image: url(../media/images/common/bg_004.svg);
  position: absolute;
  bottom: -26.875em;
  left: -2.4375em;
}
@media screen and (max-width: 767px) {
  .bg .bg-4 {
    width: 16.4285714286em;
    bottom: -15.4285714286em;
    left: -3.0714285714em;
  }
}
.bg .bg-5 {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  aspect-ratio: 1014/1637;
  width: 63.375em;
  background-image: url(../media/images/common/bg_005.svg);
  position: absolute;
  bottom: -21.875em;
  right: -36.625em;
}
@media screen and (max-width: 767px) {
  .bg .bg-5 {
    width: 31em;
    bottom: -13.2857142857em;
    right: -19.5714285714em;
  }
}

.bg-extra {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(278deg, #F9AB1C 0.49%, #FA606E 79.73%);
  opacity: 0.4;
  overflow: hidden;
  z-index: -1;
}
.bg-extra .bg-1 {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  aspect-ratio: 655/2045;
  width: 40.9375em;
  height: auto;
  background-color: #FFFFFF;
  opacity: 0.3;
  position: absolute;
  top: -31.125em;
  left: -3.8125em;
  transform-origin: 0 0;
  transform: rotate(20deg);
}
@media screen and (max-width: 767px) {
  .bg-extra .bg-1 {
    aspect-ratio: 239/638;
    width: 17.0714285714em;
    top: -10.5714285714em;
    left: -5.8571428571em;
  }
}
.bg-extra .bg-2 {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  aspect-ratio: 800/2500;
  width: 50em;
  height: auto;
  background-color: #FFFFFF;
  opacity: 0.3;
  position: absolute;
  bottom: -94.625em;
  right: 1.375em;
  transform-origin: 100% 100%;
  transform: rotate(20deg);
}
@media screen and (max-width: 767px) {
  .bg-extra .bg-2 {
    aspect-ratio: 289/656;
    width: 20.6428571429em;
    bottom: -11.1428571429em;
    right: -8.9285714286em;
  }
}

/* 動画
-------------------------------------------------------------*/
.movie-wrap {
  margin: 3.75em auto 0;
  background: #333;
}

.movie {
  margin: 0 auto;
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}
.movie iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.movie .img-box {
  overflow: hidden;
}
.movie .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.movie img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}

/* QR
-------------------------------------------------------------*/
.qr-wrap {
  margin: 2.5em auto 0;
}

.qr {
  margin: 0 auto;
  aspect-ratio: 1;
  width: 12.5em;
  height: auto;
}
.qr img {
  display: block;
  width: 100%;
  height: 100%;
}

/* モーダル
-------------------------------------------------------------*/
.lity {
  background: rgba(0, 0, 0, 0.6);
}
.lity .lity-close {
  display: none;
}

.lity-container {
  max-width: 1050px !important;
}

body.modal-page,
.lity-inline .lity-content {
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 1049px) {
  body.modal-page,
  .lity-inline .lity-content {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 767px) {
  body.modal-page,
  .lity-inline .lity-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.lity-iframe .lity-iframe-container {
  padding: 0;
  height: 100vh;
  max-height: none !important;
}
.lity-iframe .lity-iframe-container iframe {
  background: transparent;
}

.lity-content::after {
  display: none;
}

.modal {
  padding: 0.625em;
  max-width: 1050px;
  background: #FFFFFF;
  font-size: 16px;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 0 1.25em 0 rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 1330px) {
  .modal {
    font-size: 16px;
  }
}
@media screen and (max-width: 1049px) {
  .modal {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .modal {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .modal {
    padding: 0;
    border-radius: 5px;
  }
}
.modal .modal-inner {
  max-height: 76vh !important;
  padding: 1.875em 1.875em 3.75em;
  overflow-y: auto;
  border-radius: 15px;
}
@-moz-document url-prefix() {
  .modal .modal-inner {
    scrollbar-width: 0.5em;
    scrollbar-color: #D9D9D9 #F3F3F3;
  }
}
.modal .modal-inner::-webkit-scrollbar {
  background: #F3F3F3;
  width: 0.5em;
  border-radius: 999px;
}
.modal .modal-inner::-webkit-scrollbar-thumb {
  background: #D9D9D9;
  border-radius: 999px;
}
@media screen and (max-width: 767px) {
  .modal .modal-inner {
    padding: 1.4285714286em 1.4285714286em 2.1428571429em;
    border-radius: 5px;
  }
}
.modal .modal-title {
  font-size: 25px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1330px) {
  .modal .modal-title {
    font-size: 25px;
  }
}
@media screen and (max-width: 1049px) {
  .modal .modal-title {
    font-size: 23px;
  }
}
@media screen and (max-width: 767px) {
  .modal .modal-title {
    font-size: 18px;
  }
}
.modal .modal-close {
  display: block;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  aspect-ratio: 1;
  width: 3.125em;
  height: auto;
  border: solid 2px #FFFFFF;
  background: #333;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(40%, -40%);
}
@media screen and (max-width: 767px) {
  .modal .modal-close {
    width: 2.5em;
  }
}
.modal .modal-close::before, .modal .modal-close::after {
  content: "";
  display: block;
  width: 48%;
  height: 2px;
  background: #FFFFFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal .modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal .modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal .content-box-in-modal {
  margin: 3.75em auto 0;
  padding: 2.5em 4.75em 1.875em;
  background: #FFF6F6;
  border-radius: 10px;
}
@media screen and (max-width: 1049px) {
  .modal .content-box-in-modal {
    padding: 2.5em 2.8571428571em 2.1428571429em;
  }
}
@media screen and (max-width: 767px) {
  .modal .content-box-in-modal {
    margin: 2.8571428571em 0 0 -1.4285714286em;
    padding: 1.4285714286em 1.1428571429em;
    width: calc(100% + 40px);
    border-radius: 0;
  }
}
.modal .content-box-in-modal > *:first-child {
  margin-top: 0;
}
.modal .small-title {
  font-size: 22px;
}
@media screen and (max-width: 1330px) {
  .modal .small-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 1049px) {
  .modal .small-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .modal .small-title {
    font-size: 16px;
  }
}
.modal .button.medium {
  font-size: 18px;
}
@media screen and (max-width: 1330px) {
  .modal .button.medium {
    font-size: 18px;
  }
}
@media screen and (max-width: 1049px) {
  .modal .button.medium {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .modal .button.medium {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .modal .button.medium {
    font-size: 15px;
  }
}

body.modal-page {
  display: flex;
  align-items: center;
  flex-flow: column nowrap;
  justify-content: center;
  background: transparent;
}

.lity-container:has(.slide-modal) {
  max-width: 100% !important;
}

.slide-modal {
  max-width: 760px;
}
.slide-modal .modal-inner {
  padding: 1.875em 1.25em 1.25em;
}
@media screen and (max-width: 767px) {
  .slide-modal .modal-inner {
    padding: 2.1428571429em 1.4285714286em 1.4285714286em;
  }
}
.slide-modal .slider .slider-inner:has(.slide-pagination) {
  padding-bottom: 3.125em;
}
.slide-modal .slider .slide .img-box img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 470px;
}
.slide-modal .slider .slide .img-box.multi-img {
  display: flex;
  align-items: flex-start;
  flex-flow: row nowrap;
  justify-content: center;
  gap: 0.625em;
}
@media screen and (max-width: 767px) {
  .slide-modal .slider .slide .img-box.multi-img {
    display: flex;
    align-items: center;
    flex-flow: column nowrap;
    justify-content: flex-start;
    gap: 0.7142857143em;
  }
}
.slide-modal .slider .slide .img-box.multi-img img {
  margin: 0;
  width: calc(50% - 1 * 0.625em / 2);
  max-width: 330px;
}
@media screen and (max-width: 767px) {
  .slide-modal .slider .slide .img-box.multi-img img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .slide-modal .slider .slide .img-box.multi-img + .explanation {
    max-width: 330px;
  }
}
.slide-modal .slider .slide .explanation {
  margin: 2em auto 0;
  max-width: 470px;
  font-size: 15px;
  text-align: center;
}
@media screen and (max-width: 1330px) {
  .slide-modal .slider .slide .explanation {
    font-size: 15px;
  }
}
@media screen and (max-width: 1049px) {
  .slide-modal .slider .slide .explanation {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .slide-modal .slider .slide .explanation {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .slide-modal .slider .slide .explanation {
    margin-top: 1.0714285714em;
  }
}
.slide-modal .slider .slide-pagination {
  bottom: 0;
}

/* スライダー
-------------------------------------------------------------*/
.slider .slide img {
  width: 100%;
  height: auto;
}
.slider .slide-prev,
.slider .slide-next {
  margin: 0;
  aspect-ratio: 1;
  width: 2.25em;
  height: auto;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
@media (hover: hover) {
  .slider .slide-prev:hover::after, .slider .slide-prev:focus::after,
  .slider .slide-next:hover::after,
  .slider .slide-next:focus::after {
    background-image: url(../media/images/common/icon_slide_arrow_hover.svg);
  }
}
@media screen and (max-width: 767px) {
  .slider .slide-prev,
  .slider .slide-next {
    width: 1.7142857143em;
  }
}
.slider .slide-prev::after,
.slider .slide-next::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  aspect-ratio: 15/25;
  width: 100%;
  height: auto;
  background-image: url(../media/images/common/icon_slide_arrow.svg);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform: translate(-50%, -50%) rotate(-90deg);
  transition: all 0.3s;
}
.slider .slide-prev {
  left: 0.25em;
}
.slider .slide-next {
  right: 0.25em;
}
.slider .slide-next::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.slider .slide-pagination {
  line-height: 1;
  bottom: 0.75em;
}
@media screen and (max-width: 767px) {
  .slider .slide-pagination {
    bottom: 0.4285714286em;
  }
}
.slider .slide-pagination .swiper-pagination-bullet {
  margin: 0 0.25em;
  aspect-ratio: 1;
  width: 0.625em;
  height: auto;
  background: #B0B0B0;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .slider .slide-pagination .swiper-pagination-bullet {
    width: 0.5714285714em;
  }
}
.slider .slide-pagination .swiper-pagination-bullet-active {
  background: #EB4B4B;
}

/* パンくず
-------------------------------------------------------------*/
#breadcrambs {
  margin: 1.6em 0 2.6666666667em auto;
  font-size: 15px;
}
@media screen and (max-width: 1330px) {
  #breadcrambs {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  #breadcrambs {
    font-size: 14px;
  }
}
#breadcrambs li {
  display: inline;
  padding-right: 0.8em;
  position: relative;
}
#breadcrambs li::after {
  content: "";
  display: inline-block;
  width: 0.5333333333em;
  height: 1px;
  background: #333;
  position: relative;
  right: -0.5333333333em;
  top: -0.3333333333em;
}
#breadcrambs li.current {
  padding-right: 0;
  font-weight: 700;
}
#breadcrambs li.current::after {
  content: none;
}

/* 見出し
-------------------------------------------------------------*/
.page-title {
  margin: 1.5em auto 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 1330px) {
  .page-title {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .page-title {
    font-size: 22px;
  }
}
.page-title + * {
  margin-top: 3.75em;
}

.large-title {
  margin: 1.2em 0 0;
  padding: 0.76em 0.88em;
  background: #EB4B4B;
  color: #FFFFFF;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
  border-radius: 5px;
}
@media screen and (max-width: 1330px) {
  .large-title {
    font-size: 23px;
  }
}
@media screen and (max-width: 767px) {
  .large-title {
    font-size: 18px;
  }
}
.large-title + * {
  margin-top: 2.5em;
}

.medium-title {
  display: flex;
  align-items: flex-start;
  flex-flow: row nowrap;
  justify-content: flex-start;
  gap: 0.4545454545em;
  margin: 3.1818181818em 0 0;
  padding: 0.5454545455em 0.6818181818em;
  border-top: solid 2px #EB4B4B;
  background: #FFE5E5;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
}
@media screen and (max-width: 1330px) {
  .medium-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .medium-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .medium-title {
    margin: 2.1875em 0 0;
    padding: 0.875em 0.625em;
  }
}
.medium-title::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  width: 0.3636363636em;
  min-width: 0.3636363636em;
  height: auto;
  background: #EB4B4B;
  border-radius: 50%;
  position: relative;
  top: 0.5em;
}
.medium-title + * {
  margin-top: 2.5em;
}
@media screen and (max-width: 767px) {
  .medium-title + * {
    margin-top: 1.4285714286em;
  }
}

.medium-title-extra {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: flex-start;
  gap: 0.4545454545em;
  margin-top: 4.5454545455em;
  padding: 0.1em 0.7em;
  min-height: 2.3636363636em;
  background: linear-gradient(278deg, #F9AB1C 0.49%, #FA606E 79.73%);
  color: #FFFFFF;
  font-size: 22px;
  border-radius: 5px;
  position: relative;
}
@media screen and (max-width: 1330px) {
  .medium-title-extra {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .medium-title-extra {
    font-size: 16px;
  }
}
@media screen and (max-width: 1330px) {
  .medium-title-extra {
    margin-top: 3em;
  }
}
@media screen and (max-width: 767px) {
  .medium-title-extra {
    gap: 0.2941176471em;
    min-height: 2.6470588235em;
    margin-top: 2.9411764706em;
    padding: 0.1em 0.9em;
    font-size: 17px;
  }
}
.medium-title-extra::before {
  content: "";
  display: block;
  width: 0.9090909091em;
  height: 1px;
  background: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .medium-title-extra::before {
    width: 0.5882352941em;
  }
}
.medium-title-extra + * {
  margin-top: 2.5em;
}
@media screen and (max-width: 767px) {
  .medium-title-extra + * {
    margin-top: 1.4285714286em;
  }
}

.small-title {
  margin: 1.8181818182em 0 0;
  padding: 0 0 0 0.7272727273em;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
}
@media screen and (max-width: 1330px) {
  .small-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .small-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .small-title {
    margin: 1.25em 0 0;
  }
}
.small-title::before {
  content: "";
  display: block;
  width: 2px;
  height: calc(100% - 0.2727272727em);
  background: #EB4B4B;
  position: absolute;
  top: calc(50% + 0.0909090909em);
  left: 0;
  transform: translate(0, -50%);
}
.small-title + * {
  margin-top: 0.9375em;
}
.small-title + table {
  margin-top: 1.5em;
}
@media screen and (max-width: 767px) {
  .small-title + table {
    margin-top: 1.4285714286em;
  }
}

/* ボタン
-------------------------------------------------------------*/
.buttons {
  display: flex;
  align-items: center;
  flex-flow: column nowrap;
  justify-content: flex-start;
  gap: 1em;
  margin: 2.5em auto 0;
}
@media screen and (max-width: 767px) {
  .buttons {
    margin: 2.1428571429em auto 0;
  }
}
@media screen and (max-width: 767px) {
  .buttons.pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .buttons.sp {
    display: none;
  }
}
.buttons.sideby {
  display: flex;
  align-items: center;
  flex-flow: row-reverse wrap;
  justify-content: center;
  gap: 1em 0.75em;
}
@media screen and (max-width: 767px) {
  .buttons.sideby {
    display: flex;
    align-items: center;
    flex-flow: column nowrap;
    justify-content: flex-start;
    gap: 1.1428571429em;
  }
}
.buttons p {
  margin-top: 0;
}
.buttons .text-link-logout {
  font-size: 15px;
}
@media screen and (max-width: 1330px) {
  .buttons .text-link-logout {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .buttons .text-link-logout {
    font-size: 14px;
  }
}

.button {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: center;
  padding: 0.1em 1.2em;
  border: solid 1px #333;
  background: #FFFFFF;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  border-radius: 9999px;
  position: relative;
}
@media screen and (max-width: 1330px) {
  .button {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .button {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .button.pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .button.sp {
    display: none;
  }
}
.button.positive {
  border-color: #EB4B4B;
  background: #EB4B4B;
  color: #FFFFFF;
}
@media (hover: hover) {
  .button.positive:hover, .button.positive:focus {
    opacity: 1;
    background: #FFFFFF;
    color: #EB4B4B;
    outline: none;
  }
}
.button.normal {
  border-color: #EB4B4B;
  background: #FFFFFF;
  color: #333;
}
@media (hover: hover) {
  .button.normal:hover, .button.normal:focus {
    opacity: 1;
    background: #EB4B4B;
    color: #FFFFFF;
    outline: none;
  }
}
.button.normal-ex, .button.back {
  border-width: 2px;
  border-color: #EB4B4B;
  background: #FFFFFF;
  color: #EB4B4B;
}
@media (hover: hover) {
  .button.normal-ex:hover, .button.normal-ex:focus, .button.back:hover, .button.back:focus {
    opacity: 1;
    background: #EB4B4B;
    color: #FFFFFF;
    outline: none;
  }
}
.button.negative {
  border-color: #B0B0B0;
  background: #FFFFFF;
  color: #666;
}
@media (hover: hover) {
  .button.negative:hover, .button.negative:focus {
    opacity: 1;
    background: #333;
    color: #FFFFFF;
    outline: none;
  }
}
.button.disabled, .button[disabled] {
  border-color: #a0a0a0;
  background: #FFFFFF;
  color: #a0a0a0;
  cursor: default !important;
  pointer-events: none;
}
.button.large {
  width: 900px;
  max-width: 100%;
  min-height: 3.8888888889em;
  font-size: 18px;
}
@media screen and (max-width: 1330px) {
  .button.large {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .button.large {
    font-size: 16px;
  }
}
.button.medium {
  width: 17.7777777778em;
  max-width: 100%;
  min-height: 3.8888888889em;
  font-size: 18px;
}
@media screen and (max-width: 1330px) {
  .button.medium {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .button.medium {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .button.medium {
    width: 17.3333333333em;
    min-height: 3.6666666667em;
    font-size: 15px;
  }
}
.button.medium-s {
  width: 17.7777777778em;
  max-width: 100%;
  min-height: 3em;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 1330px) {
  .button.medium-s {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .button.medium-s {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .button.medium-s {
    width: 20em;
    min-height: 3.0769230769em;
    font-size: 13px;
  }
}
.button.small {
  width: 12.5em;
  max-width: 100%;
  min-height: 2.5em;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 1330px) {
  .button.small {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .button.small {
    font-size: 14px;
  }
}
.button.x-small {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  min-height: 2.1333333333em;
  font-size: 15px;
  font-weight: 500;
}
@media screen and (max-width: 1330px) {
  .button.x-small {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .button.x-small {
    font-size: 14px;
  }
}
.button.link, .button.next {
  padding: 0.1em 3em;
}
@media (hover: hover) {
  .button.link:hover::after, .button.link:focus::after, .button.next:hover::after, .button.next:focus::after {
    background-image: url(../media/images/common/icon_btn_next_hover.svg);
  }
}
.button.link::after, .button.next::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  aspect-ratio: 1;
  width: 1.6666666667em;
  height: auto;
  background-image: url(../media/images/common/icon_btn_next.svg);
  position: absolute;
  top: 50%;
  right: 0.8333333333em;
  transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  .button.link::after, .button.next::after {
    width: 1.5625em;
    right: 0.75em;
  }
}
@media (hover: hover) {
  .button.link.normal:hover::after, .button.link.normal:focus::after, .button.next.normal:hover::after, .button.next.normal:focus::after {
    background-image: url(../media/images/common/icon_btn_next.svg);
  }
}
.button.link.normal::after, .button.next.normal::after {
  background-image: url(../media/images/common/icon_btn_next_hover.svg);
}
@media (hover: hover) {
  .button.link.normal-ex:hover::after, .button.link.normal-ex:focus::after, .button.next.normal-ex:hover::after, .button.next.normal-ex:focus::after {
    background-image: url(../media/images/common/icon_btn_next.svg);
  }
}
.button.link.normal-ex::after, .button.next.normal-ex::after {
  background-image: url(../media/images/common/icon_btn_next_hover.svg);
}
.button.link.flexible, .button.next.flexible {
  padding: 0.1em 3em 0.1em 1.7em;
}
@media screen and (max-width: 767px) {
  .button.link.flexible, .button.next.flexible {
    padding: 0.1em 3em 0.1em 1.4em;
  }
}
.button.send {
  padding: 0.1em 3em;
}
@media (hover: hover) {
  .button.send:hover::after, .button.send:focus::after {
    background-image: url(../media/images/common/icon_btn_send_hover.svg);
  }
}
.button.send::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  aspect-ratio: 22/15;
  width: 1.2222222222em;
  height: auto;
  background-image: url(../media/images/common/icon_btn_send.svg);
  position: absolute;
  top: 50%;
  right: 1.1111111111em;
  transform: translate(0, -50%);
}
.button.print {
  padding: 0.1em 3em;
}
@media (hover: hover) {
  .button.print:hover::after, .button.print:focus::after {
    background-image: url(../media/images/common/icon_btn_print_hover.svg);
  }
}
.button.print::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  aspect-ratio: 22/19;
  width: 1.2222222222em;
  height: auto;
  background-image: url(../media/images/common/icon_btn_print.svg);
  position: absolute;
  top: 50%;
  right: 1.1111111111em;
  transform: translate(0, -50%);
}
.button.back {
  padding: 0.1em 3em;
}
@media (hover: hover) {
  .button.back:hover::after, .button.back:focus::after {
    background-image: url(../media/images/common/icon_btn_next_hover.svg);
  }
}
.button.back::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  aspect-ratio: 1;
  width: 1.6666666667em;
  height: auto;
  background-image: url(../media/images/common/icon_btn_next.svg);
  position: absolute;
  top: 50%;
  left: 0.8333333333em;
  transform: translate(0, -50%) scale(-1, 1);
}
@media screen and (max-width: 767px) {
  .button.back::after {
    width: 1.5625em;
    left: 0.75em;
  }
}
@media (hover: hover) {
  .button.back.normal:hover::after, .button.back.normal:focus::after {
    background-image: url(../media/images/common/icon_btn_next.svg);
  }
}
.button.back.normal::after {
  background-image: url(../media/images/common/icon_btn_next_hover.svg);
}
@media (hover: hover) {
  .button.back.normal-ex:hover::after, .button.back.normal-ex:focus::after {
    background-image: url(../media/images/common/icon_btn_next.svg);
  }
}
.button.back.normal-ex::after {
  background-image: url(../media/images/common/icon_btn_next_hover.svg);
}
.button.ticket {
  padding: 0.1em 3em;
}
@media (hover: hover) {
  .button.ticket:hover::after, .button.ticket:focus::after {
    background-image: url(../media/images/common/icon_btn_ticket_hover.svg);
  }
}
.button.ticket::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  aspect-ratio: 25/16;
  width: 1.3888888889em;
  height: auto;
  background-image: url(../media/images/common/icon_btn_ticket.svg);
  position: absolute;
  top: 50%;
  right: 0.8333333333em;
  transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  .button.ticket::after {
    width: 0.9375em;
    right: 0.75em;
  }
}
@media (hover: hover) {
  .button.ticket.normal:hover::after, .button.ticket.normal:focus::after {
    background-image: url(../media/images/common/icon_btn_ticket.svg);
  }
}
.button.ticket.normal::after {
  background-image: url(../media/images/common/icon_btn_ticket_hover.svg);
}
@media (hover: hover) {
  .button.ticket.normal-ex:hover::after, .button.ticket.normal-ex:focus::after {
    background-image: url(../media/images/common/icon_btn_ticket.svg);
  }
}
.button.ticket.normal-ex::after {
  background-image: url(../media/images/common/icon_btn_ticket_hover.svg);
}
.button.extra {
  border-radius: 10px;
}
.button.flexible {
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
}
.button .sub {
  font-size: 0.65em;
}

/* タブ
-------------------------------------------------------------*/
.tabs {
  display: flex;
  align-items: stretch;
  flex-flow: row nowrap;
  justify-content: center;
  margin: 4.375em auto 0;
  width: -moz-fit-content;
  width: fit-content;
  border: solid 1px #283E7B;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .tabs {
    margin-top: 1.7857142857em;
  }
}

.tab {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: center;
  padding: 0.1em 0.6em;
  min-height: 2.7777777778em;
  border-left: solid 1px #283E7B;
  background: #FFFFFF;
  color: #283E7B;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}
@media screen and (max-width: 1330px) {
  .tab {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .tab {
    font-size: 16px;
  }
}
@media (hover: hover) {
  .tab:hover, .tab:focus {
    background: #283E7B;
    color: #FFFFFF;
    outline: none;
  }
}
.tab:first-child {
  border-left: 0;
}
.tab.current {
  background: #283E7B;
  color: #FFFFFF;
}

.tab-content {
  display: none;
}
.tab-content.show {
  display: block;
}

/* コンテンツナビ
-------------------------------------------------------------*/
.content-nav {
  display: flex;
  align-items: stretch;
  flex-flow: row wrap;
  justify-content: flex-start;
  margin: 3.75em auto;
  max-width: 840px;
  border: solid 1px #283E7B;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .content-nav {
    display: flex;
    align-items: center;
    flex-flow: column nowrap;
    justify-content: flex-start;
    gap: 0.7142857143em;
    margin: 2.8571428571em auto;
    border: 0;
    border-radius: 0;
    overflow: visible;
  }
}
.content-nav .nav-box {
  width: 33.3333%;
  border-right: solid 1px #283E7B;
}
@media screen and (max-width: 767px) {
  .content-nav .nav-box {
    width: 100%;
    max-width: 21.4285714286em;
    border: solid 1px #283E7B;
  }
}
.content-nav .nav-box:nth-child(3n) {
  border-right: 0;
  width: 33.3333%;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .content-nav .nav-box:nth-child(3n) {
    width: 100%;
    border: solid 1px #283E7B;
  }
}
.content-nav .nav-box a {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: space-between;
  gap: 1em;
  padding: 0.1em 1.25em 0.1em 1.5625em;
  height: 100%;
  min-height: 4.0625em;
  color: #283E7B;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}
@media (hover: hover) {
  .content-nav .nav-box a:hover, .content-nav .nav-box a:focus {
    opacity: 1;
    background: #283E7B;
    color: #FFFFFF;
  }
  .content-nav .nav-box a:hover::after, .content-nav .nav-box a:focus::after {
    background-image: url(../media/images/common/icon_content_nav_hover.svg);
  }
}
@media screen and (max-width: 767px) {
  .content-nav .nav-box a {
    min-height: 3.7142857143em;
  }
}
.content-nav .nav-box a::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  aspect-ratio: 1;
  width: 1.6875em;
  min-width: 1.6875em;
  height: auto;
  background-image: url(../media/images/common/icon_content_nav.svg);
}

/* STEP
-------------------------------------------------------------*/
.step-list {
  display: flex;
  align-items: flex-start;
  flex-flow: row wrap;
  justify-content: center;
  gap: 10em;
  margin-top: 5.25em;
  padding-bottom: 1.625em;
}
@media screen and (max-width: 767px) {
  .step-list {
    gap: 5.7142857143em;
    margin-top: 2.1428571429em;
  }
  .en .step-list{
	 gap: 8.714286em
  }
}
.step-list .step {
  display: flex;
  align-items: center;
  flex-flow: column nowrap;
  justify-content: flex-start;
  color: #B0B0B0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
}
@media screen and (max-width: 1330px) {
  .step-list .step {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .step-list .step {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .step-list .step {
    font-size: 12px;
  }
}
.step-list .step::after {
  content: "";
  display: block;
  width: 6.6666666667em;
  height: 2px;
  background: #B0B0B0;
  border-radius: 9999px;
  position: absolute;
  top: 1.3333333333em;
  right: -2em;
  transform: translate(100%, 0);
}
@media screen and (max-width: 767px) {
  .step-list .step::after {
    width: 4.1666666667em;
    top: 1.25em;
    right: -1.25em;
  }
}
.step-list .step:last-child::after {
  content: none;
}
.step-list .step em {
  display: flex;
  align-items: center;
  flex-flow: column nowrap;
  justify-content: center;
  aspect-ratio: 1;
  padding-left: 0.1em;
  width: 2.6666666667em;
  height: auto;
  background: #B0B0B0;
  color: #FFFFFF;
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  border-radius: 50%;
}
@media screen and (max-width: 1330px) {
  .step-list .step em {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .step-list .step em {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .step-list .step em {
    width: 2.5em;
    font-size: 12px;
  }
}
.step-list .step .text {
  white-space: nowrap;
  position: absolute;
  top: 3.2em;
  left: 50%;
  transform: translate(-50%, 0);
}
.en .step-list .step .text {
    top: 6.2em;
    font-size: 0.67em;
}
@media screen and (max-width: 767px) {
  .step-list .step .text {
    top: 2.9166666667em;
  }
  .en  .step-list .step .text{
    top: 5.916667em;
  }
}

.step-list .step.current, .step-list .step.done {
  color: #333;
}
.step-list .step.current em, .step-list .step.done em {
  background: linear-gradient(278deg, #F9AB1C 0.49%, #FA606E 79.73%);
}
.step-list .step.done::after {
  background: linear-gradient(278deg, #F9AB1C 0.49%, #FA606E 79.73%);
}

/* フォーム入力
-------------------------------------------------------------*/
::-moz-placeholder {
  color: #B0B0B0;
}
::placeholder {
  color: #B0B0B0;
}

.icon-required {
  display: inline-block;
  padding: 0.1666666667em 0.4166666667em;
  border: solid 1px #333;
  background: #333;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  position: relative;
  top: 0.1em;
  border-color: #EB4B4B;
  background: #EB4B4B;
  color: #FFFFFF;
}
@media screen and (max-width: 1330px) {
  .icon-required {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .icon-required {
    font-size: 12px;
  }
}

.hyphen {
  display: block;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  min-width: 1em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .hyphen {
    min-width: 0.7142857143em;
  }
}
.hyphen::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #B0B0B0;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.form {
  display: flex;
  align-items: flex-start;
  flex-flow: column nowrap;
  justify-content: flex-start;
  margin: 2.5em auto 0;
}
.form .title {
  margin-top: 2em;
  font-size: 15px;
  font-weight: 700;
  width: 100%;
}
@media screen and (max-width: 1330px) {
  .form .title {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .form .title {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .form .title {
    margin-top: 1.4285714286em;
  }
}
.form .title:first-child {
  margin-top: 0;
}
.form .req {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: flex-start;
  gap: 0.5em;
}
@media screen and (max-width: 767px) {
  .form .req {
    gap: 0.3571428571em;
  }
}
.form .data {
  display: flex;
  align-items: flex-start;
  flex-flow: column nowrap;
  justify-content: flex-start;
  gap: 0.375em;
  margin-top: 0.75em;
  width: 100%;
}
.form .data > .data-unit + .data-unit {
  margin-top: 0.5em;
}
@media screen and (max-width: 767px) {
  .form .data > .data-unit + .data-unit {
    margin-top: 0.7142857143em;
  }
}
.form .data-unit {
  display: flex;
  align-items: flex-start;
  flex-flow: column nowrap;
  justify-content: flex-start;
  gap: 0.375em;
  width: 100%;
}
.form .data-unit .text {
  font-size: 15px;
}
@media screen and (max-width: 1330px) {
  .form .data-unit .text {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .form .data-unit .text {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .form .data-unit .text {
    font-size: 13px;
  }
}
.form .multiple-data {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: flex-start;
  gap: 1.25em;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .form .multiple-data {
    gap: 0.3571428571em;
  }
}
.form .multiple-data:has(.hyphen) {
  gap: 0.625em;
}
@media screen and (max-width: 767px) {
  .form .multiple-data:has(.hyphen) {
    gap: 0.3571428571em;
  }
}
.form .multiple-data.zip input {
  max-width: calc((100% - 72px) / 3);
}
@media screen and (max-width: 767px) {
  .form .multiple-data.zip input {
    max-width: calc((100% - 40px) / 3);
  }
}
.form .multiple-data.company .select-box {
  min-width: calc(25% - 3.75em / 4);
}
@media screen and (max-width: 767px) {
  .form .multiple-data.company {
    display: flex;
    align-items: flex-start;
    flex-flow: column nowrap;
    justify-content: flex-start;
  }
}
.form input[type=text],
.form input[type=email],
.form input[type=password],
.form input[type=tel],
.form input[type=number],
.form textarea {
  width: 100%;
}
.form .select-box {
  min-width: calc(50% - 1.25em / 2);
}
@media screen and (max-width: 767px) {
  .form .select-box {
    width: 100%;
  }
}
.form .select-box select {
  width: 100%;
}
.form .password-wrap {
  width: 100%;
}
.form .small input[type=text],
.form .small input[type=email],
.form .small input[type=password],
.form .small input[type=tel],
.form .small input[type=number],
.form .small textarea {
  width: calc(50% - 1.25em / 2);
}
@media screen and (max-width: 767px) {
  .form .small input[type=text],
  .form .small input[type=email],
  .form .small input[type=password],
  .form .small input[type=tel],
  .form .small input[type=number],
  .form .small textarea {
    width: 100%;
  }
}
.form .small .select-box {
  width: calc(50% - 1.25em / 2);
}
@media screen and (max-width: 767px) {
  .form .small .select-box {
    width: 100%;
  }
}
.form .small .password-wrap {
  width: calc(50% - 1.25em / 2);
}
@media screen and (max-width: 767px) {
  .form .small .password-wrap {
    width: 100%;
  }
}
.form .explanation {
  font-size: 15px;
}
@media screen and (max-width: 1330px) {
  .form .explanation {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .form .explanation {
    font-size: 14px;
  }
}
.form .explanation + * {
  margin-top: 0.625em;
}
.form .msg {
  margin: 0;
  font-size: 12px;
}
@media screen and (max-width: 1330px) {
  .form .msg {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .form .msg {
    font-size: 12px;
  }
}
.form .msg.error {
  color: #EB4B4B;
}
.form .msg:first-of-type {
  margin-top: 0.3333333333em;
}
.form .caption {
  margin: 0;
  font-size: 12px;
  line-height: 1.3;
}
@media screen and (max-width: 1330px) {
  .form .caption {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .form .caption {
    font-size: 12px;
  }
}
.form.confirm {
  display: flex;
  align-items: stretch;
  flex-flow: row wrap;
  justify-content: flex-start;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .form.confirm {
    display: flex;
    align-items: flex-start;
    flex-flow: column nowrap;
    justify-content: flex-start;
    gap: 0.3571428571em;
  }
}
.form.confirm .title {
  display: flex;
  align-items: flex-start;
  flex-flow: column wrap;
  justify-content: center;
  margin-top: 2em;
  padding: 0 2em 2em 0;
  width: 17em;
  border-bottom: solid 1px #D9D9D9;
  font-size: 15px;
}
@media screen and (max-width: 1330px) {
  .form.confirm .title {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .form.confirm .title {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .form.confirm .title {
    margin-top: 1.1538461538em;
    padding: 0;
    width: 100%;
    border-bottom: 0;
    font-size: 13px;
  }
}
.form.confirm .title:first-of-type {
  margin-top: 0;
}
.form.confirm .data {
  display: flex;
  align-items: flex-start;
  flex-flow: column wrap;
  justify-content: center;
  margin-top: 1.875em;
  padding: 0 0 1.875em 0;
  width: calc(100% - 17em);
  border-bottom: solid 1px #D9D9D9;
}
@media screen and (max-width: 767px) {
  .form.confirm .data {
    margin-top: 0;
    width: 100%;
    min-height: 2.6428571429em;
    padding-bottom: 1.0714285714em;
  }
}
.form.confirm .data:first-of-type {
  margin-top: 0;
}
.form.narrow-form {
  max-width: 550px;
}

.in-form-section {
  display: flex;
  align-items: flex-start;
  flex-flow: row nowrap;
  justify-content: flex-start;
  gap: 3.75em;
  margin-top: 4.375em;
  padding-top: 4.375em;
  border-top: solid 1px #B0B0B0;
}
@media screen and (max-width: 980px) {
  .in-form-section {
    display: flex;
    align-items: flex-start;
    flex-flow: column nowrap;
    justify-content: flex-start;
    gap: 2.1428571429em;
    margin-top: 2.8571428571em;
    padding-top: 2.1428571429em;
  }
}
@media screen and (max-width: 767px) {
  .in-form-section {
    gap: 1.4285714286em;
    margin-top: 2.1428571429em;
    padding-top: 1.4285714286em;
  }
}
.in-form-section > *:nth-child(2) {
  margin-top: 0;
}
.in-form-section .form-section-title {
  display: flex;
  align-items: flex-start;
  flex-flow: row nowrap;
  justify-content: flex-start;
  gap: 0.5em;
  width: 11.5em;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 1330px) {
  .in-form-section .form-section-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .in-form-section .form-section-title {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .in-form-section .form-section-title {
    font-size: 17px;
  }
}
.in-form-section .form-section-title::before {
  content: "";
  display: block;
  aspect-ratio: 1;
  width: 0.3636363636em;
  min-width: 0.3636363636em;
  height: auto;
  background: #EB4B4B;
  border-radius: 50%;
  position: relative;
  top: 0.45em;
}
@media screen and (max-width: 767px) {
  .in-form-section .form-section-title::before {
    top: 0.5294117647em;
  }
}
.in-form-section .form,
.in-form-section .form-wrap {
  flex: 1;
  width: 100%;
}
.in-form-section .form.confirm .title:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}
.in-form-section .form.confirm .data:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}
.in-form-section .form-wrap .form {
  margin-top: 2.1875em;
}
@media screen and (max-width: 767px) {
  .in-form-section .form-wrap .form {
    margin-top: 2.1428571429em;
  }
}
.in-form-section .form-wrap > *:first-child {
  margin-top: 0;
}
.in-form-section + .buttons {
  margin-top: 4.375em;
}
@media screen and (max-width: 767px) {
  .in-form-section + .buttons {
    margin-top: 2.8571428571em;
  }
}

.in-form-section-s .form-section-s-title {
  margin-top: 3.8888888889em;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 1330px) {
  .in-form-section-s .form-section-s-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .in-form-section-s .form-section-s-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .in-form-section-s .form-section-s-title {
    margin-top: 2.6666666667em;
    font-size: 15px;
  }
}
.in-form-section-s .form-section-s-title + * {
  margin-top: 2.1875em;
}
@media screen and (max-width: 767px) {
  .in-form-section-s .form-section-s-title + * {
    margin-top: 1.4285714286em;
  }
}

/* スクロールヒント
-------------------------------------------------------------*/
.scroll-hint {
  display: none;
  padding: 5em 1.1428571429em 0.8571428571em;
  background: rgba(0, 0, 0, 0.6);
  color: #FFFFFF;
  font-size: 13px;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}
@media screen and (max-width: 1330px) {
  .scroll-hint {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .scroll-hint {
    font-size: 12px;
  }
}
.scroll-hint::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  aspect-ratio: 75/15;
  width: 5.3571428571em;
  background-image: url(../media/images/common/icon_scroll_arrow.svg);
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: 1.1428571429em;
}
.scroll-hint::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  aspect-ratio: 33/41;
  width: 1.7142857143em;
  height: auto;
  background-image: url(../media/images/common/icon_scroll_hand.svg);
  opacity: 0;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: 2.2857142857em;
  translate: all 0.3s;
  animation: scroll 1.2s ease infinite;
}

@keyframes scroll {
  0% {
    transform: translate(25%, 0);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(-125%, 0);
  }
}
/* 製品リスト
-------------------------------------------------------------*/
.product-list {
  display: flex;
  align-items: stretch;
  flex-flow: row wrap;
  justify-content: flex-start;
  gap: 1.25em;
}
@media screen and (max-width: 767px) {
  .product-list {
    gap: 0.7142857143em;
  }
}
.product-list .product-box {
  width: calc(33.3333333333% - 2 * 1.25em / 3);
}
@media screen and (max-width: 767px) {
  .product-list .product-box {
    width: calc(50% - 1 * 0.7142857143em / 2);
  }
}
.product-list .product-box .box-inner {
  display: flex;
  align-items: flex-start;
  flex-flow: column nowrap;
  justify-content: flex-start;
  padding: 1.25em 1.5625em;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0.125em 0.125em 0.25em 0 rgba(0, 0, 0, 0.15);
}
@media (hover: hover) {
  .product-list .product-box .box-inner:hover, .product-list .product-box .box-inner:focus {
    box-shadow: 0 0 2px 2px #EB4B4B;
    outline: none;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 767px) {
  .product-list .product-box .box-inner {
    padding: 0.7142857143em;
  }
}
.product-list .product-box .img-box {
  aspect-ratio: 250/166;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.product-list .product-box .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-list .product-box .text-box {
  display: flex;
  align-items: flex-start;
  flex-flow: column nowrap;
  justify-content: flex-start;
  flex: 1;
  max-width: 100%;
}
.product-list .product-box .text-box .text-box-inner {
  flex: 1;
  max-width: 100%;
}
.product-list .product-box .product-name {
  margin-top: 0.8333333333em;
  font-size: 18px;
  font-weight: 700;
  color: #EB4B4B;
}
@media screen and (max-width: 1330px) {
  .product-list .product-box .product-name {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .product-list .product-box .product-name {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .product-list .product-box .product-name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  .product-list .product-box .product-name {
    margin-top: 0.7142857143em;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
.product-list .product-box .explanation {
  margin-top: 0.6666666667em;
  color: #666;
  font-size: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 1330px) {
  .product-list .product-box .explanation {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .product-list .product-box .explanation {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .product-list .product-box .explanation {
    margin-top: 0.4166666667em;
    font-size: 12px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
}
.product-list .product-box .maker-name {
  margin-top: 1.5384615385em;
  padding-top: 0.6153846154em;
  width: 100%;
  border-top: solid 1px #B0B0B0;
  color: #333;
  font-size: 13px;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 1330px) {
  .product-list .product-box .maker-name {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .product-list .product-box .maker-name {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .product-list .product-box .maker-name {
    margin-top: 1em;
  }
}
.product-list .product-box:nth-child(n+7) {
  display: none;
}
.product-list + .more {
  display: none;
  gap: 0.625em;
  margin: 2.5em auto 0;
  font-weight: 700;
  line-height: 1;
  position: relative;
}
@media (hover: hover) {
  .product-list + .more:hover, .product-list + .more:focus {
    color: #EB4B4B;
  }
  .product-list + .more:hover::before, .product-list + .more:focus::before {
    background-image: url(../media/images/common/icon_more_hover.svg);
  }
}
@media screen and (max-width: 767px) {
  .product-list + .more {
    margin: 2.1428571429em auto 0;
  }
}
.product-list + .more.show {
  display: flex;
  align-items: center;
  flex-flow: column nowrap;
  justify-content: flex-start;
}
.product-list + .more::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  aspect-ratio: 12/15;
  width: 0.75em;
  height: auto;
  background-image: url(../media/images/common/icon_more.svg);
}
.product-list.all .product-box:nth-child(n+7) {
  display: block;
}
.product-list.all + .more {
  display: none;
}

/* 出展社一覧
-------------------------------------------------------------*/
.exhibitor-list {
  display: flex;
  align-items: stretch;
  flex-flow: row wrap;
  justify-content: flex-start;
  gap: 1.25em;
  margin-top: 1.875em;
  background: #F3F3F3;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .exhibitor-list {
    gap: 0.7142857143em;
    margin-top: 1.4285714286em;
  }
}
.exhibitor-list .exhibitor-box {
  width: calc(50% - 1 * 1.25em / 2);
}
@media screen and (max-width: 767px) {
  .exhibitor-list .exhibitor-box {
    width: 100%;
  }
}
.exhibitor-list .exhibitor-box .box-inner {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: flex-start;
  gap: 1.25em;
  padding: 1.25em;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0.125em 0.125em 0.25em 0 rgba(0, 0, 0, 0.15);
}
@media (hover: hover) {
  .exhibitor-list .exhibitor-box .box-inner:hover, .exhibitor-list .exhibitor-box .box-inner:focus {
    box-shadow: 0 0 2px 2px #EB4B4B;
    outline: none;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 1330px) {
  .exhibitor-list .exhibitor-box .box-inner {
    padding: 1.0714285714em;
  }
}
.exhibitor-list .exhibitor-box .img-box {
  aspect-ratio: 170/145;
  padding: 0.3125em;
  width: 10.625em;
  min-width: 10.625em;
  overflow: hidden;
}
.exhibitor-list .exhibitor-box .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1330px) {
  .exhibitor-list .exhibitor-box .img-box {
    width: 40%;
    min-width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .exhibitor-list .exhibitor-box .img-box {
    width: 9.2857142857em;
    min-width: 9.2857142857em;
  }
}
.exhibitor-list .exhibitor-box .img-box.no-image {
  padding: 0;
}
.exhibitor-list .exhibitor-box .text-box {
  flex: 1;
  display: flex;
  align-items: flex-start;
  flex-flow: column nowrap;
  justify-content: flex-start;
  min-width: 0;
  height: 100%;
}
.exhibitor-list .exhibitor-box .text-box .text-box-inner {
  flex: 1;
  max-width: 100%;
}
.exhibitor-list .exhibitor-box .text-box .name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 1330px) {
  .exhibitor-list .exhibitor-box .text-box .name {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .exhibitor-list .exhibitor-box .text-box .name {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .exhibitor-list .exhibitor-box .text-box .name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  .exhibitor-list .exhibitor-box .text-box .name {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
.exhibitor-list .exhibitor-box .text-box .explanation {
  margin-top: 0.6666666667em;
  color: #666;
  font-size: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 1330px) {
  .exhibitor-list .exhibitor-box .text-box .explanation {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .exhibitor-list .exhibitor-box .text-box .explanation {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .exhibitor-list .exhibitor-box .text-box .explanation {
    margin-top: 0.25em;
    font-size: 12px;
  }
}
.exhibitor-list .exhibitor-box .text-box .category-list {
  display: flex;
  align-items: flex-start;
  flex-flow: column nowrap;
  justify-content: flex-start;
  gap: 0.3125em;
  margin-top: 10px;
  padding-top: 10px;
  width: 100%;
  border-top: solid 1px #B0B0B0;
}
.exhibitor-list .exhibitor-box .text-box .category-list .category-box {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: flex-start;
  gap: 0.6153846154em;
  font-size: 13px;
}
@media screen and (max-width: 1330px) {
  .exhibitor-list .exhibitor-box .text-box .category-list .category-box {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .exhibitor-list .exhibitor-box .text-box .category-list .category-box {
    font-size: 12px;
  }
}
.exhibitor-list .exhibitor-box .text-box .category-list .category-box img {
  display: block;
  aspect-ratio: 1;
  width: 25px;
  height: auto;
}
.exhibitor-list .exhibitor-box:nth-child(n+7) {
  display: none;
}
.exhibitor-list + .more {
  display: none;
  gap: 0.625em;
  margin: 2.5em auto 0;
  font-weight: 700;
  line-height: 1;
  position: relative;
}
@media (hover: hover) {
  .exhibitor-list + .more:hover, .exhibitor-list + .more:focus {
    color: #EB4B4B;
  }
  .exhibitor-list + .more:hover::before, .exhibitor-list + .more:focus::before {
    background-image: url(../media/images/common/icon_more_hover.svg);
  }
}
@media screen and (max-width: 767px) {
  .exhibitor-list + .more {
    margin: 2.1428571429em auto 0;
  }
}
.exhibitor-list + .more.show {
  display: flex;
  align-items: center;
  flex-flow: column nowrap;
  justify-content: flex-start;
}
.exhibitor-list + .more::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  aspect-ratio: 12/15;
  width: 0.75em;
  height: auto;
  background-image: url(../media/images/common/icon_more.svg);
}
.exhibitor-list.all .exhibitor-box:nth-child(n+7) {
  display: block;
}
.exhibitor-list.all + .more {
  display: none;
}

/* ダウンロードリスト
-------------------------------------------------------------*/
.download-list {
  display: flex;
  align-items: flex-start;
  flex-flow: row wrap;
  justify-content: flex-start;
  gap: 2.1875em;
  margin: 2.5em auto 0;
}
@media screen and (max-width: 767px) {
  .download-list {
    display: flex;
    align-items: flex-start;
    flex-flow: column nowrap;
    justify-content: flex-start;
    gap: 1.4285714286em;
    margin: 1.4285714286em auto 0;
  }
}
.download-list .download-box {
  width: calc(33.3333333333% - 2 * 2.3333333333em / 3);
  font-size: 15px;
}
@media screen and (max-width: 1330px) {
  .download-list .download-box {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .download-list .download-box {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .download-list .download-box {
    width: auto;
    max-width: 100%;
  }
}
.download-list .download-box .box-inner {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: flex-start;
  gap: 0.4em;
  padding: 0 2em 0.1333333333em 0;
  border-bottom: solid 1px #EB4B4B;
  color: #EB4B4B;
  text-decoration: none;
  position: relative;
}
@media (hover: hover) {
  .download-list .download-box .box-inner:hover {
    border-bottom: 0;
  }
  .download-list .download-box .box-inner:focus::before {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .download-list .download-box .box-inner {
    padding-right: 3.2142857143em;
  }
}
.download-list .download-box .box-inner::before {
  content: "";
  width: calc(100% + 1.3333333333em);
  height: calc(100% + 1.3333333333em);
  background: #FFE5E5;
  border-radius: 5px;
  opacity: 0;
  transition: all 0.3s;
  position: absolute;
  top: -0.6666666667em;
  left: -0.6666666667em;
  z-index: -1;
}
.download-list .download-box .box-inner::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  aspect-ratio: 15/14;
  width: 1em;
  height: auto;
  background-image: url(../media/images/common/icon_download.svg);
  position: absolute;
  top: calc(50% - 0.1333333333em);
  right: 0.3333333333em;
  transform: translate(0, -50%);
}
.download-list .download-box .file-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.download-list .download-box .sub {
  font-size: 0.8em;
  white-space: nowrap;
}

/* 情報リスト
-------------------------------------------------------------*/
.information-list {
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: 100%;
  gap: 1.4285714286em;
  margin: 2.5em auto 0;
}
@media screen and (max-width: 767px) {
  .information-list {
    margin-top: 1.4285714286em;
  }
}
.information-list .information-box {
  border-bottom: solid 1px #B0B0B0;
}
.information-list .information-box .box-inner {
  display: flex;
  align-items: flex-start;
  flex-flow: row nowrap;
  justify-content: flex-start;
  gap: 2.5em;
  padding-bottom: 1.25em;
}
@media screen and (max-width: 767px) {
  .information-list .information-box .box-inner {
    padding-bottom: 1.4285714286em;
    gap: 1.4285714286em;
  }
}
.information-list .information-box dt {
  width: 80px;
}
.information-list .information-box dd {
  flex: 1;
}
.information-list:has(.information-box:nth-child(3n)) {
  grid-template-rows: repeat(2, auto);
}

/* キーワード検索
-------------------------------------------------------------*/
#keyword-search .keyword-search {
  margin-top: 3.125em;
}
@media screen and (max-width: 767px) {
  #keyword-search .keyword-search {
    margin-top: 1.4285714286em;
    padding: 0 0.7142857143em;
  }
}

.keyword-search {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: center;
  gap: 0.625em;
}
@media screen and (max-width: 767px) {
  .keyword-search {
    display: flex;
    align-items: center;
    flex-flow: column nowrap;
    justify-content: flex-start;
    gap: 1.4285714286em;
  }
}
.keyword-search .keyword-input {
  width: 100%;
  max-width: 34.375em;
}
.keyword-search .search-btn {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: center;
  gap: 0.625em;
  padding: 0.1em 1.15em;
  min-width: 6.5em;
  min-height: 45px;
  border: solid 1px #EB4B4B;
  background: #EB4B4B;
  color: #FFFFFF;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 9999px;
  position: relative;
}
@media (hover: hover) {
  .keyword-search .search-btn:hover, .keyword-search .search-btn:focus {
    opacity: 1;
    background: #FFFFFF;
    color: #EB4B4B;
    outline: none;
  }
  .keyword-search .search-btn:hover::after, .keyword-search .search-btn:focus::after {
    background-image: url(../media/images/common/icon_search_hover.svg);
  }
}
@media screen and (max-width: 767px) {
  .keyword-search .search-btn {
    min-width: 11.3333333333em;
    font-size: 15px;
  }
}
.keyword-search .search-btn::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  aspect-ratio: 1;
  width: 1.125em;
  height: auto;
  background-image: url(../media/images/common/icon_search.svg);
}
@media screen and (max-width: 767px) {
  .keyword-search .search-btn::after {
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translate(0, -50%);
  }
}

/* カテゴリ検索
-------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .section-inner:has(.category-search) {
    padding: 0;
  }
}

.category-search {
  display: flex;
  align-items: stretch;
  flex-flow: row wrap;
  justify-content: flex-start;
  gap: 0.625em 0.5em;
}
@media screen and (max-width: 767px) {
  .category-search {
    gap: 0.7142857143em 0.5714285714em;
    padding: 0 0.3571428571em;
  }
}
.category-search label {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: flex-start;
  gap: 10px;
  padding: 0.7692307692em;
  width: calc(20% - 4 * 0.6153846154em / 5);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  border-radius: 5px;
  box-shadow: 0.0625em 0.0625em 0.125em 0 rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
}
@media screen and (max-width: 1330px) {
  .category-search label {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .category-search label {
    font-size: 12px;
  }
}
@media (hover: hover) {
  .category-search label:hover {
    color: #EB4B4B;
  }
}
@media screen and (max-width: 1330px) {
  .category-search label {
    width: calc(25% - 3 * 0.6666666667em / 4);
  }
}
@media screen and (max-width: 767px) {
  .category-search label {
    width: calc(50% - 1 * 0.6153846154em / 2);
    font-size: 13px;
  }
}
.category-search label::before, .category-search label::after {
  display: none;
}
.category-search label img {
  aspect-ratio: 1;
  width: 3.8461538462em;
  min-width: 3.8461538462em;
  height: auto;
}
@media screen and (max-width: 767px) {
  .category-search label img {
    width: 3.0769230769em;
    min-width: 3.0769230769em;
  }
}
.category-search label:has(input[type=checkbox]:checked) {
  box-shadow: 0 0 2px 2px #EB4B4B;
  outline: none;
  transition: all 0.3s;
}
.category-search label:has(input[type=checkbox]:focus) {
  color: #EB4B4B;
}

.sub-category-search {
  margin-top: 1.875em;
  display: flex;
  align-items: flex-start;
  flex-flow: column nowrap;
  justify-content: flex-start;
  gap: 0.625em;
}
@media screen and (max-width: 767px) {
  .sub-category-search {
    margin-top: 1.4285714286em;
  }
}
.sub-category-search:has(.sub-category-box.show) {
  display: flex;
  align-items: flex-start;
  flex-flow: column nowrap;
  justify-content: flex-start;
}
.sub-category-search:has(.sub-category-box.show) + .clear-btn {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: flex-start;
}
.sub-category-search:not(:has(.sub-category-box.show)) {
  display: none;
}
.sub-category-search:not(:has(.sub-category-box.show)) + .clear-btn {
  display: none;
}
.sub-category-search .sub-category-box {
  display: flex;
  align-items: stretch;
  flex-flow: row nowrap;
  justify-content: flex-start;
  gap: 2.5em;
  padding: 1.875em 2.5em;
  width: 100%;
  background: #F3F3F3;
  border-radius: 5px;
  position: relative;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .sub-category-search .sub-category-box {
    display: flex;
    align-items: center;
    flex-flow: column nowrap;
    justify-content: flex-start;
    gap: 1.4285714286em;
    padding: 1.4285714286em 1.0714285714em;
  }
}
.sub-category-search .sub-category-box.show {
  display: flex;
  align-items: stretch;
  flex-flow: row nowrap;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .sub-category-search .sub-category-box.show {
    display: flex;
    align-items: center;
    flex-flow: column nowrap;
    justify-content: flex-start;
  }
}
.sub-category-search .sub-category-box:not(.show) {
  display: none;
}
.sub-category-search .sub-category-box .parent-category-name {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: flex-start;
  gap: 10px;
  padding-right: 3.0769230769em;
  width: 12.6923076923em;
  min-width: 12.6923076923em;
  border-right: solid 1px #B0B0B0;
  font-size: 13px;
  font-weight: 700;
}
@media screen and (max-width: 1330px) {
  .sub-category-search .sub-category-box .parent-category-name {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .sub-category-search .sub-category-box .parent-category-name {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .sub-category-search .sub-category-box .parent-category-name {
    display: flex;
    align-items: center;
    flex-flow: row nowrap;
    justify-content: center;
    padding-right: 0;
    padding-bottom: 1.5384615385em;
    width: 100%;
    border-right: 0;
    border-bottom: solid 1px #B0B0B0;
    font-size: 14px;
  }
}
.sub-category-search .sub-category-box .parent-category-name img {
  width: 3.8461538462em;
  min-width: 3.8461538462em;
  height: auto;
}
@media screen and (max-width: 767px) {
  .sub-category-search .sub-category-box .parent-category-name img {
    width: 2.8571428571em;
    min-width: 2.8571428571em;
  }
}
.sub-category-search .sub-category-box .sub-category-close {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: flex-start;
  gap: 0.6153846154em;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  position: absolute;
  bottom: 1.0769230769em;
  right: 1.2307692308em;
}
@media screen and (max-width: 1330px) {
  .sub-category-search .sub-category-box .sub-category-close {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .sub-category-search .sub-category-box .sub-category-close {
    font-size: 12px;
  }
}
.sub-category-search .sub-category-box .sub-category-close::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  aspect-ratio: 1;
  width: 0.7692307692em;
  height: auto;
  background-image: url(../media/images/common/icon_close.svg);
  position: relative;
  top: 0.0769230769em;
}
.sub-category-search .sub-category-box .sub-category-close:focus {
  background: #FFE5E5;
  outline: none;
  transition: all 0.3s;
}
.sub-category-search .sub-categories {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  justify-content: flex-start;
  gap: 0.625em 0.3125em;
}
@media screen and (max-width: 767px) {
  .sub-category-search .sub-categories {
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    justify-content: center;
  }
}
.sub-category-search .sub-categories label {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: flex-start;
  gap: 0.3571428571em;
  padding: 0.1em 1.1em;
  min-height: 2.5em;
  border: solid 1px #283E7B;
  background: #FFFFFF;
  color: #283E7B;
  font-size: 14px;
  line-height: 1.2;
  border-radius: 9999px;
  transition: all 0.3s;
}
@media screen and (max-width: 1330px) {
  .sub-category-search .sub-categories label {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .sub-category-search .sub-categories label {
    font-size: 14px;
  }
}
@media (hover: hover) {
  .sub-category-search .sub-categories label:hover {
    box-shadow: 0 0 0 1px #283E7B;
  }
}
@media screen and (max-width: 767px) {
  .sub-category-search .sub-categories label {
    min-height: 2.4615384615em;
    font-size: 13px;
  }
}
.sub-category-search .sub-categories label:before {
  display: none;
  border: 0;
  background: none;
  position: relative;
  top: auto;
  left: auto;
  transform: none;
}
.sub-category-search .sub-categories label::after {
  display: none;
}
.sub-category-search .sub-categories label:has(input[type=checkbox]:checked) {
  background: #283E7B;
  color: #FFFFFF;
}
.sub-category-search .sub-categories label:has(input[type=checkbox]:checked):before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  aspect-ratio: 10/6;
  width: 12px;
  height: auto;
  background-image: url(../media/images/common/icon_check.svg);
}
.sub-category-search .sub-categories label:has(input[type=checkbox]:focus) {
  box-shadow: 0 0 0 1px #283E7B;
}
.sub-category-search .sub-categories label:has(input[type=checkbox]:focus):before {
  box-shadow: none;
}

.clear-btn {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: flex-start;
  gap: 0.5333333333em;
  margin: 1.875em auto;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
}
@media screen and (max-width: 1330px) {
  .clear-btn {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .clear-btn {
    font-size: 14px;
  }
}
@media (hover: hover) {
  .clear-btn:hover {
    color: #EB4B4B;
  }
}
.clear-btn::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  aspect-ratio: 1;
  width: 0.8em;
  height: auto;
  background-image: url(../media/images/common/icon_close.svg);
  position: relative;
  top: 0.0666666667em;
}
.clear-btn:focus {
  background: #FFE5E5;
  outline: none;
  transition: all 0.3s;
}

/* 五十音検索
-------------------------------------------------------------*/
.indexes-search {
  display: flex;
  align-items: flex-start;
  flex-flow: row wrap;
  justify-content: center;
  gap: 10px;
}
.indexes-search label {
  display: flex;
  align-items: center;
  flex-flow: column nowrap;
  justify-content: center;
  padding: 0;
  width: 2.7777777778em;
  height: 2.7777777778em;
  border: solid 1px #EB4B4B;
  color: #EB4B4B;
  font-size: 18px;
  border-radius: 5px;
  transition: all 0.3s;
}
@media screen and (max-width: 1330px) {
  .indexes-search label {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .indexes-search label {
    font-size: 16px;
  }
}
@media (hover: hover) {
  .indexes-search label:hover {
    box-shadow: 0 0 0 1px #EB4B4B;
  }
}
@media screen and (max-width: 767px) {
  .indexes-search label {
    width: 2.5em;
    height: 2.5em;
  }
}
.indexes-search label::before, .indexes-search label::after {
  display: none;
}
.indexes-search label:has(input[type=radio]:checked) {
  background: #EB4B4B;
  color: #FFFFFF;
}
.indexes-search label:has(input[type=radio]:focus) {
  box-shadow: 0 0 0 1px #EB4B4B;
}

/* 機能検索
-------------------------------------------------------------*/
.tag-search {
  display: flex;
  align-items: stretch;
  flex-flow: row wrap;
  justify-content: flex-start;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .tag-search {
    display: flex;
    align-items: stretch;
    flex-flow: row wrap;
    justify-content: center;
  }
}
.tag-search label {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: flex-start;
  gap: 0.3125em;
  padding: 0.1em 1.25em;
  min-height: 2.5em;
  border: solid 1px #00A060;
  background: #FFFFFF;
  color: #00A060;
  line-height: 1.2;
  border-radius: 9999px;
  transition: all 0.3s;
}
@media (hover: hover) {
  .tag-search label:hover {
    box-shadow: 0 0 0 1px #00A060;
  }
}
@media screen and (max-width: 767px) {
  .tag-search label {
    min-height: 2.4615384615em;
    font-size: 13px;
  }
}
.tag-search label:before {
  display: none;
  border: 0;
  background: none;
  position: relative;
  top: auto;
  left: auto;
  transform: none;
}
.tag-search label::after {
  display: none;
}
.tag-search label:has(input[type=checkbox]:checked) {
  background: #00A060;
  color: #FFFFFF;
}
.tag-search label:has(input[type=checkbox]:checked):before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  aspect-ratio: 10/6;
  width: 12px;
  height: auto;
  background-image: url(../media/images/common/icon_check.svg);
}
.tag-search label:has(input[type=checkbox]:focus) {
  box-shadow: 0 0 0 1px #00A060;
}
.tag-search label:has(input[type=checkbox]:focus):before {
  box-shadow: none;
}

/* 検索結果
-------------------------------------------------------------*/
#search-result {
  margin-top: 4.375em;
  border-top: solid 1px #B0B0B0;
}
@media screen and (max-width: 767px) {
  #search-result {
    margin-top: 2.5em;
  }
}
#search-result .total {
  display: flex;
  align-items: baseline;
  flex-flow: row nowrap;
  justify-content: center;
  gap: 0.75em;
  margin-top: 1.875em;
}
@media screen and (max-width: 767px) {
  #search-result .total {
    margin-top: 1.4285714286em;
  }
}
#search-result .total dt {
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 1330px) {
  #search-result .total dt {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  #search-result .total dt {
    font-size: 14px;
  }
}
#search-result .total dd {
  display: flex;
  align-items: baseline;
  flex-flow: row nowrap;
  justify-content: center;
  gap: 0.3571428571em;
  font-size: 14px;
}
@media screen and (max-width: 1330px) {
  #search-result .total dd {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  #search-result .total dd {
    font-size: 14px;
  }
}
#search-result .total dd em {
  font-size: 1.5em;
}
#search-result .pager {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  justify-content: center;
  gap: 5px;
  margin-top: 1.875em;
}
@media screen and (max-width: 767px) {
  #search-result .pager {
    margin-top: 1.4285714286em;
  }
}
#search-result .pager li a {
  display: flex;
  align-items: center;
  flex-flow: column nowrap;
  justify-content: center;
  aspect-ratio: 1;
  width: 2.1428571429em;
  height: auto;
  color: #333;
  font-size: 14px;
  text-decoration: none;
  border-radius: 50%;
  position: relative;
}
@media screen and (max-width: 1330px) {
  #search-result .pager li a {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  #search-result .pager li a {
    font-size: 14px;
  }
}
@media (hover: hover) {
  #search-result .pager li a:hover {
    color: #EB4B4B;
  }
}
#search-result .pager li.prev a, #search-result .pager li.next a {
  display: block;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
}
#search-result .pager li.prev a::before, #search-result .pager li.next a::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  aspect-ratio: 9/14;
  width: 0.6428571429em;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#search-result .pager li.prev {
  margin-right: 20px;
}
#search-result .pager li.prev a::before {
  background-image: url(../media/images/common/icon_page_prev.svg);
}
@media (hover: hover) {
  #search-result .pager li.prev a:hover::before {
    background-image: url(../media/images/common/icon_page_prev_hover.svg);
  }
}
#search-result .pager li.prev.disabled a::before {
  background-image: url(../media/images/common/icon_page_prev_disabled.svg);
}
#search-result .pager li.next {
  margin-left: 20px;
}
#search-result .pager li.next a::before {
  background-image: url(../media/images/common/icon_page_next.svg);
}
@media (hover: hover) {
  #search-result .pager li.next a:hover::before {
    background-image: url(../media/images/common/icon_page_next_hover.svg);
  }
}
#search-result .pager li.next.disabled a::before {
  background-image: url(../media/images/common/icon_page_next_disabled.svg);
}
#search-result .pager li.current a {
  background: #333;
  color: #FFFFFF;
  pointer-events: none;
}
#search-result .pager li.disabled a {
  pointer-events: none;
}
@media (hover: hover) {
  #search-result .pager li.disabled a:focus {
    background: none;
  }
}
#search-result .result-list {
  display: flex;
  align-items: stretch;
  flex-flow: row wrap;
  justify-content: flex-start;
  gap: 1.25em;
  margin-top: 2.5em;
  padding: 3.125em;
  background: #F3F3F3;
  border-radius: 10px;
}
@media screen and (max-width: 1330px) {
  #search-result .result-list {
    padding: 2.1428571429em;
  }
}
@media screen and (max-width: 767px) {
  #search-result .result-list {
    gap: 0.7142857143em;
    margin-top: 1.4285714286em;
    padding: 1.4285714286em 1.1428571429em;
  }
}
#search-result .result-list .result-box {
  width: calc(50% - 1 * 1.25em / 2);
}
@media screen and (max-width: 767px) {
  #search-result .result-list .result-box {
    width: 100%;
  }
}
#search-result .result-list .result-box .box-inner {
  display: block;
  padding: 1.25em;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0.125em 0.125em 0.25em 0 rgba(0, 0, 0, 0.15);
}
@media (hover: hover) {
  #search-result .result-list .result-box .box-inner:hover, #search-result .result-list .result-box .box-inner:focus {
    box-shadow: 0 0 2px 2px #EB4B4B;
    outline: none;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 1330px) {
  #search-result .result-list .result-box .box-inner {
    padding: 1.0714285714em;
  }
}
#search-result .result-list.exhibitor .result-box .box-inner {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: flex-start;
  gap: 1.25em;
}
#search-result .result-list.exhibitor .result-box .img-box {
  aspect-ratio: 170/145;
  padding: 0.3125em;
  width: 10.625em;
  min-width: 10.625em;
  overflow: hidden;
}
#search-result .result-list.exhibitor .result-box .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1330px) {
  #search-result .result-list.exhibitor .result-box .img-box {
    width: 40%;
    min-width: 40%;
  }
}
@media screen and (max-width: 767px) {
  #search-result .result-list.exhibitor .result-box .img-box {
    width: 9.2857142857em;
    min-width: 9.2857142857em;
  }
}
#search-result .result-list.exhibitor .result-box .img-box.no-image {
  padding: 0;
}
#search-result .result-list.exhibitor .result-box .text-box {
  flex: 1;
  display: flex;
  align-items: flex-start;
  flex-flow: column nowrap;
  justify-content: flex-start;
  min-width: 0;
  height: 100%;
}
#search-result .result-list.exhibitor .result-box .text-box .text-box-inner {
  flex: 1;
  max-width: 100%;
}
#search-result .result-list.exhibitor .result-box .text-box .name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 1330px) {
  #search-result .result-list.exhibitor .result-box .text-box .name {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  #search-result .result-list.exhibitor .result-box .text-box .name {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  #search-result .result-list.exhibitor .result-box .text-box .name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  #search-result .result-list.exhibitor .result-box .text-box .name {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
#search-result .result-list.exhibitor .result-box .text-box .explanation {
  margin-top: 0.6666666667em;
  color: #666;
  font-size: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 1330px) {
  #search-result .result-list.exhibitor .result-box .text-box .explanation {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  #search-result .result-list.exhibitor .result-box .text-box .explanation {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  #search-result .result-list.exhibitor .result-box .text-box .explanation {
    margin-top: 0.25em;
    font-size: 12px;
  }
}
#search-result .result-list.exhibitor .result-box .text-box .category-list {
  display: flex;
  align-items: flex-start;
  flex-flow: column nowrap;
  justify-content: flex-start;
  gap: 0.3125em;
  margin-top: 10px;
  padding-top: 10px;
  width: 100%;
  border-top: solid 1px #B0B0B0;
}
#search-result .result-list.exhibitor .result-box .text-box .category-list .category-box {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: flex-start;
  gap: 0.6153846154em;
  font-size: 13px;
}
@media screen and (max-width: 1330px) {
  #search-result .result-list.exhibitor .result-box .text-box .category-list .category-box {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  #search-result .result-list.exhibitor .result-box .text-box .category-list .category-box {
    font-size: 12px;
  }
}
#search-result .result-list.exhibitor .result-box .text-box .category-list .category-box img {
  display: block;
  aspect-ratio: 1;
  width: 25px;
  height: auto;
}
#search-result .result-list.product .result-box .box-inner {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: flex-start;
  gap: 1.25em;
}
#search-result .result-list.product .result-box .img-box {
  aspect-ratio: 170/150;
  padding: 0.3125em;
  width: 10.625em;
  min-width: 10.625em;
  overflow: hidden;
}
#search-result .result-list.product .result-box .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1330px) {
  #search-result .result-list.product .result-box .img-box {
    width: 40%;
    min-width: 40%;
  }
}
@media screen and (max-width: 767px) {
  #search-result .result-list.product .result-box .img-box {
    width: 9.2857142857em;
    min-width: 9.2857142857em;
  }
}
#search-result .result-list.product .result-box .img-box.no-image {
  padding: 0;
}
#search-result .result-list.product .result-box .text-box {
  flex: 1;
  display: flex;
  align-items: flex-start;
  flex-flow: column nowrap;
  justify-content: flex-start;
  min-width: 0;
  height: 100%;
}
#search-result .result-list.product .result-box .text-box .text-box-inner {
  width: 100%;
  max-width: 100%;
}
#search-result .result-list.product .result-box .text-box .maker-name {
  margin-bottom: 1.4285714286em;
  padding-bottom: 0.5714285714em;
  border-bottom: solid 1px #B0B0B0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 1330px) {
  #search-result .result-list.product .result-box .text-box .maker-name {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  #search-result .result-list.product .result-box .text-box .maker-name {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  #search-result .result-list.product .result-box .text-box .maker-name {
    margin-bottom: 0.8333333333em;
    padding-bottom: 0.4166666667em;
    font-size: 12px;
  }
}
#search-result .result-list.product .result-box .text-box .name {
  color: #EB4B4B;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 1330px) {
  #search-result .result-list.product .result-box .text-box .name {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  #search-result .result-list.product .result-box .text-box .name {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  #search-result .result-list.product .result-box .text-box .name {
    font-size: 14px;
  }
}
#search-result .result-list.product .result-box .text-box .explanation {
  margin-top: 0.6666666667em;
  color: #666;
  font-size: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 1330px) {
  #search-result .result-list.product .result-box .text-box .explanation {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  #search-result .result-list.product .result-box .text-box .explanation {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  #search-result .result-list.product .result-box .text-box .explanation {
    margin-top: 0.8333333333em;
    font-size: 12px;
  }
}
#search-result .result-list + .pager {
  margin-top: 2.5em;
}

/* 概要情報
-------------------------------------------------------------*/
.outline-list {
  display: flex;
  align-items: flex-start;
  flex-flow: column nowrap;
  justify-content: flex-start;
  gap: 1.25em;
  margin-top: 2.5em;
}
@media screen and (max-width: 767px) {
  .outline-list {
    gap: 0.7142857143em;
    margin-top: 2.1428571429em;
  }
}
.outline-list .outline-box {
  display: flex;
  align-items: stretch;
  flex-flow: row nowrap;
  justify-content: flex-start;
  gap: 2.5em;
  padding: 1.875em 2.5em;
  width: 100%;
  background: #F3F3F3;
}
@media screen and (max-width: 767px) {
  .outline-list .outline-box {
    display: flex;
    align-items: center;
    flex-flow: column nowrap;
    justify-content: flex-start;
    gap: 1.0714285714em;
    padding: 1.0714285714em 1.4285714286em;
  }
}
.outline-list .outline-box .outline-title {
  display: flex;
  align-items: center;
  flex-flow: column nowrap;
  justify-content: center;
  padding-right: 2em;
  width: 7em;
  border-right: solid 1px #D9D9D9;
  color: #EB4B4B;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 1330px) {
  .outline-list .outline-box .outline-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .outline-list .outline-box .outline-title {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .outline-list .outline-box .outline-title {
    display: flex;
    align-items: center;
    flex-flow: column nowrap;
    justify-content: center;
    padding-right: 0;
    padding-bottom: 0.8823529412em;
    width: 100%;
    border-right: 0;
    border-bottom: solid 1px #D9D9D9;
    font-size: 17px;
  }
}
.outline-list .outline-box .outlines {
  display: flex;
  align-items: flex-start;
  flex-flow: column nowrap;
  justify-content: flex-start;
  gap: 1em;
  padding: 0.125em 0;
}
@media screen and (max-width: 767px) {
  .outline-list .outline-box .outlines {
    gap: 0.7142857143em;
    width: 100%;
  }
}
.outline-list .outline-box dl {
  display: flex;
  align-items: flex-start;
  flex-flow: row nowrap;
  justify-content: flex-start;
  gap: 0.3125em;
}
@media screen and (max-width: 767px) {
  .outline-list .outline-box dl {
    display: flex;
    align-items: flex-start;
    flex-flow: column nowrap;
    justify-content: flex-start;
    gap: 0.2857142857em;
  }
}
.outline-list .outline-box dl dt {
  display: flex;
  align-items: flex-start;
  flex-flow: row nowrap;
  justify-content: flex-start;
  gap: 0.3333333333em;
  color: #EB4B4B;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 1330px) {
  .outline-list .outline-box dl dt {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .outline-list .outline-box dl dt {
    font-size: 14px;
  }
}
.outline-list .outline-box dl dt::after {
  content: "／";
  color: #333;
}
@media screen and (max-width: 767px) {
  .outline-list .outline-box dl dt::after {
    content: none;
  }
}
.outline-list .outline-box dl dd {
  font-size: 15px;
}
@media screen and (max-width: 1330px) {
  .outline-list .outline-box dl dd {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .outline-list .outline-box dl dd {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .outline-list .outline-box dl dd {
    font-size: 15px;
  }
}/*# sourceMappingURL=style.css.map */