@charset "UTF-8";
/* font
-----------------------------------------------------*/
/* sans-serif */
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/NotoSansJP-Regular.woff2") format("woff2"), url("../fonts/NotoSansJP-Regular.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: bold;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/NotoSansJP-Bold.woff2") format("woff2"), url("../fonts/NotoSansJP-Bold.woff") format("woff");
}
/* serif */
@font-face {
  font-family: "Noto Serif CJK JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSerifCJKjp-Regular.woff") format("woff");
}
@font-face {
  font-family: "Noto Serif CJK JP";
  font-style: bold;
  font-weight: 700;
  src: url("../fonts/NotoSerifCJKjp-Bold.woff") format("woff");
}
/* mixin var
-----------------------------------------------------*/
/* reset
-----------------------------------------------------*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  -webkit-font-smoothing: antialiased;
}

body {
  line-height: 1;
}

article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/* html
-----------------------------------------------------*/
html {
  overflow: auto;
  font-size: 62.5%;
}

body {
  color: #4C4C4C;
  /*font: 1.6rem/1.8 YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;*/
  font: 1.6rem/1.8 "Noto Sans JP", sans-serif;
  /*font:1.6rem/1.8 "Noto Serif CJK JP", serif;*/
  font-weight: 400;
  overflow-wrap: break-word;
  word-break: break-word;
  overflow: hidden;
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
    font-weight: 400;
  }
}

/* link
-----------------------------------------------------*/
a {
  color: #4C4C4C;
  transition: 0.3s linear;
}
a:hover, a:active, a:focus {
  color: rgb(152.5, 152.5, 152.5);
}

/*flex
-----------------------------------------------------*/
.flex {
  display: flex;
}
@media (max-width: 1199px) {
  .flex-xl {
    display: flex !important;
  }
}
@media (max-width: 1023px) {
  .flex-lg {
    display: flex !important;
  }
}
@media (max-width: 767px) {
  .flex-md {
    display: flex !important;
  }
}
@media (max-width: 575px) {
  .flex-sm {
    display: flex !important;
  }
}

.justify-start {
  justify-content: start;
}
@media (max-width: 1199px) {
  .justify-start-xl {
    justify-content: start !important;
  }
}
@media (max-width: 1023px) {
  .justify-start-lg {
    justify-content: start !important;
  }
}
@media (max-width: 767px) {
  .justify-start-md {
    justify-content: start !important;
  }
}
@media (max-width: 575px) {
  .justify-start-sm {
    justify-content: start !important;
  }
}

.justify-center {
  justify-content: center;
}
@media (max-width: 1199px) {
  .justify-center-xl {
    justify-content: center !important;
  }
}
@media (max-width: 1023px) {
  .justify-center-lg {
    justify-content: center !important;
  }
}
@media (max-width: 767px) {
  .justify-center-md {
    justify-content: center !important;
  }
}
@media (max-width: 575px) {
  .justify-center-sm {
    justify-content: center !important;
  }
}

.justify-between {
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .justify-between-xl {
    justify-content: space-between !important;
  }
}
@media (max-width: 1023px) {
  .justify-between-lg {
    justify-content: space-between !important;
  }
}
@media (max-width: 767px) {
  .justify-between-md {
    justify-content: space-between !important;
  }
}
@media (max-width: 575px) {
  .justify-between-sm {
    justify-content: space-between !important;
  }
}

.justify-around {
  justify-content: space-around;
}
@media (max-width: 1199px) {
  .justify-around-xl {
    justify-content: space-around !important;
  }
}
@media (max-width: 1023px) {
  .justify-around-lg {
    justify-content: space-around !important;
  }
}
@media (max-width: 767px) {
  .justify-around-md {
    justify-content: space-around !important;
  }
}
@media (max-width: 575px) {
  .justify-around-sm {
    justify-content: space-around !important;
  }
}

.justify-end {
  justify-content: end;
}
@media (max-width: 1199px) {
  .justify-end-xl {
    justify-content: end !important;
  }
}
@media (max-width: 1023px) {
  .justify-end-lg {
    justify-content: end !important;
  }
}
@media (max-width: 767px) {
  .justify-end-md {
    justify-content: end !important;
  }
}
@media (max-width: 575px) {
  .justify-end-sm {
    justify-content: end !important;
  }
}

.align-items-start {
  align-items: flex-start;
}
@media (max-width: 1199px) {
  .align-items-start-xl {
    align-items: flex-start !important;
  }
}
@media (max-width: 1023px) {
  .align-items-start-lg {
    align-items: flex-start !important;
  }
}
@media (max-width: 767px) {
  .align-items-start-md {
    align-items: flex-start !important;
  }
}
@media (max-width: 575px) {
  .align-items-start-sm {
    align-items: flex-start !important;
  }
}

.align-items-center {
  align-items: center;
}
@media (max-width: 1199px) {
  .align-items-center-xl {
    align-items: center !important;
  }
}
@media (max-width: 1023px) {
  .align-items-center-lg {
    align-items: center !important;
  }
}
@media (max-width: 767px) {
  .align-items-center-md {
    align-items: center !important;
  }
}
@media (max-width: 575px) {
  .align-items-center-sm {
    align-items: center !important;
  }
}

.align-items-end {
  align-items: end;
}
@media (max-width: 1199px) {
  .align-items-end-xl {
    align-items: end !important;
  }
}
@media (max-width: 1023px) {
  .align-items-end-lg {
    align-items: end !important;
  }
}
@media (max-width: 767px) {
  .align-items-end-md {
    align-items: end !important;
  }
}
@media (max-width: 575px) {
  .align-items-end-sm {
    align-items: end !important;
  }
}

.flex-wrap {
  flex-wrap: wrap;
}
@media (max-width: 1199px) {
  .flex-wrap-xl {
    flex-wrap: wrap !important;
  }
}
@media (max-width: 1023px) {
  .flex-wrap-lg {
    flex-wrap: wrap !important;
  }
}
@media (max-width: 767px) {
  .flex-wrap-md {
    flex-wrap: wrap !important;
  }
}
@media (max-width: 575px) {
  .flex-wrap-sm {
    flex-wrap: wrap !important;
  }
}

.flex-nowrap {
  flex-wrap: nowrap;
}
@media (max-width: 1199px) {
  .flex-nowrap-xl {
    flex-wrap: nowrap !important;
  }
}
@media (max-width: 1023px) {
  .flex-nowrap-lg {
    flex-wrap: nowrap !important;
  }
}
@media (max-width: 767px) {
  .flex-nowrap-md {
    flex-wrap: nowrap !important;
  }
}
@media (max-width: 575px) {
  .flex-nowrap-sm {
    flex-wrap: nowrap !important;
  }
}

/*font-size
-----------------------------------------------------*/
.fs-10 {
  font-size: 1rem;
}

.fs-11 {
  font-size: 1.1rem;
}

.fs-12 {
  font-size: 1.2rem;
}

.fs-13 {
  font-size: 1.3rem;
}

.fs-14 {
  font-size: 1.4rem;
}

.fs-15 {
  font-size: 1.5rem;
}

.fs-16 {
  font-size: 1.6rem;
}

.fs-17 {
  font-size: 1.7rem;
}

.fs-18 {
  font-size: 1.8rem;
}

.fs-19 {
  font-size: 1.9rem;
}

.fs-20 {
  font-size: 2rem;
}

.fs-21 {
  font-size: 2.1rem;
}

.fs-22 {
  font-size: 2.2rem;
}

.fs-23 {
  font-size: 2.3rem;
}

.fs-24 {
  font-size: 2.4rem;
}

.fs-25 {
  font-size: 2.5rem;
}

.fs-26 {
  font-size: 2.6rem;
}

.fs-27 {
  font-size: 2.7rem;
}

.fs-28 {
  font-size: 2.8rem;
}

.fs-29 {
  font-size: 2.9rem;
}

.fs-30 {
  font-size: 3rem;
}

@media (max-width: 1199px) {
  .fs-10-xl {
    font-size: 1rem !important;
  }
  .fs-11-xl {
    font-size: 1.1rem !important;
  }
  .fs-12-xl {
    font-size: 1.2rem !important;
  }
  .fs-13-xl {
    font-size: 1.3rem !important;
  }
  .fs-14-xl {
    font-size: 1.4rem !important;
  }
  .fs-15-xl {
    font-size: 1.5rem !important;
  }
  .fs-16-xl {
    font-size: 1.6rem !important;
  }
  .fs-17-xl {
    font-size: 1.7rem !important;
  }
  .fs-18-xl {
    font-size: 1.8rem !important;
  }
  .fs-19-xl {
    font-size: 1.9rem !important;
  }
  .fs-20-xl {
    font-size: 2rem !important;
  }
  .fs-21-xl {
    font-size: 2.1rem !important;
  }
  .fs-22-xl {
    font-size: 2.2rem !important;
  }
  .fs-23-xl {
    font-size: 2.3rem !important;
  }
  .fs-24-xl {
    font-size: 2.4rem !important;
  }
  .fs-25-xl {
    font-size: 2.5rem !important;
  }
  .fs-26-xl {
    font-size: 2.6rem !important;
  }
  .fs-27-xl {
    font-size: 2.7rem !important;
  }
  .fs-28-xl {
    font-size: 2.8rem !important;
  }
  .fs-29-xl {
    font-size: 2.9rem !important;
  }
  .fs-30-xl {
    font-size: 3rem !important;
  }
}
@media (max-width: 1023px) {
  .fs-10-lg {
    font-size: 1rem !important;
  }
  .fs-11-lg {
    font-size: 1.1rem !important;
  }
  .fs-12-lg {
    font-size: 1.2rem !important;
  }
  .fs-13-lg {
    font-size: 1.3rem !important;
  }
  .fs-14-lg {
    font-size: 1.4rem !important;
  }
  .fs-15-lg {
    font-size: 1.5rem !important;
  }
  .fs-16-lg {
    font-size: 1.6rem !important;
  }
  .fs-17-lg {
    font-size: 1.7rem !important;
  }
  .fs-18-lg {
    font-size: 1.8rem !important;
  }
  .fs-19-lg {
    font-size: 1.9rem !important;
  }
  .fs-20-lg {
    font-size: 2rem !important;
  }
  .fs-21-lg {
    font-size: 2.1rem !important;
  }
  .fs-22-lg {
    font-size: 2.2rem !important;
  }
  .fs-23-lg {
    font-size: 2.3rem !important;
  }
  .fs-24-lg {
    font-size: 2.4rem !important;
  }
  .fs-25-lg {
    font-size: 2.5rem !important;
  }
  .fs-26-lg {
    font-size: 2.6rem !important;
  }
  .fs-27-lg {
    font-size: 2.7rem !important;
  }
  .fs-28-lg {
    font-size: 2.8rem !important;
  }
  .fs-29-lg {
    font-size: 2.9rem !important;
  }
  .fs-30-lg {
    font-size: 3rem !important;
  }
}
@media (max-width: 767px) {
  .fs-10-md {
    font-size: 1rem !important;
  }
  .fs-11-md {
    font-size: 1.1rem !important;
  }
  .fs-12-md {
    font-size: 1.2rem !important;
  }
  .fs-13-md {
    font-size: 1.3rem !important;
  }
  .fs-14-md {
    font-size: 1.4rem !important;
  }
  .fs-15-md {
    font-size: 1.5rem !important;
  }
  .fs-16-md {
    font-size: 1.6rem !important;
  }
  .fs-17-md {
    font-size: 1.7rem !important;
  }
  .fs-18-md {
    font-size: 1.8rem !important;
  }
  .fs-19-md {
    font-size: 1.9rem !important;
  }
  .fs-20-md {
    font-size: 2rem !important;
  }
  .fs-21-md {
    font-size: 2.1rem !important;
  }
  .fs-22-md {
    font-size: 2.2rem !important;
  }
  .fs-23-md {
    font-size: 2.3rem !important;
  }
  .fs-24-md {
    font-size: 2.4rem !important;
  }
  .fs-25-md {
    font-size: 2.5rem !important;
  }
  .fs-26-md {
    font-size: 2.6rem !important;
  }
  .fs-27-md {
    font-size: 2.7rem !important;
  }
  .fs-28-md {
    font-size: 2.8rem !important;
  }
  .fs-29-md {
    font-size: 2.9rem !important;
  }
  .fs-30-md {
    font-size: 3rem !important;
  }
}
@media (max-width: 575px) {
  .fs-10-sm {
    font-size: 1rem !important;
  }
  .fs-11-sm {
    font-size: 1.1rem !important;
  }
  .fs-12-sm {
    font-size: 1.2rem !important;
  }
  .fs-13-sm {
    font-size: 1.3rem !important;
  }
  .fs-14-sm {
    font-size: 1.4rem !important;
  }
  .fs-15-sm {
    font-size: 1.5rem !important;
  }
  .fs-16-sm {
    font-size: 1.6rem !important;
  }
  .fs-17-sm {
    font-size: 1.7rem !important;
  }
  .fs-18-sm {
    font-size: 1.8rem !important;
  }
  .fs-19-sm {
    font-size: 1.9rem !important;
  }
  .fs-20-sm {
    font-size: 2rem !important;
  }
  .fs-21-sm {
    font-size: 2.1rem !important;
  }
  .fs-22-sm {
    font-size: 2.2rem !important;
  }
  .fs-23-sm {
    font-size: 2.3rem !important;
  }
  .fs-24-sm {
    font-size: 2.4rem !important;
  }
  .fs-25-sm {
    font-size: 2.5rem !important;
  }
  .fs-26-sm {
    font-size: 2.6rem !important;
  }
  .fs-27-sm {
    font-size: 2.7rem !important;
  }
  .fs-28-sm {
    font-size: 2.8rem !important;
  }
  .fs-29-sm {
    font-size: 2.9rem !important;
  }
  .fs-30-sm {
    font-size: 3rem !important;
  }
}
.lh-1 {
  line-height: 1.1;
}

