@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: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-feature-settings: "palt";
  line-height: 1.75;
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  word-break: break-word;
  overflow-x: hidden;
  font-weight: 500;
}
@media screen and (max-width: 1180px) {
  body {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

body.non-scroll {
  overflow: hidden;
}

/* 共通スタイル（タグ）
-------------------------------------------------------------*/
p {
  margin: 1em 0 0;
}
p.lead {
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  p.lead {
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    text-align: left;
  }
}

a {
  text-decoration: underline;
  text-underline-offset: 0.25em;
  transition: all 0.3s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}
a[href^="tel:"] {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

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.5;
}
@media screen and (max-width: 1180px) {
  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: 1180px) {
  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.7142857143em 0 0;
  border: solid 1px #000000;
  border-color: #a0a0a0;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 1180px) {
  table {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  table {
    font-size: 12px;
  }
}
table th {
  padding: 0.5714285714em 0.8571428571em;
  border: solid 1px #000000;
  border-color: #a0a0a0;
  background: #F0F0F0;
}
table td {
  padding: 0.5714285714em 0.8571428571em;
  border: solid 1px #a0a0a0;
}

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

hr {
  margin: 5em auto;
  color: #a0a0a0;
}

/* テキスト入力 */
input[type=text],
input[type=email],
input[type=password],
input[type=tel],
input[type=number],
textarea {
  padding: 0.75em;
  border: solid 1px #000000;
  border-color: #757575;
  background: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.3;
  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 0.375em #a0a0a0;
  transition: all 0.3s;
}

/* セレクトボックス */
.select-box {
  width: fit-content;
  max-width: 100%;
  border: solid 1px #000000;
  border-color: #a0a0a0;
  background: #FFFFFF;
  line-height: 1.3;
  border-radius: 5px;
  position: relative;
}
.select-box::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 8px;
  z-index: 1;
  aspect-ratio: 10/6;
  width: 0.625em;
  height: auto;
  background: url(../media/images/common/icon_select_arrow.svg);
}
.select-box select {
  padding: 0.75em 2.25em 0.75em 0.75em;
  max-width: 100%;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  z-index: 3;
}
.select-box select:focus {
  box-shadow: 0 0 0.375em #a0a0a0;
  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 #000000;
  border-color: #a0a0a0;
  background: #FFFFFF;
  line-height: 1.3;
  border-radius: 50%;
  position: absolute;
  top: calc(50% + 0.1em);
  left: 0;
  transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  input[type=radio] + label::before {
    top: calc(50% + 0.05em);
  }
}
input[type=radio]:checked + label::before {
  border-color: #CC0000;
  border-color: #757575;
}
input[type=radio]:checked + label::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #CC0000;
  background: #23A9C1;
  border-radius: 50%;
  position: absolute;
  top: calc(50% + 0.1em);
  left: 4px;
  transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  input[type=radio]:checked + label::after {
    top: calc(50% + 0.05em);
  }
}
input[type=radio]:focus + label::before {
  box-shadow: 0 0 0.375em #a0a0a0;
  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;
}
@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: 0.8571428571em;
  }
}

/* チェックボックス */
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 #000000;
  border-color: #a0a0a0;
  background: #FFFFFF;
  border-radius: 2px;
  position: absolute;
  top: calc(50% + 0.1em);
  left: 0;
  transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  input[type=checkbox] + label::before {
    top: calc(50% + 0.05em);
  }
}
input[type=checkbox]:checked + label::before {
  border-color: #CC0000;
  background: #CC0000;
  border-color: #23A9C1;
  background: #23A9C1;
}
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: #CC0000;
  background: #23A9C1;
  transform: rotate(-45deg);
  position: absolute;
  top: calc(50% + 0.1em);
  left: 3px;
  transform: translate(0, -75%) rotate(-45deg);
}
@media screen and (max-width: 767px) {
  input[type=checkbox]:checked + label::after {
    top: calc(50% + 0.05em);
  }
}
input[type=checkbox]:focus + label::before {
  box-shadow: 0 0 0.375em #a0a0a0;
  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;
}
@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: 0.8571428571em;
  }
}

