@charset "UTF-8";
:root {
  --font-base: "Shippori Mincho","Hiragino Mincho ProN","Yu Mincho","MS Mincho",serif;
  --font-ui: "Noto Sans JP","Hiragino Kaku Gothic ProN","Yu Gothic","Meiryo",sans-serif;
  --font-gothic: "Noto Sans JP","Hiragino Kaku Gothic ProN","Yu Gothic","Meiryo",sans-serif;
}

html, body {
  font-family: var(--font-base);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.02em;
  text-rendering: optimizeLegibility;
  word-break: keep-all;
}

a {
  text-decoration: none;
}

ul, ol, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.siteHeader {
  background: #fff;
  position: relative;
  z-index: 50;
}
.siteHeader__top {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 24px 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 22px;
}
.siteHeader__logo {
  margin: 0;
  flex: 0 0 auto;
}
.siteHeader__logo img {
  display: block;
  width: 180px;
  height: auto;
}
.siteHeader__lead {
  margin: 10px 0 0;
  flex: 1 1 auto;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
}
.siteHeader__lead span {
  display: inline-flex;
  align-items: center;
  border: 1px solid #111;
  margin: 0 0.5%;
  padding: 6px 10px;
  line-height: 1;
  white-space: nowrap;
}
.siteHeader__cta {
  margin: 0;
  display: flex;
  gap: 14px;
  flex: 0 0 auto;
}
.siteHeader__cta dt, .siteHeader__cta dd {
  margin: 0;
}
.siteHeader__cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 16px;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
  color: #fff;
}
.siteHeader__cta dt a {
  background: #C99F28;
}
.siteHeader__cta dd a {
  background: #203358;
}
.siteHeader__nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6px 24px 18px;
  box-sizing: border-box;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 28px;
}
.siteHeader__nav li {
  margin: 0;
  font-family: var(--font-gothic);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.siteHeader__nav a {
  color: #111;
  text-decoration: none;
  padding: 10px 2px;
  display: inline-block;
}
.siteHeader__nav a:hover {
  opacity: 0.75;
}
.siteHeader__menu {
  display: none;
  margin-left: auto;
  flex: 0 0 auto;
  position: relative;
}
.siteHeader__menu summary::-webkit-details-marker {
  display: none;
}
.siteHeader__menuBtn {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 5px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 2px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #111;
  background: #fff;
}
.siteHeader__menuBtn::after {
  content: "";
  width: 4px;
  height: 4px;
  margin-left: 10px;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: rotate(45deg);
  display: inline-block;
}
.siteHeader__menu[open] .siteHeader__menuBtn::after {
  transform: rotate(-135deg) translateY(-1px);
}
.siteHeader__menuPanel {
  position: absolute;
  right: 0;
  top: 54px;
  width: min(320px, 78vw);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
  border-radius: 2px;
  overflow: hidden;
  display: grid;
}
.siteHeader__menuPanel a {
  padding: 14px 16px;
  text-decoration: none;
  color: #111;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.siteHeader__menuPanel a:first-child {
  border-top: none;
}
.siteHeader__menuPanel a:hover {
  background: #f6f7f9;
}
@media (max-width: 1200px) {
  .siteHeader__lead {
    font-size: 18px;
  }
  .siteHeader__lead span {
    padding: 6px 8px;
  }
}
@media (max-width: 1024px) {
  .siteHeader__top {
    flex-wrap: wrap;
    row-gap: 12px;
  }
  .siteHeader__logo {
    order: 1;
  }
  .siteHeader__cta {
    order: 2;
    margin-left: auto;
  }
  .siteHeader__lead {
    order: 3;
    width: 100%;
    margin: 2px 0 0;
    text-align: center;
  }
}
@media (max-width: 980px) {
  .siteHeader__nav {
    display: none;
  }
  .siteHeader__menu {
    display: block;
  }
  .siteHeader__top {
    padding: 14px 16px 12px;
    display: grid;
    grid-template-columns: auto auto 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    -moz-column-gap: 12px;
         column-gap: 12px;
    row-gap: 10px;
    flex-wrap: unset;
  }
  .siteHeader__menu {
    margin-left: 0;
    grid-column: 1;
    grid-row: 1;
    position: static;
    z-index: 60;
  }
  .siteHeader__logo {
    grid-column: 2;
    grid-row: 1;
  }
  .siteHeader__logo img {
    width: 160px;
  }
  .siteHeader__cta {
    grid-column: 3;
    grid-row: 1;
    margin-left: auto;
    justify-content: flex-end;
    gap: 10px;
  }
  .siteHeader__cta a {
    height: 42px;
    padding: 0 12px;
    font-size: 14px;
  }
  .siteHeader__lead {
    grid-column: 1/-1;
    grid-row: 2;
    margin: 0;
    font-size: 16px;
    text-align: left;
  }
  .siteHeader__lead span {
    margin: 0 6px 6px 0;
  }
  .siteHeader__menuPanel {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.35);
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    display: block;
    padding: 0;
  }
  .siteHeader__menuPanel::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: min(360px, 82vw);
    background: #fff;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
  }
  .siteHeader__menuClose {
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(min(360px, 82vw) - 20px);
    height: 48px;
    z-index: 2;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 2px;
    font-weight: 900;
    letter-spacing: 0.04em;
    cursor: pointer;
  }
  .siteHeader__menuPanel a {
    position: relative;
    z-index: 1;
    display: block;
    width: min(360px, 82vw);
    padding: 18px 18px;
    text-decoration: none;
    color: #111;
    font-weight: 800;
    letter-spacing: 0.02em;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }
  .siteHeader__menuPanel a:first-of-type {
    margin-top: 68px;
    border-top: none;
  }
  .siteHeader__menuPanel a:hover {
    background: #f6f7f9;
  }
}
@media (max-width: 560px) {
  .siteHeader__top {
    padding: 12px 12px 10px;
    -moz-column-gap: 10px;
         column-gap: 10px;
    row-gap: 10px;
  }
  .siteHeader__cta a {
    height: 40px;
    padding: 0 10px;
    font-size: 10px;
  }
  .siteHeader__logo img {
    width: 150px;
  }
}

