@charset "UTF-8";

/* CSS Document */
*,
::after,
::before {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 16px;
  font-weight: lighter;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/*デバイス毎の基本フォントサイズ設定*/
@media (max-width: 1500px) {

  body,
  html {
    font-size: 18px;
  }
}

@media (max-width: 576px) {

  body,
  html {
    font-size: 14px;
  }
}

/*見出し、本文フォントサイズ設定*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 700;
}

h2 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.2rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.6;
}

small {
  font-size: 0.6em;
}

b,
strong {
  font-weight: 700;
}

/*リストスタイル設定*/
dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}

li {
  list-style: none;
}

/*テーブルスタイル設定*/
table {
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

tr {
  border-bottom: solid #E6E6E6 1px;
}

th {
  width: 20%;
  min-width: 8rem;
  padding: 1rem 1rem 1rem 0;
  text-align: inherit;
}

td {
  padding: 1rem 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 2rem;
  margin-left: 0;
}

/*リンクスタイル設定*/
a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
  transition: .3s;
}

a:hover {
  opacity: 0.8;
  text-decoration: none;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

code,
kbd,
pre,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
  width: auto;
  height: auto;
}

/*マージン設定*/
.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 1rem !important;
}

.mt-1,
.my-1 {
  margin-top: 1rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 1rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 1rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 1rem !important;
}

.m-2 {
  margin: 2rem !important;
}

.mt-2,
.my-2 {
  margin-top: 2rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 2rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 2rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 2rem !important;
}

.m-3 {
  margin: 3rem !important;
}

.mt-3,
.my-3 {
  margin-top: 3rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 3rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 3rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 3rem !important;
}

.m-4 {
  margin: 4rem !important;
}

.mt-4,
.my-4 {
  margin-top: 4rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 4rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 4rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 4rem !important;
}

.m-5 {
  margin: 5rem !important;
}

.mt-5,
.my-5 {
  margin-top: 5rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 5rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 5rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 5rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 3rem !important;
}

.pt-1,
.py-1 {
  padding-top: 3rem !important;
}

.pr-1,
.px-1 {
  padding-right: 3rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 3rem !important;
}

.pl-1,
.px-1 {
  padding-left: 3rem !important;
}

.p-2 {
  padding: 2rem !important;
}

.pt-2,
.py-2 {
  padding-top: 2rem !important;
}

.pr-2,
.px-2 {
  padding-right: 2rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 2rem !important;
}

.pl-2,
.px-2 {
  padding-left: 2rem !important;
}

.p-3 {
  padding: 3rem !important;
}

.pt-3,
.py-3 {
  padding-top: 3rem !important;
}

.pr-3,
.px-3 {
  padding-right: 3rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 3rem !important;
}

.pl-3,
.px-3 {
  padding-left: 3rem !important;
}

.p-4 {
  padding: 12rem !important;
}

.pt-4,
.py-4 {
  padding-top: 12rem !important;
}

.pr-4,
.px-4 {
  padding-right: 12rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 12rem !important;
}

.pl-4,
.px-4 {
  padding-left: 12rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.pt-6 {
  padding-top: 4rem !important;
}

.mx-auto {
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.align-items-center {
  align-items: center;
}

/*コンテナサイズ設定*/
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 90%;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 90%;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1100px;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1200px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  row-gap: 40px;
}

@media (max-width: 767px) {
  .row {
    row-gap: 20px;
  }
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -ms-flex-order: -1;
  order: -1;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-md-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }
}

/* CSS Document */
body,
html {
  width: 100%;
  height: 100%;
  color: #4D4D4D;
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-size: 16px;
}

@media (max-width: 576px) {

  body,
  html {
    font-size: 13px;
  }
}

img {
  width: 100%;
}

p {
  line-height: 1.8;
}

a {
  color: #0F2A45;
}

a:not([class]) {
  color: #0F2A45;
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', sans-serif;
}

.light-gold {
  color: #CAB178;
}

.gold {
  color: #AC9868;
}

.large {
  font-size: 1.5em;
}

.note {
  display: block;
  text-align: right;
  margin-top: 1rem;
}