/* パスワード入力 */
.password-wrap {
  position: relative;
}
.password-wrap .mask-btn {
  display: block;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  aspect-ratio: 1/1;
  width: auto;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.password-wrap .mask-btn::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  aspect-ratio: 24/17;
  width: 1.5em;
  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: 3em;
}
.password-wrap input[type=password]::-ms-reveal,
.password-wrap input[type=text]::-ms-reveal {
  display: none;
}

/* 共通スタイル（id、class）
-------------------------------------------------------------*/
.anchor {
  scroll-padding-top: 90px;
}
@media screen and (max-width: 1180px) {
  .anchor {
    scroll-padding-top: 80px;
  }
}
@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: 1180px) {
  .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;
}

.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: 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: #CC0000;
}

.attention {
  color: #CC0000;
}

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

.notice {
  font-size: 0.9em;
}

.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%, #F0F0F0 0%);
}

.message {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1180px) {
  .message {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .message {
    font-size: 15px;
  }
}

.complete-message {
  margin-top: 4.0909090909em;
  color: #143CBA;
  font-size: 22px;
}
@media screen and (max-width: 1180px) {
  .complete-message {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .complete-message {
    font-size: 17px;
  }
}
@media screen and (max-width: 767px) {
  .complete-message {
    margin-top: 2.9411764706em;
  }
}
.complete-message.with-icon {
  display: flex;
  align-items: center;
  flex-flow: column nowrap;
  justify-content: flex-start;
  gap: 1.3636363636em;
}
@media screen and (max-width: 767px) {
  .complete-message.with-icon {
    gap: 1.1764705882em;
  }
}
.complete-message.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) {
  .complete-message.with-icon::before {
    width: 3.5294117647em;
  }
}
.complete-message.with-icon.sent-mail::before {
  width: 2.9545454545em;
  background-image: url(../media/images/common/icon_mail_sent.png);
}
@media screen and (max-width: 767px) {
  .complete-message.with-icon.sent-mail::before {
    width: 2.2941176471em;
  }
}

/* ブロック
-------------------------------------------------------------*/
#wholeWrapper,
#main {
  margin: auto;
  padding-bottom: 7.5em;
  width: 100%;
  flex: 1;
  position: relative;
}
#wholeWrapper.simple,
#main.simple {
  display: flex;
  align-items: center;
  flex-flow: column nowrap;
  justify-content: center;
  padding: 0;
}

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

.content-box {
  margin: 2.5em 0 0;
  padding: 3.75em 5em;
  border-radius: 20px;
  box-shadow: 0 0.375em 0.75em 0 rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .content-box {
    border-radius: 10px;
  }
}
@media screen and (max-width: 767px) {
  .content-box {
    padding: 2.2857142857em 1.7142857143em;
  }
}
.content-box .content-box-title {
  margin: 1.1428571429em 0 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 1180px) {
  .content-box .content-box-title {
    font-size: 25px;
  }
}
@media screen and (max-width: 767px) {
  .content-box .content-box-title {
    font-size: 21px;
  }
}
.content-box .content-box-title + * {
  margin-top: 1.5em;
}
.content-box > *:first-child {
  margin-top: 0;
}