/* Class */
.ctabox01, .ctabox02 {
  background: linear-gradient(90deg, #5a6f97 0%, #3f5a86 45%, #2f4a75 100%);
  padding: 3% 0;
}
.ctabox01 h2, .ctabox02 h2 {
  color: #fff;
  text-align: center;
  font-family: var(--font-base);
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: 0.06em;
  line-height: 1.18;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 980px;
  box-sizing: border-box;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}
.ctabox01 p:nth-of-type(1), .ctabox02 p:nth-of-type(1) {
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  max-width: 880px;
  margin: 16px auto 18px;
  padding: 0 20px;
  box-sizing: border-box;
  font-size: clamp(14px, 1.35vw, 18px);
  line-height: 1.9;
  letter-spacing: 0.03em;
}
.ctabox01 p:nth-of-type(1) br, .ctabox02 p:nth-of-type(1) br {
  display: inline;
}
.ctabox01 div, .ctabox02 div {
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  box-sizing: border-box;
  font-family: var(--font-gothic);
  margin: 0 auto;
  padding: 0.5% 2% 2%;
}
.ctabox01 div p, .ctabox02 div p {
  color: #000 !important;
  margin: 2% auto !important;
  position: relative;
  text-align: center;
}
.ctabox01 div p span, .ctabox02 div p span {
  position: relative;
  font-weight: 900;
}
.ctabox01 div p span::before, .ctabox02 div p span::before {
  content: "・・";
  font-size: 0.9em;
  position: absolute;
  top: -0.9em;
  left: 50%;
  line-height: 1;
  transform: translateX(-50%);
}
.ctabox01 div p::before, .ctabox02 div p::before {
  content: "/";
  display: inline-block;
  margin: 0 14px;
  transform: rotate(-50deg);
}
.ctabox01 div p::after, .ctabox02 div p::after {
  content: "/";
  display: inline-block;
  margin: 0 14px;
  transform: rotate(10deg);
}
.ctabox01 div ul, .ctabox02 div ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}
.ctabox01 div ul li, .ctabox02 div ul li {
  height: 100%;
}
.ctabox01 div ul li a, .ctabox02 div ul li a {
  border: 1px solid #2f4a75;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 18px;
  box-sizing: border-box;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.02em;
  height: 100%;
  min-height: 86px;
}
.ctabox01 div ul li a img, .ctabox02 div ul li a img {
  height: 25px;
  width: auto;
  display: block;
}
.ctabox01 div ul li:nth-child(2) a, .ctabox02 div ul li:nth-child(2) a {
  font-size: 18px;
  font-weight: 700;
}
.ctabox01 > p, .ctabox02 > p {
  width: min(500px, 100% - 32px);
  margin: 3% auto 0;
  padding: 0;
  box-sizing: border-box;
}
.ctabox01 > p a, .ctabox02 > p a {
  background: #C99F28;
  color: #fff;
  display: block;
  padding: 18px 28px;
  border-radius: 2px;
  font-family: var(--font-gothic);
  font-size: 20px;
  letter-spacing: 0.03em;
  line-height: 30px;
  text-align: center;
}
.ctabox01 > p a em, .ctabox02 > p a em {
  display: block;
  font-style: normal;
  font-size: 28px;
  font-weight: 900;
  text-align: center;
  text-underline-offset: 4px;
  margin-top: 6px;
}
@media (max-width: 980px) {
  .ctabox01, .ctabox02 {
    padding: 44px 0;
  }
  .ctabox01 h2, .ctabox02 h2 {
    padding: 0 16px;
    letter-spacing: 0.04em;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  }
  .ctabox01 p:nth-of-type(1), .ctabox02 p:nth-of-type(1) {
    font-size: 10px;
    margin: 12px auto 16px;
    line-height: 1.95;
  }
  .ctabox01 div, .ctabox02 div {
    width: min(92vw, 760px);
    padding: 14px 16px 18px;
  }
  .ctabox01 div ul, .ctabox02 div ul {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .ctabox01 div ul li a, .ctabox02 div ul li a {
    min-height: 62px;
    font-size: 22px;
    gap: 12px;
  }
  .ctabox01 div ul li a img, .ctabox02 div ul li a img {
    height: 22px;
  }
  .ctabox01 div ul li:nth-child(2) a, .ctabox02 div ul li:nth-child(2) a {
    font-size: 18px;
  }
  .ctabox01 div p, .ctabox02 div p {
    margin: 10px auto 14px !important;
  }
  .ctabox01 div p::before, .ctabox02 div p::before, .ctabox01 div p::after, .ctabox02 div p::after {
    margin: 0 10px;
  }
  .ctabox01 > p, .ctabox02 > p {
    width: min(92vw, 760px);
    margin-top: 22px;
  }
  .ctabox01 > p a, .ctabox02 > p a {
    padding: 16px 18px;
  }
  .ctabox01 > p a em, .ctabox02 > p a em {
    font-size: 26px;
  }
}
@media (max-width: 560px) {
  .ctabox01 div p, .ctabox02 div p {
    font-size: 14px;
  }
  .ctabox01 div ul li a, .ctabox02 div ul li a {
    font-size: 20px;
  }
  .ctabox01 > p a, .ctabox02 > p a {
    font-size: 14px;
    word-break: break-all;
  }
  .ctabox01 > p a em, .ctabox02 > p a em {
    font-size: 22px;
  }
}

.ctabox02 {
  background: none;
  position: relative;
  z-index: 100;
}
.ctabox02 p:nth-of-type(1) {
  margin: 3% auto 0;
}
.ctabox02 div {
  box-shadow: 2px 2px 10px #ccc;
  color: #111;
}
.ctabox02 div p:nth-of-type(1) {
  color: #111;
}

/* /Class */
#contents00 figure img {
  width: 100%;
}

