@import url("https://fonts.googleapis.com/css2?family=Cormorant&family=Inter:wght@500&family=Jost:wght@100;200;300;400;500;600;700;800;900&family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap");
*,
*::after,
*::before {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  font-size: 62.5%;
  overflow-x: hidden !important;
}
@media (max-width: 768px) {
  html {
    font-size: min(62.5%, 2.68vw);
  }
}

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

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

svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  max-width: 100%;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

td,
th {
  border: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
}

button {
  background: transparent;
  border: 0;
  outline: none;
  padding: 0;
  font-family: inherit;
  color: inherit;
}

div[role=button],
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}
div[role=button]:hover,
a:hover {
  opacity: 0.6;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  color: #1d1d1d;
  font-weight: normal;
}

.sp {
  display: none;
}
@media (max-width: 768px) {
  .sp {
    display: initial;
  }
}

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

.lg-sp {
  display: none!important;
}
@media (max-width: 1080px) {
  .lg-sp {
    display: initial!important;
  }
}

.lg-pc {
  display: inline-block!important;
}
@media (max-width: 1080px) {
  .lg-pc {
    display: none!important;
  }
}

.xl-sp {
  display: none;
}
@media (max-width: 1200px) {
  .xl-sp {
    display: initial;
  }
}

.xl-pc {
  display: initial;
}
@media (max-width: 1200px) {
  .xl-pc {
    display: none;
  }
}

.container {
  --gap-x: 4rem;
  --max-width: 1200px;
  width: min(100% - var(--gap-x), var(--max-width));
  margin: 0 auto;
}
@media (max-width: 768px) {
  .container {
    --gap-x: 4rem;
  }
}

.animation-left, .animation-up, .animation-right {
  opacity: 0;
  transform: translateX(10rem);
  pointer-events: none;
  visibility: hidden;
  transition: all 2s;
  filter: blur(0.5rem);
}
.animation-left.ani-active, .animation-up.ani-active, .animation-right.ani-active {
  opacity: 1;
  filter: blur(0);
  transform: translate(0rem);
  pointer-events: all;
  visibility: visible;
}
.animation-left.delay, .animation-up.delay, .animation-right.delay {
  transition-delay: 0.8s;
}
.animation-left {
  transform: translateX(-10rem);
}
.animation-up {
  transform: translateY(5rem);
}
@media (max-width: 768px) {
  .animation-right {
    transform: translateX(5rem);
  }
}

.anchor {
  height: 0;
  position: relative;
}
.anchor__inner {
  position: absolute;
  top: -10rem;
}
@media (max-width: 768px) {
  .anchor__inner {
    top: -6rem;
  }
}

.primary-color {
  color: #ec6b2e;
}

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

