:root {
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-en: "Montserrat", sans-serif;
  --font-inter: "Inter", sans-serif;
  --font-weight-base: 400;
  --lineheight-base: 1.5;
  --font-size-base: 1.4rem;
  --color-primary: #11334E;
  --color-secondary: #2D99B8;
  --color-basic: #F39B28;
  --color-highlight: #FFF541;
  --color-warning: #f00;
  --input-border-color: #e6e6e6;
  --input-border-width: 0.1rem;
  --input-font-size: 14px;
  --input-font-weight: 400;
  --input-background: #fff;
}
@media (min-width: 768px) {
  :root {
    --font-size-base: 1.6rem;
  }
}

* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  html {
    font-size: 2.667vw;
  }
}
html.prevent-scroll {
  overflow-y: hidden;
}
html.noscroll {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}

body {
  background-color: #fff;
  color: var(--color-primary);
  margin: 0;
  font-family: var(--font-family-base);
  font-weight: 500;
  font-size: var(--font-size-base);
  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;
}

figure {
  margin: 0;
  padding: 0;
}

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;
}

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

.container {
  margin: auto;
  max-width: 127.8rem;
  padding-left: 2rem;
  padding-right: 2rem;
  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: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
}
@media (min-width: 1025px) {
  .d-tb-none {
    display: none !important;
  }
  .d-tb-block {
    display: block !important;
  }
  .d-tb-flex {
    display: flex !important;
  }
}
@media (min-width: 1238px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
}
@media (min-width: 1440px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-flex {
    display: flex !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: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1025px) {
  .text-tb-left {
    text-align: left !important;
  }
  .text-tb-right {
    text-align: right !important;
  }
  .text-tb-center {
    text-align: center !important;
  }
}
@media (min-width: 1238px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1440px) {
  .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;
}

.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-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;
}

.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-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;
}