#contents01 {
  background: #eeeeef;
  font-family: var(--font-gothic);
  padding: 5% 0 2%;
}
#contents01 > * {
  margin: 0 auto;
  box-sizing: border-box;
}
#contents01 h2 {
  color: #1f2f4a;
  font-family: var(--font-base);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin: 0 auto 1%;
  text-align: center;
}
#contents01 h2 span {
  color: #1f2f4a;
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  position: relative;
  padding-bottom: 12px;
}
#contents01 h2 span::after {
  width: 56px;
  height: 2px;
  background: #1f2f4a;
  border-radius: 2px;
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
#contents01 h2 em {
  color: #c9a24a;
  display: inline-block;
  font-style: normal;
  font-size: 86px;
  font-weight: 800;
  line-height: 1;
  margin-right: 6px;
  vertical-align: -0.08em;
}
#contents01 > p {
  color: #1f2f4a;
  font-size: 18px;
  letter-spacing: 0.03em;
  margin: 2% 0;
  text-align: center;
  padding: 0 16px;
}
#contents01 article {
  max-width: 1200px;
  background: #fff;
  box-sizing: border-box;
  margin: 5% auto;
  padding: 2%;
  display: flex;
  align-items: center;
  position: relative;
}
#contents01 article > * {
  position: relative;
  z-index: 1;
}
#contents01 article figure {
  width: 25%;
}
#contents01 article figure img {
  width: 100%;
  height: auto;
  display: block;
}
#contents01 article dl {
  width: 60%;
  margin: 0 0 0 5%;
}
#contents01 article dl dt {
  color: #1f2f4a;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.02em;
  margin: 0 0 3%;
}
#contents01 article dl dt span {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  background: #1f2f4a;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  border-radius: 2px;
  margin: 0 0 14px;
}
#contents01 article dl dd {
  margin: 0;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.02em;
  color: #1f2f4a;
}
@media (max-width: 980px) {
  #contents01 {
    padding: 56px 0 28px;
  }
  #contents01 h2 {
    font-size: 30px;
    margin-bottom: 14px;
    padding: 0 16px;
  }
  #contents01 h2 span {
    font-size: 14px;
    padding-bottom: 10px;
  }
  #contents01 h2 span::after {
    width: 44px;
  }
  #contents01 h2 em {
    font-size: 60px;
    margin-right: 4px;
    vertical-align: -0.06em;
  }
  #contents01 > p {
    font-size: 15px;
    margin: 16px 0 22px;
    line-height: 1.8;
    word-break: break-all;
  }
  #contents01 article {
    width: min(92vw, 760px);
    margin: 18px auto;
    padding: 18px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  #contents01 article figure {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
  #contents01 article figure img {
    width: 100%;
    height: auto;
  }
  #contents01 article dl {
    width: 100%;
    margin: 0;
  }
  #contents01 article dl dt {
    font-size: 20px;
    line-height: 1.35;
    margin-bottom: 10px;
  }
  #contents01 article dl dt span {
    font-size: 13px;
    padding: 7px 12px;
    margin-bottom: 10px;
  }
  #contents01 article dl dd {
    font-size: 15px;
    line-height: 1.9;
  }
  #contents01 article dl dd br {
    display: none;
  }
}
@media (max-width: 560px) {
  #contents01 {
    padding: 48px 0 24px;
  }
  #contents01 h2 {
    font-size: 26px;
  }
  #contents01 h2 em {
    font-size: 54px;
  }
  #contents01 article {
    width: calc(100% - 24px);
    padding: 16px 14px;
  }
  #contents01 article dl dt {
    font-size: 18px;
    word-break: break-all;
  }
  #contents01 article dl dd {
    font-size: 14px;
    word-break: break-all;
  }
}

#contents02 {
  background: linear-gradient(135deg, #f6f6f6 0%, #ffffff 45%, #f2f2f2 100%);
  font-family: var(--font-gothic);
  padding: 5% 0;
}
#contents02 > * {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}
#contents02 h2 {
  color: #1f2f4a;
  font-family: var(--font-base);
  font-weight: 800;
  font-size: 44px;
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin: 0 auto 2%;
  text-align: center;
}
#contents02 h2 span {
  display: block;
  font-family: var(--font-gothic);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  position: relative;
}
#contents02 h2 span::after {
  width: 44px;
  height: 2px;
  background: #1f2f4a;
  border-radius: 2px;
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
#contents02 > p {
  color: #1f2f4a;
  font-size: 16px;
  letter-spacing: 0.03em;
  margin: 0 auto 5%;
  text-align: center;
  padding: 0 16px;
}
#contents02 > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin: 0 auto 5%;
  padding: 0 20px;
}
#contents02 article {
  background: #fff;
  border: 2px solid #111;
  box-sizing: border-box;
  padding: 26px 26px 22px;
  position: relative;
}
#contents02 article h3 {
  margin: 0 0 18px;
  position: relative;
  padding: 8px 140px 0 0;
  color: #1f2f4a;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin-bottom: 10%;
}
#contents02 article h3 span {
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  padding: 10px 22px;
}
#contents02 article:nth-child(1) h3 span {
  background: #8b8b8b;
}