.title {
  color: var(--txt-color, #ec6b2e);
  text-align: center;
}
.title h2 {
  font-size: clamp(3.6rem, calc((50 / 768) * 100 * 1vw), 5rem);
  font-family: "Jost", sans-serif;
  font-weight: 500;
  line-height: normal;
}
.title p {
  font-size: clamp(1.6rem, calc((20 / 768) * 100 * 1vw), 2rem);
  font-weight: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: normal;
}

.dot {
  width: var(--dot-width, 1.5rem);
  height: var(--dot-width, 1.5rem);
  aspect-ratio: 1;
  background-color: #ec6b2e;
  border-radius: 100%;
  display: inline-block;
  flex-shrink: 0;
}

.btn-primary {
  max-width: 50rem;
  width: 100%;
  height: 7rem;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ec6b2e;
  color: white;
  transition: all;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: normal;
  border-radius: 3.5rem;
  outline: 0.1rem solid #ec6b2e;
  transition: 0.3s all;
}
.btn-primary:hover {
  background-color: white;
  color: #ec6b2e;
  opacity: 1;
}

.section {
  padding: var(--p-y, 10rem) 0;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 99;
  transition: all 0.3s;
}
.header .container {
  --max-width: 1440px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 500px) {
  .header .container {
    --gap-x: 2rem;
  }
}
@media (max-width: 768px) {
  .header .logo {
    width: 35%;
  }
}
.header .menu-box-btn {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
@media (max-width: 768px) {
  .header .menu-box-btn .menu-social-btn {
    display: none;
  }
}
.header .menu-box-btn .menu-social-btn .btn-primary {
  border-radius: 2.5rem;
  padding: 1.4rem 3.5rem;
  height: 5rem;
  gap: 1.4rem;
  line-height: 1;
}
.header.active {
  background-color: white;
}

.menu-social-btn .btn-primary {
  border-radius: 2.5rem;
  padding: 1.4rem 3.5rem;
  height: 5rem;
  gap: 1.4rem;
}
.menu-social-btn .btn-primary .icon {
  position: relative;
}
.menu-social-btn .btn-primary .icon img {
  transition: 0.3s all;
}
.menu-social-btn .btn-primary .icon img:last-child {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.menu-social-btn .btn-primary:hover .icon img:first-child {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.menu-social-btn .btn-primary:hover .icon img:last-child {
  opacity: 1;
  position: unset;
  inset: unset;
  z-index: 1;
  animation: toggle 1s infinite;
}
@keyframes toggle {
  0% {
    transform: translateY(-1rem);
  }
  100% {
    transform: translateY(0);
  }
}

.open-menu .menu-nav {
  visibility: visible;
  top: 0;
  filter: blur(0);
}
.open-menu .header .logo {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media (max-width: 768px) {
  .open-menu .header .logo {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}
.open-menu .header .menu-box-btn .menu-social-btn {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.open-menu .header.active {
  background-color: unset;
  box-shadow: unset;
}
.open-menu .menu-bar {
  --btn-color: white;
}
@media (max-width: 768px) {
  .open-menu .menu-bar {
    --btn-color: #ec6b2e;
  }
}
.open-menu .menu-bar .menu-btn > span {
  transform: rotate(-45deg);
}
.open-menu .menu-bar .menu-btn > span::before {
  top: 0;
  transform: rotate(0);
  opacity: 0;
}
.open-menu .menu-bar .menu-btn > span::after {
  top: 0;
  transform: rotate(90deg);
}
.open-menu .menu-bar .menu-list {
  visibility: visible;
  right: 0;
}
.open-menu .menu-nav .menu-item {
  opacity: 1;
  transform: scaleX(1) translateX(0);
  transition: all 0.3s ease-out;
  transition-delay: 0.1s;
}
.open-menu .menu-nav .menu-item:nth-child(1) {
  transition-delay: 0.1s;
}
.open-menu .menu-nav .menu-item:nth-child(2) {
  transition-delay: 0.2s;
}
.open-menu .menu-nav .menu-item:nth-child(3) {
  transition-delay: 0.3s;
}
.open-menu .menu-nav .menu-item:nth-child(4) {
  transition-delay: 0.4s;
}
.open-menu .menu-nav .menu-item:nth-child(5) {
  transition-delay: 0.5s;
}
.open-menu .menu-nav .menu-item:nth-child(6) {
  transition-delay: 0.6s;
}
.open-menu .menu-nav .menu-item:nth-child(7) {
  transition-delay: 0.7s;
}
.open-menu .menu-nav .menu-item:nth-child(8) {
  transition-delay: 0.8s;
}
.open-menu .menu-nav .menu-item:nth-child(9) {
  transition-delay: 0.9s;
}
.open-menu .menu-nav .menu-item:nth-child(10) {
  transition-delay: 1s;
}

.menu-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  --btn-color: #ec6b2e;
}
.menu-bar .menu-bar-wrap {
  display: grid;
}
.menu-bar .menu-list {
  position: fixed;
}
.menu-bar .text {
  text-transform: uppercase;
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--btn-color);
}
.menu-bar .menu-btn {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  cursor: pointer;
  z-index: 1;
}
@media (max-width: 768px) {
  .menu-bar .menu-btn {
    width: 2rem;
    height: 2rem;
  }
}
.menu-bar .menu-btn > span,
.menu-bar .menu-btn > span::before,
.menu-bar .menu-btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 0.2rem;
  background-color: var(--btn-color);
  transition-duration: 0.25s;
  border-radius: 0.2rem;
}
.menu-bar .menu-btn > span::before {
  content: "";
  top: -0.6rem;
}
.menu-bar .menu-btn > span::after {
  content: "";
  top: 0.6rem;
}

.menu-nav {
  display: block;
  position: fixed;
  visibility: hidden;
  z-index: 20;
  top: -100%;
  right: 0;
  transform-origin: right top;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  filter: blur(1rem);
  transform-origin: top right;
  background: url(../images/bg.jpg) no-repeat center center/cover;
}
.menu-nav .menu-nav-wrap {
  display: flex;
  height: 100%;
}
.menu-nav .menu-nav-wrap .menu-nav-left {
  width: 60%;
  display: grid;
  place-content: center;
}
@media (max-width: 768px) {
  .menu-nav .menu-nav-wrap .menu-nav-left {
    width: min(27rem, 100%);
    margin: 0 auto;
  }
}
.menu-nav .menu-nav-wrap .menu-nav-right {
  width: 40%;
  display: grid;
  place-content: center;
  background: #E3A48B;
}
@media (max-width: 768px) {
  .menu-nav .menu-nav-wrap .menu-nav-right {
    display: none;
  }
}
.menu-nav .menu-nav-wrap .menu-nav-right .list-social {
  margin-top: 3rem;
  justify-content: center;
}
.menu-nav .menu-nav-wrap .menu-social-btn {
  margin-top: 6rem;
  min-width: 33rem;
}
@media (max-width: 768px) {
  .menu-nav .menu-nav-wrap .menu-social-btn {
    min-width: auto;
    margin-top: 5rem;
  }
}
.menu-nav .menu-list {
  display: grid;
  row-gap: 2rem;
  padding: 0 1rem;
}
.menu-nav .menu-item {
  font-size: clamp(1.4rem, calc((16 / 768) * 100 * 1vw), 1.6rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ec6b2e;
  transition: 0.4s all;
  transform: scaleX(0) translateX(-26rem);
  opacity: 0;
}

.banner {
  background: url(../images/banner-top-bg.jpg) no-repeat center center/cover;
  padding-bottom: 8rem;
}
.banner .container {
  position: relative;
}
.banner .container .banner-top {
  padding-top: clamp(6rem, calc((200 / 1440) * 100 * 1vw), 20rem);
}
.banner .container .banner-top .banner-top-left {
  position: relative;
  z-index: 2;
}
.banner .container .banner-top .banner-top-left .left-texts .left-texts-top {
  position: relative;
  display: inline-block;
}
@media (max-width: 768px) {
  .banner .container .banner-top .banner-top-left .left-texts .left-texts-top {
    display: flex;
    align-items: end;
    gap: 2.6rem;
  }
}
@media (max-width: 768px) and (max-width: 425px) {
  .banner .container .banner-top .banner-top-left .left-texts .left-texts-top {
    justify-content: space-between;
    gap: 0;
  }
}
.banner .container .banner-top .banner-top-left .left-texts .left-texts-top .text {
  display: inline-flex;
  padding: 0.5rem 1.3rem;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
  background-color: white;
}
@media (max-width: 768px) {
  .banner .container .banner-top .banner-top-left .left-texts .left-texts-top .text {
    padding: 0.3rem 0.8rem;
  }
}
.banner .container .banner-top .banner-top-left .left-texts .left-texts-top .text p {
  font-size: clamp(2rem, calc((32 / 1440) * 100 * 1vw), 3.2rem);
  font-weight: 700;
  line-height: normal;
  color: #ec6b2e;
}
@media (max-width: 768px) {
  .banner .container .banner-top .banner-top-left .left-texts .left-texts-top .text p {
    font-size: clamp(1.9rem, calc((32 / 768) * 100 * 1vw), 3.2rem);
  }
}
.banner .container .banner-top .banner-top-left .left-texts .left-texts-top .left-texts-circle {
  width: clamp(8.2rem, calc((130 / 1440) * 100 * 1vw), 13rem);
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  background-color: #ec6b2e;
  border-radius: 100%;
  position: absolute;
  right: -2.5rem;
  top: -1.5rem;
  transform: translateX(100%);
}
@media (max-width: 768px) {
  .banner .container .banner-top .banner-top-left .left-texts .left-texts-top .left-texts-circle {
    width: clamp(8.2rem, calc((130 / 768) * 100 * 1vw), 13rem);
    position: unset;
    transform: unset;
  }
}
.banner .container .banner-top .banner-top-left .left-texts .left-texts-top .left-texts-circle p {
  font-size: clamp(1.1rem, calc((18 / 1200) * 100 * 1vw), 1.8rem);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: white;
}
@media (max-width: 768px) {
  .banner .container .banner-top .banner-top-left .left-texts .left-texts-top .left-texts-circle p {
    font-size: clamp(1.18rem, calc((15 / 768) * 100 * 1vw), 1.5rem);
  }
}
.banner .container .banner-top .banner-top-left .left-texts .left-texts-bottom {
  margin-top: clamp(2.5rem, calc((56 / 1440) * 100 * 1vw), 5.6rem);
}
.banner .container .banner-top .banner-top-left .left-texts .left-texts-bottom p {
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.01em;
  font-size: clamp(2.5rem, calc((51 / 1440) * 100 * 1vw), 5.1rem);
  color: #ec6b2e;
}
@media (max-width: 768px) {
  .banner .container .banner-top .banner-top-left .left-texts .left-texts-bottom p {
    font-size: clamp(2.4rem, calc((51 / 820) * 100 * 1vw), 5.1rem);
  }
}
.banner .container .banner-top .banner-top-left .left-texts .left-texts-bottom p .text-xl {
  font-size: clamp(3rem, calc((60 / 1440) * 100 * 1vw), 6rem);
  display: inline-block;
}
@media (max-width: 768px) {
  .banner .container .banner-top .banner-top-left .left-texts .left-texts-bottom p .text-xl {
    font-size: clamp(3rem, calc((60 / 768) * 100 * 1vw), 6rem);
  }
}
.banner .container .banner-top .banner-top-left .left-texts .left-texts-bottom p .text-emphasis {
  position: relative;
}
.banner .container .banner-top .banner-top-left .left-texts .left-texts-bottom p .text-emphasis::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 0.16em;
  border-radius: 100%;
  aspect-ratio: 1;
  background-color: #ec6b2e;
}
.banner .container .banner-top .banner-top-left .left-texts .left-texts-bottom p span {
  letter-spacing: 0.01em;
}
.banner .container .banner-top .banner-top-right {
  position: absolute;
  width: min(50vw, 60%);
  aspect-ratio: 1.8;
  top: 8rem;
  right: 0;
  z-index: 1;
}
@media (max-width: 768px) {
  .banner .container .banner-top .banner-top-right {
    position: unset;
    width: 100%;
  }
}
.banner .container .banner-top .banner-top-right .right-imgs {
  height: 100%;
}
@media (max-width: 768px) {
  .banner .container .banner-top .banner-top-right .right-imgs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    width: 100%;
    margin-top: 2.5rem;
    height: auto;
  }
}
@media (max-width: 1440px) {
  .banner .container .banner-top .banner-top-right .right-imgs img {
    width: clamp(11rem, calc((240 / 1440) * 100 * 1vw), 24rem);
  }
}
@media (max-width: 768px) {
  .banner .container .banner-top .banner-top-right .right-imgs img {
    aspect-ratio: 1;
    width: 100%;
    object-fit: cover;
    border-radius: 0.6rem;
  }
}
.banner .container .banner-top .banner-top-right .right-imgs img:nth-child(2) {
  position: absolute;
  left: 29%;
  top: 25%;
}
@media (max-width: 768px) {
  .banner .container .banner-top .banner-top-right .right-imgs img:nth-child(2) {
    position: unset;
    margin-top: 3rem;
  }
}
.banner .container .banner-top .banner-top-right .right-imgs img:nth-child(3) {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 768px) {
  .banner .container .banner-top .banner-top-right .right-imgs img:nth-child(3) {
    position: unset;
  }
}
@media (max-width: 1440px) {
  .banner .container .banner-top .banner-top-right .right-imgs img:nth-child(3) {
    width: clamp(11rem, calc((260 / 1440) * 100 * 1vw), 26rem);
  }
}
@media (max-width: 768px) {
  .banner .container .banner-top .banner-top-right .right-imgs img:nth-child(3) {
    width: 100%;
    margin-top: 6rem;
  }
}
.banner .container .banner-top .banner-top-right .right-texts {
  position: absolute;
  top: 25%;
  right: 0;
}
@media (max-width: 1300px) {
  .banner .container .banner-top .banner-top-right .right-texts {
    top: clamp(10%, 6vw, 22%);
  }
}
@media (max-width: 768px) {
  .banner .container .banner-top .banner-top-right .right-texts {
    position: unset;
    margin-top: 1rem;
  }
}
.banner .container .banner-top .banner-top-right .right-texts p {
  text-align: right;
  font-size: clamp(1rem, calc((12 / 768) * 100 * 1vw), 1.2rem);
  line-height: 1.6;
  font-style: italic;
  font-family: "Cormorant", serif;
}
.banner .container .banner-top .banner-top-img {
  margin-top: clamp(4rem, calc((60 / 1024) * 100 * 1vw), 6rem);
}
.banner .container .banner-top .banner-top-img img {
  width: 100%;
  border-radius: 3rem;
}
@media (max-width: 768px) {
  .banner .container .banner-top .banner-top-img img {
    border-radius: 2.4rem;
  }
}
.banner .banner-bottom .banner-bottom-title {
  width: min(85rem, 100%);
  margin: 0 auto;
  margin-top: clamp(5rem, calc((100 / 1200) * 100 * 1vw), 10rem);
}
.banner .banner-bottom .banner-bottom-title h3 {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 920px) {
  .banner .banner-bottom .banner-bottom-title h3 {
    flex-wrap: wrap;
    margin-top: 5rem;
    row-gap: 1rem;
  }
}
.banner .banner-bottom .banner-bottom-title h3 p {
  width: 50%;
  font-size: clamp(2.4rem, calc((32 / 1024) * 100 * 1vw), 3.2rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #ec6b2e;
}
@media (max-width: 768px) {
  .banner .banner-bottom .banner-bottom-title h3 p {
    width: 100%;
    text-align: center;
  }
}
.banner .banner-bottom .banner-bottom-title h3 .img {
  width: 50%;
}
@media (max-width: 768px) {
  .banner .banner-bottom .banner-bottom-title h3 .img {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .banner .banner-bottom .banner-bottom-title h3 .img img {
    width: 65%;
  }
}
.banner .banner-bottom .banner-bottom-content .banner-bottom-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(4rem, calc((60 / 1200) * 100 * 1vw), 6rem);
  counter-reset: item;
  margin-top: 9rem;
}
@media (max-width: 1300px) {
  .banner .banner-bottom .banner-bottom-content .banner-bottom-list {
    gap: clamp(2rem, calc((60 / 1600) * 100 * 1vw), 6rem);
  }
}
@media (max-width: 920px) {
  .banner .banner-bottom .banner-bottom-content .banner-bottom-list {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .banner .banner-bottom .banner-bottom-content .banner-bottom-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    margin-top: 8rem;
    row-gap: 7rem;
  }
}
.banner .banner-bottom .banner-bottom-content .banner-bottom-list .item {
  counter-increment: item 1;
  position: relative;
}
.banner .banner-bottom .banner-bottom-content .banner-bottom-list .item::before {
  content: counter(item, decimal-leading-zero);
  font-size: 1.6rem;
  line-height: normal;
  font-weight: 500;
  color: #ec6b2e;
  font-family: "Inter", sans-serif;
  width: 6.2rem;
  aspect-ratio: 62/66;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-40%, -70%);
  display: grid;
  place-content: center;
  border-radius: 100%;
  border: 0.1rem solid #ec6b2e;
}
@media (max-width: 1250px) {
  .banner .banner-bottom .banner-bottom-content .banner-bottom-list .item::before {
    transform: translate(0%, -70%);
  }
}
.banner .banner-bottom .banner-bottom-content .banner-bottom-list .item .item-image img {
  width: 100%;
  border-radius: 1rem;
}
.banner .banner-bottom .banner-bottom-content .banner-bottom-list .item .item-content {
  margin-top: 3rem;
}
.banner .banner-bottom .banner-bottom-content .banner-bottom-list .item .item-content .item-title {
  padding-left: 1.5rem;
  font-size: clamp(1.6rem, calc((20 / 1200) * 100 * 1vw), 2rem);
  font-weight: 700;
  line-height: 1.6;
}
@media (max-width: 1080px) {
  .banner .banner-bottom .banner-bottom-content .banner-bottom-list .item .item-content .item-title {
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  .banner .banner-bottom .banner-bottom-content .banner-bottom-list .item .item-content .item-title {
    font-size: clamp(1.95rem, calc((20 / 768) * 100 * 1vw), 2rem);
  }
}
.banner .banner-bottom .banner-bottom-content .banner-bottom-list .item .item-content .item-text {
  margin-top: 3.2rem;
  font-size: clamp(1.4rem, calc((16 / 1200) * 100 * 1vw), 1.6rem);
  padding: 0 1.5rem;
}
@media (max-width: 1080px) {
  .banner .banner-bottom .banner-bottom-content .banner-bottom-list .item .item-content .item-text {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .banner .banner-bottom .banner-bottom-content .banner-bottom-list .item .item-content .item-text {
    margin-top: 1rem;
    font-size: 1.6rem;
  }
}
.banner .banner-bottom .banner-bottom-footer {
  margin-top: 8rem;
}
.banner .banner-bottom .banner-bottom-footer .container {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .banner .banner-bottom .banner-bottom-footer .container {
    --gap-x: 0;
    margin: 0;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .banner .banner-bottom .banner-bottom-footer {
    margin-top: 4rem;
  }
}
.banner .banner-bottom .banner-bottom-footer p {
  padding: 0.4rem 1rem;
  font-size: clamp(2.4rem, calc((32 / 1200) * 100 * 1vw), 3.2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: normal;
  background-color: #ec6b2e;
  color: white;
  text-align: center;
}
@media (max-width: 768px) {
  .banner .banner-bottom .banner-bottom-footer p {
    width: 100%;
    padding: 2.3rem 2rem;
  }
}

.about {
  --txt-color: white;
  --item-bg: white;
  --item-content-pl: 3.2rem;
  --item-content-pr: 0rem;
  padding: 0;
}
.about .inner {
  background-color: var(--bg-color, #ec6b2e);
  color: var(--txt-color, #ec6b2e);
  padding: 10rem 0;
}
@media (max-width: 768px) {
  .about .inner {
    padding: 6rem 0 8rem 0;
  }
}
.about .swiper-slide {
  height: auto !important;
}
.about .container .content {
  margin-top: clamp(4rem, calc((80 / 768) * 100 * 1vw), 8rem);
}
.about .container .content .subtitle {
  display: flex;
  justify-content: center;
}
.about .container .content .subtitle p {
  display: inline-flex;
  padding: 1rem 3rem;
  justify-content: center;
  align-items: center;
  font-size: var(--about-subtitle-font-size, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 5rem;
  border: 1px solid var(--txt-color);
  line-height: normal;
  text-align: center;
}
@media (max-width: 768px) {
  .about .container .content .subtitle p {
    border-radius: var(--about-subtitle-border-radius-sp, 99.9rem);
    padding: 1rem var(--about-subtitle-p-x, 3.5rem);
  }
}
.about .container .content .about-slide .swiper-pagination-bullet {
  width: auto;
  background-color: unset;
  height: auto;
  --swiper-pagination-bullet-inactive-opacity: 0.4;
  --swiper-pagination-bullet-horizontal-gap: 0;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 768px) {
  .about .container .content .about-slide .swiper-pagination-bullet {
    display: none;
    text-align: center;
  }
  .about .container .content .about-slide .swiper-pagination-bullet.swiper-pagination-bullet-active {
    display: block;
  }
}
.about .container .content .about-slide .about-swiper-control {
  margin-top: 2.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  --control-gap: clamp(2rem, calc((50 / 1024) * 100 * 1vw), 5rem);
  gap: var(--control-gap);
}
@media (max-width: 768px) {
  .about .container .content .about-slide .about-swiper-control {
    justify-content: space-between;
  }
}
.about .container .content .about-slide .about-swiper-control .about-swiper-pagination {
  display: flex;
  width: auto;
  gap: var(--control-gap);
}
.about .container .content .about-slide .about-swiper-control .about-swiper-btn-prev,
.about .container .content .about-slide .about-swiper-control .about-swiper-btn-next {
  cursor: pointer;
  padding: 1rem 0;
}
@media (max-width: 768px) {
  .about .container .content .about-slide .about-swiper-control .about-swiper-btn-prev,
.about .container .content .about-slide .about-swiper-control .about-swiper-btn-next {
    width: 3rem;
  }
}
.about .container .content .about-slide .about-swiper {
  margin-top: clamp(4rem, calc((50 / 768) * 100 * 1vw), 5rem);
}
.about .container .content .about-slide .about-swiper .swiper-wrapper .swiper-slide .item {
  background-color: var(--item-bg);
  border-radius: clamp(2rem, calc((40 / 768) * 100 * 1vw), 4rem);
  padding: clamp(3rem, calc((60 / 768) * 100 * 1vw), 6rem) clamp(2rem, calc((40 / 768) * 100 * 1vw), 4rem);
  display: flex;
  gap: clamp(2.4rem, 3.2vw, 4rem);
  align-items: center;
  height: 100%;
}
@media (max-width: 1080px) {
  .about .container .content .about-slide .about-swiper .swiper-wrapper .swiper-slide .item {
    flex-wrap: wrap;
    align-items: start;
    /*gap: 3rem;*/
	  gap:0;
  }
	.about .item-content{
		order: 3;
	}
	.about .container .content .about-slide .about-swiper .swiper-wrapper .swiper-slide .item .item-content .item-text{
		margin-top: 3rem;
	}
	
}
.about .container .item .item-title {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.1em;
  color: #ec6b2e;
  display: inline-block;
  padding-bottom: 0.8rem;
  border-bottom: 0.2rem solid var(--e-top, #ec6b2e);
}
@media (max-width: 768px) {
  .about .container .item .item-title {
    display: block;
  }
}
.about .container .content .about-slide .about-swiper .swiper-wrapper .swiper-slide .item .item-content .item-text {
  margin-top: clamp(3rem, calc((40 / 768) * 100 * 1vw), 4rem);
}
.about .container .content .about-slide .about-swiper .swiper-wrapper .swiper-slide .item .item-content .item-text .text-list {
  display: grid;
  gap: 2rem;
}
.about .container .content .about-slide .about-swiper .swiper-wrapper .swiper-slide .item .item-content .item-text .text-list .text-item-title p {
  color: #ec6b2e;
  font-size: 2rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.about .container .content .about-slide .about-swiper .swiper-wrapper .swiper-slide .item .item-content .item-text .text-list .text-item-title span {
  font-size: 1.6rem;
  font-family: "Jost", sans-serif;
  width: 2.4rem;
  aspect-ratio: 1;
  display: inline-grid;
  place-content: center;
  line-height: normal;
  background-color: #ec6b2e;
  color: white;
  border-radius: 100rem;
}
.about .container .content .about-slide .about-swiper .swiper-wrapper .swiper-slide .item .item-content .item-text .text-list .text-item-content {
  padding-left: var(--item-content-pl);
  padding-right: var(--item-content-pr);
  font-size: 1.6rem;
  color: #1d1d1d;
  line-height: var(--item-content-line-height, 1.7);
}
.about .container .content .about-slide .about-swiper .swiper-wrapper .swiper-slide .item .item-content .item-text .text-list .text-item-content .primary-color {
  font-weight: 700;
}
.about .container .content .about-slide .about-swiper .swiper-wrapper .swiper-slide .item .item-image {
  flex-shrink: 0;
  max-width: 40%;
}
@media (max-width: 1080px) {
  .about .container .content .about-slide .about-swiper .swiper-wrapper .swiper-slide .item .item-image {
    max-width: 100%;
    display: flex;
    justify-content: center;
    max-width: 76.8rem;
    width: 100%;
    margin: 3rem auto 0;
    align-self: self-end;
    aspect-ratio: var(--item-image-aspect-ratio, 1);
  }
  .about .container .content .about-slide .about-swiper .swiper-wrapper .swiper-slide .item .item-image picture {
    width: 100%;
  }
	.about .container .content .about-slide .about-swiper .swiper-wrapper .swiper-slide .item .item-content .item-text .text-list.close{
		overflow: hidden;
	  display: -webkit-box;
	  -webkit-box-orient: vertical;
	  -webkit-line-clamp: 2;
	}
}
@media (max-width: 1080px) {
  .about .container .content .about-slide .about-swiper .swiper-wrapper .swiper-slide .item .item-image .item-img {
    width: 100%;
    object-fit: cover;
    height: 100%;
  }
}
.about .container .content .about-slide .about-swiper .swiper-wrapper .swiper-slide.last-slide {
  --item-content-pl: 0;
}
@media (max-width: 1080px) {
  .about .container .content .about-slide .about-swiper .swiper-wrapper .swiper-slide.last-slide .item {
    height: auto;
  }
}
.about.about-ex {
  --bg-color: white;
  --txt-color: #ec6b2e;
  --item-bg: #fff8f3;
  --item-content-pl: 0;
  --item-image-aspect-ratio: auto;
  --item-content-pr: 3.2rem;
  --about-subtitle-font-size: clamp(2rem, calc((24 / 768) * 100 * 1vw), 2.4rem);
  --about-subtitle-border-radius-sp: 2rem;
  --about-subtitle-p-x: 3rem;
}
@media (max-width: 1080px) {
  .about.about-ex {
    --item-content-pr: 0;
  }
}
.about .about-treatment {
  padding-top: 12rem;
  padding-bottom: 9rem;
}
@media (max-width: 1080px) {
  .about .about-treatment {
    padding-top: 8rem;
    padding-bottom: 30px;
  }
}
.about .about-treatment-wrap {
  display: grid;
  row-gap: 8rem;
}
@media (max-width: 1080px) {
  .about .about-treatment-wrap {
    /*row-gap: clamp(17rem, calc((350 / 768) * 100 * 1vw), 35rem);*/
	  row-gap:50px;
  }
}
.about .about-treatment .about-treatment-item {
  position: relative;
}
@media (max-width: 1080px) {
  .about .about-treatment .about-treatment-item {
    --gap-x: 4rem;
    --max-width: 1200px;
    width: min(100% - var(--gap-x), var(--max-width));
    margin: 0 auto;
  }
}
@media (max-width: 1080px) and (max-width: 768px) {
  .about .about-treatment .about-treatment-item {
    --gap-x: 4rem;
  }
}
.about .about-treatment .about-treatment-item::after {
  content: "";
  width: calc(98% - max(27.78vw));
  background-color: #fff8f3;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 1080px) {
  .about .about-treatment .about-treatment-item::after {
    width: 100%;
  }
}
.about .about-treatment .about-treatment-item .container {
  --max-width: 1140px;
}
@media (max-width: 1080px) {
  .about .about-treatment .about-treatment-item .container {
    --gap-x: 0;
  }
}
.about .about-treatment .about-treatment-item .item {
  position: relative;
  z-index: 2;
}
.about .about-treatment .about-treatment-item .item .item-image {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-3%);
}
.about .about-treatment .about-treatment-item .item .item-image .item-img {
  width: clamp(21.5rem, calc((400 / 768) * 100 * 1vw), 40rem);
}
@media (max-width: 1080px) {
  .about .about-treatment .about-treatment-item .item .item-image {
    top: 0;
    /*transform: translateY(-10%);*/
  }
	.about .about-treatment .about-treatment-item .item .item-image .item-img {
 /* width: clamp(21.5rem, calc((400 / 768) * 100 * 1vw), 40rem);*/
	width: 150px;
}
}
.about .about-treatment .about-treatment-item .item .item-content {
  margin-left: auto;
  width: 70%;
  display: flex;
  padding: 6rem 2rem;
  min-height: 28.5rem;
}
@media (max-width: 1080px) {
  .about .about-treatment .about-treatment-item .item .item-content {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .about .about-treatment .about-treatment-item .item .item-content {
    padding: 4rem 1.5rem;
    min-height: auto;
	  padding: 4rem 1.5rem 4rem 10rem;
  }
}
.about .about-treatment .about-treatment-item .item .item-content .item-text {
  margin-left: clamp(4rem, calc((220 / 1440) * 100 * 1vw), 22rem);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1080px) {
  .about .about-treatment .about-treatment-item .item .item-content .item-text {
    margin-left: 0;
  }
}
.about .about-treatment .about-treatment-item .item .item-content p {
  font-size: clamp(1.8rem, calc((28 / 768) * 100 * 1vw), 2.8rem);
  color: #1d1d1d;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.about .about-treatment .about-treatment-item:nth-child(2)::after {
  content: "";
  width: calc(96% - max(27.78vw));
  background-color: #fff8f3;
  height: 100%;
  position: absolute;
  right: auto;
  left: 0;
}
@media (max-width: 1080px) {
  .about .about-treatment .about-treatment-item:nth-child(2)::after {
    width: 100%;
  }
}
.about .about-treatment .about-treatment-item:nth-child(2) .item .item-image {
  left: auto;
  right: 0;
  transform: translateY(-8%);
}
/*@media (max-width: 1080px) {
  .about .about-treatment .about-treatment-item:nth-child(2) .item .item-image {
    transform: translateY(-40%);
  }
}
@media (max-width: 768px) {
  .about .about-treatment .about-treatment-item:nth-child(2) .item .item-image {
    transform: translateY(-35%);
  }
}
@media (max-width: 375px) {
  .about .about-treatment .about-treatment-item:nth-child(2) .item .item-image {
    transform: translateY(-40%);
  }
}*/
.about .about-treatment .about-treatment-item:nth-child(2) .item .item-image .item-img {
  width: clamp(26rem, calc((400 / 768) * 100 * 1vw), 40rem);
}
.about .about-treatment .about-treatment-item:nth-child(2) .item .item-content {
  margin-left: unset;
  margin-right: auto;
  justify-content: center;
}
@media (max-width: 1080px) {
  .about .about-treatment .about-treatment-item:nth-child(2) .item .item-content {
    padding-bottom: clamp(10rem, calc((200 / 768) * 100 * 1vw), 20rem);
	  padding: 4rem 11rem 4rem 1.5rem;
	  
  }
	.about .about-treatment .about-treatment-item:nth-child(2) .item .item-image .item-img{
		width: 125px;
	}
}
.about .about-treatment .about-treatment-item:nth-child(2) .item .item-content .item-text {
  margin-right: clamp(4rem, calc((20 / 1440) * 100 * 1vw), 2rem);
  margin-left: unset;
}
.about .about-treatment .about-treatment-item:nth-child(2) .item .item-content .item-text .primary-color {
  font-weight: 700;
}
@media (max-width: 1080px) {
  .about .about-treatment .about-treatment-item:nth-child(2) .item .item-content .item-text {
    margin-right: 0;
  }
}
.about .about-treatment .about-treatment-item:nth-child(2) .item .item-content p {
  font-size: clamp(1.8rem, calc((20 / 768) * 100 * 1vw), 2rem);
  color: #1d1d1d;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: 500;
}

.case {
  background: url(../images/bg.jpg) no-repeat center center/cover;
  --p-y: 12rem;
}
@media (max-width: 768px) {
  .case {
    --p-y: 8rem;
  }
}
.case .container .content {
  margin-top: 8rem;
}
@media (max-width: 768px) {
  .case .container .content {
    margin-top: 6rem;
  }
}
.case .container .content .case-list {
  display: grid;
  row-gap: 2rem;
}
.case .container .content .case-list .case-list-item {
  display: flex;
  background-color: white;
  border-radius: 4rem;
  padding: 5rem;
  --col-gap: 2rem;
  column-gap: var(--col-gap);
}
@media (max-width: 1080px) {
  .case .container .content .case-list .case-list-item {
    flex-wrap: wrap;
    row-gap: 2rem;
  }
}
@media (max-width: 768px) {
  .case .container .content .case-list .case-list-item {
    padding: 3rem 2rem;
    border-radius: 2rem;
  }
}
.case .container .content .case-list .case-list-item .item-left {
  display: flex;
  align-items: center;
  column-gap: var(--col-gap);
  width: 30%;
  flex-shrink: 0;
  align-self: self-start;
}
@media (max-width: 1080px) {
  .case .container .content .case-list .case-list-item .item-left {
    width: 100%;
  }
}
.case .container .content .case-list .case-list-item .item-left .item-left-avatar {
  flex-shrink: 0;
}
.case .container .content .case-list .case-list-item .item-left .item-left-info {
  color: #1d1d1d;
}
.case .container .content .case-list .case-list-item .item-left .item-left-info .info-age {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.case .container .content .case-list .case-list-item .item-left .item-left-info .info-industry {
  font-weight: 700;
  margin-top: 0.6rem;
  font-size: 1.6rem;
}
.case .container .content .case-list .case-list-item .item-right {
  flex: 1;
}
.case .container .content .case-list .case-list-item .item-right p {
  font-size: 1.4rem;
  color: #1d1d1d;
}
.case .container .content .case-list .case-list-item .item-right p strong {
  font-weight: 700;
}
@media (max-width: 768px) {
  .case .container .content .case-list .case-list-item .item-right .mt-10 {
    margin-top: 2rem;
  }
}
.case .container .content .case-btn {
  display: flex;
  justify-content: center;
  margin-top: 8rem;
}
@media (max-width: 768px) {
  .case .container .content .case-btn {
    margin-top: 3rem;
  }
}
.case .container .content .case-btn a {
  padding: 0.4rem 1rem;
  font-size: clamp(2.4rem, calc((32 / 768) * 100 * 1vw), 3.2rem);
  text-align: center;
  font-weight: 500;
  line-height: normal;
  color: #ec6b2e;
  text-decoration: underline;
  text-underline-offset: 0.3em;
  text-decoration-thickness: 0.002em;
}
@media (max-width: 768px) {
  .case .container .content .case-btn a {
    text-underline-offset: 0.15em;
  }
}

.reason {
  --p-y: 12rem;
}
@media (max-width: 768px) {
  .reason {
    --p-y: 8rem;
  }
}
.reason .container {
  --max-width: 1000px;
}
.reason .container .content {
  display: flex;
  gap: clamp(3rem, calc((85 / 1200) * 100 * 1vw), 8.5rem);
  align-items: end;
  margin-top: 5rem;
}
@media (max-width: 920px) {
  .reason .container .content {
    flex-wrap: wrap;
  }
}
.reason .container .content .reason-left .reason-subtitle {
  font-size: clamp(2rem, calc((25 / 768) * 100 * 1vw), 2.5rem);
  font-weight: 700;
  color: #1d1d1d;
}
.reason .container .content .reason-left .reason-left-text {
  font-size: 1.6rem;
  color: #1d1d1d;
  margin-top: clamp(3rem, calc((40 / 768) * 100 * 1vw), 4rem);
}
.reason .container .content .reason-right {
  flex-shrink: 0;
}
@media (max-width: 920px) {
  .reason .container .content .reason-right {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.flow {
  background: var(--e-top, #f6ede7);
  --p-y: 12rem;
}
@media (max-width: 768px) {
  .flow {
    --p-y: 8rem;
  }
}
.flow .container .content .flow-list-wrap {
  overflow-x: auto;
  scroll-snap-type: x proximity;
}
@media (max-width: 768px) {
  .flow .container .content .flow-list-wrap {
    overflow: auto;
  }
}
.flow .container .content .flow-list {
  margin-top: 6rem;
  counter-reset: item;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.4rem;
  width: 120rem;
}
@media (max-width: 768px) {
  .flow .container .content .flow-list {
    width: auto;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    margin: 0 auto;
    margin-top: 6rem;
    gap: 5.5rem;
  }
}
.flow .container .content .flow-list .flow-list-item {
  position: relative;
  padding-bottom: 1rem;
  scroll-snap-align: start;
}
.flow .container .content .flow-list .flow-list-item::after {
  content: url(../images/arrow-r.svg);
  position: absolute;
  right: 0;
  top: clamp(10rem, calc((210 / 1200) * 100 * 1vw), 21rem);
  transform: translateX(100%);
}
@media (max-width: 768px) {
  .flow .container .content .flow-list .flow-list-item::after {
    content: url(../images/arrow-down.svg);
    top: 100%;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
.flow .container .content .flow-list .flow-list-item:last-child::after {
  display: none;
}
.flow .container .content .flow-list .flow-list-item .item {
  counter-increment: item 1;
  position: relative;
  z-index: 2;
}
.flow .container .content .flow-list .flow-list-item .item .item-image .item-img {
  width: 100%;
}
.flow .container .content .flow-list .flow-list-item .item .item-content {
  margin-top: 2rem;
}
.flow .container .content .flow-list .flow-list-item .item .item-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ec6b2e;
  line-height: normal;
}
.flow .container .content .flow-list .flow-list-item .item .item-content h3::before {
  font-family: "Jost", sans-serif;
  content: counter(item, decimal-leading-zero);
  margin-right: 2rem;
}
.flow .container .content .flow-list .flow-list-item .item .item-content .item-text {
  font-size: 1.4rem;
  margin-top: 1.5rem;
}
.flow .container .content .flow-btn {
  display: flex;
  justify-content: center;
  margin-top: 8rem;
}
@media (max-width: 768px) {
  .flow .container .content .flow-btn {
    margin-top: 3rem;
  }
}
@media (max-width: 768px) {
  .flow .container .content .flow-btn .btn-primary {
    border-radius: 3.5rem;
  }
}

.price {
  --p-y: 12rem;
}
@media (max-width: 768px) {
  .price {
    --p-y: 8rem;
  }
}
.price .container .content {
  margin-top: 9rem;
}
@media (max-width: 768px) {
  .price .container .content {
    margin-top: 6rem;
  }
}
.price .container .content .price-content-title {
  display: flex;
  gap: 1rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: normal;
  color: #1d1d1d;
  align-items: baseline;
}
.price .container .content .price-table .price-table-content {
  margin-top: 2rem;
  overflow-x: auto;
  scroll-snap-type: both mandatory;
}
.price .container .content .price-table .price-table-content table {
  --td-px: 2.8rem;
  --td-py: 2.8rem;
  width: 100%;
  border-top: 0.1rem solid var(--e-top, #ec6b2e);
  border-left: 0.1rem solid var(--e-top, #ec6b2e);
}
.price .container .content .price-table .price-table-content table .w-32 {
  width: 32%;
}
@media (max-width: 1200px) {
  .price .container .content .price-table .price-table-content table .w-32 {
    width: auto;
  }
}
.price .container .content .price-table .price-table-content table .w-25 {
  width: 25%;
}
@media (max-width: 1200px) {
  .price .container .content .price-table .price-table-content table .w-25 {
    width: auto;
  }
}
.price .container .content .price-table .price-table-content table .w-55 {
  width: 55%;
}
.price .container .content .price-table .price-table-content table .w-45 {
  width: 48%;
}
.price .container .content .price-table .price-table-content table .first-cell {
  background: #f6ede7;
  font-size: 2rem;
  font-weight: 500;
  line-height: normal;
}
.price .container .content .price-table .price-table-content table .content-center {
  display: grid;
  place-content: center;
}
.price .container .content .price-table .price-table-content table .content-end {
  display: grid;
  place-content: end;
}
@media (max-width: 768px) {
  .price .container .content .price-table .price-table-content table .content-end {
    font-weight: 600;
  }
}
.price .container .content .price-table .price-table-content table .cell-bg-ec6b2e4d {
  background: #ec6b2e4d;
}
.price .container .content .price-table .price-table-content table .border-r-none {
  border-right: none;
}
.price .container .content .price-table .price-table-content table tr td {
  font-size: clamp(1.5rem, calc((16 / 768) * 100 * 1vw), 1.6rem);
  font-weight: 500;
  line-height: 1.6;
  padding: var(--td-py) var(--td-px);
  border-right: 0.1rem solid var(--e-top, #ec6b2e);
  border-bottom: 0.1rem solid var(--e-top, #ec6b2e);
}
.price .container .content .price-table .price-table-content .sp table {
  --td-py: 2.7rem;
  --td-px: 2rem;
}
.price .container .content .price-detail {
  border-radius: 4rem;
  background: #fff8f3;
  margin-top: 12rem;
  padding: 7rem 4rem;
}
@media (max-width: 768px) {
  .price .container .content .price-detail {
    padding: 3rem 2rem;
    border-radius: 2rem;
    margin-top: 3rem;
  }
}
.price .container .content .price-detail .price-detail-title {
  display: flex;
  gap: 1rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: normal;
  align-items: center;
}
.price .container .content .price-detail .price-list {
  display: grid;
  row-gap: 3rem;
  max-width: 105rem;
  width: 100%;
  margin: 0 auto;
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .price .container .content .price-detail .price-list {
    margin-top: 3rem;
  }
}
@media (max-width: 768px) {
  .price .container .content .price-detail .price-list {
    gap: 1.4rem;
  }
}
.price .container .content .price-detail .price-list .item {
  display: flex;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 0.1rem dashed #ec6b2e;
}
@media (max-width: 920px) {
  .price .container .content .price-detail .price-list .item {
    flex-wrap: wrap;
    gap: clamp(1rem, calc((20 / 768) * 100 * 1vw), 2rem);
  }
}
@media (max-width: 768px) {
  .price .container .content .price-detail .price-list .item {
    padding-bottom: 1.4rem;
  }
}
.price .container .content .price-detail .price-list .item .item-left {
  width: 20%;
}
@media (max-width: 920px) {
  .price .container .content .price-detail .price-list .item .item-left {
    width: 100%;
  }
}
.price .container .content .price-detail .price-list .item .item-left span {
  font-size: 2rem;
  font-weight: 700;
  line-height: normal;
  color: #ec6b2e;
}
@media (max-width: 920px) {
  .price .container .content .price-detail .price-list .item .item-right {
    width: 100%;
  }
}
.price .container .content .price-detail .price-list .item .item-right .dot {
  --dot-width: 0.6em;
}
.price .container .content .price-detail .price-list .item .item-right p {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-size: 1.4rem;
  justify-content: flex-start;
}

.faq {
  --p-y: 12rem;
  background-color: #ec6b2e;
}
@media (max-width: 768px) {
  .faq {
    --p-y: 6rem;
  }
}
.faq .container .faq-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1080px) {
  .faq .container .faq-wrap {
    flex-wrap: wrap;
    row-gap: 6rem;
  }
}
.faq .container .faq-wrap .title {
  --txt-color: white;
  text-align: start;
}
@media (max-width: 1080px) {
  .faq .container .faq-wrap .title {
    text-align: center;
    width: 100%;
  }
}
.faq .container .faq-wrap .content {
  width: 75%;
}
@media (max-width: 1080px) {
  .faq .container .faq-wrap .content {
    width: 100%;
  }
}
.faq .container .faq-wrap .content .faq-list {
  display: grid;
  row-gap: 3rem;
}
.faq .container .faq-wrap .content .faq-list .faq-list-item .faq-item-box {
  position: relative;
}
.faq .container .faq-wrap .content .faq-list .faq-list-item .faq-item-box .item-title {
  font-size: 2.1rem;
  font-weight: 600;
  line-height: normal;
  font-family: "Jost", sans-serif;
}
.faq .container .faq-wrap .content .faq-list .faq-list-item .faq-item-box .faq-item-inner {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 3rem 4rem;
}
@media (max-width: 768px) {
  .faq .container .faq-wrap .content .faq-list .faq-list-item .faq-item-box .faq-item-inner {
    padding: 2rem 5rem 2rem 2rem;
  }
}
.faq .container .faq-wrap .content .faq-list .faq-list-item .faq-item-box .faq-icon {
  position: absolute;
  width: 2.4rem;
  aspect-ratio: 1;
  z-index: 2;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
  transition: all 0.3s;
  cursor: pointer;
}
@media (max-width: 768px) {
  .faq .container .faq-wrap .content .faq-list .faq-list-item .faq-item-box .faq-icon {
    right: 1.5rem;
  }
}
.faq .container .faq-wrap .content .faq-list .faq-list-item .faq-item-box .faq-icon:after {
  width: 1.4rem;
  height: 0.2rem;
  left: 0.5rem;
  top: 1rem;
}
.faq .container .faq-wrap .content .faq-list .faq-list-item .faq-item-box .faq-icon:before {
  width: 0.2rem;
  height: 1.4rem;
  left: 1.1rem;
  top: 0.4rem;
}
.faq .container .faq-wrap .content .faq-list .faq-list-item .faq-item-box .faq-icon:after, .faq .container .faq-wrap .content .faq-list .faq-list-item .faq-item-box .faq-icon:before {
  content: "";
  position: absolute;
  background: #1d1d1d;
  border-radius: 0.3rem;
  transition: all 0.3s;
}
.faq .container .faq-wrap .content .faq-list .faq-list-item .faq-q {
  background-color: white;
  border-radius: 0.8rem;
  transition: all 0.3s;
}
.faq .container .faq-wrap .content .faq-list .faq-list-item .faq-q .item-text {
  font-size: 1.8rem;
  line-height: normal;
  font-weight: 500;
}
.faq .container .faq-wrap .content .faq-list .faq-list-item .faq-a {
  background: #f6ede7;
  border-radius: 0 0 0.8rem 0.8rem;
  overflow: hidden;
  height: 0;
  transition: height 0.3s;
}
.faq .container .faq-wrap .content .faq-list .faq-list-item .faq-a .faq-item-inner {
  padding: 2rem 4rem;
}
@media (max-width: 768px) {
  .faq .container .faq-wrap .content .faq-list .faq-list-item .faq-a .faq-item-inner {
    padding: 2rem 5rem 2rem 2rem;
  }
}
.faq .container .faq-wrap .content .faq-list .faq-list-item .faq-a .item-title {
  color: #ec6b2e;
}
.faq .container .faq-wrap .content .faq-list .faq-list-item .faq-a .item-text {
  font-size: 1.4rem;
}
.faq .container .faq-wrap .content .faq-list .faq-list-item .faq-a .item-img{
	margin-top: 1em;
}
.faq .container .faq-wrap .content .faq-list .faq-list-item.active .faq-q {
  border-radius: 0.8rem 0.8rem 0 0;
}
.faq .container .faq-wrap .content .faq-list .faq-list-item.active .faq-q .faq-icon {
  transform: translateY(-50%) rotate(360deg);
  cursor: pointer;
}
.faq .container .faq-wrap .content .faq-list .faq-list-item.active .faq-q .faq-icon:before {
  opacity: 0;
}
.faq .container .faq-wrap .content .faq-list .faq-list-item.active .faq-q .faq-icon:after, .faq .container .faq-wrap .content .faq-list .faq-list-item.active .faq-q .faq-icon:before {
  content: "";
  position: absolute;
  background: #1d1d1d;
  border-radius: 0.3rem;
}

.info {
  padding-top: 12rem;
  padding-bottom: 7.5rem;
}
@media (max-width: 768px) {
  .info {
    padding: 8rem 0;
  }
}
@media (max-width: 768px) {
  .info .info-banner .container {
    width: 100%;
  }
}
.info .info-banner img {
  width: 100%;
}
.info .container .content {
  margin-top: 7rem;
}
@media (max-width: 768px) {
  .info .container .content {
    margin-top: 3rem;
  }
}
.info .container .content .content-wrap {
  display: flex;
  max-width: 106rem;
  width: 100%;
  margin: 0 auto;
  gap: clamp(2rem, calc((40 / 1440) * 100 * 1vw), 4rem);
}
@media (max-width: 768px) {
  .info .container .content .content-wrap {
    flex-wrap: wrap;
  }
}
.info .container .content .info-map {
  width: 55%;
  flex-shrink: 0;
}
@media (max-width: 1080px) {
  .info .container .content .info-map {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .info .container .content .info-map {
    order: 2;
    width: 100%;
    height: 33rem;
  }
}
.info .container .content .info-map .info-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2rem;
}
@media (max-width: 768px) {
  .info .container .content .info-map .info-map-img {
    aspect-ratio: 1;
    border-radius: 1rem;
  }
}
@media (max-width: 768px) {
  .info .container .content .info-text {
    width: 100%;
    margin: 0 auto;
  }
}
.info .container .content .info-text .info-text-content {
  padding-left: clamp(0rem, calc((24 / 1440) * 100 * 1vw), 2.4rem);
}
@media (max-width: 768px) {
  .info .container .content .info-text .info-text-content {
    padding-left: 0;
  }
}
.info .container .content .info-text .info-address {
  margin-top: 3.6rem;
}
@media (max-width: 768px) {
  .info .container .content .info-text .info-address {
    margin-top: 3rem;
  }
}
.info .container .content .info-text .info-address-title {
  color: #ec6b2e;
  font-size: 1.6rem;
  line-height: normal;
}
.info .container .content .info-text .info-address-text {
  margin-top: 1rem;
  font-size: 1.4rem;
  line-height: normal;
  display: grid;
  row-gap: 0.6rem;
}
@media (max-width: 768px) {
  .info .container .content .info-text .info-address-text {
    row-gap: 1rem;
  }
}
.info .container .content .info-text .info-address p {
  display: flex;
  align-items: baseline;
}
.info .container .content .info-contact {
  margin-top: 1.5rem;
}
.info .container .content .info-contact .info-contact-phone {
  color: #ec6b2e;
  border-bottom: 0.1rem solid #ec6b2e;
  display: inline-block;
}
.info .container .content .info-contact .info-contact-phone span {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}
.info .container .content .info-contact .info-contact-phone a {
  font-size: 3.6rem;
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-family: "Jost", sans-serif;
  margin-left: 0.8rem;
}
.info .container .content .info-contact .info-contact-time {
  font-size: 1.4rem;
  line-height: normal;
  margin-top: 1rem;
}
.info .container .content .info-contact .info-contact-time p .num {
  font-family: "Jost", sans-serif;
  margin-left: 0.5rem;
}
.info .container .content .info-contact .info-contact-time p .text {
  margin-left: 2rem;
  display: inline-block;
}

.footer {
  background: #e3a48b;
  padding-top: 4rem;
  padding-bottom: 5rem;
}
@media (max-width: 768px) {
  .footer {
    padding: 2rem 0;
  }
}
.footer .container .footer-wrap {
  display: flex;
  gap: clamp(2rem, calc((50 / 1024) * 100 * 1vw), 5rem);
}
@media (max-width: 768px) {
  .footer .container .footer-wrap {
    flex-wrap: wrap;
    gap: 0;
  }
}
.footer .container .footer-wrap .footer-left {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .footer .container .footer-wrap .footer-left {
    width: 100%;
  }
}
.footer .container .footer-wrap .footer-right {
  display: flex;
  justify-content: space-between;
  width: 70%;
  flex: 1;
  color: white;
  padding-top: 1.5rem;
}
@media (max-width: 768px) {
  .footer .container .footer-wrap .footer-right {
    width: 100%;
    flex-wrap: wrap;
  }
}
.footer .container .footer-wrap .footer-right .footer-address {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: normal;
}
.copy-right {
  display: flex;
  justify-content: center;
  color: white;
  padding: 1.5rem 0;
  background-color: #e39372;
}
.copy-right p {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
}

.list-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 525px) {
  .list-social {
    width: 100%;
    justify-content: center;
    margin-top: 3rem;
  }
}
.list-social .social-item a {
  font-size: 1.2rem;
  font-family: "Jost", sans-serif;
  display: flex;
  align-items: center;
  transition: all;
  gap: 0.6rem;
  line-height: 1;
  color: white;
}
.list-social .social-item a:hover {
  color: #ec6b2e;
}
.list-social .social-item a img {
  width: 2rem;
  aspect-ratio: 1;
}
.list-social .social-item a .icon {
  position: relative;
}
.list-social .social-item a .icon img {
  transition: 0.3s all;
}
.list-social .social-item a .icon img:last-child {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.list-social .social-item a:hover .icon img:first-child {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.list-social .social-item a:hover .icon img:last-child {
  opacity: 1;
  position: unset;
  inset: unset;
  z-index: 1;
  animation: toggle 1s infinite;
}
@keyframes toggle {
  0% {
    transform: translateY(-1rem);
  }
  100% {
    transform: translateY(0);
  }
}

.scroll-hint-icon {
  z-index: 99;
}

.scroll-hint-text {
  font-size: 1.4rem;
  display: none;
}

.fv-btn {
  display: none;
}
@media (max-width: 768px) {
  .fv-btn {
    display: flex;
    position: fixed;
    bottom: 0.5rem;
    z-index: 20;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: all 0.3s;
    justify-content: center;
  }
  .fv-btn.active {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
  }
}
.fv-btn .menu-social-btn {
  width: 100%;
  display: flex;
  justify-content: center;
}
.fv-btn .menu-social-btn .btn-primary {
  width: 90%;
}

.btn-to-top {
  position: fixed;
  bottom: 20rem;
  right: 6rem;
  z-index: 23;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: all 0.3s;
  justify-content: center;
}
@media (max-width: 768px) {
  .btn-to-top {
    right: 1.4rem;
    bottom: 25rem;
  }
}
.btn-to-top .btn {
  --bg: #ec6b2e;
  width: 6rem;
  aspect-ratio: 1;
  background-color: var(--bg);
  display: grid;
  place-content: center;
  border-radius: 100%;
  cursor: pointer;
  transition: all 0.3s;
  outline: 0.1rem solid #ec6b2e;
}
.btn-to-top .btn .icon {
  position: relative;
}
.btn-to-top .btn .icon img {
  transition: 0.3s all;
}
.btn-to-top .btn .icon img:last-child {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.btn-to-top .btn:hover {
  --bg: white;
}
.btn-to-top .btn:hover .icon img:first-child {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.btn-to-top .btn:hover .icon img:last-child {
  opacity: 1;
  position: unset;
  inset: unset;
  z-index: 1;
}
.btn-to-top.active {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.case__video{
	width: 400px;
	max-width: 100%;
	margin: 2rem auto 6rem auto;
}

.item-image img {
  height: 100%;
  object-fit: cover;
}
/* .about
  .container
  .content
  .about-slide
  .about-swiper
  .swiper-wrapper
  .swiper-slide
  .item {
  align-items: unset;
} */

/* @media screen and (max-width: 1080px) {
  .about
    .container
    .content
    .about-slide
    .about-swiper
    .swiper-wrapper
    .swiper-slide
    .item {
    gap: 20px;
  }
  .about
    .container
    .content
    .about-slide
    .about-swiper
    .swiper-wrapper
    .swiper-slide
    .item
    .item-image {
    margin: 3rem auto 0 ;
  }
} */

.text-item-content.pl0{
  padding-left: 0 !important;
}

.content-text{
  font-size: 1.4rem;
}

.content-bold{
  font-weight: bold;
}

@media screen and (max-width: 1080px) {
  .item.item--reverse{
      flex-direction: column-reverse;
  }
}