.terms-box {
  margin: 1.5em auto 0;
  max-width: 900px;
  max-height: 200px;
  background: #FFFFFF;
  border: solid 1px #000000;
  border-color: #a0a0a0;
  overflow-y: auto;
}
@-moz-document url-prefix() {
  .terms-box {
    scrollbar-width: 0.375em;
    scrollbar-color: #a0a0a0 #F0F0F0;
  }
}
.terms-box::-webkit-scrollbar {
  background: #F0F0F0;
  width: 0.375em;
  border-radius: 999px;
}
.terms-box::-webkit-scrollbar-thumb {
  background: #a0a0a0;
  border-radius: 999px;
}
@media screen and (max-width: 767px) {
  .terms-box {
    max-height: min(53.33vw, 200px);
  }
}
.terms-box .terms-box-inner {
  padding: 2em;
}
.terms-box p {
  font-size: 14px;
}
@media screen and (max-width: 1180px) {
  .terms-box p {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .terms-box p {
    font-size: 12px;
  }
}

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

/* 動画
-------------------------------------------------------------*/
.movie-wrap {
  margin: 2.5em auto 0;
}

.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%;
  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: 1100px !important;
}

.lity-content {
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 1180px) {
  .lity-content {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .lity-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.lity-content::after {
  display: none;
}

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

.modal {
  padding: 0.625em;
  max-width: 1100px;
  background: #FFFFFF;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 0.375em 0.75em 0 rgba(0, 0, 0, 0.16);
}
.modal .modal-inner {
  max-height: calc(100vh - (90px + 2.5em) * 2) !important;
  padding: 2em 2.5em 2.5em;
  overflow-y: auto;
}
@-moz-document url-prefix() {
  .modal .modal-inner {
    scrollbar-width: 0.375em;
    scrollbar-color: #a0a0a0 #F0F0F0;
  }
}
.modal .modal-inner::-webkit-scrollbar {
  background: #F0F0F0;
  width: 0.375em;
  border-radius: 999px;
}
.modal .modal-inner::-webkit-scrollbar-thumb {
  background: #a0a0a0;
  border-radius: 999px;
}
@media screen and (max-width: 767px) {
  .modal .modal-inner {
    padding: 1.7142857143em 1.1428571429em 2.2857142857em;
  }
}
.modal .modal-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1180px) {
  .modal .modal-title {
    font-size: 25px;
  }
}
@media screen and (max-width: 767px) {
  .modal .modal-title {
    font-size: 21px;
  }
}
.modal .modal-close {
  display: block;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  aspect-ratio: 1;
  width: 2.5em;
  height: auto;
  position: absolute;
  top: 1em;
  right: 1em;
}
.modal .modal-close::before, .modal .modal-close::after {
  content: "";
  display: block;
  width: 80%;
  height: 2px;
  background: #000000;
  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);
}

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

/* スライダー
-------------------------------------------------------------*/
.slider .slide img {
  width: 100%;
  height: auto;
}

/* パンくず
-------------------------------------------------------------*/
#breadcrambs {
  margin: 1.7142857143em 0 2.8571428571em auto;
  font-size: 14px;
}
@media screen and (max-width: 1180px) {
  #breadcrambs {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  #breadcrambs {
    font-size: 12px;
  }
}
#breadcrambs li {
  display: inline;
  padding-right: 0.8571428571em;
  position: relative;
}
#breadcrambs li::after {
  content: "";
  display: inline-block;
  width: 0.5714285714em;
  height: 1px;
  background: #000000;
  position: relative;
  right: -0.5714285714em;
  top: -0.3571428571em;
}
#breadcrambs li.current {
  padding-right: 0;
  font-weight: 700;
}
#breadcrambs li.current::after {
  content: none;
}

/* 見出し
-------------------------------------------------------------*/
.page-title {
  margin: 1.1111111111em auto 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 1180px) {
  .page-title {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .page-title {
    font-size: 25px;
  }
}
.page-title + * {
  margin-top: 2.5em;
}

.large-title {
  margin: 1.1428571429em 0 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 1180px) {
  .large-title {
    font-size: 25px;
  }
}
@media screen and (max-width: 767px) {
  .large-title {
    font-size: 21px;
  }
}
.large-title + * {
  margin-top: 1.5em;
}

.medium-title {
  margin: 1.2em 0 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1180px) {
  .medium-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .medium-title {
    font-size: 17px;
  }
}
.medium-title + * {
  margin-top: 1em;
}

.small-title {
  margin: 1.1111111111em 0 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1180px) {
  .small-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .small-title {
    font-size: 15px;
  }
}
.small-title + * {
  margin-top: 0.5em;
}

/* ボタン
-------------------------------------------------------------*/
.buttons {
  display: flex;
  align-items: center;
  flex-flow: column nowrap;
  justify-content: flex-start;
  gap: 1em;
  margin: 2.5em auto 0;
}
.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;
  }
}