#contents02 article:nth-child(2) h3 span {
  background: #b99a3a;
}

#contents02 article h3 img {
  width: 200px;
  height: auto;
  display: block;
  position: absolute;
  right: 8px;
  top: 6px;
}
#contents02 article dl {
  border-bottom: 1px solid #d7d7d7;
  display: grid;
  grid-template-columns: 1fr 120px;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 16px 0;
}
#contents02 article dl:last-of-type {
  border-bottom: 1px solid #d7d7d7;
}
#contents02 article dl dt {
  color: #1f2f4a;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0;
}
#contents02 article dl dd {
  color: #1f2f4a;
  display: flex;
  font-size: 20px;
  font-weight: 900;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin: 0;
}
#contents02 article dl dd img {
  width: 24px;
  height: auto;
  display: block;
}
#contents02 article ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}
#contents02 article ul li {
  border-bottom: 0;
  color: #1f2f4a;
  display: flex;
  font-size: 18px;
  font-weight: 800;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
}
#contents02 article ul li img {
  width: 22px;
  height: auto;
  display: block;
  margin-top: 5px;
  flex: 0 0 auto;
}
@media (max-width: 980px) {
  #contents02 {
    padding: 56px 0 42px;
  }
  #contents02 h2 {
    font-size: 28px;
    margin-bottom: 14px;
    padding: 0 16px;
    word-break: break-all;
  }
  #contents02 h2 span {
    font-size: 14px;
    margin-bottom: 12px;
    padding-bottom: 10px;
  }
  #contents02 h2 span::after {
    width: 40px;
  }
  #contents02 > p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 22px;
    word-break: break-all;
  }
  #contents02 > div {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 22px;
    padding: 0 12px;
  }
  #contents02 article {
    padding: 18px 16px 16px;
  }
  #contents02 article h3 {
    font-size: 18px;
    margin-bottom: 14px;
    padding: 0;
    min-height: 0;
  }
  #contents02 article h3 span {
    font-size: 16px;
    padding: 8px 14px;
    margin-bottom: 10px;
  }
  #contents02 article h3 img {
    position: static;
    width: min(210px, 60vw);
    margin: 10px 0 0 auto;
  }
  #contents02 article dl {
    grid-template-columns: 1fr 92px;
    gap: 12px;
    padding: 12px 0;
  }
  #contents02 article dl dt {
    font-size: 14px;
    line-height: 1.5;
  }
  #contents02 article dl dd {
    font-size: 16px;
    gap: 8px;
  }
  #contents02 article dl dd img {
    width: 20px;
  }
  #contents02 article ul {
    margin-top: 14px;
  }
  #contents02 article ul li {
    font-size: 14px;
    line-height: 1.6;
    padding: 10px 0;
  }
  #contents02 article ul li img {
    width: 18px;
    margin-top: 2px;
  }
}
@media (max-width: 560px) {
  #contents02 h2 {
    font-size: 24px;
  }
  #contents02 article {
    padding: 16px 14px 14px;
  }
  #contents02 article h3 {
    font-size: 17px;
  }
  #contents02 article h3 img {
    width: min(220px, 70vw);
  }
  #contents02 article dl {
    grid-template-columns: 1fr 84px;
  }
}

#contents03 {
  background: url(../img/Maskgroup01.png) center/cover no-repeat;
  font-family: var(--font-gothic);
  padding: 5% 0;
}
#contents03 > * {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}
#contents03 h2 {
  color: #1f2f4a;
  font-family: var(--font-base);
  font-weight: 800;
  font-size: 44px;
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin: 0 auto 2%;
  text-align: center;
}
#contents03 h2 span {
  display: block;
  font-family: var(--font-gothic);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  position: relative;
}
#contents03 h2 span::after {
  width: 44px;
  height: 2px;
  background: #1f2f4a;
  border-radius: 2px;
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
#contents03 > p {
  color: #1f2f4a;
  font-size: 16px;
  letter-spacing: 0.03em;
  margin: 0 auto 2%;
  text-align: center;
}
#contents03 > div {
  max-width: 1200px;
  box-sizing: border-box;
  margin: 0 auto;
  position: relative;
}
#contents03 .process-wrap {
  border: 1px solid #3a5a86;
  background: #fff;
  overflow: hidden;
  display: flex;
  min-height: 520px;
}
#contents03 .process-wrap > article {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  flex: 0 0 110px;
  border-right: 1px solid #3a5a86;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: flex-basis 420ms ease, background 220ms ease;
  background: #fff;
}
#contents03 .process-wrap > article:hover {
  background: #f7f9fc;
}
#contents03 .process-wrap > article dl, #contents03 .process-wrap > article figure {
  display: none;
}
#contents03 .process-wrap > article::before {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #1f2f4a;
  font-size: 18px;
  line-height: 1.1;
}
#contents03 .process-wrap > article::after {
  content: attr(data-num);
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  font-size: 42px;
  color: #3a5a86;
  line-height: 1;
}
#contents03 .process-wrap > article.is-active {
  flex: 1 1 auto;
  cursor: default;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: center;
  padding: 56px;
}
#contents03 .process-wrap > article.is-active::before, #contents03 .process-wrap > article.is-active::after {
  display: none;
}
#contents03 .process-wrap > article.is-active dl, #contents03 .process-wrap > article.is-active figure {
  display: block;
}
#contents03 .process-wrap > article:last-child {
  border-right: none;
}
#contents03 article dl {
  margin: 0;
}
#contents03 article dt {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #1f2f4a;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 0.02em;
  margin: 0 0 26px;
}
#contents03 article dt span {
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  font-size: 86px;
  line-height: 1;
  color: #3a5a86;
  display: inline-block;
  transform: translateY(8px);
}
#contents03 article dd {
  color: #1f2f4a;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.02em;
  margin: 0;
}
#contents03 article dd em {
  display: block;
  font-family: var(--font-base);
  font-style: normal;
  font-weight: 900;
  font-size: 30px;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