.lh-2 {
  line-height: 1.2;
}

.lh-3 {
  line-height: 1.3;
}

.lh-4 {
  line-height: 1.4;
}

.lh-5 {
  line-height: 1.5;
}

.lh-6 {
  line-height: 1.6;
}

@media (max-width: 1199px) {
  .lh-1-xl {
    line-height: 1.1 !important;
  }
  .lh-2-xl {
    line-height: 1.2 !important;
  }
  .lh-3-xl {
    line-height: 1.3 !important;
  }
  .lh-4-xl {
    line-height: 1.4 !important;
  }
  .lh-5-xl {
    line-height: 1.5 !important;
  }
  .lh-6-xl {
    line-height: 1.6 !important;
  }
}
@media (max-width: 1023px) {
  .lh-1-lg {
    line-height: 1.1 !important;
  }
  .lh-2-lg {
    line-height: 1.2 !important;
  }
  .lh-3-lg {
    line-height: 1.3 !important;
  }
  .lh-4-lg {
    line-height: 1.4 !important;
  }
  .lh-5-lg {
    line-height: 1.5 !important;
  }
  .lh-6-lg {
    line-height: 1.6 !important;
  }
}
@media (max-width: 767px) {
  .lh-1-md {
    line-height: 1.1 !important;
  }
  .lh-2-md {
    line-height: 1.2 !important;
  }
  .lh-3-md {
    line-height: 1.3 !important;
  }
  .lh-4-md {
    line-height: 1.4 !important;
  }
  .lh-5-md {
    line-height: 1.5 !important;
  }
  .lh-6-md {
    line-height: 1.6 !important;
  }
}
@media (max-width: 575px) {
  .lh-1-sm {
    line-height: 1.1 !important;
  }
  .lh-2-sm {
    line-height: 1.2 !important;
  }
  .lh-3-sm {
    line-height: 1.3 !important;
  }
  .lh-4-sm {
    line-height: 1.4 !important;
  }
  .lh-5-sm {
    line-height: 1.5 !important;
  }
  .lh-6-sm {
    line-height: 1.6 !important;
  }
}
/*utility
-----------------------------------------------------*/
img {
  max-width: 100%;
  height: auto;
}

ol {
  padding-left: 1em;
}

.float-l {
  float: left;
}

.float-r {
  float: right;
}

.en {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
}

