/* ==================================================
  base
================================================== */

.main_content {
  overflow-x: clip;
  font-size: 16px;
  line-height: 1.375;
  overflow-wrap: anywhere;
}
.main_content img {
  height: auto;
}
.main_content video {
  vertical-align: bottom;
  max-width: 100%;
}
.main_content a[href^="tel:"] {
  pointer-events: all;
}



/* ----------------------------------------
  breadcrumbs, title
---------------------------------------- */

.page_title_area_aem {
  display: none;
}

@media (max-width: 1023px) {
  .breadcrumbs.for_mobile {
    display: none;
  }
}

@media (min-width: 1024px) {
  .breadcrumbs.for_pc {
    display: none;
  }
}



/* ----------------------------------------
  page_top
---------------------------------------- */

@media (min-width: 1024px) {
  .page_top {
    padding: 0;
    border-top: none;
  }
  .page_top_text {
    display: none;
  }
}





/* ==================================================
  common
================================================== */

/* ----------------------------------------
  heading
---------------------------------------- */

.xl, .xxl,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: bold;
  line-height: 1.1;
}
.xl, .xxl,
.h1, .h2 {
  font-family: "FormaDJRDisplay","FormaDJRJapaneseDisplay";
}

.xl, .xxl { font-size: 42px; }
.h1 { font-size: 42px; }
.h2 { font-size: 36px; }
.h3 { font-size: 32px; }
.h4 { font-size: 26px; }
.h5 { font-size: 22px; }
.h6 { font-size: 18px; }

@media (min-width: 768px) {
  .xl, .xxl { font-size: 72px; }
  .h1 { font-size: 61px; }
  .h2 { font-size: 48px; }
  .h3 { font-size: 40px; }
  .h4 { font-size: 30px; }
  .h5 { font-size: 24px; }
  .h6 { font-size: 20px; }
}

@media (min-width: 1280px) {
  .xl, .xxl { font-size: 100px; }
  .h1 { font-size: 80px; }
  .h2 { font-size: 60px; }
  .h3 { font-size: 48px; }
  .h4 { font-size: 34px; }
}



/* ----------------------------------------
  p
---------------------------------------- */

.main_content p + p {
  margin-top: 1em;
}



/* ----------------------------------------
  sup
---------------------------------------- */

.main_content sup {
  vertical-align: top;
  position: relative;
  top: .7em;
  font-size: 10px;
  line-height: 0;
}



/* ----------------------------------------
  i
---------------------------------------- */

.main_content i {
  color: #b1b1b1;
  font-style: normal;
}



/* ----------------------------------------
  button
---------------------------------------- */

.main_content .button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  padding: 5px 24px;
  font-size: 16px;
  text-align: center;
  border-radius: 2px;
}
.main_content .button.slim {
  font-size: 13px;
}
.main_content .button.sslim {
  font-size: 11px;
}


/* primary -------------------- */

.main_content .button.primary {
  background: #000;
}
.main_content .button.primary:hover {
  background: #5a5a5a;
}



/* ----------------------------------------
  ws_button
---------------------------------------- */

.ws_button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: .2s;
  min-height: 32px;
  font-size: 16px;
  text-align: left;
  text-decoration: none !important;
}
.ws_button_arrow {
  overflow: hidden;
  position: relative;
  transition: .3s;
  width: 19px;
  height: 16px;
}
.ws_button_arrow::after {
  content: "";
  position: absolute;
  right: 3px;
  transition: .3s;
  width: 100%;
  height: 100%;
  background: url(images/ws_button_arrow.png) no-repeat center center;
}
.ws_button:hover .ws_button_arrow::after {
  right: 0;
}
.ws_button_text {
  position: relative;
  color: #000;
}
.ws_button_text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width .2s linear;
  width: 0;
  height: 1px;
  background: #000;
}
.ws_button:hover .ws_button_text::after {
  width: 100%;
}

/* white */
.ws_button.is_light .ws_button_text {
  color: #fff;
}
.ws_button.is_light .ws_button_arrow {
  filter: invert(1);
}


/* 矢印＆エッジ -------------------- */

@media (min-width: 1024px) {
  .ws_button.is_edge {
    overflow: hidden;
    align-items: flex-end;
    position: relative;
    min-height: 52px;
    padding-right: 60px;
  }
  .ws_button.is_edge::before {
    content: "";
    position: absolute;
    right: 3px;
    transition: .3s;
    width: 100%;
    height: 100%;
    background: url(images/ws_button_edge.png) no-repeat top right;
  }
  .ws_button.is_edge:hover::before {
    right: 0;
  }
  .ws_button.is_edge .ws_button_text {
    line-height: 1;
  }
  .ws_button.is_edge .ws_button_text::after {
    content: none;
  }

  /* white */
  .ws_button.is_light.is_edge::before {
    filter: invert(1);
  }
}