.sc-tl {
  position: relative;
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1.5em;
  color: #0F2A45;
  font-weight: 600;
  font-family: 'Noto Serif JP', serif;
}

.sc-tl::after {
  content: "";
  width: 8rem;
  height: 2px;
  background: #0F2A45;
  display: block;
  margin: 1rem auto 0;
}

.sc-tl_small {
  font-weight: 400;
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', sans-serif;
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.2em;
  z-index: 2;
  position: relative;
}

@media (max-width: 767px) {
  .sc-tl {
    font-size: 1.6rem;
  }
}

.sc-tl2 {
  position: relative;
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1.5em;
  color: #0F2A45;
  font-weight: 600;
  font-family: 'Noto Serif JP', serif;
}

.sc-tl2_small {
  font-weight: 400;
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', sans-serif;
  display: block;
  position: relative;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  border: 2px solid #4D4D4D;
  border-radius: 3rem;
  width: 100%;
  max-width: max-content;
  margin: 0 auto 2rem;
}

.sc-tl2_small:before {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: skew(-45deg);
  height: 20px;
  width: 30px;
  border-right: 2px solid #4D4D4D;
  background-color: #fff;
  content: "";
}

@media (max-width: 767px) {
  .sc-tl2 {
    font-size: 1.6rem;
  }
}

.btn {
  position: relative;
  display: block;
  overflow: hidden;
  width: 600px;
  max-width: 100%;
  color: #fff;
  background: #A68656;
  padding: 1rem;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  margin: 0 auto;
  text-decoration: none;
  border-radius: 0.2rem;
  border-bottom: 4px solid #81724E;
}

.nav {
  z-index: 500;
  top: 0;
  width: 100%;
  transition: .3s;
  height: 60px;
  position: fixed;
  background: #fff;
}

.nav .container {
  height: 60px;
  display: flex;
  align-items: center;
}

@media (min-width: 1800px) {
  .nav .container {
    max-width: 80%;
  }
}

.nav_logo img {
  height: 30px;
  width: auto;
}

.nav_right {
  display: flex;
  margin-left: auto;
  gap: 1rem;
  align-items: center;
}

.nav_right_link {
  display: flex;
  gap: 1.5rem;
  margin-right: 1rem;
  align-items: center;
  margin-bottom: 0;
}

.nav_right_link a {
  font-size: 1rem;
  font-weight: 500;
  color: #5E5E5E;
  text-decoration: none;
  border-bottom: solid 2px transparent;
}

.nav_right_link a:hover {
  border-bottom: solid 2px #4D4D4D;
}

@media (max-width: 1000px) {
  .nav_right_link {
    display: none;
  }
}

.nav_btn {
  display: inline-block;
  font-size: 1rem;
  color: #fff;
  background: #4FC74C;
  padding: 0.5rem 1rem;
  width: auto;
  margin-left: auto;
  border-radius: 2rem;
}

.nav_hamburger {
  display: none;
  position: relative;
  width: 30px;
  height: 25px;
  margin-left: 20px;
  cursor: pointer;
  z-index: 800;
}

@media (max-width: 1000px) {
  .nav_hamburger {
    display: block;
  }
}

.nav_hamburger_line {
  position: absolute;
  width: 30px;
  height: 1.3px;
  background-color: #A68656;
  transition: all .6s;
}

.nav_hamburger_line-1 {
  top: 0;
}

.nav_hamburger_line-2 {
  top: 10px;
}

.nav_hamburger_line-3 {
  top: 20px;
}

.nav_drawer-nav {
  position: fixed;
  visibility: hidden;
  padding: 50px 20px 20px;
  opacity: 0;
  top: 0;
  right: -80%;
  width: 80%;
  height: 100vh;
  background-color: #fff;
  box-shadow: 0px 0px 28px -5px #b4c2cb;
  transition: all .6s;
  z-index: 700;
  overflow-y: auto;
}

.nav_drawer-nav .nav_btn {
  width: 100%;
  margin-top: 1rem;
  text-align: center;
}

.nav_drawer-nav .nav_btn-line {
  background: #4FC74C;
}

.nav_drawer-nav_list {
  margin: 0;
  padding: 0;
  width: 100%;
  list-style: none;
}