.mincho {
  font-family: "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

em {
  font-style: normal;
  font-weight: bold;
}

.line {
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 80%, #fffa73 0%) repeat scroll 0 0;
}

.indent-list {
  text-indent: -1em;
  padding-left: 1em;
}

.disc-list {
  list-style: disc;
  padding-left: 1.5em;
}

.color-main {
  color: #4C4C4C !important;
}

.color-accent01 {
  color: #eed636 !important;
}

.color-caution {
  color: #A52929 !important;
}

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

.align-l {
  text-align: left;
}
@media (max-width: 1199px) {
  .align-l-xl {
    text-align: left !important;
  }
}
@media (max-width: 1023px) {
  .align-l-lg {
    text-align: left !important;
  }
}
@media (max-width: 767px) {
  .align-l-md {
    text-align: left !important;
  }
}
@media (max-width: 575px) {
  .align-l-sm {
    text-align: left !important;
  }
}

.align-c {
  text-align: center;
}
@media (max-width: 1199px) {
  .align-c-xl {
    text-align: center !important;
  }
}
@media (max-width: 1023px) {
  .align-c-lg {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .align-c-md {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .align-c-sm {
    text-align: center !important;
  }
}

.align-r {
  text-align: right;
}
@media (max-width: 1199px) {
  .align-r-xl {
    text-align: right !important;
  }
}
@media (max-width: 1023px) {
  .align-r-lg {
    text-align: right !important;
  }
}
@media (max-width: 767px) {
  .align-r-md {
    text-align: right !important;
  }
}
@media (max-width: 575px) {
  .align-r-sm {
    text-align: right !important;
  }
}

.pos-r {
  position: relative;
}

.box-shadow {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

.bg-blue-pattern01 {
  background: repeating-linear-gradient(-45deg, #0171bb, #0171bb 10px, #0674bc 0, #0674bc 20px);
}

.block {
  display: block;
}
@media (max-width: 1199px) {
  .block-xl {
    display: block !important;
  }
}
@media (max-width: 1023px) {
  .block-lg {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .block-md {
    display: block !important;
  }
}
@media (max-width: 575px) {
  .block-sm {
    display: block !important;
  }
}

.none {
  display: none;
}
@media (max-width: 1199px) {
  .none-xl {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  .none-lg {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .none-md {
    display: none !important;
  }
}
@media (max-width: 575px) {
  .none-sm {
    display: none !important;
  }
}

/* margin padding gap
-----------------------------------------------------*/
.mt-0 {
  margin-top: 0rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt-35 {
  margin-top: 3.5rem !important;
}

.pt-35 {
  padding-top: 3.5rem !important;
}

.mb-35 {
  margin-bottom: 3.5rem !important;
}

.pb-35 {
  padding-bottom: 3.5rem !important;
}

.ml-35 {
  margin-left: 3.5rem !important;
}

.pl-35 {
  padding-left: 3.5rem !important;
}

.mr-35 {
  margin-right: 3.5rem !important;
}

.pr-35 {
  padding-right: 3.5rem !important;
}

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

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

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

.pb-40 {
  padding-bottom: 4rem !important;
}

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

.pl-40 {
  padding-left: 4rem !important;
}

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

.pr-40 {
  padding-right: 4rem !important;
}

.mt-45 {
  margin-top: 4.5rem !important;
}

.pt-45 {
  padding-top: 4.5rem !important;
}

.mb-45 {
  margin-bottom: 4.5rem !important;
}

.pb-45 {
  padding-bottom: 4.5rem !important;
}

.ml-45 {
  margin-left: 4.5rem !important;
}

.pl-45 {
  padding-left: 4.5rem !important;
}

.mr-45 {
  margin-right: 4.5rem !important;
}

.pr-45 {
  padding-right: 4.5rem !important;
}

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

.pt-50 {
  padding-top: 5rem !important;
}

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

.pb-50 {
  padding-bottom: 5rem !important;
}

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

.pl-50 {
  padding-left: 5rem !important;
}

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

.pr-50 {
  padding-right: 5rem !important;
}

.mt-60 {
  margin-top: 6rem !important;
}

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

.mb-60 {
  margin-bottom: 6rem !important;
}

.pb-60 {
  padding-bottom: 6rem !important;
}

.ml-60 {
  margin-left: 6rem !important;
}

.pl-60 {
  padding-left: 6rem !important;
}

.mr-60 {
  margin-right: 6rem !important;
}

.pr-60 {
  padding-right: 6rem !important;
}

.mt-70 {
  margin-top: 7rem !important;
}

.pt-70 {
  padding-top: 7rem !important;
}

.mb-70 {
  margin-bottom: 7rem !important;
}

.pb-70 {
  padding-bottom: 7rem !important;
}

.ml-70 {
  margin-left: 7rem !important;
}

.pl-70 {
  padding-left: 7rem !important;
}

.mr-70 {
  margin-right: 7rem !important;
}

.pr-70 {
  padding-right: 7rem !important;
}

.mt-80 {
  margin-top: 8rem !important;
}

.pt-80 {
  padding-top: 8rem !important;
}

.mb-80 {
  margin-bottom: 8rem !important;
}

.pb-80 {
  padding-bottom: 8rem !important;
}

.ml-80 {
  margin-left: 8rem !important;
}

.pl-80 {
  padding-left: 8rem !important;
}

.mr-80 {
  margin-right: 8rem !important;
}

.pr-80 {
  padding-right: 8rem !important;
}

.mt-100 {
  margin-top: 10rem !important;
}

.pt-100 {
  padding-top: 10rem !important;
}

.mb-100 {
  margin-bottom: 10rem !important;
}

.pb-100 {
  padding-bottom: 10rem !important;
}

.ml-100 {
  margin-left: 10rem !important;
}

.pl-100 {
  padding-left: 10rem !important;
}

.mr-100 {
  margin-right: 10rem !important;
}

.pr-100 {
  padding-right: 10rem !important;
}

@media (max-width: 1199px) {
  .mt-0-xl {
    margin-top: 0rem !important;
  }
  .pt-0-xl {
    padding-top: 0rem !important;
  }
  .mb-0-xl {
    margin-bottom: 0rem !important;
  }
  .pb-0-xl {
    padding-bottom: 0rem !important;
  }
  .ml-0-xl {
    margin-left: 0rem !important;
  }
  .pl-0-xl {
    padding-left: 0rem !important;
  }
  .mr-0-xl {
    margin-right: 0rem !important;
  }
  .pr-0-xl {
    padding-right: 0rem !important;
  }
  .mt-10-xl {
    margin-top: 1rem !important;
  }
  .pt-10-xl {
    padding-top: 1rem !important;
  }
  .mb-10-xl {
    margin-bottom: 1rem !important;
  }
  .pb-10-xl {
    padding-bottom: 1rem !important;
  }
  .ml-10-xl {
    margin-left: 1rem !important;
  }
  .pl-10-xl {
    padding-left: 1rem !important;
  }
  .mr-10-xl {
    margin-right: 1rem !important;
  }
  .pr-10-xl {
    padding-right: 1rem !important;
  }
  .mt-15-xl {
    margin-top: 1.5rem !important;
  }
  .pt-15-xl {
    padding-top: 1.5rem !important;
  }
  .mb-15-xl {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-xl {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-xl {
    margin-left: 1.5rem !important;
  }
  .pl-15-xl {
    padding-left: 1.5rem !important;
  }
  .mr-15-xl {
    margin-right: 1.5rem !important;
  }
  .pr-15-xl {
    padding-right: 1.5rem !important;
  }
  .mt-20-xl {
    margin-top: 2rem !important;
  }
  .pt-20-xl {
    padding-top: 2rem !important;
  }
  .mb-20-xl {
    margin-bottom: 2rem !important;
  }
  .pb-20-xl {
    padding-bottom: 2rem !important;
  }
  .ml-20-xl {
    margin-left: 2rem !important;
  }
  .pl-20-xl {
    padding-left: 2rem !important;
  }
  .mr-20-xl {
    margin-right: 2rem !important;
  }
  .pr-20-xl {
    padding-right: 2rem !important;
  }
  .mt-25-xl {
    margin-top: 2.5rem !important;
  }
  .pt-25-xl {
    padding-top: 2.5rem !important;
  }
  .mb-25-xl {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-xl {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-xl {
    margin-left: 2.5rem !important;
  }
  .pl-25-xl {
    padding-left: 2.5rem !important;
  }
  .mr-25-xl {
    margin-right: 2.5rem !important;
  }
  .pr-25-xl {
    padding-right: 2.5rem !important;
  }
  .mt-30-xl {
    margin-top: 3rem !important;
  }
  .pt-30-xl {
    padding-top: 3rem !important;
  }
  .mb-30-xl {
    margin-bottom: 3rem !important;
  }
  .pb-30-xl {
    padding-bottom: 3rem !important;
  }
  .ml-30-xl {
    margin-left: 3rem !important;
  }
  .pl-30-xl {
    padding-left: 3rem !important;
  }
  .mr-30-xl {
    margin-right: 3rem !important;
  }
  .pr-30-xl {
    padding-right: 3rem !important;
  }
  .mt-35-xl {
    margin-top: 3.5rem !important;
  }
  .pt-35-xl {
    padding-top: 3.5rem !important;
  }
  .mb-35-xl {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-xl {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-xl {
    margin-left: 3.5rem !important;
  }
  .pl-35-xl {
    padding-left: 3.5rem !important;
  }
  .mr-35-xl {
    margin-right: 3.5rem !important;
  }
  .pr-35-xl {
    padding-right: 3.5rem !important;
  }
  .mt-40-xl {
    margin-top: 4rem !important;
  }
  .pt-40-xl {
    padding-top: 4rem !important;
  }
  .mb-40-xl {
    margin-bottom: 4rem !important;
  }
  .pb-40-xl {
    padding-bottom: 4rem !important;
  }
  .ml-40-xl {
    margin-left: 4rem !important;
  }
  .pl-40-xl {
    padding-left: 4rem !important;
  }
  .mr-40-xl {
    margin-right: 4rem !important;
  }
  .pr-40-xl {
    padding-right: 4rem !important;
  }
  .mt-45-xl {
    margin-top: 4.5rem !important;
  }
  .pt-45-xl {
    padding-top: 4.5rem !important;
  }
  .mb-45-xl {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-xl {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-xl {
    margin-left: 4.5rem !important;
  }
  .pl-45-xl {
    padding-left: 4.5rem !important;
  }
  .mr-45-xl {
    margin-right: 4.5rem !important;
  }
  .pr-45-xl {
    padding-right: 4.5rem !important;
  }
  .mt-50-xl {
    margin-top: 5rem !important;
  }
  .pt-50-xl {
    padding-top: 5rem !important;
  }
  .mb-50-xl {
    margin-bottom: 5rem !important;
  }
  .pb-50-xl {
    padding-bottom: 5rem !important;
  }
  .ml-50-xl {
    margin-left: 5rem !important;
  }
  .pl-50-xl {
    padding-left: 5rem !important;
  }
  .mr-50-xl {
    margin-right: 5rem !important;
  }
  .pr-50-xl {
    padding-right: 5rem !important;
  }
  .mt-60-xl {
    margin-top: 6rem !important;
  }
  .pt-60-xl {
    padding-top: 6rem !important;
  }
  .mb-60-xl {
    margin-bottom: 6rem !important;
  }
  .pb-60-xl {
    padding-bottom: 6rem !important;
  }
  .ml-60-xl {
    margin-left: 6rem !important;
  }
  .pl-60-xl {
    padding-left: 6rem !important;
  }
  .mr-60-xl {
    margin-right: 6rem !important;
  }
  .pr-60-xl {
    padding-right: 6rem !important;
  }
  .mt-70-xl {
    margin-top: 7rem !important;
  }
  .pt-70-xl {
    padding-top: 7rem !important;
  }
  .mb-70-xl {
    margin-bottom: 7rem !important;
  }
  .pb-70-xl {
    padding-bottom: 7rem !important;
  }
  .ml-70-xl {
    margin-left: 7rem !important;
  }
  .pl-70-xl {
    padding-left: 7rem !important;
  }
  .mr-70-xl {
    margin-right: 7rem !important;
  }
  .pr-70-xl {
    padding-right: 7rem !important;
  }
  .mt-80-xl {
    margin-top: 8rem !important;
  }
  .pt-80-xl {
    padding-top: 8rem !important;
  }
  .mb-80-xl {
    margin-bottom: 8rem !important;
  }
  .pb-80-xl {
    padding-bottom: 8rem !important;
  }
  .ml-80-xl {
    margin-left: 8rem !important;
  }
  .pl-80-xl {
    padding-left: 8rem !important;
  }
  .mr-80-xl {
    margin-right: 8rem !important;
  }
  .pr-80-xl {
    padding-right: 8rem !important;
  }
  .mt-100-xl {
    margin-top: 10rem !important;
  }
  .pt-100-xl {
    padding-top: 10rem !important;
  }
  .mb-100-xl {
    margin-bottom: 10rem !important;
  }
  .pb-100-xl {
    padding-bottom: 10rem !important;
  }
  .ml-100-xl {
    margin-left: 10rem !important;
  }
  .pl-100-xl {
    padding-left: 10rem !important;
  }
  .mr-100-xl {
    margin-right: 10rem !important;
  }
  .pr-100-xl {
    padding-right: 10rem !important;
  }
}
@media (max-width: 1023px) {
  .mt-0-lg {
    margin-top: 0rem !important;
  }
  .pt-0-lg {
    padding-top: 0rem !important;
  }
  .mb-0-lg {
    margin-bottom: 0rem !important;
  }
  .pb-0-lg {
    padding-bottom: 0rem !important;
  }
  .ml-0-lg {
    margin-left: 0rem !important;
  }
  .pl-0-lg {
    padding-left: 0rem !important;
  }
  .mr-0-lg {
    margin-right: 0rem !important;
  }
  .pr-0-lg {
    padding-right: 0rem !important;
  }
  .mt-10-lg {
    margin-top: 1rem !important;
  }
  .pt-10-lg {
    padding-top: 1rem !important;
  }
  .mb-10-lg {
    margin-bottom: 1rem !important;
  }
  .pb-10-lg {
    padding-bottom: 1rem !important;
  }
  .ml-10-lg {
    margin-left: 1rem !important;
  }
  .pl-10-lg {
    padding-left: 1rem !important;
  }
  .mr-10-lg {
    margin-right: 1rem !important;
  }
  .pr-10-lg {
    padding-right: 1rem !important;
  }
  .mt-15-lg {
    margin-top: 1.5rem !important;
  }
  .pt-15-lg {
    padding-top: 1.5rem !important;
  }
  .mb-15-lg {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-lg {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-lg {
    margin-left: 1.5rem !important;
  }
  .pl-15-lg {
    padding-left: 1.5rem !important;
  }
  .mr-15-lg {
    margin-right: 1.5rem !important;
  }
  .pr-15-lg {
    padding-right: 1.5rem !important;
  }
  .mt-20-lg {
    margin-top: 2rem !important;
  }
  .pt-20-lg {
    padding-top: 2rem !important;
  }
  .mb-20-lg {
    margin-bottom: 2rem !important;
  }
  .pb-20-lg {
    padding-bottom: 2rem !important;
  }
  .ml-20-lg {
    margin-left: 2rem !important;
  }
  .pl-20-lg {
    padding-left: 2rem !important;
  }
  .mr-20-lg {
    margin-right: 2rem !important;
  }
  .pr-20-lg {
    padding-right: 2rem !important;
  }
  .mt-25-lg {
    margin-top: 2.5rem !important;
  }
  .pt-25-lg {
    padding-top: 2.5rem !important;
  }
  .mb-25-lg {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-lg {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-lg {
    margin-left: 2.5rem !important;
  }
  .pl-25-lg {
    padding-left: 2.5rem !important;
  }
  .mr-25-lg {
    margin-right: 2.5rem !important;
  }
  .pr-25-lg {
    padding-right: 2.5rem !important;
  }
  .mt-30-lg {
    margin-top: 3rem !important;
  }
  .pt-30-lg {
    padding-top: 3rem !important;
  }
  .mb-30-lg {
    margin-bottom: 3rem !important;
  }
  .pb-30-lg {
    padding-bottom: 3rem !important;
  }
  .ml-30-lg {
    margin-left: 3rem !important;
  }
  .pl-30-lg {
    padding-left: 3rem !important;
  }
  .mr-30-lg {
    margin-right: 3rem !important;
  }
  .pr-30-lg {
    padding-right: 3rem !important;
  }
  .mt-35-lg {
    margin-top: 3.5rem !important;
  }
  .pt-35-lg {
    padding-top: 3.5rem !important;
  }
  .mb-35-lg {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-lg {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-lg {
    margin-left: 3.5rem !important;
  }
  .pl-35-lg {
    padding-left: 3.5rem !important;
  }
  .mr-35-lg {
    margin-right: 3.5rem !important;
  }
  .pr-35-lg {
    padding-right: 3.5rem !important;
  }
  .mt-40-lg {
    margin-top: 4rem !important;
  }
  .pt-40-lg {
    padding-top: 4rem !important;
  }
  .mb-40-lg {
    margin-bottom: 4rem !important;
  }
  .pb-40-lg {
    padding-bottom: 4rem !important;
  }
  .ml-40-lg {
    margin-left: 4rem !important;
  }
  .pl-40-lg {
    padding-left: 4rem !important;
  }
  .mr-40-lg {
    margin-right: 4rem !important;
  }
  .pr-40-lg {
    padding-right: 4rem !important;
  }
  .mt-45-lg {
    margin-top: 4.5rem !important;
  }
  .pt-45-lg {
    padding-top: 4.5rem !important;
  }
  .mb-45-lg {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-lg {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-lg {
    margin-left: 4.5rem !important;
  }
  .pl-45-lg {
    padding-left: 4.5rem !important;
  }
  .mr-45-lg {
    margin-right: 4.5rem !important;
  }
  .pr-45-lg {
    padding-right: 4.5rem !important;
  }
  .mt-50-lg {
    margin-top: 5rem !important;
  }
  .pt-50-lg {
    padding-top: 5rem !important;
  }
  .mb-50-lg {
    margin-bottom: 5rem !important;
  }
  .pb-50-lg {
    padding-bottom: 5rem !important;
  }
  .ml-50-lg {
    margin-left: 5rem !important;
  }
  .pl-50-lg {
    padding-left: 5rem !important;
  }
  .mr-50-lg {
    margin-right: 5rem !important;
  }
  .pr-50-lg {
    padding-right: 5rem !important;
  }
  .mt-60-lg {
    margin-top: 6rem !important;
  }
  .pt-60-lg {
    padding-top: 6rem !important;
  }
  .mb-60-lg {
    margin-bottom: 6rem !important;
  }
  .pb-60-lg {
    padding-bottom: 6rem !important;
  }
  .ml-60-lg {
    margin-left: 6rem !important;
  }
  .pl-60-lg {
    padding-left: 6rem !important;
  }
  .mr-60-lg {
    margin-right: 6rem !important;
  }
  .pr-60-lg {
    padding-right: 6rem !important;
  }
  .mt-70-lg {
    margin-top: 7rem !important;
  }
  .pt-70-lg {
    padding-top: 7rem !important;
  }
  .mb-70-lg {
    margin-bottom: 7rem !important;
  }
  .pb-70-lg {
    padding-bottom: 7rem !important;
  }
  .ml-70-lg {
    margin-left: 7rem !important;
  }
  .pl-70-lg {
    padding-left: 7rem !important;
  }
  .mr-70-lg {
    margin-right: 7rem !important;
  }
  .pr-70-lg {
    padding-right: 7rem !important;
  }
  .mt-80-lg {
    margin-top: 8rem !important;
  }
  .pt-80-lg {
    padding-top: 8rem !important;
  }
  .mb-80-lg {
    margin-bottom: 8rem !important;
  }
  .pb-80-lg {
    padding-bottom: 8rem !important;
  }
  .ml-80-lg {
    margin-left: 8rem !important;
  }
  .pl-80-lg {
    padding-left: 8rem !important;
  }
  .mr-80-lg {
    margin-right: 8rem !important;
  }
  .pr-80-lg {
    padding-right: 8rem !important;
  }
  .mt-100-lg {
    margin-top: 10rem !important;
  }
  .pt-100-lg {
    padding-top: 10rem !important;
  }
  .mb-100-lg {
    margin-bottom: 10rem !important;
  }
  .pb-100-lg {
    padding-bottom: 10rem !important;
  }
  .ml-100-lg {
    margin-left: 10rem !important;
  }
  .pl-100-lg {
    padding-left: 10rem !important;
  }
  .mr-100-lg {
    margin-right: 10rem !important;
  }
  .pr-100-lg {
    padding-right: 10rem !important;
  }
}
@media (max-width: 767px) {
  .mt-0-md {
    margin-top: 0rem !important;
  }
  .pt-0-md {
    padding-top: 0rem !important;
  }
  .mb-0-md {
    margin-bottom: 0rem !important;
  }
  .pb-0-md {
    padding-bottom: 0rem !important;
  }
  .ml-0-md {
    margin-left: 0rem !important;
  }
  .pl-0-md {
    padding-left: 0rem !important;
  }
  .mr-0-md {
    margin-right: 0rem !important;
  }
  .pr-0-md {
    padding-right: 0rem !important;
  }
  .mt-10-md {
    margin-top: 1rem !important;
  }
  .pt-10-md {
    padding-top: 1rem !important;
  }
  .mb-10-md {
    margin-bottom: 1rem !important;
  }
  .pb-10-md {
    padding-bottom: 1rem !important;
  }
  .ml-10-md {
    margin-left: 1rem !important;
  }
  .pl-10-md {
    padding-left: 1rem !important;
  }
  .mr-10-md {
    margin-right: 1rem !important;
  }
  .pr-10-md {
    padding-right: 1rem !important;
  }
  .mt-15-md {
    margin-top: 1.5rem !important;
  }
  .pt-15-md {
    padding-top: 1.5rem !important;
  }
  .mb-15-md {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-md {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-md {
    margin-left: 1.5rem !important;
  }
  .pl-15-md {
    padding-left: 1.5rem !important;
  }
  .mr-15-md {
    margin-right: 1.5rem !important;
  }
  .pr-15-md {
    padding-right: 1.5rem !important;
  }
  .mt-20-md {
    margin-top: 2rem !important;
  }
  .pt-20-md {
    padding-top: 2rem !important;
  }
  .mb-20-md {
    margin-bottom: 2rem !important;
  }
  .pb-20-md {
    padding-bottom: 2rem !important;
  }
  .ml-20-md {
    margin-left: 2rem !important;
  }
  .pl-20-md {
    padding-left: 2rem !important;
  }
  .mr-20-md {
    margin-right: 2rem !important;
  }
  .pr-20-md {
    padding-right: 2rem !important;
  }
  .mt-25-md {
    margin-top: 2.5rem !important;
  }
  .pt-25-md {
    padding-top: 2.5rem !important;
  }
  .mb-25-md {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-md {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-md {
    margin-left: 2.5rem !important;
  }
  .pl-25-md {
    padding-left: 2.5rem !important;
  }
  .mr-25-md {
    margin-right: 2.5rem !important;
  }
  .pr-25-md {
    padding-right: 2.5rem !important;
  }
  .mt-30-md {
    margin-top: 3rem !important;
  }
  .pt-30-md {
    padding-top: 3rem !important;
  }
  .mb-30-md {
    margin-bottom: 3rem !important;
  }
  .pb-30-md {
    padding-bottom: 3rem !important;
  }
  .ml-30-md {
    margin-left: 3rem !important;
  }
  .pl-30-md {
    padding-left: 3rem !important;
  }
  .mr-30-md {
    margin-right: 3rem !important;
  }
  .pr-30-md {
    padding-right: 3rem !important;
  }
  .mt-35-md {
    margin-top: 3.5rem !important;
  }
  .pt-35-md {
    padding-top: 3.5rem !important;
  }
  .mb-35-md {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-md {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-md {
    margin-left: 3.5rem !important;
  }
  .pl-35-md {
    padding-left: 3.5rem !important;
  }
  .mr-35-md {
    margin-right: 3.5rem !important;
  }
  .pr-35-md {
    padding-right: 3.5rem !important;
  }
  .mt-40-md {
    margin-top: 4rem !important;
  }
  .pt-40-md {
    padding-top: 4rem !important;
  }
  .mb-40-md {
    margin-bottom: 4rem !important;
  }
  .pb-40-md {
    padding-bottom: 4rem !important;
  }
  .ml-40-md {
    margin-left: 4rem !important;
  }
  .pl-40-md {
    padding-left: 4rem !important;
  }
  .mr-40-md {
    margin-right: 4rem !important;
  }
  .pr-40-md {
    padding-right: 4rem !important;
  }
  .mt-45-md {
    margin-top: 4.5rem !important;
  }
  .pt-45-md {
    padding-top: 4.5rem !important;
  }
  .mb-45-md {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-md {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-md {
    margin-left: 4.5rem !important;
  }
  .pl-45-md {
    padding-left: 4.5rem !important;
  }
  .mr-45-md {
    margin-right: 4.5rem !important;
  }
  .pr-45-md {
    padding-right: 4.5rem !important;
  }
  .mt-50-md {
    margin-top: 5rem !important;
  }
  .pt-50-md {
    padding-top: 5rem !important;
  }
  .mb-50-md {
    margin-bottom: 5rem !important;
  }
  .pb-50-md {
    padding-bottom: 5rem !important;
  }
  .ml-50-md {
    margin-left: 5rem !important;
  }
  .pl-50-md {
    padding-left: 5rem !important;
  }
  .mr-50-md {
    margin-right: 5rem !important;
  }
  .pr-50-md {
    padding-right: 5rem !important;
  }
  .mt-60-md {
    margin-top: 6rem !important;
  }
  .pt-60-md {
    padding-top: 6rem !important;
  }
  .mb-60-md {
    margin-bottom: 6rem !important;
  }
  .pb-60-md {
    padding-bottom: 6rem !important;
  }
  .ml-60-md {
    margin-left: 6rem !important;
  }
  .pl-60-md {
    padding-left: 6rem !important;
  }
  .mr-60-md {
    margin-right: 6rem !important;
  }
  .pr-60-md {
    padding-right: 6rem !important;
  }
  .mt-70-md {
    margin-top: 7rem !important;
  }
  .pt-70-md {
    padding-top: 7rem !important;
  }
  .mb-70-md {
    margin-bottom: 7rem !important;
  }
  .pb-70-md {
    padding-bottom: 7rem !important;
  }
  .ml-70-md {
    margin-left: 7rem !important;
  }
  .pl-70-md {
    padding-left: 7rem !important;
  }
  .mr-70-md {
    margin-right: 7rem !important;
  }
  .pr-70-md {
    padding-right: 7rem !important;
  }
  .mt-80-md {
    margin-top: 8rem !important;
  }
  .pt-80-md {
    padding-top: 8rem !important;
  }
  .mb-80-md {
    margin-bottom: 8rem !important;
  }
  .pb-80-md {
    padding-bottom: 8rem !important;
  }
  .ml-80-md {
    margin-left: 8rem !important;
  }
  .pl-80-md {
    padding-left: 8rem !important;
  }
  .mr-80-md {
    margin-right: 8rem !important;
  }
  .pr-80-md {
    padding-right: 8rem !important;
  }
  .mt-100-md {
    margin-top: 10rem !important;
  }
  .pt-100-md {
    padding-top: 10rem !important;
  }
  .mb-100-md {
    margin-bottom: 10rem !important;
  }
  .pb-100-md {
    padding-bottom: 10rem !important;
  }
  .ml-100-md {
    margin-left: 10rem !important;
  }
  .pl-100-md {
    padding-left: 10rem !important;
  }
  .mr-100-md {
    margin-right: 10rem !important;
  }
  .pr-100-md {
    padding-right: 10rem !important;
  }
}
@media (max-width: 575px) {
  .mt-0-sm {
    margin-top: 0rem !important;
  }
  .pt-0-sm {
    padding-top: 0rem !important;
  }
  .mb-0-sm {
    margin-bottom: 0rem !important;
  }
  .pb-0-sm {
    padding-bottom: 0rem !important;
  }
  .ml-0-sm {
    margin-left: 0rem !important;
  }
  .pl-0-sm {
    padding-left: 0rem !important;
  }
  .mr-0-sm {
    margin-right: 0rem !important;
  }
  .pr-0-sm {
    padding-right: 0rem !important;
  }
  .mt-10-sm {
    margin-top: 1rem !important;
  }
  .pt-10-sm {
    padding-top: 1rem !important;
  }
  .mb-10-sm {
    margin-bottom: 1rem !important;
  }
  .pb-10-sm {
    padding-bottom: 1rem !important;
  }
  .ml-10-sm {
    margin-left: 1rem !important;
  }
  .pl-10-sm {
    padding-left: 1rem !important;
  }
  .mr-10-sm {
    margin-right: 1rem !important;
  }
  .pr-10-sm {
    padding-right: 1rem !important;
  }
  .mt-15-sm {
    margin-top: 1.5rem !important;
  }
  .pt-15-sm {
    padding-top: 1.5rem !important;
  }
  .mb-15-sm {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-sm {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-sm {
    margin-left: 1.5rem !important;
  }
  .pl-15-sm {
    padding-left: 1.5rem !important;
  }
  .mr-15-sm {
    margin-right: 1.5rem !important;
  }
  .pr-15-sm {
    padding-right: 1.5rem !important;
  }
  .mt-20-sm {
    margin-top: 2rem !important;
  }
  .pt-20-sm {
    padding-top: 2rem !important;
  }
  .mb-20-sm {
    margin-bottom: 2rem !important;
  }
  .pb-20-sm {
    padding-bottom: 2rem !important;
  }
  .ml-20-sm {
    margin-left: 2rem !important;
  }
  .pl-20-sm {
    padding-left: 2rem !important;
  }
  .mr-20-sm {
    margin-right: 2rem !important;
  }
  .pr-20-sm {
    padding-right: 2rem !important;
  }
  .mt-25-sm {
    margin-top: 2.5rem !important;
  }
  .pt-25-sm {
    padding-top: 2.5rem !important;
  }
  .mb-25-sm {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-sm {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-sm {
    margin-left: 2.5rem !important;
  }
  .pl-25-sm {
    padding-left: 2.5rem !important;
  }
  .mr-25-sm {
    margin-right: 2.5rem !important;
  }
  .pr-25-sm {
    padding-right: 2.5rem !important;
  }
  .mt-30-sm {
    margin-top: 3rem !important;
  }
  .pt-30-sm {
    padding-top: 3rem !important;
  }
  .mb-30-sm {
    margin-bottom: 3rem !important;
  }
  .pb-30-sm {
    padding-bottom: 3rem !important;
  }
  .ml-30-sm {
    margin-left: 3rem !important;
  }
  .pl-30-sm {
    padding-left: 3rem !important;
  }
  .mr-30-sm {
    margin-right: 3rem !important;
  }
  .pr-30-sm {
    padding-right: 3rem !important;
  }
  .mt-35-sm {
    margin-top: 3.5rem !important;
  }
  .pt-35-sm {
    padding-top: 3.5rem !important;
  }
  .mb-35-sm {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-sm {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-sm {
    margin-left: 3.5rem !important;
  }
  .pl-35-sm {
    padding-left: 3.5rem !important;
  }
  .mr-35-sm {
    margin-right: 3.5rem !important;
  }
  .pr-35-sm {
    padding-right: 3.5rem !important;
  }
  .mt-40-sm {
    margin-top: 4rem !important;
  }
  .pt-40-sm {
    padding-top: 4rem !important;
  }
  .mb-40-sm {
    margin-bottom: 4rem !important;
  }
  .pb-40-sm {
    padding-bottom: 4rem !important;
  }
  .ml-40-sm {
    margin-left: 4rem !important;
  }
  .pl-40-sm {
    padding-left: 4rem !important;
  }
  .mr-40-sm {
    margin-right: 4rem !important;
  }
  .pr-40-sm {
    padding-right: 4rem !important;
  }
  .mt-45-sm {
    margin-top: 4.5rem !important;
  }
  .pt-45-sm {
    padding-top: 4.5rem !important;
  }
  .mb-45-sm {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-sm {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-sm {
    margin-left: 4.5rem !important;
  }
  .pl-45-sm {
    padding-left: 4.5rem !important;
  }
  .mr-45-sm {
    margin-right: 4.5rem !important;
  }
  .pr-45-sm {
    padding-right: 4.5rem !important;
  }
  .mt-50-sm {
    margin-top: 5rem !important;
  }
  .pt-50-sm {
    padding-top: 5rem !important;
  }
  .mb-50-sm {
    margin-bottom: 5rem !important;
  }
  .pb-50-sm {
    padding-bottom: 5rem !important;
  }
  .ml-50-sm {
    margin-left: 5rem !important;
  }
  .pl-50-sm {
    padding-left: 5rem !important;
  }
  .mr-50-sm {
    margin-right: 5rem !important;
  }
  .pr-50-sm {
    padding-right: 5rem !important;
  }
  .mt-60-sm {
    margin-top: 6rem !important;
  }
  .pt-60-sm {
    padding-top: 6rem !important;
  }
  .mb-60-sm {
    margin-bottom: 6rem !important;
  }
  .pb-60-sm {
    padding-bottom: 6rem !important;
  }
  .ml-60-sm {
    margin-left: 6rem !important;
  }
  .pl-60-sm {
    padding-left: 6rem !important;
  }
  .mr-60-sm {
    margin-right: 6rem !important;
  }
  .pr-60-sm {
    padding-right: 6rem !important;
  }
  .mt-70-sm {
    margin-top: 7rem !important;
  }
  .pt-70-sm {
    padding-top: 7rem !important;
  }
  .mb-70-sm {
    margin-bottom: 7rem !important;
  }
  .pb-70-sm {
    padding-bottom: 7rem !important;
  }
  .ml-70-sm {
    margin-left: 7rem !important;
  }
  .pl-70-sm {
    padding-left: 7rem !important;
  }
  .mr-70-sm {
    margin-right: 7rem !important;
  }
  .pr-70-sm {
    padding-right: 7rem !important;
  }
  .mt-80-sm {
    margin-top: 8rem !important;
  }
  .pt-80-sm {
    padding-top: 8rem !important;
  }
  .mb-80-sm {
    margin-bottom: 8rem !important;
  }
  .pb-80-sm {
    padding-bottom: 8rem !important;
  }
  .ml-80-sm {
    margin-left: 8rem !important;
  }
  .pl-80-sm {
    padding-left: 8rem !important;
  }
  .mr-80-sm {
    margin-right: 8rem !important;
  }
  .pr-80-sm {
    padding-right: 8rem !important;
  }
  .mt-100-sm {
    margin-top: 10rem !important;
  }
  .pt-100-sm {
    padding-top: 10rem !important;
  }
  .mb-100-sm {
    margin-bottom: 10rem !important;
  }
  .pb-100-sm {
    padding-bottom: 10rem !important;
  }
  .ml-100-sm {
    margin-left: 10rem !important;
  }
  .pl-100-sm {
    padding-left: 10rem !important;
  }
  .mr-100-sm {
    margin-right: 10rem !important;
  }
  .pr-100-sm {
    padding-right: 10rem !important;
  }
}
/* -----------------------------------------------------
   Local Variables & Settings
   ----------------------------------------------------- */
:root {
  --main-orange: #F8B400;
  --dark-orange: #E78700;
  --text-white: #ffffff;
  scroll-padding-top: 145px; /* 固定ヘッダーの高さ */
}
@media (max-width: 1023px) {
  :root {
    scroll-padding-top: 80px;
  }
}

/* -----------------------------------------------------
   Base & Common
   ----------------------------------------------------- */
body {
  padding-top: 145px;
  background-color: #F5F5F5;
}
@media (max-width: 1023px) {
  body {
    padding-top: 80px;
  }
}

section {
  padding: 5rem 0 10rem;
}
@media (max-width: 767px) {
  section {
    padding: 4rem 0;
  }
}

.container-lg {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: calc(100% - 40px);
}
@media (max-width: 767px) {
  .container-lg {
    padding: 0 10px;
    width: calc(100% - 20px);
  }
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

img {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

a img:hover {
  opacity: 0.6;
  transform: scale(1.02);
}

/* -----------------------------------------------------
   Header
   ----------------------------------------------------- */
.header {
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.header .tagline {
  color: #4C4C4C;
  margin-left: 15px;
  font-size: 1.2rem;
  line-height: 1.5;
}
.header .logo {
  height: 80px;
}
@media (max-width: 1023px) {
  .header .logo {
    height: 70px;
    margin-top: 10px;
  }
  .header .logo img {
    width: auto;
    max-height: 60px;
  }
}

.hamburger-btn {
  display: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
}
.hamburger-btn span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: #4C4C4C;
  transition: 0.3s;
  left: 0;
}
.hamburger-btn span:nth-child(1) {
  top: 0;
}
.hamburger-btn span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger-btn span:nth-child(3) {
  bottom: 0;
}
.hamburger-btn.active span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
}
.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.active span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg);
}
@media (max-width: 1023px) {
  .hamburger-btn {
    display: block;
  }
}

.z-index-nav {
  position: relative;
  z-index: 1002;
}

.sns-list {
  display: flex;
  gap: 10px;
  margin-right: 2rem;
}
.sns-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  transition: opacity 0.3s;
}
.sns-list li a:hover {
  opacity: 0.8;
}

.cta-buttons {
  display: flex;
  align-items: center;
}
.cta-buttons .btn-line, .cta-buttons .btn-stock {
  min-width: 190px;
  height: initial;
  font-size: 14px;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 16px;
  font-weight: bold;
  text-decoration: none;
  transition: opacity 0.3s;
  position: relative;
  white-space: nowrap;
}
.cta-buttons .btn-line::before, .cta-buttons .btn-stock::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.cta-buttons .btn-line::after, .cta-buttons .btn-stock::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}
.cta-buttons .btn-line:hover, .cta-buttons .btn-stock:hover {
  opacity: 0.8;
}
.cta-buttons .btn-line {
  background-color: #06c755;
  border-radius: 0 0 0 20px;
}
.cta-buttons .btn-line::before {
  background-image: url("../images/common/ico_line.svg");
}
.cta-buttons .btn-stock {
  background-color: #555;
  border-radius: 0;
}
.cta-buttons .btn-stock::before {
  background-image: url("../images/common/ico_car.svg");
}

/* --- 表示場所による個別調整 --- */
.header-actions .cta-buttons {
  position: relative;
}

.mobile-actions .cta-buttons {
  flex-direction: column;
  gap: 10px;
}
.mobile-actions .cta-buttons .btn-line, .mobile-actions .cta-buttons .btn-stock {
  width: 100%;
  height: initial;
  border-radius: 6px;
  padding: 15px 0;
}

.global-nav {
  padding: 2rem 0 2rem 0;
}
.global-nav ul {
  display: flex;
}
.global-nav ul li a {
  display: block;
  padding: 0 2rem;
  min-width: 100px;
  color: #4C4C4C;
  font-weight: bold;
  font-size: 1.4rem;
  position: relative;
  text-align: center;
  border-right: 2px solid #ffc107;
}
.global-nav ul li a:hover {
  color: #ffc107;
}
@media (max-width: 1199px) {
  .global-nav ul li a {
    min-width: 60px;
  }
}
.global-nav ul li:last-child a {
  border-right: none;
}
.global-nav ul .sp-menu {
  display: none;
  border: none;
}
@media (max-width: 1023px) {
  .global-nav ul .sp-menu {
    display: block;
  }
  .global-nav ul .sp-menu .flex {
    flex-direction: initial;
    justify-content: center;
    max-width: 300px;
    margin: 0 auto;
    width: 100%;
  }
  .global-nav ul .sp-menu .flex a {
    min-width: initial;
  }
  .global-nav ul .sp-menu .flex a::after {
    content: none;
  }
  .global-nav ul .sp-menu .flex li {
    border: none;
  }
  .global-nav ul .sp-menu .btns {
    flex-direction: row;
  }
}
@media (max-width: 1023px) and (max-width: 575px) {
  .global-nav ul .sp-menu .btns {
    flex-direction: column;
  }
}
@media (max-width: 1023px) {
  .global-nav ul .sp-menu .btns li {
    border: none;
  }
  .global-nav ul .sp-menu .btns li a {
    color: #fff;
    background: #06c755 url("../images/common/ico_line.svg") 1rem center no-repeat;
    background-size: auto 80%;
    margin: 0.5rem 1rem;
    display: block;
    border-radius: 5px;
    position: relative;
    text-align: center;
  }
  .global-nav ul .sp-menu .btns li a::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
  }
  .global-nav ul .sp-menu .btns li a:hover {
    opacity: 0.6;
  }
  .global-nav ul .sp-menu .btns li:nth-child(2) a {
    color: #fff;
    background: #4C4C4C url("../images/common/ico_car.svg") 1rem center no-repeat;
    background-size: auto 80%;
    margin: 1rem;
    display: block;
    border-radius: 5px;
  }
}
@media (max-width: 1023px) {
  .global-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    transition: 0.4s ease-in-out;
    z-index: 1001;
    overflow-y: auto;
    padding-top: 80px;
  }
  .global-nav.active {
    right: 0;
  }
  .global-nav .nav-inner {
    padding: 0 20px 40px;
  }
  .global-nav ul {
    flex-direction: column;
  }
  .global-nav ul li {
    width: 100%;
    border-bottom: 1px dotted #ccc;
  }
  .global-nav ul li a {
    padding: 15px;
    font-size: 1.6rem;
    border-right: none;
    text-align: left;
    position: relative;
  }
  .global-nav ul li a::after {
    display: inline-block;
    transform: rotate(45deg);
    width: 0.5em;
    height: 0.5em;
    margin-left: 10px;
    border-top: 2px solid #4C4C4C;
    border-right: 2px solid #4C4C4C;
    content: "";
    position: absolute;
    right: 1.5rem;
    top: calc(50% - 5.2px);
  }
}

.mobile-actions {
  display: none;
}
@media (max-width: 1023px) {
  .mobile-actions {
    display: block;
  }
}

/* -----------------------------------------------------
   Hero Section (MV)
   ----------------------------------------------------- */
.mv {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.mv__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.mv__video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.mv__video-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.mv__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
}
.mv__video.-pc {
  display: block;
}
@media (max-width: 767px) {
  .mv__video.-pc {
    display: none;
  }
}
.mv__video.-sp {
  display: none;
}
@media (max-width: 767px) {
  .mv__video.-sp {
    display: block;
  }
}
.mv__content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-left: 5%;
  bottom: 16rem;
}
@media (max-width: 767px) {
  .mv__content {
    padding-left: 20px;
    padding-bottom: 0;
  }
}
.mv__main {
  font-size: 4rem;
  margin-left: -0.5em;
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .mv__main {
    font-size: 3.4rem;
  }
}
@media (max-width: 575px) {
  .mv__main {
    font-size: 2.4rem;
  }
}
.mv__inner {
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.mv__badge-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.mv__badge-area .badge-yellow {
  display: inline-block;
  background: #F8B400;
  color: #fff;
  padding: 8px 15px;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .mv__badge-area .badge-yellow {
    font-size: 1.2rem;
    padding: 5px 10px;
  }
}

/* -----------------------------------------------------
   Enrich Section (Features & Banner)
   ----------------------------------------------------- */
.enrich-section {
  background-color: var(--main-orange);
  padding: 13rem 2rem 24rem;
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
  overflow: visible;
  z-index: 5;
  margin-top: -20rem;
}
.enrich-section::before {
  content: "ENRICH\aYOUR LIFE";
  white-space: pre-line;
  font-size: 120px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.2);
  line-height: 0.9;
  font-style: italic;
  position: absolute;
  bottom: -2rem;
  left: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .enrich-section::before {
    font-size: 55px;
    bottom: -0.5rem;
  }
}
.enrich-section::after {
  content: "";
  display: block;
  width: 25%;
  height: 100%;
  background: url(../images/common/enrichyourlife.svg) right bottom no-repeat;
  position: absolute;
  right: 0;
  bottom: 0;
  background-size: contain;
}
@media (max-width: 767px) {
  .enrich-section {
    padding: 14rem 2rem 10rem;
    margin: -17rem 0 4rem;
  }
}

.features-container {
  display: flex;
  justify-content: center;
  max-width: 1120px;
  margin: 0 auto 40px;
  transform: translateY(-3rem);
  background-color: var(--dark-orange);
  border-radius: 100px;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
@media (max-width: 767px) {
  .features-container {
    border-radius: 40px;
    text-align: center;
    width: 100%;
  }
}

.features-wrapper {
  padding: 0 1rem;
}

.feature-item {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 1rem 0 1rem 3rem;
  color: var(--text-white);
}
.feature-item.active {
  background-color: #fffdec;
  color: #E07F00;
  border-radius: 50px 0 50px 0;
}
.feature-item.active .number {
  border-right: 2px solid #d89600;
}
@media (max-width: 767px) {
  .feature-item {
    padding: 1rem 0.5rem;
    justify-content: center;
    align-items: flex-start;
  }
}

.number {
  font-size: 8rem;
  font-weight: bold;
  margin-right: 2rem;
  line-height: 1;
  border-right: 2px solid #fff;
  padding: 2.2rem 2rem 2.2rem 0;
  font-family: Arial, Helvetica, sans-serif;
}
@media (max-width: 1023px) {
  .number {
    font-size: 6rem;
    margin-right: 1rem;
  }
  .number::first-letter {
    font-size: 0;
  }
}
@media (max-width: 767px) {
  .number {
    display: none;
  }
}

@media (max-width: 1023px) {
  .text-content {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .text-content {
    width: 100%;
  }
}
.text-content h2 {
  font-size: 3.6rem;
  margin: 0 0 5px 0;
}
@media (max-width: 767px) {
  .text-content h2 {
    font-size: 2.6rem;
    margin-bottom: -0.5rem;
  }
}
.text-content h2 span {
  display: block;
  font-size: 1.6rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .text-content h2 span {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .text-content {
    padding: 0;
  }
}

.banner-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 8rem 0 1rem;
  scroll-snap-type: x mandatory;
}
.banner-container::-webkit-scrollbar {
  height: 6px;
  margin-top: 1rem;
}
.banner-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.662745098);
  border-radius: 10px;
}
@media (max-width: 767px) {
  .banner-container {
    padding: 0;
  }
  .banner-container::-webkit-scrollbar {
    display: none;
  }
}

.banner-item {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 280px;
  position: relative;
}
@media (max-width: 767px) {
  .banner-item {
    min-width: 250px;
  }
}

.bg-text {
  font-size: 120px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.2);
  line-height: 0.9;
  font-style: italic;
}
@media (max-width: 767px) {
  .bg-text {
    font-size: 60px;
  }
}

/* -----------------------------------------------------
   Reason Section
   ----------------------------------------------------- */
.section-reason {
  padding: 8rem 2rem;
}
@media (max-width: 767px) {
  .section-reason {
    padding: 0 2rem 4rem;
  }
}

.reason-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 40px;
}
@media (max-width: 1023px) {
  .reason-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .reason-grid {
    grid-template-columns: 1fr;
    gap: 60px 0;
  }
}

.reason-item {
  text-align: center;
}
.reason-item .reason-circle {
  width: 150px;
  height: 150px;
  background-color: #F8B400;
  border-radius: 50%;
  margin: 0 auto 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.reason-item .reason-circle .circle-label {
  font-size: 10px;
  font-weight: bold;
  margin-bottom: -2px;
}
.reason-item .reason-circle .circle-number {
  font-size: 42px;
  font-weight: bold;
  line-height: 1;
}
.reason-item .item-h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.4;
  min-height: 2.8em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reason-item .item-desc {
  font-size: 14px;
  color: #666;
  text-align: left;
  line-height: 1.8;
}

/* -----------------------------------------------------
   About Top Section
   ----------------------------------------------------- */
.about-section {
  background: #F8B400 url(../images/top/about_sumisyou.png) right bottom no-repeat;
  background-size: 38% auto;
  position: relative;
  overflow: hidden;
  padding: 8rem 8rem;
  border-radius: 120px 0 120px 0;
  color: #4C4C4C;
  max-width: 840px;
  margin: 0 auto -13rem;
}
.about-section::before, .about-section::after {
  content: "ABOUT";
  font-family: Arial, Helvetica, sans-serif;
  position: absolute;
  font-size: 12rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  font-style: italic;
  z-index: 1;
}
@media (max-width: 767px) {
  .about-section::before, .about-section::after {
    font-size: 6rem;
  }
}
.about-section::before {
  top: -2rem;
  right: -1.5rem;
}
@media (max-width: 767px) {
  .about-section::before {
    top: -1rem;
    right: 2rem;
  }
}
.about-section::after {
  content: "SUMISYOU";
  left: -1.5rem;
  bottom: -2rem;
}
@media (max-width: 767px) {
  .about-section::after {
    bottom: -1rem;
    left: 2rem;
  }
}
.about-section .content-wrapper {
  width: 80%;
}
@media (max-width: 767px) {
  .about-section .content-wrapper {
    width: 100%;
    text-align: center;
  }
}
.about-section .main-copy {
  font-size: clamp(1.8rem, 2vw, 2.8rem);
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
  color: #fff;
}
.about-section .description {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: bold;
}
.about-section .description p {
  margin-bottom: 0.5rem;
}
.about-section .catchphrase {
  display: inline-block;
  background-color: #DC8F00;
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 1rem;
}
.about-section .sub-message {
  font-weight: bold;
  margin-bottom: 40px;
}
.about-section .btn {
  background-color: #fff;
  color: #F8B400;
  font-weight: bold;
}
.about-section .btn::after {
  border-top-color: #F8B400;
  border-right-color: #F8B400;
}
.about-section .btn::before {
  background: #4C4C4C;
}
@media (max-width: 767px) {
  .about-section .btn {
    text-align: center;
    left: calc(50% - 140px);
    display: inline-block;
  }
}
@media (max-width: 767px) {
  .about-section {
    background-position: center bottom;
    background-size: 330px auto;
    padding: 5rem 2rem 38rem;
    border-radius: 60px 0px 60px 0;
    width: calc(100% - 4rem);
  }
  .about-section .container {
    padding: 0;
  }
}

/* -----------------------------------------------------
   Service Section
   ----------------------------------------------------- */
.service {
  padding-top: 23rem;
  padding-bottom: 10rem;
  margin-bottom: -10rem;
  background-color: #fff;
}
.service .btn {
  float: right;
}
@media (max-width: 767px) {
  .service .btn {
    float: none;
    display: inline-block;
    left: calc(50% - 140px);
    text-align: center;
    margin-bottom: 3rem;
  }
}
.service-header {
  text-align: center;
  margin-bottom: 80px;
}
.service-title-en {
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.service-title-en span {
  color: #555;
}
.service-title-en::after {
  content: "ERVICE";
  color: #F8B400;
  margin-left: -0.1em;
}
.service-subtitle {
  font-weight: bold;
  margin-top: -5px;
  margin-bottom: 30px;
}
.service-read {
  font-size: 2rem;
  font-weight: bold;
}
.service-intro {
  font-size: 1.5rem;
}
.service-intro span {
  color: #F8B400;
  font-weight: bold;
}
.service-item {
  display: flex;
  align-items: center;
  margin-bottom: 100px;
  gap: 50px;
}
.service-item.reverse {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .service-item.reverse {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .service-item {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 3rem;
    align-items: flex-start;
  }
}
.service-image {
  flex: 0 0 50%;
  position: relative;
}
.service-image img {
  width: 100%;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .service-image {
    width: 100%;
    margin: 0 auto;
  }
}
.service-number {
  position: absolute;
  top: -4rem;
  right: 2rem;
  font-size: 12rem;
  font-weight: bold;
  color: #F8B400;
  line-height: 1;
  z-index: 1;
  font-family: Arial, Helvetica, sans-serif;
}
@media (max-width: 767px) {
  .service-number {
    font-size: 70px;
    top: -30px;
  }
}
.service-content {
  flex: 1;
  width: 100%;
}
.service-content .item-lead {
  font-weight: bold;
  font-size: clamp(1.6rem, 2vw, 2rem);
  margin-bottom: 20px;
}

/* -----------------------------------------------------
   Achievement Section
   ----------------------------------------------------- */
.achievement {
  background-color: #FFF5DA;
  padding: 10rem 4rem;
  border-radius: 100px 0 100px 0;
  margin-bottom: -8rem;
  z-index: 1;
  position: relative;
}
@media (max-width: 767px) {
  .achievement {
    padding: 4rem 2rem 8rem;
    border-radius: 40px 0 40px 0;
    margin-bottom: -40px;
  }
}
.achievement-header {
  text-align: center;
  margin-bottom: 60px;
}
.achievement-title-en {
  font-size: 64px;
  font-weight: bold;
  color: #F8B400;
  line-height: 1;
}
.achievement-title-en span {
  color: #555;
}
@media (max-width: 767px) {
  .achievement-title-en {
    font-size: 40px;
  }
}
.achievement-subtitle {
  font-size: 16px;
  font-weight: bold;
  color: #4C4C4C;
  margin-top: 10px;
}
.achievement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}
@media (max-width: 1023px) {
  .achievement-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .achievement-grid {
    grid-template-columns: 1fr;
  }
}

.achievement-card .card-inner, .blog-card .card-inner, .yt-card .card-inner {
  background: #fff;
  transition: transform 0.3s;
}
.achievement-card .card-inner img, .blog-card .card-inner img, .yt-card .card-inner img {
  width: 100%;
  height: auto;
}
.achievement-card .card-inner:hover, .blog-card .card-inner:hover, .yt-card .card-inner:hover {
  transform: translateY(-5px);
}
.achievement-card .category-label, .achievement-card .category-tag, .achievement-card .badge, .blog-card .category-label, .blog-card .category-tag, .blog-card .badge, .yt-card .category-label, .yt-card .category-tag, .yt-card .badge {
  background-color: #F8B400;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 10px;
}
.achievement-card .category-label, .blog-card .category-label, .yt-card .category-label {
  display: inline-block;
}
.achievement-card .card-image, .blog-card .card-image, .yt-card .card-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 15px;
}
.achievement-card .card-image img, .blog-card .card-image img, .yt-card .card-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.achievement-card .card-title, .blog-card .card-title, .yt-card .card-title {
  font-size: 14px;
  line-height: 1.6;
  color: #4C4C4C;
  margin: 0 0 10px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.achievement-card .card-date, .blog-card .card-date, .yt-card .card-date {
  font-size: 13px;
  color: #888;
}

/* -----------------------------------------------------
   Voice Section
   ----------------------------------------------------- */
.voice {
  background-color: #fff;
  padding-bottom: 20rem;
  margin-bottom: -10rem;
  padding-top: 18rem;
}
@media (max-width: 767px) {
  .voice {
    padding-top: 10rem;
  }
}
.voice-header {
  text-align: center;
  margin-bottom: 50px;
}
.voice-title-en {
  font-size: 60px;
  font-weight: bold;
  color: #F8B400;
  line-height: 1;
}
.voice-title-en span {
  color: #555;
}
.voice-subtitle {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 40px;
}
.voice-lead {
  font-size: 20px;
  font-weight: bold;
  color: #4C4C4C;
}
.voice-lead span {
  color: #F8B400;
}
.voice-card {
  background-color: #f7f7f7;
  border-radius: 20px;
  padding: 40px;
}
@media (max-width: 767px) {
  .voice-card {
    padding: 4rem 2rem;
  }
}
.voice-item {
  display: flex;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid #e0e0e0;
}
.voice-item:first-child {
  padding-top: 0;
}
.voice-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .voice-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.voice .user-info {
  flex: 0 0 80px;
  text-align: center;
}
.voice .user-info .user-icon {
  width: 80px;
  height: 80px;
  background-color: #ccc;
  border-radius: 50%;
  margin-bottom: 10px;
  overflow: hidden;
}
.voice .user-info .user-name {
  font-size: 12px;
  color: #666;
}
.voice .voice-content {
  flex: 1;
}
.voice .voice-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
.voice .voice-meta .stars {
  color: #F8B400;
  font-size: 18px;
}
.voice .voice-meta .date {
  font-size: 14px;
  color: #888;
}
.voice .voice-meta .google-link {
  margin-left: auto;
  font-size: 14px;
  color: #F8B400;
  text-decoration: underline;
}
.voice .voice-meta .google-link:hover {
  text-decoration: none;
}
@media (max-width: 767px) {
  .voice .voice-meta {
    justify-content: center;
    flex-wrap: wrap;
  }
  .voice .voice-meta .google-link {
    margin-left: 0;
    width: 100%;
  }
}
.voice .voice-text {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  text-align: left;
}

/* -----------------------------------------------------
   News Section
   ----------------------------------------------------- */
.news {
  background-color: #FFF5DA;
  border-radius: 100px 0px 100px 0;
  position: relative;
  z-index: 2;
}
.news-container {
  max-width: 800px;
  margin: 5rem auto;
}
.news-header {
  text-align: center;
  margin-bottom: 50px;
}
.news-title-en {
  font-size: 64px;
  font-weight: bold;
  color: #F8B400;
  line-height: 1;
}
.news-title-en span {
  color: #555;
}
.news-subtitle {
  font-size: 16px;
  font-weight: bold;
  color: #F8B400;
  margin-top: 10px;
}
.news-list {
  border-top: 1px solid #888;
  border-bottom: 1px solid #888;
  margin-bottom: 40px;
}
.news-item {
  display: flex;
  align-items: center;
  padding: 20px 10px;
  text-decoration: none;
  border-bottom: 1px solid #888;
  transition: background-color 0.3s;
}
.news-item:last-child {
  border-bottom: none;
}
.news-item:hover {
  background-color: #ffefc2;
}
@media (max-width: 767px) {
  .news-item {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
.news-date {
  font-size: 14px;
  flex: 0 0 100px;
}
@media (max-width: 767px) {
  .news-date {
    flex: 0;
  }
}
.news-category {
  background-color: #F8B400;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 4px 20px;
  margin: 0 30px 0 0;
  border-radius: 2px;
  min-width: 80px;
  text-align: center;
}
@media (max-width: 767px) {
  .news-category {
    margin: 0;
  }
}
.news-title {
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}
@media (max-width: 767px) {
  .news-title {
    width: 100%;
    white-space: normal;
  }
}
@media (max-width: 767px) {
  .news {
    padding: 40px 20px;
    border-radius: 40px 0 40px 0;
  }
}

/* ページネーション全体の枠 */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}

ul.page-numbers {
  border: none !important;
  background: none !important;
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 各数字と矢印の共通スタイル */
.pagination a.page-numbers,
.pagination span.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 2px solid #ffb800; /* ここだけで線を引く */
  border-radius: 50%;
  color: #444;
  text-decoration: none;
  background-color: #fff;
  box-sizing: border-box; /* 線の厚みを内側に含める */
}

/* ホバーした時 */
.pagination a.page-numbers:hover {
  background-color: #fff8e1; /* 薄いオレンジ */
}

/* 現在表示中の数字（アクティブ） */
.pagination span.page-numbers.current {
  background-color: #ffb800;
  border: none; /* 線を消して塗りつぶしのみにする */
}

/* 矢印（< や >）のスタイル微調整 */
.pagination .prev, .pagination .next {
  font-family: serif; /* 矢印を綺麗に見せる場合 */
}

.filter-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.filter-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 20px;
  border-radius: 50px;
  border: 2px solid #F8B400;
  background-color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}
.filter-link.is-active {
  background-color: var(--main-orange);
}
.filter-link:hover {
  background-color: rgba(var(--main-orange), 0.1);
}
.filter-link:hover.is-active {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .filter-link {
    min-width: 110px;
    height: 42px;
    font-size: 14px;
    padding: 0 15px;
    border-width: 2px;
  }
}

.post-header {
  margin-bottom: 40px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.post-date {
  font-size: 1.4rem;
  font-family: Arial, sans-serif;
  color: #4C4C4C;
}

.post-category {
  background-color: #F8B400;
  color: #4C4C4C;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 2px 12px;
  display: inline-block;
}

.post-content {
  line-height: 2;
  font-size: 16px;
  margin-bottom: 6rem;
}
.post-content p {
  margin-bottom: 2em;
}
.post-content p:last-child {
  margin-bottom: 0;
}

/* -----------------------------------------------------
   Blog Section
   ----------------------------------------------------- */
.blog {
  background-color: #fff;
  padding: 20rem 4rem 10rem;
  z-index: 1;
  position: relative;
  margin-top: -10rem;
}
@media (max-width: 767px) {
  .blog {
    padding: 14rem 2rem 5rem;
  }
}
.blog-header {
  text-align: center;
  margin-bottom: 60px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}
@media (max-width: 1023px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* -----------------------------------------------------
   YouTube Section
   ----------------------------------------------------- */
/* プロがよく使う16:9維持のCSS */
/* YouTubeグリッド全体のレイアウト */
.youtube-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* カード間の余白（上下左右一括） */
  margin: 0 2rem;
}

/* 各カードの横幅（PC時：4カラム） */
.youtube-card {
  width: calc((100% - 60px) / 4); /* (100% - gap*3) / 4 */
  display: flex;
  flex-direction: column;
}

/* 動画埋め込み部分のレスポンシブ対応（16:9維持） */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 の比率計算 (9 ÷ 16 × 100) */
  background: #000;
  border-radius: 20px;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 動画タイトル */
.video-title {
  margin-top: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  /* タイトルが長すぎるときに2行で省略（…）する処理 */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* --- レスポンシブ対応 --- */
/* タブレット（960px以下）: 2カラム */
@media (max-width: 767px) {
  .youtube-card {
    width: calc((100% - 20px) / 2);
  }
}
/* スマホ（600px以下）: 1カラム */
@media (max-width: 575px) {
  .youtube-grid {
    gap: 30px;
  }
  .youtube-card {
    width: 100%;
  }
  .video-title {
    font-size: 1.4rem;
  }
}
/* -----------------------------------------------------
   Footer & Contact Area
   ----------------------------------------------------- */
.contact-area {
  position: relative;
  padding: 100px 20px 60px;
  text-align: center;
}
.contact-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 50% 50% 0 0/25% 25% 0 0;
  z-index: 0;
}
@media (max-width: 767px) {
  .contact-area::before {
    left: -40%;
    width: 180%;
  }
}

.box-label {
  margin-bottom: 1rem;
  font-size: 2.2rem;
}

.contact-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.contact-sub {
  font-size: 2.8rem;
  font-weight: bold;
  color: #4C4C4C;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .contact-sub {
    font-size: 2rem;
  }
}

.contact-main {
  margin-bottom: 40px;
}

.contact-flex {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.btn-line, .btn-mail {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  position: relative;
  transition: opacity 0.3s;
}
.btn-line:hover, .btn-mail:hover {
  opacity: 0.8;
}

.btn-line {
  background-color: #06c755 !important;
}

.btn-mail {
  background-color: #555;
}

.bottom-nav {
  display: flex;
  height: 320px;
}
@media (max-width: 767px) {
  .bottom-nav {
    flex-direction: column;
    height: auto;
  }
}
.bottom-nav .nav-card {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
@media (max-width: 767px) {
  .bottom-nav .nav-card {
    min-height: 20rem;
  }
}
.bottom-nav .nav-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s;
}
.bottom-nav .nav-card:hover::before {
  background: rgba(0, 0, 0, 0.3);
}
.bottom-nav .nav-card.card-company {
  background-image: url("../images/common/bg_company.jpg");
}
.bottom-nav .nav-card.card-access {
  background-image: url("../images/common/bg_access.jpg");
}
.bottom-nav .nav-card.card-recruit {
  background: url("../images/common/bg_recruit.jpg") no-repeat top right/cover;
}
.bottom-nav .ttl01 {
  font-size: 5rem;
  margin-bottom: 0;
}
.bottom-nav .ttl01 span {
  color: #fff;
  font-size: 2rem;
}
.bottom-nav .ttl01::first-letter {
  color: #fff;
}

.arrow-yellow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 50px 65px;
  border-color: transparent transparent #f3b110 transparent;
}
.arrow-yellow::before {
  content: "";
  position: absolute;
  right: 1rem;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  top: 3rem;
}

.main-footer {
  background-color: #484848;
  color: #fff;
  font-size: 14px;
}
.main-footer .footer-container {
  margin: 0 auto;
  padding: 6rem 2rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1000px) {
  .main-footer .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
  }
}
.main-footer .footer-info {
  flex: 0 0 250px;
}
@media (max-width: 767px) {
  .main-footer .footer-info {
    margin-bottom: -5rem;
  }
}
.main-footer .footer-logo img {
  max-width: 290px;
  margin-bottom: 30px;
  margin-right: 2rem;
}
.main-footer .footer-social {
  display: flex;
  gap: 15px;
}
@media (max-width: 1000px) {
  .main-footer .footer-social {
    justify-content: center;
  }
}
.main-footer .social-icon {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.main-footer .social-icon:hover {
  opacity: 0.8;
}
.main-footer .f-btn {
  min-width: 200px;
  width: 100%;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  position: relative;
}
.main-footer .f-btn::after {
  content: "";
  position: absolute;
  right: 12px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.main-footer .f-btn::before {
  content: "";
  position: absolute;
  left: 20px;
  width: 29px;
  height: 29px;
  background-size: contain;
  background-repeat: no-repeat;
}
.main-footer .f-btn:hover {
  opacity: 0.6;
}
.main-footer .btn-line-ft {
  background-color: #06c755;
}
.main-footer .btn-line-ft::before {
  background-image: url(../images/common/ico_line.svg);
}
.main-footer .btn-contact-ft, .main-footer .btn-car-ft {
  background-color: #F8B400;
}
.main-footer .btn-contact-ft::before {
  background-image: url(../images/common/ic_contact_ft.svg);
}
.main-footer .btn-contact-ft::before {
  background-image: url(../images/common/ic_contact_ft.svg);
}
.main-footer .btn-car-ft::before {
  background-image: url(../images/common/ic_car_ft.svg);
}
.main-footer .footer-sitemap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 640px;
}
@media (max-width: 767px) {
  .main-footer .footer-sitemap {
    display: none;
  }
}
.main-footer .footer-btns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 640px;
}
@media (max-width: 767px) {
  .main-footer .footer-btns {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}
.main-footer .sitemap-col {
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-footer .sitemap-col li {
  margin-bottom: 15px;
}
.main-footer .sitemap-col a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
  display: block;
}
.main-footer .sitemap-col a:hover {
  color: #f3b110;
}
.main-footer .bottom-flex {
  padding: 3rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.6rem;
  color: #8D8D8D;
}
@media (max-width: 767px) {
  .main-footer .bottom-flex {
    flex-direction: column-reverse;
    gap: 15px;
  }
}
.main-footer .footer-sub-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 767px) {
  .main-footer .footer-sub-links {
    justify-content: center;
    gap: 1rem;
  }
}
.main-footer .footer-sub-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
}
.main-footer .footer-sub-links a:hover {
  color: #f3b110;
}
@media (max-width: 767px) {
  .main-footer .footer-sub-links a {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .main-footer .footer-links-area {
    width: 100%;
  }
}

/* -----------------------------------------------------
   パンくず
   ----------------------------------------------------- */
.breadcrumb {
  display: flex;
  gap: 0 10px;
  list-style: none;
  padding: 3rem 2rem 3rem 4rem;
  font-size: 0.9em;
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .breadcrumb {
    padding: 2rem 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .breadcrumb::-webkit-scrollbar {
    display: none;
  }
}

.breadcrumb li {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.breadcrumb li:not(:last-child)::after {
  display: inline-block;
  transform: rotate(45deg);
  width: 0.5em;
  height: 0.5em;
  margin-left: 10px;
  border-top: 1px solid #4C4C4C;
  border-right: 1px solid #4C4C4C;
  content: "";
}

.breadcrumb a {
  color: #4C4C4C;
  text-decoration: underline;
}
.breadcrumb a:hover {
  text-decoration: none;
}

.breadcrumb li.none {
  display: none;
}

/* -----------------------------------------------------
   To Top Button
   ----------------------------------------------------- */
.totop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background-color: #4C4C4C;
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
.totop::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
  margin-bottom: 4px;
  display: block;
}
.totop.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.totop:hover {
  background-color: #F8B400;
  color: #fff;
}
.totop__text {
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
}

/* -----------------------------------------------------
   General Utilities
   ----------------------------------------------------- */
.title {
  background: #f3b110 url(../images/common/bg_title.svg) right top no-repeat;
  background-size: contain;
  padding: 8rem 4rem;
  color: #fff;
  font-size: 2rem;
  position: relative;
  border-radius: 100px 0 100px 0;
}
.title::before {
  content: "";
  background-color: #fff;
  display: block;
  width: 100%;
  height: 100px;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 767px) {
  .title {
    font-size: 1.4rem;
    background-size: 100px auto;
    padding: 3rem 2rem;
    border-radius: 50px 0 50px 0;
  }
  .title::before {
    height: 50px;
  }
}

.title span {
  color: rgba(255, 255, 255, 0.15);
  font-size: 11rem;
  position: absolute;
  bottom: -6.5rem;
  left: 2rem;
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
}
@media (max-width: 767px) {
  .title span {
    font-size: 4rem;
    position: absolute;
    bottom: -2.2rem;
    left: 0rem;
  }
}

.ttl01 {
  text-align: center;
  margin-bottom: 6rem;
  color: #F8B400;
  font-size: clamp(4rem, 5vw, 8rem);
  font-weight: bold;
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif;
}
.ttl01::first-letter {
  color: #4C4C4C;
}
.ttl01 span {
  display: block;
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: bold;
  color: #4C4C4C;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .ttl01 {
    margin-bottom: 3rem;
  }
}

.ttl03, .wp-block-heading {
  font-size: 2rem;
  padding-bottom: 1rem;
  position: relative;
  margin-bottom: 2rem;
}
.ttl03::before, .wp-block-heading::before {
  content: "";
  width: 100px;
  height: 2px;
  background-color: #F8B400;
  position: absolute;
  left: 0;
  bottom: 0;
}

h4.wp-block-heading {
  font-size: 1.8rem;
  padding: 1rem;
  position: relative;
  margin-bottom: 2rem;
  background: #e9e9e9;
}
h4.wp-block-heading::before {
  content: none;
}

h5.wp-block-heading {
  font-size: 1.8rem;
  padding-left: 1rem;
  position: relative;
  margin-bottom: 2rem;
  border-left: 2px dotted #F8B400;
}
h5.wp-block-heading::before {
  content: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #555;
  color: #fff;
  padding: 12px 10px 12px 0;
  min-width: 280px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #F8B400;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  z-index: -1;
}
.btn::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}
.btn:hover {
  color: #fff;
}
.btn:hover::before {
  transform: translateX(0);
}

.mt-60 {
  margin-top: 60px;
}

.mb-100 {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .mb-100 {
    margin-bottom: 50px;
  }
}

/* -----------------------------------------------------
   SUMISYOUについて
   ----------------------------------------------------- */
.concept-section {
  text-align: center;
  padding: 60px 20px;
}

/* 上部の一文 */
.concept-lead {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .concept-lead {
    font-size: 1.4rem;
  }
}

/* 中央の3行セクション */
.concept-body {
  margin-bottom: 40px;
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 575px) {
  .concept-body {
    font-size: 1.6rem;
  }
}

.concept-body p {
  margin: 10px 0;
}

/* 黄色のマーカー（ハイライト）部分 */
.highlight-yellow {
  font-size: 2.4rem;
  background-color: var(--main-orange);
  padding: 2px 4px;
  margin: 0 2px;
  display: inline-block;
}
@media (max-width: 575px) {
  .highlight-yellow {
    font-size: 2rem;
  }
}

.owner-section {
  padding: 80px 20px;
  background-color: #f5f5f5;
  overflow: hidden;
}

/* コンテンツ配置 */
.owner-container {
  display: flex;
  align-items: flex-start;
  position: relative;
}

/* 黄色のカード */
.owner-card {
  background-color: #f0b400;
  color: #fff;
  padding: 6rem 8rem 6rem 6rem;
  border-radius: 100px 0 100px 0;
  width: calc(100% - 14rem);
  position: relative;
  z-index: 1;
  font-weight: bold;
}
@media (max-width: 767px) {
  .owner-card {
    padding: 6rem 2rem 6rem 2rem;
    width: 100%;
    border-radius: 50px 0 50px 0;
  }
}
.owner-card::before {
  content: "";
  width: 422px;
  height: 126px;
  display: block;
  background: url(../images/about/owner.svg) 0 0 no-repeat;
  background-size: contain;
  top: -0.5rem;
  right: -0.5rem;
  position: absolute;
}
@media (max-width: 767px) {
  .owner-card::before {
    width: 300px;
  }
}
.owner-card::after {
  content: "";
  width: 477px;
  height: 126px;
  display: block;
  background: url(../images/about/profile.svg) 0 0 no-repeat;
  background-size: contain;
  bottom: -5rem;
  left: -0.5rem;
  position: absolute;
}
@media (max-width: 767px) {
  .owner-card::after {
    width: 300px;
    bottom: -8rem;
  }
}

/* プロフィールテキスト */
.company-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.owner-name {
  font-size: 3.2rem;
  font-weight: bold;
  margin: 0;
  letter-spacing: 0.2em;
}

.owner-name-en {
  font-size: 2.4rem;
  font-style: italic;
  margin-bottom: 30px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1;
}

.owner-description {
  text-align: justify;
  color: #4C4C4C;
  max-width: 620px;
  width: 70%;
}
@media (max-width: 767px) {
  .owner-description {
    width: 100%;
  }
}

.owner-description p {
  margin-bottom: 1em;
}

/* 写真 */
.owner-image {
  width: 50%;
  margin-left: -25%; /* カードに重ねる */
  position: relative;
  z-index: 2;
  top: 8rem;
}

.owner-image img {
  width: 100%;
  display: block;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .owner-container {
    flex-wrap: wrap-reverse;
  }
  .owner-image {
    width: 80%;
    margin: 0 auto 4rem;
    top: 0;
  }
}
.message-section {
  width: 100%;
  background-color: #fff;
  overflow: hidden;
  position: relative;
  padding-top: 30rem;
  margin-top: -20rem;
  font-size: 1.6rem;
}

.message-container {
  display: flex;
  align-items: stretch; /* 左右の高さを揃える */
  margin: 0 0 0 auto; /* 右寄せ（写真は端まで行くように） */
}
@media (max-width: 1023px) {
  .message-container {
    flex-direction: column; /* 縦並びに変更 */
    margin: 0;
  }
}

/* テキストエリア */
.message-text-content {
  flex: 1;
  padding: 80px 60px;
  max-width: 700px; /* 文字が広がりすぎないように制限 */
}
@media (max-width: 1023px) {
  .message-text-content {
    max-width: 100%;
    padding: 4rem 2rem;
    order: 2; /* テキストを下に */
  }
}

.message-main-title {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 4rem;
}
@media (max-width: 1023px) {
  .message-main-title {
    font-size: 2rem;
  }
}

.message-body p {
  margin-bottom: 2em; /* 段落間のスペース */
}

/* 太字の強調テキスト */
.message-em-text {
  font-weight: bold;
}

/* 写真エリア */
.message-image-area {
  flex: 1;
  min-height: 600px;
}
@media (max-width: 1023px) {
  .message-image-area {
    width: 100%;
    max-height: 300px;
    min-height: auto;
    order: 1; /* 写真を上に */
    overflow: hidden;
  }
}

.message-image-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* 枠に合わせて写真をトリミング */
  display: block;
}

/* --- セクション全体の基本設定 --- */
.staff-section {
  padding: 80px 0;
  background-color: #f8f8f8;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  overflow: hidden; /* はみ出しを隠す */
}

.staff-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 20px;
}

.staff-title-en {
  font-size: clamp(40px, 8vw, 60px); /* 画面幅に合わせて可変 */
  font-weight: 900;
  color: #ffb800;
  letter-spacing: 0.1em;
  margin: 0;
}

.staff-title-en .first-char {
  color: #444;
}

/* --- スクロールラッパー（ここがフリックの肝） --- */
.staff-scroll-wrapper {
  overflow-x: auto;
  cursor: grab; /* PCで掴めるアイコンに */
  padding: 20px 0 40px;
  scrollbar-width: none; /* Firefoxスクロールバー非表示 */
  -ms-overflow-style: none; /* IEスクロールバー非表示 */
}

.staff-scroll-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safariスクロールバー非表示 */
}

.staff-scroll-wrapper:active {
  cursor: grabbing; /* ドラッグ中のアイコン */
}

.staff-container {
  display: flex;
  gap: 3rem;
  padding: 0 10px;
  width: -moz-max-content;
  width: max-content; /* 常に中身の幅を維持 */
  min-width: 100%; /* センタリングのために必要 */
  justify-content: center; /* デフォルトは中央 */
  transition: justify-content 0.3s;
}
@media (max-width: 575px) {
  .staff-container {
    gap: 1.5rem;
  }
}

/* 横に溢れた時（スクロールが必要な時）のクラス */
.is-overflow {
  justify-content: flex-start !important;
  width: -moz-max-content !important;
  width: max-content !important;
}

/* --- カードのデザイン（背景色と角丸） --- */
.staff-card {
  max-width: 290px;
  flex-shrink: 0; /* 潰れないように固定 */
  background-color: #ffb800; /* 背景の黄色 */
  color: #fff;
  padding: 40px 30px;
  border-radius: 80px 0 80px 0; /* 特徴的な角丸 */
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none; /* ドラッグ中にテキスト選択されないように */
}

/* 写真・テキストの装飾 */
.staff-image img {
  width: 180px;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-bottom: 25px;
  pointer-events: none; /* 画像ドラッグを防止 */
}

.staff-role {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 5px;
  width: 100%;
}

.staff-name {
  font-size: 2.8rem;
  font-weight: bold;
  margin: 0;
  width: 100%;
}

.staff-name-en {
  font-size: 1.8rem;
  font-style: italic;
  margin-bottom: 25px;
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
}

.staff-catch {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.4;
  width: 100%;
  color: #4C4C4C;
}

.staff-desc {
  opacity: 0.95;
  width: 100%;
  color: #4C4C4C;
}

/* -----------------------------------------------------
   よくあるご質問
   ----------------------------------------------------- */
/* グループ見出し */
.faq-group-ttl {
  padding: 1rem 2rem 2rem 0;
}

/* アコーディオン全体 */
.faq-item {
  background: #fff;
  border-bottom: 1px solid #ddd; /* 区切り線を入れると綺麗です */
  border-radius: 10px;
}

/* 質問部分 */
.faq-question {
  padding: 20px 60px 20px 20px; /* 右側にアイコン用の余白を確保 */
  font-weight: bold;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  position: relative;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #fafafa;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.q-icon, .a-icon {
  color: var(--main-orange);
  margin-right: 15px;
  font-size: 3rem;
  font-family: arial;
  flex-shrink: 0; /* アイコンが潰れないように */
  font-weight: bold;
}

.a-icon {
  color: #b4b4b4;
}

/* ふわっと開閉させるためのラッパー */
.faq-answer-wrapper {
  display: grid;
  grid-template-rows: 0fr; /* 最初は高さを0に */
  transition: grid-template-rows 0.4s ease-out; /* ここでアニメーション時間を設定 */
}

.faq-item[open] .faq-answer-wrapper {
  grid-template-rows: 1fr; /* 開いた時にコンテンツの高さ分広がる */
}

/* 中身が隠れるように設定 */
.faq-answer-inner {
  overflow: hidden;
}

.faq-answer {
  padding: 0 20px 20px 20px;
  display: flex;
  line-height: 1.8;
}

/* ＋とーの位置調整（垂直中央寄せ） */
.toggle-icon::before {
  content: "+";
  position: absolute;
  right: 2rem;
  top: 50%; /* 上から50% */
  transform: translateY(-50%); /* 自身の高さ半分だけ戻す */
  font-size: 3rem;
  color: #999;
}

.faq-item[open] .toggle-icon::before {
  content: "-";
}

/* -----------------------------------------------------
   会社案内
   ----------------------------------------------------- */
.inner {
  max-width: 900px;
  width: calc(100% - 2rem);
  margin: 0 auto;
  padding: 0 1rem;
}

.iframe-map {
  width: 100%;
}
@media (max-width: 575px) {
  .iframe-map {
    height: 280px;
  }
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.company-table tr th, .company-table tr td {
  padding: 30px 20px;
  border-bottom: 2px solid;
  text-align: left;
  vertical-align: middle;
}
.company-table tr th {
  width: 25%;
  max-width: 250px;
  font-weight: bold;
  border-bottom-color: #F8B400;
  text-align: center;
}
@media (max-width: 575px) {
  .company-table tr th {
    max-width: 100%;
    text-align: left;
  }
}
.company-table tr td {
  color: #4C4C4C;
  line-height: 1.8;
  border-bottom-color: #4C4C4C;
}
.company-table tr td a {
  color: inherit;
  text-decoration: none;
}
.company-table tr.is-align-top th, .company-table tr.is-align-top td {
  vertical-align: top;
}
@media (max-width: 575px) {
  .company-table:first-child th {
    border-top: 2px solid #F8B400;
  }
  .company-table:first-child td {
    border-top: 2px solid #4C4C4C;
  }
  .company-table tr {
    display: block;
    border-bottom: 2px solid #F8B400;
  }
  .company-table tr:first-child {
    border-top: 2px solid #F8B400;
  }
  .company-table tr th, .company-table tr td {
    display: block;
    width: calc(100% - 40px);
    border: none !important;
    padding: 15px 20px;
  }
  .company-table tr th {
    background-color: #ebebeb;
  }
  .company-table tr td {
    padding: 20px;
  }
}

.company-table__notes {
  list-style: none;
  padding: 0;
  margin: 0;
}
.company-table__notes li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 0.5em;
}
.company-table__notes li:last-child {
  margin-bottom: 0;
}
.company-table__notes li::before {
  content: "・";
  position: absolute;
  left: 0;
}

/* -----------------------------------------------------
   プライバシーポリシー
   ----------------------------------------------------- */
.privacy-policy {
  overflow: visible; /* 突き抜けを許可しない */
}

/* -----------------------------------------------------
   お問い合わせ
   ----------------------------------------------------- */
/* ラジオボタンを横並びにする */
.form-radio-wrap .wpcf7-radio {
  display: flex;
  flex-wrap: wrap; /* 画面が狭いときは折り返す設定 */
  gap: 20px; /* 項目間のスキマ */
}

/* 各項目のラベルを整える */
.form-radio-wrap .wpcf7-list-item {
  margin: 0; /* デフォルトの余白をリセット */
  display: inline-block;
}

/* 文字とボタンを中央で揃える */
.form-radio-wrap label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.contact-form .form-group {
  display: flex;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .contact-form .form-group {
    flex-direction: column;
  }
}
.contact-form .form-group.is-textarea {
  align-items: flex-start;
}
.contact-form .form-label {
  width: 250px;
  padding-right: 20px;
  font-weight: bold;
  color: #4C4C4C;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .contact-form .form-label {
    width: 100%;
    margin-bottom: 8px;
    justify-content: flex-start;
    gap: 10px;
  }
}
.contact-form .is-required .form-label::after {
  content: "必須";
  display: inline-block;
  background-color: #E10000;
  color: #fff;
  font-size: 14px;
  padding: 1px 10px;
  border-radius: 3px;
  font-weight: bold;
  line-height: 1.4;
}
.contact-form .form-input-wrap {
  flex-grow: 1;
  width: 100%;
}
.contact-form .form-input, .contact-form .form-textarea {
  width: calc(100% - 30px);
  padding: 12px 15px;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  font-size: 16px;
}
.contact-form .form-input:focus, .contact-form .form-textarea:focus {
  outline: none;
  border-color: #4C4C4C;
}
.contact-form .form-textarea {
  height: 180px;
}
.contact-form .form-radio-wrap {
  display: flex;
  gap: 20px;
}
.contact-form .form-radio-wrap label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.contact-form .form-radio-wrap label input {
  margin-right: 5px;
}
.contact-form .form-policy {
  margin-top: 40px;
  text-align: center;
}
.contact-form .form-policy-title {
  font-weight: bold;
  margin-bottom: 15px;
}
.contact-form .form-policy label {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-form .form-policy label input {
  margin-right: 10px;
}
.contact-form .form-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  margin: 4rem auto 6rem;
  height: 60px;
  background-color: #4C4C4C;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  border-radius: 4px;
  border: none;
  position: relative;
  cursor: pointer;
}
.contact-form .form-submit-btn::after {
  content: "";
  position: absolute;
  right: 20px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

/* -----------------------------------------------------
   カーコーティング施工メニュー 詳細
   ----------------------------------------------------- */
:root {
  --light-yellow: #ffecb3; /* 薄い黄色 */
  --dark-yellow: #ffd54f; /* 濃い黄色 */
  --text-color: #5d5d5d; /* 文字色 */
}

.all-process-wrapper {
  margin-top: 6rem;
}

.menu-detail img {
  border-radius: 20px;
}

.process-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 15px; /* 行間の隙間 */
}

.process-table tr {
  height: 60px;
}

/* 各セルの基本スタイル */
.process-table td {
  position: relative;
  padding: 0 20px 0 30px;
  text-align: center;
  color: var(--text-color);
  font-weight: bold;
  font-size: 14px;
  white-space: nowrap;
  vertical-align: middle;
  /* 矢印の形を作るためのclip-path */
  clip-path: polygon(calc(100% - 15px) 0%, 100% 50%, calc(100% - 15px) 100%, 0% 100%, 15px 50%, 0% 0%);
  margin-left: -15px;
}

/* 各行の最初のセルは左側を平らにする */
.process-table td:first-child {
  clip-path: polygon(calc(100% - 15px) 0%, 100% 50%, calc(100% - 15px) 100%, 0% 100%, 0% 0%);
  padding-left: 15px;
}

/* 色の塗り分け */
.bg-light {
  background-color: var(--light-yellow);
}

.bg-dark {
  background-color: var(--dark-yellow);
}

/* セルの重なりを調整 */
.process-table td {
  margin-right: -15px;
  display: table-cell;
}

@media (max-width: 1023px) {
  .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
  }
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #D1D1D1;
  min-width: 700px;
  background-color: #fff;
}
.price-table th, .price-table td {
  border: 1px solid #D1D1D1;
  padding: 20px 10px;
  text-align: center;
  vertical-align: middle;
  font-size: 16px;
  white-space: nowrap;
}
.price-table thead th,
.price-table tbody th {
  font-weight: bold;
}
.price-table thead tr {
  background-color: #FFF9E6;
}
.price-table tbody th {
  width: 200px;
  background-color: #fff;
}

.menu-visual img {
  border-radius: 20px;
}

.period-section {
  padding: 0 0 4rem;
}

.price-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 30px 0 0;
}
.price-list dt {
  width: 220px;
  font-weight: bold;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .price-list dt {
    width: 100%;
    margin-bottom: 4px;
  }
}
.price-list dd {
  width: calc(100% - 220px);
  margin-left: 0;
  margin-bottom: 12px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .price-list dd {
    width: 100%;
    margin-bottom: 15px;
  }
}

/* 外側の入れ物：スクロールの制御 */
.process-container {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 15px 0 25px; /* 上下余白 */
  margin: 20px 0;
}

/* スクロールバーのデザイン */
.process-container::-webkit-scrollbar, .table-wrapper::-webkit-scrollbar {
  height: 8px;
}

.process-container::-webkit-scrollbar-thumb, .table-wrapper::-webkit-scrollbar-thumb {
  background: #FFD266;
  border-radius: 10px;
}

.process-container::-webkit-scrollbar-track, .table-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

/* リスト本体：ここが重要 */
.process-list {
  display: block; /* flexをやめる */
  white-space: nowrap; /* 子要素を横一列に並べる */
  list-style: none;
  padding: 0;
  margin: 0;
  width: -moz-fit-content;
  width: fit-content; /* 中身の幅にピッタリ合わせる */
  min-width: 100%;
}

/* 改行用の壁 */
.process-break {
  display: block; /* ここで強制改行 */
  height: 15px; /* 段間の隙間 */
  width: 100%;
}

/* 各工程アイテム */
.process-item {
  display: inline-flex; /* 矢印の中身はflexで中央寄せ */
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 15px 10px 15px 20px;
  margin-right: -15px; /* 重なり */
  min-width: 150px;
  background-color: #FFEBB5;
  color: #4C4C4C;
  font-weight: bold;
  font-size: 15px;
  /* 矢印の形 */
  clip-path: polygon(calc(100% - 15px) 0%, 100% 50%, calc(100% - 15px) 100%, 0% 100%, 15px 50%, 0% 0%);
}

/*PHPのクラス名で直接指定する */
.process-item.is-even {
  background-color: #FFD266; /* 偶数番目：黄色 */
}

.process-item.is-odd {
  background-color: #FFEBB5; /* 奇数番目（改行直後も含む）*/
}

/* 改行用のliが色を持たないように念のため指定 */
.process-break {
  background-color: transparent !important;
  width: 100%;
}

/* 行の始まり（最初、または改行の直後）の左端を平らに */
.process-item:first-child,
.process-break + .process-item {
  clip-path: polygon(calc(100% - 15px) 0%, 100% 50%, calc(100% - 15px) 100%, 0% 100%, 0% 50%, 0% 0%);
  padding-left: 20px;
}

/* 最後の要素のマージンをリセットしてスクロール幅を正常化 */
.process-item:last-child {
  margin-right: 0;
}

/* -----------------------------------------------------
   カーコーティング施工メニュー
   ----------------------------------------------------- */
.read {
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .read {
    font-size: 1.6rem;
  }
}

.menu-section {
  width: calc(100% - 16rem);
  background-color: #fff;
  padding: 4rem 8rem 6rem;
  border-radius: 100px 0 100px 0;
  margin-bottom: 8rem;
}
@media (max-width: 1023px) {
  .menu-section {
    width: calc(100% - 4rem);
    padding: 3rem 2rem 3rem;
    border-radius: 50px 0 50px 0;
    margin-bottom: 4rem;
  }
}

.post-title {
  display: inline-block;
  font-size: 32px;
  font-weight: bold;
  padding-bottom: 15px;
  position: relative;
  margin-bottom: 6rem;
  color: #4C4C4C;
}
.post-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #707070 60px, #F8B400 60px);
}
@media (max-width: 767px) {
  .post-title {
    font-size: 20px;
    margin-bottom: 2rem;
  }
  .post-title::after {
    width: 100%;
  }
}

.purpose-index {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.purpose-number {
  font-size: 48px;
  font-weight: bold;
  color: #F8B400;
  font-family: "Arial", sans-serif;
  line-height: 1;
  white-space: nowrap;
}

.purpose-heading {
  font-size: 22px;
  font-weight: bold;
  color: #4C4C4C;
}
@media (max-width: 767px) {
  .purpose-heading {
    font-size: 18px;
  }
}

.purpose-cards {
  display: flex;
  gap: 70px;
  margin-bottom: 5rem;
  flex-wrap: wrap;
}
@media (max-width: 1023px) {
  .purpose-cards {
    gap: 30px;
    margin-bottom: 3rem;
  }
  .purpose-cards .purpose-card {
    width: calc(50% - 15px);
  }
}
@media (max-width: 575px) {
  .purpose-cards {
    flex-direction: column;
    margin-bottom: 2rem;
  }
  .purpose-cards .purpose-card {
    width: 100%;
  }
}

.purpose-card {
  width: calc(50% - 35px);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 15px;
  overflow: hidden;
  background-color: #F5F5F5;
  transition: transform 0.3s ease;
  position: relative;
}
.purpose-card:hover {
  transform: translateY(-5px);
}
.purpose-card::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 25px 25px;
  border-color: transparent transparent #F8B400 transparent;
  pointer-events: none;
}
.purpose-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.purpose-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.purpose-card__body {
  padding: 25px 30px 40px;
  position: relative;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .purpose-card__body {
    padding: 1.5rem 1.5rem 4rem;
  }
}
.purpose-card__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #4C4C4C;
}
.purpose-card__text {
  font-size: 15px;
  line-height: 1.6;
  color: #4C4C4C;
}
.purpose-card__arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 25px 25px;
  border-color: transparent transparent #F8B400 transparent;
}/*# sourceMappingURL=style.css.map */