@charset "UTF-8";
:root {
  --font-body: "Zen Kaku Gothic New", sans-serif;
  --font-header-title: "Marcellus", serif;
  --font-serif: "Noto Serif JP", serif;
  --font-Marcellus: "Marcellus", serif;
  --font-HighTide: "High Tide";
  --font-body-color: #333;
  --color-header-title: #a27b75;
  --color-header-sub: #a27b75;
  --color-header-sub-jp: #666;
  --color-breadcrumb: #999;
  --color-btn01: #212529;
  --color-btn-shadow: #afafaf;
  --bgcolor-pagenation-hover: #e9ecef;
  --primary: #c49d49;
  --primary-rgb: 196, 157, 73;
  --secondary: #6ebd58;
  --secondary-rgb: 110, 189, 88;
  --line: #009245;
  --line-rgb: 0, 146, 69;
}

.bg--primary {
  background: linear-gradient(to bottom, rgb(196, 157, 73) 0%, rgb(162, 118, 24) 100%) !important;
  position: relative;
  z-index: 1;
}
.bg--primary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: ease 0.3s;
  opacity: 0;
}
.bg--primary:hover::before {
  background: linear-gradient(to bottom, rgb(162, 118, 24) 0%, rgb(196, 157, 73) 100%) !important;
  z-index: -1;
  opacity: 1;
}

.bg--secondary {
  background: var(--secondary) !important;
}

.bg--line {
  background: linear-gradient(to bottom, rgb(110, 189, 88) 0%, rgb(87, 140, 72) 100%) !important;
  position: relative;
  z-index: 1;
}
.bg--line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: ease 0.3s;
  opacity: 0;
}
.bg--line:hover::before {
  background: linear-gradient(to bottom, rgb(87, 140, 72) 0%, rgb(110, 189, 88) 100%) !important;
  z-index: -1;
  opacity: 1;
}

.bg--white {
  background: #fff !important;
}

.bg--primary2 {
  background: rgba(var(--primary-rgb), 0.1) !important;
}

.color--secondary {
  color: var(--secondary) !important;
}

.color--primary {
  color: var(--primary) !important;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
}

.wrapper {
  position: relative;
}

main {
  display: block;
}

h1 {
  font-size: 0.93vw;
  color: #fff;
  position: absolute;
  left: 20px;
  top: 0;
  z-index: 1;
}

@media (max-width: 767px) {
  h1 {
    font-size: 10px;
    right: 20px;
    top: 25px;
  }
}
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  border-bottom: none;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: table;
  max-width: 100%;
  padding: 0;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

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

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

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
  appearance: button;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template,
[hidden] {
  display: none;
}

em {
  font-style: normal;
}

/* Reset */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  max-height: 100%;
  display: block;
}

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

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  line-height: 1.4;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentcolor;
  border: 0;
  opacity: 0.25;
}
hr:not([size]) {
  height: 1px;
}

.zindex-1 {
  z-index: 1 !important;
}

.text-white {
  color: #fff !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.w-100 {
  width: 100% !important;
}

.pt-53 {
  padding-top: 53% !important;
}

.pt-82 {
  padding-top: 82% !important;
}

.pt-88 {
  padding-top: 88% !important;
}

.fs-18 {
  font-size: 18px !important;
  line-height: 38px !important;
}

.fs-20 {
  font-size: 20px !important;
  line-height: 38px !important;
}

.fs-24 {
  font-size: 24px !important;
  line-height: 42px !important;
}

.fs-28 {
  font-size: 28px !important;
  line-height: 42px !important;
}

.fs-30 {
  font-size: 30px !important;
  line-height: 60px !important;
}

.lh-1dot2 {
  line-height: 1.2 !important;
}

@media (max-width: 575px) {
  .fs-24 {
    font-size: 20px !important;
    line-height: 38px !important;
  }
}
.u-dn {
  display: none;
}

@media (min-width: 1025px) {
  .u-dn--pc {
    display: none;
  }
}
@media (min-width: 526px) and (max-width: 1024px) {
  .u-dn--tablet {
    display: none;
  }
}
@media (max-width: 525px) {
  .u-dn--sp {
    display: none;
  }
}
/* Body */
.stretched-link::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
}

body {
  color: var(--font-body-color);
  font: 18px/26px var(--font-body);
  font-weight: 400;
  letter-spacing: 0.12em;
  background: #f8f8f6;
}

/* Text truncate */
.text__truncate {
  display: -webkit-box;
  display: -webkit-inline-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}

/* Fix image trong khung */
.dnfix__thumb {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding-top: 68.075%;
  overflow: hidden;
}
.dnfix__thumb img,
.dnfix__thumb video,
.dnfix__thumb iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.dnfix__thumb img,
.dnfix__thumb video {
  -o-object-fit: cover;
  object-fit: cover;
}
.dnfix__thumb.-contain img,
.dnfix__thumb.-contain iframe {
  -o-object-fit: contain;
  object-fit: contain;
}

.py-lg-100 {
  padding: 100px 0 !important;
}

@media (max-width: 575px) {
  .py-lg-100 {
    padding: 80px 0 !important;
  }
}
.px-60-py-40 {
  padding: 40px 60px !important;
}

@media (max-width: 767px) {
  .px-60-py-40 {
    padding: 40px !important;
  }
}
@media (max-width: 575px) {
  .px-60-py-40 {
    padding: 40px 20px !important;
  }
}
.px-40-py-70 {
  padding: 70px 40px !important;
}

@media (max-width: 991px) {
  .px-40-py-70 {
    padding: 40px !important;
  }
}
@media (max-width: 575px) {
  .px-40-py-70 {
    padding: 40px 20px !important;
  }
}
.px-100-py-50 {
  padding: 50px 100px !important;
}