.nav_drawer-nav_list li a {
  font-size: 1.2rem;
  display: block;
  padding: 10px 5px;
  font-weight: 500;
  margin: 0;
  border-bottom: 1px solid #A68656;
  text-decoration: none;
  color: #A68656;
}

.nav_drawer-nav_list li a:hover {
  background-color: #eee;
  color: #212121;
}

.nav_drawer-nav .sub-menu {
  padding-left: 1.5rem;
}

.nav_drawer-nav .sub-menu a {
  font-size: 1rem;
}

.nav_sns {
  display: flex;
  gap: 0 30px;
  margin: 20px 0;
  padding-bottom: 20px;
  justify-content: center;
}

.nav_sns a {
  width: auto;
  height: 30px;
}

.nav-open .nav_drawer-nav {
  visibility: visible;
  opacity: 1;
  right: 0;
}

.nav-open .nav_hamburger_line-1 {
  transform: rotate(45deg);
  top: 10px;
}

.nav-open .nav_hamburger_line-2 {
  width: 0;
  left: 50%;
}

.nav-open .nav_hamburger_line-3 {
  transform: rotate(-45deg);
  top: 10px;
}

.tracking_footer {
  position: fixed;
  z-index: 500;
  bottom: 0;
  width: 100%;
  padding: 10px 0px;
}

.tracking_footer img {
  height: 80px;
  width: auto;
  display: block;
  margin-left: auto;
  animation: bound-anim 3s infinite;
}

@keyframes bound-anim {

  0%,
  100% {
    margin-bottom: 0;
    transform: scale(1);
  }

  20% {
    margin-bottom: 0;
    transform: scale(1.1, 0.9);
  }

  30% {
    margin-bottom: 0;
    transform: scale(1);
  }

  40% {
    margin-bottom: 10px;
    transform: scale(1);
  }

  70% {
    margin-bottom: 0;
    transform: scale(1);
  }
}

.top_visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4/2;
  padding-top: 60px;
  background: url("../img/top-visual_bg.jpg") center;
  background-size: cover;
}

@supports not (aspect-ratio: 4/2) {
  .top_visual::before {
    float: left;
    padding-top: 50%;
    content: "";
  }

  .top_visual::after {
    display: block;
    content: "";
    clear: both;
  }
}

.top_visual_human {
  position: absolute;
  width: 50%;
  right: 0;
  bottom: 0;
  object-fit: cover;
  object-position: top left;
  height: calc(100% - 60px);
}

.top_visual_catch {
  position: absolute;
  margin-bottom: 0;
  width: 50%;
  top: 55%;
  left: 10%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.top_visual_catch_1 {
  margin-bottom: 2vw;
}

.top_visual_catch_3 {
  margin-bottom: 1vw;
}

.top_visual_band {
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  z-index: 1;
  bottom: 5%;
  right: 0;
  width: 30%;
  font-size: 1.5vw;
  padding: 1rem 2rem;
  color: #0F2A45;
  margin-bottom: 0;
  line-height: 1;
  white-space: nowrap;
  min-width: max-content;
}

@media (max-width: 768px) {
  .top_visual {
    aspect-ratio: 4/3;
  }

  @supports not (aspect-ratio: 4/3) {
    .top_visual::before {
      float: left;
      padding-top: 75%;
      content: "";
    }

    .top_visual::after {
      display: block;
      content: "";
      clear: both;
    }
  }
}

@media (max-width: 576px) {
  .top_visual {
    aspect-ratio: 2/3;
  }

  @supports not (aspect-ratio: 2/3) {
    .top_visual::before {
      float: left;
      padding-top: 66%;
      content: "";
    }

    .top_visual::after {
      display: block;
      content: "";
      clear: both;
    }
  }

  .top_visual_catch {
    width: 100%;
    height: 100%;
    top: unset;
    left: 0;
    display: block;
    position: relative;
    transform: none;
    padding: 0 5% 0;
  }

  .top_visual_catch_1 {
    width: 100%;
    margin-bottom: 4vw;
    margin-top: 8vw;
  }

  .top_visual_catch_2 {
    width: 50%;
  }

  .top_visual_catch_3 {
    width: 95%;
    bottom: -4rem;
    margin-bottom: 0;
    margin-top: 3rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }

  .top_visual_human {
    width: 80%;
    height: 70%;
  }

  .top_visual_band {
    text-align: center;
    right: unset;
    left: 0;
    font-size: 1rem;
    width: max-content;
    bottom: 15%;
  }
}

.cv_section {
  background: url("../img/bg_1.png");
  background-size: cover;
  padding: 4rem 0;
}

@media (max-width: 576px) {
  .cv_section {
    padding: 3rem 0;
  }
}

.cv_coupon {
  display: block;
  width: min(100%, 800px);
  margin: 0 auto;
}

.cv_btn {
  position: relative;
  display: block;
  text-align: center;
  padding: 1rem 2rem;
  background: #A68656;
  color: #fff;
  box-shadow: 0px 0px 28px -5px #b4c2cb;
  font-size: 1.2rem;
  font-weight: 500;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 4rem;
}

.cv_btn-line {
  background: #4FC74C;
}

.cv_btn_note {
  font-size: 0.8rem;
  text-align: center;
}

.cv_btn_group {
  width: min(100%, 800px);
  margin: 2rem auto;
}

.cv_btn_group_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
  text-align: center;
}