.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-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-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-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;
  }
  .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-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;
  }
  .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-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-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-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;
  }
  .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-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;
  }
  .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-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-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: 992px) {
  .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-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;
  }
  .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-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;
  }
  .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-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-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: 1025px) {
  .m-tb-0 {
    margin: 0 !important;
  }
  .mt-tb-0,
  .my-tb-0 {
    margin-top: 0 !important;
  }
  .mr-tb-0,
  .mx-tb-0 {
    margin-right: 0 !important;
  }
  .mb-tb-0,
  .my-tb-0 {
    margin-bottom: 0 !important;
  }
  .ml-tb-0,
  .mx-tb-0 {
    margin-left: 0 !important;
  }
  .m-tb-5 {
    margin: 0.5rem !important;
  }
  .mt-tb-5,
  .my-tb-5 {
    margin-top: 0.5rem !important;
  }
  .mr-tb-5,
  .mx-tb-5 {
    margin-right: 0.5rem !important;
  }
  .mb-tb-5,
  .my-tb-5 {
    margin-bottom: 0.5rem !important;
  }
  .ml-tb-5,
  .mx-tb-5 {
    margin-left: 0.5rem !important;
  }
  .m-tb-10 {
    margin: 1rem !important;
  }
  .mt-tb-10,
  .my-tb-10 {
    margin-top: 1rem !important;
  }
  .mr-tb-10,
  .mx-tb-10 {
    margin-right: 1rem !important;
  }
  .mb-tb-10,
  .my-tb-10 {
    margin-bottom: 1rem !important;
  }
  .ml-tb-10,
  .mx-tb-10 {
    margin-left: 1rem !important;
  }
  .m-tb-20 {
    margin: 2rem !important;
  }
  .mt-tb-20,
  .my-tb-20 {
    margin-top: 2rem !important;
  }
  .mr-tb-20,
  .mx-tb-20 {
    margin-right: 2rem !important;
  }
  .mb-tb-20,
  .my-tb-20 {
    margin-bottom: 2rem !important;
  }
  .ml-tb-20,
  .mx-tb-20 {
    margin-left: 2rem !important;
  }
  .p-tb-0 {
    padding: 0 !important;
  }
  .pt-tb-0,
  .py-tb-0 {
    padding-top: 0 !important;
  }
  .pr-tb-0,
  .px-tb-0 {
    padding-right: 0 !important;
  }
  .pb-tb-0,
  .py-tb-0 {
    padding-bottom: 0 !important;
  }
  .pl-tb-0,
  .px-tb-0 {
    padding-left: 0 !important;
  }
  .p-tb-5 {
    padding: 0.5rem !important;
  }
  .pt-tb-5,
  .py-tb-5 {
    padding-top: 0.5rem !important;
  }
  .pr-tb-5,
  .px-tb-5 {
    padding-right: 0.5rem !important;
  }
  .pb-tb-5,
  .py-tb-5 {
    padding-bottom: 0.5rem !important;
  }
  .pl-tb-5,
  .px-tb-5 {
    padding-left: 0.5rem !important;
  }
  .p-tb-10 {
    padding: 1rem !important;
  }
  .pt-tb-10,
  .py-tb-10 {
    padding-top: 1rem !important;
  }
  .pr-tb-10,
  .px-tb-10 {
    padding-right: 1rem !important;
  }
  .pb-tb-10,
  .py-tb-10 {
    padding-bottom: 1rem !important;
  }
  .pl-tb-10,
  .px-tb-10 {
    padding-left: 1rem !important;
  }
  .p-tb-20 {
    padding: 2rem !important;
  }
  .pt-tb-20,
  .py-tb-20 {
    padding-top: 2rem !important;
  }
  .pr-tb-20,
  .px-tb-20 {
    padding-right: 2rem !important;
  }
  .pb-tb-20,
  .py-tb-20 {
    padding-bottom: 2rem !important;
  }
  .pl-tb-20,
  .px-tb-20 {
    padding-left: 2rem !important;
  }
  .m-tb-n5 {
    margin: -0.5rem !important;
  }
  .mt-tb-n5,
  .my-tb-n5 {
    margin-top: -0.5rem !important;
  }
  .mr-tb-n5,
  .mx-tb-n5 {
    margin-right: -0.5rem !important;
  }
  .mb-tb-n5,
  .my-tb-n5 {
    margin-bottom: -0.5rem !important;
  }
  .ml-tb-n5,
  .mx-tb-n5 {
    margin-left: -0.5rem !important;
  }
  .m-tb-n10 {
    margin: -1rem !important;
  }
  .mt-tb-n10,
  .my-tb-n10 {
    margin-top: -1rem !important;
  }
  .mr-tb-n10,
  .mx-tb-n10 {
    margin-right: -1rem !important;
  }
  .mb-tb-n10,
  .my-tb-n10 {
    margin-bottom: -1rem !important;
  }
  .ml-tb-n10,
  .mx-tb-n10 {
    margin-left: -1rem !important;
  }
  .m-tb-n20 {
    margin: -2rem !important;
  }
  .mt-tb-n20,
  .my-tb-n20 {
    margin-top: -2rem !important;
  }
  .mr-tb-n20,
  .mx-tb-n20 {
    margin-right: -2rem !important;
  }
  .mb-tb-n20,
  .my-tb-n20 {
    margin-bottom: -2rem !important;
  }
  .ml-tb-n20,
  .mx-tb-n20 {
    margin-left: -2rem !important;
  }
  .m-tb-auto {
    margin: auto !important;
  }
  .mt-tb-auto,
  .my-tb-auto {
    margin-top: auto !important;
  }
  .mr-tb-auto,
  .mx-tb-auto {
    margin-right: auto !important;
  }
  .mb-tb-auto,
  .my-tb-auto {
    margin-bottom: auto !important;
  }
  .ml-tb-auto,
  .mx-tb-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1238px) {
  .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-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;
  }
  .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-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;
  }
  .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-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-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: 1440px) {
  .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-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;
  }
  .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-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;
  }
  .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-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-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;
  }
}
.btn {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #1E1E1E;
  text-align: center;
  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 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  max-width: 45.5rem;
  width: 100%;
}
@media (min-width: 768px) {
  .btn-primary:hover .btn-primary__link {
    box-shadow: 0 0 0 0 #B46907;
  }
}
@media (max-width: 767px) {
  .btn-primary {
    max-width: 33.5rem;
    width: 100%;
  }
}
.btn-primary__txt {
  position: relative;
  margin-bottom: 1.2rem;
  padding-inline: 1.6rem;
  line-height: 1.2;
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 0.11em;
}
@media (min-width: 768px) {
  .btn-primary__txt {
    margin-bottom: 1.6rem;
    padding-inline: 2rem;
    font-size: 2rem;
    letter-spacing: 0.3em;
  }
}
.btn-primary__txt::before {
  position: absolute;
  left: 0;
  top: 1px;
  height: 1.6rem;
  width: 2px;
  border-radius: 0.2rem;
  background-color: var(--color-primary);
  transform: rotate(-35deg);
  content: "";
}
@media (min-width: 768px) {
  .btn-primary__txt::before {
    height: 2.2rem;
  }
}
.btn-primary__txt::after {
  position: absolute;
  right: 0;
  top: 1px;
  height: 1.6rem;
  width: 2px;
  border-radius: 0.2rem;
  background-color: var(--color-primary);
  transform: rotate(35deg);
  content: "";
}
@media (min-width: 768px) {
  .btn-primary__txt::after {
    height: 2.2rem;
  }
}
.btn-primary__link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-weight: 700;
  box-shadow: 0 0.4rem 0 0 #B46907;
  background-color: #F39B28;
  border-radius: 5rem;
  margin-bottom: 0.5rem;
  padding-inline: 6rem 5rem;
  transition: 0.3s box-shadow ease;
}
@media (min-width: 768px) {
  .btn-primary__link {
    padding-block: 2.2rem 2.5rem;
    padding-inline: 8.7rem 7.4rem;
    background: linear-gradient(to right, #F39B28 0%, #EB8A0C 100%);
  }
}
@media (max-width: 767px) {
  .btn-primary__link {
    padding-block: 1.3rem 2rem;
  }
}
.btn-primary__link::after {
  position: absolute;
  top: 50%;
  left: 2rem;
  width: 3.3rem;
  height: 3.3rem;
  transform: translateY(-50%);
  background: url("../images/common/icon_document.svg") no-repeat center;
  background-size: contain;
  content: "";
}
@media (min-width: 768px) {
  .btn-primary__link::after {
    width: 2.9rem;
    height: 3.8rem;
    left: 3.7rem;
  }
}
.btn-primary__sub {
  margin-bottom: 0.6rem;
  color: var(--color-highlight);
  line-height: 1;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .btn-primary__sub {
    margin-bottom: 0.8rem;
    font-size: 1.8rem;
  }
}
.btn-primary__ttl {
  color: #FFF;
  line-height: 1;
  font-size: clamp(2rem, 2.1vw, 2.8rem);
  letter-spacing: 0.05em;
}

.btn-info {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-block: 1.2rem 1.2rem;
  padding-inline: 5rem 3.8rem;
  border-radius: 5rem;
  background: linear-gradient(to right, #F39B28 0%, #EB8A0C 100%);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  line-height: 1;
  color: #FFF;
  transition: 0.3s filter ease;
}
@media (min-width: 768px) {
  .btn-info:hover {
    filter: brightness(1.1);
  }
}
.btn-info::after {
  position: absolute;
  top: 50%;
  left: 1.8rem;
  width: 1.7rem;
  height: 1.7rem;
  transform: translateY(-50%);
  background: url("../images/common/icon_document.svg") no-repeat center;
  background-size: 1.7rem auto;
  content: "";
}

.p-header {
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: 5.6rem;
  background-color: #FFF;
  box-shadow: 0 0.4rem 1.4rem 0 rgba(0, 0, 0, 0.05);
}
@media (min-width: 1238px) {
  .p-header {
    height: 7.2rem;
  }
}
.p-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: 1rem 0;
}
@media (min-width: 1238px) {
  .p-header__inner {
    padding-inline: 5rem;
    padding-block: 1.6rem;
  }
}
.p-header__logo {
  display: block;
  max-width: 22.9rem;
  width: 100%;
  aspect-ratio: 226/39;
}
.p-header__logo img {
  display: block;
  width: 100%;
}

.p-menu {
  display: none;
}
@media (min-width: 1238px) {
  .p-menu {
    display: flex;
    flex-direction: column;
    flex-direction: row;
    height: 100%;
  }
}
@media (max-width: 1237px) {
  .p-menu {
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    flex-direction: column;
    width: 100%;
    max-height: 100dvh;
    background: linear-gradient(to right, #41B1D1 0%, #2D99B8 100%);
    overflow-y: auto;
  }
}
.p-menu__wrap-btn {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  padding-inline: 2rem 2rem;
}
@media (min-width: 1238px) {
  .p-menu__wrap-btn {
    display: none;
  }
}
.p-menu__foot {
  display: none;
}
@media (max-width: 1237px) {
  .p-menu__foot {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 2rem;
    background-color: #FFF;
  }
}
.p-menu .btn-info {
  margin-left: clamp(1rem, 2.1vw, 4rem);
}
@media (max-width: 1237px) {
  .p-menu .btn-info {
    display: none !important;
  }
}
.p-menu .btn-primary__txt {
  color: #FFF;
}
.p-menu .btn-primary__txt::before, .p-menu .btn-primary__txt::after {
  background-color: #FFF;
}
.p-menu__logo {
  margin-bottom: 1.9rem;
}
.p-menu__copyright {
  font-size: 1.1rem;
  font-family: var(--font-en);
  line-height: 1.2;
  color: #434E56;
}

.nav-1 {
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
  padding-inline: 2rem;
  padding-top: 3rem;
}
@media (min-width: 1238px) {
  .nav-1 {
    flex-direction: row;
    gap: 4rem;
    margin-bottom: 0;
    padding-inline: 0;
    padding-top: 0;
  }
}
@media (max-width: 1300px) {
  .nav-1 {
    gap: clamp(1rem, 2.1vw, 4rem);
  }
}
.nav-1 li {
  display: flex;
  align-items: center;
}
.nav-1 a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.4rem 1.5rem;
  font-size: 1.6rem;
  color: #FFF;
}
@media (min-width: 1238px) {
  .nav-1 a {
    padding-inline: 0;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    color: var(--color-primary);
  }
  .nav-1 a:hover::after {
    width: 100%;
  }
}
.nav-1 a::after {
  position: absolute;
  width: 0;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: var(--color-primary);
  transition: 0.3s width ease;
  content: "";
}
.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 5.6rem;
  height: 5.6rem;
  cursor: pointer;
}
@media (min-width: 1238px) {
  .hamburger {
    display: none;
  }
}
.hamburger.active {
  z-index: 200;
}
.hamburger.active .hamburger__box span {
  background: linear-gradient(to right, #FFF 0%, #FFF 100%);
}
.hamburger.active .hamburger__box span:nth-child(1) {
  transform: rotate(20deg);
  top: 0.5rem;
}
.hamburger.active .hamburger__box span:nth-child(2) {
  top: 0.5rem;
  transform: rotate(-20deg);
}
@media (max-width: 1237px) {
  .hamburger.active .hamburger__ttl {
    -webkit-text-fill-color: #FFF;
  }
}
.hamburger__ttl {
  display: inline-block;
  position: absolute;
  right: 1.1rem;
  bottom: 1rem;
  font-size: 1rem;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  background: linear-gradient(to right, #41B1D1 0%, #2D99B8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.05em;
}
.hamburger__box {
  position: absolute;
  top: 1.7rem;
  right: 1.1rem;
  display: block;
  width: 2.8rem;
  height: 1.2rem;
}
.hamburger__box span {
  display: block;
  position: absolute;
  right: 0;
  width: 2.8rem;
  height: 0.3rem;
  border-radius: 0.3rem;
  background: linear-gradient(to right, #41B1D1 0%, #2D99B8 100%);
  transition: 0.2s transform, 0.2s background-color;
}
.hamburger__box span:nth-child(1) {
  top: 0;
}
.hamburger__box span:nth-child(2) {
  top: 0.9rem;
}

.nav-2 {
  display: flex;
  gap: 3.1rem;
  margin-bottom: 1.6rem;
}
.nav-2 a {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
}
.nav-2 a::after {
  position: relative;
  top: 0.2rem;
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  margin-left: 0.4rem;
  background: url("../images/common/icon_blank.svg") no-repeat center;
  background-size: 1.1rem auto;
  content: "";
}

.p-mv {
  padding-block: 2.4rem 11rem;
  background: url("../images/bg_mv_sp.png") no-repeat;
  background-position: center 97%;
  background-size: contain;
}
@media (min-width: 768px) {
  .p-mv {
    padding-block: 9rem 42rem;
    background-image: url("../images/bg_mv.png");
    background-size: auto 100%;
  }
}
.p-mv__inner {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .p-mv__inner {
    flex-direction: row;
  }
}
.p-mv__content {
  width: 100%;
  padding-right: 0;
}
@media (min-width: 768px) {
  .p-mv__content {
    width: 50%;
    padding-right: 2rem;
  }
}
.p-mv__box-ttl {
  overflow: hidden;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .p-mv__box-ttl {
    width: 100%;
    margin-bottom: 3rem;
    max-width: 59rem;
  }
}
.p-mv__box-image {
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .p-mv__box-image {
    width: 50%;
  }
}
.p-mv__image {
  position: static;
  margin-bottom: 2.7rem;
  transform: translateX(2rem);
  padding-left: 2.8rem;
}
@media (min-width: 768px) {
  .p-mv__image {
    position: absolute;
    left: -1.5rem;
    top: 0;
    width: 50vw;
    margin-bottom: 0;
    padding-left: 0;
  }
}
.p-mv__image img {
  display: block;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.p-mv__txt {
  margin-bottom: 2rem;
  font-size: clamp(1.5rem, 1.5vw, 2.8rem);
  line-height: 1.4;
  font-weight: 700;
}
@media (min-width: 768px) {
  .p-mv__txt {
    margin-bottom: 4.5rem;
  }
}
.p-mv .btn-primary.pc {
  width: 100%;
  max-width: 45.5rem;
}

.p-footer {
  box-shadow: 0 -0.5rem 2.4rem rgba(0, 0, 0, 0.1);
}
.p-footer__wrap {
  padding: 2.4rem 2rem 5rem;
  display: flex;
}
@media (min-width: 768px) {
  .p-footer__wrap {
    padding: 5rem 5rem;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .p-footer__wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.9rem;
  }
}
@media (min-width: 768px) {
  .p-footer__right {
    padding-top: 1rem;
  }
}
.p-footer__logo {
  width: 22rem;
}
@media (min-width: 768px) {
  .p-footer__logo {
    width: 22.6rem;
  }
}
.p-footer__logo img {
  width: 100%;
}
.p-footer__link {
  display: flex;
  gap: 3rem;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .p-footer__link {
    margin-bottom: 2.4rem;
  }
}
.p-footer__link-item {
  color: #11334E;
  transition: 0.3s opacity ease;
}
@media (min-width: 768px) {
  .p-footer__link-item:hover {
    opacity: 0.8;
  }
}
.p-footer__link-item::after {
  position: relative;
  top: 0.2rem;
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  margin-left: 0.4rem;
  background: url("../images/common/icon_blank.svg") no-repeat center;
  background-size: 1.1rem auto;
  content: "";
}
.p-footer__copyright {
  font-weight: 500;
  color: #434E56;
  font-family: var(--font-en);
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .p-footer__copyright {
    text-align: right;
  }
}

.form-control {
  background-color: var(--input-background);
  background-clip: padding-box;
  border: var(--input-border-width) solid var(--input-border-color);
  color: #000;
  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: 0.5rem 1rem;
  width: 100%;
  height: 6rem;
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
.form-control::-moz-placeholder {
  color: #e6e6e6;
  opacity: 1;
}
.form-control::placeholder {
  color: #e6e6e6;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  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;
}

.table {
  width: 100%;
}

.hline01 {
  font-weight: 700;
  font-size: 2.6rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .hline01 {
    font-size: 4.8rem;
    margin-bottom: 2.5rem;
  }
}
.hline01--center {
  text-align: center;
}

.hline02 {
  font-weight: 700;
  margin-bottom: 1rem;
  padding: 0.8rem 1rem;
  background: linear-gradient(to right, #41B1D1 0%, #2D99B8 100%);
  border-radius: 0.5rem;
  color: #FFF;
  text-align: center;
  font-size: clamp(1.6rem, 2vw, 2.4rem);
}
@media (min-width: 768px) {
  .hline02 {
    margin-bottom: 1.2rem;
    max-width: 59rem;
    width: 100%;
    border-radius: 0.8rem;
    letter-spacing: 0.06em;
  }
}

.hline03 {
  font-weight: 700;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .hline03 {
    margin-bottom: 2rem;
  }
}
.hline03__ttl {
  margin-bottom: 1.3rem;
  font-size: clamp(2.3rem, 3.2vw, 4.5rem);
  letter-spacing: -0.03em;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .hline03__ttl {
    margin-bottom: 2rem;
  }
}
.hline03__sub {
  display: inline-flex;
  position: relative;
  font-size: 3.2rem;
  font-size: clamp(3.2rem, 3.5vw, 5rem);
  white-space: nowrap;
  letter-spacing: -0.08em;
}
.hline03__sub::after {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0.5rem;
  width: var(--bar-width, 0%);
  height: 1.4rem;
  background-color: #FFF541;
  content: "";
}
@media (min-width: 768px) {
  .hline03__sub {
    letter-spacing: -0.06em;
  }
  .hline03__sub::after {
    bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .hline03__sub.custom {
    letter-spacing: -0.03em;
  }
}

@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);
}

.p-wrapper {
  padding-top: 5.6rem;
}
@media (min-width: 768px) {
  .p-wrapper {
    padding-top: 7.2rem;
  }
}

.p-overlay {
  display: none;
  position: fixed;
  z-index: 90;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .sec-concer {
    margin-top: -10rem;
  }
}
.sec-concer__block {
  padding-block: 4rem 2.4rem;
  padding-inline: 1.6rem;
  margin-bottom: 2.4rem;
  border-radius: 2.4rem;
  box-shadow: 0 0.4rem 2rem 0 rgba(0, 0, 0, 0.1);
  background: linear-gradient(to right, #F8F8F8 0%, #F1F1F1 100%), url("../images/bg_concer_sp.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (min-width: 768px) {
  .sec-concer__block {
    margin-bottom: 3.2rem;
    padding-block: 4rem 4.8rem;
    padding-inline: 3rem;
    background-image: url("../images/bg_concer.png");
  }
}
.sec-concer__hline {
  margin-bottom: 2.4rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
.sec-concer__hline span {
  font-size: 3.2rem;
}
@media (min-width: 768px) {
  .sec-concer__hline {
    margin-bottom: 5.5rem;
    font-size: 4rem;
  }
  .sec-concer__hline span {
    font-size: 5rem;
  }
}
.sec-concer__title {
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
  font-size: 1.8rem;
  line-height: 1.2;
  text-align: center;
  font-weight: 700;
}
.sec-concer__title .highlight {
  position: relative;
  font-size: 2.2rem;
  display: inline-block;
}
.sec-concer__title .highlight::after {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: -0.2rem;
  width: var(--bar-width, 0%);
  height: 1.2rem;
  background-color: #FFF541;
  content: "";
}
@media (min-width: 768px) {
  .sec-concer__title {
    margin-bottom: 5rem;
    font-size: 3.2rem;
  }
  .sec-concer__title .highlight {
    font-size: 4rem;
  }
  .sec-concer__title .highlight::after {
    height: 2.2rem;
    bottom: -0.6rem;
  }
}
.sec-concer__txt {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 600;
  text-align: left;
}
@media (min-width: 768px) {
  .sec-concer__txt {
    font-size: 1.6rem;
    text-align: center;
  }
}

.l-concer {
  display: flex;
  margin-bottom: 3rem;
  gap: 3.5rem;
}
@media (min-width: 768px) {
  .l-concer {
    gap: 2.4rem;
  }
}
@media (max-width: 1237px) {
  .l-concer {
    flex-direction: column;
  }
}
.l-concer li {
  position: relative;
  display: flex;
  width: 33.3333333333%;
  padding: 2.7rem 2rem;
  background-color: #FFF;
  border-radius: 2.4rem;
  border-bottom-right-radius: 0;
  box-shadow: 0 0.4rem 2rem 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 1237px) {
  .l-concer li {
    width: 100%;
  }
}
.l-concer__sub {
  margin-bottom: 0.3rem;
  color: #2D99B8;
  font-size: 1.2rem;
  font-family: var(--font-en);
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .l-concer__sub {
    margin-bottom: 0.5rem;
  }
}
.l-concer__ttl {
  line-height: 1.2;
  font-weight: 700;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .l-concer__ttl {
    font-size: 2rem;
  }
}
.l-concer__img {
  position: absolute;
  width: 100%;
}
.l-concer__img img {
  display: block;
  width: 100%;
}
.l-concer__img.img-1 {
  right: 2.5rem;
  bottom: 1.2rem;
  max-width: 11.9rem;
}
@media (max-width: 767px) {
  .l-concer__img.img-1 {
    right: 0.8rem;
    bottom: 0.6rem;
    max-width: 10.9rem;
  }
}
.l-concer__img.img-2 {
  right: 0.3rem;
  bottom: 0.9rem;
  max-width: 15.3rem;
}
@media (max-width: 767px) {
  .l-concer__img.img-2 {
    right: 0;
    bottom: 1.2rem;
    max-width: 11.6rem;
  }
}
.l-concer__img.img-3 {
  right: 0.3rem;
  bottom: 0.9rem;
  max-width: 11.7rem;
}
@media (max-width: 767px) {
  .l-concer__img.img-3 {
    right: 0.9rem;
    max-width: 10.8rem;
  }
}
.l-concer__img.img-4 {
  right: 2.4rem;
  bottom: 1rem;
  max-width: 12.6rem;
}
@media (max-width: 767px) {
  .l-concer__img.img-4 {
    right: 1.2rem;
    bottom: 0.7rem;
    max-width: 10.5rem;
  }
}
.l-concer__img.img-5 {
  right: 2.3rem;
  bottom: 0.9rem;
  max-width: 11.6rem;
}
@media (max-width: 767px) {
  .l-concer__img.img-5 {
    right: 1.1rem;
    bottom: 0.8rem;
    max-width: 10.6rem;
  }
}
.l-concer__img.img-6 {
  right: 2.2rem;
  bottom: 1.3rem;
  max-width: 12rem;
}
@media (max-width: 767px) {
  .l-concer__img.img-6 {
    right: 1rem;
    bottom: 0.7rem;
    max-width: 10.7rem;
  }
}

.p-section__btn {
  margin-top: 4.8rem;
  text-align: center;
}
@media (min-width: 768px) {
  .p-section__btn {
    margin-top: 6.4rem;
  }
}

.p-packaged {
  padding-block: 1.6rem 40.2666666667vw;
  position: relative;
}
@media (min-width: 768px) {
  .p-packaged {
    padding-block: 4.2rem 32.8472222222vw;
  }
}
.p-packaged::before {
  background: url("../images/bg_feedback_sp.png") no-repeat top center/cover;
  content: "";
  position: absolute;
  top: 74.4vw;
  left: 0;
  width: 100%;
  height: 692.5333333333vw;
  z-index: -1;
}
@media (min-width: 768px) {
  .p-packaged::before {
    background-image: url("../images/bg_packaged.png");
    top: 26.0416666667vw;
    height: 222.0138888889vw;
  }
}
.p-packaged::after {
  content: "";
  background: url("../images/bg_wave_sp.svg") no-repeat center/cover;
  width: 100%;
  height: 27.2vw;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (min-width: 768px) {
  .p-packaged::after {
    background-image: url("../images/bg_wave.svg");
    height: 27.6388888889vw;
  }
}
.p-packaged__union {
  background: url("../images/bg_union.svg") no-repeat center/cover;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.2));
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  max-width: 30.6rem;
  height: 4.862rem;
  padding-top: 1.1rem;
  margin-bottom: 1.4rem;
}
@media (min-width: 768px) {
  .p-packaged__union {
    font-size: 2.5rem;
    max-width: 46.8rem;
    height: 7.527rem;
    padding-top: 1.6rem;
    margin-bottom: 2.4rem;
  }
}
.p-packaged__union span {
  color: #FFF541;
}
.p-packaged__sub {
  color: var(--color-secondary);
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 0.2rem;
}
@media (min-width: 768px) {
  .p-packaged__sub {
    font-size: clamp(40px, 3.8888888889vw, 5.6rem);
    margin-bottom: 0.6rem;
  }
}
@media (max-width: 767px) {
  .p-packaged__sub {
    font-feature-settings: "palt" 1, "pkna" 1, "pwid" 1, "pkna" 1;
  }
}
.p-packaged__sub small {
  font-size: 1.7rem;
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .p-packaged__sub small {
    font-size: clamp(38px, 3.3333333333vw, 4.8rem);
  }
}
.p-packaged__ttl {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 768px) {
  .p-packaged__ttl {
    font-size: clamp(45px, 3.8888888889vw, 5.6rem);
    left: clamp(0px, 1.3194444444vw, 1.9rem);
  }
}
.p-packaged__ttl .highlight {
  position: relative;
  z-index: 1;
}
.p-packaged__ttl .highlight::after {
  content: "";
  background: #FFF541;
  width: var(--bar-width, 0%);
  height: 0.7rem;
  position: absolute;
  right: 0;
  bottom: 0.5rem;
  left: 0;
  z-index: -1;
}
@media (min-width: 768px) {
  .p-packaged__ttl .highlight::after {
    bottom: 1.5rem;
    height: 2.3rem;
  }
}
.p-packaged__ttl::before, .p-packaged__ttl::after {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
}
.p-packaged__ttl::before {
  background-image: url("../images/packaged_ttl_before_sp.svg");
  width: 4.17rem;
  height: 4.431rem;
  top: -2rem;
  left: -4.1rem;
}
@media (min-width: 768px) {
  .p-packaged__ttl::before {
    background-image: url("../images/packaged_ttl_before.svg");
    width: clamp(65px, 5.2083333333vw, 7.5rem);
    height: clamp(67px, 5.3472222222vw, 7.7rem);
    top: -1.4rem;
    left: -11.2rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-packaged__ttl::before {
    left: -6.5rem;
  }
}
.p-packaged__ttl::after {
  background-image: url("../images/packaged_ttl_after_sp.svg");
  width: 4.17rem;
  height: 4.431rem;
  top: -2.1rem;
  right: -3.5rem;
}
@media (min-width: 768px) {
  .p-packaged__ttl::after {
    background-image: url("../images/packaged_ttl_after.svg");
    width: clamp(65.5px, 5.2430555556vw, 7.55rem);
    height: clamp(68px, 5.4166666667vw, 7.8rem);
    top: -1.3rem;
    right: -7.2rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-packaged__ttl::after {
    right: -5.5rem;
  }
}
.p-packaged__desc {
  font-size: 1.4rem;
  font-family: var(--font-inter);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: -0.05em;
  text-align: center;
  margin-top: 2.4rem;
}
@media (min-width: 768px) {
  .p-packaged__desc {
    font-size: 1.8rem;
    letter-spacing: 0;
    margin-top: 4.8rem;
  }
}
@media (max-width: 767px) {
  .p-packaged__desc {
    font-feature-settings: "palt" 1, "pkna" 1, "pwid" 1, "pkna" 1;
  }
}
.p-packaged__card {
  display: flex;
  gap: 3.8rem;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 5.2rem;
}
@media (min-width: 768px) {
  .p-packaged__card {
    gap: 9.7rem;
    gap: clamp(30px, 6.7361111111vw, 9.7rem);
    flex-direction: row-reverse;
    margin-top: 17.2rem;
  }
}
@media (max-width: 767px) {
  .p-packaged__card {
    padding-inline: 1.6rem 1.7rem;
  }
}
.p-packaged__card-media {
  border-radius: 1.2rem;
  filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.1));
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-packaged__card-media {
    border-radius: 2.4rem;
    width: 60rem;
    width: clamp(300px, 41.6666666667vw, 60rem);
    flex-shrink: 0;
  }
}
@media (min-width: 768px) {
  .p-packaged__card-content {
    margin-top: 4.2rem;
    margin-top: clamp(20px, 2.9166666667vw, 4.2rem);
  }
}
.p-packaged__card-ttl {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .p-packaged__card-ttl {
    font-size: 4.8rem;
    font-size: clamp(30px, 3.3333333333vw, 4.8rem);
  }
}
.p-packaged__card-desc {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 1.6rem;
}
@media (min-width: 768px) {
  .p-packaged__card-desc {
    font-size: 1.8rem;
    font-size: clamp(16px, 1.25vw, 1.8rem);
    margin-top: 5.5rem;
    margin-top: clamp(30px, 3.8194444444vw, 5.5rem);
  }
}
.p-packaged__list {
  margin-top: 2.4rem;
}
@media (min-width: 768px) {
  .p-packaged__list {
    margin-top: 7.2rem;
  }
}
.p-packaged .card-item {
  background-color: #fff;
  border-radius: 1.2rem;
  filter: drop-shadow(0px 4px 20px rgba(45, 153, 184, 0.1));
  padding: 1.5rem 1.5rem 2rem;
}
@media (min-width: 768px) {
  .p-packaged .card-item {
    border-radius: 2.4rem;
    padding: 5.6rem;
    padding: clamp(20px, 3.8888888889vw, 5.6rem);
  }
}
.p-packaged .card-item:not(:first-child) {
  margin-top: 2.4rem;
}
@media (min-width: 768px) {
  .p-packaged .card-item:not(:first-child) {
    margin-top: 6.4rem;
  }
}
.p-packaged .card-box {
  display: flex;
}
@media (min-width: 768px) {
  .p-packaged .card-box {
    gap: 4.8rem 4.5rem;
    gap: clamp(24px, 3.3333333333vw, 4.8rem) clamp(24px, 3.125vw, 4.5rem);
  }
}
@media (min-width: 768px) {
  .p-packaged .card-box:not(:first-child) {
    margin-top: 6.4rem;
  }
}
.p-packaged .card-num {
  border-radius: 2.4rem 2.4rem 0 2.4rem;
  background: #41B1D1;
  background: linear-gradient(90deg, rgb(65, 177, 209) 0%, rgb(45, 153, 184) 100%);
  color: #fff;
  font-family: var(--font-en);
  font-weight: bold;
  width: 8.7rem;
  height: 3.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .p-packaged .card-num {
    font-size: 1.4rem;
    width: 12.3rem;
    height: 3.7rem;
    margin-bottom: 1.6rem;
  }
}
.p-packaged .card-ttl {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1.9rem;
}
@media (min-width: 768px) {
  .p-packaged .card-ttl {
    font-size: 3.8rem;
    font-size: clamp(24px, 2.6388888889vw, 3.8rem);
    margin-bottom: 4.7rem;
    margin-bottom: clamp(20px, 3.2638888889vw, 4.7rem);
  }
}
.p-packaged .card-media {
  border-radius: 0.8rem;
  overflow: hidden;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .p-packaged .card-media {
    border-radius: 2.4rem;
    width: 54.4rem;
    width: clamp(300px, 37.7777777778vw, 54.4rem);
    flex-shrink: 0;
    margin-bottom: 0;
  }
}
.p-packaged .card-desc {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .p-packaged .card-desc {
    font-size: 1.8rem;
    font-size: clamp(16px, 1.25vw, 1.8rem);
  }
}
.p-packaged .card-features {
  margin-top: 2.4rem;
}
@media (min-width: 1025px) {
  .p-packaged .card-features {
    margin-top: -1.2rem;
  }
}
.p-packaged .card-features p {
  color: var(--color-secondary);
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 1.2rem;
}
@media (min-width: 768px) {
  .p-packaged .card-features p {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
  }
}
.p-packaged .card-features__list {
  display: grid;
  gap: 0.5rem 0.6rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .p-packaged .card-features__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
    margin-left: -0.9rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .p-packaged .card-features__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-packaged .card-features__list li {
  background: #F1FAFC;
  background: linear-gradient(90deg, #F1FAFC 0%, #E2F3F3 100%);
  border-radius: 0.6rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.8;
  padding: 0.8rem;
}
@media (min-width: 768px) {
  .p-packaged .card-features__list li {
    font-size: 1.8rem;
    gap: 1.6rem;
    border-radius: 1.2rem;
    padding: 1.2rem 2rem;
  }
}
.p-packaged .card-features__list li span {
  background: #41B1D1;
  background: linear-gradient(90deg, rgb(65, 177, 209) 0%, rgb(45, 153, 184) 100%);
  border-radius: 50%;
  width: 1.4rem;
  aspect-ratio: 1;
  flex-shrink: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .p-packaged .card-features__list li span {
    width: 2.6rem;
  }
}
.p-packaged .card-features__list li span::after {
  content: "";
  background: url("../images/common/icon_check.svg") no-repeat center/contain;
  width: 0.7rem;
  aspect-ratio: 1;
}
@media (min-width: 768px) {
  .p-packaged .card-features__list li span::after {
    width: 1.4rem;
  }
}

.p-reason {
  background-color: #fff;
  position: relative;
  margin-top: -7.7333333333vw;
  padding-block: 0 7rem;
}
@media (min-width: 768px) {
  .p-reason {
    padding-block: 0 13.4rem;
    margin-top: -12.5vw;
  }
}
.p-reason .hline01 {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .p-reason .hline01 {
    margin-bottom: 9.4rem;
  }
}
.p-reason .card-item {
  display: flex;
}
@media (min-width: 768px) {
  .p-reason .card-item {
    gap: 4.8rem 4.5rem;
  }
}
@media (max-width: 767px) {
  .p-reason .card-item {
    padding-inline: 1.6rem 1.4rem;
  }
}
.p-reason .card-item:not(:first-child) {
  margin-top: 2.4rem;
}
@media (min-width: 768px) {
  .p-reason .card-item:not(:first-child) {
    margin-top: 7.2rem;
  }
}
@media (min-width: 768px) {
  .p-reason .card-item:first-child {
    -moz-column-gap: 4.1rem;
    column-gap: 4.1rem;
  }
}
@media (max-width: 767px) {
  .p-reason .card-item:last-child {
    margin-top: 4rem;
  }
}
.p-reason .card-item.card-item--chart {
  margin-top: 2.4rem;
}
@media (min-width: 768px) {
  .p-reason .card-item.card-item--chart {
    margin-top: 3.2rem;
  }
}
.p-reason .card-num {
  border-radius: 2.4rem 2.4rem 0 2.4rem;
  background: #41B1D1;
  background: linear-gradient(90deg, rgb(65, 177, 209) 0%, rgb(45, 153, 184) 100%);
  color: #fff;
  font-family: var(--font-en);
  font-weight: bold;
  width: 10.5rem;
  height: 3.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .p-reason .card-num {
    font-size: 1.4rem;
    width: 12.3rem;
    height: 3.7rem;
    margin-bottom: 1.6rem;
  }
}
.p-reason .card-ttl {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .p-reason .card-ttl {
    font-size: 3.8rem;
    font-size: clamp(24px, 2.6388888889vw, 3.8rem);
    margin-bottom: 4.7rem;
    margin-bottom: clamp(20px, 3.2638888889vw, 4.7rem);
  }
}
.p-reason .card-media {
  border-radius: 1.2rem;
  overflow: hidden;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .p-reason .card-media {
    border-radius: 2.4rem;
    width: 54.4rem;
    width: clamp(300px, 37.7777777778vw, 54.4rem);
    flex-shrink: 0;
    margin-bottom: 0;
  }
}
.p-reason .card-desc {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .p-reason .card-desc {
    font-size: 1.8rem;
    font-size: clamp(16px, 1.25vw, 1.8rem);
  }
}
.p-reason .card-chart {
  position: relative;
}
.p-reason .card-chart__ttl {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: bold;
  position: absolute;
  top: 87.4233128834%;
  left: 9.5081967213%;
  text-align: center;
}
.p-reason .card-chart__ttl > span {
  font-size: 2.2rem;
  position: relative;
  z-index: 1;
}
.p-reason .card-chart__ttl > span::after {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: -0.2rem;
  width: var(--bar-width, 0%);
  height: 1.2rem;
  background-color: #FFF541;
  content: "";
}
@media (min-width: 768px) {
  .p-reason .card-chart__ttl > span::after {
    height: 1.1rem;
    bottom: 0.2rem;
  }
}
@media (min-width: 768px) {
  .p-reason .card-chart__ttl {
    font-size: 2.1rem;
    font-size: clamp(16px, 1.4583333333vw, 2.1rem);
    top: 41.75%;
    left: 18.8511326861%;
    text-align: left;
  }
  .p-reason .card-chart__ttl span {
    font-size: 2.7rem;
    font-size: clamp(20px, 1.875vw, 2.7rem);
  }
}
.p-reason .card-chart__sub {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  position: absolute;
  top: 64.4171779141%;
  left: 56.0655737705%;
}
@media (min-width: 768px) {
  .p-reason .card-chart__sub {
    font-size: clamp(12px, 1.3888888889vw, 2rem);
    line-height: 1.2;
    top: 61.25%;
    left: 69.0938511327%;
  }
}
.p-reason .card-chart__sub > span {
  position: relative;
  z-index: 1;
}
.p-reason .card-chart__sub > span::after {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: -0.2rem;
  width: var(--bar-width, 0%);
  height: 1.2rem;
  background-color: #FFF541;
  content: "";
}
@media (min-width: 768px) {
  .p-reason .card-chart__sub > span::after {
    height: 1.1rem;
    bottom: -0.3rem;
  }
}
@media (max-width: 767px) {
  .p-reason .p-section__btn {
    margin-top: 4rem;
  }
}

.p-feedback {
  background: url("../images/bg_feedback_sp.jpg") no-repeat center/cover;
  padding-block: 5rem 6.4rem;
}
@media (min-width: 768px) {
  .p-feedback {
    background-image: url("../images/bg_feedback.jpg");
    padding-block: 11.6rem 11.7rem;
  }
}
.p-feedback .hline01 {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .p-feedback .hline01 {
    margin-bottom: 5.2rem;
  }
}
.p-feedback__slider {
  overflow: visible;
}
@media (min-width: 768px) {
  .p-feedback__slider .swiper-wrapper {
    margin-left: calc(-50% + 31.15rem);
  }
}
.p-feedback__slider .swiper-slide {
  width: 30.5rem;
}
@media (min-width: 768px) {
  .p-feedback__slider .swiper-slide {
    width: 62.3rem;
  }
}
.p-feedback__slider-pagi {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.6rem;
  margin-left: 1.6rem;
}
@media (min-width: 768px) {
  .p-feedback__slider-pagi {
    gap: 1.6rem;
    width: calc(100% - 4rem);
    margin-top: 3rem;
    margin-left: 0;
  }
}
.p-feedback__slider-pagi .swiper-pagination-progressbar.swiper-pagination-horizontal {
  background-color: #fff;
  height: 0.4rem;
  max-width: 99.2rem;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-feedback__slider-pagi .swiper-pagination-progressbar.swiper-pagination-horizontal {
    height: 0.2rem;
    border-radius: 0;
  }
}
.p-feedback__slider-pagi .swiper-pagination-progressbar.swiper-pagination-horizontal .swiper-pagination-progressbar-fill {
  background-color: var(--color-secondary);
  height: 100%;
  border-radius: 1rem;
}
.p-feedback__slider-pagi .swiper-pagi {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
@media (min-width: 768px) {
  .p-feedback__slider-pagi .swiper-pagi {
    gap: 1.6rem;
  }
}
.p-feedback__slider-pagi .swiper-button-next, .p-feedback__slider-pagi .swiper-button-prev {
  background-color: var(--color-secondary);
  border-radius: 50%;
  border: 0.2rem solid var(--color-secondary);
  width: 4.4rem;
  height: 4.4rem;
  margin-top: 0;
  position: relative;
  inset: 0;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .p-feedback__slider-pagi .swiper-button-next, .p-feedback__slider-pagi .swiper-button-prev {
    width: 6.4rem;
    height: 6.4rem;
  }
}
.p-feedback__slider-pagi .swiper-button-next::after, .p-feedback__slider-pagi .swiper-button-prev::after {
  content: "";
  background-color: #fff;
  -webkit-mask: url("../images/common/icon_arrow.svg") no-repeat center/contain;
  mask: url("../images/common/icon_arrow.svg") no-repeat center/contain;
  width: 1.1rem;
  height: 1.1rem;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .p-feedback__slider-pagi .swiper-button-next::after, .p-feedback__slider-pagi .swiper-button-prev::after {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.p-feedback__slider-pagi .swiper-button-next.swiper-button-disabled, .p-feedback__slider-pagi .swiper-button-prev.swiper-button-disabled {
  background-color: #fff;
  border-color: #A8B5BA;
  opacity: 1;
  transition: all 0.3s ease;
}
.p-feedback__slider-pagi .swiper-button-next.swiper-button-disabled::after, .p-feedback__slider-pagi .swiper-button-prev.swiper-button-disabled::after {
  background-color: #A8B5BA;
}
.p-feedback__slider-pagi .swiper-button-prev::after {
  transform: rotate(180deg);
}
.p-feedback .feedback-card {
  background-color: #fff;
  border-radius: 2.4rem;
  filter: drop-shadow(0px 4px 20px rgba(45, 153, 184, 0.1));
  padding: 2rem 1.6rem;
}
@media (min-width: 768px) {
  .p-feedback .feedback-card {
    padding: 4rem;
  }
}
.p-feedback .feedback-card__head {
  display: grid;
  grid-template-columns: 1fr 8.8rem;
  gap: 0.4rem 1.9rem;
  grid-template-areas: "title media" "desc desc";
}
@media (min-width: 768px) {
  .p-feedback .feedback-card__head {
    gap: 0 3.8rem;
    grid-template-columns: 1fr 18rem;
    grid-template-areas: "title media" "desc media";
  }
}
.p-feedback .feedback-card__ttl {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  grid-area: title;
}
@media (min-width: 768px) {
  .p-feedback .feedback-card__ttl {
    font-size: clamp(1.6rem, 1.6vw, 2.4rem);
    align-self: start;
  }
}
.p-feedback .feedback-card__media {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  border-radius: 0.4rem;
  grid-area: media;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
  width: 8.8rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-feedback .feedback-card__media {
    border-radius: 1.2rem;
    width: 18rem;
  }
}
.p-feedback .feedback-card__desc {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  color: rgba(17, 51, 78, 0.8);
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.8;
  grid-area: desc;
}
@media (min-width: 768px) {
  .p-feedback .feedback-card__ttl {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .p-feedback .feedback-card__media {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 3;
  }
  .p-feedback .feedback-card__desc {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
}
@media (min-width: 768px) {
  .p-feedback .feedback-card__desc {
    align-self: start;
    margin-top: -4rem;
  }
}
.p-feedback .feedback-card__list {
  margin-top: 1.2rem;
}
@media (min-width: 768px) {
  .p-feedback .feedback-card__list {
    margin-top: -0.8rem;
  }
}
.p-feedback .feedback-card__list li:not(:last-child) {
  margin-bottom: 2rem;
}
.p-feedback .feedback-card__list h4 {
  color: var(--color-secondary);
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 0.8rem;
}
@media (min-width: 768px) {
  .p-feedback .feedback-card__list h4 {
    font-size: 2.2rem;
    margin-bottom: 1.7rem;
  }
}
.p-feedback .feedback-card__list p {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .p-feedback .feedback-card__list p {
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) {
  .p-feedback .p-section__btn {
    margin-top: 7rem;
  }
}

.feedback-slider.no-swiper .swiper-wrapper {
  display: flex;
  justify-content: center;
  gap: 3.2rem;
  margin: 0 auto;
}
.feedback-slider.no-swiper .swiper-slide {
  width: 50%;
  height: auto;
}
.feedback-slider.no-swiper .p-feedback__slider-pagi {
  display: none;
}

.p-flow {
  padding-block: 6rem 5.6rem;
  background: linear-gradient(to bottom, #41B1D1 0%, #2D99B8 100%);
}
@media (min-width: 768px) {
  .p-flow {
    background: url(../images/bg_flow.jpg) no-repeat center/cover;
    padding-block: 9rem 9.4rem;
  }
}
.p-flow .hline01 {
  color: #fff;
}

.p-imple {
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-imple {
    flex-direction: row;
    padding: 0.4rem;
    border-radius: 2.4rem;
  }
}
.p-imple::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #41B1D1 0%, #2D99B8 100%);
}
.p-imple li {
  position: relative;
  z-index: 1;
  width: 100%;
  background-color: #FFF;
  padding-block: 2.5rem 4rem;
  padding-inline: 2rem;
}
.p-imple li:last-child::after {
  display: none;
}
@media (max-width: 767px) {
  .p-imple li:last-child {
    padding-bottom: 3rem;
  }
}
.p-imple li::after {
  position: absolute;
  width: 100%;
  left: 0;
  top: auto;
  bottom: 0;
  height: 2.4rem;
  background-color: #56B0CC;
  clip-path: polygon(0% 10%, 50% 100%, 100% 10%, 100% 0%, 50% 90%, 0% 0%);
  content: "";
}
@media (min-width: 768px) {
  .p-imple li {
    padding-block: 2.5rem 1rem;
    padding-inline: 2rem;
  }
  .p-imple li::after {
    right: 0;
    left: auto;
    top: -1px;
    bottom: -1px;
    width: 2.6rem;
    height: auto;
    background-color: transparent;
    background: linear-gradient(to right, #41B1D1 0%, #2D99B8 100%);
    clip-path: polygon(10% 0%, 100% 50%, 10% 100%, 0% 100%, 90% 50%, 0% 0%);
  }
}
.p-imple li.item-1 {
  border-top-left-radius: 1.2rem;
  border-top-right-radius: 1.2rem;
  border-bottom-left-radius: 0;
}
@media (min-width: 768px) {
  .p-imple li.item-1 {
    width: 17%;
    border-top-left-radius: 2.2rem;
    border-bottom-left-radius: 2.2rem;
    border-top-right-radius: 0;
    padding-inline: 3rem 0.9rem;
  }
  .p-imple li.item-1 .p-imple__ttl {
    padding-right: 0.5rem;
  }
}
@media (min-width: 768px) {
  .p-imple li.item-2 {
    width: 16%;
  }
}
@media (min-width: 768px) {
  .p-imple li.item-3 {
    width: 21%;
  }
  .p-imple li.item-3 .p-imple__content {
    padding-right: 1rem;
  }
}
@media (min-width: 768px) {
  .p-imple li.item-4 {
    width: 16%;
  }
}
@media (min-width: 768px) {
  .p-imple li.item-5 {
    width: 17%;
  }
  .p-imple li.item-5 .p-imple__num {
    margin-bottom: 1.5rem;
  }
}
.p-imple li.item-6 {
  border-bottom-left-radius: 1.2rem;
  border-bottom-right-radius: 1.2rem;
  border-top-right-radius: 0;
}
@media (min-width: 768px) {
  .p-imple li.item-6 {
    width: 13%;
    border-top-right-radius: 2.2rem;
    border-bottom-right-radius: 2.2rem;
    border-bottom-left-radius: 0;
  }
  .p-imple li.item-6 .p-imple__content {
    padding-right: 0;
  }
}
.p-imple__head {
  display: flex;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .p-imple__head {
    flex-direction: column;
    min-height: 11.5rem;
    margin-bottom: 0;
    padding-bottom: 1rem;
  }
}
.p-imple__num {
  margin-right: 1.2rem;
  font-size: 2.4rem;
  font-weight: 600;
  font-family: var(--font-en);
  line-height: 1.2;
  color: var(--color-secondary);
}
@media (min-width: 768px) {
  .p-imple__num {
    margin-bottom: 2.5rem;
    font-size: 3.6rem;
    line-height: 1;
  }
}
.p-imple__ttl {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .p-imple__content {
    padding-right: 2rem;
  }
}
.p-imple__txt {
  font-size: 1.4rem;
  letter-spacing: 0.056em;
  font-weight: 500;
  line-height: 1.55;
}

.p-faq {
  background: url(../images/bg_faq.jpg) no-repeat center/cover;
  padding-block: 6rem 8rem;
}
@media (min-width: 768px) {
  .p-faq {
    padding-block: 11.4rem 14.8rem;
  }
}
.p-faq__list dt, .p-faq__list-txt {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
@media (min-width: 768px) {
  .p-faq__list dt, .p-faq__list-txt {
    gap: 3.8rem;
  }
}
.p-faq__list dt::before, .p-faq__list-txt::before {
  font-family: var(--font-en);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}
.p-faq__list dt {
  cursor: pointer;
  font-weight: 700;
  position: relative;
  font-size: 1.6rem;
  padding-right: 4rem;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .p-faq__list dt {
    align-items: center;
    font-size: 2rem;
    padding-inline: 1.2rem 4rem;
  }
}
@media (max-width: 767px) {
  .p-faq__list dt {
    gap: 1.2rem;
  }
}
.p-faq__list dt::before {
  content: "Q";
  color: var(--color-secondary);
  font-size: 2.4rem;
}
@media (min-width: 768px) {
  .p-faq__list dt::before {
    font-size: 3.6rem;
  }
}
.p-faq__list dd {
  background: #F1FAFC;
  display: none;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  margin: 2.2rem 0 0;
  padding: 1rem 1.2rem;
  border-radius: 0.8rem;
}
@media (min-width: 768px) {
  .p-faq__list dd {
    font-size: 1.6rem;
    margin: 2.2rem 0 0;
    padding: 1.6rem 1.8rem;
    border-radius: 1.2rem;
  }
}
.p-faq__list-toggle {
  position: absolute;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--color-secondary);
  top: 50%;
  transform: translateY(-50%);
  right: 0.8rem;
  width: 2.5rem;
}
@media (min-width: 768px) {
  .p-faq__list-toggle {
    width: 2.4rem;
  }
}
.p-faq__list-toggle::before, .p-faq__list-toggle::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.1rem);
  height: 0.15rem;
  background: #fff;
  border-radius: 0.3rem;
  left: 20%;
  width: 60%;
}
@media (min-width: 768px) {
  .p-faq__list-toggle::before, .p-faq__list-toggle::after {
    height: 0.2rem;
    left: 25%;
    width: 50%;
  }
}
.p-faq__list-toggle::after {
  transform: rotate(90deg);
  transition: 0.3s ease-in-out;
}
.p-faq__list-item {
  background: #fff;
  box-shadow: 0 0.4rem 2rem rgba(17, 51, 78, 0.1);
  border-radius: 1.2rem;
  padding: 1.6rem;
  margin-bottom: 1.6rem;
}
@media (min-width: 768px) {
  .p-faq__list-item {
    border-radius: 2.4rem;
    padding: 3.2rem;
    margin-bottom: 2.5rem;
  }
}
.p-faq__list-item.is-open .p-faq__list-toggle::after {
  transform: rotate(0deg);
}
.p-faq__list-txt::before {
  content: "A";
  color: var(--color-basic);
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .p-faq__list-txt::before {
    font-size: 2.8rem;
  }
}