.button {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: center;
  padding: 0.1em 1.2em;
  border: solid 1px #000000;
  background: #FFFFFF;
  color: #000000;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  border-radius: 9999px;
  position: relative;
  border-radius: 3px;
}
@media screen and (max-width: 1180px) {
  .button {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .button {
    font-size: 15px;
  }
}
.button.positive {
  border-color: #143CBA;
  background: linear-gradient(80deg, #456BB4, #143CBA);
  color: #FFFFFF;
}
@media (hover: hover) {
  .button.positive:hover {
    opacity: 0.8;
    outline: none;
  }
  .button.positive:focus {
    opacity: 0.8;
    background: #FFFFFF;
    color: #143CBA;
    outline: none;
  }
}
.button.positive.disabled, .button.positive[disabled] {
  border-color: #a0a0a0;
  background: #a0a0a0;
  color: #FFFFFF;
  cursor: default !important;
  pointer-events: none;
}
.button.positive.red {
  border-color: #CC0000;
  background: linear-gradient(90deg, #E44C4C, #CC0000);
  color: #FFFFFF;
}
@media (hover: hover) {
  .button.positive.red:hover {
    opacity: 0.8;
    outline: none;
  }
  .button.positive.red:focus {
    opacity: 0.8;
    background: #FFFFFF;
    color: #CC0000;
    outline: none;
  }
}
.button.normal {
  border-color: #143CBA;
  background: #FFFFFF;
  color: #143CBA;
}
@media (hover: hover) {
  .button.normal:hover {
    opacity: 0.8;
    outline: none;
  }
  .button.normal:focus {
    opacity: 0.8;
    background: #143CBA;
    color: #FFFFFF;
    outline: none;
  }
}
.button.negative {
  border-color: #000000;
  background: #FFFFFF;
  color: #000000;
}
@media (hover: hover) {
  .button.negative:hover, .button.negative:focus {
    opacity: 1;
    background: #000000;
    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.3333333333em;
  font-size: 18px;
}
@media screen and (max-width: 1180px) {
  .button.large {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .button.large {
    font-size: 15px;
  }
}
.button.medium {
  width: 16.6666666667em;
  max-width: 100%;
  min-height: 3.3333333333em;
  font-size: 18px;
}
@media screen and (max-width: 1180px) {
  .button.medium {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .button.medium {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .button.medium {
    width: 16em;
  }
}
.button.small {
  width: 12.5em;
  max-width: 100%;
  min-height: 2.5em;
  font-size: 16px;
}
@media screen and (max-width: 1180px) {
  .button.small {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .button.small {
    font-size: 14px;
  }
}
.button.x-small {
  width: fit-content;
  max-width: 100%;
  min-height: 2.2857142857em;
  font-size: 14px;
}
@media screen and (max-width: 1180px) {
  .button.x-small {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .button.x-small {
    font-size: 12px;
  }
}
.button.link, .button.next {
  padding-left: 2.2222222222em;
  padding-right: 2.2222222222em;
}
.button.link::before, .button.next::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0.8333333333em;
  aspect-ratio: 1;
  width: 1.2222222222em;
  height: auto;
  background-image: url(../media/images/common/icon_next.svg);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.button.link::before:focus, .button.next::before:focus {
  background-image: url(../media/images/common/icon_next_reverse.svg);
}
.button.link.normal::before, .button.next.normal::before {
  background-image: url(../media/images/common/icon_next_reverse.svg);
}
.button.link.disabled::before, .button.link[disabled]::before, .button.next.disabled::before, .button.next[disabled]::before {
  background-image: url(../media/images/common/icon_next_gray.svg);
}
.button.back {
  padding-left: 2.2222222222em;
  padding-right: 2.2222222222em;
}
.button.back::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0.8333333333em;
  aspect-ratio: 1;
  width: 1.2222222222em;
  height: auto;
  background-image: url(../media/images/common/icon_back.svg);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.button.back::before:focus {
  background-image: url(../media/images/common/icon_back_reverse.svg);
}
.button.back.disabled::before, .button.back[disabled]::before {
  background-image: url(../media/images/common/icon_back_gray.svg);
}
.button.open {
  padding-left: 2.2222222222em;
  padding-right: 2.2222222222em;
}
.button.open::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0.8333333333em;
  aspect-ratio: 1;
  width: 1.2222222222em;
  height: auto;
  background-image: url(../media/images/common/icon_plus.svg);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.button.open::before:focus {
  background-image: url(../media/images/common/icon_plus_reverse.svg);
}
.button.open.is-active::before {
  background-image: url(../media/images/common/icon_minus.svg);
}
.button.open.is-active::before:focus {
  background-image: url(../media/images/common/icon_minus_reverse.svg);
}
.button.online {
  padding-left: 2.2222222222em;
  padding-right: 2.2222222222em;
}
.button.online::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0.8333333333em;
  aspect-ratio: 1;
  width: 1.2222222222em;
  height: auto;
  background-image: url(../media/images/common/icon_online.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}
.button.online::before:focus {
  background-image: url(../media/images/common/icon_online_reverse.svg);
}
.button.online.normal::before {
  background-image: url(../media/images/common/icon_next_reverse.svg);
}
.button.circle {
  border-radius: 9999px;
}
.button .sub {
  font-size: 0.7em;
}

/* タブ
-------------------------------------------------------------*/
.tabs {
  display: flex;
  align-items: stretch;
  flex-flow: row nowrap;
  justify-content: center;
  margin: 2.2222222222em auto 0;
  width: fit-content;
  border: solid 1px #000000;
  border-radius: 10px;
  overflow: hidden;
}

.tab {
  display: flex;
  align-items: center;
  flex-flow: column nowrap;
  justify-content: center;
  padding: 0.1em 1.2em;
  min-height: 3.3333333333em;
  width: 8.8888888889em;
  border-left: solid 1px #000000;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
}
@media screen and (max-width: 1180px) {
  .tab {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .tab {
    font-size: 15px;
  }
}
@media (hover: hover) {
  .tab:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .tab {
    width: 6.6666666667em;
  }
}
.tab:first-child {
  border-left: 0;
}
.tab.current {
  background: #000000;
  color: #FFFFFF;
}

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

/* STEP
-------------------------------------------------------------*/
.step-list {
  display: flex;
  align-items: flex-start;
  flex-flow: row wrap;
  justify-content: center;
  gap: 5em;
  margin-top: 2.5em !important;
}
@media screen and (max-width: 767px) {
  .step-list {
    gap: 2.8571428571em;
  }
}
.step-list .step {
  display: flex;
  align-items: center;
  flex-flow: column nowrap;
  justify-content: flex-start;
  gap: 0.2857142857em;
  font-size: 14px;
  line-height: 1.3;
  position: relative;
}
@media screen and (max-width: 1180px) {
  .step-list .step {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .step-list .step {
    font-size: 12px;
  }
}
.step-list .step::after {
  content: "";
  display: block;
  width: 4.2857142857em;
  height: 2px;
  background: #F0F0F0;
  border-radius: 9999px;
  position: absolute;
  top: 1.4285714286em;
  right: -0.7142857143em;
  transform: translate(100%, 0);
}
@media screen and (max-width: 767px) {
  .step-list .step::after {
    width: 2em;
    right: -0.6666666667em;
  }
}
.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;
  width: 2.2222222222em;
  height: auto;
  background: #F0F0F0;
  font-size: 18px;
  font-weight: 400;
  border-radius: 50%;
}
@media screen and (max-width: 1180px) {
  .step-list .step em {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .step-list .step em {
    font-size: 15px;
  }
}
.step-list .step.current {
  font-weight: 700;
}
.step-list .step.current em {
  background: #CC0000;
  color: #FFFFFF;
  font-weight: 700;
}
.step-list .step.done::after {
  background: #CC0000;
}
.step-list .step.done em {
  background: #CC0000;
  color: #FFFFFF;
}

/* フォーム入力
-------------------------------------------------------------*/
.icon-required {
  display: inline-block;
  padding: 0.3333333333em 0.5em 0.4166666667em;
  border: solid 1px #000000;
  background: #000000;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  border-radius: 5px;
  white-space: nowrap;
  position: relative;
  top: -0.15em;
  border-color: #CC0000;
  background: #CC0000;
  color: #FFFFFF;
  top: auto;
}
@media screen and (max-width: 1180px) {
  .icon-required {
    font-size: 11px;
  }
}
@media screen and (max-width: 767px) {
  .icon-required {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  .icon-required {
    border-radius: 2px;
  }
}

.form {
  display: flex;
  align-items: flex-start;
  flex-flow: column nowrap;
  justify-content: flex-start;
  margin-top: 2.5em;
}
.form .title {
  margin-top: 1.5em;
  font-weight: 700;
  width: 100%;
}
.form .title:first-child {
  margin-top: 0;
}
.form .req {
  display: flex;
  align-items: flex-start;
  flex-flow: row nowrap;
  justify-content: flex-start;
  gap: 0.5em;
}
.form .data {
  display: flex;
  align-items: flex-start;
  flex-flow: column nowrap;
  justify-content: flex-start;
  gap: 0.375em;
  margin-top: 0.5em;
  width: 100%;
}
.form .data-unit {
  display: flex;
  align-items: flex-start;
  flex-flow: column nowrap;
  justify-content: flex-start;
  gap: 0.375em;
  width: 100%;
}
.form .multiple-data {
  display: flex;
  align-items: flex-start;
  flex-flow: row nowrap;
  justify-content: flex-start;
  gap: 1em;
  width: 100%;
}
.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% - 1em / 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% - 1em / 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% - 1em / 2);
}
@media screen and (max-width: 767px) {
  .form .small .select-box {
    width: 100%;
  }
}
.form .small .password-wrap {
  width: calc(50% - 1em / 2);
}
@media screen and (max-width: 767px) {
  .form .small .password-wrap {
    width: 100%;
  }
}
.form .msg {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 1180px) {
  .form .msg {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .form .msg {
    font-size: 12px;
  }
}
.form .msg.error {
  color: #CC0000;
}
.form .msg:first-of-type {
  margin-top: 0.25em;
}
.form .caption {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 1180px) {
  .form .caption {
    font-size: 13px;
  }
}
@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: 980px) {
  .form.confirm {
    display: flex;
    align-items: flex-start;
    flex-flow: column nowrap;
    justify-content: flex-start;
    gap: 0.2857142857em;
  }
}
.form.confirm .title {
  display: flex;
  align-items: flex-start;
  flex-flow: column wrap;
  justify-content: center;
  padding: 0 1.5em 1.5em 0;
  width: 24%;
  border-bottom: solid 1px #a0a0a0;
}
@media screen and (max-width: 980px) {
  .form.confirm .title {
    margin-top: 1.1428571429em;
    padding: 0;
    width: 100%;
    border: 0;
  }
}
.form.confirm .title:first-child {
  margin-top: 0;
}
.form.confirm .data {
  display: flex;
  align-items: flex-start;
  flex-flow: column wrap;
  justify-content: center;
  margin-top: 1.5em;
  padding: 0 0 1.5em 0;
  width: 70%;
  border-bottom: solid 1px #a0a0a0;
}
@media screen and (max-width: 980px) {
  .form.confirm .data {
    margin-top: 0;
    padding: 0 0 1.1428571429em 0;
    width: 100%;
  }
}
.form.confirm .data:first-of-type {
  margin-top: 0;
}

/* スクロールヒント
-------------------------------------------------------------*/
.scroll-hint {
  display: none;
  padding: 5.8333333333em 1.3333333333em 1em;
  background: rgba(0, 0, 0, 0.6);
  color: #FFFFFF;
  font-size: 12px;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}
@media screen and (max-width: 1180px) {
  .scroll-hint {
    font-size: 11px;
  }
}
@media screen and (max-width: 767px) {
  .scroll-hint {
    font-size: 10px;
  }
}
.scroll-hint::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  aspect-ratio: 75/15;
  width: 6.25em;
  background-image: url(../media/images/common/icon_scroll_arrow.svg);
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: 1.3333333333em;
}
.scroll-hint::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  aspect-ratio: 33/41;
  width: 2em;
  height: auto;
  background-image: url(../media/images/common/icon_scroll_hand.svg);
  opacity: 0;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: 2.6666666667em;
  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);
  }
}
/* ページタイトル
-------------------------------------------------------------*/
#head-area {
  margin: 0;
  padding: 2.5625em 0;
  background-color: #143CBA;
  background-image: url(../media/images/common/head_area_bg.png);
  background-size: 2278px;
}
@media screen and (max-width: 1180px) {
  #head-area {
    padding: 1.7857142857em 0;
  }
}
@media screen and (max-width: 767px) {
  #head-area {
    padding: 1.4285714286em 0;
  }
}
#head-area .page-title {
  font-size: 40px;
  margin: 0;
  color: #FFFFFF;
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: left;
  line-height: 1.2em;
}
@media screen and (max-width: 1180px) {
  #head-area .page-title {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  #head-area .page-title {
    font-size: 22px;
  }
}

/* 大見出し
-------------------------------------------------------------*/
#main-content .large-title {
  font-size: 40px;
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.75em;
  margin-bottom: 70px;
}
@media screen and (max-width: 1180px) {
  #main-content .large-title {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  #main-content .large-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  #main-content .large-title {
    gap: 0.5454545455em;
  }
}
#main-content .large-title .bottom-line {
  width: 3.2em;
  height: 4px;
  display: flex;
  flex-flow: row nowrap;
}
#main-content .large-title .bottom-line .line {
  display: inline-block;
  width: 25%;
  height: 100%;
}
#main-content .large-title .bottom-line .line.line1 {
  background-color: #DBDB37;
}
#main-content .large-title .bottom-line .line.line2 {
  background-color: #23A9C1;
}
#main-content .large-title .bottom-line .line.line3 {
  background-color: #47539A;
}
#main-content .large-title .bottom-line .line.line4 {
  background-color: #BE408A;
}

#main-content section .session-title {
  font-size: 22px;
  color: #FFFFFF;
  line-height: 1.3;
  width: 100%;
  height: 2.4090909091em;
  background: linear-gradient(80deg, #46549A, #25A4BF);
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: flex-start;
  padding: 0 0.9090909091em;
  margin-top: 1.8181818182em;
}
@media screen and (max-width: 1180px) {
  #main-content section .session-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  #main-content section .session-title {
    font-size: 17px;
  }
}
#main-content section .session-inner {
  padding: 2.5em 0;
}
#main-content section .session-inner__container {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #main-content section .session-inner__container {
    display: flex;
    align-items: center;
    flex-flow: column nowrap;
    justify-content: flex-start;
    gap: 1.4285714286em;
  }
}
#main-content section .session-inner__container p {
  margin: 0;
}
#main-content section .session-inner__container .buttons {
  margin-top: 0;
}
#main-content section .session-inner__container .buttons .button {
  width: 12.7777777778em;
}