@charset "UTF-8";
/* Universal box-sizing reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

/* Set default styles for html */
html {
  box-sizing: border-box;
  font-size: 100%;
}

/* Reset margin for common block-level elements */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  word-break: auto-phrase;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

html,
body {
  font-weight: normal;
  font-style: normal;
  font-optical-sizing: auto;
  font-style: normal;
  max-width: 100vw;
  overflow-x: clip;
  margin: 0;
  padding: 0;
}

strong {
  line-height: 1;
  font-weight: 600;
}

/* Reset default link styles */
a {
  text-decoration: none; /* Remove underlines from all links */
  color: inherit; /* Make sure the link color inherits the surrounding text color */
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

button {
  cursor: pointer;
  transition: all 0.3s ease;
}
button:hover {
  transition: all 0.3s ease;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Reset styles for form elements */
input,
button,
textarea,
select {
  font: inherit;
  border: none; /* Remove borders on form elements */
  background: transparent; /* Make background transparent */
}

/* Remove animations and transitions for users with reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
a {
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--txt);
}
a:hover {
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--txt);
}

li {
  list-style-type: none;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=submit],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  justify-content: center;
}

iframe {
  border: none;
  display: block;
}

.gjs-dashed .sticky-bg {
  position: static !important;
}
.gjs-dashed .header__nav {
  width: 100vw !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.gjs-dashed .swiper-vertical {
  flex-direction: column !important;
}
.gjs-dashed .slider-left .swiper-wrapper,
.gjs-dashed .slider-right .swiper-wrapper {
  display: flex !important;
}
.gjs-dashed .page-back {
  position: static !important;
}

:root {
  --sippori: shippori-mincho, sans-serif;
  --futura: futura-pt, sans-serif;
  --YuGothic: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
    "游ゴシック", "Yu Gothic", sans-serif;
  --txt: #444444;
  --base: #ece6d5;
  --acc: #c5b489;
}

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

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

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

.sippori {
  font-family: var(--sippori);
}

.futura {
  font-family: var(--futura);
}

.yu-gothic {
  font-family: var(--YuGothic);
}

.txt-wh {
  color: white !important;
}

.img-br-20 {
  border-radius: 20px;
  overflow: hidden;
}

.bg-wh {
  background-color: white;
}

body {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  font-family: var(--YuGothic);
  font-weight: 400;
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  line-height: 1.6;
  color: var(--txt);
}

html.is-scroll-lock,
body.is-scroll-lock {
  overflow: hidden;
  touch-action: none;
}

h1,
h2 {
  font-family: var(--sippori);
}

.js-tick {
  overflow: hidden;
  white-space: nowrap;
}

.js-tick-track {
  display: inline-flex;
  will-change: transform;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-animation: loopText var(--loop-duration, 10s) linear infinite;
          animation: loopText var(--loop-duration, 10s) linear infinite;
}

.js-tick-item {
  display: inline-block;
  padding-right: 4rem;
}

@-webkit-keyframes loopText {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--loop-distance, 0px)), 0, 0);
  }
}

@keyframes loopText {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--loop-distance, 0px)), 0, 0);
  }
}
.section-title .icon {
  max-width: clamp(80px, 8vw, 120px);
  margin-inline: auto;
  margin-bottom: clamp(30px, 4vw, 50px);
}
.section-title > h2,
.section-title > h3 {
  font-size: clamp(1.563rem, 1.056rem + 2.19vw, 3.125rem);
  line-height: 1.5;
  font-weight: bold;
  font-family: var(--sippori);
}

.contents-title {
  border-bottom: solid clamp(1px, 1vw, 5px) var(--red);
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .contents-title {
    padding-bottom: 30px;
  }
}
.contents-title > h2 {
  font-size: clamp(1.375rem, 0.525rem + 3.68vw, 4rem);
  font-weight: 900;
  line-height: 1.6;
}

.btn-wrap a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  line-height: normal;
  border-radius: 99px;
  padding-inline: 15px 100px;
  padding-block: 12px;
  transition: all 0.3s ease;
  gap: 24px;
  min-width: 200px;
  background-color: var(--acc);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 768px) {
  .btn-wrap a {
    padding-inline: 30px 120px;
    padding-block: 20px;
    font-size: 1rem;
    min-width: 260px;
  }
}
.btn-wrap a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  display: block;
  background: url(../images/arrow_wh.svg) center/contain no-repeat;
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .btn-wrap a::after {
    width: 34px;
    height: 34px;
    right: 30px;
  }
}
.btn-wrap a:hover::after {
  transform: translateY(-50%) translateX(5px);
  transition: all 0.3s ease;
}

.pc-none {
  display: block;
}
@media (min-width: 768px) {
  .pc-none {
    display: none;
  }
}

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

.bb-none {
  border: none;
}

.bb-red {
  border-bottom: solid 2px var(--txt);
}

.p-blog .webgene-blog {
  max-width: 910px;
  padding-inline: 20px;
  margin-inline: auto;
}
.p-blog .webgene-blog > article a {
  padding-block: 40px;
  border-bottom: solid 2px var(--acc);
  display: flex;
  flex-direction: column;
  gap: 15px 30px;
}
@media (min-width: 768px) {
  .p-blog .webgene-blog > article a {
    padding-block: 20px;
    flex-direction: row;
    align-items: center;
  }
}
.p-blog .webgene-blog > article:first-of-type a {
  padding-top: 0px;
}
.p-blog .webgene-blog > article .date,
.p-blog .webgene-blog > article .title {
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
}
.p-blog .webgene-blog > article .date {
  color: var(--acc);
  font-family: var(--futura);
}
.p-blog .webgene-blog > article .title {
  flex: 1;
}
.p-blog .webgene-pagination {
  margin-top: clamp(60px, 8vw, 120px);
}
.p-blog .blog-item__img {
  position: relative;
  z-index: 1;
  width: 65%;
  margin-inline: auto;
  aspect-ratio: 1;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-blog .blog-item__img {
    width: 150px;
  }
}
.p-blog .blog-item__img img {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
}
.p-blog .blog-item__img > .noImage {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.p-blog .blog-item__wrap {
  display: flex;
  flex-direction: column;
  gap: 8px 15px;
  flex: 1;
}

.p-blogdetail {
  padding-block: clamp(70px, 18vw, 270px) clamp(100px, 17vw, 250px);
}
.p-blogdetail .btn-block {
  margin-top: clamp(20px, 3vw, 45px);
}

.blogdetail-contents {
  margin-inline: auto;
  max-width: 820px;
  margin-bottom: clamp(60px, 9vw, 130px);
}
.blogdetail-contents__date {
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
  margin-bottom: 15px;
  color: var(--red);
}
.blogdetail-contents__title {
  font-size: clamp(1.125rem, 0.842rem + 1.23vw, 2rem);
  margin-bottom: 35px;
}
.blogdetail-contents__img {
  width: 75%;
  max-width: 600px;
  margin-inline: auto;
}
.blogdetail-contents__meta {
  margin-top: 35px;
}

.p-blog .webgene-pagination,
.p-blogdetail .webgene-pagination {
  margin-top: clamp(60px, 7vw, 100px);
}
.p-blog .webgene-pagination ul,
.p-blogdetail .webgene-pagination ul {
  max-width: 580px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px 20px;
}
@media (min-width: 768px) {
  .p-blog .webgene-pagination ul,
.p-blogdetail .webgene-pagination ul {
    flex-direction: row;
    align-items: stretch;
  }
}
.p-blog .webgene-pagination li,
.p-blogdetail .webgene-pagination li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 250px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-blog .webgene-pagination .prev > a,
.p-blogdetail .webgene-pagination .prev > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  color: white;
  line-height: normal;
  border-radius: 99px;
  padding-inline: 100px 15px;
  padding-block: 12px;
  transition: all 0.3s ease;
  gap: 24px;
  min-width: 200px;
  width: 100%;
  background-color: var(--acc);
}
@media (min-width: 768px) {
  .p-blog .webgene-pagination .prev > a,
.p-blogdetail .webgene-pagination .prev > a {
    padding-inline: 120px 30px;
    padding-block: 15px;
    font-size: 1rem;
    min-width: 260px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.p-blog .webgene-pagination .prev > a::after,
.p-blogdetail .webgene-pagination .prev > a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(-1, 1);
  left: 15px;
  display: block;
  background: url(../images/arrow_wh.svg) center/contain no-repeat;
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .p-blog .webgene-pagination .prev > a::after,
.p-blogdetail .webgene-pagination .prev > a::after {
    width: 34px;
    height: 34px;
    left: 30px;
  }
}
.p-blog .webgene-pagination .prev > a:hover::after,
.p-blogdetail .webgene-pagination .prev > a:hover::after {
  transform: translateY(-50%) translateX(-5px) scale(-1, 1);
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .p-blog .webgene-pagination .next,
.p-blogdetail .webgene-pagination .next {
    margin-left: auto;
  }
}
.p-blog .webgene-pagination .next > a,
.p-blogdetail .webgene-pagination .next > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  color: white;
  line-height: normal;
  border-radius: 99px;
  padding-inline: 15px 100px;
  padding-block: 12px;
  transition: all 0.3s ease;
  gap: 24px;
  min-width: 200px;
  width: 100%;
  background-color: var(--acc);
}
@media (min-width: 768px) {
  .p-blog .webgene-pagination .next > a,
.p-blogdetail .webgene-pagination .next > a {
    padding-inline: 30px 120px;
    padding-block: 15px;
    font-size: 1rem;
    min-width: 260px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.p-blog .webgene-pagination .next > a::after,
.p-blogdetail .webgene-pagination .next > a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  display: block;
  background: url(../images/arrow_wh.svg) center/contain no-repeat;
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .p-blog .webgene-pagination .next > a::after,
.p-blogdetail .webgene-pagination .next > a::after {
    width: 34px;
    height: 34px;
    right: 30px;
  }
}
.p-blog .webgene-pagination .next > a:hover::after,
.p-blogdetail .webgene-pagination .next > a:hover::after {
  transform: translateY(-50%) translateX(5px);
  transition: all 0.3s ease;
}
.p-blog .webgene-pagination .btn-block,
.p-blogdetail .webgene-pagination .btn-block {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .p-blog .webgene-pagination .btn-block,
.p-blogdetail .webgene-pagination .btn-block {
    margin-top: 50px;
  }
}
.p-blog .webgene-pagination .btn-block > a,
.p-blogdetail .webgene-pagination .btn-block > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  color: white;
  line-height: normal;
  border-radius: 99px;
  padding-inline: 100px 15px;
  padding-block: 12px;
  transition: all 0.3s ease;
  gap: 24px;
  min-width: 250px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--acc);
}
@media (min-width: 768px) {
  .p-blog .webgene-pagination .btn-block > a,
.p-blogdetail .webgene-pagination .btn-block > a {
    padding-inline: 120px 30px;
    padding-block: 15px;
    font-size: 1rem;
    min-width: 260px;
  }
}
.p-blog .webgene-pagination .btn-block > a::after,
.p-blogdetail .webgene-pagination .btn-block > a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(-1, 1);
  left: 15px;
  display: block;
  background: url(../images/arrow_wh.svg) center/contain no-repeat;
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .p-blog .webgene-pagination .btn-block > a::after,
.p-blogdetail .webgene-pagination .btn-block > a::after {
    width: 34px;
    height: 34px;
    left: 30px;
  }
}
.p-blog .webgene-pagination .btn-block > a:hover::after,
.p-blogdetail .webgene-pagination .btn-block > a:hover::after {
  transform: translateY(-50%) translateX(-5px) scale(-1, 1);
  transition: all 0.3s ease;
}

.header {
  position: fixed;
  z-index: 997;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}
.header__inner {
  display: flex;
  background-color: rgba(68, 68, 68, 0.4);
}
.header__brand {
  display: flex;
  padding: 15px 20px;
}
@media (min-width: 1200px) {
  .header__brand {
    padding: 27px 46px;
  }
}
.header__brand > a {
  display: inline-flex;
  align-items: center;
  max-width: 180px;
  width: 100%;
}
@media (min-width: 1200px) {
  .header__brand > a {
    max-width: 250px;
  }
}
.header__brand > a:hover {
  opacity: 0.5;
}
.header__nav {
  position: fixed;
  z-index: 997;
  inset: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s ease;
  padding: 100px 0;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  background-color: white;
}
@media (min-width: 1200px) {
  .header__nav {
    margin-left: auto;
    position: static;
    height: auto;
    width: auto;
    transform: none;
    transition: none;
    padding: 0;
    overflow-y: unset;
    opacity: 1;
    visibility: visible;
    background-color: transparent;
  }
}
.header__nav.open {
  opacity: 1;
  visibility: visible;
}
.header__nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: clamp(0.938rem, 0.877rem + 0.26vw, 1.125rem);
  padding: 15px 20px;
  width: 100%;
}
@media (min-width: 1200px) {
  .header__nav-link {
    color: white;
    padding: 35px clamp(8px, 1.7vw, 25px);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: auto;
    height: 100%;
  }
}
.header__nav-link:hover {
  opacity: 0.7;
}
@media (min-width: 1200px) {
  .header__nav-link:hover {
    color: white;
  }
}
.header__nav-link.contact {
  background-color: var(--acc);
  color: var(--txt);
  padding-inline: 30px;
  padding-block: 25px;
  height: 100%;
  margin-top: 30px;
  border-radius: 15px;
}
@media (min-width: 1200px) {
  .header__nav-link.contact {
    margin-top: 0;
    border-radius: 0;
  }
}
.header__nav-lists {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media (min-width: 1200px) {
  .header__nav-lists {
    flex-direction: row;
    align-items: stretch;
    width: auto;
    margin-inline: auto;
    height: 100%;
  }
}

#hum-btn {
  position: relative;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  margin-left: auto;
  width: 29px;
  height: 20px;
  margin-block: auto;
  margin-inline: auto 20px;
}
@media (min-width: 768px) {
  #hum-btn {
    width: 44px;
    height: 31px;
  }
}
@media (min-width: 1200px) {
  #hum-btn {
    display: none;
  }
}

.btn-trigger {
  position: relative;
  z-index: 9999;
  cursor: pointer;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}
.btn-trigger__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
  background-color: #ffffff;
}
@media (min-width: 1200px) {
  .btn-trigger__bar {
    box-shadow: none;
  }
}
.btn-trigger__bar:nth-of-type(1) {
  top: 0;
}
.btn-trigger__bar:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.btn-trigger__bar:nth-of-type(3) {
  bottom: 0;
}

.is-nav-open .btn-trigger__bar {
  background-color: var(--txt);
}
.is-nav-open .btn-trigger__bar:nth-of-type(1) {
  transform: translateY(11.5px) rotate(-45deg);
}
@media (min-width: 768px) {
  .is-nav-open .btn-trigger__bar:nth-of-type(1) {
    transform: translateY(15px) rotate(-45deg);
  }
}
.is-nav-open .btn-trigger__bar:nth-of-type(2) {
  opacity: 0;
}
.is-nav-open .btn-trigger__bar:nth-of-type(3) {
  transform: translateY(-11px) rotate(45deg);
}
@media (min-width: 768px) {
  .is-nav-open .btn-trigger__bar:nth-of-type(3) {
    transform: translateY(-15px) rotate(45deg);
  }
}

.footer {
  background-color: var(--txt);
  padding-top: clamp(80px, 10vw, 130px);
  position: relative;
  z-index: 1;
}
.footer p,
.footer a {
  color: white;
}
.footer__inner,
.footer .copyright {
  max-width: 1320px;
  padding-inline: 20px;
  margin-inline: auto;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (min-width: 992px) {
  .footer__inner {
    align-items: flex-end;
  }
}
.footer__brand > a {
  max-width: 300px;
  display: block;
  margin-bottom: 20px;
  margin-inline: auto;
}
@media (min-width: 992px) {
  .footer__brand > a {
    max-width: 422px;
    margin-inline: 0 auto;
  }
}
.footer__brand > p {
  line-height: 1.7;
  text-align: center;
}
@media (min-width: 992px) {
  .footer__brand > p {
    text-align: left;
  }
}
.footer__nav {
  display: flex;
  gap: 35px clamp(20px, 4vw, 60px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  .footer__nav {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .footer__nav {
    align-items: stretch;
    justify-content: flex-start;
  }
}
.footer__nav-link {
  line-height: 1.8;
}
.footer__nav-lists {
  display: flex;
  gap: 10px clamp(20px, 4vw, 60px);
  text-align: center;
}
@media (min-width: 768px) {
  .footer__nav-lists {
    text-align: left;
  }
}
.footer__other-link {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer .copyright {
  padding-block: 30px;
  font-size: 0.875rem;
}

.p-top__hr {
  background: linear-gradient(180deg, var(--txt) 0%, var(--txt) 50%, transparent 50%, transparent 100%);
}
.p-top__hr-txt {
  padding-block: clamp(130px, 16vw, 240px) clamp(30px, 3vw, 60px);
  padding-inline: clamp(20px, 6vw, 80px);
  color: white;
}
.p-top__hr-txt h1 {
  font-size: clamp(1.5rem, 0.852rem + 2.8vw, 3.5rem);
  list-style: 1.6;
  margin-bottom: 20px;
}
.p-top__hr-txt > p {
  font-size: clamp(0.938rem, 0.755rem + 0.79vw, 1.5rem);
}
.p-top__hr-img {
  max-width: 92%;
  margin-left: auto;
  border-radius: clamp(20px, 3vw, 45px) 0 0 clamp(20px, 3vw, 45px);
  overflow: hidden;
  background-color: white;
}
.p-top__hr-img img {
  min-height: 400px;
}
.p-top__hr-img .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 5s ease-in-out;
  display: block;
}
.p-top__hr-img .swiper-slide-active img {
  transform: scale(1);
}
.p-top__about {
  position: relative;
  z-index: 1;
  padding-block: clamp(100px, 14vw, 200px) clamp(60px, 9vw, 130px);
  overflow: hidden;
}
.p-top__about .back-img {
  width: 100%;
  margin-block: 60px 0;
}
@media (min-width: 768px) {
  .p-top__about .back-img {
    width: 45%;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    z-index: -1;
    right: 0;
    height: 100%;
    max-height: inherit;
    margin-block: 0;
  }
}
.p-top__about .back-img img {
  height: 100%;
}
.p-top .slide-gallery {
  padding-inline: 20px;
  margin-bottom: clamp(60px, 8vw, 110px);
}
.p-top .slide-gallery .swiper-slide.is-odd {
  margin-bottom: clamp(30px, 6vw, 85px);
}
.p-top .slide-gallery .swiper-slide.is-even {
  margin-top: clamp(30px, 6vw, 85px);
}
.p-top .slide-gallery img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4.2/2.8;
}
.p-top__strengths {
  padding-block: 55px clamp(80px, 12vw, 150px);
}
.p-top__strengths .container {
  max-width: 800px;
}
.p-top__strengths .box-wrap {
  display: flex;
  flex-direction: column;
  gap: 75px;
}
.p-top__strengths .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px 40px;
}
@media (min-width: 768px) {
  .p-top__strengths .box {
    flex-direction: row;
  }
}
.p-top__strengths .box-img {
  max-width: 120px;
  min-width: 120px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-top__strengths .box-img {
    max-width: 200px;
    width: 26%;
  }
}
.p-top__strengths .box-txt {
  flex: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .p-top__strengths .box-txt {
    text-align: left;
  }
}
.p-top__strengths .box-txt h3 {
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.5;
  font-size: clamp(1.125rem, 0.761rem + 1.58vw, 2.25rem);
}
.p-top__service {
  background-color: #ece6d5;
  padding-block: clamp(55px, 7vw, 110px) clamp(80px, 12vw, 160px);
}
.p-top__service .box-wrap {
  display: flex;
  flex-direction: column;
  gap: 65px clamp(20px, 6vw, 90px);
}
@media (min-width: 768px) {
  .p-top__service .box-wrap {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.p-top__service .box-wrap .box > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px 45px;
}
@media (min-width: 768px) {
  .p-top__service .box-wrap .box > a {
    flex-direction: row;
    align-items: flex-end;
  }
}
.p-top__service .box-wrap .box > a:hover .icon {
  transform: translateX(8px);
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .p-top__service .box-wrap .box-img {
    width: 53%;
  }
}
.p-top__service .box-wrap .box-img img {
  border-radius: clamp(20px, 2.5vw, 30px);
  overflow: hidden;
  aspect-ratio: 6/4;
}
.p-top__service .box-wrap .box-txt {
  flex: 1;
  width: 100%;
}
.p-top__service .box-wrap .box-txt .number {
  font-size: clamp(1.375rem, 0.606rem + 3.33vw, 3.75rem);
  margin-right: clamp(10px, 1vw, 25px);
  line-height: normal;
  font-weight: 500;
}
.p-top__service .box-wrap .box-txt h3 {
  font-size: clamp(1.375rem, 0.606rem + 3.33vw, 3.75rem);
  font-weight: bold;
  font-family: var(--sippori);
  line-height: normal;
}
.p-top__service .box-wrap .box-txt .title-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}
@media (min-width: 576px) {
  .p-top__service .box-wrap .box-txt .title-wrap {
    margin-bottom: 15px;
  }
}
.p-top__service .box-wrap .box-txt .txt-wrap {
  display: flex;
  line-height: 1.7;
}
.p-top__service .box-wrap .box .icon {
  width: clamp(30px, 4vw, 52px);
  min-width: clamp(30px, 4vw, 52px);
  margin-left: auto;
  transition: all 0.3s ease;
}
.p-top__service .box-wrap .box:nth-child(1), .p-top__service .box-wrap .box:nth-child(2) {
  width: 100%;
}
@media (min-width: 768px) {
  .p-top__service .box-wrap .box:nth-child(3) {
    width: calc(50% - clamp(10px, 3vw, 45px));
  }
}
@media (min-width: 768px) {
  .p-top__service .box-wrap .box:nth-child(4) {
    width: calc(50% - clamp(10px, 3vw, 45px));
  }
}
.p-top__service .box-wrap .box:nth-child(3) .box-img, .p-top__service .box-wrap .box:nth-child(4) .box-img {
  width: 100%;
}
.p-top__service .box-wrap .box:nth-child(3) a, .p-top__service .box-wrap .box:nth-child(4) a {
  flex-direction: column;
}
.p-top__store {
  padding-block: clamp(60px, 7vw, 110px);
}
@media (min-width: 992px) {
  .p-top__store {
    padding-block: 0;
  }
}
.p-top__store .box {
  display: flex;
  flex-direction: column;
  gap: 40px clamp(20px, 5vw, 60px);
}
@media (min-width: 992px) {
  .p-top__store .box {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .p-top__store .box-txt {
    padding-block: clamp(60px, 7vw, 110px);
  }
}
.p-top__store .box-img {
  overflow: hidden;
  display: flex;
  justify-content: center;
  height: 100%;
  max-height: clamp(520px, 103vw, 1020px);
  flex: 1;
  gap: clamp(20px, 4vw, 50px);
  padding-block: 20px;
  padding-inline: 20px;
}
@media (min-width: 992px) {
  .p-top__store .box-img {
    max-height: 860px;
    padding-inline: 0;
  }
}
.p-top__store .slider-left img,
.p-top__store .slider-right img {
  aspect-ratio: 2.5/3.7;
  overflow: hidden;
  border-radius: 20px;
  height: 100%;
}
.p-top__company {
  background: url(../images/companyprofile-back.jpg) center/cover no-repeat;
  padding-block: clamp(60px, 7vw, 110px);
  padding-inline: 20px;
}
.p-top__company .box-txt {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: clamp(20px, 2.5vw, 30px);
  padding-block: clamp(40px, 4vw, 60px);
  padding-inline: clamp(20px, 4vw, 60px);
}
.p-top__blog {
  padding-block: clamp(60px, 12vw, 150px) clamp(30px, 6vw, 85px);
  background-color: #f7f7f7;
}
.p-top__blog .webgene-blog {
  display: flex;
  flex-direction: column;
}
.p-top__blog .webgene-blog .blog-item {
  padding-block: 30px;
  display: flex;
  flex-direction: column;
  border-bottom: solid 1px var(--acc);
  gap: 6px 40px;
}
@media (min-width: 768px) {
  .p-top__blog .webgene-blog .blog-item {
    flex-direction: row;
    align-items: center;
  }
}
.p-top__blog .webgene-blog > .blog-item:first-child {
  padding-top: 0;
}
.p-top__blog .webgene-blog .blog-title,
.p-top__blog .webgene-blog .blog-date {
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
}
.p-top__blog .webgene-blog .blog-date {
  color: var(--acc);
}
@media (min-width: 768px) {
  .p-top__blog .webgene-blog .blog-date {
    width: 120px;
  }
}
.p-top__blog .webgene-blog .blog-title {
  flex: 1;
}
.p-top__insta {
  padding-block: clamp(30px, 6vw, 85px) clamp(60px, 12vw, 150px);
  background-color: #f7f7f7;
}
.p-top__insta .webgene-blog {
  display: flex;
  flex-direction: column;
  gap: 20px clamp(15px, 3vw, 33px);
}
@media (min-width: 576px) {
  .p-top__insta .webgene-blog {
    flex-direction: row;
  }
}
.p-top__insta .webgene-blog .webgene-item {
  width: 75%;
  margin-inline: auto;
}
@media (min-width: 576px) {
  .p-top__insta .webgene-blog .webgene-item {
    width: calc(33.3333333333% - clamp(7.5px, 1.5vw, 16.5px));
    margin-inline: 0;
  }
}
.p-top__insta .webgene-blog .webgene-item .indexSnsWrap {
  width: 100%;
}
.p-top__insta .webgene-blog .sns-item__link {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.p-top__insta .webgene-blog .sns-item__link img {
  aspect-ratio: 1;
}
.p-top__insta .webgene-blog .sns-item__link .noImage {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.other-links {
  padding-block: clamp(60px, 7vw, 110px) clamp(80px, 12vw, 160px);
}
.other-links .box-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 37px;
}
@media (min-width: 992px) {
  .other-links .box-wrap {
    flex-direction: row;
    align-items: stretch;
  }
}
.other-links .box {
  width: 75%;
  margin-inline: auto;
  background-color: var(--acc);
  border-radius: 25px;
  min-height: 180px !important;
  max-width: 300px;
}
@media (min-width: 576px) {
  .other-links .box {
    min-height: 250px !important;
  }
}
@media (min-width: 992px) {
  .other-links .box {
    width: calc(33.3333333333% - 24px);
    margin-inline: 0;
    min-height: auto !important;
  }
}
.other-links .box > a {
  padding: 30px clamp(20px, 4vw, 50px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: inherit;
  height: 100%;
}
@media (min-width: 992px) {
  .other-links .box > a {
    padding: 50px clamp(20px, 4vw, 50px);
  }
}
.other-links .box .icon {
  max-width: 80px;
  margin-inline: auto;
}
@media (min-width: 576px) {
  .other-links .box .icon {
    margin-bottom: clamp(20px, 3vw, 40px);
  }
}
@media (min-width: 992px) {
  .other-links .box .icon {
    margin-bottom: 10px;
    max-width: 145px;
  }
}
.other-links .box .icon img {
  aspect-ratio: 1;
}
.other-links .box .title {
  color: white;
}

.page-body {
  position: relative;
  z-index: 1;
}

.page-main {
  background-color: white;
  position: relative;
  z-index: 1;
}

.page-back {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
}
.page-back img {
  height: inherit;
}

.page-hr {
  height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.page-hr__inner {
  margin-top: auto;
  border-radius: clamp(20px, 4vw, 50px) clamp(20px, 4vw, 50px) 0 0;
  background-color: white;
}
@media (min-width: 1200px) {
  .page-hr__inner > .container {
    max-width: 1330px;
  }
}
.page-hr__txt {
  padding-block: clamp(30px, 4vw, 60px);
}
.page-hr__txt .en {
  font-size: clamp(1.125rem, 1.004rem + 0.53vw, 1.5rem);
  color: var(--acc);
  font-family: var(--futura);
}
.page-hr__txt h1 {
  font-size: clamp(2rem, 1.231rem + 3.33vw, 4.375rem);
  font-weight: 600;
  font-family: var(--sippori);
}

.p-about__sec01 {
  padding-block: clamp(70px, 11vw, 140px);
}
.p-about__sec01-top {
  gap: clamp(40px, 7vw, 100px);
  margin-bottom: clamp(50px, 7vw, 100px);
}
.p-about__sec01-top .box img {
  aspect-ratio: 8/5.3;
  overflow: hidden;
  border-radius: 20px;
}
.p-about__sec01-top .box h2 span {
  display: inline-block;
}
@media (min-width: 768px) {
  .p-about__sec01-bottom .box:nth-child(1) {
    margin-top: clamp(60px, 13vw, 170px);
  }
}
@media (min-width: 768px) {
  .p-about__sec01-bottom .box:nth-child(2) {
    margin-bottom: clamp(60px, 13vw, 170px);
  }
}
.p-about__sec01-bottom .box img {
  aspect-ratio: 5.3/3.5;
  overflow: hidden;
  border-radius: 20px;
}
@media (min-width: 1200px) {
  .p-about__sec02 .container {
    max-width: 1280px;
  }
}
.p-about__sec02 .box {
  padding-block: clamp(60px, 7vw, 110px) 0;
}
.p-about__sec02 .box-txt {
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .p-about__sec02 .box-txt {
    padding-top: clamp(0px, 4vw, 60px);
    padding-bottom: 0;
  }
}
.p-about__sec02 .box-txt h3 {
  font-size: clamp(3.75rem, 0.915rem + 12.26vw, 12.5rem);
  color: var(--base);
  line-height: 1;
}
.p-about__sec02 .box-top {
  background: linear-gradient(180deg, transparent 0%, transparent 14.5vw, var(--base) 14.5vw, var(--base) 100%);
}
@media (min-width: 768px) {
  .p-about__sec02 .box-top {
    background: linear-gradient(180deg, transparent 0%, transparent 15.5vw, var(--base) 15.5vw, var(--base) 100%);
  }
}
.p-about__sec02 .box-top .box-txt {
  flex: 1;
}
@media (min-width: 768px) {
  .p-about__sec02 .box-top .box-img {
    width: 60%;
  }
}
.p-about__sec02 .box-top .box-img img {
  overflow: hidden;
  aspect-ratio: 7.7/5.1;
  border-radius: 20px;
}
.p-about__sec02 .box-bottom {
  padding-top: clamp(50px, 5vw, 75px);
  padding-bottom: 50px;
  background-color: var(--base);
}
@media (min-width: 768px) {
  .p-about__sec02 .box-bottom .box-txt {
    width: 60%;
  }
}
.p-about__sec02 .box:nth-child(odd) .box-top__inner {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .p-about__sec02 .box:nth-child(odd) .box-top__inner {
    flex-direction: row;
  }
}
.p-about__sec02 .box:nth-child(even) .box-top__inner {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .p-about__sec02 .box:nth-child(even) .box-top__inner {
    flex-direction: row-reverse;
  }
}
.p-about__sec02 .box:nth-child(even) .box-top .box-txt h3 {
  text-align: right;
}
@media (min-width: 768px) {
  .p-about__sec02 .box:nth-child(even) .box-bottom .box-txt {
    margin-left: auto;
  }
}
.p-about__sec03 {
  padding-block: clamp(60px, 7vw, 100px) clamp(80px, 12vw, 160px);
}
.p-about__sec03 .box-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 12vw, 150px);
}
.p-about__sec03 .box-wrap .box .row {
  align-items: center;
}
@media (min-width: 768px) {
  .p-about__sec03 .box-wrap .box .row {
    align-items: flex-end;
  }
}
.p-about__sec03 .box-wrap .box-img img {
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 5/7;
}
.p-about__sec03 .box-wrap .box-txt h3 span {
  display: inline-block;
}
.p-about__sec04 {
  background-color: var(--base);
  padding-block: clamp(80px, 12vw, 140px);
}
.p-about__sec04 .box-wrap {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (min-width: 768px) {
  .p-about__sec04 .box-wrap {
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(50px, 6vw, 100px);
  }
}
@media (min-width: 768px) {
  .p-about__sec04 .box-wrap .box {
    width: calc(50% - clamp(25px, 3vw, 50px));
  }
}
.p-about__sec04 .box-wrap .box > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px 45px;
}
.p-about__sec04 .box-wrap .box > a:hover .icon {
  transform: translateX(8px);
  transition: all 0.3s ease;
}
.p-about__sec04 .box-wrap .box-img img {
  border-radius: clamp(20px, 2.5vw, 30px);
  overflow: hidden;
  aspect-ratio: 6/4;
}
.p-about__sec04 .box-wrap .box-txt {
  flex: 1;
  width: 100%;
}
.p-about__sec04 .box-wrap .box-txt .number {
  font-size: clamp(1.375rem, 0.606rem + 3.33vw, 3.75rem);
  margin-right: clamp(10px, 1vw, 25px);
  line-height: normal;
  font-weight: 500;
}
.p-about__sec04 .box-wrap .box-txt h3 {
  font-size: clamp(1.375rem, 0.606rem + 3.33vw, 3.75rem);
  font-weight: bold;
  font-family: var(--sippori);
  line-height: normal;
}
.p-about__sec04 .box-wrap .box-txt .title-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}
@media (min-width: 576px) {
  .p-about__sec04 .box-wrap .box-txt .title-wrap {
    margin-bottom: 15px;
  }
}
.p-about__sec04 .box-wrap .box-txt .txt-wrap {
  display: flex;
  line-height: 1.7;
}
.p-about__sec04 .box-wrap .box .icon {
  width: clamp(30px, 4vw, 52px);
  min-width: clamp(30px, 4vw, 52px);
  margin-left: auto;
  transition: all 0.3s ease;
}

.service-section__01 {
  padding-block: clamp(60px, 7vw, 130px) clamp(100px, 13vw, 200px);
}
.service-section__01 img {
  aspect-ratio: 9/6;
  overflow: hidden;
  border-radius: 0 20px 20px 0;
  min-height: 350px;
}
.service-section__02 {
  background-color: var(--base);
}
.service-section__02 .section-top {
  color: white;
  padding-block: clamp(80px, 12vw, 150px) clamp(120px, 24vw, 300px);
}
.service-section__02 .container {
  padding-block: clamp(80px, 12vw, 150px);
}
.service-section__02-top {
  margin-bottom: clamp(80px, 12vw, 150px);
  align-items: center;
}
.service-section__02-img {
  margin-top: clamp(60px, 7vw, 130px);
}

.about-contents {
  background-color: white;
  padding-inline: 20px;
  border-radius: clamp(20px, 2vw, 30px);
  padding-block: clamp(40px, 5vw, 80px) clamp(60px, 7vw, 100px);
}
@media (min-width: 768px) {
  .about-contents {
    padding-inline: clamp(20px, 10vw, 145px);
  }
}
.about-contents__top {
  margin-bottom: clamp(60px, 7vw, 100px);
}
.about-contents h4 {
  font-size: clamp(1.063rem, 0.759rem + 1.31vw, 2rem);
  color: white;
  background-color: var(--acc);
  border-radius: 100px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: clamp(35px, 4vw, 50px);
  padding: 10px 20px;
}
@media (min-width: 768px) {
  .about-contents h4 {
    padding: 20px clamp(30px, 4vw, 50px);
  }
}
.about-contents__wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3.5vw, 45px);
}

.features-contents__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
@media (min-width: 992px) {
  .features-contents__wrap {
    flex-direction: row;
    align-items: stretch;
    gap: 0 clamp(20px, 6vw, 75px);
  }
}
.features-contents__wrap .box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .features-contents__wrap .box {
    width: calc(33.3333333333% - clamp(10px, 3vw, 37.5px));
  }
}
.features-contents__wrap .box-img {
  max-width: clamp(120px, 14vw, 200px);
  margin-inline: auto;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .features-contents__wrap .box-img {
    max-width: clamp(120px, 14vw, 200px);
  }
}
.features-contents__wrap .box-txt h4 {
  font-size: clamp(1.125rem, 0.761rem + 1.58vw, 2.25rem);
  font-weight: bold;
  text-align: center;
}

.point-contents {
  background-color: white;
  border-radius: clamp(20px, 2vw, 30px);
  padding-inline: 20px;
  padding-block: clamp(40px, 5vw, 80px) clamp(60px, 7vw, 100px);
}
@media (min-width: 768px) {
  .point-contents {
    padding-inline: clamp(20px, 10vw, 145px);
  }
}
.point-contents__wrap {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.point-contents__wrap .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px clamp(20px, 3vw, 45px);
}
@media (min-width: 992px) {
  .point-contents__wrap .box {
    flex-direction: row;
  }
}
.point-contents__wrap .box-img {
  width: 75%;
  margin-inline: auto;
}
@media (min-width: 992px) {
  .point-contents__wrap .box-img {
    width: calc(45% - clamp(10px, 1.5vw, 22.5px));
  }
}
.point-contents__wrap .box-txt {
  flex: 1;
  width: 100%;
}
.point-contents__wrap .box-txt .number {
  max-width: clamp(40px, 5vw, 73px);
  margin-right: 18px;
}
.point-contents__wrap .box-txt .title {
  margin-bottom: 18px;
}
.point-contents__wrap .box-txt .title-wrap > h4 {
  font-family: var(--sippori);
  font-size: clamp(1.125rem, 0.761rem + 1.58vw, 2.25rem);
}

.introduction-contents {
  background-color: white;
  padding-inline: 20px;
  border-radius: clamp(20px, 2vw, 30px);
  padding-block: clamp(40px, 6vw, 85px) clamp(80px, 12vw, 150px);
}
@media (min-width: 992px) {
  .introduction-contents {
    padding-inline: clamp(20px, 13vw, 170px);
  }
}
.introduction-contents__wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(50px, 6vw, 80px);
}
.introduction-contents__wrap .box {
  gap: 20px clamp(20px, 2vw, 40px);
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .introduction-contents__wrap .box {
    align-items: flex-end;
  }
}
.introduction-contents__wrap .box:nth-child(odd) {
  flex-direction: column;
}
@media (min-width: 768px) {
  .introduction-contents__wrap .box:nth-child(odd) {
    flex-direction: row;
  }
}
.introduction-contents__wrap .box:nth-child(even) {
  flex-direction: column;
}
@media (min-width: 768px) {
  .introduction-contents__wrap .box:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.introduction-contents__wrap .box-txt {
  flex: 1;
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .introduction-contents__wrap .box-txt {
    text-align: left;
  }
}
.introduction-contents__wrap .box-txt h4 {
  margin-bottom: 10px;
  font-size: clamp(1.125rem, 0.842rem + 1.23vw, 2rem);
  font-weight: bold;
}
.introduction-contents__wrap .box-img {
  width: 75%;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .introduction-contents__wrap .box-img {
    width: calc(50% - clamp(10px, 1vw, 20px));
  }
}

.p-blog__list {
  padding-block: clamp(40px, 4vw, 70px) clamp(100px, 14vw, 190px);
}

.p-company__sec01 {
  padding-block: clamp(60px, 8vw, 110px);
}
@media (min-width: 992px) {
  .p-company__sec01 .container {
    max-width: 840px;
  }
}
.p-company__sec02 {
  padding-block: clamp(60px, 8vw, 110px);
}
@media (min-width: 992px) {
  .p-company__sec02 .container {
    max-width: 840px;
  }
}
.p-company__sec02-img {
  min-height: 350px !important;
}
.p-company__sec02-img img {
  height: 100%;
  min-height: inherit;
}
.p-company .list-dl {
  display: flex;
  flex-direction: column;
  padding-block: clamp(20px, 3vw, 44px);
  border-bottom: solid 1px var(--acc);
}
@media (min-width: 992px) {
  .p-company .list-dl {
    flex-direction: row;
  }
}
.p-company .list-dl:first-child {
  padding-top: 0;
}
.p-company .list-dt {
  width: 100%;
}
@media (min-width: 992px) {
  .p-company .list-dt {
    width: 200px;
  }
}
.p-company .list-dd {
  width: 100%;
  flex: 1;
}

.p-contact__sec {
  padding-block: clamp(50px, 6vw, 75px) clamp(80px, 12vw, 150px);
}
.p-contact__form {
  padding-inline: 20px;
}
.p-contact__form .container {
  display: flex;
  flex-direction: column;
  gap: clamp(35px, 4vw, 55px);
}
@media (min-width: 768px) {
  .p-contact__form .container {
    max-width: 750px;
  }
}
.p-contact__form input,
.p-contact__form textarea {
  width: 100%;
  background-color: white;
  border: solid 2px var(--txt);
  border-radius: 10px;
  padding: 15px 10px;
}
.p-contact__form textarea {
  height: 250px;
}
@media (min-width: 768px) {
  .p-contact__form textarea {
    height: 400px;
  }
}
.p-contact__form .checkbox {
  width: clamp(18px, 3vw, 25px);
  height: clamp(18px, 3vw, 25px);
  border: 1px solid var(--main);
  border-radius: 0;
  background-color: transparent;
  cursor: pointer;
  margin-right: 15px;
}
.p-contact__form .privacyLabel {
  cursor: pointer;
}
.p-contact__form .formTh {
  font-size: clamp(1.063rem, 0.921rem + 0.61vw, 1.5rem);
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.p-contact__form .formTh > label {
  margin-bottom: 0;
  font-family: var(--sippori);
}
.p-contact__form .formTh .requiredText {
  margin-left: 14px;
  background-color: var(--acc);
  color: white;
  font-size: clamp(0.688rem, 0.607rem + 0.35vw, 0.938rem);
  border-radius: 99px;
  padding: 2px 18px;
}
.p-contact__form .formBtnTd button {
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  line-height: normal;
  border-radius: 99px;
  padding-inline: 15px 100px;
  padding-block: 12px;
  transition: all 0.3s ease;
  gap: 24px;
  min-width: 200px;
  width: 100%;
  background-color: var(--acc);
}
@media (min-width: 768px) {
  .p-contact__form .formBtnTd button {
    padding-inline: 30px 120px;
    padding-block: 20px;
    font-size: 1rem;
    min-width: 260px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.p-contact__form .formBtnTd button::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  display: block;
  background: url(../images/arrow_wh.svg) center/contain no-repeat;
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .p-contact__form .formBtnTd button::after {
    width: 34px;
    height: 34px;
    right: 30px;
  }
}
.p-contact__form .formBtnTd button:hover::after {
  transform: translateY(-50%) translateX(5px);
  transition: all 0.3s ease;
}
.p-contact .other-links {
  background-color: #f7f7f7;
}

.privacy-policy {
  background-color: var(--txt);
  border-radius: 13px;
  padding: 14px 12px;
}
.privacy-policy__wrap {
  font-size: 0.8125rem;
  color: white;
  height: 230px;
  overflow: auto;
  padding-right: 10px;
}
.privacy-policy__wrap::-webkit-scrollbar {
  width: 8px;
}
.privacy-policy__wrap::-webkit-scrollbar-track {
  background-color: transparent;
}
.privacy-policy__wrap::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background-color: white;
}
.privacy-policy a {
  color: white;
}

.p-complete .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.p-complete .btn-wrap a {
  min-width: 200px;
}
@media (min-width: 768px) {
  .p-complete .btn-wrap a {
    min-width: 280px;
  }
}