#contents03 article figure {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#contents03 article figure img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}
#contents03 .process__radio {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
#contents03 .processPager {
  display: none;
}
@media (max-width: 980px) {
  #contents03 h2 {
    padding: 0 16px;
    font-size: 28px;
    line-height: 1.25;
    letter-spacing: 0.02em;
    line-break: strict;
    overflow-wrap: anywhere;
  }
  #contents03 h2 span {
    font-size: 14px;
    margin-bottom: 12px;
    padding-bottom: 10px;
  }
  #contents03 > p {
    padding: 0 16px;
    font-size: 14px;
    line-height: 1.7;
    margin: 0 auto 16px;
    overflow-wrap: anywhere;
    word-break: break-all;
  }
  #contents03 .process-wrap {
    min-height: auto !important;
    display: block !important;
  }
  #contents03 .process-wrap > article {
    display: none !important;
    flex: none !important;
    border-right: none !important;
    cursor: default !important;
    transition: none !important;
    padding: 22px 16px !important;
  }
  #contents03 .process-wrap > article::before, #contents03 .process-wrap > article::after {
    display: none !important;
  }
  #contents03 .process-wrap > article dl, #contents03 .process-wrap > article figure {
    display: block !important;
  }
  #contents03 .process-wrap > article.is-active {
    display: none !important;
    grid-template-columns: none !important;
    gap: 0 !important;
    padding: 22px 16px !important;
  }
  #contents03 #pt01:checked ~ .process-wrap > article:nth-child(1) {
    display: block !important;
  }
  #contents03 #pt02:checked ~ .process-wrap > article:nth-child(2) {
    display: block !important;
  }
  #contents03 #pt03:checked ~ .process-wrap > article:nth-child(3) {
    display: block !important;
  }
  #contents03 #pt04:checked ~ .process-wrap > article:nth-child(4) {
    display: block !important;
  }
  #contents03 article dt {
    font-size: 20px !important;
    margin: 0 0 10px !important;
  }
  #contents03 article dt span {
    font-size: 64px !important;
    transform: translateY(6px) !important;
  }
  #contents03 article dd {
    font-size: 14px !important;
    line-height: 1.9 !important;
    word-break: break-all;
  }
  #contents03 article dd em {
    font-size: 24px !important;
    margin-bottom: 10px !important;
  }
  #contents03 article figure {
    justify-content: flex-start !important;
    margin: 4% 0 0;
  }
  #contents03 article figure img {
    width: min(300px, 84vw) !important;
    max-width: 300px !important;
  }
  #contents03 .processPager {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px;
    background: #fff;
    border-top: 1px solid #3a5a86;
  }
  #contents03 .processPager__tab {
    border: 1px solid rgba(58, 90, 134, 0.55);
    border-radius: 2px;
    background: #fff;
    color: #1f2f4a;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  #contents03 .processPager__tab span {
    font-family: "Shippori Mincho", serif;
    font-weight: 800;
    color: #3a5a86;
    font-size: 18px;
    line-height: 1;
  }
  #contents03 .processPager__tab:active {
    transform: translateY(1px);
  }
  #contents03 #pt01:checked ~ .processPager .processPager__tab:nth-child(1),
  #contents03 #pt02:checked ~ .processPager .processPager__tab:nth-child(2),
  #contents03 #pt03:checked ~ .processPager .processPager__tab:nth-child(3),
  #contents03 #pt04:checked ~ .processPager .processPager__tab:nth-child(4) {
    background: #1f2f4a;
    border-color: #1f2f4a;
    color: #fff;
  }
  #contents03 #pt01:checked ~ .processPager .processPager__tab:nth-child(1) span,
  #contents03 #pt02:checked ~ .processPager .processPager__tab:nth-child(2) span,
  #contents03 #pt03:checked ~ .processPager .processPager__tab:nth-child(3) span,
  #contents03 #pt04:checked ~ .processPager .processPager__tab:nth-child(4) span {
    color: #c9a24a;
  }
}
@media (max-width: 560px) {
  #contents03 h2 {
    font-size: 24px;
    word-break: break-all;
  }
  #contents03 article dt {
    font-size: 14px !important;
  }
  #contents03 article dt span {
    font-size: 56px !important;
  }
  #contents03 article dd em {
    font-size: 16px !important;
  }
  #contents03 .processPager {
    gap: 8px;
  }
  #contents03 .processPager__tab {
    padding: 10px 5px;
  }
  #contents03 .processPager__tab span {
    font-size: 14px;
  }
}

