@charset "UTF-8";
:root {
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-en: "Roboto Slab", serif;
  --font-en-2: "Roboto", sans-serif;
  --font-weight-base: 400;
  --lineheight-base: 1.5;
  --font-size-base: 2.6rem;
  --color-primary: #086f99;
  --color-secondary: #e1eaee;
  --color-danger: #d91e36;
  --color-hover: #153c61;
  --color-note: #597782;
  --color-border: #c7d9e0;
  --text-color: #222;
  --tbl-bg: #f2f8fa;
  --gutter: 3.2rem;
  --input-placeholder-color: #9d9d9d;
  --input-color: var(--text-color);
  --input-border-color: var(--color-primary);
  --input-border-focus-color: var(--color-primary);
  --input-border-width: 0.6rem;
  --input-border-radius: 0.8rem;
  --input-font-size: 2.6rem;
  --input-font-weight: bold;
  --input-background: #feffd3;
  --input-padding-y: 0;
  --input-padding-x: 2.3rem;
  --input-height: 7.2rem;
  --box-shadow: 0px 0.5rem 2rem 0.1rem rgba(0, 0, 0, 0.01);
}
@media (min-width: 768px) {
  :root {
    --font-size-base: 1.6rem;
    --gutter: 1.6rem;
    --input-border-width: 0.4rem;
    --input-border-radius: 0.4rem;
    --input-font-size: 1.8rem;
    --input-height: 4.8rem;
  }
}

* {
  box-sizing: border-box;
}

html {
  font-size: 1.3333333333vw;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  html {
    font-size: 1vw;
  }
}
@media (min-width: 1000px) {
  html {
    font-size: 10px;
  }
}
html.noscroll {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}

body {
  background-color: var(--color-secondary);
  color: var(--text-color);
  margin: 0;
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-base);
  font-size: var(--font-size-base);
  font-feature-settings: "palt";
  line-height: var(--lineheight-base);
  text-align: left;
  position: relative;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ol,
ul,
dl {
  list-style-type: none;
  margin: 0;
  padding-left: 0;
}

