@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  height: 100%;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  background: #202f55;
}
a {
  text-decoration: none;
  color: #0abab5;
  cursor: pointer;
}
button {
  display: block;
  padding: 0;
  border: none;
  cursor: pointer;
  background: transparent;
  color: #000;
}
img {
  display: block;
  width: 100%;
}

._none {
  display: none !important;
}
._hidden {
  visibility: hidden !important;
}

.pc {
  display: block !important;
}
.tab {
  display: none !important;
}
.sp {
  display: none !important;
}

.indent-1 {
  padding-left: 1em;
  text-indent: -1em;
}
.indent-1-2 {
  padding-left: 1.2em;
  text-indent: -1.2em;
}
.indent-2 {
  padding-left: 2em;
  text-indent: -2em;
}

/* header */
header {
  display: flex;
  align-items: center;
  width: 100%;
  height: 85px;
  background-color: rgb(10, 186, 181, 1);
  position: relative;
}
.header-logo {
  display: block;
  width: 200px;
  position: absolute;
  left: 40px;
}
.header-language {
  position: absolute;
  top: 23px;
  right: 40px;
}
.header-language-icon {
  width: 16px;
}
/** accordion */
.accordion {
  border: 2px solid #ffffff;
  border-radius: 4px;
  overflow: hidden;
  font-size: 14px;
}
.accordion-ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  cursor: pointer;
  color: #ffffff;
}
.accordion-ttl::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  translate: 0 -2px;
  rotate: -45deg;
  transition: 0.3s;
}
.accordion-ttl._active::after {
  translate: 0 2px;
  rotate: 135deg;
}
.accordion-body {
  display: grid;
  grid-template-rows: 0fr;
  gap: 0;
  background-color: #fff;
  transition: grid-template-rows 0.3s ease;
}
.accordion-body._active {
  grid-template-rows: 1fr;
}
.accordion-content {
  overflow: hidden;
}
.accordion-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.accordion-list li {
  width: 100%;
  transition: 0.3s;
}
.accordion-list li:hover {
  background: #eee;
}
.accordion-list li a {
  display: block;
  padding: 10px;
  text-align: center;
}

/* main */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 940px;
  margin: 100px auto;
}
.site-ttl {
  color: #fff;
  font-size: 40px;
  letter-spacing: 0.04em;
  text-align: center;
}
.accent {
  font-weight: bold;
}
.accent._ttl {
  font-size: 1.2em;
}
/** section-container */
.section-container {
  width: 100%;
  margin-top: 40px;
  padding: 65px;
  border-radius: 8px;
  background-color: rgb(0, 0, 0, 0.4);
  border: solid 1px rgb(255, 255, 255, 0.5);
  line-height: 1.75;
}
.section-container-ttl {
  padding-bottom: 15px;
  font-size: 26px;
  line-height: 1;
}
section {
  margin-top: 60px;
}
section:first-child {
  margin-top: 0;
}
section a {
  text-decoration: underline;
}
section span {
  display: block;
}
section span._inline {
  display: inline;
}
.section-ttl {
  width: 100%;
  padding-bottom: 15px;
  border-bottom: 2px solid #fff;
  font-size: 26px;
  line-height: 1;
}
.section-subttl {
  padding-top: 20px;
  font-size: 22px;
  line-height: 1;
}
.section-subbox {
  margin-top: 20px;
}
.section-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 15px;
}
.section-list-item {
  margin-left: 25px;
  padding-left: 5px;
  list-style: disc;
}
ol.section-list .section-list-item {
  list-style-type: decimal;
}
.section-list._parentheses .section-list-item {
  display: flex;
  align-items: start;
  justify-content: start;
  margin-left: 0;
  padding-left: 2.5rem;
  list-style: none;
  counter-increment: cnt;
}
.section-list._parentheses .section-list-item::before {
  content: "(" counter(cnt) ")";
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  margin-left: -2.5rem;
}
.section-list._roman {
  counter-reset: list-item;
}
.section-list._roman li {
  list-style-type: none;
  counter-increment: list-item;
  position: relative;
  padding-left: 2.5rem;
}
.section-list._roman li::before {
  content: "(" counter(list-item, lower-roman) ")";
  display: inline-block;
  width: 2.5rem;
  text-align-last: left;
  position: absolute;
  left: 0;
}
.section-txt {
  margin-top: 15px;
}
.section-table {
  width: 100%;
  margin-top: 20px;
  border: 1px solid #000;
  font-size: 12px;
}
.section-table tr {
  border-bottom: 1px solid #000;
}
.section-table tbody tr:last-child {
  border-bottom: none;
}
.section-table th,
.section-table td {
  padding: 0 10px;
  border-right: 1px solid #000;
  vertical-align: middle;
}
.section-table th {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #ccc;
  vertical-align: middle;
  line-height: 1.2;
}
.section-table th:last-child,
.section-table td:last-child {
  border-right: none;
}
.section-table th.purpose,
.section-table th.type {
  width: 20%;
}
.section-table .section-list {
  gap: 5px;
  width: fit-content;
  margin: 0 auto;
  margin-left: 20px;
  padding-left: 1em;
}
.section-table .section-list._table-roman {
  padding-left: 0;
}
.section-table .section-list._table-roman li {
  list-style-type: none;
}
.section-table .section-list._table-roman li::marker {
  content: "";
}
.section-sublist {
  padding-left: 1em;
}
.section-sublist._parentheses {
  padding-left: 0;
}
.section-sublist._parentheses .section-sublist-item {
  display: flex;
  align-items: start;
  justify-content: start;
  margin-left: 0;
  padding-left: 2.5rem;
  list-style: none;
  counter-increment: cnt;
}
.section-sublist._parentheses .section-sublist-item::before {
  content: "(" counter(cnt) ")";
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  margin-left: -2.5rem;
}
.section-sublist li {
  list-style-type: circle;
}