#contents04 {
  background: url(../img/Maskgroup02.png) center/cover no-repeat;
  font-family: var(--font-gothic);
  padding: 5% 0;
}
#contents04 > * {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}
#contents04 h2 {
  color: #1f2f4a;
  font-family: var(--font-base);
  font-weight: 800;
  font-size: 44px;
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin: 0 auto 2%;
  text-align: center;
}
#contents04 h2 span {
  display: block;
  font-family: var(--font-gothic);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  position: relative;
}
#contents04 h2 span::after {
  width: 44px;
  height: 2px;
  background: #1f2f4a;
  border-radius: 2px;
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
#contents04 > p {
  color: #1f2f4a;
  font-size: 16px;
  letter-spacing: 0.03em;
  margin: 0 auto 2%;
  text-align: center;
}
#contents04 > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  padding: 0 20px;
}
#contents04 article {
  background: transparent;
}
#contents04 figure {
  margin: 0 0 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}
#contents04 figure img {
  width: 100%;
  height: auto;
  display: block;
}
#contents04 h3 {
  margin: 0 0 14px;
  color: #1f2f4a;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.55;
  letter-spacing: 0.02em;
}
#contents04 h3 small {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 800;
  color: #1f2f4a;
}
#contents04 h3 small span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #1f2f4a;
  padding: 4px 10px;
  line-height: 1;
  font-size: 13px;
  font-weight: 900;
  background: #fff;
  white-space: nowrap;
}
#contents04 article > p {
  margin: 0;
  color: #1f2f4a;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.02em;
}
@media (max-width: 980px) {
  #contents04 {
    padding: 60px 0 70px;
  }
  #contents04 h2 {
    padding: 0 16px;
    font-size: 28px;
    line-height: 1.25;
    letter-spacing: 0.02em;
    line-break: strict;
    overflow-wrap: anywhere;
  }
  #contents04 h2 span {
    font-size: 14px;
    margin-bottom: 12px;
    padding-bottom: 10px;
  }
  #contents04 > p {
    padding: 0 16px;
    font-size: 14px;
    line-height: 1.7;
    margin: 0 auto 22px;
    overflow-wrap: anywhere;
    word-break: break-all;
  }
  #contents04 > div {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 16px;
  }
  #contents04 figure {
    margin-bottom: 12px;
  }
  #contents04 h3 {
    font-size: 18px;
    word-break: break-all;
  }
  #contents04 h3 small {
    font-size: 13px;
  }
  #contents04 h3 small span {
    font-size: 12px;
  }
  #contents04 article > p {
    font-size: 14px;
    line-height: 1.95;
    word-break: break-all;
  }
}
@media (max-width: 560px) and (max-width: 980px) {
  #contents04 h2 {
    font-size: 24px;
    word-break: break-all;
  }
}

#contents05 {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 55%, rgba(0, 0, 0, 0.14) 100%), linear-gradient(135deg, #465f8c 0%, #2f4a75 55%, #243a60 100%);
  color: #fff;
  font-family: var(--font-gothic);
  padding: 5% 0;
  position: relative;
}
#contents05 > * {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}
#contents05 h2 {
  color: #fff;
  font-family: var(--font-base);
  font-weight: 800;
  font-size: 44px;
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin: 0 auto 2%;
  text-align: center;
}
#contents05 h2 span {
  display: block;
  font-family: var(--font-gothic);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  position: relative;
}
#contents05 h2 span::after {
  width: 44px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
