@charset "UTF-8";

/********** reset **********/
*, ::before, ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  -webkit-text-size-adjust: 100%;
  line-height: 1;
}

body {
  background-color: #ffffff;
  font-size: 14px;
  line-height: 1.4;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: 1px;
  color: #333333;
  word-wrap: break-word;
}
ol, ul { list-style: none; }
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption, th, td {
  font-weight: normal;
  vertical-align: middle;
}
q, blockquote { quotes: none; }
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}
a {
  text-decoration: none;
  color: #09c;
  outline: none;
}
a:focus {
  outline: none;
}
a:hover { text-decoration: underline; }
a img { border: none; }
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}
img { display: block; }



/********** 共通 **********/
.text.is_emphasis {
  font-weight: bold;
}

.text.is_primary-color {
  color: #ff69ac;
}

.uppercase-letter {
  text-transform: uppercase;
}


/*** section ***/
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section-title {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: bold;
}


/*** footer ***/
.footer {
  padding: 24px 20px;
  background-color: #333333;
}

.footer-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 0 40px;
  width: fit-content;
  margin: 0 auto 20px;
}

.footer-list-item__link {
  color: #ffffff;
}

.footer-list-item__link:hover, {
  color: #ffffff;
}

.footer-list-item__link:visited {
  text-decoration: none;
  color: #ffffff;
}

.footer-text {
  font-size: 12px;
  text-align: center;
  color: #ffffff;
}



/********** index **********/
/*** hero ***/
.hero-title {
  width: 100%;
  padding-top: 46%;
  background: url(/image/hero.png) no-repeat center / cover;
  color: transparent;
  user-select: none;
}

.hero-btn-wrap {
  padding: 20px 0;
  background: linear-gradient(90deg, #ff8aa7, #ff699d);
}

.hero-btn {
  display: block;
  width: 164px;
  margin: 0 auto;
}

.hero-btn__image {
  height: 60px;
}


/*** summary ***/
.summary-list {
  padding: 160px 0;
}

.summary-list-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 940px;
  margin: 0 auto 100px;
  padding: 0 20px;
}

.summary-list-item:nth-child(even) {
  flex-direction: row-reverse;
}

.summary-list-item:last-child {
  margin: 0 auto;
}

.summary-list-item-text-wrap {
  width: 300px;
}

.summary-list-item__text {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.3em;
  color: #ff69ac;
}

.summary-list-item-image-wrap {
  width: 600px;
}

.summary-list-item__image {
  width: 100%;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
}



/********** term **********/
.term-list {
  margin: 60px 0;
}

.term-list-title {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: bold;
}

.term-list-data:not(:last-child) {
  margin-bottom: 40px;
}

.section.is_term .term-list-data:last-child {
  text-align: right;
}

.term-number-list {
  padding-left: 20px;
}

.term-number-list-item {
  list-style: decimal;
}

.term-number-list-item:not(:last-child) {
  margin-bottom: 10px;
}

.term-disc-list {
  padding-left: 20px;
}

.term-disc-list-item {
  list-style: disc;
}

.section-link {
  display: block;
  width: fit-content;
  margin: 0 auto;
}



/********** law、legal **********/
.section.is_law,
.section.is_legal {
  max-width: 700px;
}

.law-info,
.legal-info {
  margin: 60px auto;
}

.law-info-title,
.legal-info-title {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: bold;
}

.law-info-data:not(:last-child),
.legal-info-data:not(:last-child) {
  margin-bottom: 40px;
}

.law-info-data__image {
  width: 60px;
  height: auto;
}

.legal-info-data__image {
  width: 35%;
  height: auto;
  margin: 0 auto 20px;
}

.legal-info-data__text {
  text-align: center;
}


@media (max-width: 939px) {
  .summary-list {
    padding: 100px 0;
  }

  .summary-list-item {
    width: calc(100% - 80px);
    margin: 0 auto 60px;
    padding: initial;
  }

  .summary-list-item-text-wrap {
    width: 40%;
  }

  .summary-list-item__text {
    font-size: 16px;
  }

  .summary-list-item-image-wrap {
    width: 60%;
  }
}

@media (max-width: 599px) {
  .hero-btn-wrap {
    padding: 10px 0;
  }

  .hero-btn {
    width: 120px;
  }

  .hero-btn__image {
    height: 44px;
  }

  .summary-list {
    padding: 70px 0;
  }

  .summary-list-item {
    flex-direction: column;
    gap: 20px 0;
    width: calc(100% - 40px);
  }

  .summary-list-item:nth-child(even) {
    flex-direction: column;
  }

  .summary-list-item-text-wrap {
    width: 100%;
  }

  .summary-list-item-image-wrap {
    width: 100%;
  }

  .section {
    padding: 40px 20px;
  }

  .legal-info-data__image {
    width: 50%;
  }

  .footer {
    padding: 20px 10px 10px;
  }

  .footer-list {
    gap: 10px 15px;
    width: 100%;
  }
}