@media (max-width: 767px) {
  .px-100-py-50 {
    padding: 40px !important;
  }
}
@media (max-width: 575px) {
  .px-100-py-50 {
    padding: 40px 20px !important;
  }
}
:root {
  --ease-in-sine: cubic-bezier(0.47, 0, 0.745, 0.715);
  --ease-out-sine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --ease-in-out-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-in-out-quart: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out-quint: cubic-bezier(0.86, 0, 0.07, 1);
  --ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out-expo: cubic-bezier(1, 0, 0, 1);
  --ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --ease-out-circ: cubic-bezier(0.075, 0.82, 0.165, 1);
  --ease-in-out-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --ease-in-back: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --ease-out-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-in-out-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.position-relative {
  position: relative !important;
}

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

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

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

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

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: end !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

.gap-3 {
  gap: 1rem !important;
}

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

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

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

.overflow-hidden {
  overflow: hidden !important;
}

.border-0 {
  border: 0 !important;
}

@media (min-width: 576px) {
  .text-sm-end {
    text-align: end !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
}
@media (min-width: 768px) {
  .text-md-center {
    text-align: center !important;
  }
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
}
@media (min-width: 992px) {
  .text-lg-center {
    text-align: center !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-center {
    text-align: center !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-block {
    display: block !important;
  }
}
@media (min-width: 1600px) {
  .d-xxxl-none {
    display: none !important;
  }
  .d-xxxl-block {
    display: block !important;
  }
}
.auto-break {
  word-break: auto-phrase;
}

/* Grid */
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  width: 100%;
  --container-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: var(--row-gap, 0);
  -webkit-column-gap: var(--column-gap, 0);
  -moz-column-gap: var(--column-gap, 0);
  column-gap: var(--column-gap, 0);
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.gap-y-0 {
  --row-gap: 0rem;
}

.gap-x-0 {
  --column-gap: 0rem;
}

.gap-y-1 {
  --row-gap: 1rem;
}

.gap-x-1 {
  --column-gap: 1rem;
}

.gap-y-2 {
  --row-gap: 2rem;
}

.gap-x-2 {
  --column-gap: 2rem;
}

.gap-y-3 {
  --row-gap: 3rem;
}

.gap-x-3 {
  --column-gap: 3rem;
}

.gap-y-4 {
  --row-gap: 4rem;
}

.gap-x-4 {
  --column-gap: 4rem;
}

.gap-y-5 {
  --row-gap: 5rem;
}

.gap-x-5 {
  --column-gap: 5rem;
}

.gap-y-6 {
  --row-gap: 6rem;
}

.gap-x-6 {
  --column-gap: 6rem;
}

.gap-y-7 {
  --row-gap: 7rem;
}

.gap-x-7 {
  --column-gap: 7rem;
}

.gap-y-8 {
  --row-gap: 8rem;
}

.gap-x-8 {
  --column-gap: 8rem;
}

.gap-y-9 {
  --row-gap: 9rem;
}

.gap-x-9 {
  --column-gap: 9rem;
}

.gap-y-10 {
  --row-gap: 10rem;
}

.gap-x-10 {
  --column-gap: 10rem;
}

.row > * {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
}

.col-auto {
  width: auto;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 33333.33333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .col-lg-20 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
}
@media (max-width: 1240px) {
  .container {
    width: auto;
    margin: 0 20px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
    --container-width: 1200px;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-34,
  .gx-xl-34 {
    --bs-gutter-x: 34px;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .col-xl-20 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .col-xl-40 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 40%;
  }
  .col-xl-60 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 60%;
  }
  .g-xl-60,
  .gy-xl-60 {
    --bs-gutter-y: 60px;
  }
  .g-xl-60,
  .gx-xl-60 {
    --bs-gutter-x: 60px;
  }
  .g-xl-80,
  .gy-xl-80 {
    --bs-gutter-y: 80px;
  }
  .g-xl-80,
  .gx-xl-80 {
    --bs-gutter-x: 80px;
  }
}
@media (min-width: 1400px) {
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
}
.ms-auto {
  margin-left: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.me-auto {
  margin-right: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.my-auto {
  margin-block: auto !important;
}

.my-0 {
  margin-block: 0 !important;
}

.my-1 {
  margin-block: 0.25rem !important;
}

.my-2 {
  margin-block: 0.5rem !important;
}

.my-3 {
  margin-block: 1rem !important;
}

.my-4 {
  margin-block: 1.5rem !important;
}

.my-5 {
  margin-block: 3rem !important;
}

.mx-auto {
  margin-inline: auto !important;
}

.mx-0 {
  margin-inline: 0 !important;
}

.mx-1 {
  margin-inline: 0.25rem !important;
}

.mx-2 {
  margin-inline: 0.5rem !important;
}

.mx-3 {
  margin-inline: 1rem !important;
}

.mx-4 {
  margin-inline: 1.5rem !important;
}

.mx-5 {
  margin-inline: 3rem !important;
}

@media (min-width: 576px) {
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .my-sm-auto {
    margin-block: auto !important;
  }
  .my-sm-0 {
    margin-block: 0 !important;
  }
  .my-sm-1 {
    margin-block: 0.25rem !important;
  }
  .my-sm-2 {
    margin-block: 0.5rem !important;
  }
  .my-sm-3 {
    margin-block: 1rem !important;
  }
  .my-sm-4 {
    margin-block: 1.5rem !important;
  }
  .my-sm-5 {
    margin-block: 3rem !important;
  }
  .mx-sm-auto {
    margin-inline: auto !important;
  }
  .mx-sm-0 {
    margin-inline: 0 !important;
  }
  .mx-sm-1 {
    margin-inline: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-inline: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-inline: 1rem !important;
  }
  .mx-sm-4 {
    margin-inline: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-inline: 3rem !important;
  }
}
@media (min-width: 768px) {
  .ms-md-auto {
    margin-left: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .my-md-auto {
    margin-block: auto !important;
  }
  .my-md-0 {
    margin-block: 0 !important;
  }
  .my-md-1 {
    margin-block: 0.25rem !important;
  }
  .my-md-2 {
    margin-block: 0.5rem !important;
  }
  .my-md-3 {
    margin-block: 1rem !important;
  }
  .my-md-4 {
    margin-block: 1.5rem !important;
  }
  .my-md-5 {
    margin-block: 3rem !important;
  }
  .mx-md-auto {
    margin-inline: auto !important;
  }
  .mx-md-0 {
    margin-inline: 0 !important;
  }
  .mx-md-1 {
    margin-inline: 0.25rem !important;
  }
  .mx-md-2 {
    margin-inline: 0.5rem !important;
  }
  .mx-md-3 {
    margin-inline: 1rem !important;
  }
  .mx-md-4 {
    margin-inline: 1.5rem !important;
  }
  .mx-md-5 {
    margin-inline: 3rem !important;
  }
}
@media (min-width: 992px) {
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .my-lg-auto {
    margin-block: auto !important;
  }
  .my-lg-0 {
    margin-block: 0 !important;
  }
  .my-lg-1 {
    margin-block: 0.25rem !important;
  }
  .my-lg-2 {
    margin-block: 0.5rem !important;
  }
  .my-lg-3 {
    margin-block: 1rem !important;
  }
  .my-lg-4 {
    margin-block: 1.5rem !important;
  }
  .my-lg-5 {
    margin-block: 3rem !important;
  }
  .mx-lg-auto {
    margin-inline: auto !important;
  }
  .mx-lg-0 {
    margin-inline: 0 !important;
  }
  .mx-lg-1 {
    margin-inline: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-inline: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-inline: 1rem !important;
  }
  .mx-lg-4 {
    margin-inline: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-inline: 3rem !important;
  }
}
@media (min-width: 1200px) {
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .my-xl-auto {
    margin-block: auto !important;
  }
  .my-xl-0 {
    margin-block: 0 !important;
  }
  .my-xl-1 {
    margin-block: 0.25rem !important;
  }
  .my-xl-2 {
    margin-block: 0.5rem !important;
  }
  .my-xl-3 {
    margin-block: 1rem !important;
  }
  .my-xl-4 {
    margin-block: 1.5rem !important;
  }
  .my-xl-5 {
    margin-block: 3rem !important;
  }
  .mx-xl-auto {
    margin-inline: auto !important;
  }
  .mx-xl-0 {
    margin-inline: 0 !important;
  }
  .mx-xl-1 {
    margin-inline: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-inline: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-inline: 1rem !important;
  }
  .mx-xl-4 {
    margin-inline: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-inline: 3rem !important;
  }
}
@media (min-width: 1400px) {
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .my-xxl-auto {
    margin-block: auto !important;
  }
  .my-xxl-0 {
    margin-block: 0 !important;
  }
  .my-xxl-1 {
    margin-block: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-block: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-block: 1rem !important;
  }
  .my-xxl-4 {
    margin-block: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-block: 3rem !important;
  }
  .mx-xxl-auto {
    margin-inline: auto !important;
  }
  .mx-xxl-0 {
    margin-inline: 0 !important;
  }
  .mx-xxl-1 {
    margin-inline: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-inline: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-inline: 1rem !important;
  }
  .mx-xxl-4 {
    margin-inline: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-inline: 3rem !important;
  }
}
.p-0 {
  padding: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

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

.ps-4,
.p-4 {
  padding-left: 1.5rem !important;
}

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

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

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

.pe-4,
.p-4 {
  padding-right: 1.5rem !important;
}

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

@media (min-width: 576px) {
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
}
@media (min-width: 768px) {
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 992px) {
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before {
  content: "";
  display: table;
}
.slick-track:after {
  content: "";
  display: table;
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./../images/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: slick-font-url("slick.eot");
  src: slick-font-url("slick.eot?#iefix") format("embedded-opentype"), slick-font-url("slick.woff") format("woff"), slick-font-url("slick.ttf") format("truetype"), slick-font-url("slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover, .slick-prev:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-next:hover, .slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before {
  opacity: 1;
}

.slick-next:hover:before, .slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* Header */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}

.l-header__right {
  width: 820px;
  /*width: 500px;*/
  height: 128px;
  background: #fff;
  border-radius: 64px 0 0 64px;
  display: flex;
  margin-top: 16px;
  padding-left: 42px;
  transform: scale(0.9) translateX(6%);
}

@media (max-width: 1199px) {
  .l-header__right {
    width: 100px;
  }
}
@media (max-width: 767px) {
  .l-header__right {
    width: 100vw;
    height: 80px;
    position: fixed;
    right: 0;
    top: 0;
    transform: scale(1) translateX(0);
    margin-top: 0;
    padding-left: 0;
    border-radius: 0;
  }
}
.l-header__logo {
  position: relative;
  display: flex;
  max-width: 373px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-header__logo:hover {
  opacity: 0.75;
}
.l-header__logo img {
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 100%;
  height: 100%;
}
.l-header__logo img:last-child {
  display: none;
}

body.active .l-header__logo {
  margin-left: 20px;
}
body.active .l-header__logo img:nth-child(2) {
  display: none;
}
body.active .l-header__logo img:last-child {
  display: block;
}

@media (max-width: 767px) {
  .l-header__logo {
    height: 40px;
    position: fixed;
    left: 20px;
    top: 19px;
    z-index: 1;
  }
  body.active .l-header__logo {
    margin-left: 0;
  }
}
.l-header .main__nav {
  position: relative;
}
.l-header .main__nav .el-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  text-align: center;
  background: none;
  -webkit-transition: padding 0.5s;
  transition: padding 0.5s;
}
.l-header .main__nav .el-menu > li {
  position: relative;
  padding: 20px;
}
.l-header .main__nav .el-menu > li:last-child {
  padding-right: 0;
}
.l-header .main__nav .el-menu > li > a {
  position: relative;
  height: 100%;
  padding: 6px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--font-body-color);
}
.l-header .main__nav .el-menu > li > a::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  margin: auto;
  pointer-events: none;
  content: "";
  background: var(--primary);
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.l-header .main__nav .el-menu > li.is-active > a, .l-header .main__nav .el-menu > li:hover > a {
  color: var(--font-body-color);
}
.l-header .main__nav .el-menu > li.is-active > a::before, .l-header .main__nav .el-menu > li:hover > a::before {
  width: 100% !important;
  opacity: 1 !important;
}
.l-header .main__nav .el-menu .sub-menu {
  --max-row-count: 10;
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 99;
  display: -ms-grid;
  display: grid;
  grid-template-rows: repeat(var(--max-row-count), auto);
  grid-auto-flow: column;
  -webkit-column-gap: 3em;
  -moz-column-gap: 3em;
  column-gap: 3em;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-block: 16px;
  padding-right: 28px;
  text-align: left;
  pointer-events: none;
  visibility: hidden;
  background-color: #fff;
  opacity: 0;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
  translate: -50%;
}
.l-header .main__nav .el-menu .sub-menu::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -98;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(var(--primary-rgb), 0.1);
}
.l-header .main__nav .el-menu .sub-menu li {
  position: relative;
  line-height: 20px;
}
.l-header .main__nav .el-menu .sub-menu li a {
  position: relative;
  display: block;
  padding: 10px 10px 10px 40px;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  background: transparent;
}
.l-header .main__nav .el-menu .sub-menu li a::before {
  position: absolute;
  top: 19px;
  left: 18px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--primary);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-header .main__nav .el-menu .sub-menu li:hover > a {
  color: var(--primary);
}
.l-header .main__nav .el-menu .sub-menu li:hover > a::before {
  width: 8px;
  opacity: 1;
}
.l-header .main__nav .el-menu .sub-menu .sub-menu {
  top: 0;
  left: 100%;
}
.l-header .main__nav .el-menu li:hover > .sub-menu {
  pointer-events: inherit;
  visibility: visible;
  opacity: 1;
}
.l-header .box__social {
  position: relative;
  top: 6px;
}
.l-header .box__social li {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-header .box__social li:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.l-header__phone {
  color: var(--font-body-color);
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: center;
  white-space: nowrap;
  margin-right: 25px;
}
.l-header__phone small {
  font-size: 20px;
  letter-spacing: 0.13em;
  display: block;
  margin-bottom: 5px;
}
.l-header__phone span {
  font-size: 24px;
  font-family: var(--font-Marcellus);
  letter-spacing: 0;
}

.l-header__buttons {
  display: flex;
  gap: 9px;
}
.l-header__buttons .btn {
  min-width: 162px;
}

.l-header .mburger .icon-bar {
  background-color: #333;
}

@media (max-width: 1399px) {
  .l-header .main__nav .el-menu > li {
    padding: 20px 15px;
  }
}
@media (max-width: 1199px) {
  .l-header__logo {
    max-width: 240px;
  }
}
@media (max-width: 575px) {
  .l-header__logo {
    max-width: 260px;
  }
}
.footer {
  position: relative;
}
.footer::before {
  content: "";
  width: 100%;
  height: 65px;
  background: url(../images/top/bg_01.svg);
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: -65px;
  z-index: 1;
}
.footer .box-info {
  padding: 60px 0 40px;
}
.footer .box-info .box-info__address {
  order: 3;
  margin: 30px 0 0;
}

.footer__logo {
  display: flex;
  justify-content: space-between;
}
.footer__logo img {
  width: 244px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .footer::before {
    content: "";
    width: 200%;
    left: -50%;
  }
  .footer__logo {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 525px) {
  .footer__logo {
    margin: 100px 0 -20px;
  }
  .footer__logo img {
    margin: 0;
  }
}
.footer__map {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 100px;
  gap: 20px;
}
.footer__map .map {
  width: 459px;
  margin: 0 auto;
}
.footer__map .map iframe {
  height: 431px;
}
.footer__map .map p {
  font-size: 20px;
  letter-spacing: 0.1em;
  margin-top: 10px;
}
.footer__map .payment {
  text-align: center;
  max-width: 606px;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
}
.footer__map .payment p {
  color: #6f5745;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}
.footer__map .payment img {
  margin: 0 auto;
}

@media (max-width: 991px) {
  .footer__map {
    flex-direction: column;
    gap: 30px;
  }
  .footer__map .map {
    width: 100%;
    margin: 0 -20px;
  }
  .footer__map .map iframe {
    width: calc(100% + 40px);
  }
  .footer__map .map p {
    margin: 10px 20px 0;
  }
  .footer__map .payment {
    max-width: none;
  }
}
@media (max-width: 767px) {
  .footer__map {
    margin-bottom: 60px;
  }
  .footer__map .map p {
    font-size: 16px;
  }
  .footer__map .payment p {
    font-size: 18px;
  }
}
.footer__menu {
  display: flex;
  gap: 140px;
  margin-bottom: 100px;
}
.footer__menu ul {
  font-size: 20px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__menu ul:last-child {
  font-size: 18px;
  font-weight: 400;
  gap: 10px;
}
.footer__menu li a:hover, .footer__menu li.is-active a {
  color: #bd938c;
}
.footer__menu a {
  position: relative;
  display: block;
  width: 100%;
  color: #3e3e3e;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer__copyright {
  font-size: 18px;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .footer__menu {
    flex-wrap: wrap;
    gap: 0;
    row-gap: 40px;
    margin-bottom: 60px;
  }
  .footer__menu ul {
    font-size: 16px;
  }
  .footer__menu ul:last-child {
    font-size: 14px;
  }
  .footer__menu .menu-list {
    width: 50%;
  }
  .footer__copyright {
    font-size: 14px;
    margin-bottom: 60px;
  }
}
@media (max-width: 575px) {
  .footer__menu .menu-list {
    width: 100%;
  }
  .footer__copyright {
    font-size: 12px;
  }
}
@font-face {
  font-family: "High Tide";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/HighTide/HighTide.woff2") format("woff2"), url("../fonts/HighTide/HighTide.woff") format("woff");
  font-display: swap;
}
[class^=icon-],
[class*=" icon-"] {
  position: relative;
  display: inline-block;
}

[class^=icon-]::before,
[class*=" icon-"]::before {
  position: relative;
  display: inline-block;
  content: "";
  background-color: #fff;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

[class^=icon-].-white::before,
[class*=" icon-"].-white::before {
  background-color: #fff;
}

/* Icon */
.icon-top::before {
  width: 20px;
  height: 212px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: url("../images/icon_page-top.png");
  mask-image: url("../images/icon_page-top.png");
  background-color: #393535;
}

@media (max-width: 767px) {
  .icon-top::before {
    width: 12px;
    height: 127px;
  }
}
.icon-check-square::before {
  width: 22px;
  height: 22px;
  -webkit-mask-image: url("../images/icon_check-square.svg");
  mask-image: url("../images/icon_check-square.svg");
  background-color: #fff;
}

.icon-clock::before {
  width: 22px;
  height: 22px;
  -webkit-mask-image: url("../images/icon_clock.svg");
  mask-image: url("../images/icon_clock.svg");
  background-color: #fff;
}

.icon-angle-right-font::before {
  width: 28px;
  height: 27px;
  -webkit-mask-image: url("../images/icon_angle-right-font.svg");
  mask-image: url("../images/icon_angle-right-font.svg");
  background-color: #fff;
}

.icon-angle-left::before {
  width: 28px;
  height: 27px;
  -webkit-mask-image: url("../images/icon_angle-left.svg");
  mask-image: url("../images/icon_angle-left.svg");
  background-color: var(--secondary);
}

.icon-angle-right::before {
  width: 28px;
  height: 27px;
  -webkit-mask-image: url("../images/icon_angle-right.svg");
  mask-image: url("../images/icon_angle-right.svg");
  background-color: var(--secondary);
}

.icon-long-arrow-right::before {
  width: 40px;
  height: 8px;
  -webkit-mask-image: url("../images/icon_long-arrow-right.svg");
  mask-image: url("../images/icon_long-arrow-right.svg");
  background-color: var(--font-body-color);
}

.icon-phone::before {
  width: 14px;
  height: 28px;
  -webkit-mask-image: url("../images/icon_phone.svg");
  mask-image: url("../images/icon_phone.svg");
  background-color: #fff;
}

.icon-clock::before {
  width: 28px;
  height: 28px;
  -webkit-mask-image: url("../images/icon_clock.svg");
  mask-image: url("../images/icon_clock.svg");
  background-color: #fff;
}

.icon-checkbox {
  --color: var(--icon-color, var(--primary));
  --color-rgb: var(--icon-color-rgb, var(--primary-rgb));
}
.icon-checkbox::before {
  width: 25px;
  height: 26px;
  -webkit-mask-image: url("../images/icon_checkbox.svg");
  mask-image: url("../images/icon_checkbox.svg");
  background: linear-gradient(-120deg, var(--color), rgba(var(--color-rgb), 0.5));
}

.icon-checkbox--secondary {
  --color: var(--icon-color, var(--secondary));
  --color-rgb: var(--icon-color-rgb, var(--secondary-rgb));
}

[class^=iconbg-],
[class*=" iconbg-"] {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.iconbg-line-circle,
.iconbg-facebook-circle,
.iconbg-instagram-circle {
  width: 25px;
  height: 25px;
  background-color: var(--primary);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.iconbg-facebook-circle {
  -webkit-mask-image: url("../images/icon_facebook-circle.svg");
  mask-image: url("../images/icon_facebook-circle.svg");
}

.iconbg-line-circle {
  -webkit-mask-image: url("../images/icon_line-circle.svg");
  mask-image: url("../images/icon_line-circle.svg");
}

.iconbg-instagram-circle {
  -webkit-mask-image: url("../images/icon_instagram-circle.svg");
  mask-image: url("../images/icon_instagram-circle.svg");
}

.iconbg-line {
  width: 30px;
  height: 30px;
  background-image: url("../images/icon_line.svg");
}

/* Page */
.page-header {
  position: relative;
  z-index: 1;
}

.page-header__thumb {
  position: relative;
  z-index: 0;
}
.page-header__thumb::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 60%;
  content: "";
  background: radial-gradient(at 10% 15%, rgba(var(--primary-rgb), 0.2), transparent 70%), radial-gradient(at 10% 85%, rgba(var(--secondary-rgb), 0.2), transparent 70%), -webkit-gradient(linear, left top, right top, color-stop(10%, #fff), to(transparent));
  background: radial-gradient(at 10% 15%, rgba(var(--primary-rgb), 0.2), transparent 70%), radial-gradient(at 10% 85%, rgba(var(--secondary-rgb), 0.2), transparent 70%), linear-gradient(to right, #fff 10%, transparent);
  -webkit-filter: brightness(1.05);
  filter: brightness(1.05);
  opacity: 1;
}
.page-header__thumb .dnfix__thumb {
  min-height: 450px;
  padding-top: 31.5%;
}

@media (max-width: 767px) {
  .page-header__thumb::after {
    opacity: 0.75;
  }
}
@media (max-width: 576px) {
  .page-header__thumb::after {
    width: 50%;
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .page-header__thumb .dnfix__thumb {
    min-height: 350px;
  }
}
.page-header__heading {
  position: absolute;
  top: 120px;
  right: 10px;
  font-size: 14px;
  color: #fff;
  text-shadow: 2px 2px 2px var(--color-header-sub);
}

@media (max-width: 1199px) {
  .page-header__heading {
    top: 80px;
  }
}
@media (max-width: 767px) {
  .page-header__heading {
    font-size: 12px;
  }
}
.page-header__meta {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 80px;
}

.page-header__title {
  font-family: var(--font-header-title);
  font-size: 114px;
  line-height: 1;
  color: var(--color-header-sub);
}

@media (min-width: 576px) {
  .page-header__title {
    margin: 0 20px 0 0;
  }
}
.page-header__sub {
  position: relative;
  top: -20px;
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-header-sub-jp);
  letter-spacing: 0.2em;
}

@media (max-width: 1199px) {
  .page-header__title {
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  .page-header .mb-wrap {
    position: relative;
    z-index: 0;
    padding: 30px;
  }
  .page-header .mb-wrap::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    content: "";
    background: inherit;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-filter: blur(5px);
    filter: blur(5px);
  }
  .page-header__meta {
    padding: 70px 30px 0;
  }
  .page-header__title {
    font-size: 60px;
  }
  .page-header__sub {
    top: -15px;
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .page-header__title {
    font-size: 10vw;
  }
  .page-header__sub {
    top: 0;
  }
  .page-header__meta {
    text-align: center;
  }
}
.page-content {
  position: relative;
}
.page-content::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 860px;
  max-height: 100%;
  content: "";
  background-image: var(--bg-primary);
  -webkit-filter: blur(8px) brightness(1.3) grayscale(25%);
  filter: blur(8px) brightness(1.3) grayscale(25%);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-mask-image: linear-gradient(to top, transparent, #000 100px);
  mask-image: linear-gradient(to top, transparent, #000 100px);
  opacity: 0.6;
}

.page-content__header {
  position: relative;
}

.page-content__header__inner {
  position: relative;
  padding: 150px 0 120px;
}
.page-content__header__inner::before {
  position: absolute;
  top: 0;
  left: calc((100vw - var(--container-width)) / -2);
  z-index: -1;
  width: calc(100% + (100vw - var(--container-width)) / 2 + 100px);
  height: 600px;
  content: "";
  background-color: rgba(255, 255, 255, 0.7);
}

.page-content__header .c2-header {
  margin-bottom: 80px;
}
.page-content__header .c2-header__title {
  margin-bottom: 0;
  font-size: 40px;
  line-height: 60px;
  color: var(--font-body-color);
  letter-spacing: 0.05em;
}

@media (max-width: 1599px) {
  .page-content__header__inner::before {
    width: calc(100% + (100vw - var(--container-width)) / 2 + 50px);
  }
}
@media (max-width: 1399px) {
  .page-content__header__inner {
    padding: 100px 0;
  }
  .page-content .c2-header {
    margin-bottom: 60px;
  }
}
@media (max-width: 1299px) {
  .page-content__header__inner::before {
    width: calc(100% + (100vw - var(--container-width)) / 2 + 0.75rem);
  }
}
@media (max-width: 767px) {
  .page-content__header__inner {
    padding: 60px 0;
  }
  .page-content .c2-header__title {
    font-size: 32px;
    line-height: 50px;
  }
}
@media (max-width: 575px) {
  .page-content .c2-header__title {
    font-size: 28px;
    line-height: 40px;
  }
}
.thumb-style {
  --color: var(--thumb-shadow-color, var(--primary));
  position: relative;
}

.thumb-style--left::before {
  position: absolute;
  top: 10px;
  left: 5px;
  width: calc(100% + 5px);
  height: calc(100% + 5px);
  content: "";
  background-color: var(--color);
  opacity: 0.3;
}

.thumb-style--right::before {
  position: absolute;
  top: 10px;
  left: 5px;
  width: calc(100% + 5px);
  height: calc(100% + 5px);
  content: "";
  background-color: var(--color);
  opacity: 0.3;
  right: 5px;
  left: unset;
}

.thumb-style.is-color1 {
  --color: var(--primary);
}
.thumb-style.is-color2 {
  --color: var(--secondary);
}
.thumb-style > img {
  position: relative;
}

/* Box style */
.box-style {
  position: relative;
  margin-bottom: 140px;
}

.box-style--primary {
  --color: var(--box-color, var(--primary));
  --color-rgb: var(--box-color-rgb, var(--primary-rgb));
  --label-color: var(--box-color-reverse, var(--secondary));
  --list-dot-color: var(--primary);
}

.box-style--secondary {
  --color: var(--box-color, var(--secondary));
  --color-rgb: var(--box-color-rgb, var(--secondary-rgb));
  --label-color: var(--box-color-reverse, var(--primary));
  --list-dot-color: var(--secondary);
  overflow-x: hidden;
}

.box-style__inner {
  position: relative;
  padding: 0 0 100px;
}
.box-style__inner::before {
  position: absolute;
  top: 0;
  z-index: -1;
  width: calc(100% + (100vw - var(--container-width)) / 2 + 100px);
  height: 100%;
  content: "";
  background-color: rgba(var(--color-rgb), 0.1);
}

.box-style .box-style__header {
  padding-left: 40px;
  margin-bottom: 60px;
  border-left: 2px solid var(--color);
}
.box-style .box-style__header__badge {
  position: relative;
  display: inline-block;
  min-width: 162px;
  padding: 3px 10px;
  font-size: 24px;
  line-height: 36px;
  color: #fff;
  text-align: center;
  background-color: var(--label-color);
  letter-spacing: 0.2em;
}
.box-style .box-style__header__badge::before {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  background-color: inherit;
  opacity: 0.3;
}

.box-style--left .box-style__inner::before {
  left: calc((100vw - var(--container-width)) / -2);
}

.box-style--right .box-style__inner::before {
  right: calc((100vw - var(--container-width)) / -2);
}

.box-style--step .p-col {
  position: relative;
}
.box-style--step .p-col .c-item__thumb {
  position: relative;
}
.box-style--step .p-col .c-item__thumb::before {
  position: absolute;
  top: calc(50% - 30px);
  right: calc((var(--bs-gutter-x)) * -1 + 13px);
  width: 0;
  height: 0;
  content: "";
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 26px solid rgba(var(--secondary-rgb), 0.3);
}
.box-style--step .p-col:nth-child(3n) .c-item__thumb::before {
  display: none;
}

.box-style__header {
  padding: 100px 0 0;
}

.box-style__header__title {
  margin-bottom: 0;
  font-size: 40px;
  line-height: 60px;
  color: var(--font-body-color);
  letter-spacing: 0.05em;
}

.box-style .c-item__thumb {
  position: relative;
}
.box-style .c-item__title {
  margin-bottom: 40px;
  font-size: 30px;
  color: var(--font-body-color);
  letter-spacing: 0.1em;
}
.box-style .c-item__excerpt {
  font-size: 18px;
  line-height: 38px;
}
.box-style .c-item__excerpt p + p {
  margin-top: 10px;
}
.box-style .c-item__notes {
  margin-top: 1.5em;
  font-size: 15px;
  line-height: 1.8;
}
.box-style .c-item__notes > li {
  position: relative;
  padding-left: 1.2em;
  margin-top: 0.5em;
}
.box-style .c-item__notes > li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--box-color);
  content: "※";
}
.box-style .c-item2__thumb {
  position: relative;
  margin-bottom: 50px;
}
.box-style .c-item2__title {
  font-size: 30px;
  line-height: 60px;
  letter-spacing: 0.2em;
}
.box-style .c-item2__excerpt {
  font-size: 18px;
  line-height: 38px;
}
.box-style .c-list li {
  position: relative;
  padding-left: 10px;
}
.box-style .c-list li::before {
  position: absolute;
  top: 18px;
  left: 0;
  width: 4px;
  height: 4px;
  content: "";
  background-color: var(--list-dot-color, var(--primary));
  border-radius: 50%;
}
.box-style .c-listnew__date {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100px;
}

@media (max-width: 1599px) {
  .box-style--left .box-style__inner::before,
  .box-style--right .box-style__inner::before {
    width: calc(100% + (100vw - var(--container-width)) / 2 + 50px);
  }
}
@media (max-width: 1399px) {
  .box-style {
    margin-bottom: 100px;
  }
  .box-style__header {
    padding: 80px 0 0;
  }
  .box-style .c-item__title {
    margin-bottom: 30px;
    font-size: 28px;
    line-height: 54px;
  }
  .box-style .c-item2__title {
    font-size: 28px;
    line-height: 54px;
  }
  .box-style .c-item__excerpt,
  .box-style .c-item2__excerpt {
    font-size: 16px;
    line-height: 32px;
  }
}
@media (max-width: 1299px) {
  .box-style--left .box-style__inner::before,
  .box-style--right .box-style__inner::before {
    width: calc(100% + (100vw - var(--container-width)) / 2 + 0.75rem);
  }
}
@media (max-width: 1199px) {
  .box-style--step .p-col .c-item__thumb::before {
    top: calc(50% - 20px);
    right: calc((var(--bs-gutter-x)) * -1 + 1px);
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid rgba(var(--secondary-rgb), 0.3);
  }
}
@media (max-width: 991px) {
  .box-style--step .p-col:nth-child(3n) .c-item__thumb::before {
    display: block;
  }
  .box-style--step .p-col:last-child .c-item__thumb::before {
    display: none;
  }
  .box-style .c-item__thumb {
    max-width: 500px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .box-style {
    margin-bottom: 60px;
  }
  .box-style__inner {
    position: relative;
    padding: 0 0 60px;
  }
  .box-style__header {
    padding: 60px 0 0;
  }
  .box-style__header__title {
    font-size: 30px;
    line-height: 50px;
  }
  .box-style .box-style__header__badge {
    min-width: 122px;
    font-size: 18px;
    line-height: 1.6;
  }
  .box-style .c-item2__thumb {
    margin-bottom: 30px;
  }
  .box-style .c-item__title,
  .box-style .c-item2__title {
    font-size: 22px;
    line-height: 34px;
  }
}
@media (max-width: 575px) {
  .box-style .box-style__header {
    padding-left: 20px;
    margin-bottom: 40px;
  }
  .box-style--step .p-col .c-item__thumb::before {
    display: none !important;
  }
  .box-style .c-listnew__date {
    width: 80px;
  }
  .box-style .c-item__thumb,
  .box-style .c-item2__thumb {
    max-width: 300px;
    margin: 0 auto 30px;
  }
  .box-style--step .p-col:not(:last-child) .c-item {
    position: relative;
  }
  .box-style--step .p-col:not(:last-child) .c-item::before {
    position: absolute;
    right: 0;
    bottom: -30px;
    left: 0;
    width: 0;
    height: 0;
    margin: 0 auto;
    content: "";
    border-top: 20px solid rgba(222, 196, 117, 0.5);
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
  }
}
.checkbox-style {
  font-size: 24px;
  line-height: 38px;
  letter-spacing: 0.1em;
}
.checkbox-style i {
  position: relative;
  top: 2px;
}
.checkbox-style li:not(:last-child) {
  margin-bottom: 4px;
}

@media (max-width: 1199px) {
  .checkbox-style {
    font-size: 18px;
    line-height: 30px;
  }
}
/* Ratio */
.ratio.-contain > * {
  -o-object-fit: contain;
  object-fit: contain;
}

/* back to top */
.back-to-top {
  position: fixed;
  right: 131px;
  bottom: -80px;
  z-index: 99;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: none;
}
.back-to-top.active {
  bottom: 30px;
  opacity: 1;
}

@media (max-width: 991px) {
  .back-to-top {
    right: 20px;
  }
}
@media (max-width: 767px) {
  .back-to-top.active {
    bottom: 134px !important;
  }
}
.box__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.box__social.-large i {
  width: 48px;
  height: 48px;
}
.box__social li {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.box__social li:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* REsponsive */
@media (min-width: 992px) {
  .col-lg-48 {
    width: 48%;
  }
  .col-lg-52 {
    width: 52%;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -1deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -1deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 1deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 1deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -1deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -1deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -1deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 1deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 1deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -1deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -1deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -1deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 1deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 1deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -1deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -2deg);
    transform: rotate3d(0, 0, 1, -2deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 1deg);
    transform: rotate3d(0, 0, 1, 1deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -1deg);
    transform: rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -2deg);
    transform: rotate3d(0, 0, 1, -2deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 1deg);
    transform: rotate3d(0, 0, 1, 1deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -1deg);
    transform: rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -2deg);
    transform: rotate3d(0, 0, 1, -2deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 1deg);
    transform: rotate3d(0, 0, 1, 1deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -1deg);
    transform: rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}
.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}
.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}
.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}
.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}
@-webkit-keyframes flash {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.ef__flashing:hover {
  opacity: 1;
  -webkit-animation: flash 3s;
  animation: flash 3s;
}

@keyframes flash {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.ef__shine {
  position: relative;
  overflow: hidden;
}
.ef__shine::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.ef__shine:hover::before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.ef--shine {
  position: relative;
  overflow: hidden;
}
.ef--shine .ef--shine__thumb {
  position: relative;
}
.ef--shine .ef--shine__thumb::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.ef--shine:hover .ef--shine__thumb::before {
  -webkit-animation: shine 2s;
  animation: shine 2s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.btn {
  display: inline-block;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.13em;
  text-align: center;
  border-radius: 39px;
  padding: 21px 10px;
  min-width: 223px;
  transition: ease 0.3s;
}
.btn::before {
  border-radius: 39px;
}

.btn-readmore {
  --color: var(--read-more-color, var(--primary));
  --frame-width: 1px;
  --frame-gap: 7px;
  --frame-hover-gap: 6px;
  position: relative;
  z-index: 1;
  min-width: 300px;
  padding: 21px 10px;
  color: #5b4a3c;
  font-size: 24px;
  border: 1px solid #664732;
  border-radius: 40px;
}

.btn-readmore--primary {
  color: #664732;
  border: 1px solid #664732;
}

.btn-readmore--primary:hover {
  color: #fff;
  background: #664732;
}

.btn-readmore--secondary {
  color: #fff;
  border: 1px solid #fff;
}

.btn-readmore--secondary:hover {
  color: #664732;
  background: #fff;
}

.btn.btn-google {
  color: #433831;
  font-size: 20px;
  letter-spacing: 0.06em;
  border: 1px solid #9e9691;
  min-width: 423px;
  margin-top: 26px;
}
.btn.btn-google:hover {
  color: #fff;
  background: #433831;
  border: 1px solid #433831;
}

@media (max-width: 1199px) {
  .btn.btn-readmore {
    min-width: 240px;
    padding: 14px 10px;
  }
}
@media (max-width: 767px) {
  .btn {
    font-size: 18px;
    min-width: 0;
    padding: 10px 20px;
  }
  .btn::before {
    border-radius: 39px;
  }
  .btn.btn-google {
    font-size: 18px;
    min-width: 0;
    margin-top: 20px;
  }
}
/* C-header */
.c-header {
  margin-bottom: 60px;
}

.c-header__title {
  margin-bottom: 0;
  font-family: var(--font-header-title);
  font-size: 100px;
  font-weight: 300;
  line-height: 1;
  color: var(--color-header-title);
}
.c-header__title.-large {
  font-size: 150px;
}
.c-header__title.-pale-brown {
  color: var(--color-header-sub);
}

.c-header__sub {
  font-size: 28px;
  line-height: 1;
  color: #2d2d2d;
  letter-spacing: 0.2em;
  margin-top: 10px;
}

.c-header.-s2 .c-header__sub {
  position: relative;
  top: -14px;
}
.c-header.-pend .c-header__sub {
  position: relative;
  top: -26px;
}

@media (max-width: 1399px) {
  .c-header__title.-large {
    font-size: 140px;
  }
}
@media (max-width: 1199px) {
  .c-header__title.-large {
    font-size: 120px;
  }
}
@media (max-width: 991px) {
  .c-header__title {
    font-size: 80px;
  }
  .c-header__title.-large {
    font-size: 80px;
  }
  .c-header.-s2 .c-header__sub, .c-header.-pend .c-header__sub {
    top: 0;
  }
}
@media (max-width: 575px) {
  .c-header__title {
    font-size: 50px;
  }
  .c-header__title.-large {
    font-size: 50px;
  }
  .c-header__sub {
    font-size: 24px;
  }
}
.fade {
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade:not(.show) {
  opacity: 0;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav .nav-link {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  cursor: pointer;
  background: 0 0;
  border: 0;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.nav.is-active {
  color: #fff;
  background-color: var(--secondary);
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .is-active {
  display: block;
}

.breadcrumb {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 24px 0;
  margin: 0;
  margin-bottom: 76px;
  font-size: 16px;
  list-style: none;
}

.breadcrumb-item {
  color: var(--color-breadcrumb);
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: var(--color-breadcrumb);
  content: var(--bs-breadcrumb-divider, "/");
}
.breadcrumb-item a {
  color: var(--color02);
}
.breadcrumb-item.active {
  color: var(--color-breadcrumb);
}

@media (max-width: 1399px) {
  .breadcrumb {
    margin-bottom: 26px;
  }
}
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.375rem 0.75rem;
  color: var(--primary);
  text-decoration: none;
  background-color: #fff;
  border: 1px solid var(--primary);
  border-radius: 0;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

.page-item:not(:first-child) .page-link {
  margin-left: -1px;
}
.page-item:hover:not(.disabled) .page-link, .page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}
.page-item.disabled .page-link {
  pointer-events: none;
  opacity: 0.6;
}

/* Menu Mobile */
.modal-open {
  overflow: hidden;
}

.dnmenu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1071;
  background-color: #000;
  opacity: 0.5;
}

.nav__mobile {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 172;
  display: block;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  font-size: 18px;
  visibility: hidden;
  background-color: rgba(255, 255, 255, 0.83);
  -webkit-backdrop-filter: blur(0.65rem);
  backdrop-filter: blur(0.65rem);
  opacity: 0;
  transition: ease 1s;
}
.nav__mobile .nav__mobile__more {
  max-width: 768px;
  margin: 0 auto;
}
.nav__mobile .nav__mobile__more .d-flex {
  justify-content: center;
  margin-bottom: 20px;
  gap: 20px;
}
@media (max-width: 767px) {
  .nav__mobile .nav__mobile__more .d-flex {
    flex-direction: column;
    gap: 10px;
  }
}
.nav__mobile .box-info__phone {
  font-size: 36px;
  margin: 0;
}
.nav__mobile .box-info__phone span {
  font-size: 18px;
}
.nav__mobile .box-info .row {
  gap: 0;
}
.nav__mobile .box-info__address {
  font-size: 16px;
}
.nav__mobile .schedule__table {
  margin-bottom: 10px;
}
.nav__mobile .schedule__table th,
.nav__mobile .schedule__table td {
  font-size: 14px;
  padding: 10px 5px;
}
.nav__mobile .schedule__text {
  font-size: 14px;
}
.nav__mobile .box-info__group__btn {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .nav__mobile .box-info__group__btn {
    gap: 10px;
  }
}

@media (max-width: 575px) {
  .nav__mobile {
    width: 100%;
    overflow-x: hidden;
  }
}
.nav__mobile__inner {
  width: 100%;
  overflow-x: hidden;
}

.nav__mobile.active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.nav__mobile__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 60px;
}
.nav__mobile__header .mburger .icon-bar {
  background-color: #000;
}

.nav__mobile__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 350px;
  height: 40px;
  position: absolute;
  left: 20px;
  top: 10px;
}
.nav__mobile__logo > img {
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 100%;
  height: 100%;
}

@media (max-width: 575px) {
  .nav__mobile__logo {
    max-width: 260px;
  }
}
.nav__mobile__content {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav__mobile__more .box-info .col-md-6 {
  width: 100%;
}

.nav__mobile--ul {
  font-size: 18px;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .nav__mobile--ul {
    font-size: 16px;
    flex-direction: column;
  }
}
.nav__mobile--ul li {
  width: calc(50% - 20px);
  position: relative;
}
@media (max-width: 767px) {
  .nav__mobile--ul li {
    width: 100%;
  }
}
.nav__mobile--ul li a {
  display: block;
  color: #333;
  transition: ease 0.3s;
}
.nav__mobile--ul li a:hover {
  color: #bd938c;
}
.nav__mobile--ul > li {
  padding: 0;
  border-bottom: 1px solid #333;
}
.nav__mobile--ul > li > a {
  padding: 20px;
}
@media (max-width: 767px) {
  .nav__mobile--ul > li > a {
    text-align: center;
    padding: 10px;
  }
}
.nav__mobile--ul .sub-menu {
  padding-left: 90px;
  margin-bottom: 30px;
}
.nav__mobile--ul .sub-menu li {
  width: auto;
  margin-bottom: 10px;
}
.nav__mobile--ul .sub-menu li a::before {
  display: inline-block;
  /* Needed to add space between the bullet and the text */
  width: 1em;
  /* Also needed for space (tweak if needed) */
  margin-left: -1em;
  /* Also needed for space (tweak if needed) */
  font-weight: bold;
  /* Change the color */
  content: "•";
  /* Add content: \2022 is the CSS Code/unicode for a bullet */
}

.nav__mobile__btn {
  position: absolute;
  top: 15px;
  right: 6px;
  width: 40px;
  min-height: 37px;
  padding: 0;
  font-size: 19px;
  line-height: 40px;
  color: #3e252b;
  cursor: pointer;
  background: none;
  border: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.nav__mobile__btn:focus {
  outline: none;
}
.nav__mobile__btn i {
  font-style: inherit;
  color: #000;
}
.nav__mobile__btn i::before, .nav__mobile__btn i::after {
  display: block;
  margin: auto;
  font-weight: 500;
  content: "";
  background: #333;
  border-radius: 10px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.nav__mobile__btn i::before {
  width: 20px;
  height: 2px;
}
.nav__mobile__btn i::after {
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% - 1px);
  width: 2px;
  height: 20px;
}

.nav__mobile .sub-active > .nav__mobile__btn i::after {
  opacity: 0;
}

.mburger {
  position: absolute;
  right: 35px;
  top: 78px;
}
.mburger .icon-bar {
  display: block;
  width: 41px;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.mburger .icon-bar + .icon-bar {
  margin-top: 4px;
}
.mburger.active {
  right: 7px;
  top: 22.5px;
}
.mburger.active .icon-bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 10% 10%;
  transform-origin: 28% 10%;
}
.mburger .icon-bar:nth-of-type(1) {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.mburger.active .icon-bar:nth-of-type(2) {
  opacity: 0;
}
.mburger.active .icon-bar:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 10% 90%;
  transform-origin: 30% 90%;
}
.mburger .icon-bar:nth-of-type(3) {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

@media (max-width: 1190px) {
  .mburger {
    right: 29.5px;
  }
}
@media (max-width: 767px) {
  .mburger {
    right: 20px;
    top: 36px;
  }
}
.fixed-contact {
  position: fixed;
  top: 185px;
  right: -120px;
  z-index: 100;
  width: 100px;
  -webkit-transition: right 0.5s;
  transition: right 0.5s;
  transform: scale(0.9) translateX(6%);
}
.fixed-contact a:hover {
  color: #fff;
}
.fixed-contact.fixed {
  right: 0;
}
.fixed-contact .is-instagram img {
  margin: 30px auto;
}

@media (max-width: 767px) {
  .fixed-contact {
    transform: scale(1) translateX(0);
  }
}
.fixed-contact__item {
  position: relative;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  min-height: 200px;
  margin-bottom: 20px;
  padding: 30px 20px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: 0.13em;
  line-height: 1.4;
  cursor: pointer;
  background: linear-gradient(to bottom, rgb(196, 157, 73) 0%, rgb(162, 118, 24) 100%);
  border: 0;
  border-radius: 20px 0 0 20px;
  position: relative;
  z-index: 1;
  transition: ease 0.3s;
}
.fixed-contact__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: ease 0.3s;
  border-radius: 20px 0 0 20px;
  opacity: 0;
}
.fixed-contact__item:hover::before {
  background: linear-gradient(to bottom, rgb(162, 118, 24) 0%, rgb(196, 157, 73) 100%);
  z-index: -1;
  opacity: 1;
}
.fixed-contact__item:last-child {
  margin-bottom: 0;
}
.fixed-contact__item .icon-clock {
  position: relative;
  left: -1px;
}
.fixed-contact__item .text-combine {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 1px;
  line-height: 1.2;
  word-break: break-all;
}
.fixed-contact__item > i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto 15px;
}
.fixed-contact__item .icon-line::before {
  width: 26px;
  height: 24px;
}
.fixed-contact__item .icon-clock::before {
  width: 25px;
  height: 25px;
}
.fixed-contact__item.active {
  left: calc(var(--content-width) * -1);
  z-index: 1;
}
.fixed-contact__item.-s2 {
  background: linear-gradient(to bottom, rgb(110, 189, 88) 0%, rgb(87, 140, 72) 100%);
}
.fixed-contact__item.-s2:hover::before {
  background: linear-gradient(to bottom, rgb(87, 140, 72) 0%, rgb(110, 189, 88) 100%);
}
.fixed-contact__item.-s3 {
  min-height: 258px;
  background: linear-gradient(to bottom, rgb(170, 108, 99) 0%, rgb(132, 70, 61) 100%);
}
.fixed-contact__item.-s3:hover::before {
  background: linear-gradient(to bottom, rgb(132, 70, 61) 0%, rgb(170, 108, 99) 100%);
}
.fixed-contact__item.-s3 .schedule__table th,
.fixed-contact__item.-s3 .schedule__table td {
  padding: 10px;
}
.fixed-contact__item.-s3 .icon-angle-right-font {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(-1);
  transform: scale(-1);
}
.fixed-contact__item.-s3.js-fixed-item-toggle.active .icon-angle-right-font {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.fixed-contact i.icon-line.-fix {
  position: relative;
  left: -7px;
}

.fixed-contact__item--hide {
  position: absolute;
  top: 0;
  right: 0;
  min-height: 100%;
  padding: 20px;
  background: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  font-weight: 500;
}
.fixed-contact__item--hide a {
  color: #675d57;
}
.fixed-contact__item--hide .table-schedule th,
.fixed-contact__item--hide .table-schedule td {
  padding: 5px 6px;
}
.fixed-contact__item--hide .el__tel a {
  font-size: 24px;
}

.fixed-contact .table-schedule .schedule__text {
  white-space: nowrap;
}

@media (max-width: 767px) {
  .fixed-contact__item:hover::before {
    border-radius: 0 !important;
  }
}
/* REsponsive */
@media (max-width: 1599px) {
  .fixed-contact__item {
    padding: 20px 18px;
    padding: 20px 10px;
    border-radius: 20px 0 0 20px;
  }
}
@media (max-width: 1199px) {
  .fixed-contact.style2 {
    width: 70px;
  }
  .fixed-contact.style2 .fixed-contact__item {
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: -0.5px;
  }
}
@media (max-width: 767px) {
  .fixed-contact {
    top: auto;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: auto;
    padding: 0;
  }
  .fixed-contact i {
    top: 2px;
    width: 15px;
    margin: 0 6px 0 0;
  }
  .fixed-contact .icon-clock {
    left: 0;
  }
  .fixed-contact .text-vertical {
    left: 0;
    width: auto;
    line-height: normal;
    -webkit-writing-mode: inherit;
    -ms-writing-mode: inherit;
    writing-mode: inherit;
  }
  .fixed-contact__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    padding: 14px 18px;
    font-size: 12px;
    line-height: normal;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
  }
  .fixed-contact__item .text-combine {
    width: auto;
    line-height: normal;
    white-space: nowrap;
  }
  .fixed-contact__item .icon-calendar::before {
    width: 20px;
    height: 20px;
  }
  .fixed-contact.style2 {
    top: auto;
    width: 100%;
    height: auto;
  }
  .fixed-contact.style2 .fixed-contact__item {
    padding: 8px 5px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .fixed-contact__item {
    left: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 16px 10px;
    min-height: 0;
    margin: 0;
  }
  .fixed-contact__item.active {
    bottom: 0;
    left: 0;
    -webkit-transform: translateY(calc(var(--content-height) * -1));
    transform: translateY(calc(var(--content-height) * -1));
  }
  .fixed-contact__item > span:not(.text-combine) {
    -webkit-writing-mode: inherit;
    -ms-writing-mode: inherit;
    writing-mode: inherit;
  }
  .fixed-contact__item:last-child .fixed-contact__item--hide {
    right: 0;
    left: auto;
    padding: 20px 0.75rem;
  }
  .fixed-contact__item.-s2 {
    order: -1;
    background: linear-gradient(to bottom, rgb(170, 108, 99) 0%, rgb(132, 70, 61) 100%);
  }
  .fixed-contact__item.-s2:hover::before {
    background: linear-gradient(to bottom, rgb(132, 70, 61) 0%, rgb(170, 108, 99) 100%);
  }
  .fixed-contact__item.-s3 {
    display: none;
  }
  .fixed-contact__item.-s4 {
    background: linear-gradient(to bottom, rgb(110, 189, 88) 0%, rgb(87, 140, 72) 100%);
  }
  .fixed-contact__item.-s4:hover::before {
    background: linear-gradient(to bottom, rgb(87, 140, 72) 0%, rgb(110, 189, 88) 100%);
  }
  .fixed-contact__item--hide {
    top: 100%;
    left: calc(var(--offset-left) * -1);
    width: 100vw;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .fixed-contact__item.-s3 {
    width: 60px;
  }
  .fixed-contact__item.-s3 i {
    margin: 0;
  }
  .fixed-contact__item.-s3.active i {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  .fixed-contact__item.-s3.active i.symbol-dash {
    margin: 6px 0;
  }
}
@media (max-width: 575px) {
  .fixed-contact i {
    top: 2px;
  }
  .fixed-contact__item {
    padding: 14px 0;
  }
}
@media (max-height: 768px) and (min-width: 768px) {
  .fixed-contact {
    top: 19%;
  }
  .fixed-contact__item.-s3 {
    min-height: 200px;
  }
}
.symbol-triangle {
  display: inline-block;
  width: 0 !important;
  height: 0 !important;
  border-right: 7px solid transparent;
  border-bottom: 12px solid var(--secondary);
  border-left: 7px solid transparent;
}

.symbol-dash {
  display: inline-block;
  width: 15px !important;
  height: 1px !important;
  margin: 6px 0;
  background-color: var(--secondary);
}

.symbol-circle {
  display: inline-block;
  width: 12px !important;
  height: 12px !important;
  background-color: var(--secondary);
  border-radius: 50%;
}

.symbol-star {
  display: inline-block;
  color: var(--secondary);
}
.symbol-star::before {
  font-style: normal;
  content: "★";
}

.schedule {
  width: 100%;
  font-size: 16px;
}

.schedule__text {
  color: #333;
  font-size: 20px;
  font-weight: 400;
}

.schedule__table {
  width: 100%;
  line-height: 1.5;
  color: #333;
  border-collapse: collapse;
  border-bottom: 1px solid #b3b3b3;
  --dn-border-color: transparent;
  margin-bottom: 20px;
}
.schedule__table th,
.schedule__table td {
  padding: 20px 10px;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
}
.schedule__table tr td:first-child {
  white-space: nowrap;
}
.schedule__table thead tr {
  border-bottom: 1px solid #b3b3b3;
}
.schedule__table thead tr th:first-child {
  letter-spacing: 0.15em;
  text-align: left;
}
.schedule__table tbody td {
  border-bottom: 1px solid #b3b3b3;
}
.schedule__table tbody td:first-child {
  letter-spacing: 0.1em;
  text-align: left;
}
.schedule__table tbody td:not(:first-child) {
  color: #806b5c;
}

.box-info__group__btn {
  display: flex;
  gap: 10px;
}
.box-info__group__btn .btn {
  display: block;
}

.box-info__phone {
  display: block;
  font-size: 50px;
  font-weight: 500;
  line-height: 1;
  color: #333;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
.box-info__phone span {
  font-size: 28px;
  font-family: var(--font-Marcellus);
  letter-spacing: 0;
}

@media (min-width: 1200px) {
  .box-info__btn:nth-child(3) {
    position: absolute;
    top: 48px;
    right: 0;
  }
}
@media (max-width: 767px) {
  .schedule__table {
    margin-bottom: 10px;
  }
  .schedule__table th,
  .schedule__table td {
    font-size: 14px;
    padding: 10px 5px;
  }
  .schedule__text {
    font-size: 16px;
  }
  .box-info__phone {
    font-size: 36px;
  }
  .box-info__phone span {
    font-size: 18px;
  }
}
#home-top {
  position: relative;
}
#home-top::before {
  content: "";
  width: 100%;
  height: 65px;
  background: url(../images/top/bg_01.svg);
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
#home-top .p-scroll {
  font-size: 22px;
  font-family: var(--font-Marcellus);
  letter-spacing: 0.1em;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: absolute;
  right: 110px;
  bottom: 110px;
  z-index: 1;
}
@media (max-width: 767px) {
  #home-top {
    margin-top: 80px;
  }
  #home-top .p-scroll {
    display: none;
  }
}
#home-top .p-scroll::before {
  content: "";
  width: 2px;
  height: 126px;
  background: #393535;
  position: absolute;
  left: 10px;
  top: 80px;
  animation: scroll 1.5s infinite;
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.sc-banner .p-slider__catch {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.sc-banner .p-slider__catch .swiper-slide {
  opacity: 1 !important;
}
.sc-banner .p-slider__catch .swiper-slide:not(.swiper-slide-active) {
  opacity: 0 !important;
}
.sc-banner .p-slider__catch__item {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.sc-banner .p-slider__catch__meta {
  flex-direction: column;
  margin: auto auto 47px;
}
.sc-banner .p-slider__catch__title {
  color: #fff;
  font-size: 76px;
  font-family: var(--font-serif);
  line-height: 1.2;
  text-shadow: 0px 0px 10px rgb(0, 0, 0);
  margin: 0;
}
.sc-banner .p-slider__catch__list {
  display: flex;
  justify-content: center;
  gap: 13px;
  margin-top: 40px;
}
.sc-banner .p-slider__catch__list li {
  width: 193px;
  height: 193px;
  background: url(../images/top/badge_main_01.png);
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc-banner .p-slider__catch__list li div {
  font-size: 24px;
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.06em;
  background: linear-gradient(45deg, #2c1209 0%, #794613 50%, #6f3c0a 55%, #794613 62%, #2c1209 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(2px 2px 4px #e3cb62) drop-shadow(2px 2px 4px #e3cb62) drop-shadow(2px 2px 4px #e3cb62);
}
.sc-banner .p-slider__catch__list li strong {
  font-size: 30px;
  font-weight: 700;
}
.sc-banner .p-slider__catch__list li:first-child strong {
  letter-spacing: -0.05em;
}
.sc-banner .p-slider__catch__list li small {
  font-size: 18px;
}
.sc-banner .p-slider__catch__sub {
  font-family: var(--font-header-title);
  font-size: 21px;
  margin-top: 0.5em;
}
.sc-banner .p-slider__container {
  position: relative;
  z-index: 0;
}
.sc-banner .p-slider__container[data-effect-type=carousel] > .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.sc-banner .p-slider__container[data-effect-type=slide] > .swiper-wrapper {
  -webkit-transition-timing-function: var(--ease-in-out-cubic);
  transition-timing-function: var(--ease-in-out-cubic);
}
.sc-banner .p-slider__item {
  overflow: hidden;
}
.sc-banner .p-slider__item__thumb {
  width: 100%;
  min-height: 600px;
  padding-top: 57.6%;
}

@media (max-width: 991px) {
  .sc-banner .p-slider__catch__title {
    font-size: 7.66vw;
  }
  .sc-banner .p-slider__catch__sub {
    font-size: 2.11vw;
  }
}
@media (max-width: 767px) {
  #home-top::before {
    width: 200%;
    left: -50%;
  }
  .sc-banner .p-slider__catch__list {
    gap: 1.69vw;
    margin-top: 5.2vw;
    transform: scale(1.15);
  }
  .sc-banner .p-slider__catch__list li {
    width: 25.13vw;
    height: 25.13vw;
  }
  .sc-banner .p-slider__catch__list li div {
    font-size: 3.12vw;
    filter: drop-shadow(0.26vw 0.26vw 0.52vw #e3cb62) drop-shadow(0.26vw 0.26vw 0.52vw #e3cb62) drop-shadow(0.26vw 0.26vw 0.52vw #e3cb62);
  }
  .sc-banner .p-slider__catch__list li strong {
    font-size: 3.9vw;
  }
  .sc-banner .p-slider__catch__list li small {
    font-size: 2.34vw;
  }
}
.sc-opening {
  background: #f8f8f6;
  position: relative;
  overflow: hidden;
}
.sc-opening .box-wrap-info {
  padding: 60px 0;
}

.box-info .row {
  --bs-gutter-x: 0;
}
.box-info .col-md-6 {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.box-info__address {
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 10px;
  padding: 1em;
}
.box-info__address span {
  background: rgba(196, 157, 73, 0.2);
}

@media (max-width: 767px) {
  .box-info__address {
    font-size: 18px;
  }
}
.box-wrap-notice {
  background: url(../images/top/bg_openning_01.jpg) no-repeat center top;
  background-size: cover;
  overflow: hidden;
}
.box-wrap-notice .container {
  max-width: 1396px;
  --container-width: 1396px;
  margin: -50px auto;
}
.box-wrap-notice .col-md-6:first-child {
  margin-right: -32px;
}
.box-wrap-notice .col-md-6:last-child {
  margin-left: -32px;
}
.box-wrap-notice .p-box {
  position: relative;
  font-size: 16px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  aspect-ratio: 1/1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.box-wrap-notice .p-box__title {
  color: #875d56;
  font-size: 38px;
  font-family: var(--font-serif);
  font-weight: 600;
  margin: 90px 0 20px;
}
.box-wrap-notice .p-box__sub {
  font-size: 34px;
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  min-height: 220px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #9a782d 0%, #794613 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.box-wrap-notice .p-box__sub span {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}
.box-wrap-notice .p-box__sub em {
  font-size: 68px;
}
.box-wrap-notice .p-box__sub strong {
  font-size: 100px;
  font-weight: 500;
  display: block;
}
.box-wrap-notice h4 {
  color: #fff;
  font-size: 34px;
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.09em;
  width: 100%;
  background: linear-gradient(to right, rgba(131, 34, 0, 0.9) 0%, rgba(185, 113, 29, 0.9) 50%, rgba(131, 34, 0, 0.9) 100%);
  position: absolute;
  left: 0;
  top: 341px;
  padding: 11px 10px;
}
.box-wrap-notice .p-box__excerpt {
  color: #6f5745;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  margin-top: 90px;
}

@media (max-width: 1436px) {
  .box-wrap-notice .row {
    flex-direction: column;
  }
  .box-wrap-notice .col-md-6 {
    width: 698px;
  }
  .box-wrap-notice .col-md-6:first-child {
    margin: 0 auto;
  }
  .box-wrap-notice .col-md-6:last-child {
    margin: -2px auto 0;
  }
}
@media (max-width: 1199px) {
  .box-info .row {
    flex-direction: column;
    gap: 20px;
  }
  .box-info .col-md-6 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .box-wrap-notice .container {
    margin: -6.51vw auto;
  }
  .box-wrap-notice .col-md-6 {
    width: 91vw;
  }
  .box-wrap-notice .p-box {
    font-size: 2.08vw;
  }
  .box-wrap-notice .p-box__title {
    font-size: 4.95vw;
    margin: 11.73vw 0 2.6vw;
  }
  .box-wrap-notice .p-box__sub {
    font-size: 4.43vw;
    min-height: 28.68vw;
  }
  .box-wrap-notice .p-box__sub span {
    font-size: 6.25vw;
  }
  .box-wrap-notice .p-box__sub em {
    font-size: 8.86vw;
  }
  .box-wrap-notice .p-box__sub strong {
    font-size: 13.03vw;
  }
  .box-wrap-notice h4 {
    font-size: 4.43vw;
    top: 44.45vw;
    padding: 1.43vw 1.3vw;
  }
  .box-wrap-notice .p-box__excerpt {
    font-size: 3.12vw;
    margin-top: 11.73vw;
  }
}
.sc-respond {
  background: url(../images/top/bg_respond_01.png) no-repeat center top;
  background-size: 100%;
}
.sc-respond .c-header {
  height: 24.32vw;
  display: flex;
  align-items: center;
  margin: 0;
}
.sc-respond h2 {
  color: #fff;
  font-size: 1.97vw;
  font-family: var(--font-serif);
  letter-spacing: 0.04em;
  line-height: 2;
  margin: 0;
  padding: 0 0 0 50%;
}
.sc-respond ul {
  display: flex;
  justify-content: center;
  gap: 1.3vw;
}
.sc-respond ul li {
  width: 29.37vw;
  transition: ease 0.3s;
}
.sc-respond ul li:hover {
  transform: translateY(10px);
}
.sc-respond ul li.p-respondlist__item__implant a {
  color: #4d78ae;
  background: url(../images/top/pic_respond_01.jpg) no-repeat center center;
}
.sc-respond ul li.p-respondlist__item__orthodontics a {
  color: #4c979d;
  background: url(../images/top/pic_respond_02.jpg) no-repeat center center;
}
.sc-respond ul li.p-respondlist__item__whitening a {
  color: #c67250;
  background: url(../images/top/pic_respond_03.jpg) no-repeat center center;
}
.sc-respond ul li a {
  font-size: 1.73vw;
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
  text-shadow: 0 0 0.52vw #fff, 0 0 0.52vw #fff, 0 0 0.52vw #fff, 0 0 0.52vw #fff, 0 0 0.52vw #fff;
  display: flex;
  flex-direction: column;
  justify-content: end;
  height: 16.77vw;
  background-size: cover !important;
  padding: 1.04vw;
  box-shadow: 0 0 1.04vw 0 rgba(0, 0, 0, 0.3);
}
.sc-respond ul li h3 {
  font-size: 2.95vw;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  position: relative;
}
.sc-respond ul li h3::before {
  position: absolute;
  color: transparent;
  background-clip: text !important;
  text-shadow: none;
}
.sc-respond ul li.p-respondlist__item__implant h3::before {
  content: "インプラント治療";
  background: linear-gradient(45deg, #16559c 0%, #4a8acc 100%);
}
.sc-respond ul li.p-respondlist__item__orthodontics h3::before {
  content: "矯正歯科";
  background: linear-gradient(45deg, #45969f 0%, #8eb737 100%);
}
.sc-respond ul li.p-respondlist__item__whitening h3::before {
  content: "審美治療";
  background: linear-gradient(45deg, #c26a59 0%, #cf8139 100%);
}
.sc-respond ul li small {
  font-size: 1.56vw;
}
.sc-respond ul li span {
  color: #fff;
  font-size: 1.6vw;
  line-height: 1;
  letter-spacing: -0.15em;
  text-align: center;
  text-shadow: none;
  width: 11.99vw;
  height: 3.73vw;
  display: block;
  background: linear-gradient(to right, rgb(131, 0, 0) 0%, rgb(187, 76, 30) 55%, rgb(131, 0, 0) 100%);
  border-radius: 0.4vw;
  margin-bottom: 0.4vw;
  padding: 0.2vw 0 0;
}

@media (max-width: 767px) {
  .sc-respond {
    background-position: left top;
    background-size: 250%;
  }
  .sc-respond .c-header {
    height: auto;
  }
  .sc-respond h2 {
    font-size: 3.91vw;
    text-shadow: 0 0 10px #000, 0 0 10px #000;
    padding: 60vw 20px 20px;
  }
  .sc-respond ul {
    flex-direction: column;
    gap: 20px;
    margin: 0 20px;
  }
  .sc-respond ul li {
    width: 100%;
    aspect-ratio: 542/309;
  }
  .sc-respond ul li a {
    font-size: 5.18vw;
    height: 100%;
    text-shadow: 0 0 1.71vw #fff, 0 0 1.71vw #fff, 0 0 1.71vw #fff, 0 0 1.71vw #fff, 0 0 1.71vw #fff;
    box-shadow: 0 0 3.43vw 0 rgba(0, 0, 0, 0.3);
    padding: 20px;
  }
  .sc-respond ul li h3 {
    font-size: 8.84vw;
  }
  .sc-respond ul li small {
    font-size: 4.12vw;
  }
  .sc-respond ul li span {
    font-size: 4.12vw;
    letter-spacing: 0;
    width: 35.91vw;
    height: 11.16vw;
    border-radius: 1.2vw;
    margin-bottom: 1vw;
    padding: 1vw 0 0;
  }
}
@media (max-width: 420px) {
  .sc-respond h2 {
    font-size: 4.28vw;
  }
}
.sc-new {
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 67px 0 100px;
}
.sc-new .sc__wrap {
  display: flex;
  justify-content: space-between;
}
.sc-new .tab-pane {
  width: 504px;
  position: relative;
}
.sc-new .tab-pane .btn {
  color: #664732;
  font-size: 18px;
  width: 109px;
  min-width: 0;
  height: 41px;
  line-height: 34px;
  border: 1px solid #664732;
  position: absolute;
  right: 27px;
  top: -5px;
  padding: 0;
}
.sc-new .tab-pane .btn:hover {
  color: #fff;
  background: #664732;
}
.sc-new .c-header {
  margin-bottom: 30px;
}
.sc-new .c-header__title {
  color: #473224;
  font-size: 44px;
  margin: 0;
}
.sc-new .nav-tabs {
  margin-bottom: 30px;
}
.sc-new .nav .nav-item:not(:last-child) {
  margin-right: 12px;
}
.sc-new .nav .nav-link {
  color: #666;
  background: rgba(230, 230, 230, 0.7);
  border-radius: 0;
}
.sc-new .nav .nav-link.is-active, .sc-new .nav .nav-link:hover {
  color: #fff;
  background-color: var(--secondary);
}
.sc-new .p-newlist {
  height: 418px;
  padding-right: 16px;
  overflow: auto;
}
.sc-new .p-newlist::-webkit-scrollbar {
  width: 8px;
}
.sc-new .p-newlist::-webkit-scrollbar-track {
  background: #fff;
}
.sc-new .p-newlist::-webkit-scrollbar-thumb {
  background: #a27b75;
  cursor: pointer;
  border-radius: 4px;
}
.sc-new .p-newlist__item {
  position: relative;
  margin-bottom: 30px;
  padding: 0 20px 30px;
  border-bottom: 1px solid #858585;
}
.sc-new .p-newlist__item__date {
  font-size: 20px;
  margin-bottom: 5px;
}
.sc-new .p-newlist__item__cat {
  font-size: 22px;
  font-weight: 500;
}
.sc-new .p-newlist__item__cat a {
  color: #87615c;
}
.sc-new .p-newlist__item__title {
  margin-bottom: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sc-new .p-newlist__item__title a {
  color: var(--font-body-color);
}

@media (max-width: 1068px) {
  .sc-new .tab-pane {
    width: calc(50% - 10px);
  }
}
@media (max-width: 991px) {
  .sc-new .sc__wrap {
    flex-direction: column;
    gap: 60px;
  }
  .sc-new .tab-pane {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .sc-new {
    padding: 60px 0;
  }
  .sc-new .c-header__title {
    font-size: 30px;
  }
  .sc-new .p-newlist__item__cat {
    font-size: 18px;
  }
  .sc-new .p-newlist__item {
    margin-bottom: 20px;
    padding: 0 0 20px;
  }
}
.sc-case {
  text-align: center;
  background: url(../images/top/bg_case_01.jpg) no-repeat center center;
  background-size: cover;
  padding: 50px 0;
}
.sc-case .c-header {
  margin-bottom: 50px;
}
.sc-case h2 {
  color: #a27b75;
  font-size: 50px;
  font-family: var(--font-serif);
  font-weight: 600;
  margin: 0;
}
.sc-case .slick-list {
  margin: 0 -15px;
}
.sc-case .slick-slide {
  margin: 0 15px;
}
.sc-case .p-caselist {
  margin-bottom: 50px;
}
.sc-case .p-caselist .p-caselist__item {
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 0 15px;
}
.sc-case .p-caselist .p-caselist__item a {
  width: 100%;
  display: block;
  padding: 20px 35px 30px;
}
.sc-case .p-caselist .p-caselist__item h3 {
  color: #87615c;
  font-size: 26px;
  font-family: var(--font-serif);
  font-weight: 600;
  margin: 0 0 20px;
}
.sc-case .p-caselist .p-caselist__item ul {
  display: flex;
  gap: 52px;
  margin-top: auto;
  background: url(../images/ico_arrow_01.svg) no-repeat center center;
}
.sc-case .p-caselist .p-caselist__item ul li {
  width: 50%;
}
.sc-case .p-caselist .p-caselist__item ul li h4 {
  color: #fff;
  font-size: 30px;
  font-family: var(--font-Marcellus);
  border-radius: 10px 10px 0 0;
  margin: 0;
}
.sc-case .p-caselist .p-caselist__item ul li:nth-child(1) h4 {
  background: #7f6757;
}
.sc-case .p-caselist .p-caselist__item ul li:nth-child(2) h4 {
  background: #c49d49;
}
.sc-case .p-caselist .p-caselist__item ul li img {
  width: 100%;
  border-radius: 0 0 10px 10px;
}

@media (max-width: 991px) {
  .sc-case .p-caselist .p-caselist__item ul {
    background-size: 10px;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .sc-case {
    padding: 60px 0;
  }
  .sc-case h2 {
    font-size: 36px;
    margin: 0;
  }
  .sc-case .p-caselist {
    margin-bottom: 60px;
  }
  .sc-case .p-caselist .p-caselist__item a {
    padding: 20px;
  }
  .sc-case .p-caselist .p-caselist__item h3 {
    font-size: 18px;
  }
  .sc-case .p-caselist .p-caselist__item ul li h4 {
    font-size: 18px;
  }
}
.sc-policy {
  text-align: center;
}
.sc-policy .c-header__title {
  margin: 0;
}
.sc-policy .row {
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: nowrap;
  gap: 22px;
}
.sc-policy .row .col-md-4 {
  background: #fff;
  border-radius: 36px;
  padding: 20px 20px 40px;
}
.sc-policy .row .col-md-4 .p-box__phone {
  color: var(--font-body-color);
  font-size: 50px;
  font-weight: 500;
  line-height: 1;
}
.sc-policy .row .col-md-4 .p-box__phone span {
  font-size: 28px;
  font-family: var(--font-Marcellus);
}
.sc-policy .row .col-md-4 p {
  font-size: 18px;
  margin-top: 20px;
}
.sc-policy .row .col-md-4 .p-box__codetxt {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
}
.sc-policy .row .col-md-4 .p-box__buttons {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.sc-policy .row .col-md-4 .p-box__buttons .btn {
  font-size: 20px;
  width: 348px;
  height: 64px;
  line-height: 64px;
  padding: 0;
}
.sc-policy .c-header__loop {
  animation: 60s linear infinite rotation;
  margin: 0 auto;
}
.sc-policy .c-header__loop img {
  display: inline-block;
}
@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.sc-policy .sc__wrap {
  background: url(../images/top/bg_about_01.png) no-repeat center top;
  background-size: 100%;
  margin-top: -3.38vw;
  padding: 0 0 200px;
  position: relative;
}
.sc-policy .sc__wrap::before {
  content: "";
  width: 100%;
  height: 65px;
  background: url(../images/top/bg_01.svg);
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.sc-policy .sc__wrap .c-header {
  position: relative;
  top: -210px;
  margin-bottom: -60px;
}
.sc-policy .c-header__logo {
  margin: -375px auto 0;
}
.sc-policy .c-header__logo img {
  display: inline-block;
}
.sc-policy .p-box {
  --row-gap: 20px;
  padding: 100px 20px;
}
.sc-policy .p-box > .row > * {
  container: box/inline-size;
}
.sc-policy .p-box__thumb {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 110px;
}
.sc-policy .p-box__title {
  color: #87615c;
  font-size: 28px;
  font-family: var(--font-serif);
  font-weight: 600;
  margin-top: 0;
}

@media (max-width: 1199px) {
  .sc-policy .container {
    max-width: none;
    --container-width: auto;
  }
  .sc-policy .row {
    flex-direction: column;
  }
  .sc-policy .row .col-md-4 {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .sc-policy .sc__wrap {
    background-size: 100%;
    background-position: 50% top;
  }
  .sc-policy .sc__wrap .c-header {
    top: -21.19vw;
    margin-bottom: -6.05vw;
  }
  .sc-policy .c-header__loop {
    width: 51.66vw;
  }
  .sc-policy .c-header__logo {
    width: 25.63vw;
    margin: -37.84vw auto 0;
  }
}
@media (max-width: 767px) {
  .sc-policy .sc__wrap {
    padding: 0 0 60px;
  }
  .sc-policy .sc__wrap::before {
    width: 200%;
    left: -50%;
  }
  .sc-policy .p-box {
    padding: 60px 20px;
  }
  .sc-policy .p-box__title {
    font-size: 18px;
  }
  .sc-policy .row .col-md-4 {
    padding: 20px;
  }
  .sc-policy .row .col-md-4 .p-box__codetxt {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .sc-policy .row .col-md-4 .p-box__phone {
    font-size: 36px;
  }
  .sc-policy .row .col-md-4 .p-box__phone span {
    font-size: 18px;
  }
  .sc-policy .row .col-md-4 .p-box__buttons {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }
  .sc-policy .row .col-md-4 .p-box__buttons .btn {
    font-size: 18px;
    min-width: 0;
    width: auto;
    height: auto;
    line-height: 1.5;
    letter-spacing: 0.13em;
    border-radius: 39px;
    padding: 10px 20px;
  }
}
.sc-policy__meta {
  color: #473224;
  text-align: left;
  display: flex;
  justify-content: center;
  align-items: start;
}

@media (max-width: 1399px) {
  .sc-policy__meta {
    flex-direction: column;
    align-items: center;
  }
}
.sc-policy__title {
  color: #473224;
  font-size: 70px;
  font-family: var(--font-serif);
  letter-spacing: 0.18em;
  margin: 0;
}

.sc-policy__excerpt {
  font-size: 28px;
  line-height: 2;
  margin-top: 100px;
  padding: 0 20px;
}

@media (max-width: 767px) {
  .sc-policy__title {
    font-size: 36px;
  }
  .sc-policy__excerpt {
    font-size: 18px;
    margin-top: 40px;
  }
}
@media (max-width: 575px) {
  .sc-policy__title {
    font-size: 10vw;
  }
}
.sc-greeting {
  position: relative;
  padding: 200px 0 150px;
  overflow: hidden;
}
.sc-greeting::before {
  position: absolute;
  right: 0;
  top: 160px;
  pointer-events: none;
  content: "";
  background: url(../images/logo_04.png) no-repeat right top;
  background-size: 100% 100%;
  width: 31.77vw;
  height: 32.13vw;
}
.sc-greeting .container {
  max-width: 1590px;
  --container-width: 1590px;
}
.sc-greeting .sc__content {
  position: relative;
  z-index: 1;
}
.sc-greeting .c-header__title {
  margin: 0;
}
.sc-greeting .sc__box {
  margin-bottom: 70px;
  display: flex;
  gap: 20px;
}
.sc-greeting .sc__title {
  font-size: 60px;
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.1em;
  background: linear-gradient(45deg, #9a772d 0%, #794614 100%);
  color: transparent;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  margin: 0 0 60px;
}
.sc-greeting .sc__excerpt {
  font-size: 24px;
  line-height: 2;
  margin-bottom: 120px;
}
.sc-greeting .sc__thumb {
  margin-bottom: 60px;
  position: relative;
}
.sc-greeting .sc__thumb div:nth-child(2) {
  position: absolute;
  right: -32px;
  bottom: 0;
}
.sc-greeting .col-right {
  width: 55.97%;
  order: 2;
}
.sc-greeting .col-left {
  width: 40%;
}
.sc-greeting .el__ruby {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-family: var(--font-serif);
}
.sc-greeting ruby {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-size: 38px;
}
.sc-greeting small {
  color: #a27b75;
  font-family: var(--font-Marcellus);
}
.sc-greeting .c-list {
  max-width: 726px;
  background: #fff;
  margin: 40px auto 0;
  padding: 20px 30px;
  border-radius: 20px;
}
.sc-greeting .c-list__title {
  color: #a27b75;
  font-size: 24px;
  text-align: center;
  margin: 0 0 10px;
}
.sc-greeting .c-list p {
  font-size: 22px;
  line-height: 1.6;
}

@media (max-width: 1630px) {
  .sc-greeting .container {
    width: auto;
    margin: 0 20px;
  }
  .sc-greeting .sc__box {
    margin: 0;
  }
  .sc-greeting .sc__title {
    white-space: normal;
  }
}
@media (max-width: 1399px) {
  .sc-greeting .sc__excerpt {
    margin-bottom: 140px;
  }
}
@media (max-width: 991px) {
  .sc-greeting .col-right {
    width: 100%;
  }
  .sc-greeting .col-left {
    width: 100%;
  }
  .sc-greeting .sc__thumb {
    width: 80%;
    margin: 0 auto 30px;
  }
  .sc-greeting .sc__thumb div:nth-child(2) {
    width: 37.75%;
  }
  .sc-greeting .sc__excerpt {
    margin-bottom: 60px;
  }
  .sc-greeting .c-list {
    max-width: none;
  }
  .sc-greeting .btn {
    display: block;
    width: 240px;
    margin: 60px auto 0;
  }
}
@media (max-width: 767px) {
  .sc-greeting {
    padding: 100px 0;
  }
  .sc-greeting::before {
    top: 80px;
  }
  .sc-greeting .sc__title {
    font-size: 7vw;
    margin: 0 0 20px;
  }
  .sc-greeting .sc__excerpt {
    font-size: 18px;
    margin-bottom: 60px;
  }
  .sc-greeting .el__ruby {
    font-size: 18px;
  }
  .sc-greeting ruby {
    font-size: 24px;
  }
  .sc-greeting .c-list {
    margin: 30px auto 0;
    padding: 20px;
    border-radius: 10px;
  }
  .sc-greeting .c-list__title {
    font-size: 18px;
  }
  .sc-greeting .c-list p {
    font-size: 16px;
  }
  .sc-greeting .btn {
    margin-top: 30px;
  }
}
.sc-features {
  position: relative;
  padding: 150px 0;
  overflow: hidden;
  background: url(../images/top/bg_feature_01.png) repeat-y center top;
  background-size: 100%;
}
.sc-features::before {
  content: "";
  width: 100%;
  height: 20.83vw;
  background: linear-gradient(to bottom, rgba(248, 248, 246, 0) 0%, rgb(248, 248, 246) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
}
.sc-features .c-header__title {
  margin: 0;
}
.sc-features .c-item {
  margin-bottom: 4.16vw;
}
.sc-features .c-item .c-item__thumb {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1/1;
}
.sc-features .c-item .c-item__thumb img {
  width: 100%;
}
.sc-features .c-item:nth-child(odd) .c-item__thumb {
  right: -3.8vw;
}
.sc-features .c-item:nth-child(even) .c-item__thumb {
  left: -3.8vw;
}
.sc-features .c-item .c-item__meta {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.sc-features .c-item:nth-child(odd) .c-item__meta {
  left: -3.8vw;
}
.sc-features .c-item:nth-child(even) .c-item__meta {
  right: -3.8vw;
}
.sc-features .c-item__inner {
  position: relative;
  padding: 0 9.37vw;
}
.sc-features .c-item__stt {
  font-size: 12.44vw;
  font-family: var(--font-Marcellus);
  line-height: 1;
  color: rgba(196, 157, 73, 0.2);
  position: absolute;
  right: 5.2vw;
  top: 0;
}
.sc-features .c-item__stt__label {
  position: absolute;
  top: 50%;
  left: 0;
  font-family: var(--font-HighTide);
  font-size: 24px;
  letter-spacing: 0;
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
}
.sc-features .c-item__title {
  font-size: 3.12vw;
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.06em;
  background: linear-gradient(45deg, #9a772d 0%, #794614 100%);
  color: transparent;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}
.sc-features h4 {
  color: #c49d49;
  font-size: 1.97vw;
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 1.04vw 0 1.56vw;
}
.sc-features .c-item__excerpt {
  font-size: 1.35vw;
  line-height: 1.8;
}
.sc-features .btn {
  color: #fff;
  font-size: 1.45vw;
  font-weight: 500;
  letter-spacing: 0.06em;
  background: #ab8882;
  width: 10.41vw;
  min-width: 0;
  height: 10.41vw;
  border-radius: 50%;
  border: 1px solid #ab8882;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  bottom: 0;
}
.sc-features .btn:hover {
  color: #ab8882;
  background: #fff;
}

@media (max-width: 1399px) {
  .sc-features {
    padding: 200px 0 100px;
  }
  .sc-features .c-item__meta {
    padding-top: 30px;
  }
}
@media (max-width: 1199px) {
  .sc-features {
    padding: 100px 0 0;
  }
  .sc-features .c-item__meta {
    padding-top: 0;
  }
  .sc-features .c-item__title {
    margin-bottom: 30px;
    font-size: 24px;
  }
}
@media (max-width: 990px) {
  .sc-features .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .sc-features .c-item:nth-child(even) .order-lg-2 {
    order: 2;
  }
}
@media (max-width: 767px) {
  .sc-features .c-item {
    margin-bottom: 60px;
  }
  .sc-features .c-item .row {
    display: block;
  }
  .sc-features .c-item .col-lg-6 {
    width: 100%;
  }
  .sc-features .c-item .c-item__inner {
    padding: 0;
  }
  .sc-features .c-item .c-item__thumb {
    margin-bottom: -20vw;
  }
  .sc-features .c-item:nth-child(even) .c-item__thumb {
    left: -20px;
  }
  .sc-features .c-item:nth-child(even) .c-item__inner {
    padding: 0 60px 0 40px;
  }
  .sc-features .c-item:nth-child(even) .c-item__meta {
    right: -20px;
  }
  .sc-features .c-item:nth-child(odd) .c-item__thumb {
    right: -20px;
  }
  .sc-features .c-item:nth-child(odd) .c-item__inner {
    padding: 0 40px 0 60px;
  }
  .sc-features .c-item:nth-child(odd) .c-item__meta {
    left: -20px;
  }
  .sc-features .c-item__title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .sc-features h4 {
    font-size: 24px;
    margin: 20px 0;
  }
  .sc-features .c-item__excerpt {
    font-size: 18px;
  }
  .sc-features .c-item__stt {
    font-size: 150px;
    right: 60px;
  }
  .sc-features .btn {
    font-size: 16px;
    width: 120px;
    height: 120px;
    margin: 30px auto 0;
  }
}
@media (max-width: 575px) {
  .sc-features .c-item .c-item__thumb {
    margin-bottom: -30px;
  }
  .sc-features .c-item__title {
    font-size: 22px;
    margin-bottom: 3.47vw;
  }
  .sc-features h4 {
    font-size: 22px;
    margin: 3.47vw 0;
  }
  .sc-features .c-item__excerpt {
    font-size: 16px;
  }
  .sc-features .c-item__stt {
    font-size: 100px;
  }
  .sc-features .btn {
    font-size: 12px;
    width: 100px;
    height: 100px;
    bottom: -20px;
  }
}
.sc-service {
  text-align: center;
  position: relative;
  padding: 100px 0;
}
.sc-service .sc__content {
  position: relative;
  z-index: 1;
}
.sc-service .sc__content .c-header__title {
  margin: 0;
}
.sc-service .sc__content ul {
  margin: 0 auto 70px;
}
.sc-service .sc__content ul li {
  background-size: cover !important;
}
.sc-service .sc__content ul:nth-child(2) {
  flex-wrap: nowrap;
  gap: 0.41vw;
}
.sc-service .sc__content ul:nth-child(2) li {
  width: 33.33vw;
  aspect-ratio: 64/53;
  position: relative;
  z-index: 1;
}
.sc-service .sc__content ul:nth-child(2) li::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: ease 0.3s;
}
.sc-service .sc__content ul:nth-child(2) li:hover::before {
  background-size: 110% !important;
}
.sc-service .sc__content ul:nth-child(2) li:nth-child(1)::before {
  background: url(../images/top/pic_service_01.jpg) no-repeat center center;
}
.sc-service .sc__content ul:nth-child(2) li:nth-child(2)::before {
  background: url(../images/top/pic_service_02.jpg) no-repeat center center;
}
.sc-service .sc__content ul:nth-child(2) li:nth-child(3)::before {
  background: url(../images/top/pic_service_03.jpg) no-repeat center center;
}
.sc-service .sc__content ul:nth-child(3) {
  max-width: 1545px;
  justify-content: space-between;
  gap: 4px;
}
.sc-service .sc__content ul:nth-child(3) li {
  width: calc(20% - 4px);
  border-radius: 10px;
  aspect-ratio: 305/251;
  position: relative;
  z-index: 1;
}
.sc-service .sc__content ul:nth-child(3) li::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: ease 0.3s;
}
.sc-service .sc__content ul:nth-child(3) li:hover::before {
  background-size: 110% !important;
}
.sc-service .sc__content ul:nth-child(3) li:nth-child(1)::before {
  background: url(../images/top/pic_service_04.png) no-repeat center center;
}
.sc-service .sc__content ul:nth-child(3) li:nth-child(2)::before {
  background: url(../images/top/pic_service_05.png) no-repeat center center;
}
.sc-service .sc__content ul:nth-child(3) li:nth-child(3)::before {
  background: url(../images/top/pic_service_06.png) no-repeat center center;
}
.sc-service .sc__content ul:nth-child(3) li:nth-child(4)::before {
  background: url(../images/top/pic_service_07.png) no-repeat center center;
}
.sc-service .sc__content ul:nth-child(3) li:nth-child(5)::before {
  background: url(../images/top/pic_service_08.png) no-repeat center center;
}
.sc-service .sc__content ul:nth-child(3) li:nth-child(6)::before {
  background: url(../images/top/pic_service_09.png) no-repeat center center;
}
.sc-service .sc__content ul:nth-child(3) li:nth-child(7)::before {
  background: url(../images/top/pic_service_10.png) no-repeat center center;
}
.sc-service .sc__content ul:nth-child(3) li:nth-child(8)::before {
  background: url(../images/top/pic_service_11.png) no-repeat center center;
}
.sc-service .sc__content ul:nth-child(3) li:nth-child(9)::before {
  background: url(../images/top/pic_service_12.png) no-repeat center center;
}
.sc-service .sc__content ul:nth-child(3) li:nth-child(10)::before {
  background: url(../images/top/pic_service_13.png) no-repeat center center;
}
.sc-service .sc__content ul:nth-child(3) li:nth-child(11)::before {
  background: url(../images/top/pic_service_14.png) no-repeat center center;
}
.sc-service .sc__content ul:nth-child(3) li:nth-child(12)::before {
  background: url(../images/top/pic_service_15.png) no-repeat center center;
}
.sc-service .sc__content ul:nth-child(3) li:nth-child(13)::before {
  background: url(../images/top/pic_service_16.png) no-repeat center center;
}
.sc-service .sc__content ul:nth-child(3) li:nth-child(14)::before {
  background: url(../images/top/pic_service_17.png) no-repeat center center;
}
.sc-service .sc__content ul:nth-child(3) li:nth-child(15)::before {
  background: url(../images/top/pic_service_18.png) no-repeat center center;
}
.sc-service .sc__content ul a {
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.sc-service .sc__content ul a h3 {
  font-size: 3.07vw;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 0 1.56vw #000;
  margin: 11.45vw 0 2.6vw;
}
.sc-service .sc__content ul a p {
  font-size: 1.56vw;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  text-shadow: 0 0 1.56vw #000;
  margin-bottom: auto;
}
.sc-service .sc__content ul a h4 {
  font-size: 35px;
  font-weight: 500;
  letter-spacing: 0;
}
.sc-service .c-item {
  position: relative;
  margin-bottom: 100px;
  text-align: center;
}
.sc-service .c-item:hover .c-item__thumb {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}
.sc-service .c-item:hover .c-item__title a {
  color: var(--secondary);
}
.sc-service .c-item.-fix .c-item__thumb {
  margin-bottom: 4px;
}
.sc-service .c-item.-fix .c-item__title a {
  margin-bottom: 0;
}
.sc-service .c-item__thumb {
  margin-bottom: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sc-service .c-item__thumb .dnfix__thumb {
  max-width: 100px;
  padding-top: 100px;
  margin: 0 auto;
}
.sc-service .c-item__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  letter-spacing: 0.1em;
}
.sc-service .c-item__title a {
  display: block;
  margin-bottom: 10px;
  color: var(--font-body-color);
  word-break: keep-all;
}
.sc-service .c-item__title i {
  display: block;
}

@media (max-width: 1585px) {
  .sc-service .sc__content ul:nth-child(3) {
    margin: 0 20px 70px;
  }
  .sc-service .sc__content ul:nth-child(3) a h4 {
    font-size: 2.2vw;
  }
}
@media (max-width: 767px) {
  .sc-service .sc__content ul {
    margin: 0 auto 60px;
  }
  .sc-service .sc__content ul:nth-child(2) {
    flex-wrap: wrap;
    gap: 0.62vw;
  }
  .sc-service .sc__content ul:nth-child(2) li {
    width: 49.69vw;
  }
  .sc-service .sc__content ul:nth-child(2) a h3 {
    font-size: 7.81vw;
    margin: 17.18vw 0 3.9vw;
  }
  .sc-service .sc__content ul:nth-child(2) a p {
    font-size: 3.12vw;
  }
  .sc-service .sc__content ul:nth-child(3) {
    margin: 0 20px 60px;
  }
  .sc-service .sc__content ul:nth-child(3) li {
    width: calc(33.33% - 4px);
  }
  .sc-service .sc__content ul:nth-child(3) a h4 {
    font-size: 3.75vw;
  }
}
@media (max-width: 525px) {
  .sc-service .sc__content ul:nth-child(2) li {
    width: 100%;
    aspect-ratio: 2.3/1;
  }
  .sc-service .sc__content ul:nth-child(2) li:nth-child(1)::before {
    background: url(../images/top/pic_service_01.jpg) no-repeat center top;
  }
  .sc-service .sc__content ul:nth-child(2) li:nth-child(2)::before {
    background: url(../images/top/pic_service_02.jpg) no-repeat center top;
  }
  .sc-service .sc__content ul:nth-child(2) li:nth-child(3)::before {
    background: url(../images/top/pic_service_03.jpg) no-repeat center top;
  }
  .sc-service .sc__content ul:nth-child(2) a h3 {
    margin: auto 0 3.9vw;
  }
}
.sc-facilities {
  position: relative;
  padding: 200px 0 85px;
  background: url(../images/top/bg_clinic_01-02.jpg) no-repeat center top;
  background-size: cover;
  position: relative;
}
.sc-facilities::before {
  content: "";
  width: 100%;
  height: 65px;
  background: url(../images/top/bg_02.svg);
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.sc-facilities .sc__wrap {
  position: relative;
  z-index: 1;
}
.sc-facilities .c-header {
  flex-direction: column;
  margin-bottom: 0;
}
.sc-facilities .c-header__title,
.sc-facilities .c-header__sub,
.sc-facilities h3 {
  color: #fff;
}
.sc-facilities .c-header__title {
  margin-top: 0;
}
.sc-facilities h3 {
  font-size: 60px;
  font-family: var(--font-serif);
  letter-spacing: 0.06em;
}
.sc-facilities .sc__btngroup {
  gap: 25px;
}

@media (max-width: 991px) {
  .sc-facilities::before {
    width: 200%;
    margin-left: -50%;
  }
  .sc-facilities .c-header {
    text-shadow: 0 0 10px #000;
  }
  .sc-facilities .sc__wrap::before {
    left: 100px;
    width: calc(100% + (100vw - var(--container-width)) / 2 - 100px);
  }
  .sc-facilities .c-slider__meta {
    width: calc(100% - 200px);
  }
}
@media (max-width: 767px) {
  .sc-facilities h3 {
    font-size: 30px;
  }
  .sc-facilities .sc__btngroup {
    display: grid;
    gap: 20px;
  }
  .sc-facilities .swiper__wrap {
    max-width: 100%;
    margin: 0 auto 80px;
  }
  .sc-facilities .c-slider {
    padding-bottom: 140px;
  }
  .sc-facilities .swiper-button {
    top: auto;
    bottom: 30px;
  }
  .sc-facilities .swiper-button.swiper-button-prev {
    right: auto;
    left: calc(50% - 90px);
  }
  .sc-facilities .swiper-button.swiper-button-next {
    right: calc(50% - 90px);
    left: auto;
  }
  .sc-facilities .swiper-pagination {
    top: auto !important;
    bottom: 0 !important;
    text-align: center;
  }
  .sc-facilities .c-slider__meta {
    width: 100%;
  }
  .sc-facilities .c-slider__title {
    font-size: 24px;
  }
  .sc-facilities .sc__wrap::before {
    left: 0;
    width: calc(100% + (100vw - var(--container-width)) / 2);
  }
  .sc-facilities .sc__content {
    padding: 0;
  }
  .sc-facilities .swiper-button {
    width: 60px;
    height: 60px;
  }
  .sc-facilities .swiper-button.swiper-button-next {
    right: calc(50% - 70px);
  }
  .sc-facilities .swiper-button.swiper-button-prev {
    left: calc(50% - 70px);
  }
}
.sc-gallery {
  margin-top: 3px;
}
.sc-gallery .p-gallery {
  display: flex;
  gap: 3px;
  overflow: hidden;
}
.sc-gallery .p-gallery__list {
  display: flex;
  gap: 3px;
  animation: infinity-scroll-left 30s infinite linear 0.5s both;
}
.sc-gallery .p-gallery__item {
  width: 40vw;
}
.sc-gallery .p-gallery__item img {
  width: 100%;
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@media (max-width: 767px) {
  .sc-gallery .p-gallery__item {
    width: 66.6666666667vw;
  }
}
.sc-bg {
  position: relative;
}
.sc-bg::before, .sc-bg::after {
  content: "";
  width: 100%;
  height: 65px;
  background-size: 100% 100% !important;
  position: absolute;
  left: 0;
  z-index: 1;
}
.sc-bg::before {
  background: url(../images/top/bg_02.svg);
  top: 0;
}
.sc-bg.sc-bg--rotate::before {
  background: url(../images/top/bg_01.svg);
  transform: rotate(180deg);
}
.sc-bg::after {
  background: url(../images/top/bg_01.svg);
  bottom: 0;
}
.sc-bg.sc-bg--rotate::after {
  display: none;
}
.sc-bg img {
  width: 100%;
}

@media (max-width: 991px) {
  .sc-bg {
    width: 200%;
    margin-left: -50%;
  }
  .sc-bg.sc-bg--left img {
    position: relative;
    right: -25%;
  }
}
.sc-calendar {
  padding-bottom: 120px;
}
.sc-calendar .p-box-social {
  margin-bottom: 160px;
}
.sc-calendar .p-box-social .c-item {
  padding: 11px 10px;
  background: rgba(var(--primary-rgb), 0.2);
}
.sc-calendar .p-box-social .c-item .dnfix__thumb {
  padding-top: 48px;
}
.sc-calendar .p-box-social .c-item img {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.sc-calendar .p-box-social .c-item.-facebook img {
  max-height: 34px;
}
.sc-calendar .p-box-social .c-item.-instagram img {
  max-height: 48px;
}
.sc-calendar .p-box-social .c-item.-twitter img {
  max-height: 32px;
}

@media (max-width: 1399px) {
  .sc-calendar {
    padding-bottom: 100px;
  }
  .sc-calendar .p-box-social {
    margin-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .sc-calendar {
    padding-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .sc-calendar .sc__content,
  .sc-calendar .p-box-social {
    padding: 0 0.75rem;
  }
}
.sc-information {
  position: relative;
  padding: 100px 0;
  background: #e3ded9;
}
.sc-information .c-header__title {
  margin: 0;
}
.sc-information .container {
  display: flex;
  gap: 30px;
}
.sc-information .sc__content {
  width: 50%;
}
.sc-information .sc__wrap {
  overflow: hidden;
}
.sc-information .c-content {
  margin-bottom: 100px;
}
.sc-information .p-list {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0;
}
.sc-information .p-list__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -ms-flex-pack: distribute;
  width: 132px;
  color: #664732;
  font-size: 18px;
}
.sc-information .p-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}
.sc-information .p-list__item:last-child {
  margin-bottom: 0;
}
.sc-information .p-list__item a {
  color: #87615c;
  text-decoration: none;
}
.sc-information .p-list__list + .p-list__link {
  margin-top: 1em;
}
.sc-information .p-list__child {
  position: relative;
  padding-left: 1em;
}
.sc-information .p-list__child:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}
.sc-information .p-list__link {
  display: inline-block;
  text-decoration: underline;
}
.sc-information .p-list__link:hover {
  text-decoration: none;
}
.sc-information .p-box {
  font-weight: 300;
}
.sc-information .p-box__item {
  padding: 40px 20px;
  background: #fff;
}
.sc-information .p-box__item a {
  color: #675d57;
}
.sc-information .p-box__title {
  padding-bottom: 10px;
  margin-bottom: 12px;
  font-size: 20px;
  text-align: center;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.2);
}
.sc-information .calendar-wrap iframe {
  height: 412px;
}

@media (max-width: 1399px) {
  .sc-information {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .sc-information .container {
    flex-direction: column;
  }
  .sc-information .sc__content {
    width: 100%;
  }
  .sc-information .p-list {
    max-width: none;
  }
}
@media (max-width: 575px) {
  .sc-information {
    padding: 60px 0;
  }
  .sc-information .p-box {
    padding: 0 0.75rem;
  }
  .sc-information .p-box__item {
    padding: 20px;
  }
  .sc-information .sc__content {
    padding: 0;
  }
  .sc-information .p-list__item {
    display: block;
  }
  .sc-information .p-list__item > * {
    padding: 0;
  }
  .sc-information .p-list__label {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  #p-access .c-item__thumb,
  #p-access .c-item2__thumb {
    max-width: none;
  }
}
.access-map__iframe .dnfix__thumb {
  min-height: 300px;
  padding-top: 54%;
}

.service-list .c-item {
  width: 100%;
}
.service-list .c-item a {
  position: relative;
  display: block;
  padding: 16px;
  margin-bottom: 0;
  text-align: center;
  background: rgba(var(--primary-rgb), 0.1);
}
.service-list .c-item a:hover .c-item__thumb {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}
.service-list .c-item a:hover .c-item__title {
  color: var(--secondary);
}
.service-list .c-item__thumb {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 54px;
  padding-right: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.service-list .c-item__thumb .dnfix__thumb {
  max-width: 50px;
  padding-top: 50px;
  margin: 0 auto;
}
.service-list .c-item__meta {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.service-list .c-item__title {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  color: var(--font-body-color);
  word-break: keep-all;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  letter-spacing: 0.1em;
}
.service-list .c-item__title i {
  display: block;
}

@media (max-width: 1199px) {
  .service-list .c-item__thumb {
    width: 50px;
  }
}
@media (max-width: 575px) {
  .service-list .c-item a {
    padding: 10px;
  }
  .service-list .c-item__thumb {
    width: 46px;
    margin-bottom: 0;
  }
  .service-list .c-item__thumb .dnfix__thumb {
    padding-top: 46px;
  }
  .service-list .c-item__title {
    font-size: 15px;
    line-height: 24px;
  }
}
.service-subjects__item.box-style--left {
  --box-color: var(--primary);
  --box-color-rgb: var(--primary-rgb);
  --box-color-reverse: var(--secondary);
  --icon-color: var(--primary);
  --icon-color-rgb: var(--primary-rgb);
  --read-more-color: var(--primary);
}
.service-subjects__item.box-style--right {
  --box-color: var(--secondary);
  --box-color-rgb: var(--secondary-rgb);
  --box-color-reverse: var(--primary);
  --icon-color: var(--secondary);
  --icon-color-rgb: var(--secondary-rgb);
  --read-more-color: var(--secondary);
}

.services-ads {
  padding: 160px 0 200px;
  background: rgba(var(--secondary-rgb), 0.2);
}
.services-ads .c-item__thumb {
  padding-top: 130px;
}
.services-ads .box-style__header {
  padding: 0;
  margin-bottom: 80px;
}

@media (max-width: 1199px) {
  .services-ads {
    padding: 100px 0 120px;
  }
}
@media (max-width: 575px) {
  .services-ads .box-style__header {
    margin-bottom: 40px;
  }
}
#p-facilities .page-content {
  overflow: hidden;
}
#p-facilities .slick-slider img {
  width: 100%;
}
#p-facilities .p-slider {
  --image-height-ratio: 0.7;
  --x-padding: 50px;
  container: slider/inline-size;
  max-width: 55vw;
  margin: 120px auto 0;
}
#p-facilities .p-slider .slick-list {
  overflow: visible;
}
#p-facilities .p-slider .slick-next,
#p-facilities .p-slider .slick-prev {
  z-index: 1;
  width: 22px;
  height: 44px;
}
#p-facilities .p-slider .slick-next::before,
#p-facilities .p-slider .slick-prev::before {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
#p-facilities .p-slider .slick-next {
  right: 10px;
}
#p-facilities .p-slider .slick-next::before {
  background-image: url("../images/icon_angle-right-slick.svg");
}
#p-facilities .p-slider .slick-prev {
  left: 10px;
}
#p-facilities .p-slider .slick-prev::before {
  background-image: url("../images/icon_angle-left-slick.svg");
}
#p-facilities .p-slider__list {
  opacity: 0;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}
#p-facilities .p-slider__list.slick-initialized {
  opacity: 1;
}
#p-facilities .p-slider__thumb {
  position: relative;
  aspect-ratio: 1/var(--image-height-ratio);
  background-color: rgba(255, 255, 255, 0.01);
}
#p-facilities .p-slider__thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}
#p-facilities .p-slider__thumb img:is(.slick-center *) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  -webkit-transform: scale(1);
  transform: scale(1);
}
#p-facilities .p-slider__meta {
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}
#p-facilities .p-slider__meta:is(.slick-center *) {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
#p-facilities .p-slider__title {
  margin-top: 30px;
  font-size: 2.2rem;
  text-align: center;
}
#p-facilities .p-slider__excerpt {
  margin-top: 10px;
}
#p-facilities .p-thumbnail {
  max-width: 470px;
  padding-top: 100px;
  margin: 60px auto 0;
}
#p-facilities .p-thumbnail .slick-list {
  overflow: visible;
}
#p-facilities .p-thumbnail .slick-slide img {
  opacity: 0.4;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#p-facilities .p-thumbnail .slick-slide.is-active-next img, #p-facilities .p-thumbnail .slick-slide.slick-current img {
  opacity: 1;
}
#p-facilities .p-thumbnail__item {
  padding: 0 30px;
}

@media (max-width: 767px) {
  .facilities-clinic.box-style__inner {
    padding: 0 0 100px;
  }
}
@media (max-width: 575px) {
  .facilities-clinic {
    padding: 0 0 30px;
  }
  .facilities-clinic.box-style__inner {
    padding: 40px 0 0;
  }
}
@media (max-width: 991px) {
  #p-facilities .p-slider {
    max-width: 100%;
    margin: 60px auto 0;
  }
}
@media (min-width: 576px) {
  #p-facilities .p-slider .slick-next,
  #p-facilities .p-slider .slick-prev {
    top: calc((100cqw - var(--x-padding) * 2) * var(--image-height-ratio) / 2);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@media (max-width: 575px) {
  #p-facilities .p-slider .slick-next,
  #p-facilities .p-slider .slick-prev {
    top: calc((100cqw - var(--x-padding) * 2) * var(--image-height-ratio));
    width: 16.5px;
    height: 33px;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@media (max-width: 575px) {
  #p-facilities .p-slider__title {
    font-size: 1.4rem;
  }
}
@media (max-width: 575px) {
  #p-facilities .p-slider__excerpt {
    font-size: 0.8rem;
  }
}
@media (max-width: 575px) {
  #p-facilities .p-thumbnail {
    max-width: 220px;
    padding-top: 0;
    padding-bottom: 40px;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  #p-facilities .p-thumbnail__item {
    padding: 0 10px;
  }
}
@media (max-width: 575px) {
  #p-equipment .c-item2__thumb {
    max-width: none;
  }
}
.staff-greeting {
  position: relative;
  padding: 60px 0 100px;
  margin-bottom: 0;
}
.staff-greeting.-s2 {
  padding: 100px 0 180px;
}
.staff-greeting .sc__title {
  padding-top: 20px;
  margin-bottom: 30px;
  font-size: 24px;
  line-height: 42px;
  color: var(--primary);
  letter-spacing: 0.1em;
}
.staff-greeting .sc__excerpt {
  font-size: 18px;
  line-height: 38px;
}
.staff-greeting .sc__excerpt p:not(:last-child) {
  margin-bottom: 40px;
}
.staff-greeting .sc__thumb {
  margin-bottom: 60px;
}
.staff-greeting .sc__thumb .dnfix__thumb {
  padding-top: 124%;
}
.staff-greeting .el__ruby {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 18px;
}
.staff-greeting ruby {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 35px;
  line-height: 1.25;
}
.staff-greeting ruby::before {
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  content: attr(data-ruby);
  letter-spacing: 0.38em;
}
.staff-greeting ruby rt {
  display: none;
}

@media (min-width: 992px) {
  .staff-greeting .el__ruby {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
@media (max-width: 991px) {
  .staff-greeting.-s2 {
    padding: 40px 0 100px;
  }
  .staff-greeting .sc__thumb {
    max-width: 400px;
    margin: 0 auto 60px;
  }
}
@media (max-width: 767px) {
  .staff-greeting .sc__title {
    font-size: 26px;
  }
}
@media (max-width: 575px) {
  .staff-greeting .sc__thumb {
    max-width: 300px;
    margin: 0 auto 60px;
  }
}
.blog__wrap {
  position: relative;
  padding-bottom: 80px;
}

.archive-item {
  position: relative;
  color: var(--color-header-sub);
}

.archive-item__title {
  margin: 0 0 20px;
  font-size: 20px;
  line-height: 1.6;
}
.archive-item__title a {
  color: var(--font-body-color);
}

.archive-item:not(:last-child) {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e4e4e4;
}

.archive-item__thumb {
  position: relative;
  overflow: hidden;
}

.archive-item__option .-date {
  display: inline-block;
  padding: 6px 20px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 2px;
  border-bottom: 1px solid #646464;
}
.archive-item__option .-category {
  padding: 6px 20px;
  font-size: 16px;
  line-height: normal;
  color: var(--font-body-color);
  background-color: rgba(var(--primary-rgb), 0.1);
}

.m-single_catch {
  margin-bottom: 50px;
  text-align: center;
}

/* Widget */
/* widget */
.sidebar.-sticky {
  position: sticky;
  top: 120px;
}

.widget {
  padding: 30px 20px;
  background-color: rgba(var(--primary-rgb), 0.1);
}
.widget:not(:last-child) {
  margin-bottom: 40px;
}
.widget .widget__title {
  font-size: 26px;
  line-height: normal;
}
.widget .ul-list a {
  display: block;
  padding: 10px 20px;
  padding-right: 2.5rem;
  color: var(--font-body-color);
  border-bottom: 1px solid #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.widget .ul-list a:hover {
  color: #000;
  background-color: rgba(var(--primary-rgb), 0.2);
}

/*
======================================
[ Editor Style ]
======================================
*/
.entry-content p,
.entry-content ul,
.entry-content blockquote,
.entry-content div {
  margin-bottom: 1.25rem;
}
.entry-content .aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.entry-content img,
.entry-content figure.wp-caption {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.entry-content img + img {
  margin-bottom: 1rem;
}
.entry-content address p {
  margin-bottom: 5px;
}
.entry-content a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.entry-content a:hover {
  color: var(--primary);
}
.entry-content figcaption {
  width: 100%;
  padding: 10px 0 0;
  font-style: italic;
  text-align: center;
}
.entry-content img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}
.entry-content img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}
.entry-content img.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.entry-content ol {
  padding-left: 20px;
}
.entry-content ul {
  padding-left: 20px;
  list-style-type: disc;
}
.entry-content::after {
  display: table;
  clear: both;
  content: "";
}
.entry-content table {
  width: 100%;
  margin-bottom: 1rem;
}
.entry-content table td,
.entry-content table th {
  border: 1px solid #737476;
}
.entry-content table td,
.entry-content table th {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #737476;
}
.entry-content blockquote {
  padding: 24px 32px;
  margin-top: 16px;
  color: #000;
  background: rgba(245, 136, 31, 0.8);
  border-radius: 4px;
  -webkit-box-shadow: inset 3px 0 0 #f5881f;
  box-shadow: inset 3px 0 0 #f5881f;
}
.entry-content blockquote p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .entry-content blockquote {
    padding: 48px 32px;
  }
}
.m-single_option {
  display: -webkit-box;
  display: flexbox;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.m-single_category {
  padding: 6px 30px;
  background-color: var(--font-body-color);
}
.m-single_category span {
  display: -webkit-box;
  display: flexbox;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.m-single_date {
  display: inline-block;
  border-bottom: 1px solid #646464;
}
.m-single_date span {
  display: inline-block;
  padding: 5px 20px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2px;
}

.entry-title {
  margin-bottom: 2rem;
  font-size: 30px;
}

.entry-content .youtube {
  position: relative;
  width: 100%;
  max-width: 960px;
  padding-top: 45.75%;
  margin-right: auto;
  margin-left: auto;
}
.entry-content .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.entry-content .googlemap {
  position: relative;
  max-width: 960px;
  height: 0;
  padding-bottom: 45.75%;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
}
.entry-content .googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .entry-title {
    font-size: 26px;
  }
}
@media (max-width: 575px) {
  .archive-item__title {
    font-size: 16px;
  }
  .archive-item__option .-category {
    padding: 6px 10px 1px;
    margin-left: auto;
  }
  .archive-item__option .-date {
    padding: 6px 10px;
    font-size: 12px;
  }
  .m-single_category {
    padding: 5px 10px;
  }
  .m-single_category span {
    font-size: 12px;
  }
  .m-single_date span {
    padding: 5px 10px;
    font-size: 12px;
  }
}
.pattern__block {
  padding: 140px 0;
}
.pattern__block.is-wall-intro {
  position: relative;
  z-index: 0;
  margin-top: -30px;
}
.pattern__block.is-wall-intro::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 60%;
  pointer-events: none;
  content: "";
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.pattern__block.is-wall02 {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}
.pattern__block.is-wall02::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 60%;
  pointer-events: none;
  content: "";
}
.pattern__block.is-wall02 .pattern__heading__sub {
  opacity: 0.1;
}
.pattern__block.is-wall01 {
  position: relative;
  z-index: 0;
  background-color: #fff8f2;
}
.pattern__block.is-wall01::after {
  bottom: -20px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media (max-width: 767px) {
  .pattern__block {
    padding: 100px 0;
  }
}
.pattern__heading {
  position: relative;
  font-family: var(--fontfamily02);
  font-size: 36px;
}

.pattern__heading__sub {
  position: absolute;
  top: -70px;
  left: 50%;
  font-family: var(--fontfamily03);
  font-size: 90px;
  letter-spacing: 0.001em;
  opacity: 0.05;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .pattern__heading {
    font-size: 28px;
  }
  .pattern__heading__sub {
    font-size: 70px;
  }
}
.pattern__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-line-pack: center;
  align-content: center;
}

@media (max-width: 767px) {
  .pattern__list {
    padding: 0 10px;
  }
}
.pattern__list__check,
.pattern__list__dotted {
  margin-top: 20px;
}

.pattern__list__check li,
.pattern__list__dotted li {
  position: relative;
  padding-left: 20px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: bold;
  color: var(--color08);
}

.pattern__list__check li::before,
.pattern__list__dotted li::before {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: bold;
  color: var(--color08);
}

.pattern__list__check li::before {
  content: "✔";
}

.pattern__list__dotted li::before {
  content: "・";
}

.pattern__cont__title {
  padding-bottom: 15px;
  margin-top: 20px;
  font-family: var(--fontfamily02);
  font-size: 30px;
  color: var(--color08);
  border-bottom: 1px solid #958f68;
}

@media (max-width: 991px) {
  .pattern__cont__title {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .pattern__cont__title {
    font-size: 22px;
  }
}
.pattern__cont__text {
  margin-top: 20px;
  font-size: 18px;
  line-height: 2;
}

@media (max-width: 1399px) {
  .pattern__cont__text {
    font-size: 16px;
  }
}
.pattern__btn {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .pattern__btn {
    text-align: center;
  }
}
.pattern__table table td {
  padding: 20px 10px;
  border-bottom: 1px dotted #958f68;
}
.pattern__table table th {
  padding: 20px 10px;
  border-bottom: 1px dotted #958f68;
  font-size: 20px;
}
.pattern__table table tbody {
  border-bottom: 1px solid #000;
}
.pattern__table table tbody th {
  width: 20%;
  white-space: nowrap;
}
.pattern__table table tbody td {
  font-size: 18px;
}

@media (max-width: 767px) {
  .pattern__table table td,
  .pattern__table table th {
    padding: 10px 5px;
  }
}
@media (max-width: 1399px) {
  .pattern__table table tbody td {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .pattern__table table {
    min-width: 800px;
  }
}
@media (max-width: 767px) {
  .pattern__table {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
}
.pattern__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.pattern__nav ul li {
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  padding: 10px;
}
.pattern__nav ul li .btn-readmore {
  min-width: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.pattern__nav ul li .btn-readmore:hover {
  opacity: 0.7;
}
.pattern__nav ul li .btn-readmore:hover::before, .pattern__nav ul li .btn-readmore:hover::after {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.pattern__nav ul li .btn-readmore:hover::before {
  top: 0;
  left: 0;
}
.pattern__nav ul li .btn-readmore:hover::after {
  right: 0;
  bottom: 0;
}

@media (max-width: 1199px) {
  .pattern__nav ul li {
    -ms-flex-preferred-size: 33%;
    flex-basis: 33%;
  }
}
@media (max-width: 767px) {
  .pattern__nav ul li {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    padding: 5px;
  }
}
.pattern__block__2 .pattern__cont {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  padding: 40px;
  margin-top: 60px;
  background-color: #fff;
}

@media (max-width: 767px) {
  .pattern__block__2 .pattern__cont {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .pattern__block__2 .pattern__list {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .pattern__block__3 .pattern__cont {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .pattern__block__4 .pattern__pic {
    margin-top: 40px;
  }
}
.pattern__block__5 .pattern__block__wrap {
  counter-increment: cnt;
}
.pattern__block__5 .pattern__block__wrap + .pattern__block__wrap {
  margin-top: 50px;
}
.pattern__block__5 .pattern__pic {
  position: relative;
  -ms-flex-preferred-size: 46%;
  flex-basis: 46%;
}
.pattern__block__5 .pattern__pic::after, .pattern__block__5 .pattern__pic::before {
  position: absolute;
  top: -40px;
  left: -12px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  color: #fff;
}
.pattern__block__5 .pattern__pic::after {
  padding-top: 20px;
  font-family: var(--fontfamily03);
  font-size: 16px;
  letter-spacing: 2px;
  content: "Step.";
}
.pattern__block__5 .pattern__pic::before {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 26px;
  font-family: var(--fontfamily02);
  font-size: 36px;
  content: counter(cnt);
  background: #8b8568;
  border-radius: 50%;
  opacity: 1;
}
.pattern__block__5 .pattern__pic:not(:first-of-type) {
  margin-top: 80px;
}
.pattern__block__5 .pattern__cont {
  -ms-flex-preferred-size: 46%;
  flex-basis: 46%;
}

@media (max-width: 767px) {
  .pattern__block__5 .pattern__pic::after, .pattern__block__5 .pattern__pic::before {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 767px) {
  .pattern__block__5 .pattern__pic::after {
    padding-top: 6px;
    font-size: 10px;
  }
}
@media (max-width: 767px) {
  .pattern__block__5 .pattern__pic::before {
    padding-top: 14px;
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .pattern__block__5 .pattern__pic {
    display: block;
  }
  .pattern__block__5 .pattern__pic:not(:first-of-type) {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .pattern__block__5 .pattern__cont {
    margin-top: 40px;
  }
}
.pattern__block__7 .pattern__block__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.pattern__block__7 .pattern__block__wrap:not(:first-of-type) {
  margin-top: 80px;
}
.pattern__block__7 .pattern__pic {
  -ms-flex-preferred-size: 36%;
  flex-basis: 36%;
}
.pattern__block__7 .pattern__cont {
  -ms-flex-preferred-size: 56%;
  flex-basis: 56%;
}

@media (max-width: 767px) {
  .pattern__block__7 .pattern__block__wrap:not(:first-of-type) {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .pattern__block__7 .pattern__block__wrap {
    display: block;
  }
}
@media (max-width: 767px) {
  .pattern__block__7 .pattern__cont {
    margin-top: 40px;
  }
}
.pattern__block__8 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.pattern__block__8::after {
  display: block;
  width: 30%;
  content: "";
}
.pattern__block__8 .pattern__block__wrap {
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
}
.pattern__block__8 .pattern__cont__title {
  font-size: 22px;
}

@media (max-width: 767px) {
  .pattern__block__8 {
    display: block;
  }
}
@media (max-width: 767px) {
  .pattern__block__8 .pattern__block__wrap:not(:first-of-type) {
    margin-top: 60px;
  }
}
.pattern__block__9 .pattern__block__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.pattern__block__9 .pattern__pic {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
.pattern__block__9 .pattern__pic__main {
  position: relative;
}
.pattern__block__9 .pattern__pic__sub {
  position: absolute;
  right: -80px;
  bottom: -30px;
  max-width: 40%;
}
.pattern__block__9 .pattern__cont {
  -ms-flex-preferred-size: 40%;
  flex-basis: 40%;
}

@media (max-width: 767px) {
  .pattern__block__9 .pattern__block__wrap {
    display: block;
  }
}
@media (max-width: 991px) {
  .pattern__block__9 .pattern__pic__sub {
    right: -50px;
  }
}
@media (max-width: 767px) {
  .pattern__block__9 .pattern__pic__sub {
    right: 0;
    bottom: -60px;
  }
}
@media (max-width: 767px) {
  .pattern__block__9 .pattern__cont {
    margin-top: 80px;
  }
}
.pattern__block__10 .pattern__block__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.pattern__block__10 .pattern__pic {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.pattern__block__10 .pattern__pic__main {
  position: relative;
}
.pattern__block__10 .pattern__pic__sub {
  position: absolute;
  bottom: -30px;
  left: -80px;
  max-width: 40%;
}
.pattern__block__10 .pattern__cont {
  -ms-flex-preferred-size: 40%;
  flex-basis: 40%;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

@media (max-width: 767px) {
  .pattern__block__10 .pattern__block__wrap {
    display: block;
  }
}
@media (max-width: 991px) {
  .pattern__block__10 .pattern__pic__sub {
    left: -50px;
  }
}
@media (max-width: 767px) {
  .pattern__block__10 .pattern__pic__sub {
    bottom: -60px;
    left: 0;
  }
}
@media (max-width: 767px) {
  .pattern__block__10 .pattern__cont {
    margin-top: 80px;
  }
}
.pattern__block__11 .pattern__list__check {
  display: inline-block;
}
.pattern__block__11 .pattern__cont {
  max-width: 1000px;
  padding: 40px;
  margin: 0 auto;
  background-color: #fff;
}

@media (max-width: 1199px) {
  .pattern__block__11 .pattern__cont {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .pattern__block__11 .pattern__cont {
    padding: 20px;
  }
}

/* 260210 */
#volume-toggle {
  position: absolute;
  z-index: 3;
  left: 10px;
  bottom: 60px;
  display: block;
  width: 60px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
#volume-toggle {
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 5, 0.4));
}
@media (max-width: 767px) {
  #volume-toggle {
    left: 0;
    bottom: 5px;
  }
}
/*# sourceMappingURL=main.css.map */