#contents05 > p:nth-of-type(1) {
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.03em;
  margin: 0 auto 5%;
  text-align: center;
}
#contents05 > p:nth-of-type(2) {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 0 34px;
  padding-left: 220px;
  box-sizing: border-box;
}
#contents05 > p:nth-of-type(2) span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.06em;
}
#contents05 > p:nth-of-type(2) a {
  display: inline-flex;
  align-items: end;
  justify-content: center;
  height: 40px;
  padding: 0 14px;
  color: #fff;
  text-decoration: underline;
  font-weight: 800;
  letter-spacing: 0.04em;
}
#contents05 > p:nth-of-type(2) a::after {
  content: "›";
  display: inline-block;
  margin-left: 10px;
  transform: translateY(-1px);
  font-weight: 900;
}
#contents05 > p:nth-of-type(2) img {
  width: 140px;
  height: auto;
  display: block;
  transform: translateY(4px);
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.18));
}
#contents05 > div {
  position: relative;
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 38px;
  padding: 0 20px;
  margin: 0 auto 56px;
  box-sizing: border-box;
}
#contents05 > div::before {
  content: "";
  position: absolute;
  left: 299px;
  top: -42px;
  bottom: -42px;
  width: 2px;
  background: rgba(255, 255, 255, 0.35);
}
#contents05 > div:nth-of-type(1)::before {
  top: -10px;
}
#contents05 > div:nth-of-type(4)::before {
  bottom: -10px;
}
#contents05 > div figure {
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#contents05 > div figure img {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
}
#contents05 > div dl {
  margin: 0;
  position: relative;
  min-width: 0;
}
#contents05 > div dt {
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #fff;
}
#contents05 > div dt span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #fff;
}
#contents05 > div dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.9);
}
#contents05 > div dd span {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  width: 120px;
  height: 34px;
  background: #fff;
  color: #1f2f4a;
  font-weight: 900;
  letter-spacing: 0.04em;
  border-radius: 2px;
}
#contents05 > div::after {
  content: "";
  position: absolute;
  left: 299px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.14);
}
@media (max-width: 980px) {
  #contents05 {
    padding: 64px 0 80px;
  }
  #contents05 h2 {
    padding: 0 16px;
    font-size: 30px;
    line-height: 1.25;
    letter-spacing: 0.02em;
    overflow-wrap: anywhere;
    line-break: strict;
  }
  #contents05 h2 span {
    font-size: 14px;
    margin-bottom: 12px;
    padding-bottom: 10px;
  }
  #contents05 > p:nth-of-type(1) {
    padding: 0 16px;
    font-size: 14px;
    line-height: 1.8;
    margin: 0 auto 24px;
    word-break: break-all;
  }
  #contents05 > p:nth-of-type(2) {
    left: auto;
    transform: none;
    padding-left: 0;
    margin: 0 auto 26px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 0 16px;
  }
  #contents05 > p:nth-of-type(2) span {
    width: 68px;
  }
  #contents05 > p:nth-of-type(2) a {
    height: 40px;
    padding: 0 14px;
  }
  #contents05 > p:nth-of-type(2) img {
    width: 110px;
    transform: none;
  }
  #contents05 > div {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 0 auto 18px;
    padding: 16px 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
  }
  #contents05 > div::before, #contents05 > div::after {
    display: none;
  }
  #contents05 > div figure {
    justify-content: center;
  }
  #contents05 > div figure img {
    max-width: 100%;
  }
  #contents05 > div dt {
    font-size: 20px;
    margin-bottom: 10px;
  }
  #contents05 > div dt span {
    font-size: 13px;
    height: 30px;
    padding: 0 10px;
  }
  #contents05 > div dd {
    font-size: 13px;
    line-height: 1.9;
    word-break: break-all;
  }
  #contents05 > div dd span {
    width: 110px;
    height: 32px;
    margin-top: 14px;
  }
}
@media (max-width: 980px) {
  #contents05 h2 {
    font-size: 26px;
    margin: 0 0 5%;
    word-break: break-all;
  }
  #contents05 > div {
    padding: 14px 14px;
  }
}

#contents06 {
  background: radial-gradient(circle at 20% 15%, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0) 55%), radial-gradient(circle at 80% 30%, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0) 60%), linear-gradient(135deg, #f1f1f1 0%, #ffffff 45%, #ededed 100%);
  font-family: var(--font-gothic);
  padding: 5% 0;
}
#contents06 > * {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
  min-width: 0;
}
#contents06 h2 {
  color: #1f2f4a;
  font-family: var(--font-base);
  font-weight: 800;
  font-size: 44px;
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin: 0 auto 2%;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-break: strict;
}
#contents06 > p {
  color: #1f2f4a;
  font-size: 16px;
  letter-spacing: 0.03em;
  margin: 0 auto 5%;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-break: strict;
}
#contents06 dl {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  padding: 26px 34px;
  margin: 0 auto 22px;
  box-sizing: border-box;
}
#contents06 dl dt, #contents06 dl dd {
  margin: 0;
  color: #1f2f4a;
  letter-spacing: 0.02em;
  min-width: 0;
}
#contents06 dl dt {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-weight: 900;
  font-size: 14px;
  line-height: 1.7;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(31, 47, 74, 0.25);
}
#contents06 dl dt span {
  flex: 0 0 auto;
  font-weight: 900;
  font-size: 16px;
}
#contents06 dl dd {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-top: 14px;
  font-size: 12.5px;
  line-height: 2;
  opacity: 0.92;
}
#contents06 dl dd span {
  flex: 0 0 auto;
  font-weight: 900;
  font-size: 16px;
}
#contents06 aside {
  text-align: center;
  margin-top: 74px;
  min-width: 0;
}
#contents06 aside h3 {
  margin: 0 0 10px;
  font-family: var(--font-base);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #1f2f4a;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-break: strict;
}
#contents06 aside p {
  margin: 0 0 26px;
  font-size: 12.5px;
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: #1f2f4a;
  opacity: 0.88;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-break: strict;
}
#contents06 aside p:last-child {
  margin-bottom: 0;
}
#contents06 aside p a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(520px, 100%);
  height: 66px;
  background: #b89537;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.06em;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
  box-sizing: border-box;
}
@media (max-width: 980px) {
  #contents06 {
    padding: 64px 0 80px;
  }
  #contents06 > * {
    padding-left: 16px;
    padding-right: 16px;
  }
  #contents06 h2 {
    font-size: 30px;
  }
  #contents06 > p {
    margin-bottom: 30px;
    word-break: break-all;
  }
  #contents06 dl {
    padding: 18px 18px;
    margin: 0 auto 16px;
  }
  #contents06 dl dt {
    font-size: 13px;
    padding-bottom: 12px;
  }
  #contents06 dl dd {
    padding-top: 12px;
    font-size: 12.5px;
  }
  #contents06 aside {
    margin-top: 52px;
  }
  #contents06 aside h3 {
    font-size: 22px;
  }
  #contents06 aside p a {
    height: 56px;
    font-size: 16px;
  }
}