b,
strong {
  font-weight: 700;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

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

table {
  border-collapse: collapse;
}

th {
  font-weight: 400;
  text-align: inherit;
  text-align: -webkit-match-parent;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

textarea {
  overflow: auto;
  resize: vertical;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

[hidden] {
  display: none !important;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

.alignleft {
  text-align: left;
}

.vertical-base {
  vertical-align: baseline;
}

img.aligncenter {
  display: block;
  margin: auto;
}
img.alignright {
  display: block;
  margin-left: auto;
}
img.alignleft {
  display: block;
  margin-right: auto;
}

.flex-column {
  display: flex !important;
  flex-direction: column !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 20px 20px #fff;
}

.inner {
  margin: auto;
  max-width: calc(100rem + var(--gutter) * 2);
  padding-inline: var(--gutter);
  width: 100%;
}

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

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

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

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
}
@media (min-width: 1000px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
}
@media (min-width: 1366px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
}
@media (min-width: 1366px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
}
.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-5 {
  margin: 0.5rem !important;
}

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

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

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

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

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

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

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

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

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

.m-15 {
  margin: 1.5rem !important;
}

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

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

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

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

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

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

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

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

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

.m-25 {
  margin: 2.5rem !important;
}

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

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

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

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

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

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

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

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

.ml-30,
.mx-30 {
  margin-left: 3rem !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-5 {
  padding: 0.5rem !important;
}

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

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

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

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

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

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

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

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

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

.p-15 {
  padding: 1.5rem !important;
}

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

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

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

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

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

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

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

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

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

.p-25 {
  padding: 2.5rem !important;
}

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

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

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

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

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

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

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

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

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

.m-n5 {
  margin: -0.5rem !important;
}

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

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

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

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

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

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

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

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

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

.m-n15 {
  margin: -1.5rem !important;
}

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

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

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

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

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

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

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

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

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

.m-n25 {
  margin: -2.5rem !important;
}

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

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

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

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

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

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

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

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

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

.m-auto {
  margin: auto !important;
}

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

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

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

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

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-5 {
    margin: 0.5rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 0.5rem !important;
  }
  .m-sm-10 {
    margin: 1rem !important;
  }
  .mt-sm-10,
  .my-sm-10 {
    margin-top: 1rem !important;
  }
  .mr-sm-10,
  .mx-sm-10 {
    margin-right: 1rem !important;
  }
  .mb-sm-10,
  .my-sm-10 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-10,
  .mx-sm-10 {
    margin-left: 1rem !important;
  }
  .m-sm-15 {
    margin: 1.5rem !important;
  }
  .mt-sm-15,
  .my-sm-15 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-15,
  .mx-sm-15 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-15,
  .my-sm-15 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-15,
  .mx-sm-15 {
    margin-left: 1.5rem !important;
  }
  .m-sm-20 {
    margin: 2rem !important;
  }
  .mt-sm-20,
  .my-sm-20 {
    margin-top: 2rem !important;
  }
  .mr-sm-20,
  .mx-sm-20 {
    margin-right: 2rem !important;
  }
  .mb-sm-20,
  .my-sm-20 {
    margin-bottom: 2rem !important;
  }
  .ml-sm-20,
  .mx-sm-20 {
    margin-left: 2rem !important;
  }
  .m-sm-25 {
    margin: 2.5rem !important;
  }
  .mt-sm-25,
  .my-sm-25 {
    margin-top: 2.5rem !important;
  }
  .mr-sm-25,
  .mx-sm-25 {
    margin-right: 2.5rem !important;
  }
  .mb-sm-25,
  .my-sm-25 {
    margin-bottom: 2.5rem !important;
  }
  .ml-sm-25,
  .mx-sm-25 {
    margin-left: 2.5rem !important;
  }
  .m-sm-30 {
    margin: 3rem !important;
  }
  .mt-sm-30,
  .my-sm-30 {
    margin-top: 3rem !important;
  }
  .mr-sm-30,
  .mx-sm-30 {
    margin-right: 3rem !important;
  }
  .mb-sm-30,
  .my-sm-30 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-30,
  .mx-sm-30 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-5 {
    padding: 0.5rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 0.5rem !important;
  }
  .p-sm-10 {
    padding: 1rem !important;
  }
  .pt-sm-10,
  .py-sm-10 {
    padding-top: 1rem !important;
  }
  .pr-sm-10,
  .px-sm-10 {
    padding-right: 1rem !important;
  }
  .pb-sm-10,
  .py-sm-10 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-10,
  .px-sm-10 {
    padding-left: 1rem !important;
  }
  .p-sm-15 {
    padding: 1.5rem !important;
  }
  .pt-sm-15,
  .py-sm-15 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-15,
  .px-sm-15 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-15,
  .py-sm-15 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-15,
  .px-sm-15 {
    padding-left: 1.5rem !important;
  }
  .p-sm-20 {
    padding: 2rem !important;
  }
  .pt-sm-20,
  .py-sm-20 {
    padding-top: 2rem !important;
  }
  .pr-sm-20,
  .px-sm-20 {
    padding-right: 2rem !important;
  }
  .pb-sm-20,
  .py-sm-20 {
    padding-bottom: 2rem !important;
  }
  .pl-sm-20,
  .px-sm-20 {
    padding-left: 2rem !important;
  }
  .p-sm-25 {
    padding: 2.5rem !important;
  }
  .pt-sm-25,
  .py-sm-25 {
    padding-top: 2.5rem !important;
  }
  .pr-sm-25,
  .px-sm-25 {
    padding-right: 2.5rem !important;
  }
  .pb-sm-25,
  .py-sm-25 {
    padding-bottom: 2.5rem !important;
  }
  .pl-sm-25,
  .px-sm-25 {
    padding-left: 2.5rem !important;
  }
  .p-sm-30 {
    padding: 3rem !important;
  }
  .pt-sm-30,
  .py-sm-30 {
    padding-top: 3rem !important;
  }
  .pr-sm-30,
  .px-sm-30 {
    padding-right: 3rem !important;
  }
  .pb-sm-30,
  .py-sm-30 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-30,
  .px-sm-30 {
    padding-left: 3rem !important;
  }
  .m-sm-n5 {
    margin: -0.5rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n10 {
    margin: -1rem !important;
  }
  .mt-sm-n10,
  .my-sm-n10 {
    margin-top: -1rem !important;
  }
  .mr-sm-n10,
  .mx-sm-n10 {
    margin-right: -1rem !important;
  }
  .mb-sm-n10,
  .my-sm-n10 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n10,
  .mx-sm-n10 {
    margin-left: -1rem !important;
  }
  .m-sm-n15 {
    margin: -1.5rem !important;
  }
  .mt-sm-n15,
  .my-sm-n15 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n15,
  .mx-sm-n15 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n15,
  .my-sm-n15 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n15,
  .mx-sm-n15 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n20 {
    margin: -2rem !important;
  }
  .mt-sm-n20,
  .my-sm-n20 {
    margin-top: -2rem !important;
  }
  .mr-sm-n20,
  .mx-sm-n20 {
    margin-right: -2rem !important;
  }
  .mb-sm-n20,
  .my-sm-n20 {
    margin-bottom: -2rem !important;
  }
  .ml-sm-n20,
  .mx-sm-n20 {
    margin-left: -2rem !important;
  }
  .m-sm-n25 {
    margin: -2.5rem !important;
  }
  .mt-sm-n25,
  .my-sm-n25 {
    margin-top: -2.5rem !important;
  }
  .mr-sm-n25,
  .mx-sm-n25 {
    margin-right: -2.5rem !important;
  }
  .mb-sm-n25,
  .my-sm-n25 {
    margin-bottom: -2.5rem !important;
  }
  .ml-sm-n25,
  .mx-sm-n25 {
    margin-left: -2.5rem !important;
  }
  .m-sm-n30 {
    margin: -3rem !important;
  }
  .mt-sm-n30,
  .my-sm-n30 {
    margin-top: -3rem !important;
  }
  .mr-sm-n30,
  .mx-sm-n30 {
    margin-right: -3rem !important;
  }
  .mb-sm-n30,
  .my-sm-n30 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n30,
  .mx-sm-n30 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-5 {
    margin: 0.5rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 0.5rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 0.5rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 0.5rem !important;
  }
  .m-md-10 {
    margin: 1rem !important;
  }
  .mt-md-10,
  .my-md-10 {
    margin-top: 1rem !important;
  }
  .mr-md-10,
  .mx-md-10 {
    margin-right: 1rem !important;
  }
  .mb-md-10,
  .my-md-10 {
    margin-bottom: 1rem !important;
  }
  .ml-md-10,
  .mx-md-10 {
    margin-left: 1rem !important;
  }
  .m-md-15 {
    margin: 1.5rem !important;
  }
  .mt-md-15,
  .my-md-15 {
    margin-top: 1.5rem !important;
  }
  .mr-md-15,
  .mx-md-15 {
    margin-right: 1.5rem !important;
  }
  .mb-md-15,
  .my-md-15 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-15,
  .mx-md-15 {
    margin-left: 1.5rem !important;
  }
  .m-md-20 {
    margin: 2rem !important;
  }
  .mt-md-20,
  .my-md-20 {
    margin-top: 2rem !important;
  }
  .mr-md-20,
  .mx-md-20 {
    margin-right: 2rem !important;
  }
  .mb-md-20,
  .my-md-20 {
    margin-bottom: 2rem !important;
  }
  .ml-md-20,
  .mx-md-20 {
    margin-left: 2rem !important;
  }
  .m-md-25 {
    margin: 2.5rem !important;
  }
  .mt-md-25,
  .my-md-25 {
    margin-top: 2.5rem !important;
  }
  .mr-md-25,
  .mx-md-25 {
    margin-right: 2.5rem !important;
  }
  .mb-md-25,
  .my-md-25 {
    margin-bottom: 2.5rem !important;
  }
  .ml-md-25,
  .mx-md-25 {
    margin-left: 2.5rem !important;
  }
  .m-md-30 {
    margin: 3rem !important;
  }
  .mt-md-30,
  .my-md-30 {
    margin-top: 3rem !important;
  }
  .mr-md-30,
  .mx-md-30 {
    margin-right: 3rem !important;
  }
  .mb-md-30,
  .my-md-30 {
    margin-bottom: 3rem !important;
  }
  .ml-md-30,
  .mx-md-30 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-5 {
    padding: 0.5rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 0.5rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 0.5rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 0.5rem !important;
  }
  .p-md-10 {
    padding: 1rem !important;
  }
  .pt-md-10,
  .py-md-10 {
    padding-top: 1rem !important;
  }
  .pr-md-10,
  .px-md-10 {
    padding-right: 1rem !important;
  }
  .pb-md-10,
  .py-md-10 {
    padding-bottom: 1rem !important;
  }
  .pl-md-10,
  .px-md-10 {
    padding-left: 1rem !important;
  }
  .p-md-15 {
    padding: 1.5rem !important;
  }
  .pt-md-15,
  .py-md-15 {
    padding-top: 1.5rem !important;
  }
  .pr-md-15,
  .px-md-15 {
    padding-right: 1.5rem !important;
  }
  .pb-md-15,
  .py-md-15 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-15,
  .px-md-15 {
    padding-left: 1.5rem !important;
  }
  .p-md-20 {
    padding: 2rem !important;
  }
  .pt-md-20,
  .py-md-20 {
    padding-top: 2rem !important;
  }
  .pr-md-20,
  .px-md-20 {
    padding-right: 2rem !important;
  }
  .pb-md-20,
  .py-md-20 {
    padding-bottom: 2rem !important;
  }
  .pl-md-20,
  .px-md-20 {
    padding-left: 2rem !important;
  }
  .p-md-25 {
    padding: 2.5rem !important;
  }
  .pt-md-25,
  .py-md-25 {
    padding-top: 2.5rem !important;
  }
  .pr-md-25,
  .px-md-25 {
    padding-right: 2.5rem !important;
  }
  .pb-md-25,
  .py-md-25 {
    padding-bottom: 2.5rem !important;
  }
  .pl-md-25,
  .px-md-25 {
    padding-left: 2.5rem !important;
  }
  .p-md-30 {
    padding: 3rem !important;
  }
  .pt-md-30,
  .py-md-30 {
    padding-top: 3rem !important;
  }
  .pr-md-30,
  .px-md-30 {
    padding-right: 3rem !important;
  }
  .pb-md-30,
  .py-md-30 {
    padding-bottom: 3rem !important;
  }
  .pl-md-30,
  .px-md-30 {
    padding-left: 3rem !important;
  }
  .m-md-n5 {
    margin: -0.5rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -0.5rem !important;
  }
  .m-md-n10 {
    margin: -1rem !important;
  }
  .mt-md-n10,
  .my-md-n10 {
    margin-top: -1rem !important;
  }
  .mr-md-n10,
  .mx-md-n10 {
    margin-right: -1rem !important;
  }
  .mb-md-n10,
  .my-md-n10 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n10,
  .mx-md-n10 {
    margin-left: -1rem !important;
  }
  .m-md-n15 {
    margin: -1.5rem !important;
  }
  .mt-md-n15,
  .my-md-n15 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n15,
  .mx-md-n15 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n15,
  .my-md-n15 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n15,
  .mx-md-n15 {
    margin-left: -1.5rem !important;
  }
  .m-md-n20 {
    margin: -2rem !important;
  }
  .mt-md-n20,
  .my-md-n20 {
    margin-top: -2rem !important;
  }
  .mr-md-n20,
  .mx-md-n20 {
    margin-right: -2rem !important;
  }
  .mb-md-n20,
  .my-md-n20 {
    margin-bottom: -2rem !important;
  }
  .ml-md-n20,
  .mx-md-n20 {
    margin-left: -2rem !important;
  }
  .m-md-n25 {
    margin: -2.5rem !important;
  }
  .mt-md-n25,
  .my-md-n25 {
    margin-top: -2.5rem !important;
  }
  .mr-md-n25,
  .mx-md-n25 {
    margin-right: -2.5rem !important;
  }
  .mb-md-n25,
  .my-md-n25 {
    margin-bottom: -2.5rem !important;
  }
  .ml-md-n25,
  .mx-md-n25 {
    margin-left: -2.5rem !important;
  }
  .m-md-n30 {
    margin: -3rem !important;
  }
  .mt-md-n30,
  .my-md-n30 {
    margin-top: -3rem !important;
  }
  .mr-md-n30,
  .mx-md-n30 {
    margin-right: -3rem !important;
  }
  .mb-md-n30,
  .my-md-n30 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n30,
  .mx-md-n30 {
    margin-left: -3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1000px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-5 {
    margin: 0.5rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 0.5rem !important;
  }
  .m-lg-10 {
    margin: 1rem !important;
  }
  .mt-lg-10,
  .my-lg-10 {
    margin-top: 1rem !important;
  }
  .mr-lg-10,
  .mx-lg-10 {
    margin-right: 1rem !important;
  }
  .mb-lg-10,
  .my-lg-10 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-10,
  .mx-lg-10 {
    margin-left: 1rem !important;
  }
  .m-lg-15 {
    margin: 1.5rem !important;
  }
  .mt-lg-15,
  .my-lg-15 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-15,
  .mx-lg-15 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-15,
  .my-lg-15 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-15,
  .mx-lg-15 {
    margin-left: 1.5rem !important;
  }
  .m-lg-20 {
    margin: 2rem !important;
  }
  .mt-lg-20,
  .my-lg-20 {
    margin-top: 2rem !important;
  }
  .mr-lg-20,
  .mx-lg-20 {
    margin-right: 2rem !important;
  }
  .mb-lg-20,
  .my-lg-20 {
    margin-bottom: 2rem !important;
  }
  .ml-lg-20,
  .mx-lg-20 {
    margin-left: 2rem !important;
  }
  .m-lg-25 {
    margin: 2.5rem !important;
  }
  .mt-lg-25,
  .my-lg-25 {
    margin-top: 2.5rem !important;
  }
  .mr-lg-25,
  .mx-lg-25 {
    margin-right: 2.5rem !important;
  }
  .mb-lg-25,
  .my-lg-25 {
    margin-bottom: 2.5rem !important;
  }
  .ml-lg-25,
  .mx-lg-25 {
    margin-left: 2.5rem !important;
  }
  .m-lg-30 {
    margin: 3rem !important;
  }
  .mt-lg-30,
  .my-lg-30 {
    margin-top: 3rem !important;
  }
  .mr-lg-30,
  .mx-lg-30 {
    margin-right: 3rem !important;
  }
  .mb-lg-30,
  .my-lg-30 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-30,
  .mx-lg-30 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-5 {
    padding: 0.5rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 0.5rem !important;
  }
  .p-lg-10 {
    padding: 1rem !important;
  }
  .pt-lg-10,
  .py-lg-10 {
    padding-top: 1rem !important;
  }
  .pr-lg-10,
  .px-lg-10 {
    padding-right: 1rem !important;
  }
  .pb-lg-10,
  .py-lg-10 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-10,
  .px-lg-10 {
    padding-left: 1rem !important;
  }
  .p-lg-15 {
    padding: 1.5rem !important;
  }
  .pt-lg-15,
  .py-lg-15 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-15,
  .px-lg-15 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-15,
  .py-lg-15 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-15,
  .px-lg-15 {
    padding-left: 1.5rem !important;
  }
  .p-lg-20 {
    padding: 2rem !important;
  }
  .pt-lg-20,
  .py-lg-20 {
    padding-top: 2rem !important;
  }
  .pr-lg-20,
  .px-lg-20 {
    padding-right: 2rem !important;
  }
  .pb-lg-20,
  .py-lg-20 {
    padding-bottom: 2rem !important;
  }
  .pl-lg-20,
  .px-lg-20 {
    padding-left: 2rem !important;
  }
  .p-lg-25 {
    padding: 2.5rem !important;
  }
  .pt-lg-25,
  .py-lg-25 {
    padding-top: 2.5rem !important;
  }
  .pr-lg-25,
  .px-lg-25 {
    padding-right: 2.5rem !important;
  }
  .pb-lg-25,
  .py-lg-25 {
    padding-bottom: 2.5rem !important;
  }
  .pl-lg-25,
  .px-lg-25 {
    padding-left: 2.5rem !important;
  }
  .p-lg-30 {
    padding: 3rem !important;
  }
  .pt-lg-30,
  .py-lg-30 {
    padding-top: 3rem !important;
  }
  .pr-lg-30,
  .px-lg-30 {
    padding-right: 3rem !important;
  }
  .pb-lg-30,
  .py-lg-30 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-30,
  .px-lg-30 {
    padding-left: 3rem !important;
  }
  .m-lg-n5 {
    margin: -0.5rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n10 {
    margin: -1rem !important;
  }
  .mt-lg-n10,
  .my-lg-n10 {
    margin-top: -1rem !important;
  }
  .mr-lg-n10,
  .mx-lg-n10 {
    margin-right: -1rem !important;
  }
  .mb-lg-n10,
  .my-lg-n10 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n10,
  .mx-lg-n10 {
    margin-left: -1rem !important;
  }
  .m-lg-n15 {
    margin: -1.5rem !important;
  }
  .mt-lg-n15,
  .my-lg-n15 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n15,
  .mx-lg-n15 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n15,
  .my-lg-n15 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n15,
  .mx-lg-n15 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n20 {
    margin: -2rem !important;
  }
  .mt-lg-n20,
  .my-lg-n20 {
    margin-top: -2rem !important;
  }
  .mr-lg-n20,
  .mx-lg-n20 {
    margin-right: -2rem !important;
  }
  .mb-lg-n20,
  .my-lg-n20 {
    margin-bottom: -2rem !important;
  }
  .ml-lg-n20,
  .mx-lg-n20 {
    margin-left: -2rem !important;
  }
  .m-lg-n25 {
    margin: -2.5rem !important;
  }
  .mt-lg-n25,
  .my-lg-n25 {
    margin-top: -2.5rem !important;
  }
  .mr-lg-n25,
  .mx-lg-n25 {
    margin-right: -2.5rem !important;
  }
  .mb-lg-n25,
  .my-lg-n25 {
    margin-bottom: -2.5rem !important;
  }
  .ml-lg-n25,
  .mx-lg-n25 {
    margin-left: -2.5rem !important;
  }
  .m-lg-n30 {
    margin: -3rem !important;
  }
  .mt-lg-n30,
  .my-lg-n30 {
    margin-top: -3rem !important;
  }
  .mr-lg-n30,
  .mx-lg-n30 {
    margin-right: -3rem !important;
  }
  .mb-lg-n30,
  .my-lg-n30 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n30,
  .mx-lg-n30 {
    margin-left: -3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1366px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-5 {
    margin: 0.5rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 0.5rem !important;
  }
  .m-xl-10 {
    margin: 1rem !important;
  }
  .mt-xl-10,
  .my-xl-10 {
    margin-top: 1rem !important;
  }
  .mr-xl-10,
  .mx-xl-10 {
    margin-right: 1rem !important;
  }
  .mb-xl-10,
  .my-xl-10 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-10,
  .mx-xl-10 {
    margin-left: 1rem !important;
  }
  .m-xl-15 {
    margin: 1.5rem !important;
  }
  .mt-xl-15,
  .my-xl-15 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-15,
  .mx-xl-15 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-15,
  .my-xl-15 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-15,
  .mx-xl-15 {
    margin-left: 1.5rem !important;
  }
  .m-xl-20 {
    margin: 2rem !important;
  }
  .mt-xl-20,
  .my-xl-20 {
    margin-top: 2rem !important;
  }
  .mr-xl-20,
  .mx-xl-20 {
    margin-right: 2rem !important;
  }
  .mb-xl-20,
  .my-xl-20 {
    margin-bottom: 2rem !important;
  }
  .ml-xl-20,
  .mx-xl-20 {
    margin-left: 2rem !important;
  }
  .m-xl-25 {
    margin: 2.5rem !important;
  }
  .mt-xl-25,
  .my-xl-25 {
    margin-top: 2.5rem !important;
  }
  .mr-xl-25,
  .mx-xl-25 {
    margin-right: 2.5rem !important;
  }
  .mb-xl-25,
  .my-xl-25 {
    margin-bottom: 2.5rem !important;
  }
  .ml-xl-25,
  .mx-xl-25 {
    margin-left: 2.5rem !important;
  }
  .m-xl-30 {
    margin: 3rem !important;
  }
  .mt-xl-30,
  .my-xl-30 {
    margin-top: 3rem !important;
  }
  .mr-xl-30,
  .mx-xl-30 {
    margin-right: 3rem !important;
  }
  .mb-xl-30,
  .my-xl-30 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-30,
  .mx-xl-30 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-5 {
    padding: 0.5rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 0.5rem !important;
  }
  .p-xl-10 {
    padding: 1rem !important;
  }
  .pt-xl-10,
  .py-xl-10 {
    padding-top: 1rem !important;
  }
  .pr-xl-10,
  .px-xl-10 {
    padding-right: 1rem !important;
  }
  .pb-xl-10,
  .py-xl-10 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-10,
  .px-xl-10 {
    padding-left: 1rem !important;
  }
  .p-xl-15 {
    padding: 1.5rem !important;
  }
  .pt-xl-15,
  .py-xl-15 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-15,
  .px-xl-15 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-15,
  .py-xl-15 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-15,
  .px-xl-15 {
    padding-left: 1.5rem !important;
  }
  .p-xl-20 {
    padding: 2rem !important;
  }
  .pt-xl-20,
  .py-xl-20 {
    padding-top: 2rem !important;
  }
  .pr-xl-20,
  .px-xl-20 {
    padding-right: 2rem !important;
  }
  .pb-xl-20,
  .py-xl-20 {
    padding-bottom: 2rem !important;
  }
  .pl-xl-20,
  .px-xl-20 {
    padding-left: 2rem !important;
  }
  .p-xl-25 {
    padding: 2.5rem !important;
  }
  .pt-xl-25,
  .py-xl-25 {
    padding-top: 2.5rem !important;
  }
  .pr-xl-25,
  .px-xl-25 {
    padding-right: 2.5rem !important;
  }
  .pb-xl-25,
  .py-xl-25 {
    padding-bottom: 2.5rem !important;
  }
  .pl-xl-25,
  .px-xl-25 {
    padding-left: 2.5rem !important;
  }
  .p-xl-30 {
    padding: 3rem !important;
  }
  .pt-xl-30,
  .py-xl-30 {
    padding-top: 3rem !important;
  }
  .pr-xl-30,
  .px-xl-30 {
    padding-right: 3rem !important;
  }
  .pb-xl-30,
  .py-xl-30 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-30,
  .px-xl-30 {
    padding-left: 3rem !important;
  }
  .m-xl-n5 {
    margin: -0.5rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n10 {
    margin: -1rem !important;
  }
  .mt-xl-n10,
  .my-xl-n10 {
    margin-top: -1rem !important;
  }
  .mr-xl-n10,
  .mx-xl-n10 {
    margin-right: -1rem !important;
  }
  .mb-xl-n10,
  .my-xl-n10 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n10,
  .mx-xl-n10 {
    margin-left: -1rem !important;
  }
  .m-xl-n15 {
    margin: -1.5rem !important;
  }
  .mt-xl-n15,
  .my-xl-n15 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n15,
  .mx-xl-n15 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n15,
  .my-xl-n15 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n15,
  .mx-xl-n15 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n20 {
    margin: -2rem !important;
  }
  .mt-xl-n20,
  .my-xl-n20 {
    margin-top: -2rem !important;
  }
  .mr-xl-n20,
  .mx-xl-n20 {
    margin-right: -2rem !important;
  }
  .mb-xl-n20,
  .my-xl-n20 {
    margin-bottom: -2rem !important;
  }
  .ml-xl-n20,
  .mx-xl-n20 {
    margin-left: -2rem !important;
  }
  .m-xl-n25 {
    margin: -2.5rem !important;
  }
  .mt-xl-n25,
  .my-xl-n25 {
    margin-top: -2.5rem !important;
  }
  .mr-xl-n25,
  .mx-xl-n25 {
    margin-right: -2.5rem !important;
  }
  .mb-xl-n25,
  .my-xl-n25 {
    margin-bottom: -2.5rem !important;
  }
  .ml-xl-n25,
  .mx-xl-n25 {
    margin-left: -2.5rem !important;
  }
  .m-xl-n30 {
    margin: -3rem !important;
  }
  .mt-xl-n30,
  .my-xl-n30 {
    margin-top: -3rem !important;
  }
  .mr-xl-n30,
  .mx-xl-n30 {
    margin-right: -3rem !important;
  }
  .mb-xl-n30,
  .my-xl-n30 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n30,
  .mx-xl-n30 {
    margin-left: -3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1366px) {
  .m-xxl-0 {
    margin: 0 !important;
  }
  .mt-xxl-0,
  .my-xxl-0 {
    margin-top: 0 !important;
  }
  .mr-xxl-0,
  .mx-xxl-0 {
    margin-right: 0 !important;
  }
  .mb-xxl-0,
  .my-xxl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xxl-0,
  .mx-xxl-0 {
    margin-left: 0 !important;
  }
  .m-xxl-5 {
    margin: 0.5rem !important;
  }
  .mt-xxl-5,
  .my-xxl-5 {
    margin-top: 0.5rem !important;
  }
  .mr-xxl-5,
  .mx-xxl-5 {
    margin-right: 0.5rem !important;
  }
  .mb-xxl-5,
  .my-xxl-5 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xxl-5,
  .mx-xxl-5 {
    margin-left: 0.5rem !important;
  }
  .m-xxl-10 {
    margin: 1rem !important;
  }
  .mt-xxl-10,
  .my-xxl-10 {
    margin-top: 1rem !important;
  }
  .mr-xxl-10,
  .mx-xxl-10 {
    margin-right: 1rem !important;
  }
  .mb-xxl-10,
  .my-xxl-10 {
    margin-bottom: 1rem !important;
  }
  .ml-xxl-10,
  .mx-xxl-10 {
    margin-left: 1rem !important;
  }
  .m-xxl-15 {
    margin: 1.5rem !important;
  }
  .mt-xxl-15,
  .my-xxl-15 {
    margin-top: 1.5rem !important;
  }
  .mr-xxl-15,
  .mx-xxl-15 {
    margin-right: 1.5rem !important;
  }
  .mb-xxl-15,
  .my-xxl-15 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xxl-15,
  .mx-xxl-15 {
    margin-left: 1.5rem !important;
  }
  .m-xxl-20 {
    margin: 2rem !important;
  }
  .mt-xxl-20,
  .my-xxl-20 {
    margin-top: 2rem !important;
  }
  .mr-xxl-20,
  .mx-xxl-20 {
    margin-right: 2rem !important;
  }
  .mb-xxl-20,
  .my-xxl-20 {
    margin-bottom: 2rem !important;
  }
  .ml-xxl-20,
  .mx-xxl-20 {
    margin-left: 2rem !important;
  }
  .m-xxl-25 {
    margin: 2.5rem !important;
  }
  .mt-xxl-25,
  .my-xxl-25 {
    margin-top: 2.5rem !important;
  }
  .mr-xxl-25,
  .mx-xxl-25 {
    margin-right: 2.5rem !important;
  }
  .mb-xxl-25,
  .my-xxl-25 {
    margin-bottom: 2.5rem !important;
  }
  .ml-xxl-25,
  .mx-xxl-25 {
    margin-left: 2.5rem !important;
  }
  .m-xxl-30 {
    margin: 3rem !important;
  }
  .mt-xxl-30,
  .my-xxl-30 {
    margin-top: 3rem !important;
  }
  .mr-xxl-30,
  .mx-xxl-30 {
    margin-right: 3rem !important;
  }
  .mb-xxl-30,
  .my-xxl-30 {
    margin-bottom: 3rem !important;
  }
  .ml-xxl-30,
  .mx-xxl-30 {
    margin-left: 3rem !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .pt-xxl-0,
  .py-xxl-0 {
    padding-top: 0 !important;
  }
  .pr-xxl-0,
  .px-xxl-0 {
    padding-right: 0 !important;
  }
  .pb-xxl-0,
  .py-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xxl-0,
  .px-xxl-0 {
    padding-left: 0 !important;
  }
  .p-xxl-5 {
    padding: 0.5rem !important;
  }
  .pt-xxl-5,
  .py-xxl-5 {
    padding-top: 0.5rem !important;
  }
  .pr-xxl-5,
  .px-xxl-5 {
    padding-right: 0.5rem !important;
  }
  .pb-xxl-5,
  .py-xxl-5 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xxl-5,
  .px-xxl-5 {
    padding-left: 0.5rem !important;
  }
  .p-xxl-10 {
    padding: 1rem !important;
  }
  .pt-xxl-10,
  .py-xxl-10 {
    padding-top: 1rem !important;
  }
  .pr-xxl-10,
  .px-xxl-10 {
    padding-right: 1rem !important;
  }
  .pb-xxl-10,
  .py-xxl-10 {
    padding-bottom: 1rem !important;
  }
  .pl-xxl-10,
  .px-xxl-10 {
    padding-left: 1rem !important;
  }
  .p-xxl-15 {
    padding: 1.5rem !important;
  }
  .pt-xxl-15,
  .py-xxl-15 {
    padding-top: 1.5rem !important;
  }
  .pr-xxl-15,
  .px-xxl-15 {
    padding-right: 1.5rem !important;
  }
  .pb-xxl-15,
  .py-xxl-15 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xxl-15,
  .px-xxl-15 {
    padding-left: 1.5rem !important;
  }
  .p-xxl-20 {
    padding: 2rem !important;
  }
  .pt-xxl-20,
  .py-xxl-20 {
    padding-top: 2rem !important;
  }
  .pr-xxl-20,
  .px-xxl-20 {
    padding-right: 2rem !important;
  }
  .pb-xxl-20,
  .py-xxl-20 {
    padding-bottom: 2rem !important;
  }
  .pl-xxl-20,
  .px-xxl-20 {
    padding-left: 2rem !important;
  }
  .p-xxl-25 {
    padding: 2.5rem !important;
  }
  .pt-xxl-25,
  .py-xxl-25 {
    padding-top: 2.5rem !important;
  }
  .pr-xxl-25,
  .px-xxl-25 {
    padding-right: 2.5rem !important;
  }
  .pb-xxl-25,
  .py-xxl-25 {
    padding-bottom: 2.5rem !important;
  }
  .pl-xxl-25,
  .px-xxl-25 {
    padding-left: 2.5rem !important;
  }
  .p-xxl-30 {
    padding: 3rem !important;
  }
  .pt-xxl-30,
  .py-xxl-30 {
    padding-top: 3rem !important;
  }
  .pr-xxl-30,
  .px-xxl-30 {
    padding-right: 3rem !important;
  }
  .pb-xxl-30,
  .py-xxl-30 {
    padding-bottom: 3rem !important;
  }
  .pl-xxl-30,
  .px-xxl-30 {
    padding-left: 3rem !important;
  }
  .m-xxl-n5 {
    margin: -0.5rem !important;
  }
  .mt-xxl-n5,
  .my-xxl-n5 {
    margin-top: -0.5rem !important;
  }
  .mr-xxl-n5,
  .mx-xxl-n5 {
    margin-right: -0.5rem !important;
  }
  .mb-xxl-n5,
  .my-xxl-n5 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xxl-n5,
  .mx-xxl-n5 {
    margin-left: -0.5rem !important;
  }
  .m-xxl-n10 {
    margin: -1rem !important;
  }
  .mt-xxl-n10,
  .my-xxl-n10 {
    margin-top: -1rem !important;
  }
  .mr-xxl-n10,
  .mx-xxl-n10 {
    margin-right: -1rem !important;
  }
  .mb-xxl-n10,
  .my-xxl-n10 {
    margin-bottom: -1rem !important;
  }
  .ml-xxl-n10,
  .mx-xxl-n10 {
    margin-left: -1rem !important;
  }
  .m-xxl-n15 {
    margin: -1.5rem !important;
  }
  .mt-xxl-n15,
  .my-xxl-n15 {
    margin-top: -1.5rem !important;
  }
  .mr-xxl-n15,
  .mx-xxl-n15 {
    margin-right: -1.5rem !important;
  }
  .mb-xxl-n15,
  .my-xxl-n15 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xxl-n15,
  .mx-xxl-n15 {
    margin-left: -1.5rem !important;
  }
  .m-xxl-n20 {
    margin: -2rem !important;
  }
  .mt-xxl-n20,
  .my-xxl-n20 {
    margin-top: -2rem !important;
  }
  .mr-xxl-n20,
  .mx-xxl-n20 {
    margin-right: -2rem !important;
  }
  .mb-xxl-n20,
  .my-xxl-n20 {
    margin-bottom: -2rem !important;
  }
  .ml-xxl-n20,
  .mx-xxl-n20 {
    margin-left: -2rem !important;
  }
  .m-xxl-n25 {
    margin: -2.5rem !important;
  }
  .mt-xxl-n25,
  .my-xxl-n25 {
    margin-top: -2.5rem !important;
  }
  .mr-xxl-n25,
  .mx-xxl-n25 {
    margin-right: -2.5rem !important;
  }
  .mb-xxl-n25,
  .my-xxl-n25 {
    margin-bottom: -2.5rem !important;
  }
  .ml-xxl-n25,
  .mx-xxl-n25 {
    margin-left: -2.5rem !important;
  }
  .m-xxl-n30 {
    margin: -3rem !important;
  }
  .mt-xxl-n30,
  .my-xxl-n30 {
    margin-top: -3rem !important;
  }
  .mr-xxl-n30,
  .mx-xxl-n30 {
    margin-right: -3rem !important;
  }
  .mb-xxl-n30,
  .my-xxl-n30 {
    margin-bottom: -3rem !important;
  }
  .ml-xxl-n30,
  .mx-xxl-n30 {
    margin-left: -3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mt-xxl-auto,
  .my-xxl-auto {
    margin-top: auto !important;
  }
  .mr-xxl-auto,
  .mx-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-auto,
  .my-xxl-auto {
    margin-bottom: auto !important;
  }
  .ml-xxl-auto,
  .mx-xxl-auto {
    margin-left: auto !important;
  }
}
.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

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

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

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

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 1000px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1366px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1366px) {
  .text-xxl-left {
    text-align: left !important;
  }
  .text-xxl-right {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-underline {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .c-right-pc {
    text-align: right;
  }
}

@media (max-width: 767px) {
  .c-center-sp {
    text-align: center;
  }
}

.c-breadcrumb {
  --breadcrumb-color-link: var(--color-primary);
  --breadcrumb-size: 1.6rem 0 1.6rem 0.8rem;
  margin-block: 2.4rem 4rem;
}
@media (min-width: 768px) {
  .c-breadcrumb {
    --breadcrumb-size: 1.2rem 0 1.2rem 0.8rem;
  }
}
.c-breadcrumb ul {
  display: flex;
  gap: 0.6rem;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .c-breadcrumb ul {
    font-size: 1.1rem;
  }
}
.c-breadcrumb ul li {
  flex-shrink: 0;
  height: 3.2rem;
}
@media (min-width: 768px) {
  .c-breadcrumb ul li {
    height: 2.4rem;
  }
}
.c-breadcrumb ul li:nth-child(n+2) a {
  padding-left: 2.2rem;
}
.c-breadcrumb ul li:nth-child(n+2) a::before {
  content: "";
  border-width: var(--breadcrumb-size);
  border-color: transparent transparent transparent var(--color-secondary);
  border-style: solid;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.c-breadcrumb ul li:last-child {
  background-color: #fff;
  display: flex;
  align-items: center;
  flex-shrink: inherit;
  padding-inline: 2.2rem 1.6rem;
  position: relative;
}
.c-breadcrumb ul li:last-child::before {
  content: "";
  border-width: var(--breadcrumb-size);
  border-color: transparent transparent transparent var(--color-secondary);
  border-style: solid;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.c-breadcrumb ul a, .c-breadcrumb ul span {
  display: flex;
  align-items: center;
  position: relative;
  padding-bottom: 0.2rem;
}
.c-breadcrumb ul a {
  background-color: var(--breadcrumb-color-link);
  color: #fff;
  height: 100%;
  padding-inline: 1.1rem 1.5rem;
  transition: 0.3s ease;
}
.c-breadcrumb ul a:hover {
  --breadcrumb-color-link: var(--color-hover);
}
.c-breadcrumb ul a::after {
  content: "";
  border-width: var(--breadcrumb-size);
  border-color: transparent transparent transparent var(--breadcrumb-color-link);
  border-style: solid;
  transition: 0.3s ease;
  position: absolute;
  left: 100%;
  top: 0;
  z-index: 1;
}
.c-breadcrumb ul span {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #1E1E1E;
  text-decoration: none;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
}
.btn:focus, .btn.focus {
  outline: 0;
}
.btn.disabled, .btn:disabled {
  opacity: 0.6;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn-primary {
  background-color: #f19824;
  border-radius: 5rem;
  color: #fff;
  display: flex;
  gap: 1.4rem;
  font-size: var(--btn-font-size, 2.6rem);
  font-weight: var(--btn-font-weight, 500);
  letter-spacing: 0.16em;
  height: var(--btn-height, 6.4rem);
  width: var(--btn-width, 23.9rem);
  transition: 0.2s ease;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .btn-primary {
    font-size: var(--btn-font-size, 1.8rem);
    gap: 1rem;
    height: var(--btn-height, 4.8rem);
    width: var(--btn-width, 19.2rem);
  }
}
.btn-primary::after {
  content: "";
  border-radius: 12rem;
  border: 0.2rem solid #fff;
  position: absolute;
  inset: 0.2rem;
  z-index: -1;
}
@media (min-width: 768px) {
  .btn-primary::after {
    border-width: 0.2rem;
    inset: 0.2rem;
  }
}
.btn-primary:not(.disabled):hover {
  opacity: 0.7;
}
.btn-primary .icon-mail {
  background: #fff url("../images/common/icon_mail.svg") no-repeat center/2.4rem;
  border-radius: 50%;
  height: 4rem;
  width: 4rem;
}
@media (min-width: 768px) {
  .btn-primary .icon-mail {
    background-size: 1.2rem;
    height: 2.4rem;
    width: 2.4rem;
  }
}
.btn-primary.disabled {
  background-color: #9d9d9d;
  opacity: 1;
}
.btn-primary.disabled .icon-mail {
  background-image: url("../images/common/icon_mail_disabled.svg");
}

.btn-ouline-back {
  border: 0.2rem solid var(--color-primary);
  color: var(--color-primary);
  gap: 1.7rem;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  height: var(--btn-height, 7rem);
  width: var(--btn-width, 36rem);
  transition: 0.2s ease;
}
@media (min-width: 768px) {
  .btn-ouline-back {
    font-size: 1.6rem;
    height: var(--btn-height, 5.6rem);
    width: var(--btn-width, 28rem);
  }
}
.btn-ouline-back::before {
  content: "";
  background: url("../images/common/icon_arrow01.png") no-repeat center/contain;
  height: 2.1rem;
  width: 2rem;
  transform: scaleX(-1);
  transition: 0.2s ease;
}
@media (min-width: 768px) {
  .btn-ouline-back::before {
    height: 1.5rem;
    width: 1.4rem;
  }
}
.btn-ouline-back:hover {
  background-color: var(--color-primary);
  color: #fff;
}
.btn-ouline-back:hover::before {
  filter: brightness(0) invert(1);
}

.btn-underline {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 700;
  text-underline-offset: 0.5rem;
  font-size: 2rem;
  transition: all 0.25s ease-in-out;
}
.btn-underline:hover {
  color: var(--color-hover);
  text-decoration: none;
}

.btn-arrow {
  color: var(--color-primary);
  font-weight: 700;
  gap: 2rem;
  letter-spacing: 0.06em;
  transition: all 0.25s ease-in-out;
}
@media (min-width: 768px) {
  .btn-arrow {
    font-weight: 500;
    letter-spacing: 0.14em;
    gap: 0.8rem;
  }
}
@media (max-width: 767px) {
  .btn-arrow {
    font-size: 2.8rem;
  }
}
.btn-arrow::before {
  content: "";
  background: url(../images/common/icon_arrow01.png) no-repeat center/contain;
  aspect-ratio: 1;
  width: 2rem;
  transition: all 0.25s ease-in-out;
}
@media (min-width: 768px) {
  .btn-arrow::before {
    width: 1.5rem;
  }
}
.btn-arrow:hover {
  color: var(--color-hover);
  text-decoration: underline;
  text-underline-offset: 0.4rem;
}
.btn-arrow:hover::before {
  background-image: url(../images/common/icon_arrow01_hover.png);
}

.btn-arrow-circle {
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.16em;
  position: relative;
  transition: all 0.25s ease-in-out;
  gap: 1.5rem;
  font-size: 3.2rem;
}
@media (min-width: 768px) {
  .btn-arrow-circle {
    gap: 1rem;
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .btn-arrow-circle {
    padding: 3.4rem;
    min-width: 47.5rem;
    border: 0.4rem solid var(--color-primary);
  }
}
.btn-arrow-circle::before {
  content: "";
  background: var(--color-primary) url(../images/common/icon_arrow01_white.png) no-repeat center/46%;
  border-radius: 50%;
  aspect-ratio: 1;
  transition: all 0.25s ease-in-out;
  width: 4rem;
}
@media (min-width: 768px) {
  .btn-arrow-circle::before {
    width: 2.4rem;
  }
}
.btn-arrow-circle:hover {
  color: var(--color-hover);
}
.btn-arrow-circle:hover::before {
  background-color: var(--color-hover);
}

.btn-blank {
  background-color: var(--color-primary);
  color: #fff;
  position: relative;
  transition: all 0.25s ease-in-out;
  font-weight: 500;
  letter-spacing: 0.1em;
  min-width: 48rem;
  height: 12rem;
  font-size: 3.2rem;
}
@media (min-width: 768px) {
  .btn-blank {
    min-width: 32rem;
    height: 6.4rem;
    font-size: 1.8rem;
  }
}
.btn-blank::after {
  content: "";
  position: absolute;
  aspect-ratio: 1;
  background: url(../images/common/icon_blank.png) no-repeat center/contain;
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  right: 4rem;
}
@media (min-width: 768px) {
  .btn-blank::after {
    width: 1.6rem;
    right: 2.4rem;
  }
}
.btn-blank:hover {
  background-color: var(--color-hover);
}

.btn-outline {
  border: 0.4rem solid #fff;
  color: #fff;
  display: flex;
  gap: 1.6rem;
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  height: 12rem;
  width: 48rem;
  position: relative;
  transition: 0.2s ease;
}
@media (min-width: 768px) {
  .btn-outline {
    border-width: 0.2rem;
    gap: 1.4rem;
    font-size: 1.6rem;
    font-weight: 500;
    height: 5.6rem;
    width: 28rem;
  }
}
.btn-outline:hover {
  background-color: var(--color-hover);
  border-color: var(--color-hover);
}
.btn-outline[target=_blank]::after {
  content: "";
  background: url("../images/common/icon_blank.png") no-repeat center/contain;
  height: 2.4rem;
  width: 2.4rem;
  position: absolute;
  right: 2.6rem;
  top: 50%;
  margin-top: -1.2rem;
}
@media (min-width: 768px) {
  .btn-outline[target=_blank]::after {
    height: 1.6rem;
    width: 1.6rem;
    margin-top: -0.8rem;
  }
}
.btn-outline .icon-arrow {
  background: url("../images/common/icon_arrow01.png") no-repeat center/contain;
  height: 2.5rem;
  width: 2.3rem;
  filter: brightness(0) invert(1);
}
@media (min-width: 768px) {
  .btn-outline .icon-arrow {
    height: 1.5rem;
    width: 1.4rem;
  }
}
.btn-outline.btn-outline--primary {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn-outline.btn-outline--primary:hover {
  border-color: var(--color-hover);
  color: #fff;
}
.btn-outline.btn-outline--primary:hover .icon-arrow {
  filter: brightness(0) invert(1);
}
.btn-outline.btn-outline--primary .icon-arrow {
  filter: none;
}

.btn-submit {
  background-color: var(--color-primary);
  border-radius: 12rem;
  color: #fff;
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  position: relative;
  height: 10rem;
  width: 48rem;
}
@media (min-width: 768px) {
  .btn-submit {
    font-size: 2rem;
    height: 6.4rem;
    width: 32rem;
  }
}
.btn-submit:not(.disabled):not(:disabled):hover {
  background-color: var(--color-hover);
}
.btn-submit:not(.disabled):not(:disabled):hover .icon-arrow::after {
  background-image: url("../images/common/icon_arrow01_hover.png");
}
.btn-submit:not(.disabled):not(:disabled):hover .icon-mail::after {
  background-image: url("../images/common/icon_mail_hover.svg");
}
.btn-submit .icon-arrow,
.btn-submit .icon-mail {
  aspect-ratio: 1;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  position: absolute;
  right: 3.2rem;
  top: 50%;
  margin-top: -2rem;
}
@media (min-width: 768px) {
  .btn-submit .icon-arrow,
  .btn-submit .icon-mail {
    margin-top: -1.2rem;
    width: 2.4rem;
  }
}
.btn-submit .icon-arrow::after {
  content: "";
  background: url("../images/common/icon_arrow01.png") no-repeat center/contain;
  aspect-ratio: 10/11;
  width: 1.5rem;
}
@media (min-width: 768px) {
  .btn-submit .icon-arrow::after {
    width: 1rem;
  }
}
.btn-submit .icon-mail::after {
  content: "";
  background: url("../images/common/icon_mail_primary.svg") no-repeat center/contain;
  aspect-ratio: 1;
  width: 2rem;
}
@media (min-width: 768px) {
  .btn-submit .icon-mail::after {
    width: 1.2rem;
  }
}
.btn-submit.disabled, .btn-submit:disabled {
  background-color: #9d9d9d;
  opacity: 1;
}
.btn-submit.disabled .icon-arrow::after, .btn-submit:disabled .icon-arrow::after {
  background-image: url("../images/common/icon_arrow01_disabled.png");
}

.btn-ouline-radius {
  display: flex;
  border: 0.2rem solid var(--color-primary);
  border-radius: 12rem;
  color: var(--color-primary);
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  position: relative;
  height: 10rem;
  width: 48rem;
}
@media (min-width: 768px) {
  .btn-ouline-radius {
    font-size: 2rem;
    height: 6.4rem;
    width: 32rem;
  }
}
.btn-ouline-radius:hover {
  background-color: var(--color-primary);
  color: #fff;
}
.btn-ouline-radius:hover .icon-back {
  background-color: #fff;
}
.btn-ouline-radius:hover .icon-back::after {
  filter: none;
}
.btn-ouline-radius .icon-back {
  aspect-ratio: 1;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  position: absolute;
  left: 3.2rem;
  top: 50%;
  margin-top: -2rem;
}
@media (min-width: 768px) {
  .btn-ouline-radius .icon-back {
    margin-top: -1.2rem;
    width: 2.4rem;
  }
}
.btn-ouline-radius .icon-back::after {
  content: "";
  background: url("../images/common/icon_arrow01.png") no-repeat center/contain;
  aspect-ratio: 10/11;
  filter: brightness(0) invert(1);
  width: 1.5rem;
  transform: scaleX(-1);
}
@media (min-width: 768px) {
  .btn-ouline-radius .icon-back::after {
    width: 1rem;
  }
}

.consent {
  position: relative;
  margin-bottom: 6rem;
  padding: 4rem 4rem;
  background-color: var(--color-primary);
}
.consent::after {
  position: absolute;
  top: 0;
  left: 4rem;
  width: 8rem;
  height: 5.6rem;
  background: url("../images/common/icon_arrow03.png") no-repeat 0 0;
  background-size: contain;
  content: "";
}
@media (min-width: 768px) {
  .consent {
    padding: 9rem 8rem;
  }
  .consent::after {
    position: absolute;
    top: 0;
    left: 8rem;
    width: 8rem;
    height: 5.6rem;
    background: url("../images/common/icon_arrow03.png") no-repeat 0 0;
    background-size: contain;
    content: "";
  }
}
.consent__txt {
  color: #FFF;
}
.consent__list-num {
  padding-left: 2rem;
}
.consent__list-num > li {
  color: #FFF;
  text-indent: -2rem;
}
.consent__list-num > li:not(:last-child) {
  margin-bottom: 2rem;
}
.consent__list-dot {
  text-indent: 0;
  padding-left: 1rem;
  margin-top: 1.5rem;
}
.consent__list-dot > li {
  position: relative;
  color: #FFF;
}
.consent__list-dot > li:not(:last-child) {
  margin-bottom: 1rem;
}
.consent__list-dot > li::before {
  position: absolute;
  left: -1rem;
  top: 1rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 10px;
  background-color: #FFF;
  content: "";
}
.consent .c-link {
  color: #FFF;
  border-color: #FFF;
}
@media (min-width: 768px) {
  .consent .c-link:hover {
    color: #FFF;
    border: 0;
  }
}
.consent__content {
  margin-bottom: 6rem;
}
.consent__checkbox {
  display: flex;
  justify-content: center;
  background-color: #FFF;
  padding: 1rem 2rem;
}

.p-header {
  position: relative;
  z-index: 10;
}
.p-header__wrap {
  background-color: #fff;
  box-shadow: 0px 0.8rem 0.62rem 0.38rem rgba(46, 46, 46, 0.15);
  display: flex;
  justify-content: space-between;
  height: 13rem;
  padding: 0.5rem var(--gutter);
  position: relative;
}
@media (min-width: 768px) {
  .p-header__wrap {
    box-shadow: 0px 0.8rem 0.616rem 0.184rem rgba(46, 46, 46, 0.08);
    height: 8rem;
  }
}
@media (min-width: 1366px) {
  .p-header__wrap {
    padding: 0 4rem;
  }
}
.p-header__info {
  align-self: center;
  margin-right: auto;
}
.p-header__name {
  color: #086f99;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1;
  margin-bottom: 0.8rem;
}
@media (min-width: 768px) {
  .p-header__name {
    font-size: 1.6rem;
    margin-bottom: 0.7rem;
  }
}
.p-header__txt {
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .p-header__txt {
    font-size: 1.3rem;
    letter-spacing: 0.16em;
  }
}
.p-header__contact {
  align-self: center;
  margin-left: 2.4rem;
}
@media (max-width: 1365px) {
  .p-header__contact {
    display: none;
  }
}
.p-header__contact-tel {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 4.8rem;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media (min-width: 768px) {
  .p-header__contact-tel {
    font-size: 2rem;
  }
}
@media (min-width: 1366px) {
  .p-header__contact-tel {
    font-size: 2.4rem;
  }
}
.p-header__contact-tel a {
  display: inline-flex;
  align-items: center;
}
.p-header__contact-tel a::before {
  content: "";
  background: url("../images/common/icon_tel.svg") no-repeat center/contain;
  height: 3.4rem;
  width: 3.4rem;
  margin-right: 0.5rem;
}
@media (min-width: 768px) {
  .p-header__contact-tel a::before {
    height: 1.7rem;
    width: 1.7rem;
    margin-right: 0.2rem;
  }
}
.p-header__contact-info .label {
  font-size: 2.2rem;
}
@media (min-width: 768px) {
  .p-header__contact-info .label {
    font-size: 1.1rem;
  }
}
.p-header__contact-info .txt {
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
}
@media (min-width: 768px) {
  .p-header__contact-info .txt {
    font-size: 1.4rem;
  }
}
@media (min-width: 1366px) {
  .p-header__contact-info .txt {
    font-size: 1.8rem;
  }
}
.p-header .btn-primary {
  align-self: center;
}
@media (min-width: 1366px) {
  .p-header .nav-list {
    border-left: 1px solid #e4f3e9;
    display: flex;
    height: 100%;
    margin-right: 2.4rem;
  }
}
@media (max-width: 1365px) {
  .p-header .nav-list {
    display: none;
  }
}
.p-header .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  border-right: 1px solid #e4f3e9;
  height: 100%;
  padding: 0 2.3rem;
}

.global-menu {
  display: none;
  background-color: var(--color-secondary);
  padding: 11rem var(--gutter) 3rem;
  position: absolute;
  height: 100vh;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 99;
}
@media (min-width: 768px) {
  .global-menu {
    padding-top: 8rem;
    max-width: 37.5rem;
  }
}
@media (min-width: 1366px) {
  .global-menu {
    display: none !important;
  }
}
.global-menu__wrap {
  height: 100%;
  overflow-y: auto;
  padding-block: 0.6rem;
}
.global-menu__btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 7rem;
}
@media (min-width: 768px) {
  .global-menu__btns {
    padding-inline: 3rem;
  }
}
.global-menu__tel {
  border: 0.4rem solid var(--color-primary);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--color-primary);
  font-family: var(--font-en-2);
  letter-spacing: 0.02em;
  gap: 4rem;
  padding-left: 4rem;
  font-size: 4rem;
  height: 12rem;
  margin-bottom: 1.4rem;
}
@media (min-width: 768px) {
  .global-menu__tel {
    gap: 1.5rem;
    border-width: 0.2rem;
    height: 7rem;
    padding-left: 2rem;
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
}
.global-menu__tel::after {
  content: "";
  aspect-ratio: 32/59;
  background: url(../images/common/icon_phone.png) no-repeat center/contain;
  width: 3.2rem;
}
@media (min-width: 768px) {
  .global-menu__tel::after {
    width: 2rem;
  }
}
.global-menu .p-header__contact-info {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .global-menu .p-header__contact-info {
    margin-bottom: 2rem;
  }
}
.global-menu .nav-list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  width: 100%;
  margin-bottom: 5.6rem;
  padding-inline: 3.2rem;
}
@media (min-width: 768px) {
  .global-menu .nav-list {
    padding-inline: 1.6rem;
    margin-bottom: 3rem;
    gap: 1.5rem;
  }
}
.global-menu .nav-link {
  justify-content: flex-start;
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  background-color: #fff;
  box-shadow: var(--box-shadow);
  color: var(--color-primary);
  gap: 2rem;
}
.global-menu .nav-link::before {
  content: "";
  background: url(../images/common/icon_arrow01.png) no-repeat center/contain;
  aspect-ratio: 1;
  width: 2rem;
  transition: all 0.25s ease-in-out;
}
@media (min-width: 768px) {
  .global-menu .nav-link::before {
    width: 1.5rem;
  }
}
.global-menu .nav-link:hover {
  color: var(--color-hover);
  text-decoration: underline;
  text-underline-offset: 0.4rem;
}
.global-menu .nav-link:hover::before {
  background-image: url(../images/common/icon_arrow01_hover.png);
}
@media (min-width: 768px) {
  .global-menu .nav-link {
    font-size: 1.6rem;
    padding: 2rem 2.4rem;
  }
}
@media (max-width: 767px) {
  .global-menu .nav-link {
    min-height: 12rem;
  }
}
.global-menu .btn-primary {
  width: 100%;
  height: 12rem;
  margin-bottom: 5.6rem;
  border-radius: 12rem;
  font-size: 3.2rem;
}
@media (min-width: 768px) {
  .global-menu .btn-primary {
    font-size: 2rem;
    margin-bottom: 3rem;
    height: 6rem;
  }
}
.global-menu .btn-blank {
  min-width: 100%;
}
.global-menu .btn-blank:not(:last-child) {
  margin-bottom: 3.2rem;
}
@media (min-width: 768px) {
  .global-menu .btn-blank:not(:last-child) {
    margin-bottom: 2rem;
  }
}

.hamburger-box {
  align-self: center;
  aspect-ratio: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: var(--color-secondary);
  border: 0;
  height: 6.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 2.4rem;
  z-index: 101;
}
@media (min-width: 768px) {
  .hamburger-box {
    height: 4.8rem;
  }
}
@media (min-width: 1366px) {
  .hamburger-box {
    display: none;
  }
}
.hamburger-box.is-active .hamburger-inner {
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: rotate(45deg);
}
.hamburger-box.is-active .hamburger-inner:before {
  transition: top 75ms ease, opacity 75ms ease 0.12s;
  opacity: 0;
  top: 0;
}
.hamburger-box.is-active .hamburger-inner:after {
  transition: bottom 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transform: rotate(-90deg);
  bottom: 0;
}

.hamburger-inner:after,
.hamburger-inner:before {
  display: block;
  content: "";
}

.hamburger-inner:after, .hamburger-inner:before, .hamburger-inner {
  width: 4rem;
  height: 0.6rem;
  background-color: var(--color-primary);
  transition: transform 0.15s ease;
}
@media (min-width: 768px) {
  .hamburger-inner:after, .hamburger-inner:before, .hamburger-inner {
    width: 3rem;
    height: 0.4rem;
  }
}

.hamburger-inner {
  position: relative;
  display: block;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 75ms;
}
.hamburger-inner:before {
  position: absolute;
  top: -1.4rem;
  transition: top 75ms ease 0.12s, opacity 75ms ease;
}
@media (min-width: 768px) {
  .hamburger-inner:before {
    top: -1rem;
  }
}
.hamburger-inner:after {
  position: absolute;
  bottom: -1.4rem;
  transition: bottom 75ms ease 0.12s, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
@media (min-width: 768px) {
  .hamburger-inner:after {
    bottom: -1rem;
  }
}

.p-footer {
  background: #086f99 url("../images/common/bg_footer.jpg") no-repeat center/cover;
  color: #fff;
  margin-top: 12rem;
  padding-block: 12rem;
}
.p-footer .inner {
  padding-left: 6rem;
  padding-right: 6rem;
}
@media (min-width: 768px) {
  .p-footer {
    padding-block: 8rem 4rem;
  }
  .p-footer .inner {
    padding-inline: var(--gutter);
  }
}
@media (min-width: 768px) {
  .p-footer__wrap {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
  }
}
@media (min-width: 768px) {
  .p-footer__right {
    display: flex;
    align-items: flex-start;
    gap: 7.8rem;
  }
}
.p-footer__logo {
  border-bottom: 1px solid #fff;
  margin-bottom: 5.6rem;
  padding-bottom: 5.6rem;
  text-align: center;
}
@media (min-width: 768px) {
  .p-footer__logo {
    margin-bottom: 3.2rem;
    padding-bottom: 3.2rem;
    text-align: left;
  }
}
.p-footer__logo-ttl {
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .p-footer__logo-ttl {
    font-size: 2.4rem;
    margin-bottom: 1.3rem;
  }
}
.p-footer__logo-txt {
  font-size: 2.6rem;
  letter-spacing: 0.25em;
}
@media (min-width: 768px) {
  .p-footer__logo-txt {
    font-size: 1.6rem;
    letter-spacing: 0.08em;
  }
}
@media (max-width: 767px) {
  .p-footer__info {
    margin-bottom: 8rem;
    text-align: center;
  }
}
.p-footer__address {
  letter-spacing: 0.08em;
  line-height: 1.7;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .p-footer__address {
    line-height: 1.5;
    margin-bottom: 1.8rem;
  }
}
.p-footer__address small {
  font-size: 1em;
  letter-spacing: 0.16em;
}
@media (min-width: 768px) {
  .p-footer__address small {
    font-size: 1.4rem;
  }
}
.p-footer__tel {
  font-family: var(--font-en-2);
  letter-spacing: 0.12em;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .p-footer__tel {
    margin-bottom: 1rem;
  }
}
.p-footer__tel .label {
  font-size: 2rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .p-footer__tel .label {
    font-size: 1.6rem;
  }
}
.p-footer__tel a {
  font-size: 3.2rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .p-footer__tel a {
    font-size: 2rem;
  }
}
.p-footer__time {
  font-size: 2rem;
  letter-spacing: 0.16em;
}
@media (min-width: 768px) {
  .p-footer__time {
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) {
  .p-footer__time .label {
    font-size: 1.4rem;
  }
}
.p-footer__nav {
  display: grid;
  row-gap: 2.8rem;
}
.p-footer__nav a {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  transition: 0.2s ease;
}
@media (min-width: 768px) {
  .p-footer__nav a {
    gap: 1.6rem;
    font-weight: 400;
    font-size: 1.6rem;
  }
  .p-footer__nav a:hover {
    color: var(--color-hover);
  }
  .p-footer__nav a:hover::before {
    filter: none;
  }
}
@media (max-width: 767px) {
  .p-footer__nav a {
    background-color: #fff;
    color: var(--color-primary);
    padding: 4rem 3.2rem;
  }
}
.p-footer__nav a::before {
  content: "";
  background: url("../images/common/icon_arrow01.png") no-repeat center/contain;
  height: 2.5rem;
  width: 2.3rem;
  transition: 0.2s ease;
  position: relative;
  top: 0.2rem;
}
@media (min-width: 768px) {
  .p-footer__nav a::before {
    background-image: url("../images/common/icon_arrow01_hover.png");
    height: 1.5rem;
    width: 1.4rem;
    filter: brightness(0) invert(1);
  }
}
.p-footer__nav-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5rem;
}
.p-footer__nav-2 li:not(:last-child) {
  margin-right: 0;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .p-footer__nav-2 {
    flex-direction: row;
    align-items: baseline;
    margin-bottom: 0;
  }
  .p-footer__nav-2 li:not(:last-child) {
    margin-right: 2rem;
  }
}
.p-footer__nav-2 a {
  display: inline-block;
  font-size: 2.6rem;
  color: #FFF;
  transition: 0.2s color;
}
@media (min-width: 768px) {
  .p-footer__nav-2 a {
    font-size: 1.4rem;
  }
  .p-footer__nav-2 a:hover {
    color: var(--color-hover);
  }
}
.p-footer__other {
  display: grid;
  justify-content: center;
  row-gap: 4rem;
  margin-top: 5.6rem;
}
@media (min-width: 768px) {
  .p-footer__other {
    row-gap: 2.4rem;
    margin-top: 0;
  }
}
.p-footer__other .btn-mail {
  --btn-height: 12rem;
  --btn-width: 48rem;
  --btn-font-size: 3.2rem;
  border-radius: 12rem;
}
@media (min-width: 768px) {
  .p-footer__other .btn-mail {
    --btn-height: 5.6rem;
    --btn-width: 28rem;
    --btn-font-size: 1.6rem;
  }
}
.p-footer__other .btn-mail::after {
  border-color: var(--color-primary);
  border-width: 0.3rem;
  border-radius: 12rem;
  inset: 0.3rem;
}
@media (max-width: 767px) {
  .p-footer__other .btn-mail .icon-mail {
    background-size: 1.6rem;
    height: 3.2rem;
    width: 3.2rem;
  }
}
.p-footer__bot {
  display: flex;
  flex-direction: column-reverse;
  margin-top: 5rem;
}
@media (min-width: 768px) {
  .p-footer__bot {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 6.4rem;
  }
}
.p-footer .copyright {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-right: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .p-footer .copyright {
    margin-right: 1rem;
    font-size: 1.3rem;
  }
}

.form-control {
  background-color: var(--input-background);
  background-clip: padding-box;
  border: var(--input-border-width) solid var(--input-border-color);
  border-radius: var(--input-border-radius);
  color: var(--input-color);
  display: block;
  font-family: var(--font-family-base);
  font-size: var(--input-font-size);
  font-weight: var(--input-font-weight);
  line-height: 1.5;
  padding: var(--input-padding-y) var(--input-padding-x);
  outline: none;
  height: var(--input-height);
  width: 100%;
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
.form-control:focus {
  background-color: #f2f8fa;
  border-color: var(--input-border-focus-color);
}
.form-control[readonly], .form-control.focus:not(:focus) {
  background-color: #fff;
  border-color: #c6d5db;
}
.form-control.error {
  background-color: var(--input-background) !important;
  border-color: #d91e36 !important;
}
.form-control::-moz-placeholder {
  color: var(--input-placeholder-color);
  opacity: 1;
}
.form-control::placeholder {
  color: var(--input-placeholder-color);
  opacity: 1;
}
.form-control:disabled {
  background-color: #1E1E1E;
  opacity: 1;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

label.error {
  color: #d91e36;
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-top: 1rem;
}

textarea.form-control {
  font-weight: 400;
  height: 30rem;
  resize: none;
  padding-top: 2.5rem;
  resize: vertical;
  overflow: auto;
}
@media (min-width: 768px) {
  textarea.form-control {
    font-size: 1.6rem;
    height: 24rem;
  }
}
textarea.form-control::-moz-placeholder {
  color: var(--input-placeholder-color);
  opacity: 1;
}
textarea.form-control::placeholder {
  color: var(--input-placeholder-color);
  opacity: 1;
}

.form-box {
  background-color: #fff;
  box-shadow: var(--box-shadow);
  padding: 5.6rem 4rem;
}
@media (min-width: 768px) {
  .form-box {
    padding: 6.4rem 6rem 6.6rem;
  }
}
@media (min-width: 1366px) {
  .form-box {
    padding: 6.4rem 8rem 6.6rem;
  }
}

.custom-chekbox,
.custom-radio {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.custom-chekbox:first-child,
.custom-radio:first-child {
  padding-top: 0;
}
.custom-chekbox input,
.custom-radio input {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.custom-chekbox input:checked ~ .custom-chekbox__marker,
.custom-chekbox input:checked ~ .custom-radio__marker,
.custom-radio input:checked ~ .custom-chekbox__marker,
.custom-radio input:checked ~ .custom-radio__marker {
  background-color: var(--color-primary);
}
.custom-chekbox input:checked ~ .custom-chekbox__marker::after,
.custom-chekbox input:checked ~ .custom-radio__marker::after,
.custom-radio input:checked ~ .custom-chekbox__marker::after,
.custom-radio input:checked ~ .custom-radio__marker::after {
  opacity: 1;
}
.custom-chekbox__marker,
.custom-radio__marker {
  aspect-ratio: 1;
  border: 0.6rem solid var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
  width: 4rem;
  position: relative;
}
@media (min-width: 768px) {
  .custom-chekbox__marker,
  .custom-radio__marker {
    border-width: 0.4rem;
    width: 3.2rem;
  }
}
.custom-chekbox__marker::after,
.custom-radio__marker::after {
  content: "";
  background: url("../images/common/icon_ticker.png") no-repeat center/contain;
  aspect-ratio: 17/13;
  width: 1.7rem;
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.custom-chekbox__label,
.custom-radio__label {
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .custom-chekbox__label,
  .custom-radio__label {
    letter-spacing: 0.175em;
  }
}

.custom-chekbox__label {
  color: var(--color-primary);
}

.form-list-radio {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
@media (min-width: 768px) {
  .form-list-radio {
    gap: 1rem;
    flex-direction: row;
  }
}

.form-select {
  position: relative;
  height: 6.4rem;
  max-width: 64rem;
}
.form-select::before, .form-select::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.form-select::before {
  height: 100%;
  width: 4rem;
  background-color: var(--color-primary);
  right: 0;
  top: 0;
}
.form-select::after {
  width: 1.5rem;
  aspect-ratio: 1;
  background: url(../images/common/icon_arrow01.png) no-repeat center/contain;
  transform: rotate(90deg);
  right: 1.2rem;
  top: calc(50% - 0.7rem);
  z-index: 1;
  filter: brightness(0) invert(1);
}
.form-select select {
  height: 100%;
  color: var(--color-primary);
  padding-inline: 2rem;
  font-size: 2rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-policy {
  border: 1.6rem solid #e1eaee;
  margin-bottom: 4rem;
  padding: 4rem;
}
@media (min-width: 768px) {
  .form-policy {
    border-width: 0.8rem;
    padding: 5rem 7rem;
  }
}
.form-policy__ttl {
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 1.4rem;
  text-align: center;
}
@media (min-width: 768px) {
  .form-policy__ttl {
    font-size: 2.4rem;
  }
}
.form-policy__body {
  text-align: justify;
}
@media (min-width: 768px) {
  .form-policy__body.c-txt {
    --text-spacing: .1em;
  }
}
.form-policy__body p:not(:last-child) {
  margin-bottom: 1rem;
}

.form-check {
  display: flex;
  justify-content: center;
}

.form-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4.8rem;
  margin-top: 6.5rem;
}
@media (min-width: 768px) {
  .form-footer {
    flex-direction: row;
  }
}

.form-tbl {
  margin-bottom: 5.6rem;
  width: 100%;
}
@media (min-width: 768px) {
  .form-tbl tr.--last th,
  .form-tbl tr.--last td {
    padding-bottom: 0;
  }
}
.form-tbl tr.--txt th,
.form-tbl tr.--txt td {
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .form-tbl tr.--txt th,
  .form-tbl tr.--txt td {
    padding-bottom: 1rem;
  }
}
.form-tbl tr.--align-top {
  vertical-align: top;
}
.form-tbl th,
.form-tbl td {
  padding-bottom: 4.8rem;
}
@media (max-width: 767px) {
  .form-tbl th,
  .form-tbl td {
    float: left;
    display: flex;
    width: 100%;
  }
}
.form-tbl th {
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.08em;
}
@media (min-width: 768px) {
  .form-tbl th {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    padding-top: 1rem;
    vertical-align: top;
  }
  .form-tbl th[colspan] {
    padding-bottom: 2.5rem;
  }
}
@media (max-width: 767px) {
  .form-tbl th {
    padding-bottom: 2.5rem;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .form-tbl td {
    width: 46.9rem;
  }
}
.form-tbl td.custom {
  float: none;
  flex-direction: column;
}
.form-tbl__col {
  display: flex;
  gap: 1.2rem;
}
.form-tbl__col > * {
  flex: 1 1;
}
.form-tbl .form-list-radio:not(:last-child) {
  margin-bottom: 3rem;
}

.confirm-tbl {
  margin-inline: auto;
  max-width: 76rem;
  width: 100%;
}
@media (min-width: 768px) {
  .confirm-tbl tr:nth-child(odd) {
    background-color: var(--tbl-bg);
  }
}
.confirm-tbl th,
.confirm-tbl td {
  border: 1px solid var(--color-border);
  font-weight: 500;
  letter-spacing: 0.16em;
  padding: 2.5rem 4rem;
  text-align: center;
}
@media (min-width: 768px) {
  .confirm-tbl th,
  .confirm-tbl td {
    padding: 1.4rem 3.8rem;
  }
}
@media (max-width: 767px) {
  .confirm-tbl th,
  .confirm-tbl td {
    float: left;
    display: flex;
    margin-bottom: -1px;
    width: 100%;
  }
}
.confirm-tbl th {
  color: var(--color-primary);
  font-size: 2.4rem;
  text-align: center;
}
.confirm-tbl th.custom {
  padding-left: 1.8rem;
  padding-right: 1.8rem;
}
@media (min-width: 768px) {
  .confirm-tbl th {
    font-size: 1.6rem;
    width: 27.6rem;
  }
}
@media (max-width: 767px) {
  .confirm-tbl th {
    background-color: var(--tbl-bg);
  }
}
@media (min-width: 768px) {
  .confirm-tbl td {
    font-size: 1.8rem;
  }
}
.confirm-tbl__textarea {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.7;
  text-align: justify;
}
@media (min-width: 768px) {
  .confirm-tbl__textarea {
    font-size: 1.4rem;
  }
}

.form-label {
  background-color: var(--color-danger);
  border-radius: 3rem;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  margin-right: 1.4rem;
  height: 3.2rem;
  width: 7.2rem;
  padding-bottom: 0.2rem;
}
@media (min-width: 768px) {
  .form-label {
    font-size: 1.4rem;
    margin-right: 1rem;
    height: 2.4rem;
    width: 5.6rem;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .form-label {
    position: relative;
    top: 0.2rem;
  }
}
.form-label.form-label--option {
  background-color: #121212;
}

.c-form__sub {
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.12em;
  margin-bottom: 2.5rem;
  font-size: 3.2rem;
}
@media (min-width: 768px) {
  .c-form__sub {
    margin-bottom: 1.5rem;
    font-size: 2.4rem;
  }
}
.c-form__des {
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.16em;
  line-height: 1.8;
  font-size: 2.8rem;
}
@media (min-width: 768px) {
  .c-form__des {
    font-size: 2rem;
  }
}
.c-form__des:not(:last-child) {
  margin-bottom: 4rem;
}
.c-form__des small {
  font-weight: 400;
  display: block;
  margin-top: -0.5rem;
  font-size: 2rem;
}
@media (min-width: 768px) {
  .c-form__des small {
    font-size: 1.6rem;
  }
}
.c-form__area {
  background-color: #e1eaee;
  padding: 8.5rem 3.2rem;
}
@media (min-width: 768px) {
  .c-form__area {
    padding: 7.5rem 6rem;
  }
}
.c-form__area:not(:last-child) {
  margin-bottom: 5.6rem;
}
.c-form__options:not(:last-child) {
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .c-form__options:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}
.c-form__options .custom-radio {
  display: flex;
  border-bottom: 1px solid var(--color-border);
  gap: 2.5rem;
  padding-block: 3rem;
}
@media (min-width: 768px) {
  .c-form__options .custom-radio {
    padding-block: 2rem;
  }
}
.c-form__options .custom-radio:first-child {
  padding-top: 0;
}
.c-form__box {
  background-color: #fff;
  box-shadow: 0px 0.5rem 2rem 0.1rem rgba(0, 0, 0, 0.05);
  padding: 4.5rem 3.5rem;
}
@media (min-width: 768px) {
  .c-form__box {
    padding: 4.5rem 5.5rem;
  }
}
.c-form__box .hline02:not(:first-child) {
  margin-top: 8rem;
}
@media (min-width: 768px) {
  .c-form__box .hline02:not(:first-child) {
    margin-top: 5.5rem;
  }
}
.c-form__box .form-tbl {
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .c-form__box .form-tbl th,
  .c-form__box .form-tbl td {
    padding-bottom: 2.8rem;
  }
}
@media (max-width: 767px) {
  .c-form__box .form-tbl th {
    padding-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .c-form__box .form-tbl td {
    width: 43rem;
  }
}
@media (max-width: 767px) {
  .c-form__box .form-tbl td {
    padding-bottom: 4rem;
  }
}
.c-form__box .custom-radio__label {
  text-align: justify;
}
@media (max-width: 767px) {
  .c-form__box .custom-radio__label {
    letter-spacing: 0.03em;
  }
}
.c-form__select {
  margin-bottom: 6rem;
}
.c-form__select .form-select:not(:last-child) {
  margin-bottom: 3.4rem;
}
.c-form__bill {
  border: 0.2rem solid var(--color-border);
  padding: 4rem 5rem;
}
@media (min-width: 768px) {
  .c-form__bill {
    padding: 5rem 3.5rem;
  }
}
.c-form__bill-row {
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
}
@media (min-width: 768px) {
  .c-form__bill-row {
    align-items: center;
    gap: 4rem;
    margin-bottom: 2rem;
  }
  .c-form__bill-row > * {
    flex: 1 1;
  }
}
.c-form__bill-label {
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: 0.07em;
}
@media (min-width: 768px) {
  .c-form__bill-label {
    letter-spacing: 0.1em;
    font-size: 2rem;
    text-align: right;
  }
}
@media (max-width: 767px) {
  .c-form__bill-label {
    flex: 1 1;
  }
}
@media (max-width: 767px) {
  .c-form__bill-label small {
    font-size: 2rem;
    display: block;
    font-weight: 400;
    margin-top: 1rem;
  }
}
.c-form__bill-value {
  font-weight: 500;
}
@media (max-width: 767px) {
  .c-form__bill-value {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .c-form__bill-value.--top {
    bottom: initial;
    top: 0;
  }
}
.c-form__bill-value .number {
  position: relative;
  font-family: var(--font-en-2);
  line-height: 1;
  position: relative;
  bottom: -0.2rem;
  font-size: 4rem;
  margin-right: 0.4rem;
}
@media (min-width: 768px) {
  .c-form__bill-value .number {
    font-size: 3.2rem;
    margin-right: 0.4rem;
  }
}
.c-form__bill-value .number .js-exemption-icon-minus {
  position: absolute;
  left: -1.1rem;
  top: calc(50% - 0.1rem);
  transform: translateY(-50%);
  opacity: 0;
  content: "";
}
.c-form__bill-value .number .js-exemption-icon-minus.active {
  opacity: 1;
}
.c-form__bill-value small {
  margin-left: 1rem;
  font-size: 2.6rem;
  letter-spacing: 0.09em;
}
@media (min-width: 768px) {
  .c-form__bill-value small {
    font-size: 1.2rem;
  }
}
.c-form__bill-total {
  display: flex;
  justify-content: flex-end;
  border-style: solid;
  border-color: var(--color-border);
  border-width: 0.2rem 0;
  padding-block: 2.5rem;
  margin-block: 3.5rem 4rem;
}
@media (min-width: 768px) {
  .c-form__bill-total {
    margin-block: 4rem 2rem;
  }
}
.c-form__bill-total .item {
  display: flex;
  align-items: flex-end;
}
@media (min-width: 768px) {
  .c-form__bill-total .item {
    width: calc(50% - 2.5rem);
  }
}
@media (max-width: 767px) {
  .c-form__bill-total .item {
    gap: 1rem;
  }
}
.c-form__bill-total .ttl {
  font-weight: bold;
  margin-right: auto;
  color: var(--color-primary);
  font-size: 3.2rem;
  letter-spacing: 0.14em;
}
@media (min-width: 768px) {
  .c-form__bill-total .ttl {
    font-size: 3.2rem;
    letter-spacing: 0.14em;
  }
}
.c-form__bill-total .value {
  font-family: var(--font-en-2);
  font-weight: 500;
  line-height: 1;
  font-size: 6.4rem;
}
@media (min-width: 768px) {
  .c-form__bill-total .value {
    font-size: 4.8rem;
  }
}
.c-form__bill-total .unit {
  font-size: 2.4rem;
}
.c-form__compar {
  border: 0.2rem solid var(--color-border);
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .c-form__compar {
    display: flex;
  }
}
@media (min-width: 768px) {
  .c-form__compar-item {
    flex: 1 1;
  }
}
@media (min-width: 768px) {
  .c-form__compar-item:not(:last-child) {
    border-right: 0.2rem solid var(--color-border);
  }
}
@media (max-width: 767px) {
  .c-form__compar-item:not(:last-child) {
    border-bottom: 0.2rem solid var(--color-border);
  }
}
.c-form__compar-head {
  text-align: center;
  background-color: #f2f8fa;
  font-weight: 500;
  border-bottom: 1px solid var(--color-border);
  letter-spacing: 0.08em;
  font-size: 3.2rem;
  padding-block: 1rem;
}
@media (min-width: 768px) {
  .c-form__compar-head {
    letter-spacing: 0.14em;
    font-size: 2rem;
    padding-block: 0.9rem;
  }
}
.c-form__compar-body {
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 2rem;
  padding: 4rem 1.5rem 3.5rem 4.5rem;
}
@media (min-width: 768px) {
  .c-form__compar-body {
    font-size: 1.4rem;
    padding: 3rem 1.5rem 3rem 3.5rem;
  }
}
.c-form__compar-body .c-number li:not(:last-child) {
  margin-bottom: 1rem;
}
.c-form__table table {
  table-layout: fixed;
  width: 100%;
  border: 0.4rem solid var(--color-border);
}
@media (min-width: 768px) {
  .c-form__table table {
    border-width: 0.2rem;
  }
}
.c-form__table th,
.c-form__table td {
  border: 0.4rem solid var(--color-border);
}
@media (min-width: 768px) {
  .c-form__table th,
  .c-form__table td {
    border-width: 0.2rem;
  }
}
.c-form__table th {
  text-align: center;
  background-color: #f2f8fa;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-size: 3.2rem;
  padding: 1.2rem 3rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .c-form__table th {
    padding: 1.5rem 3rem;
    letter-spacing: 0.14em;
    font-size: 2rem;
  }
}
.c-form__table td {
  padding: 2rem;
  vertical-align: middle;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .c-form__table td {
    padding: 2rem;
  }
}
.c-form__table-compar table {
  table-layout: fixed;
  width: 100%;
  border: 0.4rem solid var(--color-border);
}
@media (min-width: 768px) {
  .c-form__table-compar table {
    border-width: 0.2rem;
  }
}
@media (max-width: 767px) {
  .c-form__table-compar tr:last-child td:last-child {
    border-bottom: 0;
  }
}
@media (min-width: 768px) {
  .c-form__table-compar th,
  .c-form__table-compar td {
    border: 0.2rem solid var(--color-border);
  }
}
.c-form__table-compar th {
  text-align: center;
  background-color: #f2f8fa;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-size: 3.2rem;
  padding: 1rem 3rem;
}
@media (min-width: 768px) {
  .c-form__table-compar th {
    padding: 0.9rem 3rem;
    letter-spacing: 0.14em;
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .c-form__table-compar th {
    display: none;
  }
}
@media (min-width: 768px) {
  .c-form__table-compar td {
    padding: 2rem 1rem 2rem 2.8rem;
    vertical-align: text-bottom;
  }
}
@media (max-width: 767px) {
  .c-form__table-compar td {
    display: block;
    border-bottom: 0.4rem solid var(--color-border);
  }
  .c-form__table-compar td::before {
    content: attr(data-table);
    display: block;
    text-align: center;
    background-color: #f2f8fa;
    font-weight: 500;
    letter-spacing: 0.08em;
    font-size: 3.2rem;
    border-bottom: 0.4rem solid var(--color-border);
  }
  .c-form__table-compar td > * {
    padding: 2rem 3rem;
  }
}
.c-form__border {
  letter-spacing: 0.02em;
  font-weight: bold;
  border: 1.6rem solid #e1eaee;
  padding: 3rem 1rem 3rem;
  font-size: 3rem;
  margin-block: 2rem;
}
@media (min-width: 768px) {
  .c-form__border {
    letter-spacing: 0.08em;
    padding: 1.8rem 0 1.8rem 2.2rem;
    border-width: 0.8rem;
    font-size: 2.4rem;
    margin-block: 2.2rem;
  }
}
@media (max-width: 767px) {
  .c-form__border {
    text-align: center;
  }
}
.c-form__border small {
  font-weight: 400;
  font-size: 2rem;
}
@media (min-width: 768px) {
  .c-form__border small {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .c-form__border-txt:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.c-form__foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5.5rem;
}
@media (min-width: 768px) {
  .c-form__foot {
    gap: 5rem;
  }
}
.c-form__foot .c-form__des {
  color: #fff;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .c-form__foot .c-form__des {
    margin-inline: -2rem;
    letter-spacing: 0;
    font-size: 2.6rem;
  }
}
.c-form__foot .btn-primary {
  --btn-height: 12rem;
  --btn-width: auto;
  --btn-font-size: 2.6rem;
  border-radius: 12rem;
}
@media (min-width: 768px) {
  .c-form__foot .btn-primary {
    --btn-height: 9.6rem;
    --btn-width: 60rem;
    --btn-font-size: 2.4rem;
  }
}
@media (max-width: 767px) {
  .c-form__foot .btn-primary {
    letter-spacing: 0.08em;
    padding-inline: 4rem 5.5rem;
  }
}
.c-form__foot .btn-primary::after {
  border-width: 0.3rem;
  border-color: var(--color-primary);
  border-radius: 12rem;
  inset: 0.3rem;
}
@media (min-width: 768px) {
  .c-form__foot .btn-primary::after {
    border-width: 0.3rem;
    border-color: var(--color-primary);
  }
}
.c-form__foot .btn-primary .icon-mail {
  width: 4.8rem;
  height: 4.8rem;
  background-size: 50%;
}
.table {
  width: 100%;
}

.wp-block-table thead {
  border: none;
}

.table-primary {
  width: 100%;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .table-primary {
    padding-block: 1.1rem;
  }
}
.table-primary td, .table-primary th {
  padding: 0.5rem 0.2rem;
  border: 1px solid #ddd;
  color: var(--color-text);
}
@media (min-width: 768px) {
  .table-primary td, .table-primary th {
    padding-block: 1.1rem;
  }
}
.table-primary th {
  background-color: #f2f8fa;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-align: center;
  border-bottom: 1px solid #c7d9e0;
}
.table-primary th.custom {
  min-width: 12rem;
}
@media (min-width: 768px) {
  .table-primary th {
    font-size: 1.6rem;
  }
  .table-primary th.custom {
    min-width: 20rem;
  }
}
.table-primary td {
  font-weight: 500;
  text-align: center;
  font-size: 2rem;
}
@media (min-width: 768px) {
  .table-primary td {
    font-size: 1.8rem;
  }
}

.wrap-table-sp {
  overflow-x: auto;
}
.wrap-table-sp table {
  min-width: 800px;
}

.table-second-wrap {
  background-color: #fff;
  box-shadow: 0px 0.5rem 2rem 0.1rem rgba(0, 0, 0, 0.05);
  padding: 4.5rem 3.5rem;
}
@media (min-width: 768px) {
  .table-second-wrap {
    padding: 6rem 5.5rem;
  }
}
.table-second-wrap table {
  max-width: 770px;
  margin: 0 auto;
}

.table-second {
  width: 100%;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .table-second {
    padding-block: 1.1rem;
  }
}
.table-second tr {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #c7d9e0;
  border-left: 1px solid #c7d9e0;
  border-right: 1px solid #c7d9e0;
  border-bottom: 0;
}
.table-second tr:last-child {
  border-bottom: 1px solid #c7d9e0;
}
@media (min-width: 768px) {
  .table-second tr {
    display: table-row;
    border: 1px solid #c7d9e0;
  }
}
.table-second td, .table-second th {
  padding: 1.5rem 1.8rem;
}
@media (min-width: 768px) {
  .table-second td, .table-second th {
    border: 1px solid #c7d9e0;
  }
}
.table-second th {
  min-width: inherit;
  color: #086f99;
  background-color: #f2f8fa;
  font-weight: 500;
  border-top: 0;
  border-bottom: 1px solid #c7d9e0;
}
@media (min-width: 768px) {
  .table-second th {
    min-width: 23rem;
  }
}
.table-second td {
  border-top: 0;
  border-bottom: 0;
}
.table-second .phone {
  pointer-events: all;
  text-decoration: none !important;
  color: var(--color-text);
}
@media (min-width: 768px) {
  .table-second .phone {
    pointer-events: none;
  }
}
.table-second .mail {
  text-decoration: none !important;
  color: var(--color-text);
}

.hline01--center {
  text-align: center;
}
.hline01--center .hline01__ttl::after {
  left: 50%;
  transform: translateX(-50%);
}
.hline01__sub {
  color: var(--color-primary);
  font-weight: bold;
  font-family: var(--font-en);
  letter-spacing: 0.06em;
  font-size: 2.4rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .hline01__sub {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
.hline01__ttl {
  font-weight: bold;
  position: relative;
  letter-spacing: 0.06em;
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 11rem;
}
@media (min-width: 768px) {
  .hline01__ttl {
    margin-bottom: 7rem;
  }
}
.hline01__ttl::after {
  content: "";
  position: absolute;
  background-color: var(--color-primary);
  left: 50%;
  bottom: -5rem;
  width: 6.5rem;
  height: 0.8rem;
}
@media (min-width: 768px) {
  .hline01__ttl::after {
    left: 0;
    bottom: -4rem;
    width: 6.5rem;
    height: 0.4rem;
  }
}
@media (max-width: 767px) {
  .hline01__ttl::after {
    transform: translateX(-50%);
  }
}

.hline02 {
  border-left: 1.6rem solid var(--color-primary);
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  margin-bottom: 4.7rem;
  padding-left: 2.4rem;
}
@media (min-width: 768px) {
  .hline02 {
    border-width: 0.8rem;
    font-size: 2.4rem;
  }
}

.hline03 {
  position: relative;
  margin-bottom: 4.7rem;
  padding-bottom: 4rem;
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-align: center;
}
.hline03::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 6rem;
  height: 0.8rem;
  background-color: var(--color-primary);
  transform: translateX(-50%);
  content: "";
}
@media (min-width: 768px) {
  .hline03 {
    margin-bottom: 6rem;
    padding-bottom: 3.7rem;
    font-size: 3.2rem;
  }
  .hline03::after {
    height: 0.4rem;
  }
}

.hline04 {
  display: flex;
  margin-bottom: 3rem;
  font-weight: 700;
  line-height: 1.4;
}
.hline04__num {
  position: relative;
  top: 0.2rem;
  margin-right: 1rem;
  font-size: 4.8rem;
  color: var(--color-primary);
  font-family: "Roboto", sans-serif;
  line-height: 1;
}
.hline04__txt {
  display: flex;
  align-items: center;
  letter-spacing: 0rem;
  font-size: 3.6rem;
  color: #222;
}
.hline04__must {
  background-color: var(--color-danger);
  border-radius: 3rem;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 400;
  margin-right: 1rem;
  height: 3.6rem;
  min-width: 7rem;
}
@media (min-width: 768px) {
  .hline04 {
    margin-bottom: 2rem;
  }
  .hline04__num {
    font-size: 3.2rem;
  }
  .hline04__txt {
    font-size: 2.4rem;
    letter-spacing: 0.3rem;
  }
  .hline04__must {
    font-size: 1.4rem;
    width: 5.7rem;
    min-width: -moz-fit-content;
    min-width: fit-content;
    height: 2.5rem;
    letter-spacing: 0.16em;
  }
}

.hline05 {
  margin-bottom: 2rem;
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
}
@media (min-width: 768px) {
  .hline05 {
    margin-bottom: 1.5rem;
    letter-spacing: 0.2rem;
  }
}

.hline06 {
  position: relative;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  font-size: 3.2rem;
  font-weight: bold;
  color: #FFF;
  text-align: center;
}
.hline06::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 6.5rem;
  height: 0.4rem;
  background-color: #FFF;
  transform: translateX(-50%);
  content: "";
}
.hline07 {
  margin-bottom: 3rem;
  font-size: 3.2rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .hline07 {
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: bold;
  }
}

.select-custom {
  background-color: var(--input-background);
  position: relative;
  width: 100%;
  height: 7.2rem;
  border: var(--input-border-width) solid var(--color-primary);
  border-radius: 5px;
}
.select-custom::after {
  position: absolute;
  right: -0.4rem;
  top: -0.4rem;
  width: 7.2rem;
  height: calc(100% + 0.8rem);
  background: var(--color-primary) url("../images/common/icon_arrow02.png") no-repeat 50% 50%;
  background-size: 2.5rem auto;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  content: "";
}
.select-custom.custom-1 {
  height: 10rem;
}
.select-custom.custom-2 {
  height: 10rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .select-custom {
    height: 4.8rem;
    cursor: pointer;
  }
  .select-custom.custom-1 {
    height: 4.8rem;
  }
  .select-custom.custom-2 {
    width: 83%;
    height: 6.5rem;
    margin-bottom: 3.5rem;
  }
  .select-custom.custom-2 .select-custom__input {
    padding: 0.5rem 4rem;
    text-align: left !important;
  }
  .select-custom::after {
    width: 4rem;
    background-size: 1.6rem auto;
  }
}
.select-custom.has-value {
  --input-background: #fff;
  border-color: #c6d5db;
}
.select-custom.has-value::after {
  background-color: #c6d5db;
}
.select-custom.focus {
  --input-background: #f2f8fa;
  border-color: var(--color-primary);
}
.select-custom.focus::after {
  background-color: var(--color-primary);
}
.select-custom__input {
  background-color: transparent;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0.5rem 6.6rem 0.5rem 1rem;
  margin: 0;
  border: 0;
  font-size: 2.6rem;
  font-weight: 700;
}
.select-custom__input.s-font {
  font-size: 2.6rem;
}
.select-custom__input::-moz-placeholder {
  color: var(--input-placeholder-color);
  opacity: 1;
}
.select-custom__input::placeholder {
  color: var(--input-placeholder-color);
  opacity: 1;
}
@media (min-width: 768px) {
  .select-custom__input {
    padding: 0.5rem 4rem 0.5rem 1rem;
    font-size: 1.8rem;
    cursor: pointer;
  }
  .select-custom__input.s-font {
    font-size: 1.3rem;
  }
}
.select-custom__options {
  display: none;
  position: absolute;
  z-index: 2;
  top: calc(100% + 1rem);
  left: -3px;
  width: calc(100% + 6px);
  padding: 0 7rem 0 0;
  border: var(--input-border-width) solid var(--color-primary);
  border-radius: 5px;
  background-color: #FFF;
}
.select-custom__options::after {
  position: absolute;
  z-index: 2;
  right: -3px;
  top: 0;
  width: 7.2rem;
  height: 100%;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background: var(--color-primary) url("../images/common/icon_arrow02.png") no-repeat 50% 1.5rem;
  background-size: 2.5rem auto;
  content: "";
}
.select-custom__options.active {
  display: block;
}
@media (min-width: 768px) {
  .select-custom__options {
    left: -4px;
    width: calc(100% + 8px);
    padding: 0 4rem 0 0;
  }
  .select-custom__options::after {
    right: -4px;
    width: 4rem;
    background-size: 1.6rem auto;
  }
}
.select-custom__wrap {
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 30rem;
}
.select-custom__wrap::-webkit-scrollbar {
  display: none;
}
.select-custom__option {
  padding: 0.5rem 0 0.5rem 1rem;
  font-weight: 700;
  color: var(--text-color);
  font-size: 2.6rem;
  word-break: break-word;
}
.select-custom__option--placeholder {
  pointer-events: none;
}
.select-custom__option.s-font {
  font-size: 2.6rem;
}
.select-custom__option.active {
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .select-custom__option {
    padding: 0.5rem 0 0.5rem 1rem;
    font-size: 1.8rem;
    cursor: pointer;
  }
  .select-custom__option.s-font {
    font-size: 1.3rem;
  }
}

.select2 {
  background-color: var(--input-background);
  position: relative;
  width: 100%;
  height: 10.3rem;
  border: 0.8rem solid var(--color-primary);
  border-radius: 5px;
}
@media (min-width: 768px) {
  .select2 {
    border-width: var(--input-border-width);
    height: 4.8rem;
  }
}
.select2::after {
  pointer-events: none;
  position: absolute;
  right: -0.4rem;
  top: -0.4rem;
  width: 7.2rem;
  height: calc(100% + 0.8rem);
  background: var(--color-primary) url("../images/common/icon_arrow02.png") no-repeat 50% 50%;
  background-size: 2.5rem auto;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  content: "";
}
@media (min-width: 768px) {
  .select2::after {
    width: 4rem;
    background-size: 1.6rem auto;
  }
}
.select2-search {
  display: none;
}
.select2-container {
  background-color: var(--input-background);
}
.select2-container.is-focus {
  background-color: #f2f8fa;
  border-color: var(--input-border-focus-color);
}
.select2-container.has-value {
  background-color: #fff;
  border-color: #c6d5db;
}
.select2-container.has-value::after {
  background-color: #c6d5db;
}
.select2-container.select2-container--disabled .select2-selection--single {
  background-color: var(--input-background);
}
.select2-container .select2-selection--single {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  font-size: 2.6rem;
  height: 100%;
}
@media (min-width: 768px) {
  .select2-container .select2-selection--single {
    font-size: 1.3rem;
  }
}
.select2-container .select2-selection--single .select2-selection__rendered {
  padding-right: 4rem;
}
.select2-container .select2-selection--single .select2-selection__placeholder {
  color: var(--input-placeholder-color);
}
.select2-container .select2-results__option--selected,
.select2-container .select2-results__option--highlighted {
  background-color: transparent !important;
  color: var(--color-primary) !important;
}
.select2-container .select2-results__option {
  font-size: 2.6rem;
  line-height: 1.23;
  padding: 1.5rem 2rem;
}
@media (min-width: 768px) {
  .select2-container .select2-results__option {
    font-size: 1.3rem;
    padding: 0.7rem 1rem;
  }
}
.select2-dropdown {
  padding: 0 7rem 0 0;
  border: 0.8rem solid var(--color-primary) !important;
  border-radius: 0.5rem !important;
  background-color: #FFF;
}
@media (min-width: 768px) {
  .select2-dropdown {
    border-width: var(--input-border-width);
    left: -4px;
    width: calc(100% + 8px);
    padding: 0 4rem 0 0;
  }
}
.select2-dropdown::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: -3px;
  top: 0;
  width: 7.2rem;
  height: 100%;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background: var(--color-primary) url("../images/common/icon_arrow02.png") no-repeat 50% 1.5rem;
  background-size: 2.5rem auto;
}
@media (min-width: 768px) {
  .select2-dropdown::after {
    right: -4px;
    width: 4rem;
    background-size: 1.6rem auto;
  }
}
.select2-dropdown.select2-dropdown--above {
  margin-top: -0.8rem;
}
.select2-dropdown.select2-dropdown--below {
  margin-top: 0.8rem;
}
.select2-dropdown .select2-results__options {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.select2-dropdown .select2-results__options::-webkit-scrollbar {
  display: none;
}

.file-custom-wrap {
  margin-bottom: 3.5rem;
  padding: 1.8rem 1.8rem;
  border: 1px solid #c7d9e0;
  background-color: #f2f8fa;
}
.file-custom-wrap .c-txt {
  margin-top: 2rem;
}
.file-custom-wrap.active .file-custom {
  background-color: #9d9d9d;
}
.file-custom-wrap.active .file-custom__ttl {
  color: #9d9d9d;
}
@media (min-width: 768px) {
  .file-custom-wrap {
    padding: 3rem 3rem;
    margin-bottom: 3.5rem;
  }
  .file-custom-wrap .c-txt {
    margin-top: 2rem;
  }
}

.file-custom {
  display: flex;
  align-items: flex-end;
  width: 100%;
  padding: 2rem 2rem;
  background-color: var(--color-primary);
  border-radius: 5px;
}
@media (min-width: 768px) {
  .file-custom {
    max-width: 48rem;
    padding: 1.5rem 1.5rem;
  }
}
.file-custom__input {
  display: none;
}
.file-custom__label {
  min-width: 22rem;
  margin-right: 1.5rem;
  padding: 1.5rem 2rem;
  font-size: 2.6rem;
  color: var(--color-primary);
  border-radius: 5px;
  background-color: #FFF;
  font-weight: 700;
  transition: 0.2s opacity;
  cursor: pointer;
}
@media (min-width: 768px) {
  .file-custom__label {
    min-width: 16rem;
    border-radius: 4px;
    padding: 1rem 2rem;
    font-size: 1.8rem;
  }
  .file-custom__label:hover {
    opacity: 0.7;
  }
}
.file-custom__name {
  position: relative;
  font-size: 2rem;
  color: #FFF;
}
@media (min-width: 768px) {
  .file-custom__name {
    font-size: 1.6rem;
  }
}
.file-custom__image {
  display: flex;
  justify-content: center;
}
.file-custom__notice {
  display: none;
  margin-bottom: 0;
}
.file-custom__notice.active {
  display: block;
}

.file-custom-content {
  display: none;
  position: relative;
  margin-top: 3rem;
  background-color: #FFF;
}
.file-custom-content.active {
  display: block;
}
@media (min-width: 768px) {
  .file-custom-content {
    margin-top: 3rem;
    padding: 1.5rem 1.5rem;
  }
}

.file-custom-btn-close {
  position: absolute;
  width: 5rem;
  height: 5rem;
  top: 0;
  right: 0;
  background: var(--color-primary) url("../images/common/icon_x.png") no-repeat center/3.2rem auto;
  cursor: pointer;
  transition: 0.2s background-color;
}
@media (min-width: 768px) {
  .file-custom-btn-close {
    width: 2.4rem;
    height: 2.4rem;
    top: 2rem;
    right: 2rem;
    background-size: 1.2rem auto;
  }
  .file-custom-btn-close:hover {
    background-color: #034662;
  }
}

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

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

.nospace::before, .nospace::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.nospace::before {
  margin-block-end: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}
.nospace::after {
  margin-block-start: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}

.byte {
  font-feature-settings: "palt" 1, "pkna" 1, "pwid" 1, "pkna" 1;
}

@media (min-width: 768px) {
  a[href^=tel] {
    pointer-events: none;
  }
}

.w-100 {
  width: 100%;
}

.hover {
  transition: 0.3s ease;
}
.hover:hover {
  opacity: 0.7;
}

#c-contents {
  padding-block: 11.9rem 10.5rem;
}

.cl-primary {
  color: var(--color-primary);
}

.cl-danger {
  color: var(--color-danger);
}

.cl-note {
  color: var(--color-note);
}

.fw-medium {
  font-weight: 500;
}

.c-txt {
  letter-spacing: var(--text-spacing, 0.06em);
  line-height: 1.8461538462;
}
.c-txt::before, .c-txt::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.c-txt::before {
  margin-block-end: calc((1 - 1.8461538462) * 0.5em);
}
.c-txt::after {
  margin-block-start: calc((1 - 1.8461538462) * 0.5em);
}
@media (min-width: 768px) {
  .c-txt {
    line-height: 2;
    --text-spacing: .15em;
  }
  .c-txt::before, .c-txt::after {
    content: "";
    display: block flow;
    inline-size: 0;
    block-size: 1px;
  }
  .c-txt::before {
    margin-block-end: calc((1 - 2) * 0.5em);
  }
  .c-txt::after {
    margin-block-start: calc((1 - 2) * 0.5em);
  }
}
.c-txt--justify {
  text-align: justify;
}

.c-link {
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  transition: all 0.25s ease-in-out;
}
@media (min-width: 768px) {
  .c-link:hover {
    color: var(--color-hover);
    border-bottom: 0;
  }
}

@media (min-width: 768px) {
  .c-link-2:hover {
    text-decoration: underline;
  }
}

.c-headline {
  background: url("../images/common/bg_hline.jpg") no-repeat center/cover;
  color: #fff;
  display: flex;
  align-items: center;
  height: 31rem;
  margin-bottom: 3.2rem;
}
@media (min-width: 768px) {
  .c-headline {
    height: 28.6rem;
    margin-bottom: 2.4rem;
  }
}
.c-headline__sub {
  font-family: var(--font-en);
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}
.c-headline__sub::before, .c-headline__sub::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.c-headline__sub::before {
  margin-block-end: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}
.c-headline__sub::after {
  margin-block-start: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}
@media (min-width: 768px) {
  .c-headline__sub {
    font-size: 2rem;
  }
}
.c-headline__ttl {
  font-size: 4.8rem;
  font-weight: bold;
  letter-spacing: 0.18em;
  margin-bottom: 3.3rem;
}
.c-headline__ttl::before, .c-headline__ttl::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.c-headline__ttl::before {
  margin-block-end: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}
.c-headline__ttl::after {
  margin-block-start: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}
@media (min-width: 768px) {
  .c-headline__ttl {
    font-size: 4rem;
  }
}
.c-headline__txt {
  letter-spacing: 0.18em;
}
.c-headline__txt::before, .c-headline__txt::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.c-headline__txt::before {
  margin-block-end: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}
.c-headline__txt::after {
  margin-block-start: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}

.s-headline {
  margin-bottom: 6.4rem;
  padding-bottom: 4.4rem;
  position: relative;
  text-align: center;
}
@media (min-width: 768px) {
  .s-headline {
    padding-bottom: 4rem;
  }
}
.s-headline::after {
  content: "";
  background-color: var(--color-primary);
  height: 0.8rem;
  width: 6.4rem;
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -3.2rem;
}
@media (min-width: 768px) {
  .s-headline::after {
    height: 0.4rem;
  }
}
.s-headline--white::after {
  background-color: #FFF;
}
.s-headline__sub {
  color: var(--color-primary);
  font-family: var(--font-en);
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  margin-bottom: 2.5rem;
}
.s-headline__sub::before, .s-headline__sub::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.s-headline__sub::before {
  margin-block-end: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}
.s-headline__sub::after {
  margin-block-start: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}
@media (min-width: 768px) {
  .s-headline__sub {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
.s-headline__sub--white {
  color: #FFF;
}
.s-headline__ttl {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 0.08em;
}
.s-headline__ttl::before, .s-headline__ttl::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.s-headline__ttl::before {
  margin-block-end: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}
.s-headline__ttl::after {
  margin-block-start: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}
.s-headline__ttl--white {
  color: #FFF;
}

.c-number {
  counter-reset: number;
}
.c-number li {
  counter-increment: number;
}
.c-number li::before {
  content: counter(number) ".";
}

.c-number-deci {
  counter-reset: number;
}
.c-number-deci > li {
  counter-increment: number;
  display: flex;
  align-items: center;
}
.c-number-deci > li.start {
  align-items: flex-start;
}
.c-number-deci > li::before {
  content: counter(number, decimal-leading-zero);
  font-weight: bold;
  font-family: var(--font-en-2);
  color: var(--color-primary);
}

.c-list-dot li {
  display: flex;
  gap: 1rem;
}
.c-list-dot li:not(:last-child) {
  margin-bottom: 1rem;
}
.c-list-dot li::before {
  content: "・";
  color: var(--color-primary);
}

.c-circle-dot li {
  display: flex;
}
.c-circle-dot li::before {
  content: "○";
  margin-right: 0.3rem;
}

.c-note {
  line-height: 1.6;
  font-size: 2rem;
  letter-spacing: 0.06em;
}
@media (min-width: 768px) {
  .c-note {
    letter-spacing: 0.1em;
    font-size: 1.1rem;
  }
}
@media (min-width: 768px) {
  .c-note--medium {
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) {
  .c-note--large {
    font-size: 1.8rem;
  }
}
@media (min-width: 768px) {
  .c-note:not(.c-note--inline) li {
    display: flex;
  }
}
.c-note li:not(:last-child) {
  margin-bottom: 1.2rem;
}
.c-note li::before {
  content: "※";
  color: var(--color-note);
  margin-right: 0.6rem;
}
.c-note li.break-word {
  overflow-wrap: break-word;
  word-break: break-all;
  white-space: normal;
}

.c-note-number {
  counter-reset: compar;
}
.c-note-number li {
  counter-increment: compar;
  text-align: justify;
  line-height: 1.8181818182;
  letter-spacing: 0.05em;
  font-size: 2rem;
}
@media (min-width: 768px) {
  .c-note-number li {
    letter-spacing: 0.1em;
    font-size: 1.1rem;
    display: flex;
    gap: 0.8rem;
  }
}
.c-note-number li:not(:last-child) {
  margin-bottom: 1.8rem;
}
@media (min-width: 768px) {
  .c-note-number li:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.c-note-number li::before {
  content: "※" counter(compar);
  color: var(--color-note);
}

.c-note-2 {
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .c-note-2 {
    margin-bottom: 2rem;
  }
}
.c-note-2 > li {
  display: flex;
  margin-bottom: 1rem;
  font-size: 2.8rem;
}
.c-note-2 > li:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .c-note-2 > li {
    font-size: 1.6rem;
  }
}
.c-note-2 > li span {
  width: 5rem;
  min-width: 5rem;
}
@media (min-width: 768px) {
  .c-note-2 > li span {
    width: 3rem;
    min-width: 3rem;
    font-size: 1.6rem;
  }
}

.c-circle {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .c-circle {
    margin-bottom: 4rem;
  }
}
.c-circle li {
  position: relative;
  padding-left: 2rem;
  font-size: 2.6rem;
  color: var(--text-color);
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0;
}
.c-circle li::after {
  position: absolute;
  left: -0.3rem;
  top: 1.6rem;
  width: 0.7rem;
  height: 0.7rem;
  background-color: var(--color-primary);
  border-radius: 0.7rem;
  content: "";
}
.c-circle li:not(:last-child) {
  margin-bottom: 0.8rem;
}
@media (min-width: 768px) {
  .c-circle li {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.06rem;
  }
  .c-circle li::after {
    left: 0.8rem;
    width: 0.5rem;
    height: 0.5rem;
  }
  .c-circle li:not(:last-child) {
    margin-bottom: 1.1rem;
  }
}

.news-list .cate_maintenance {
  --news-cate-color: #08998d;
}
.news-list .cate_procedural-matters {
  --news-cate-color: #089956;
}
.news-list .cate_system-reform {
  --news-cate-color: #2c3071;
}
@media (min-width: 768px) {
  .news-list {
    --news-color-cta: var(--color-primary);
    border-top: 1px solid #c7d9e0;
  }
}
@media (min-width: 768px) {
  .news-list > li {
    border-bottom: 1px solid #c7d9e0;
    padding-block: 1.6rem;
  }
}
@media (max-width: 767px) {
  .news-list > li {
    margin-bottom: 2.4rem;
  }
  .news-list > li:last-child {
    margin-bottom: 0;
  }
}
.news-list .news-item {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .news-list .news-item {
    flex-wrap: nowrap;
    gap: 0.8rem 1.4rem;
  }
  .news-list .news-item:hover {
    --news-color-cta: var(--color-hover);
  }
  .news-list .news-item:hover .news-item__cta {
    text-decoration: underline;
    text-underline-offset: 0.4rem;
  }
  .news-list .news-item:hover .news-item__cta::before {
    background-image: url("../images/common/icon_arrow01_hover.png");
  }
}
@media (max-width: 767px) {
  .news-list .news-item {
    background-color: #fff;
    box-shadow: 0px 0.8rem 0.616rem 0.184rem rgba(7, 80, 117, 0.05);
    color: var(--color-primary);
    gap: 0.4rem 1.2rem;
    padding: 3.6rem 3.6rem 3.6rem 7.4rem;
    position: relative;
  }
  .news-list .news-item::before {
    content: "";
    background: url("../images/common/icon_arrow01.png") no-repeat center/contain;
    height: 2.5rem;
    width: 2.3rem;
    margin-top: -1.3rem;
    position: absolute;
    left: 3.2rem;
    top: 50%;
  }
}
.news-list .news-item__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  font-family: var(--font-en-2);
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  padding-top: 0.2rem;
  height: 2.4rem;
  min-width: 8rem;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .news-list .news-item__tag {
    font-size: 1.4rem;
  }
}
.news-list .news-item__date, .news-list .news-item__day {
  font-family: var(--font-en-2);
  font-size: 1.6rem;
  font-weight: bold;
  flex-shrink: 0;
  text-transform: lowercase;
}
.news-list .news-item__cate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--news-cate-color, #222);
  color: #fff;
  flex-shrink: 0;
  font-size: 1.6rem;
  letter-spacing: 0.09em;
  height: 2.8rem;
  padding-inline: 1rem;
  min-width: 12rem;
  text-align: center;
}
@media (min-width: 768px) {
  .news-list .news-item__cate {
    font-size: 1.3rem;
    height: 2.4rem;
    padding-inline: 0.5rem;
    min-width: 9.6rem;
  }
}
@media (max-width: 767px) {
  .news-list .news-item__cate {
    position: relative;
    top: -0.2rem;
  }
}
.news-list .news-item__txt {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 2rem;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .news-list .news-item__txt {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .news-list .news-item__txt {
    font-weight: 500;
    width: 100%;
  }
}
.news-list .news-item__cta {
  display: none;
}
@media (min-width: 768px) {
  .news-list .news-item__cta {
    color: var(--news-color-cta);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-shrink: 0;
    font-size: 1.6rem;
    font-weight: 500;
    margin-left: auto;
  }
  .news-list .news-item__cta::before {
    content: "";
    background: url("../images/common/icon_arrow01.png") no-repeat center/contain;
    height: 1.5rem;
    width: 1.4rem;
  }
}

.c-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin-top: 5.5rem;
}
.c-pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}
.c-pagination .next a,
.c-pagination .prev a, .c-pagination .page-numbers {
  border: 0.3rem solid var(--color-primary);
  background-color: var(--color-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 4rem;
  width: 4rem;
  transition: 0.2s ease;
}
.c-pagination .next a:hover,
.c-pagination .prev a:hover, .c-pagination .page-numbers:hover, .c-pagination .next a.current,
.c-pagination .prev a.current, .c-pagination .current.page-numbers {
  background-color: #fff;
  color: var(--color-primary);
}
.c-pagination .page-numbers {
  font-family: var(--font-en-2);
  font-size: 2rem;
  font-weight: bold;
}
.c-pagination .pager-dotted {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.c-pagination .pager-dotted::before, .c-pagination .pager-dotted::after {
  content: "";
}
.c-pagination .pager-dotted::before, .c-pagination .pager-dotted::after,
.c-pagination .pager-dotted span {
  background-color: var(--color-primary);
  border-radius: 50%;
  height: 0.8rem;
  width: 0.8rem;
}
.c-pagination .next a::after,
.c-pagination .prev a::after {
  content: "";
  background: url("../images/common/icon_arrow01.png") no-repeat center/contain;
  height: 1.5rem;
  width: 1.4rem;
  filter: brightness(0) invert(1);
  transition: 0.2s ease;
}
.c-pagination .next a:hover::after,
.c-pagination .prev a:hover::after {
  filter: none;
}
.c-pagination .next.disabled,
.c-pagination .prev.disabled {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.c-pagination .prev a::after {
  transform: scaleX(-1);
}
/*# sourceMappingURL=maps/style.css.map */
