@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
body {
  background: #fafafa;
}

p {
  line-height: 170%;
}

section.top {
  margin-top: 70px;
  display: flex;
  overflow-x: hidden;
  /*
  .right {
      img {
          height: 200px;
          width: auto;
      }
  }*/
}
section.top .left {
  position: relative;
}
section.top .left img {
  width: 130%;
  position: relative;
  z-index: 10;
}
section.top .left .path-sp {
  display: none;
}
section.top .title {
  position: absolute;
  z-index: 20;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 10px;
  white-space: nowrap;
}
section.top .title img {
  width: 15px;
  height: auto;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
}
section.top .title h1,
section.top .title .h1 {
  font-size: 50px;
  color: white;
}
section.top .title .en {
  font-size: 16px;
  color: white;
}

.breadcrumb {
  width: 1200px;
  margin: 20px auto;
  max-width: 90%;
}

nav.nav {
  display: flex;
  justify-content: center;
  width: 1200px;
  padding: 30px 0;
  max-width: 90%;
  margin: 50px auto 0 auto;
  gap: 30px;
  background: white;
  flex-wrap: wrap;
}
nav.nav .nav__btn {
  display: flex;
  border: 0;
  background: none;
  align-items: center;
  cursor: pointer;
}
nav.nav .nav__btn .left {
  padding-right: 5px;
  font-weight: 600;
}
nav.nav .nav__btn .right img {
  width: 20px;
}

ul.sub-title {
  padding-left: 40px;
  margin-bottom: 30px;
}
ul.sub-title li {
  position: relative;
}
ul.sub-title li h2 {
  font-size: 40px;
  font-weight: 600;
}
ul.sub-title li::before {
  position: absolute;
  content: "● ";
  color: #0069af;
  font-size: 25px;
  top: 50%;
  left: -35px;
  transform: translate(0, -50%);
}

.sub-title.center {
  margin: 0px auto 30px auto;
  width: -moz-fit-content;
  width: fit-content;
}

h3 {
  color: #0069af;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 30px;
}

.block {
  width: 1200px;
  margin: 50px auto;
  max-width: 90%;
}

.content-flex {
  display: flex;
  margin: 30px auto;
  gap: 30px;
}

section#sec1,
section#sec2,
section#sec3,
section#sec4,
section#sec5,
section#sec6 {
  padding-top: 70px;
}

table.list {
  border-collapse: separate;
  border-spacing: 20px 0;
  padding: 50px 5%;
}
table.list tr:first-child th,
table.list tr:first-child td {
  border-top: solid 1px #4d4c4c;
}
table.list th,
table.list td {
  border-bottom: solid 1px #4d4c4c;
  padding: 30px 0;
  text-align: left;
}
table.list th {
  padding-left: 20px;
}

.answer {
  /* summary 全体をクリック可能にする */
  /* 疑似要素で右側に + を表示 */
  /* open 時は − に切り替える */
}
.answer details {
  border-top: solid 1px #4d4c4c;
  border-bottom: solid 1px #4d4c4c;
  margin-bottom: 20px;
}
.answer details p {
  padding: 20px 0px 20px 50px;
  border-top: solid 1px #dbdbdb;
}
.answer details summary {
  list-style: none; /* デフォルトの三角アイコンを消す */
  cursor: pointer;
  position: relative;
  padding: 25px 0 25px 0px;
  padding-right: 60px; /* +/− 用の余白 */
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 20px;
}
.answer details summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #0069af;
}
.answer details[open] summary::after {
  content: "−";
}
.answer .q-box {
  padding-right: 20px;
}
.answer .q-box div {
  background: #0069af;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: 20px;
  line-height: 100%;
  padding: 0;
  padding-bottom: 5px;
}

@media screen and (max-width: 1400px) {
  section.top {
    margin-left: -200px;
  }
  section.top .left {
    margin-right: -200px;
  }
  section.top .left img {
    width: auto;
    height: 250px;
  }
  section.top .right img {
    width: auto;
    height: 250px;
  }
  section.top .title img {
    width: 15px;
    height: auto;
  }
}
@media screen and (max-width: 900px) {
  section.top {
    margin-left: 0px;
    flex-direction: column;
  }
  section.top .left {
    margin-right: 0px;
  }
  section.top .left img.path {
    display: none;
  }
  section.top .left img.path-sp {
    display: block;
    width: 100%;
    height: auto;
  }
  section.top .right {
    margin-top: -6%;
  }
  section.top .right img {
    margin-left: -5%;
    width: 105%;
    height: auto;
  }
  section.top .title {
    left: 5%;
    transform: translate(0%, -50%);
  }
  section.top .title h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 1150px) {
  section.top {
    margin-top: 50px !important;
  }
}
@media screen and (max-width: 700px) {
  section.top .left img.path-sp {
    display: block;
    width: auto;
    height: 180px;
  }
  section.top .right img {
    width: auto;
    height: 200px;
  }
  section.top .title h1 {
    font-size: 30px;
  }
  section#sec1,
  section#sec2,
  section#sec3,
  section#sec4,
  section#sec5,
  section#sec6 {
    padding-top: 70px;
    margin-top: -30px;
  }
  ul.sub-title li h2 {
    font-size: 25px;
    font-weight: 600;
  }
  h3 {
    font-size: 20px;
  }
  table.list {
    padding: 50px 2.5%;
  }
  table.list th {
    width: 130px;
  }
}/*# sourceMappingURL=sub.css.map */