#contents07 {
  --container: 1200px;
  --gutter: 20px;
  --cardW: 650px;
  --photoGap: 420px;
  background: linear-gradient(135deg, rgba(240, 240, 240, 0.75) 0%, rgb(255, 255, 255) 45%, rgba(236, 236, 236, 0.85) 100%);
  padding: 90px 0 140px;
  position: relative;
}
#contents07 h2 {
  text-align: center;
  margin: 0 0 60px;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #1f2f4a;
}
#contents07 > figure {
  max-width: var(--container);
  margin: 0 auto;
  box-sizing: border-box;
  padding-left: clamp(280px, 34vw, var(--photoGap));
}
#contents07 > figure img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12);
}
#contents07 > div {
  position: absolute;
  top: 220px;
  left: 50%;
  transform: translateX(calc(-1 * var(--container) / 2 + var(--gutter)));
  width: var(--cardW);
  max-width: calc(100% - var(--gutter) * 2);
  background: #fff;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.1);
  padding: 26px 34px;
  box-sizing: border-box;
  z-index: 2;
}
#contents07 > div dl {
  margin: 0;
  display: grid;
  grid-template-columns: 140px 1fr;
  -moz-column-gap: 26px;
       column-gap: 26px;
  padding: 18px 0;
}
#contents07 > div dl:not(:last-child) {
  border-bottom: 1px solid rgba(31, 47, 74, 0.18);
}
#contents07 > div dt {
  margin: 0;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #1f2f4a;
  white-space: nowrap;
  padding-top: 2px;
}
#contents07 > div dd {
  margin: 0;
  font-size: 14px;
  line-height: 2.05;
  letter-spacing: 0.02em;
  color: #1f2f4a;
  opacity: 0.95;
}
@media (max-width: 1150px) {
  #contents07 {
    padding: 70px 0 90px;
  }
  #contents07 > div {
    position: static;
    transform: none;
    width: auto;
    max-width: 900px;
    margin: 0 auto 22px;
  }
  #contents07 > figure {
    padding-left: 0;
    padding: 0 16px;
  }
}
@media (max-width: 980px) {
  #contents07 h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  #contents07 > div {
    max-width: 760px;
    padding: 18px;
  }
  #contents07 > div dl {
    grid-template-columns: 110px 1fr;
    -moz-column-gap: 14px;
         column-gap: 14px;
  }
}
@media (max-width: 560px) {
  #contents07 > div dl {
    grid-template-columns: 1fr;
    row-gap: 6px;
  }
}

#form {
  position: relative;
  color: #fff;
  padding: 90px 0 70px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 55%, rgba(0, 0, 0, 0.18) 100%), linear-gradient(135deg, #5e739c 0%, #465f8c 40%, #2f4a75 100%);
}
#form > * {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
#form h2 {
  text-align: center;
  margin: 0 auto 34px;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
}
#form figure {
  max-width: none !important;
  margin: 0 !important;
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  bottom: 0;
  height: 46%;
  pointer-events: none;
  z-index: 0;
}
#form figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  opacity: 0.16;
  filter: saturate(0.7) contrast(0.95);
}
#form figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(47, 74, 117, 0) 0%, rgba(47, 74, 117, 0.55) 55%, rgba(47, 74, 117, 0.85) 100%);
}
#form form {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}
#form form dl {
  margin: 0 0 22px;
}
#form form dt {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.95);
}
#form form dt span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  padding: 0 8px;
  margin-right: 10px;
  background: #d82222;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
}
#form form dd {
  margin: 0;
}
#form form dd input[type=text],
#form form dd input[type=email],
#form form dd input[type=tel],
#form form dd textarea {
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  font-size: 16px;
  color: #111;
  padding: 16px 18px;
  outline: none;
}
#form form dd input[type=text]:focus,
#form form dd input[type=email]:focus,
#form form dd input[type=tel]:focus,
#form form dd textarea:focus {
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}
#form form dd textarea {
  min-height: 160px;
  resize: vertical;
  padding-top: 14px;
  line-height: 1.8;
}
#form form dd .error {
  min-height: 18px;
  margin-top: 8px;
  font-size: 12px;
  color: #ffd7d7;
  letter-spacing: 0.02em;
}
#form input[type=file] {
  position: relative;
  z-index: 1;
  display: block;
  width: 320px;
  max-width: 100%;
  margin: 22px auto 10px;
  padding: 16px 18px;
  background: #fff;
  color: #111;
  border: none;
  border-radius: 2px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}
#form input[type=file]::file-selector-button {
  border: none;
  background: transparent;
  font-weight: 900;
  letter-spacing: 0.04em;
  cursor: pointer;
  margin-right: 10px;
}
#form form > p {
  text-align: center;
  margin: 8px 0 18px;
}
#form form > p a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
#form input[type=submit] {
  position: relative;
  z-index: 1;
  display: block;
  width: min(680px, 100%);
  height: 64px;
  margin: 0 auto 22px;
  background: #b89537;
  color: #fff;
  border: none;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.06em;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
#form input[type=submit]:hover {
  filter: brightness(1.02);
}
#form input[type=submit]:active {
  transform: translateY(1px);
}
#form small {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.86);
}
@media (max-width: 980px) {
  #form {
    padding: 64px 0 60px;
  }
  #form h2 {
    font-size: 28px;
    margin-bottom: 26px;
  }
  #form form {
    padding: 0 16px;
  }
  #form form dt {
    font-size: 13px;
  }
  #form form dd input[type=text],
  #form form dd input[type=email],
  #form form dd input[type=tel],
  #form form dd textarea {
    padding: 14px 14px;
    font-size: 16px;
  }
  #form input[type=file] {
    padding: 14px 14px;
    width: 280px;
  }
  #form input[type=submit] {
    height: 58px;
    font-size: 14px;
    word-break: break-all;
  }
  #form figure {
    height: 40%;
  }
}/*# sourceMappingURL=style.css.map */