.cv_btn_group_note {
  font-size: 0.8rem;
  text-align: center;
  margin: 0.5rem 0 0;
}

@media (max-width: 576px) {
  .cv_section:nth-of-type(2) {
    padding-top: 6rem;
  }

  .cv_btn_group_list {
    grid-template-columns: 1fr;
  }
}

.sns_section {
  background: url("../img/bg_2.png");
  background-size: cover;
  padding: 4rem 0;
}

@media (max-width: 576px) {
  .sns_section {
    padding: 3rem 0;
  }
}

.sns_list {
  width: min(100%, 800px);
  margin: 0 auto;
}

.sns_list_item {
  position: relative;
  background: #fff;
  padding: 2rem;
  margin-top: 5rem;
}

.sns_list_item h3 {
  font-weight: 500;
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', sans-serif;
  position: absolute;
  background: #0F2A45;
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  text-align: center;
  width: 100%;
  max-width: max-content;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

@media (max-width: 576px) {
  .sns_list_item h3 {
    font-weight: 500;
    font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', sans-serif;
    font-size: 1rem;
    max-width: max-content;
    top: -3rem;
  }
}

.problem_section {
  background: #757E8F;
  color: #fff;
  padding: 4rem 0;
}

@media (max-width: 576px) {
  .problem_section {
    padding: 3rem 0;
  }
}

.problem_section .sc-tl2 {
  color: #fff;
}

.problem_section .sc-tl2_small {
  border-color: #fff;
}

.problem_section .sc-tl2_small:before {
  border-color: #fff;
  background: #757E8F;
}

.problem_img {
  display: block;
  width: min(100%, 600px);
  margin: 0 auto 2rem;
}

.problem_cc {
  font-weight: 600;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.6rem;
  text-align: center;
}

.problem_cc_strong {
  border-bottom: 2px solid #fff;
  padding-bottom: 0.2rem;
}

.menu_header {
  padding: 4rem 0;
  background: linear-gradient(100deg, #AD8F63 0%, #D3AD74 50%, #9E845D 100%);
  color: #fff;
}

@media (max-width: 576px) {
  .menu_header {
    padding: 3rem 0;
  }
}

.menu_header .sc-tl {
  color: #fff;
  width: 100%;
  max-width: max-content;
  margin: 0 auto;
  border-bottom: 2px solid #fff;
  padding-bottom: 0.2rem;
}

.menu_header .sc-tl_small {
  width: 100%;
  max-width: max-content;
  margin: 0 auto 0.5rem;
  border-bottom: 2px solid #fff;
  padding-bottom: 0.2rem;
}

.menu_header .sc-tl:after {
  display: none;
}

.menu_list {
  background: url("../img/bg_1.png");
  background-size: cover;
  padding: 4rem 0;
}

@media (max-width: 576px) {
  .menu_list {
    padding: 3rem 0;
  }
}

.menu_list:nth-of-type(2) {
  background: url("../img/bg_5.jpg");
  background-size: cover;
}

.menu_list:nth-of-type(2) .menu_list_item_header::before {
  background: #AE91D3;
}

.menu_list:nth-of-type(3) {
  background: url("../img/bg_6.png");
  background-size: cover;
}

.menu_list:nth-of-type(3) .menu_list_item_header::before {
  background: #CBB375;
}

.menu_list_item {
  background: #fff;
  box-shadow: 0px 0px 28px -5px #b4c2cb;
  width: min(100%, 800px);
  margin: 0 auto;
}

.menu_list_item_header {
  position: relative;
  display: flex;
  justify-content: center;
}

.menu_list_item_header::before {
  content: "";
  position: absolute;
  background: #6A9CB9;
  width: 100%;
  height: 80%;
  top: 0;
  left: 0;
  z-index: 1;
}

.menu_list_item_header_num {
  width: auto;
  height: 7rem;
  margin-right: 1rem;
  z-index: 2;
}

.menu_list_item_header_ttl {
  font-weight: 600;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.8rem;
  margin: 0;
  padding-bottom: 1rem;
  align-self: center;
  line-height: 1.4;
  color: #fff;
  z-index: 2;
}

.menu_list_item_col1 {
  padding: 3rem 3rem 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
}

.menu_list_item_col1_target {
  margin-bottom: 2rem;
}

.menu_list_item_col1 h4 {
  font-weight: 600;
  font-family: 'Noto Serif JP', serif;
  color: #0F2A45;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.menu_list_item_col2 {
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  align-items: center;
}

.menu_list_item_col2_target {
  margin-bottom: 2rem;
}

.menu_list_item_col2 h4 {
  font-weight: 600;
  font-family: 'Noto Serif JP', serif;
  color: #0F2A45;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

@media (max-width: 576px) {
  .menu_list_item_header::before {
    height: 100%;
  }

  .menu_list_item_header_num {
    position: absolute;
    left: 2rem;
    height: 8rem;
    margin-right: 1.2rem;
  }

  .menu_list_item_header_ttl {
    padding-left: 6rem;
    font-size: 1.6rem;
    padding-top: 1rem;
  }

  .menu_list_item_col1 {
    padding: 2rem 2rem 0;
    grid-template-columns: 1fr;
  }

  .menu_list_item_col1_human {
    display: block;
    width: min(100%, 200px);
    margin: 0 auto;
  }

  .menu_list_item_col1 h4 {
    font-size: 1.4rem;
    text-align: center;
  }

  .menu_list_item_col2 {
    padding: 2rem;
    grid-template-columns: 1fr;
  }

  .menu_list_item_col2_machine {
    order: 2;
    display: block;
    width: min(100%, 150px);
    margin: 0 auto;
  }

  .menu_list_item_col2 h4 {
    font-size: 1.4rem;
    text-align: center;
  }
}

.combination_section {
  background: url("../img/bg_3.png");
  background-size: cover;
  padding: 4rem 0;
}

@media (max-width: 576px) {
  .combination_section {
    padding: 3rem 0;
  }
}

@media (max-width: 576px) {
  .combination_section {
    background-size: contain;
  }
}

.combination_section .sc-tl2_small:before {
  background: #F7F7F7;
}

.combination_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  width: min(100%, 800px);
  margin: 0 auto 3rem;
}

.combination_list_item {
  position: relative;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  align-items: center;
  gap: 2rem;
  background: #fff;
  box-shadow: 0px 0px 28px -5px #b4c2cb;
}

.combination_list_item::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 2rem solid transparent;
  border-right: 2rem solid transparent;
  border-top: 2rem solid #D9D9D9;
  bottom: -3rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.combination_list_item:last-of-type::after {
  display: none;
}

.combination_list_item:nth-of-type(2) h3 {
  color: #AE91D3;
}

.combination_list_item:nth-of-type(3) h3 {
  color: #CBB375;
}

.combination_list_item:nth-of-type(3) img {
  margin-bottom: 0;
}

.combination_list_item h3 {
  color: #6A9CB9;
  font-weight: 500;
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', sans-serif;
  line-height: 1.4;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.combination_list_item p {
  margin-bottom: 0;
}

.combination_list_item img {
  align-self: flex-end;
  margin-bottom: -2rem;
}

.combination_counseling_list {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  align-items: center;
}

@media (max-width: 576px) {
  .combination_counseling_list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .combination_list_item {
    grid-template-columns: 1fr;
  }

  .combination_list_item img {
    order: 2;
  }

  .combination_list_item h3 {
    text-align: center;
  }
}

.reason_section {
  background: url("../img/bg_2.png");
  background-size: cover;
  padding: 4rem 0;
}

@media (max-width: 576px) {
  .reason_section {
    padding: 3rem 0;
  }
}

@media (max-width: 576px) {
  .reason_section {
    background-size: contain;
  }
}

.reason_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.reason_list_item {
  position: relative;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  gap: 2rem;
  background: #fff;
  box-shadow: 0px 0px 28px -5px #b4c2cb;
}

.reason_list_item_ttl {
  color: #0F2A45;
  font-size: 1.6rem;
  line-height: 1.4;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.reason_list_item_ttl_num {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 3.5rem;
  margin-right: 0.8rem;
  line-height: 1;
  color: #CCDBE9;
}

@media (max-width: 576px) {
  .reason_list_item {
    grid-template-columns: 1fr;
  }
}

.visia_section {
  background: url("../img/bg_3.png");
  background-size: cover;
  padding: 4rem 0;
}

@media (max-width: 576px) {
  .visia_section {
    padding: 3rem 0;
  }
}

@media (max-width: 576px) {
  .visia_section {
    background-size: contain;
  }
}

.visia_graph {
  text-align: center;
  margin-bottom: 2rem;
}

.visia_graph h3 {
  color: #A68656;
  font-weight: 500;
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', sans-serif;
}

.visia_graph img {
  display: block;
  width: min(100%, 350px);
  margin: 0 auto;
}

.visia_img {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  margin-bottom: 1rem;
}

@media (max-width: 576px) {
  .visia_img {
    grid-template-columns: 1fr;
  }
}

.visia_cv {
  margin-top: 2rem;
  text-align: center;
}

.visia_cv_ttl {
  font-weight: 500;
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', sans-serif;
}

.visia_cv_cc {
  font-weight: 500;
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', sans-serif;
}

@media (max-width: 576px) {
  .visia_graph img {
    width: min(100%, 250px);
  }
}

.message_section {
  background: url("../img/bg_4.jpg");
  background-size: cover;
  padding: 4rem 0;
}

@media (max-width: 576px) {
  .message_section {
    padding: 3rem 0;
  }
}

.message_list {
  display: grid;
  grid-template-columns: 1fr 2fr;
  width: min(100%, 800px);
  margin: 0 auto;
  gap: 2rem;
}

.message_list_cc {
  font-weight: 600;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.6rem;
}

.message_list_name {
  font-size: 1.2rem;
}

@media (max-width: 576px) {
  .message_list {
    grid-template-columns: 1fr;
  }

  .message_list img {
    display: block;
    width: min(100%, 150px);
    margin: 0 auto;
  }
}

.price_section {
  background: url("../img/bg_2.png");
  background-size: cover;
  padding: 4rem 0;
}

@media (max-width: 576px) {
  .price_section {
    padding: 3rem 0;
  }
}

@media (max-width: 576px) {
  .price_section {
    background-size: contain;
  }
}

.price_coupon {
  display: block;
  width: min(100%, 800px);
  margin: 0 auto 2rem;
}

.price_list {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  margin: 3rem 0;
}

@media (max-width: 576px) {
  .price_list {
    grid-template-columns: 1fr;
  }
}

.price_list_item {
  margin-top: 2rem;
  background: #fff;
  box-shadow: 0px 0px 28px -5px #b4c2cb;
}

.price_list_item_ttl {
  font-weight: 500;
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', sans-serif;
  position: relative;
  background: #A68656;
  color: #fff;
  text-align: center;
  padding: 1.5rem 1rem 1rem;
  margin-bottom: 0;
}

.price_list_item_ttl_small {
  font-size: 0.9rem;
  position: absolute;
  width: 100%;
  max-width: max-content;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  display: block;
  background: #fff;
  border: solid 1px #A68656;
  padding: 0.5rem 1rem;
  border-radius: 3rem;
  color: #A68656;
}

.price_list_item_price {
  text-align: center;
  margin-bottom: 0;
  padding: 1rem 1rem 1rem;
  font-family: 'Roboto Condensed', sans-serif;
}

.price_list_item_price_before {
  color: #ACACAC;
  font-size: 1.6rem;
  line-height: 1;
}

.price_list_item_price_before small {
  font-size: 10px;
  letter-spacing: 0;
}

.price_list_item_price_arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 8px solid #ACACAC;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.price_list_item_price_after {
  color: #A68656;
  font-size: 2.2rem;
  line-height: 1;
}

.price_list_item_price_after small {
  font-size: 10px;
  letter-spacing: 0;
}

.price_list_item_price_note {
  font-weight: 500;
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', sans-serif;
  display: block;
  text-align: center;
  color: #A68656;
  margin-bottom: 0;
}

.price_caution {
  background: #fff;
  font-size: 10px;
  box-shadow: 0px 0px 28px -5px #b4c2cb;
  padding: 2rem;
}

.flow_section {
  background: url("../img/bg_3.png");
  background-size: cover;
  padding: 4rem 0;
}

@media (max-width: 576px) {
  .flow_section {
    padding: 3rem 0;
  }
}

@media (max-width: 576px) {
  .flow_section {
    background-size: contain;
  }
}

.flow_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.flow_list_item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-left: 6rem;
  gap: 2rem;
}

.flow_list_item::before {
  content: "";
  display: block;
  position: absolute;
  top: 3rem;
  left: 2rem;
  width: 1px;
  height: 100%;
  background: #0F2A45;
}

.flow_list_item:last-of-type::before {
  display: none;
}

.flow_list_item_num {
  font-family: 'Roboto Condensed', sans-serif;
  z-index: 2;
  position: absolute;
  font-size: 2rem;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #0F2A45;
  border-radius: 100%;
  background: #F9F9F9;
}

.flow_list_item h3 {
  color: #0F2A45;
}

@media (max-width: 576px) {
  .flow_list_item {
    grid-template-columns: 1fr;
  }
}

.faq_section {
  background: url("../img/bg_2.png");
  background-size: cover;
  padding: 4rem 0;
}

@media (max-width: 576px) {
  .faq_section {
    padding: 3rem 0;
  }
}

.faq_acc {
  padding: 1rem 2rem 1rem 0;
  border-bottom: solid 1px #0F2A45;
  position: relative;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', sans-serif;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.faq_acc::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 10px;
  height: 10px;
  border-top: solid 2px #0F2A45;
  border-right: solid 2px #0F2A45;
  transform: translateY(-50%) rotate(135deg);
}

.faq_acc:has(input:checked)::after {
  transform: translateY(-50%) rotate(315deg);
}

.faq_acc input {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  right: 0;
  top: 1rem;
  cursor: pointer;
  z-index: 500;
}

.faq_acc_content {
  display: none;
  font-size: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 0 !important;
  font-weight: lighter;
  padding-right: 2rem;
}

input:checked+.faq_acc_content {
  display: block;
}

.access_section {
  background: url("../img/bg_3.png");
  background-size: cover;
  padding: 4rem 0;
}

@media (max-width: 576px) {
  .access_section {
    padding: 3rem 0;
  }
}

.access_list {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

@media (max-width: 576px) {
  .access_list {
    grid-template-columns: 1fr;
  }
}

.footer {
  background: #0F2A45;
  color: #fff;
  padding: 2rem 0;
  font-size: 0.9rem;
  text-align: center;
}

.footer_ul {
  display: block;
  padding-left: 0;
}

.footer_ul li {
  display: inline-block;
  margin: 0.5rem 1rem;
}

.footer_ul li a {
  color: #fff;
}

.footer_copyright {
  display: block;
  font-size: 10px;
  margin-top: 2rem;
}

/*# sourceMappingURL=style.css.map */