/* list_basicで使う場合はmin-heightをなくす -------------------- */

.list_basic .ws_button {
  min-height: auto;
}



/* ----------------------------------------
  section
---------------------------------------- */

.section {
  width: 100%;
  max-width: 1280px;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  .section {
    padding-right: 30px;
    padding-left: 30px;
  }
}



/* ----------------------------------------
  subtitle
---------------------------------------- */

.subtitle {
  padding-bottom: 16px;
  margin-bottom: 30px;
  border-bottom: 1px solid #000;
}

@media (min-width: 768px) {
  .subtitle {
    padding-bottom: 20px;
  }
}



/* ----------------------------------------
  text
---------------------------------------- */

.subtitle_light {
  font-size: 16px;
}
.font_body {
  font-size: 16px;
}
.caption {
  font-size: 16px;
}
.cta_style {
  font-size: 16px;
  font-weight: bold;
}

@media (min-width: 768px) {
  .subtitle_light {
    font-size: 22px;
  }
  .font_body {
    font-size: 18px;
  }
}



/* ----------------------------------------
  list_basic
---------------------------------------- */

.main_content .list_basic > li {
  line-height: inherit;
}
.main_content .list_basic > li::before {
  content: "\2022";
  font-family: Arial;
  font-size: 130%;
  top: auto;
  width: auto;
  height: auto;
  line-height: 1;
  background: none;
}



/* ----------------------------------------
  notes
---------------------------------------- */

.notes {
  padding-left: 1em;
  font-size: 12px;
  line-height: 1.33;
  text-indent: -1em;
}
.notes > li + li {
  margin-top: .5em;
}





/* ----------------------------------------
  magnific-popup
---------------------------------------- */

.mfp-bg {
  opacity: 1;
  background: #fff;
}
.mfp-iframe-scaler iframe {
  box-shadow: none;
}
.mfp-iframe-holder .mfp-close {
  display: block;
  position: fixed;
  top: 20px;
  right: 20px;
  opacity: 1;
  width: 40px;
  height: 40px;
  padding: 0;
}
.mfp-iframe-holder .mfp-close::before,
.mfp-iframe-holder .mfp-close::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 20px;
  width: 1px;
  height: 50px;
  background: #000;
}
.mfp-iframe-holder .mfp-close::before {
  transform: rotate(45deg);
}
.mfp-iframe-holder .mfp-close::after {
  transform: rotate(-45deg);
}

@media (min-width: 1024px) {
  .mfp-iframe-holder .mfp-close {
    top: 60px;
    right: 60px;
  }
}





/* ==================================================
  免責事項
================================================== */

.ws_footnotes {
  padding: 30px 0;
}
.ws_footnotes .acco_trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
  border-top: 1px solid #000;
}
.ws_footnotes .acco_trigger::after {
  content: "";
  width: 12px;
  height: 7px;
  background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 7"><path d="M0 10.658L1.28 12 7 6 1.28 0 0 1.337 4.51 6z" transform="rotate(90 6 6)"></path></svg>') no-repeat center center;
}
.ws_footnotes .acco_trigger.acco_open::after {
  transform: rotate(180deg);
}
.ws_footnotes .acco_content {
  font-size: 14px;
}
.ws_footnotes .acco_content > * + * {
  margin-top: 20px;
}
.ws_footnotes .acco_content a:link,
.ws_footnotes .acco_content a:visited,
.ws_footnotes .acco_content a:hover {
  color: #000;
  text-decoration: underline;
}
.ws_footnotes .acco_content a:hover {
  background: rgb(0 0 0 / .1);
}
.ws_footnotes_list {
  counter-reset: ws_footnotes_num;
}
.ws_footnotes_list > li {
  position: relative;
  padding-left: 3em;
}
.ws_footnotes_list > li + li {
  margin-top: 1em;
}
.ws_footnotes_list > li::before {
  counter-increment: ws_footnotes_num;
  content: "\203B" counters(ws_footnotes_num, "-") "";
  position: absolute;
  left: 0;
}
.ws_footnotes .notes {
  font-size: 14px;
  line-height: inherit;
}

@media (min-width: 768px) {
  .ws_footnotes .acco_trigger {
    padding: 30px 0;
  }
}