.law-container {
  width: 100%;
  margin-top: 40px;
  padding: 65px;
  border-radius: 8px;
  background-color: rgb(0, 0, 0, 0.4);
  line-height: 1.75;
  border: solid 1px rgb(255, 255, 255, 0.5);
}
.law-container a {
  text-decoration: underline;
}
.law-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 40px;
}
.law-list-item {
  display: flex;
  align-items: start;
  width: 100%;
  min-height: 55px;
  padding: 15px 0;
  border-top: 1px solid #fff;
}
.law-list-item:last-child {
  border-bottom: 1px solid #fff;
}
.law-list-item-ttl {
  flex-shrink: 0;
  width: 30%;
}
.law-inner-list._gap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.creditcard-img {
  width: 310px;
}

/* footer */
footer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 0;
  text-align: center;
}
.copyright {
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2;
}

@media (max-width: 960px) {
  .pc {
    display: none !important;
  }
  .tab {
    display: block !important;
  }

  .header-logo {
    left: 20px;
  }

  .container {
    width: calc(100% - 60px);
    margin: 30px auto;
  }
  .site-ttl {
    font-size: 2.4rem;
  }

  .section-container {
    padding: 30px;
  }
  .section-container-ttl {
    font-size: 1.8rem;
  }
  .section-container-txt {
    font-size: 1.4rem;
  }
  section {
    margin-top: 30px;
    font-size: 1.4rem;
  }
  .section-ttl {
    font-size: 1.6rem;
    padding-bottom: 10px;
  }
  .section-subttl {
    font-size: 1.4rem;
    padding-top: 10px;
  }
  .section-list {
    gap: 15px;
  }
  .section-list-item {
    margin-left: 2rem;
    padding-left: 0;
  }

  .law-container {
    padding: 30px;
  }

  .copyright {
    font-size: 10px;
    line-height: 1.5;
  }
}

@media (max-width: 767px) {
  .tab {
    display: none !important;
  }
  .sp {
    display: block !important;
  }

  .header-language {
    top: 18px;
    right: 20px;
  }
  .accordion-ttl {
    flex-direction: column;
    gap: 3px;
    padding: 7px 10px;
  }
  .accordion-ttl::after {
    display: none;
  }

  .container {
    width: calc(100% - 20px);
  }
  .site-ttl {
    line-height: 1.2;
  }

  .section-container {
    margin-top: 20px;
    padding: 20px;
  }
  .section-table th.purpose,
  .section-table th.type {
    width: 25%;
  }
  .section-subbox {
    margin-top: 10px;
  }
  .section-table {
    word-break: break-all;
  }
  .section-table th,
  .section-table td {
    padding: 0 3px;
  }
  .section-table .section-list {
    margin-left: 0;
  }

  .law-container {
    margin-top: 20px;
    padding: 20px;
    line-height: 1.3;
  }
  .law-list {
    margin-top: 20px;
  }
  .law-list-item {
    flex-direction: column;
    gap: 20px;
  }
  .law-list-item-ttl {
    width: 100%;
  }
  .law-list-item-content {
    font-size: 1.4rem;
  }
}
